mesh reading

Asked by elhassan Abdou

Dear all

I designed my geometry FreeCad and generated 3D mesh using gmsh. I exported it dolfin using dolfin-export script, when I tried to plot the mesh but i found only 2D triangles on the surface of my geometry, following is my code:
from dolfin import *
import math

#here we will mark

class box(SubDomain):
 def inside(self,x,on_boundary):
  return on_boundary
class cylinderel(SubDomain):
 def inside(self,x,on_boundary):
  return on_boundary and ((x[0]-15)*(x[0]-15)+(x[1]-15)*(x[1]-15)-4)<DOLFIN_EPS and ((x[2]-15)>DOLFIN_EPS) and (x[2]-30)<DOLFIN_EPS
#Reading mesh
mesh = Mesh("boxcylinder.xml")
#Creat mesh function
sub_domains= MeshFunction("uint",mesh,mesh.topology().dim()-1)

#all faces
sub_domains.set_all(3)
#markcylinder with1
elecylinder = cylinderel()
elecylinder.mark(sub_domains,0)
plot(mesh)
interactive()
File("subdomains.xml")<<sub_domains
File("subdomains.pvd")<<sub_domains

 and xml file:

<?xml version="1.0" encoding="UTF-8"?>

<dolfin xmlns:dolfin="http://www.fenics.org/dolfin/">
  <mesh celltype="tetrahedron" dim="3">
    <vertices size="374">
      <vertex index="0" x="0" y="0" z="30"/>
      <vertex index="1" x="0" y="0" z="0"/>
      <vertex index="2" x="0" y="30" z="0"/>
      <vertex index="3" x="0" y="30" z="30"/>
      <vertex index="4" x="30" y="0" z="0"/>
      <vertex index="5" x="30" y="0" z="30"/>
      <vertex index="6" x="17" y="15" z="30"/>
      <vertex index="7" x="15" y="13" z="30"/>
      <vertex index="8" x="30" y="30" z="30"/>
      <vertex index="9" x="30" y="30" z="0"/>
      <vertex index="10" x="17" y="15" z="15"/>
      <vertex index="11" x="0" y="0" z="6"/>
      <vertex index="12" x="0" y="0" z="12"/>
      <vertex index="13" x="0" y="0" z="18"/>
      <vertex index="14" x="0" y="0" z="24"/>
      <vertex index="15" x="0" y="6" z="0"/>
      <vertex index="16" x="0" y="12" z="0"/>
      <vertex index="17" x="0" y="18" z="0"/>
      <vertex index="18" x="0" y="24" z="0"/>
      <vertex index="19" x="0" y="30" z="6"/>
      <vertex index="20" x="0" y="30" z="12"/>
      <vertex index="21" x="0" y="30" z="18"/>
      <vertex index="22" x="0" y="30" z="24"/>
      <vertex index="23" x="0" y="6" z="30"/>
      <vertex index="24" x="0" y="12" z="30"/>
      <vertex index="25" x="0" y="18" z="30"/>
      <vertex index="26" x="0" y="24" z="30"/>
      <vertex index="27" x="6" y="0" z="0"/>
      <vertex index="28" x="12" y="0" z="0"/>
      <vertex index="29" x="18" y="0" z="0"/>
      <vertex index="30" x="24" y="0" z="0"/>
      <vertex index="31" x="6" y="0" z="30"/>
      <vertex index="32" x="12" y="0" z="30"/>
      <vertex index="33" x="18" y="0" z="30"/>
      <vertex index="34" x="24" y="0" z="30"/>
      <vertex index="35" x="30" y="0" z="6"/>
      <vertex index="36" x="30" y="0" z="12"/>
      <vertex index="37" x="30" y="0" z="18"/>
      <vertex index="38" x="30" y="0" z="24"/>
      <vertex index="39" x="13.5858" y="16.4142" z="30"/>
      <vertex index="40" x="16.4142" y="13.5858" z="30"/>
      <vertex index="41" x="30" y="6" z="30"/>
      <vertex index="42" x="30" y="12" z="30"/>
      <vertex index="43" x="30" y="18" z="30"/>
      <vertex index="44" x="30" y="24" z="30"/>
      <vertex index="45" x="6" y="30" z="30"/>
      <vertex index="46" x="12" y="30" z="30"/>
      <vertex index="47" x="18" y="30" z="30"/>
      <vertex index="48" x="24" y="30" z="30"/>
      <vertex index="49" x="6" y="30" z="0"/>
      <vertex index="50" x="12" y="30" z="0"/>
      <vertex index="51" x="18" y="30" z="0"/>
      <vertex index="52" x="24" y="30" z="0"/>
      <vertex index="53" x="30" y="30" z="6"/>
      <vertex index="54" x="30" y="30" z="12"/>
      <vertex index="55" x="30" y="30" z="18"/>
      <vertex index="56" x="30" y="30" z="24"/>
      <vertex index="57" x="30" y="6" z="0"/>
      <vertex index="58" x="30" y="12" z="0"/>
      <vertex index="59" x="30" y="18" z="0"/>
      <vertex index="60" x="30" y="24" z="0"/>
      <vertex index="61" x="17" y="15" z="22.5"/>
      <vertex index="62" x="15" y="17" z="15"/>
      <vertex index="63" x="13" y="15" z="15"/>
      <vertex index="64" x="15" y="13" z="15"/>
      <vertex index="65" x="0" y="20.7891" z="24.4659"/>
      <vertex index="66" x="0" y="8.42588" z="24.5178"/>
      <vertex index="67" x="0" y="20.6183" z="5.3413"/>
      <vertex index="68" x="0" y="8.19912" z="5.35712"/>
      <vertex index="69" x="0" y="22.9324" z="16.3372"/>
      <vertex index="70" x="0" y="14.5286" z="5.95309"/>
      <vertex index="71" x="0" y="8.61187" z="17.9798"/>
      <vertex index="72" x="0" y="17.3689" z="11.7648"/>
      <vertex index="73" x="0" y="10.0574" z="11.4426"/>
      <vertex index="74" x="0" y="17.2364" z="19.1622"/>
      <vertex index="75" x="0" y="25.3036" z="21.561"/>
      <vertex index="76" x="0" y="14.0122" z="24.6281"/>
      <vertex index="77" x="0" y="4.07613" z="21.0766"/>
      <vertex index="78" x="0" y="4.41902" z="14.9623"/>
      <vertex index="79" x="0" y="12.2483" z="20.2988"/>
      <vertex index="80" x="0" y="24.6375" z="9.10427"/>
      <vertex index="81" x="0" y="21.1601" z="20.2113"/>
      <vertex index="82" x="0" y="26.0185" z="26.0054"/>
      <vertex index="83" x="0" y="4.31885" z="8.875"/>
      <vertex index="84" x="0" y="25.8512" z="4.08911"/>
      <vertex index="85" x="0" y="3.70359" z="4.04642"/>
      <vertex index="86" x="0" y="3.7004" z="25.9189"/>
      <vertex index="87" x="0" y="13.1046" z="16.1296"/>
      <vertex index="88" x="11.5541" y="0" z="16.0044"/>
      <vertex index="89" x="21.6708" y="0" z="23.8131"/>
      <vertex index="90" x="24.6724" y="0" z="8.84722"/>
      <vertex index="91" x="11.9279" y="0" z="21.8856"/>
      <vertex index="92" x="23.8555" y="0" z="16.1513"/>
      <vertex index="93" x="17.4693" y="0" z="10.9428"/>
      <vertex index="94" x="16.9075" y="0" z="18.9102"/>
      <vertex index="95" x="15.9567" y="0" z="24.862"/>
      <vertex index="96" x="8.26665" y="0" z="25.3352"/>
      <vertex index="97" x="6.04535" y="0" z="20.9663"/>
      <vertex index="98" x="21.0988" y="0" z="4.43973"/>
      <vertex index="99" x="14.608" y="0" z="4.53274"/>
      <vertex index="100" x="8.51298" y="0" z="4.37419"/>
      <vertex index="101" x="3.55788" y="0" z="3.84279"/>
      <vertex index="102" x="26.0221" y="0" z="3.99283"/>
      <vertex index="103" x="3.99879" y="0" z="25.987"/>
      <vertex index="104" x="5.41858" y="0" z="14.14"/>
      <vertex index="105" x="10.2799" y="0" z="9.68764"/>
      <vertex index="106" x="4.62823" y="0" z="8.34077"/>
      <vertex index="107" x="26.5053" y="0" z="21.7929"/>
      <vertex index="108" x="26.4352" y="0" z="25.9212"/>
      <vertex index="109" x="20.7043" y="5.72302" z="30"/>
      <vertex index="110" x="25.3151" y="8.64013" z="30"/>
      <vertex index="111" x="4.7191" y="9.15537" z="30"/>
      <vertex index="112" x="21.0993" y="25.4475" z="30"/>
      <vertex index="113" x="9.7384" y="5.33367" z="30"/>
      <vertex index="114" x="24.3428" y="18.0194" z="30"/>
      <vertex index="115" x="4.56925" y="25.436" z="30"/>
      <vertex index="116" x="4.23343" y="4.20687" z="30"/>
      <vertex index="117" x="25.8963" y="4.18147" z="30"/>
      <vertex index="118" x="26.0389" y="26.1813" z="30"/>
      <vertex index="119" x="20.3512" y="20.9043" z="30"/>
      <vertex index="120" x="10.0567" y="12.0648" z="30"/>
      <vertex index="121" x="20.446" y="16.6238" z="30"/>
      <vertex index="122" x="13.4102" y="9.44494" z="30"/>
      <vertex index="123" x="9.74803" y="17.2213" z="30"/>
      <vertex index="124" x="12.0738" y="20.6004" z="30"/>
      <vertex index="125" x="9.8063" y="25.4736" z="30"/>
      <vertex index="126" x="7.45419" y="20.7264" z="30"/>
      <vertex index="127" x="3.16062" y="20.6903" z="30"/>
      <vertex index="128" x="15.6657" y="24.4161" z="30"/>
      <vertex index="129" x="5.0198" y="15.694" z="30"/>
      <vertex index="130" x="24.4014" y="13.6547" z="30"/>
      <vertex index="131" x="15.1472" y="5.36533" z="30"/>
      <vertex index="132" x="25.0328" y="21.9334" z="30"/>
      <vertex index="133" x="19.3821" y="13.0428" z="30"/>
      <vertex index="134" x="17.3598" y="9.94039" z="30"/>
      <vertex index="135" x="21.4325" y="10.2002" z="30"/>
      <vertex index="136" x="16.5204" y="18.9931" z="30"/>
      <vertex index="137" x="11.6311" y="30" z="15.3984"/>
      <vertex index="138" x="4.24332" y="30" z="21.1895"/>
      <vertex index="139" x="5.12297" y="30" z="14.8244"/>
      <vertex index="140" x="13.8199" y="30" z="23.1854"/>
      <vertex index="141" x="23.5215" y="30" z="16.3602"/>
      <vertex index="142" x="14.9106" y="30" z="5.52674"/>
      <vertex index="143" x="8.12996" y="30" z="19.6558"/>
      <vertex index="144" x="9.54398" y="30" z="5.0686"/>
      <vertex index="145" x="21.3762" y="30" z="23.9108"/>
      <vertex index="146" x="24.4662" y="30" z="9.45433"/>
      <vertex index="147" x="26.3795" y="30" z="21.8542"/>
      <vertex index="148" x="7.83032" y="30" z="25.1927"/>
      <vertex index="149" x="3.61473" y="30" z="26.0764"/>
      <vertex index="150" x="17.7148" y="30" z="11.3316"/>
      <vertex index="151" x="17.6901" y="30" z="18.5033"/>
      <vertex index="152" x="26.3512" y="30" z="25.953"/>
      <vertex index="153" x="25.6182" y="30" z="4.56032"/>
      <vertex index="154" x="8.41204" y="30" z="10.188"/>
      <vertex index="155" x="4.15414" y="30" z="6.86872"/>
      <vertex index="156" x="12.5799" y="30" z="9.41291"/>
      <vertex index="157" x="20.785" y="30" z="5.1455"/>
      <vertex index="158" x="14.6468" y="16.9799" z="0"/>
      <vertex index="159" x="20.6574" y="5.78784" z="0"/>
      <vertex index="160" x="10.0603" y="7.82789" z="0"/>
      <vertex index="161" x="5.52901" y="25.0958" z="0"/>
      <vertex index="162" x="25.7735" y="4.5432" z="0"/>
      <vertex index="163" x="21.0696" y="18.6779" z="0"/>
      <vertex index="164" x="6.92515" y="18.5687" z="0"/>
      <vertex index="165" x="15.644" y="6.34803" z="0"/>
      <vertex index="166" x="10.018" y="13.4094" z="0"/>
      <vertex index="167" x="19.5226" y="11.8806" z="0"/>
      <vertex index="168" x="25.1238" y="9.01264" z="0"/>
      <vertex index="169" x="20.1288" y="24.6573" z="0"/>
      <vertex index="170" x="13.4501" y="23.7467" z="0"/>
      <vertex index="171" x="3.99766" y="11.2322" z="0"/>
      <vertex index="172" x="25.1557" y="24.2685" z="0"/>
      <vertex index="173" x="5.15555" y="4.07653" z="0"/>
      <vertex index="174" x="3.36902" y="21.3946" z="0"/>
      <vertex index="175" x="17.3004" y="20.6777" z="0"/>
      <vertex index="176" x="25.2419" y="14.6411" z="0"/>
      <vertex index="177" x="26.2934" y="19.9175" z="0"/>
      <vertex index="178" x="13.9783" y="11.2892" z="0"/>
      <vertex index="179" x="30" y="13.167" z="18.1084"/>
      <vertex index="180" x="30" y="9.24246" z="6.97413"/>
      <vertex index="181" x="30" y="20.8929" z="25.3771"/>
      <vertex index="182" x="30" y="21.0896" z="5.02669"/>
      <vertex index="183" x="30" y="5.27851" z="4.02582"/>
      <vertex index="184" x="30" y="6.47321" z="24.8125"/>
      <vertex index="185" x="30" y="6.96858" z="18.0765"/>
      <vertex index="186" x="30" y="14.8541" z="5.89432"/>
      <vertex index="187" x="30" y="18.2338" z="12.2316"/>
      <vertex index="188" x="30" y="10.9289" z="12.051"/>
      <vertex index="189" x="30" y="14.2612" z="24.3239"/>
      <vertex index="190" x="30" y="10.5159" z="21.3902"/>
      <vertex index="191" x="30" y="24.9197" z="21.5587"/>
      <vertex index="192" x="30" y="19.3841" z="19.4235"/>
      <vertex index="193" x="30" y="3.36045" z="21.2222"/>
      <vertex index="194" x="30" y="25.0619" z="8.48317"/>
      <vertex index="195" x="30" y="4.42858" z="11.1808"/>
      <vertex index="196" x="30" y="24.5999" z="15.2828"/>
      <vertex index="197" x="30" y="26.0303" z="3.90197"/>
      <vertex index="198" x="30" y="26.0904" z="25.9175"/>
      <vertex index="199" x="15.0461" y="16.9995" z="26.1986"/>
      <vertex index="200" x="13.5975" y="16.4258" z="20.5629"/>
      <vertex index="201" x="13.7232" y="13.4606" z="19.791"/>
      <vertex index="202" x="13.0016" y="15.0791" z="24.8401"/>
      <vertex index="203" x="14.6361" y="13.0334" z="24.2828"/>
      <vertex index="204" x="14.6446" y="16.9682" z="23.5254"/>
      <vertex index="205" x="17" y="15" z="26.0588"/>
      <vertex index="206" x="16.7278" y="14.343" z="25.9845"/>
      <vertex index="207" x="16.112" y="14.112" z="25.83"/>
      <vertex index="208" x="15" y="15" z="15"/>
      <vertex index="209" x="14" y="16" z="7.52071"/>
      <vertex index="210" x="8.41192" y="22.0071" z="16.8437"/>
      <vertex index="211" x="8.0499" y="8.0499" z="15.1995"/>
      <vertex index="212" x="12.6195" y="22.6312" z="10.692"/>
      <vertex index="213" x="21.2122" y="8.01494" z="18.9561"/>
      <vertex index="214" x="6.68407" y="14.5411" z="18.5034"/>
      <vertex index="215" x="14.1173" y="7.5282" z="8.51509"/>
      <vertex index="216" x="21.7631" y="11.7492" z="8.44059"/>
      <vertex index="217" x="21.6526" y="21.0198" z="9.17464"/>
      <vertex index="218" x="19.1242" y="9.15532" z="24.3906"/>
      <vertex index="219" x="8.50268" y="8.42414" z="22.9623"/>
      <vertex index="220" x="21.4637" y="21.7274" z="18.8203"/>
      <vertex index="221" x="7.8863" y="19.431" z="23.23"/>
      <vertex index="222" x="7.37894" y="17.3255" z="10.686"/>
      <vertex index="223" x="23.7471" y="13.1787" z="14.9874"/>
      <vertex index="224" x="17.7971" y="17.7971" z="10.6461"/>
      <vertex index="225" x="6.94949" y="10.1872" z="7.91762"/>
      <vertex index="226" x="11.394" y="18.606" z="17.2445"/>
      <vertex index="227" x="13.2243" y="23.3781" z="21.7368"/>
      <vertex index="228" x="23.8378" y="15.742" z="21.4543"/>
      <vertex index="229" x="18.0973" y="11.9027" z="18.75"/>
      <vertex index="230" x="11.1364" y="11.1364" z="16.7373"/>
      <vertex index="231" x="18.1135" y="13.927" z="28.0294"/>
      <vertex index="232" x="21.5633" y="15.8448" z="25.5324"/>
      <vertex index="233" x="14" y="16" z="11.3941"/>
      <vertex index="234" x="16.8149" y="11.7079" z="10.2322"/>
      <vertex index="235" x="18.0819" y="18.0819" z="18.75"/>
      <vertex index="236" x="6.64252" y="23.2981" z="6.8283"/>
      <vertex index="237" x="19.471" y="16.1677" z="5.16337"/>
      <vertex index="238" x="15.6084" y="5.88249" z="15.221"/>
      <vertex index="239" x="16.7755" y="23.7335" z="5.761"/>
      <vertex index="240" x="22.0996" y="5.72263" z="12.2533"/>
      <vertex index="241" x="11.1816" y="11.2857" z="11.245"/>
      <vertex index="242" x="18.5472" y="21.6326" z="24.1986"/>
      <vertex index="243" x="23.8692" y="6.10231" z="6.01314"/>
      <vertex index="244" x="6.63221" y="24.784" z="21.5518"/>
      <vertex index="245" x="22.1074" y="18.5246" z="14.2172"/>
      <vertex index="246" x="18.1642" y="24.0066" z="13.7379"/>
      <vertex index="247" x="20.4222" y="14.2903" z="12.0222"/>
      <vertex index="248" x="24.8789" y="10.6867" z="24.4247"/>
      <vertex index="249" x="19.4312" y="9.70497" z="14.2418"/>
      <vertex index="250" x="11.6747" y="20.7937" z="4.85833"/>
      <vertex index="251" x="14.295" y="5.98502" z="21.5309"/>
      <vertex index="252" x="15.3356" y="11.4434" z="5.13524"/>
      <vertex index="253" x="4.73321" y="19.2573" z="19.1661"/>
      <vertex index="254" x="4.43868" y="22.2716" z="12.3639"/>
      <vertex index="255" x="8.65699" y="16.0593" z="14.7841"/>
      <vertex index="256" x="11.2262" y="19.0757" z="12.8745"/>
      <vertex index="257" x="8.66147" y="25.4192" z="12.8142"/>
      <vertex index="258" x="10.5429" y="14.8792" z="18.0295"/>
      <vertex index="259" x="5.99982" y="13.6936" z="24.4159"/>
      <vertex index="260" x="24.2267" y="24.3739" z="24.0419"/>
      <vertex index="261" x="15.182" y="21.9661" z="17.2854"/>
      <vertex index="262" x="7.47788" y="15.3934" z="5.03207"/>
      <vertex index="263" x="5.46741" y="5.27517" z="10.7376"/>
      <vertex index="264" x="24.7848" y="24.4257" z="5.74533"/>
      <vertex index="265" x="24.5146" y="4.98804" z="23.8239"/>
      <vertex index="266" x="5.03559" y="12.1942" z="12.8336"/>
      <vertex index="267" x="24.7335" y="16.5325" z="7.39349"/>
      <vertex index="268" x="10.7175" y="11.2891" z="25.6233"/>
      <vertex index="269" x="5.01713" y="9.60308" z="19.2051"/>
      <vertex index="270" x="4.98016" y="5.76476" z="5.25687"/>
      <vertex index="271" x="18.4123" y="6.78032" z="5.0198"/>
      <vertex index="272" x="15.6509" y="20.6666" z="12.941"/>
      <vertex index="273" x="18.8157" y="18.5231" z="26.7329"/>
      <vertex index="274" x="17.7866" y="16.5115" z="28.0294"/>
      <vertex index="275" x="9.43955" y="15.4192" z="22.264"/>
      <vertex index="276" x="14.5913" y="8.47872" z="25.5306"/>
      <vertex index="277" x="14.8124" y="11.3638" z="27.1321"/>
      <vertex index="278" x="17.8158" y="11.3929" z="26.1814"/>
      <vertex index="279" x="12.0077" y="20.4974" z="25.2776"/>
      <vertex index="280" x="14.5556" y="9.30944" z="12.9265"/>
      <vertex index="281" x="15.4856" y="10.0228" z="21.4649"/>
      <vertex index="282" x="15.2089" y="20.2402" z="7.99987"/>
      <vertex index="283" x="4.61378" y="22.4724" z="25.5314"/>
      <vertex index="284" x="25.3394" y="11.0133" z="19.3401"/>
      <vertex index="285" x="16.0908" y="13.9092" z="12.2644"/>
      <vertex index="286" x="9.33281" y="4.26394" z="19.2108"/>
      <vertex index="287" x="21.1495" y="14.9999" z="18.0441"/>
      <vertex index="288" x="11.2035" y="4.75442" z="12.203"/>
      <vertex index="289" x="12.0324" y="25.6902" z="6.54085"/>
      <vertex index="290" x="10.5344" y="5.18914" z="4.91052"/>
      <vertex index="291" x="18.3586" y="18.8715" z="14.9973"/>
      <vertex index="292" x="20.7501" y="12.6574" z="22.2175"/>
      <vertex index="293" x="21.0023" y="21.4739" z="4.19531"/>
      <vertex index="294" x="4.69314" y="4.71717" z="23.5621"/>
      <vertex index="295" x="4.50291" y="25.343" z="16.9078"/>
      <vertex index="296" x="10.916" y="12.4817" z="6.596"/>
      <vertex index="297" x="23.1369" y="20.2518" z="26.0342"/>
      <vertex index="298" x="3.45996" y="17.6371" z="23.4821"/>
      <vertex index="299" x="3.68785" y="16.5939" z="15.0591"/>
      <vertex index="300" x="11.9494" y="23.5114" z="14.8694"/>
      <vertex index="301" x="10.4555" y="25.9058" z="18.7466"/>
      <vertex index="302" x="26.0901" y="8.36289" z="14.6787"/>
      <vertex index="303" x="9.6461" y="17.0311" z="25.9643"/>
      <vertex index="304" x="10.1225" y="11.5828" z="20.7634"/>
      <vertex index="305" x="24.2195" y="24.7578" z="13.2828"/>
      <vertex index="306" x="11.3726" y="19.7932" z="21.1457"/>
      <vertex index="307" x="18.219" y="7.37449" z="10.5099"/>
      <vertex index="308" x="26.2176" y="16.6576" z="25.8688"/>
      <vertex index="309" x="14.964" y="9.47702" z="17.3207"/>
      <vertex index="310" x="17.7764" y="12.2236" z="14.1126"/>
      <vertex index="311" x="19.3706" y="15.3989" z="26.5285"/>
      <vertex index="312" x="19.0116" y="13.3997" z="24.4371"/>
      <vertex index="313" x="21.6449" y="11.3848" z="26.3606"/>
      <vertex index="314" x="26.054" y="17.1725" z="17.1141"/>
      <vertex index="315" x="19.2527" y="4.37892" z="22.2042"/>
      <vertex index="316" x="12.1839" y="12.1839" z="14.026"/>
      <vertex index="317" x="8.35819" y="17.9617" z="19.5552"/>
      <vertex index="318" x="10.1525" y="25.5756" z="25.0131"/>
      <vertex index="319" x="25.7154" y="11.7132" z="4.69293"/>
      <vertex index="320" x="10.8625" y="18.7686" z="8.58358"/>
      <vertex index="321" x="18.6818" y="14.6549" z="8.61103"/>
      <vertex index="322" x="25.7697" y="8.96822" z="9.69062"/>
      <vertex index="323" x="11.7266" y="16.3767" z="3.52227"/>
      <vertex index="324" x="4.23739" y="4.55779" z="18.0368"/>
      <vertex index="325" x="16.5694" y="16.5694" z="12.781"/>
      <vertex index="326" x="14.4077" y="26.7244" z="12.3516"/>
      <vertex index="327" x="20.5614" y="18.3962" z="22.2346"/>
      <vertex index="328" x="15.8668" y="20.263" z="21.4189"/>
      <vertex index="329" x="16.0627" y="18.7648" z="3.85711"/>
      <vertex index="330" x="10.9188" y="4.40284" z="25.0781"/>
      <vertex index="331" x="20.6902" y="26.2635" z="8.95342"/>
      <vertex index="332" x="13.1082" y="13.1082" z="17.0732"/>
      <vertex index="333" x="3.25832" y="7.97588" z="14.4418"/>
      <vertex index="334" x="10.308" y="15.002" z="11.4986"/>
      <vertex index="335" x="9.49692" y="24.4645" z="2.64268"/>
      <vertex index="336" x="20.0609" y="14.1606" z="15.1778"/>
      <vertex index="337" x="16.5219" y="12.6495" z="27.3521"/>
      <vertex index="338" x="4.38742" y="18.8288" z="6.96197"/>
      <vertex index="339" x="17.9295" y="25.1806" z="20.4454"/>
      <vertex index="340" x="25.2604" y="4.55649" z="18.5544"/>
      <vertex index="341" x="12.3583" y="17.6417" z="14.8903"/>
      <vertex index="342" x="7.63001" y="10.6004" z="3.14043"/>
      <vertex index="343" x="8.44829" y="12.328" z="14.3989"/>
      <vertex index="344" x="8.34092" y="21.7392" z="10.5171"/>
      <vertex index="345" x="26.1892" y="13.5902" z="10.8848"/>
      <vertex index="346" x="25.8244" y="20.2308" z="21.9022"/>
      <vertex index="347" x="25.4798" y="25.4055" z="18.5481"/>
      <vertex index="348" x="12.1203" y="13.2723" z="22.4578"/>
      <vertex index="349" x="5.97023" y="26.8778" z="4.13875"/>
      <vertex index="350" x="11.3477" y="7.89098" z="19.3158"/>
      <vertex index="351" x="14.7224" y="18.6579" z="18.1754"/>
      <vertex index="352" x="11.9834" y="7.5057" z="15.3607"/>
      <vertex index="353" x="22.8462" y="10.4123" z="12.1343"/>
      <vertex index="354" x="19.7387" y="11.7654" z="4.45952"/>
      <vertex index="355" x="3.99864" y="27.055" z="10.9245"/>
      <vertex index="356" x="6.98341" y="19.6114" z="13.9596"/>
      <vertex index="357" x="17.9518" y="22.9139" z="9.69827"/>
      <vertex index="358" x="23.933" y="18.2378" z="3.36915"/>
      <vertex index="359" x="16.9945" y="11.5819" z="23.3994"/>
      <vertex index="360" x="13.7114" y="19.2033" z="10.7321"/>
      <vertex index="361" x="17.9417" y="5.29542" z="26.4392"/>
      <vertex index="362" x="21.3566" y="11.2281" z="17.0758"/>
      <vertex index="363" x="3.5935" y="22.1737" z="21.6674"/>
      <vertex index="364" x="13.5918" y="12.738" z="8.99499"/>
      <vertex index="365" x="3.10616" y="14.9073" z="20.4546"/>
      <vertex index="366" x="22.2125" y="7.26285" z="26.4401"/>
      <vertex index="367" x="14.7648" y="26.6356" z="17.032"/>
      <vertex index="368" x="5.63214" y="26.4811" z="25.2034"/>
      <vertex index="369" x="21.5484" y="17.1317" z="9.58227"/>
      <vertex index="370" x="3.31645" y="15.3944" z="2.46929"/>
      <vertex index="371" x="8.3846" y="21.7724" z="20.4812"/>
      <vertex index="372" x="27.3762" y="3.49165" z="7.49847"/>
      <vertex index="373" x="13.5955" y="13.9005" z="12.7799"/>
    </vertices>
    <cells size="1627">
      <tetrahedron index="0" v0="66" v1="111" v2="219" v3="259"/>
      <tetrahedron index="1" v0="66" v1="259" v2="219" v3="269"/>
      <tetrahedron index="2" v0="190" v1="265" v2="248" v3="284"/>
      <tetrahedron index="3" v0="237" v1="158" v2="252" v3="329"/>
      <tetrahedron index="4" v0="84" v1="236" v2="174" v3="349"/>
      <tetrahedron index="5" v0="263" v1="225" v2="241" v3="288"/>
      <tetrahedron index="6" v0="36" v1="37" v2="195" v3="340"/>
      <tetrahedron index="7" v0="62" v1="261" v2="272" v3="341"/>
      <tetrahedron index="8" v0="225" v1="215" v2="288" v3="290"/>
      <tetrahedron index="9" v0="62" v1="261" v2="341" v3="351"/>
      <tetrahedron index="10" v0="187" v1="194" v2="182" v3="217"/>
      <tetrahedron index="11" v0="128" v1="242" v2="140" v3="339"/>
      <tetrahedron index="12" v0="304" v1="268" v2="281" v3="348"/>
      <tetrahedron index="13" v0="209" v1="237" v2="252" v3="329"/>
      <tetrahedron index="14" v0="209" v1="237" v2="224" v3="321"/>
      <tetrahedron index="15" v0="182" v1="187" v2="217" v3="267"/>
      <tetrahedron index="16" v0="39" v1="202" v2="120" v3="303"/>
      <tetrahedron index="17" v0="170" v1="164" v2="158" v3="250"/>
      <tetrahedron index="18" v0="145" v1="47" v2="128" v3="112"/>
      <tetrahedron index="19" v0="263" v1="106" v2="270" v3="290"/>
      <tetrahedron index="20" v0="126" v1="129" v2="298" v3="303"/>
      <tetrahedron index="21" v0="68" v1="225" v2="263" v3="270"/>
      <tetrahedron index="22" v0="266" v1="211" v2="241" v3="343"/>
      <tetrahedron index="23" v0="225" v1="70" v2="266" v3="338"/>
      <tetrahedron index="24" v0="92" v1="94" v2="213" v3="238"/>
      <tetrahedron index="25" v0="237" v1="209" v2="224" v3="282"/>
      <tetrahedron index="26" v0="242" v1="128" v2="227" v3="279"/>
      <tetrahedron index="27" v0="262" v1="70" v2="225" v3="338"/>
      <tetrahedron index="28" v0="133" v1="231" v2="311" v3="313"/>
      <tetrahedron index="29" v0="252" v1="160" v2="290" v3="296"/>
      <tetrahedron index="30" v0="109" v1="34" v2="265" v3="366"/>
      <tetrahedron index="31" v0="217" v1="237" v2="282" v3="293"/>
      <tetrahedron index="32" v0="295" v1="210" v2="253" v3="356"/>
      <tetrahedron index="33" v0="215" v1="252" v2="290" v3="296"/>
      <tetrahedron index="34" v0="242" v1="145" v2="112" v3="260"/>
      <tetrahedron index="35" v0="231" v1="206" v2="311" v3="312"/>
      <tetrahedron index="36" v0="203" v1="281" v2="276" v3="348"/>
      <tetrahedron index="37" v0="210" v1="306" v2="301" v3="371"/>
      <tetrahedron index="38" v0="179" v1="223" v2="314" v3="345"/>
      <tetrahedron index="39" v0="170" v1="50" v2="161" v3="335"/>
      <tetrahedron index="40" v0="291" v1="10" v2="325" v3="336"/>
      <tetrahedron index="41" v0="111" v1="66" v2="219" v3="294"/>
      <tetrahedron index="42" v0="291" v1="224" v2="272" v3="357"/>
      <tetrahedron index="43" v0="236" v1="164" v2="250" v3="338"/>
      <tetrahedron index="44" v0="145" v1="128" v2="140" v3="339"/>
      <tetrahedron index="45" v0="94" v1="213" v2="238" v3="315"/>
      <tetrahedron index="46" v0="279" v1="221" v2="283" v3="318"/>
      <tetrahedron index="47" v0="316" v1="63" v2="258" v3="332"/>
      <tetrahedron index="48" v0="203" v1="207" v2="277" v3="337"/>
      <tetrahedron index="49" v0="164" v1="236" v2="250" v3="335"/>
      <tetrahedron index="50" v0="323" v1="209" v2="252" v3="329"/>
      <tetrahedron index="51" v0="233" v1="285" v2="209" v3="321"/>
      <tetrahedron index="52" v0="261" v1="227" v2="210" v3="306"/>
      <tetrahedron index="53" v0="128" v1="227" v2="279" v3="318"/>
      <tetrahedron index="54" v0="160" v1="296" v2="252" v3="342"/>
      <tetrahedron index="55" v0="204" v1="199" v2="242" v3="328"/>
      <tetrahedron index="56" v0="61" v1="232" v2="311" v3="312"/>
      <tetrahedron index="57" v0="34" v1="117" v2="265" v3="366"/>
      <tetrahedron index="58" v0="224" v1="291" v2="217" v3="357"/>
      <tetrahedron index="59" v0="187" v1="194" v2="217" v3="305"/>
      <tetrahedron index="60" v0="99" v1="215" v2="271" v3="290"/>
      <tetrahedron index="61" v0="252" v1="165" v2="271" v3="290"/>
      <tetrahedron index="62" v0="263" v1="225" v2="288" v3="290"/>
      <tetrahedron index="63" v0="126" v1="279" v2="283" v3="318"/>
      <tetrahedron index="64" v0="171" v1="15" v2="173" v3="270"/>
      <tetrahedron index="65" v0="213" v1="251" v2="281" v3="309"/>
      <tetrahedron index="66" v0="224" v1="237" v2="217" v3="369"/>
      <tetrahedron index="67" v0="236" v1="164" v2="174" v3="335"/>
      <tetrahedron index="68" v0="190" v1="265" v2="284" v3="340"/>
      <tetrahedron index="69" v0="92" v1="195" v2="240" v3="302"/>
      <tetrahedron index="70" v0="66" v1="79" v2="259" v3="269"/>
      <tetrahedron index="71" v0="285" v1="233" v2="209" v3="364"/>
      <tetrahedron index="72" v0="210" v1="261" v2="300" v3="301"/>
      <tetrahedron index="73" v0="98" v1="93" v2="240" v3="271"/>
      <tetrahedron index="74" v0="215" v1="225" v2="241" v3="296"/>
      <tetrahedron index="75" v0="236" v1="154" v2="257" v3="289"/>
      <tetrahedron index="76" v0="214" v1="87" v2="266" v3="269"/>
      <tetrahedron index="77" v0="92" v1="94" v2="238" v3="240"/>
      <tetrahedron index="78" v0="10" v1="62" v2="235" v3="291"/>
      <tetrahedron index="79" v0="247" v1="291" v2="224" v3="325"/>
      <tetrahedron index="80" v0="66" v1="269" v2="219" v3="294"/>
      <tetrahedron index="81" v0="34" v1="109" v2="117" v3="366"/>
      <tetrahedron index="82" v0="293" v1="237" v2="282" v3="329"/>
      <tetrahedron index="83" v0="63" v1="62" v2="208" v3="233"/>
      <tetrahedron index="84" v0="164" v1="262" v2="250" v3="338"/>
      <tetrahedron index="85" v0="37" v1="185" v2="195" v3="340"/>
      <tetrahedron index="86" v0="269" v1="214" v2="230" v3="343"/>
      <tetrahedron index="87" v0="206" v1="231" v2="278" v3="312"/>
      <tetrahedron index="88" v0="215" v1="93" v2="271" v3="307"/>
      <tetrahedron index="89" v0="79" v1="259" v2="269" v3="365"/>
      <tetrahedron index="90" v0="118" v1="48" v2="152" v3="260"/>
      <tetrahedron index="91" v0="226" v1="200" v2="258" v3="351"/>
      <tetrahedron index="92" v0="214" v1="275" v2="317" v3="365"/>
      <tetrahedron index="93" v0="213" v1="240" v2="238" v3="249"/>
      <tetrahedron index="94" v0="89" v1="109" v2="265" v3="366"/>
      <tetrahedron index="95" v0="224" v1="245" v2="217" v3="291"/>
      <tetrahedron index="96" v0="99" v1="105" v2="215" v3="290"/>
      <tetrahedron index="97" v0="169" v1="157" v2="239" v3="293"/>
      <tetrahedron index="98" v0="268" v1="203" v2="276" v3="348"/>
      <tetrahedron index="99" v0="157" v1="239" v2="293" v3="331"/>
      <tetrahedron index="100" v0="120" v1="202" v2="268" v3="303"/>
      <tetrahedron index="101" v0="268" v1="281" v2="219" v3="304"/>
      <tetrahedron index="102" v0="128" v1="140" v2="227" v3="318"/>
      <tetrahedron index="103" v0="214" v1="269" v2="230" v3="304"/>
      <tetrahedron index="104" v0="202" v1="204" v2="200" v3="275"/>
      <tetrahedron index="105" v0="326" v1="239" v2="331" v3="357"/>
      <tetrahedron index="106" v0="239" v1="142" v2="289" v3="326"/>
      <tetrahedron index="107" v0="234" v1="216" v2="307" v3="354"/>
      <tetrahedron index="108" v0="303" v1="204" v2="275" v3="306"/>
      <tetrahedron index="109" v0="225" v1="211" v2="241" v3="266"/>
      <tetrahedron index="110" v0="68" v1="70" v2="225" v3="342"/>
      <tetrahedron index="111" v0="251" v1="213" v2="238" v3="309"/>
      <tetrahedron index="112" v0="235" v1="10" v2="291" v3="336"/>
      <tetrahedron index="113" v0="145" v1="128" v2="47" v3="140"/>
      <tetrahedron index="114" v0="164" v1="236" v2="174" v3="338"/>
      <tetrahedron index="115" v0="210" v1="227" v2="301" v3="306"/>
      <tetrahedron index="116" v0="214" v1="87" v2="269" v3="365"/>
      <tetrahedron index="117" v0="245" v1="305" v2="220" v3="314"/>
      <tetrahedron index="118" v0="171" v1="68" v2="270" v3="342"/>
      <tetrahedron index="119" v0="259" v1="111" v2="219" v3="268"/>
      <tetrahedron index="120" v0="242" v1="199" v2="279" v3="328"/>
      <tetrahedron index="121" v0="199" v1="61" v2="204" v3="273"/>
      <tetrahedron index="122" v0="68" v1="225" v2="270" v3="342"/>
      <tetrahedron index="123" v0="104" v1="211" v2="286" v3="288"/>
      <tetrahedron index="124" v0="173" v1="171" v2="270" v3="342"/>
      <tetrahedron index="125" v0="296" v1="160" v2="290" v3="342"/>
      <tetrahedron index="126" v0="62" v1="233" v2="341" v3="360"/>
      <tetrahedron index="127" v0="215" v1="238" v2="288" v3="307"/>
      <tetrahedron index="128" v0="142" v1="170" v2="239" v3="289"/>
      <tetrahedron index="129" v0="214" v1="255" v2="253" v3="317"/>
      <tetrahedron index="130" v0="63" v1="316" v2="258" v3="343"/>
      <tetrahedron index="131" v0="129" v1="127" v2="126" v3="298"/>
      <tetrahedron index="132" v0="240" v1="195" v2="90" v3="372"/>
      <tetrahedron index="133" v0="39" v1="6" v2="199" v3="274"/>
      <tetrahedron index="134" v0="70" v1="225" v2="342" v3="370"/>
      <tetrahedron index="135" v0="262" v1="225" v2="296" v3="334"/>
      <tetrahedron index="136" v0="158" v1="167" v2="237" v3="252"/>
      <tetrahedron index="137" v0="234" v1="215" v2="252" v3="271"/>
      <tetrahedron index="138" v0="305" v1="246" v2="220" v3="347"/>
      <tetrahedron index="139" v0="61" v1="229" v2="235" v3="287"/>
      <tetrahedron index="140" v0="106" v1="100" v2="270" v3="290"/>
      <tetrahedron index="141" v0="227" v1="261" v2="210" v3="301"/>
      <tetrahedron index="142" v0="233" v1="62" v2="325" v3="360"/>
      <tetrahedron index="143" v0="133" v1="231" v2="278" v3="337"/>
      <tetrahedron index="144" v0="223" v1="247" v2="245" v3="345"/>
      <tetrahedron index="145" v0="225" v1="215" v2="290" v3="296"/>
      <tetrahedron index="146" v0="15" v1="171" v2="68" v3="270"/>
      <tetrahedron index="147" v0="229" v1="10" v2="287" v3="336"/>
      <tetrahedron index="148" v0="199" v1="39" v2="279" v3="303"/>
      <tetrahedron index="149" v0="157" v1="169" v2="264" v3="293"/>
      <tetrahedron index="150" v0="128" v1="242" v2="136" v3="279"/>
      <tetrahedron index="151" v0="92" v1="213" v2="315" v3="340"/>
      <tetrahedron index="152" v0="170" v1="164" v2="250" v3="335"/>
      <tetrahedron index="153" v0="264" v1="157" v2="293" v3="331"/>
      <tetrahedron index="154" v0="187" v1="245" v2="217" v3="267"/>
      <tetrahedron index="155" v0="179" v1="189" v2="228" v3="284"/>
      <tetrahedron index="156" v0="245" v1="187" v2="217" v3="305"/>
      <tetrahedron index="157" v0="7" v1="40" v2="134" v3="337"/>
      <tetrahedron index="158" v0="92" v1="240" v2="213" v3="340"/>
      <tetrahedron index="159" v0="225" v1="262" v2="342" v3="370"/>
      <tetrahedron index="160" v0="170" v1="51" v2="142" v3="239"/>
      <tetrahedron index="161" v0="161" v1="236" v2="174" v3="335"/>
      <tetrahedron index="162" v0="256" v1="272" v2="300" v3="341"/>
      <tetrahedron index="163" v0="174" v1="84" v2="67" v3="236"/>
      <tetrahedron index="164" v0="202" v1="39" v2="199" v3="303"/>
      <tetrahedron index="165" v0="231" v1="206" v2="278" v3="337"/>
      <tetrahedron index="166" v0="219" v1="268" v2="276" v3="281"/>
      <tetrahedron index="167" v0="218" v1="229" v2="281" v3="359"/>
      <tetrahedron index="168" v0="304" v1="281" v2="219" v3="350"/>
      <tetrahedron index="169" v0="92" v1="195" v2="90" v3="240"/>
      <tetrahedron index="170" v0="233" v1="285" v2="224" v3="325"/>
      <tetrahedron index="171" v0="92" v1="195" v2="302" v3="340"/>
      <tetrahedron index="172" v0="126" v1="221" v2="279" v3="303"/>
      <tetrahedron index="173" v0="190" v1="185" v2="184" v3="265"/>
      <tetrahedron index="174" v0="236" v1="154" v2="289" v3="349"/>
      <tetrahedron index="175" v0="178" v1="160" v2="252" v3="342"/>
      <tetrahedron index="176" v0="204" v1="200" v2="275" v3="306"/>
      <tetrahedron index="177" v0="285" v1="233" v2="224" v3="321"/>
      <tetrahedron index="178" v0="61" v1="204" v2="273" v3="327"/>
      <tetrahedron index="179" v0="158" v1="323" v2="252" v3="329"/>
      <tetrahedron index="180" v0="229" v1="64" v2="309" v3="332"/>
      <tetrahedron index="181" v0="109" v1="34" v2="89" v3="265"/>
      <tetrahedron index="182" v0="69" v1="254" v2="253" v3="299"/>
      <tetrahedron index="183" v0="63" v1="62" v2="233" v3="341"/>
      <tetrahedron index="184" v0="226" v1="63" v2="258" v3="341"/>
      <tetrahedron index="185" v0="94" v1="93" v2="238" v3="240"/>
      <tetrahedron index="186" v0="94" v1="92" v2="213" v3="315"/>
      <tetrahedron index="187" v0="76" v1="111" v2="66" v3="259"/>
      <tetrahedron index="188" v0="116" v1="96" v2="294" v3="330"/>
      <tetrahedron index="189" v0="229" v1="213" v2="281" v3="309"/>
      <tetrahedron index="190" v0="236" v1="161" v2="174" v3="349"/>
      <tetrahedron index="191" v0="261" v1="226" v2="300" v3="341"/>
      <tetrahedron index="192" v0="266" v1="72" v2="222" v3="338"/>
      <tetrahedron index="193" v0="10" v1="247" v2="325" v3="336"/>
      <tetrahedron index="194" v0="183" v1="57" v2="168" v3="58"/>
      <tetrahedron index="195" v0="68" v1="70" v2="342" v3="370"/>
      <tetrahedron index="196" v0="93" v1="99" v2="215" v3="271"/>
      <tetrahedron index="197" v0="48" v1="118" v2="112" v3="260"/>
      <tetrahedron index="198" v0="240" v1="92" v2="302" v3="340"/>
      <tetrahedron index="199" v0="35" v1="195" v2="183" v3="372"/>
      <tetrahedron index="200" v0="254" v1="69" v2="253" v3="295"/>
      <tetrahedron index="201" v0="234" v1="215" v2="271" v3="307"/>
      <tetrahedron index="202" v0="41" v1="108" v2="117" v3="184"/>
      <tetrahedron index="203" v0="73" v1="68" v2="225" v3="263"/>
      <tetrahedron index="204" v0="179" v1="284" v2="223" v3="302"/>
      <tetrahedron index="205" v0="311" v1="231" v2="312" v3="313"/>
      <tetrahedron index="206" v0="52" v1="169" v2="172" v3="264"/>
      <tetrahedron index="207" v0="161" v1="84" v2="174" v3="349"/>
      <tetrahedron index="208" v0="178" v1="160" v2="165" v3="252"/>
      <tetrahedron index="209" v0="237" v1="209" v2="252" v3="321"/>
      <tetrahedron index="210" v0="167" v1="237" v2="252" v3="354"/>
      <tetrahedron index="211" v0="254" v1="295" v2="253" v3="356"/>
      <tetrahedron index="212" v0="215" v1="105" v2="288" v3="290"/>
      <tetrahedron index="213" v0="160" v1="165" v2="252" v3="290"/>
      <tetrahedron index="214" v0="211" v1="104" v2="263" v3="288"/>
      <tetrahedron index="215" v0="132" v1="118" v2="198" v3="260"/>
      <tetrahedron index="216" v0="185" v1="190" v2="284" v3="340"/>
      <tetrahedron index="217" v0="134" v1="135" v2="218" v3="278"/>
      <tetrahedron index="218" v0="190" v1="184" v2="248" v3="265"/>
      <tetrahedron index="219" v0="183" v1="168" v2="243" v3="319"/>
      <tetrahedron index="220" v0="275" v1="298" v2="317" v3="365"/>
      <tetrahedron index="221" v0="225" v1="262" v2="222" v3="334"/>
      <tetrahedron index="222" v0="226" v1="256" v2="300" v3="341"/>
      <tetrahedron index="223" v0="111" v1="113" v2="219" v3="268"/>
      <tetrahedron index="224" v0="304" v1="269" v2="230" v3="350"/>
      <tetrahedron index="225" v0="271" v1="234" v2="307" v3="354"/>
      <tetrahedron index="226" v0="36" v1="90" v2="92" v3="195"/>
      <tetrahedron index="227" v0="255" v1="253" v2="317" v3="356"/>
      <tetrahedron index="228" v0="247" v1="291" v2="325" v3="336"/>
      <tetrahedron index="229" v0="219" v1="281" v2="276" v3="350"/>
      <tetrahedron index="230" v0="163" v1="158" v2="237" v3="329"/>
      <tetrahedron index="231" v0="299" v1="254" v2="253" v3="356"/>
      <tetrahedron index="232" v0="120" v1="111" v2="259" v3="268"/>
      <tetrahedron index="233" v0="202" v1="199" v2="204" v3="279"/>
      <tetrahedron index="234" v0="179" v1="188" v2="223" v3="345"/>
      <tetrahedron index="235" v0="257" v1="212" v2="289" v3="326"/>
      <tetrahedron index="236" v0="150" v1="142" v2="239" v3="326"/>
      <tetrahedron index="237" v0="287" v1="10" v2="235" v3="336"/>
      <tetrahedron index="238" v0="211" v1="104" v2="286" v3="324"/>
      <tetrahedron index="239" v0="211" v1="269" v2="230" v3="343"/>
      <tetrahedron index="240" v0="195" v1="185" v2="302" v3="340"/>
      <tetrahedron index="241" v0="252" v1="234" v2="271" v3="354"/>
      <tetrahedron index="242" v0="190" v1="185" v2="265" v3="340"/>
      <tetrahedron index="243" v0="218" v1="213" v2="248" v3="366"/>
      <tetrahedron index="244" v0="199" v1="204" v2="242" v3="273"/>
      <tetrahedron index="245" v0="247" v1="245" v2="345" v3="369"/>
      <tetrahedron index="246" v0="212" v1="257" v2="289" v3="344"/>
      <tetrahedron index="247" v0="108" v1="184" v2="5" v3="38"/>
      <tetrahedron index="248" v0="105" v1="106" v2="263" v3="290"/>
      <tetrahedron index="249" v0="243" v1="240" v2="216" v3="307"/>
      <tetrahedron index="250" v0="354" v1="237" v2="319" v3="358"/>
      <tetrahedron index="251" v0="135" v1="218" v2="278" v3="313"/>
      <tetrahedron index="252" v0="52" v1="157" v2="169" v3="264"/>
      <tetrahedron index="253" v0="113" v1="111" v2="219" v3="294"/>
      <tetrahedron index="254" v0="257" v1="236" v2="289" v3="344"/>
      <tetrahedron index="255" v0="265" v1="110" v2="248" v3="366"/>
      <tetrahedron index="256" v0="243" v1="216" v2="271" v3="307"/>
      <tetrahedron index="257" v0="109" v1="89" v2="361" v3="366"/>
      <tetrahedron index="258" v0="48" v1="145" v2="152" v3="260"/>
      <tetrahedron index="259" v0="136" v1="199" v2="124" v3="279"/>
      <tetrahedron index="260" v0="269" v1="211" v2="230" v3="350"/>
      <tetrahedron index="261" v0="190" v1="184" v2="189" v3="248"/>
      <tetrahedron index="262" v0="173" v1="28" v2="160" v3="290"/>
      <tetrahedron index="263" v0="203" v1="202" v2="268" v3="277"/>
      <tetrahedron index="264" v0="165" v1="99" v2="271" v3="290"/>
      <tetrahedron index="265" v0="217" v1="245" v2="246" v3="291"/>
      <tetrahedron index="266" v0="228" v1="189" v2="248" v3="284"/>
      <tetrahedron index="267" v0="141" v1="246" v2="220" v3="339"/>
      <tetrahedron index="268" v0="223" v1="245" v2="314" v3="345"/>
      <tetrahedron index="269" v0="210" v1="226" v2="317" v3="356"/>
      <tetrahedron index="270" v0="92" v1="36" v2="195" v3="340"/>
      <tetrahedron index="271" v0="264" v1="267" v2="217" v3="358"/>
      <tetrahedron index="272" v0="120" v1="7" v2="122" v3="277"/>
      <tetrahedron index="273" v0="233" v1="209" v2="224" v3="321"/>
      <tetrahedron index="274" v0="211" v1="225" v2="263" v3="266"/>
      <tetrahedron index="275" v0="272" v1="261" v2="300" v3="341"/>
      <tetrahedron index="276" v0="285" v1="10" v2="247" v3="325"/>
      <tetrahedron index="277" v0="279" v1="204" v2="303" v3="306"/>
      <tetrahedron index="278" v0="350" v1="238" v2="286" v3="352"/>
      <tetrahedron index="279" v0="266" v1="225" v2="222" v3="334"/>
      <tetrahedron index="280" v0="190" v1="189" v2="179" v3="284"/>
      <tetrahedron index="281" v0="100" v1="28" v2="173" v3="290"/>
      <tetrahedron index="282" v0="63" v1="233" v2="334" v3="341"/>
      <tetrahedron index="283" v0="168" v1="159" v2="243" v3="354"/>
      <tetrahedron index="284" v0="306" v1="227" v2="301" v3="371"/>
      <tetrahedron index="285" v0="221" v1="275" v2="298" v3="317"/>
      <tetrahedron index="286" v0="308" v1="232" v2="248" v3="313"/>
      <tetrahedron index="287" v0="74" v1="69" v2="253" v3="299"/>
      <tetrahedron index="288" v0="98" v1="93" v2="90" v3="240"/>
      <tetrahedron index="289" v0="254" v1="210" v2="295" v3="356"/>
      <tetrahedron index="290" v0="34" v1="117" v2="108" v3="265"/>
      <tetrahedron index="291" v0="83" v1="68" v2="263" v3="270"/>
      <tetrahedron index="292" v0="242" v1="119" v2="136" v3="273"/>
      <tetrahedron index="293" v0="250" v1="262" v2="320" v3="338"/>
      <tetrahedron index="294" v0="247" v1="234" v2="249" v3="310"/>
      <tetrahedron index="295" v0="246" v1="141" v2="220" v3="347"/>
      <tetrahedron index="296" v0="154" v1="236" v2="257" v3="355"/>
      <tetrahedron index="297" v0="236" v1="250" v2="320" v3="338"/>
      <tetrahedron index="298" v0="184" v1="110" v2="248" v3="265"/>
      <tetrahedron index="299" v0="122" v1="113" v2="268" v3="276"/>
      <tetrahedron index="300" v0="76" v1="66" v2="79" v3="259"/>
      <tetrahedron index="301" v0="242" v1="145" v2="260" v3="339"/>
      <tetrahedron index="302" v0="272" v1="62" v2="341" v3="360"/>
      <tetrahedron index="303" v0="259" v1="120" v2="268" v3="303"/>
      <tetrahedron index="304" v0="184" v1="185" v2="193" v3="265"/>
      <tetrahedron index="305" v0="142" v1="156" v2="289" v3="326"/>
      <tetrahedron index="306" v0="264" v1="182" v2="267" v3="358"/>
      <tetrahedron index="307" v0="217" v1="293" v2="282" v3="357"/>
      <tetrahedron index="308" v0="212" v1="239" v2="289" v3="357"/>
      <tetrahedron index="309" v0="281" v1="251" v2="276" v3="350"/>
      <tetrahedron index="310" v0="61" v1="204" v2="327" v3="328"/>
      <tetrahedron index="311" v0="52" v1="153" v2="157" v3="264"/>
      <tetrahedron index="312" v0="199" v1="205" v2="273" v3="274"/>
      <tetrahedron index="313" v0="225" v1="263" v2="270" v3="290"/>
      <tetrahedron index="314" v0="314" v1="305" v2="220" v3="347"/>
      <tetrahedron index="315" v0="237" v1="209" v2="282" v3="329"/>
      <tetrahedron index="316" v0="200" v1="226" v2="258" v3="317"/>
      <tetrahedron index="317" v0="66" v1="116" v2="86" v3="294"/>
      <tetrahedron index="318" v0="58" v1="168" v2="183" v3="319"/>
      <tetrahedron index="319" v0="285" v1="209" v2="321" v3="364"/>
      <tetrahedron index="320" v0="112" v1="242" v2="260" v3="297"/>
      <tetrahedron index="321" v0="188" v1="179" v2="223" v3="302"/>
      <tetrahedron index="322" v0="100" v1="27" v2="173" v3="28"/>
      <tetrahedron index="323" v0="326" v1="212" v2="289" v3="357"/>
      <tetrahedron index="324" v0="210" v1="295" v2="253" v3="371"/>
      <tetrahedron index="325" v0="204" v1="202" v2="279" v3="303"/>
      <tetrahedron index="326" v0="226" v1="255" v2="317" v3="356"/>
      <tetrahedron index="327" v0="64" v1="229" v2="309" v3="310"/>
      <tetrahedron index="328" v0="198" v1="118" v2="132" v3="44"/>
      <tetrahedron index="329" v0="51" v1="170" v2="169" v3="239"/>
      <tetrahedron index="330" v0="214" v1="259" v2="269" v3="304"/>
      <tetrahedron index="331" v0="251" v1="238" v2="286" v3="350"/>
      <tetrahedron index="332" v0="61" v1="201" v2="229" v3="359"/>
      <tetrahedron index="333" v0="127" v1="25" v2="65" v3="298"/>
      <tetrahedron index="334" v0="168" v1="162" v2="183" v3="243"/>
      <tetrahedron index="335" v0="214" v1="269" v2="266" v3="343"/>
      <tetrahedron index="336" v0="243" v1="159" v2="271" v3="354"/>
      <tetrahedron index="337" v0="213" v1="251" v2="238" v3="315"/>
      <tetrahedron index="338" v0="167" v1="163" v2="158" v3="237"/>
      <tetrahedron index="339" v0="225" v1="266" v2="241" v3="334"/>
      <tetrahedron index="340" v0="281" v1="268" v2="276" v3="348"/>
      <tetrahedron index="341" v0="239" v1="150" v2="326" v3="331"/>
      <tetrahedron index="342" v0="88" v1="251" v2="238" v3="286"/>
      <tetrahedron index="343" v0="265" v1="213" v2="248" v3="284"/>
      <tetrahedron index="344" v0="217" v1="291" v2="246" v3="357"/>
      <tetrahedron index="345" v0="142" v1="150" v2="239" v3="331"/>
      <tetrahedron index="346" v0="308" v1="130" v2="232" v3="313"/>
      <tetrahedron index="347" v0="195" v1="240" v2="322" v3="372"/>
      <tetrahedron index="348" v0="296" v1="209" v2="320" v3="334"/>
      <tetrahedron index="349" v0="104" v1="211" v2="263" v3="324"/>
      <tetrahedron index="350" v0="255" v1="63" v2="258" v3="343"/>
      <tetrahedron index="351" v0="213" v1="265" v2="248" v3="366"/>
      <tetrahedron index="352" v0="168" v1="243" v2="319" v3="354"/>
      <tetrahedron index="353" v0="111" v1="120" v2="113" v3="268"/>
      <tetrahedron index="354" v0="87" v1="214" v2="266" v3="299"/>
      <tetrahedron index="355" v0="93" v1="215" v2="288" v3="307"/>
      <tetrahedron index="356" v0="37" v1="36" v2="92" v3="340"/>
      <tetrahedron index="357" v0="51" v1="157" v2="142" v3="239"/>
      <tetrahedron index="358" v0="229" v1="218" v2="292" v3="359"/>
      <tetrahedron index="359" v0="41" v1="108" v2="184" v3="5"/>
      <tetrahedron index="360" v0="176" v1="163" v2="237" v3="358"/>
      <tetrahedron index="361" v0="154" v1="156" v2="257" v3="289"/>
      <tetrahedron index="362" v0="256" v1="210" v2="300" v3="356"/>
      <tetrahedron index="363" v0="266" v1="241" v2="334" v3="343"/>
      <tetrahedron index="364" v0="61" v1="203" v2="201" v3="359"/>
      <tetrahedron index="365" v0="236" v1="154" v2="349" v3="355"/>
      <tetrahedron index="366" v0="162" v1="98" v2="102" v3="243"/>
      <tetrahedron index="367" v0="164" v1="171" v2="166" v3="370"/>
      <tetrahedron index="368" v0="178" v1="296" v2="252" v3="323"/>
      <tetrahedron index="369" v0="203" v1="207" v2="278" v3="359"/>
      <tetrahedron index="370" v0="42" v1="184" v2="110" v3="248"/>
      <tetrahedron index="371" v0="210" v1="226" v2="256" v3="300"/>
      <tetrahedron index="372" v0="261" v1="226" v2="341" v3="351"/>
      <tetrahedron index="373" v0="105" v1="93" v2="215" v3="288"/>
      <tetrahedron index="374" v0="64" v1="316" v2="309" v3="332"/>
      <tetrahedron index="375" v0="124" v1="128" v2="279" v3="318"/>
      <tetrahedron index="376" v0="265" v1="213" v2="218" v3="366"/>
      <tetrahedron index="377" v0="132" v1="198" v2="181" v3="260"/>
      <tetrahedron index="378" v0="81" v1="74" v2="69" v3="253"/>
      <tetrahedron index="379" v0="261" v1="62" v2="291" v3="351"/>
      <tetrahedron index="380" v0="224" v1="217" v2="282" v3="357"/>
      <tetrahedron index="381" v0="116" v1="111" v2="113" v3="294"/>
      <tetrahedron index="382" v0="261" v1="62" v2="272" v3="291"/>
      <tetrahedron index="383" v0="240" v1="216" v2="307" v3="353"/>
      <tetrahedron index="384" v0="262" v1="296" v2="320" v3="334"/>
      <tetrahedron index="385" v0="39" v1="120" v2="123" v3="303"/>
      <tetrahedron index="386" v0="210" v1="257" v2="295" v3="301"/>
      <tetrahedron index="387" v0="116" v1="86" v2="23" v3="66"/>
      <tetrahedron index="388" v0="234" v1="247" v2="249" v3="353"/>
      <tetrahedron index="389" v0="199" v1="39" v2="124" v3="279"/>
      <tetrahedron index="390" v0="62" v1="272" v2="325" v3="360"/>
      <tetrahedron index="391" v0="61" v1="287" v2="235" v3="327"/>
      <tetrahedron index="392" v0="128" v1="136" v2="124" v3="279"/>
      <tetrahedron index="393" v0="204" v1="61" v2="200" v3="328"/>
      <tetrahedron index="394" v0="79" v1="76" v2="259" v3="365"/>
      <tetrahedron index="395" v0="145" v1="48" v2="112" v3="260"/>
      <tetrahedron index="396" v0="113" v1="294" v2="219" v3="330"/>
      <tetrahedron index="397" v0="89" v1="34" v2="108" v3="265"/>
      <tetrahedron index="398" v0="154" v1="155" v2="349" v3="355"/>
      <tetrahedron index="399" v0="117" v1="184" v2="108" v3="265"/>
      <tetrahedron index="400" v0="268" v1="202" v2="275" v3="303"/>
      <tetrahedron index="401" v0="25" v1="127" v2="129" v3="298"/>
      <tetrahedron index="402" v0="153" v1="52" v2="172" v3="264"/>
      <tetrahedron index="403" v0="212" v1="289" v2="250" v3="344"/>
      <tetrahedron index="404" v0="212" v1="250" v2="320" v3="344"/>
      <tetrahedron index="405" v0="156" v1="257" v2="289" v3="326"/>
      <tetrahedron index="406" v0="76" v1="25" v2="129" v3="298"/>
      <tetrahedron index="407" v0="24" v1="111" v2="76" v3="259"/>
      <tetrahedron index="408" v0="311" v1="61" v2="273" v3="327"/>
      <tetrahedron index="409" v0="70" v1="73" v2="225" v3="266"/>
      <tetrahedron index="410" v0="189" v1="190" v2="248" v3="284"/>
      <tetrahedron index="411" v0="189" v1="192" v2="179" v3="228"/>
      <tetrahedron index="412" v0="195" v1="240" v2="302" v3="322"/>
      <tetrahedron index="413" v0="240" v1="243" v2="216" v3="322"/>
      <tetrahedron index="414" v0="129" v1="259" v2="298" v3="303"/>
      <tetrahedron index="415" v0="293" v1="239" v2="282" v3="357"/>
      <tetrahedron index="416" v0="176" v1="237" v2="354" v3="358"/>
      <tetrahedron index="417" v0="264" v1="217" v2="293" v3="358"/>
      <tetrahedron index="418" v0="216" v1="271" v2="307" v3="354"/>
      <tetrahedron index="419" v0="69" v1="20" v2="295" v3="355"/>
      <tetrahedron index="420" v0="231" v1="133" v2="278" v3="313"/>
      <tetrahedron index="421" v0="10" v1="229" v2="310" v3="336"/>
      <tetrahedron index="422" v0="41" v1="108" v2="5" v3="117"/>
      <tetrahedron index="423" v0="262" v1="164" v2="250" v3="323"/>
      <tetrahedron index="424" v0="291" v1="272" v2="246" v3="357"/>
      <tetrahedron index="425" v0="214" v1="230" v2="258" v3="304"/>
      <tetrahedron index="426" v0="204" v1="242" v2="327" v3="328"/>
      <tetrahedron index="427" v0="162" v1="159" v2="98" v3="243"/>
      <tetrahedron index="428" v0="230" v1="201" v2="309" v3="332"/>
      <tetrahedron index="429" v0="296" v1="225" v2="241" v3="334"/>
      <tetrahedron index="430" v0="240" v1="322" v2="216" v3="353"/>
      <tetrahedron index="431" v0="75" v1="138" v2="244" v3="295"/>
      <tetrahedron index="432" v0="185" v1="193" v2="265" v3="340"/>
      <tetrahedron index="433" v0="64" v1="285" v2="280" v3="373"/>
      <tetrahedron index="434" v0="116" v1="96" v2="103" v3="294"/>
      <tetrahedron index="435" v0="70" v1="262" v2="225" v3="370"/>
      <tetrahedron index="436" v0="157" v1="51" v2="169" v3="239"/>
      <tetrahedron index="437" v0="231" v1="278" v2="312" v3="313"/>
      <tetrahedron index="438" v0="25" v1="76" v2="65" v3="298"/>
      <tetrahedron index="439" v0="119" v1="242" v2="112" v3="297"/>
      <tetrahedron index="440" v0="229" v1="213" v2="218" v3="281"/>
      <tetrahedron index="441" v0="193" v1="108" v2="38" v3="184"/>
      <tetrahedron index="442" v0="138" v1="75" v2="244" v3="368"/>
      <tetrahedron index="443" v0="130" v1="133" v2="232" v3="313"/>
      <tetrahedron index="444" v0="110" v1="184" v2="117" v3="265"/>
      <tetrahedron index="445" v0="229" v1="201" v2="281" v3="359"/>
      <tetrahedron index="446" v0="63" v1="255" v2="316" v3="343"/>
      <tetrahedron index="447" v0="237" v1="267" v2="319" v3="358"/>
      <tetrahedron index="448" v0="184" v1="42" v2="189" v3="248"/>
      <tetrahedron index="449" v0="19" v1="2" v2="155" v3="349"/>
      <tetrahedron index="450" v0="213" v1="218" v2="248" v3="292"/>
      <tetrahedron index="451" v0="105" v1="263" v2="288" v3="290"/>
      <tetrahedron index="452" v0="116" v1="113" v2="96" v3="330"/>
      <tetrahedron index="453" v0="80" v1="84" v2="155" v3="349"/>
      <tetrahedron index="454" v0="174" v1="236" v2="67" v3="338"/>
      <tetrahedron index="455" v0="187" v1="305" v2="245" v3="314"/>
      <tetrahedron index="456" v0="213" v1="229" v2="249" v3="309"/>
      <tetrahedron index="457" v0="70" v1="171" v2="68" v3="16"/>
      <tetrahedron index="458" v0="178" v1="167" v2="158" v3="252"/>
      <tetrahedron index="459" v0="84" v1="80" v2="236" v3="349"/>
      <tetrahedron index="460" v0="247" v1="234" v2="216" v3="353"/>
      <tetrahedron index="461" v0="99" v1="105" v2="93" v3="215"/>
      <tetrahedron index="462" v0="204" v1="242" v2="273" v3="327"/>
      <tetrahedron index="463" v0="154" v1="144" v2="289" v3="349"/>
      <tetrahedron index="464" v0="129" v1="120" v2="259" v3="303"/>
      <tetrahedron index="465" v0="287" v1="228" v2="220" v3="327"/>
      <tetrahedron index="466" v0="251" v1="213" v2="281" v3="315"/>
      <tetrahedron index="467" v0="202" v1="268" v2="275" v3="348"/>
      <tetrahedron index="468" v0="308" v1="189" v2="228" v3="346"/>
      <tetrahedron index="469" v0="105" v1="100" v2="106" v3="290"/>
      <tetrahedron index="470" v0="220" v1="141" v2="339" v3="347"/>
      <tetrahedron index="471" v0="255" v1="63" v2="316" v3="334"/>
      <tetrahedron index="472" v0="164" v1="166" v2="158" v3="323"/>
      <tetrahedron index="473" v0="130" v1="42" v2="248" v3="308"/>
      <tetrahedron index="474" v0="111" v1="116" v2="66" v3="294"/>
      <tetrahedron index="475" v0="180" v1="58" v2="183" v3="319"/>
      <tetrahedron index="476" v0="192" v1="179" v2="228" v3="314"/>
      <tetrahedron index="477" v0="71" v1="66" v2="77" v3="269"/>
      <tetrahedron index="478" v0="279" v1="221" v2="318" v3="371"/>
      <tetrahedron index="479" v0="235" v1="245" v2="220" v3="287"/>
      <tetrahedron index="480" v0="171" v1="173" v2="160" v3="342"/>
      <tetrahedron index="481" v0="194" v1="146" v2="264" v3="305"/>
      <tetrahedron index="482" v0="238" v1="215" v2="280" v3="307"/>
      <tetrahedron index="483" v0="239" v1="326" v2="289" v3="357"/>
      <tetrahedron index="484" v0="237" v1="267" v2="216" v3="354"/>
      <tetrahedron index="485" v0="171" v1="16" v2="70" v3="370"/>
      <tetrahedron index="486" v0="221" v1="244" v2="283" v3="318"/>
      <tetrahedron index="487" v0="209" v1="233" v2="224" v3="360"/>
      <tetrahedron index="488" v0="162" v1="183" v2="243" v3="372"/>
      <tetrahedron index="489" v0="249" v1="213" v2="302" v3="362"/>
      <tetrahedron index="490" v0="305" v1="141" v2="246" v3="347"/>
      <tetrahedron index="491" v0="217" v1="237" v2="293" v3="369"/>
      <tetrahedron index="492" v0="209" v1="296" v2="320" v3="323"/>
      <tetrahedron index="493" v0="293" v1="237" v2="358" v3="369"/>
      <tetrahedron index="494" v0="101" v1="85" v2="106" v3="270"/>
      <tetrahedron index="495" v0="166" v1="178" v2="296" v3="342"/>
      <tetrahedron index="496" v0="254" v1="69" v2="295" v3="355"/>
      <tetrahedron index="497" v0="241" v1="211" v2="316" v3="343"/>
      <tetrahedron index="498" v0="158" v1="178" v2="252" v3="323"/>
      <tetrahedron index="499" v0="287" v1="284" v2="223" v3="314"/>
      <tetrahedron index="500" v0="138" v1="22" v2="75" v3="368"/>
      <tetrahedron index="501" v0="183" v1="162" v2="102" v3="372"/>
      <tetrahedron index="502" v0="226" v1="261" v2="306" v3="351"/>
      <tetrahedron index="503" v0="125" v1="124" v2="126" v3="279"/>
      <tetrahedron index="504" v0="211" v1="230" v2="316" v3="343"/>
      <tetrahedron index="505" v0="154" v1="139" v2="155" v3="355"/>
      <tetrahedron index="506" v0="221" v1="244" v2="318" v3="371"/>
      <tetrahedron index="507" v0="66" v1="77" v2="269" v3="294"/>
      <tetrahedron index="508" v0="203" v1="61" v2="207" v3="359"/>
      <tetrahedron index="509" v0="143" v1="244" v2="301" v3="318"/>
      <tetrahedron index="510" v0="239" v1="293" v2="282" v3="329"/>
      <tetrahedron index="511" v0="73" v1="83" v2="68" v3="263"/>
      <tetrahedron index="512" v0="226" v1="210" v2="256" v3="356"/>
      <tetrahedron index="513" v0="123" v1="120" v2="129" v3="303"/>
      <tetrahedron index="514" v0="61" v1="229" v2="287" v3="292"/>
      <tetrahedron index="515" v0="145" v1="260" v2="339" v3="347"/>
      <tetrahedron index="516" v0="234" v1="285" v2="321" v3="364"/>
      <tetrahedron index="517" v0="80" v1="236" v2="349" v3="355"/>
      <tetrahedron index="518" v0="202" v1="199" v2="279" v3="303"/>
      <tetrahedron index="519" v0="257" v1="139" v2="295" v3="301"/>
      <tetrahedron index="520" v0="196" v1="305" v2="314" v3="347"/>
      <tetrahedron index="521" v0="155" v1="80" v2="349" v3="355"/>
      <tetrahedron index="522" v0="246" v1="245" v2="220" v3="291"/>
      <tetrahedron index="523" v0="70" v1="72" v2="266" v3="338"/>
      <tetrahedron index="524" v0="233" v1="63" v2="334" v3="373"/>
      <tetrahedron index="525" v0="209" v1="252" v2="321" v3="364"/>
      <tetrahedron index="526" v0="181" v1="132" v2="260" v3="297"/>
      <tetrahedron index="527" v0="225" v1="296" v2="290" v3="342"/>
      <tetrahedron index="528" v0="130" v1="308" v2="248" v3="313"/>
      <tetrahedron index="529" v0="238" v1="213" v2="249" v3="309"/>
      <tetrahedron index="530" v0="132" v1="198" v2="44" v3="181"/>
      <tetrahedron index="531" v0="287" v1="61" v2="292" v3="327"/>
      <tetrahedron index="532" v0="177" v1="182" v2="264" v3="358"/>
      <tetrahedron index="533" v0="16" v1="171" v2="68" v3="15"/>
      <tetrahedron index="534" v0="285" v1="64" v2="280" v3="310"/>
      <tetrahedron index="535" v0="113" v1="116" v2="294" v3="330"/>
      <tetrahedron index="536" v0="164" v1="161" v2="174" v3="335"/>
      <tetrahedron index="537" v0="225" v1="73" v2="263" v3="266"/>
      <tetrahedron index="538" v0="230" v1="316" v2="258" v3="332"/>
      <tetrahedron index="539" v0="7" v1="134" v2="277" v3="337"/>
      <tetrahedron index="540" v0="127" v1="65" v2="283" v3="298"/>
      <tetrahedron index="541" v0="70" v1="73" v2="68" v3="225"/>
      <tetrahedron index="542" v0="285" v1="247" v2="321" v3="325"/>
      <tetrahedron index="543" v0="10" v1="285" v2="247" v3="310"/>
      <tetrahedron index="544" v0="126" v1="125" v2="279" v3="318"/>
      <tetrahedron index="545" v0="201" v1="230" v2="309" v3="350"/>
      <tetrahedron index="546" v0="87" v1="214" v2="299" v3="365"/>
      <tetrahedron index="547" v0="224" v1="247" v2="245" v3="291"/>
      <tetrahedron index="548" v0="109" v1="33" v2="89" v3="34"/>
      <tetrahedron index="549" v0="210" v1="344" v2="300" v3="356"/>
      <tetrahedron index="550" v0="228" v1="287" v2="220" v3="314"/>
      <tetrahedron index="551" v0="180" v1="183" v2="243" v3="319"/>
      <tetrahedron index="552" v0="210" v1="226" v2="306" v3="371"/>
      <tetrahedron index="553" v0="238" v1="93" v2="288" v3="307"/>
      <tetrahedron index="554" v0="128" v1="46" v2="140" v3="318"/>
      <tetrahedron index="555" v0="50" v1="170" v2="142" v3="289"/>
      <tetrahedron index="556" v0="6" v1="121" v2="231" v3="274"/>
      <tetrahedron index="557" v0="113" v1="268" v2="276" v3="330"/>
      <tetrahedron index="558" v0="232" v1="61" v2="311" v3="327"/>
      <tetrahedron index="559" v0="63" v1="255" v2="258" v3="341"/>
      <tetrahedron index="560" v0="254" v1="80" v2="69" v3="355"/>
      <tetrahedron index="561" v0="295" v1="69" v2="253" v3="363"/>
      <tetrahedron index="562" v0="230" v1="214" v2="258" v3="343"/>
      <tetrahedron index="563" v0="184" v1="193" v2="108" v3="265"/>
      <tetrahedron index="564" v0="33" v1="109" v2="89" v3="361"/>
      <tetrahedron index="565" v0="99" v1="93" v2="98" v3="271"/>
      <tetrahedron index="566" v0="295" v1="363" v2="253" v3="371"/>
      <tetrahedron index="567" v0="241" v1="211" v2="288" v3="352"/>
      <tetrahedron index="568" v0="111" v1="76" v2="66" v3="24"/>
      <tetrahedron index="569" v0="152" v1="147" v2="198" v3="260"/>
      <tetrahedron index="570" v0="106" v1="11" v2="85" v3="101"/>
      <tetrahedron index="571" v0="210" v1="257" v2="300" v3="344"/>
      <tetrahedron index="572" v0="30" v1="98" v2="102" v3="162"/>
      <tetrahedron index="573" v0="177" v1="59" v2="182" v3="358"/>
      <tetrahedron index="574" v0="179" v1="284" v2="228" v3="314"/>
      <tetrahedron index="575" v0="275" v1="200" v2="258" v3="317"/>
      <tetrahedron index="576" v0="20" v1="21" v2="69" v3="295"/>
      <tetrahedron index="577" v0="259" v1="214" v2="275" v3="304"/>
      <tetrahedron index="578" v0="178" v1="166" v2="296" v3="323"/>
      <tetrahedron index="579" v0="150" v1="305" v2="246" v3="331"/>
      <tetrahedron index="580" v0="235" v1="287" v2="220" v3="327"/>
      <tetrahedron index="581" v0="29" v1="99" v2="98" v3="271"/>
      <tetrahedron index="582" v0="269" v1="87" v2="266" v3="333"/>
      <tetrahedron index="583" v0="205" v1="273" v2="274" v3="311"/>
      <tetrahedron index="584" v0="172" v1="177" v2="182" v3="264"/>
      <tetrahedron index="585" v0="344" v1="256" v2="300" v3="356"/>
      <tetrahedron index="586" v0="294" v1="96" v2="286" v3="330"/>
      <tetrahedron index="587" v0="201" v1="203" v2="281" v3="359"/>
      <tetrahedron index="588" v0="267" v1="187" v2="245" v3="345"/>
      <tetrahedron index="589" v0="69" v1="81" v2="253" v3="363"/>
      <tetrahedron index="590" v0="76" v1="74" v2="65" v3="298"/>
      <tetrahedron index="591" v0="284" v1="179" v2="223" v3="314"/>
      <tetrahedron index="592" v0="99" v1="29" v2="165" v3="271"/>
      <tetrahedron index="593" v0="200" v1="201" v2="258" v3="332"/>
      <tetrahedron index="594" v0="62" v1="208" v2="233" v3="325"/>
      <tetrahedron index="595" v0="64" v1="309" v2="280" v3="310"/>
      <tetrahedron index="596" v0="253" v1="210" v2="317" v3="356"/>
      <tetrahedron index="597" v0="211" v1="286" v2="288" v3="352"/>
      <tetrahedron index="598" v0="234" v1="249" v2="307" v3="353"/>
      <tetrahedron index="599" v0="287" v1="235" v2="245" v3="291"/>
      <tetrahedron index="600" v0="159" v1="98" v2="243" v3="271"/>
      <tetrahedron index="601" v0="259" v1="214" v2="269" v3="365"/>
      <tetrahedron index="602" v0="217" v1="293" v2="358" v3="369"/>
      <tetrahedron index="603" v0="157" v1="142" v2="239" v3="331"/>
      <tetrahedron index="604" v0="224" v1="285" v2="321" v3="325"/>
      <tetrahedron index="605" v0="211" v1="241" v2="316" v3="352"/>
      <tetrahedron index="606" v0="201" v1="304" v2="230" v3="350"/>
      <tetrahedron index="607" v0="102" v1="162" v2="243" v3="372"/>
      <tetrahedron index="608" v0="222" v1="262" v2="320" v3="334"/>
      <tetrahedron index="609" v0="269" v1="211" v2="266" v3="343"/>
      <tetrahedron index="610" v0="242" v1="260" v2="297" v3="327"/>
      <tetrahedron index="611" v0="88" v1="91" v2="251" v3="286"/>
      <tetrahedron index="612" v0="116" v1="66" v2="23" v3="111"/>
      <tetrahedron index="613" v0="172" v1="177" v2="264" v3="358"/>
      <tetrahedron index="614" v0="216" v1="237" v2="321" v3="369"/>
      <tetrahedron index="615" v0="42" v1="189" v2="248" v3="308"/>
      <tetrahedron index="616" v0="207" v1="61" v2="312" v3="359"/>
      <tetrahedron index="617" v0="135" v1="134" v2="218" v3="366"/>
      <tetrahedron index="618" v0="200" v1="61" v2="235" v3="328"/>
      <tetrahedron index="619" v0="93" v1="94" v2="92" v3="240"/>
      <tetrahedron index="620" v0="226" v1="200" v2="306" v3="317"/>
      <tetrahedron index="621" v0="211" v1="263" v2="324" v3="333"/>
      <tetrahedron index="622" v0="120" v1="122" v2="113" v3="268"/>
      <tetrahedron index="623" v0="100" v1="173" v2="270" v3="290"/>
      <tetrahedron index="624" v0="235" v1="261" v2="220" v3="291"/>
      <tetrahedron index="625" v0="120" v1="111" v2="129" v3="259"/>
      <tetrahedron index="626" v0="2" v1="19" v2="84" v3="349"/>
      <tetrahedron index="627" v0="193" v1="108" v2="107" v3="38"/>
      <tetrahedron index="628" v0="226" v1="255" v2="256" v3="341"/>
      <tetrahedron index="629" v0="213" v1="218" v2="281" v3="315"/>
      <tetrahedron index="630" v0="125" v1="126" v2="283" v3="318"/>
      <tetrahedron index="631" v0="314" v1="220" v2="346" v3="347"/>
      <tetrahedron index="632" v0="133" v1="121" v2="130" v3="232"/>
      <tetrahedron index="633" v0="281" v1="201" v2="309" v3="350"/>
      <tetrahedron index="634" v0="146" v1="153" v2="194" v3="264"/>
      <tetrahedron index="635" v0="216" v1="234" v2="307" v3="353"/>
      <tetrahedron index="636" v0="53" v1="153" v2="197" v3="264"/>
      <tetrahedron index="637" v0="255" v1="214" v2="253" v3="299"/>
      <tetrahedron index="638" v0="261" v1="235" v2="220" v3="328"/>
      <tetrahedron index="639" v0="230" v1="211" v2="316" v3="352"/>
      <tetrahedron index="640" v0="214" v1="259" v2="275" v3="365"/>
      <tetrahedron index="641" v0="197" v1="153" v2="172" v3="264"/>
      <tetrahedron index="642" v0="268" v1="113" v2="219" v3="330"/>
      <tetrahedron index="643" v0="72" v1="80" v2="69" v3="254"/>
      <tetrahedron index="644" v0="211" v1="269" v2="286" v3="350"/>
      <tetrahedron index="645" v0="208" v1="63" v2="233" v3="373"/>
      <tetrahedron index="646" v0="241" v1="215" v2="280" v3="288"/>
      <tetrahedron index="647" v0="117" v1="110" v2="265" v3="366"/>
      <tetrahedron index="648" v0="287" v1="245" v2="220" v3="314"/>
      <tetrahedron index="649" v0="249" v1="302" v2="353" v3="362"/>
      <tetrahedron index="650" v0="171" v1="70" v2="68" v3="370"/>
      <tetrahedron index="651" v0="147" v1="191" v2="198" v3="260"/>
      <tetrahedron index="652" v0="215" v1="238" v2="280" v3="288"/>
      <tetrahedron index="653" v0="298" v1="253" v2="317" v3="365"/>
      <tetrahedron index="654" v0="222" v1="254" v2="299" v3="356"/>
      <tetrahedron index="655" v0="245" v1="217" v2="246" v3="305"/>
      <tetrahedron index="656" v0="193" v1="107" v2="108" v3="265"/>
      <tetrahedron index="657" v0="227" v1="242" v2="279" v3="328"/>
      <tetrahedron index="658" v0="143" v1="148" v2="244" v3="318"/>
      <tetrahedron index="659" v0="2" v1="49" v2="155" v3="349"/>
      <tetrahedron index="660" v0="53" v1="197" v2="194" v3="264"/>
      <tetrahedron index="661" v0="213" v1="240" v2="249" v3="302"/>
      <tetrahedron index="662" v0="172" v1="264" v2="293" v3="358"/>
      <tetrahedron index="663" v0="215" v1="296" v2="241" v3="364"/>
      <tetrahedron index="664" v0="304" v1="201" v2="281" v3="350"/>
      <tetrahedron index="665" v0="98" v1="162" v2="30" v3="159"/>
      <tetrahedron index="666" v0="284" v1="213" v2="248" v3="292"/>
      <tetrahedron index="667" v0="251" v1="219" v2="276" v3="350"/>
      <tetrahedron index="668" v0="75" v1="363" v2="244" v3="368"/>
      <tetrahedron index="669" v0="22" v1="138" v2="149" v3="368"/>
      <tetrahedron index="670" v0="167" v1="176" v2="163" v3="237"/>
      <tetrahedron index="671" v0="97" v1="96" v2="286" v3="294"/>
      <tetrahedron index="672" v0="267" v1="237" v2="319" v3="354"/>
      <tetrahedron index="673" v0="181" v1="132" v2="297" v3="308"/>
      <tetrahedron index="674" v0="158" v1="170" v2="250" v3="329"/>
      <tetrahedron index="675" v0="89" v1="265" v2="361" v3="366"/>
      <tetrahedron index="676" v0="170" v1="239" v2="250" v3="329"/>
      <tetrahedron index="677" v0="39" v1="124" v2="279" v3="303"/>
      <tetrahedron index="678" v0="211" v1="266" v2="263" v3="333"/>
      <tetrahedron index="679" v0="275" v1="259" v2="298" v3="365"/>
      <tetrahedron index="680" v0="167" v1="252" v2="271" v3="354"/>
      <tetrahedron index="681" v0="132" v1="114" v2="297" v3="308"/>
      <tetrahedron index="682" v0="292" v1="61" v2="312" v3="327"/>
      <tetrahedron index="683" v0="61" v1="232" v2="312" v3="327"/>
      <tetrahedron index="684" v0="80" v1="20" v2="69" v3="355"/>
      <tetrahedron index="685" v0="84" v1="19" v2="155" v3="349"/>
      <tetrahedron index="686" v0="176" v1="354" v2="319" v3="358"/>
      <tetrahedron index="687" v0="289" v1="236" v2="250" v3="344"/>
      <tetrahedron index="688" v0="197" v1="9" v2="172" v3="153"/>
      <tetrahedron index="689" v0="159" v1="29" v2="98" v3="271"/>
      <tetrahedron index="690" v0="75" v1="22" v2="82" v3="368"/>
      <tetrahedron index="691" v0="201" v1="229" v2="309" v3="332"/>
      <tetrahedron index="692" v0="132" v1="112" v2="260" v3="297"/>
      <tetrahedron index="693" v0="363" v1="75" v2="283" v3="368"/>
      <tetrahedron index="694" v0="145" v1="147" v2="260" v3="347"/>
      <tetrahedron index="695" v0="66" v1="71" v2="79" v3="269"/>
      <tetrahedron index="696" v0="174" v1="164" v2="338" v3="370"/>
      <tetrahedron index="697" v0="254" v1="80" v2="236" v3="338"/>
      <tetrahedron index="698" v0="279" v1="227" v2="306" v3="371"/>
      <tetrahedron index="699" v0="131" v1="95" v2="330" v3="361"/>
      <tetrahedron index="700" v0="266" v1="73" v2="263" v3="333"/>
      <tetrahedron index="701" v0="2" v1="84" v2="161" v3="349"/>
      <tetrahedron index="702" v0="252" v1="234" v2="321" v3="364"/>
      <tetrahedron index="703" v0="216" v1="243" v2="271" v3="354"/>
      <tetrahedron index="704" v0="160" v1="173" v2="270" v3="342"/>
      <tetrahedron index="705" v0="57" v1="168" v2="162" v3="183"/>
      <tetrahedron index="706" v0="228" v1="232" v2="248" v3="308"/>
      <tetrahedron index="707" v0="265" v1="315" v2="361" v3="366"/>
      <tetrahedron index="708" v0="85" v1="83" v2="106" v3="270"/>
      <tetrahedron index="709" v0="296" v1="209" v2="334" v3="364"/>
      <tetrahedron index="710" v0="284" v1="265" v2="213" v3="340"/>
      <tetrahedron index="711" v0="75" v1="295" v2="244" v3="363"/>
      <tetrahedron index="712" v0="76" v1="129" v2="259" v3="298"/>
      <tetrahedron index="713" v0="277" v1="134" v2="276" v3="278"/>
      <tetrahedron index="714" v0="10" v1="62" v2="291" v3="325"/>
      <tetrahedron index="715" v0="24" v1="76" v2="129" v3="259"/>
      <tetrahedron index="716" v0="294" v1="77" v2="269" v3="324"/>
      <tetrahedron index="717" v0="221" v1="279" v2="306" v3="371"/>
      <tetrahedron index="718" v0="253" v1="214" v2="317" v3="365"/>
      <tetrahedron index="719" v0="261" v1="246" v2="220" v3="291"/>
      <tetrahedron index="720" v0="189" v1="228" v2="248" v3="308"/>
      <tetrahedron index="721" v0="88" v1="94" v2="238" v3="251"/>
      <tetrahedron index="722" v0="50" v1="170" v2="289" v3="335"/>
      <tetrahedron index="723" v0="150" v1="156" v2="142" v3="326"/>
      <tetrahedron index="724" v0="197" v1="172" v2="182" v3="264"/>
      <tetrahedron index="725" v0="87" v1="79" v2="269" v3="365"/>
      <tetrahedron index="726" v0="111" v1="24" v2="129" v3="259"/>
      <tetrahedron index="727" v0="28" v1="99" v2="165" v3="290"/>
      <tetrahedron index="728" v0="210" v1="257" v2="344" v3="356"/>
      <tetrahedron index="729" v0="84" v1="174" v2="18" v3="161"/>
      <tetrahedron index="730" v0="116" v1="96" v2="31" v3="103"/>
      <tetrahedron index="731" v0="209" v1="233" v2="320" v3="334"/>
      <tetrahedron index="732" v0="177" v1="172" v2="163" v3="293"/>
      <tetrahedron index="733" v0="173" v1="160" v2="270" v3="290"/>
      <tetrahedron index="734" v0="255" v1="63" v2="334" v3="341"/>
      <tetrahedron index="735" v0="153" v1="53" v2="194" v3="264"/>
      <tetrahedron index="736" v0="125" v1="318" v2="283" v3="368"/>
      <tetrahedron index="737" v0="209" v1="233" v2="334" v3="364"/>
      <tetrahedron index="738" v0="194" v1="153" v2="146" v3="53"/>
      <tetrahedron index="739" v0="101" v1="100" v2="173" v3="270"/>
      <tetrahedron index="740" v0="160" v1="28" v2="165" v3="290"/>
      <tetrahedron index="741" v0="227" v1="244" v2="301" v3="371"/>
      <tetrahedron index="742" v0="237" v1="224" v2="321" v3="369"/>
      <tetrahedron index="743" v0="59" v1="186" v2="182" v3="358"/>
      <tetrahedron index="744" v0="165" v1="167" v2="252" v3="271"/>
      <tetrahedron index="745" v0="161" v1="236" v2="335" v3="349"/>
      <tetrahedron index="746" v0="213" v1="229" v2="218" v3="292"/>
      <tetrahedron index="747" v0="124" v1="126" v2="279" v3="303"/>
      <tetrahedron index="748" v0="251" v1="94" v2="238" v3="315"/>
      <tetrahedron index="749" v0="255" v1="299" v2="253" v3="356"/>
      <tetrahedron index="750" v0="239" v1="212" v2="282" v3="357"/>
      <tetrahedron index="751" v0="77" v1="71" v2="269" v3="324"/>
      <tetrahedron index="752" v0="134" v1="276" v2="278" v3="361"/>
      <tetrahedron index="753" v0="269" v1="259" v2="219" v3="304"/>
      <tetrahedron index="754" v0="257" v1="210" v2="300" v3="301"/>
      <tetrahedron index="755" v0="240" v1="90" v2="243" v3="372"/>
      <tetrahedron index="756" v0="234" v1="252" v2="321" v3="354"/>
      <tetrahedron index="757" v0="245" v1="246" v2="220" v3="305"/>
      <tetrahedron index="758" v0="118" v1="152" v2="198" v3="260"/>
      <tetrahedron index="759" v0="212" v1="239" v2="282" v3="289"/>
      <tetrahedron index="760" v0="309" v1="64" v2="280" v3="316"/>
      <tetrahedron index="761" v0="29" v1="159" v2="165" v3="271"/>
      <tetrahedron index="762" v0="134" v1="40" v2="133" v3="337"/>
      <tetrahedron index="763" v0="238" v1="88" v2="286" v3="352"/>
      <tetrahedron index="764" v0="242" v1="220" v2="260" v3="327"/>
      <tetrahedron index="765" v0="200" v1="202" v2="275" v3="348"/>
      <tetrahedron index="766" v0="42" v1="110" v2="130" v3="248"/>
      <tetrahedron index="767" v0="116" v1="96" v2="113" v3="31"/>
      <tetrahedron index="768" v0="121" v1="133" v2="231" v3="311"/>
      <tetrahedron index="769" v0="232" v1="292" v2="248" v3="313"/>
      <tetrahedron index="770" v0="284" v1="287" v2="228" v3="314"/>
      <tetrahedron index="771" v0="139" v1="143" v2="295" v3="301"/>
      <tetrahedron index="772" v0="243" v1="216" v2="319" v3="354"/>
      <tetrahedron index="773" v0="125" v1="124" v2="279" v3="318"/>
      <tetrahedron index="774" v0="74" v1="72" v2="69" v3="299"/>
      <tetrahedron index="775" v0="278" v1="206" v2="312" v3="359"/>
      <tetrahedron index="776" v0="259" v1="221" v2="298" v3="303"/>
      <tetrahedron index="777" v0="363" v1="295" v2="244" v3="371"/>
      <tetrahedron index="778" v0="216" v1="267" v2="319" v3="354"/>
      <tetrahedron index="779" v0="185" v1="188" v2="195" v3="302"/>
      <tetrahedron index="780" v0="287" v1="235" v2="291" v3="336"/>
      <tetrahedron index="781" v0="216" v1="234" v2="321" v3="354"/>
      <tetrahedron index="782" v0="50" v1="49" v2="161" v3="335"/>
      <tetrahedron index="783" v0="250" v1="212" v2="282" v3="289"/>
      <tetrahedron index="784" v0="128" v1="119" v2="136" v3="242"/>
      <tetrahedron index="785" v0="11" v1="106" v2="85" v3="83"/>
      <tetrahedron index="786" v0="170" v1="175" v2="169" v3="239"/>
      <tetrahedron index="787" v0="166" v1="171" v2="342" v3="370"/>
      <tetrahedron index="788" v0="203" v1="268" v2="276" v3="277"/>
      <tetrahedron index="789" v0="85" v1="101" v2="173" v3="270"/>
      <tetrahedron index="790" v0="15" v1="85" v2="173" v3="270"/>
      <tetrahedron index="791" v0="239" v1="170" v2="250" v3="289"/>
      <tetrahedron index="792" v0="51" v1="142" v2="50" v3="170"/>
      <tetrahedron index="793" v0="213" v1="265" v2="218" v3="315"/>
      <tetrahedron index="794" v0="132" v1="43" v2="114" v3="308"/>
      <tetrahedron index="795" v0="201" v1="200" v2="258" v3="348"/>
      <tetrahedron index="796" v0="257" v1="254" v2="210" v3="295"/>
      <tetrahedron index="797" v0="119" v1="128" v2="112" v3="242"/>
      <tetrahedron index="798" v0="227" v1="279" v2="318" v3="371"/>
      <tetrahedron index="799" v0="269" v1="286" v2="219" v3="324"/>
      <tetrahedron index="800" v0="41" v1="184" v2="117" v3="110"/>
      <tetrahedron index="801" v0="255" v1="226" v2="256" v3="356"/>
      <tetrahedron index="802" v0="141" v1="145" v2="339" v3="347"/>
      <tetrahedron index="803" v0="133" v1="135" v2="278" v3="313"/>
      <tetrahedron index="804" v0="172" v1="60" v2="197" v3="182"/>
      <tetrahedron index="805" v0="240" v1="238" v2="249" v3="307"/>
      <tetrahedron index="806" v0="170" v1="175" v2="239" v3="329"/>
      <tetrahedron index="807" v0="201" v1="304" v2="281" v3="348"/>
      <tetrahedron index="808" v0="260" v1="220" v2="339" v3="347"/>
      <tetrahedron index="809" v0="247" v1="223" v2="245" v3="336"/>
      <tetrahedron index="810" v0="135" v1="218" v2="313" v3="366"/>
      <tetrahedron index="811" v0="167" v1="176" v2="237" v3="354"/>
      <tetrahedron index="812" v0="124" v1="199" v2="136" v3="39"/>
      <tetrahedron index="813" v0="285" v1="234" v2="280" v3="373"/>
      <tetrahedron index="814" v0="291" v1="247" v2="245" v3="336"/>
      <tetrahedron index="815" v0="177" v1="60" v2="172" v3="182"/>
      <tetrahedron index="816" v0="245" v1="224" v2="217" v3="369"/>
      <tetrahedron index="817" v0="267" v1="217" v2="358" v3="369"/>
      <tetrahedron index="818" v0="229" v1="249" v2="309" v3="310"/>
      <tetrahedron index="819" v0="237" v1="267" v2="358" v3="369"/>
      <tetrahedron index="820" v0="218" v1="134" v2="278" v3="361"/>
      <tetrahedron index="821" v0="294" v1="269" v2="219" v3="324"/>
      <tetrahedron index="822" v0="322" v1="240" v2="243" v3="372"/>
      <tetrahedron index="823" v0="187" v1="179" v2="314" v3="345"/>
      <tetrahedron index="824" v0="255" v1="214" v2="299" v3="343"/>
      <tetrahedron index="825" v0="260" v1="297" v2="327" v3="346"/>
      <tetrahedron index="826" v0="121" v1="6" v2="136" v3="274"/>
      <tetrahedron index="827" v0="141" v1="151" v2="246" v3="339"/>
      <tetrahedron index="828" v0="41" v1="110" v2="42" v3="184"/>
      <tetrahedron index="829" v0="247" v1="224" v2="321" v3="325"/>
      <tetrahedron index="830" v0="255" v1="266" v2="334" v3="343"/>
      <tetrahedron index="831" v0="62" v1="235" v2="291" v3="351"/>
      <tetrahedron index="832" v0="326" v1="272" v2="212" v3="357"/>
      <tetrahedron index="833" v0="265" v1="218" v2="315" v3="366"/>
      <tetrahedron index="834" v0="125" v1="128" v2="124" v3="318"/>
      <tetrahedron index="835" v0="240" v1="93" v2="238" v3="307"/>
      <tetrahedron index="836" v0="316" v1="230" v2="258" v3="343"/>
      <tetrahedron index="837" v0="189" v1="192" v2="228" v3="346"/>
      <tetrahedron index="838" v0="140" v1="128" v2="47" v3="46"/>
      <tetrahedron index="839" v0="179" v1="185" v2="284" v3="302"/>
      <tetrahedron index="840" v0="118" v1="132" v2="112" v3="260"/>
      <tetrahedron index="841" v0="9" v1="153" v2="52" v3="172"/>
      <tetrahedron index="842" v0="84" v1="80" v2="67" v3="236"/>
      <tetrahedron index="843" v0="88" v1="104" v2="286" v3="288"/>
      <tetrahedron index="844" v0="240" v1="249" v2="302" v3="353"/>
      <tetrahedron index="845" v0="123" v1="129" v2="126" v3="303"/>
      <tetrahedron index="846" v0="167" v1="178" v2="165" v3="252"/>
      <tetrahedron index="847" v0="245" v1="235" v2="220" v3="291"/>
      <tetrahedron index="848" v0="268" v1="304" v2="275" v3="348"/>
      <tetrahedron index="849" v0="25" v1="127" v2="65" v3="26"/>
      <tetrahedron index="850" v0="138" v1="143" v2="148" v3="244"/>
      <tetrahedron index="851" v0="253" v1="221" v2="298" v3="317"/>
      <tetrahedron index="852" v0="254" v1="257" v2="210" v3="356"/>
      <tetrahedron index="853" v0="305" v1="264" v2="217" v3="331"/>
      <tetrahedron index="854" v0="137" v1="139" v2="257" v3="301"/>
      <tetrahedron index="855" v0="296" v1="209" v2="252" v3="323"/>
      <tetrahedron index="856" v0="232" v1="228" v2="248" v3="292"/>
      <tetrahedron index="857" v0="259" v1="268" v2="275" v3="303"/>
      <tetrahedron index="858" v0="295" v1="143" v2="244" v3="301"/>
      <tetrahedron index="859" v0="163" v1="177" v2="293" v3="358"/>
      <tetrahedron index="860" v0="22" v1="149" v2="82" v3="368"/>
      <tetrahedron index="861" v0="110" v1="130" v2="248" v3="313"/>
      <tetrahedron index="862" v0="150" v1="141" v2="246" v3="305"/>
      <tetrahedron index="863" v0="232" v1="292" v2="312" v3="327"/>
      <tetrahedron index="864" v0="200" v1="275" v2="258" v3="348"/>
      <tetrahedron index="865" v0="148" v1="138" v2="244" v3="368"/>
      <tetrahedron index="866" v0="235" v1="61" v2="327" v3="328"/>
      <tetrahedron index="867" v0="257" v1="236" v2="344" v3="355"/>
      <tetrahedron index="868" v0="75" v1="82" v2="283" v3="368"/>
      <tetrahedron index="869" v0="226" v1="255" v2="258" v3="317"/>
      <tetrahedron index="870" v0="39" v1="123" v2="124" v3="303"/>
      <tetrahedron index="871" v0="216" v1="247" v2="345" v3="369"/>
      <tetrahedron index="872" v0="95" v1="251" v2="330" v3="361"/>
      <tetrahedron index="873" v0="80" v1="254" v2="72" v3="338"/>
      <tetrahedron index="874" v0="241" v1="288" v2="280" v3="352"/>
      <tetrahedron index="875" v0="26" v1="127" v2="65" v3="283"/>
      <tetrahedron index="876" v0="59" v1="176" v2="186" v3="358"/>
      <tetrahedron index="877" v0="200" v1="275" v2="306" v3="317"/>
      <tetrahedron index="878" v0="295" v1="210" v2="244" v3="371"/>
      <tetrahedron index="879" v0="135" v1="109" v2="134" v3="366"/>
      <tetrahedron index="880" v0="226" v1="210" v2="317" v3="371"/>
      <tetrahedron index="881" v0="203" v1="201" v2="281" v3="348"/>
      <tetrahedron index="882" v0="272" v1="212" v2="300" v3="326"/>
      <tetrahedron index="883" v0="6" v1="121" v2="133" v3="231"/>
      <tetrahedron index="884" v0="236" v1="338" v2="320" v3="344"/>
      <tetrahedron index="885" v0="210" v1="295" v2="244" v3="301"/>
      <tetrahedron index="886" v0="181" v1="189" v2="308" v3="346"/>
      <tetrahedron index="887" v0="46" v1="128" v2="125" v3="318"/>
      <tetrahedron index="888" v0="89" v1="92" v2="315" v3="340"/>
      <tetrahedron index="889" v0="140" v1="143" v2="301" v3="318"/>
      <tetrahedron index="890" v0="75" v1="81" v2="69" v3="363"/>
      <tetrahedron index="891" v0="138" v1="143" v2="244" v3="295"/>
      <tetrahedron index="892" v0="215" v1="234" v2="252" v3="364"/>
      <tetrahedron index="893" v0="263" v1="78" v2="324" v3="333"/>
      <tetrahedron index="894" v0="95" v1="91" v2="96" v3="330"/>
      <tetrahedron index="895" v0="305" v1="146" v2="264" v3="331"/>
      <tetrahedron index="896" v0="256" v1="233" v2="320" v3="360"/>
      <tetrahedron index="897" v0="163" v1="237" v2="293" v3="329"/>
      <tetrahedron index="898" v0="21" v1="75" v2="69" v3="295"/>
      <tetrahedron index="899" v0="287" v1="284" v2="292" v3="362"/>
      <tetrahedron index="900" v0="279" v1="204" v2="306" v3="328"/>
      <tetrahedron index="901" v0="49" v1="2" v2="161" v3="349"/>
      <tetrahedron index="902" v0="139" v1="20" v2="155" v3="355"/>
      <tetrahedron index="903" v0="177" v1="172" v2="293" v3="358"/>
      <tetrahedron index="904" v0="316" v1="64" v2="280" v3="373"/>
      <tetrahedron index="905" v0="72" v1="266" v2="222" v3="299"/>
      <tetrahedron index="906" v0="223" v1="287" v2="245" v3="336"/>
      <tetrahedron index="907" v0="291" v1="62" v2="272" v3="325"/>
      <tetrahedron index="908" v0="244" v1="227" v2="318" v3="371"/>
      <tetrahedron index="909" v0="135" v1="134" v2="133" v3="278"/>
      <tetrahedron index="910" v0="71" v1="87" v2="269" v3="333"/>
      <tetrahedron index="911" v0="131" v1="330" v2="276" v3="361"/>
      <tetrahedron index="912" v0="330" v1="251" v2="276" v3="361"/>
      <tetrahedron index="913" v0="115" v1="125" v2="283" v3="368"/>
      <tetrahedron index="914" v0="296" v1="215" v2="252" v3="364"/>
      <tetrahedron index="915" v0="203" v1="277" v2="278" v3="337"/>
      <tetrahedron index="916" v0="209" v1="224" v2="282" v3="360"/>
      <tetrahedron index="917" v0="2" v1="161" v2="84" v3="18"/>
      <tetrahedron index="918" v0="247" v1="224" v2="245" v3="369"/>
      <tetrahedron index="919" v0="231" v1="205" v2="274" v3="311"/>
      <tetrahedron index="920" v0="218" v1="134" v2="361" v3="366"/>
      <tetrahedron index="921" v0="286" v1="294" v2="219" v3="324"/>
      <tetrahedron index="922" v0="124" v1="123" v2="126" v3="303"/>
      <tetrahedron index="923" v0="250" v1="236" v2="320" v3="344"/>
      <tetrahedron index="924" v0="286" v1="269" v2="219" v3="350"/>
      <tetrahedron index="925" v0="296" v1="262" v2="320" v3="323"/>
      <tetrahedron index="926" v0="163" v1="175" v2="158" v3="329"/>
      <tetrahedron index="927" v0="85" v1="15" v2="68" v3="270"/>
      <tetrahedron index="928" v0="192" v1="314" v2="346" v3="347"/>
      <tetrahedron index="929" v0="115" v1="125" v2="126" v3="283"/>
      <tetrahedron index="930" v0="106" v1="83" v2="263" v3="270"/>
      <tetrahedron index="931" v0="141" v1="146" v2="305" v3="331"/>
      <tetrahedron index="932" v0="175" v1="170" v2="158" v3="329"/>
      <tetrahedron index="933" v0="122" v1="131" v2="113" v3="276"/>
      <tetrahedron index="934" v0="245" v1="187" v2="314" v3="345"/>
      <tetrahedron index="935" v0="63" v1="316" v2="334" v3="373"/>
      <tetrahedron index="936" v0="209" v1="250" v2="282" v3="329"/>
      <tetrahedron index="937" v0="21" v1="138" v2="75" v3="295"/>
      <tetrahedron index="938" v0="262" v1="166" v2="342" v3="370"/>
      <tetrahedron index="939" v0="89" v1="265" v2="107" v3="340"/>
      <tetrahedron index="940" v0="75" v1="69" v2="295" v3="363"/>
      <tetrahedron index="941" v0="280" v1="234" v2="364" v3="373"/>
      <tetrahedron index="942" v0="143" v1="137" v2="140" v3="301"/>
      <tetrahedron index="943" v0="154" v1="156" v2="137" v3="257"/>
      <tetrahedron index="944" v0="262" v1="250" v2="320" v3="323"/>
      <tetrahedron index="945" v0="164" v1="166" v2="262" v3="370"/>
      <tetrahedron index="946" v0="192" v1="196" v2="314" v3="347"/>
      <tetrahedron index="947" v0="77" v1="14" v2="97" v3="294"/>
      <tetrahedron index="948" v0="169" v1="172" v2="264" v3="293"/>
      <tetrahedron index="949" v0="233" v1="256" v2="334" v3="341"/>
      <tetrahedron index="950" v0="145" v1="141" v2="147" v3="347"/>
      <tetrahedron index="951" v0="212" v1="256" v2="300" v3="344"/>
      <tetrahedron index="952" v0="228" v1="232" v2="297" v3="327"/>
      <tetrahedron index="953" v0="89" v1="265" v2="315" v3="361"/>
      <tetrahedron index="954" v0="32" v1="131" v2="95" v3="330"/>
      <tetrahedron index="955" v0="14" v1="103" v2="97" v3="294"/>
      <tetrahedron index="956" v0="268" v1="259" v2="275" v3="304"/>
      <tetrahedron index="957" v0="331" v1="217" v2="246" v3="357"/>
      <tetrahedron index="958" v0="259" v1="221" v2="275" v3="298"/>
      <tetrahedron index="959" v0="213" v1="240" v2="302" v3="340"/>
      <tetrahedron index="960" v0="146" v1="141" v2="150" v3="331"/>
      <tetrahedron index="961" v0="188" v1="185" v2="179" v3="302"/>
      <tetrahedron index="962" v0="72" v1="254" v2="69" v3="299"/>
      <tetrahedron index="963" v0="187" v1="196" v2="305" v3="314"/>
      <tetrahedron index="964" v0="221" v1="303" v2="275" v3="306"/>
      <tetrahedron index="965" v0="147" v1="198" v2="56" v3="152"/>
      <tetrahedron index="966" v0="270" v1="225" v2="290" v3="342"/>
      <tetrahedron index="967" v0="212" v1="250" v2="282" v3="320"/>
      <tetrahedron index="968" v0="211" v1="269" v2="266" v3="333"/>
      <tetrahedron index="969" v0="269" v1="211" v2="286" v3="324"/>
      <tetrahedron index="970" v0="265" v1="89" v2="315" v3="340"/>
      <tetrahedron index="971" v0="287" v1="291" v2="245" v3="336"/>
      <tetrahedron index="972" v0="287" v1="284" v2="228" v3="292"/>
      <tetrahedron index="973" v0="195" v1="180" v2="183" v3="372"/>
      <tetrahedron index="974" v0="65" v1="82" v2="283" v3="363"/>
      <tetrahedron index="975" v0="195" v1="36" v2="90" v3="372"/>
      <tetrahedron index="976" v0="267" v1="237" v2="216" v3="369"/>
      <tetrahedron index="977" v0="67" v1="174" v2="338" v3="370"/>
      <tetrahedron index="978" v0="6" v1="39" v2="136" v3="274"/>
      <tetrahedron index="979" v0="268" v1="122" v2="276" v3="277"/>
      <tetrahedron index="980" v0="220" v1="260" v2="327" v3="346"/>
      <tetrahedron index="981" v0="220" v1="242" v2="260" v3="339"/>
      <tetrahedron index="982" v0="249" v1="234" v2="280" v3="310"/>
      <tetrahedron index="983" v0="284" v1="287" v2="223" v3="362"/>
      <tetrahedron index="984" v0="160" v1="270" v2="290" v3="342"/>
      <tetrahedron index="985" v0="82" v1="26" v2="65" v3="283"/>
      <tetrahedron index="986" v0="221" v1="259" v2="275" v3="303"/>
      <tetrahedron index="987" v0="268" v1="219" v2="276" v3="330"/>
      <tetrahedron index="988" v0="232" v1="228" v2="297" v3="308"/>
      <tetrahedron index="989" v0="233" v1="256" v2="320" v3="334"/>
      <tetrahedron index="990" v0="91" v1="94" v2="88" v3="251"/>
      <tetrahedron index="991" v0="147" v1="198" v2="191" v3="56"/>
      <tetrahedron index="992" v0="173" v1="1" v2="101" v3="85"/>
      <tetrahedron index="993" v0="247" v1="285" v2="234" v3="310"/>
      <tetrahedron index="994" v0="9" v1="197" v2="172" v3="60"/>
      <tetrahedron index="995" v0="94" v1="89" v2="92" v3="315"/>
      <tetrahedron index="996" v0="172" v1="169" v2="163" v3="293"/>
      <tetrahedron index="997" v0="261" v1="328" v2="306" v3="351"/>
      <tetrahedron index="998" v0="309" v1="249" v2="280" v3="310"/>
      <tetrahedron index="999" v0="167" v1="159" v2="168" v3="354"/>
      <tetrahedron index="1000" v0="244" v1="210" v2="301" v3="371"/>
      <tetrahedron index="1001" v0="54" v1="146" v2="194" v3="305"/>
      <tetrahedron index="1002" v0="218" v1="251" v2="281" v3="315"/>
      <tetrahedron index="1003" v0="96" v1="91" v2="286" v3="330"/>
      <tetrahedron index="1004" v0="150" v1="141" v2="305" v3="331"/>
      <tetrahedron index="1005" v0="234" v1="215" v2="280" v3="364"/>
      <tetrahedron index="1006" v0="223" v1="188" v2="302" v3="345"/>
      <tetrahedron index="1007" v0="175" v1="169" v2="239" v3="293"/>
      <tetrahedron index="1008" v0="80" v1="155" v2="84" v3="19"/>
      <tetrahedron index="1009" v0="272" v1="261" v2="246" v3="300"/>
      <tetrahedron index="1010" v0="239" v1="175" v2="293" v3="329"/>
      <tetrahedron index="1011" v0="100" v1="101" v2="106" v3="270"/>
      <tetrahedron index="1012" v0="272" v1="212" v2="256" v3="300"/>
      <tetrahedron index="1013" v0="156" v1="137" v2="257" v3="326"/>
      <tetrahedron index="1014" v0="40" v1="6" v2="133" v3="231"/>
      <tetrahedron index="1015" v0="255" v1="226" v2="258" v3="341"/>
      <tetrahedron index="1016" v0="220" v1="235" v2="327" v3="328"/>
      <tetrahedron index="1017" v0="316" v1="230" v2="309" v3="332"/>
      <tetrahedron index="1018" v0="166" v1="171" v2="160" v3="342"/>
      <tetrahedron index="1019" v0="276" v1="218" v2="278" v3="361"/>
      <tetrahedron index="1020" v0="143" v1="139" v2="137" v3="301"/>
      <tetrahedron index="1021" v0="187" v1="188" v2="179" v3="345"/>
      <tetrahedron index="1022" v0="25" v1="24" v2="76" v3="129"/>
      <tetrahedron index="1023" v0="323" v1="158" v2="250" v3="329"/>
      <tetrahedron index="1024" v0="217" v1="331" v2="293" v3="357"/>
      <tetrahedron index="1025" v0="234" v1="285" v2="364" v3="373"/>
      <tetrahedron index="1026" v0="132" v1="119" v2="112" v3="297"/>
      <tetrahedron index="1027" v0="97" v1="13" v2="14" v3="77"/>
      <tetrahedron index="1028" v0="254" v1="257" v2="344" v3="355"/>
      <tetrahedron index="1029" v0="82" v1="75" v2="283" v3="363"/>
      <tetrahedron index="1030" v0="148" v1="143" v2="140" v3="318"/>
      <tetrahedron index="1031" v0="203" v1="277" v2="276" v3="359"/>
      <tetrahedron index="1032" v0="83" v1="12" v2="106" v3="263"/>
      <tetrahedron index="1033" v0="4" v1="102" v2="183" v3="162"/>
      <tetrahedron index="1034" v0="92" v1="89" v2="107" v3="340"/>
      <tetrahedron index="1035" v0="147" v1="191" v2="260" v3="347"/>
      <tetrahedron index="1036" v0="269" v1="304" v2="219" v3="350"/>
      <tetrahedron index="1037" v0="159" v1="162" v2="168" v3="243"/>
      <tetrahedron index="1038" v0="208" v1="285" v2="233" v3="325"/>
      <tetrahedron index="1039" v0="121" v1="114" v2="232" v3="297"/>
      <tetrahedron index="1040" v0="239" v1="250" v2="282" v3="289"/>
      <tetrahedron index="1041" v0="121" v1="232" v2="273" v3="297"/>
      <tetrahedron index="1042" v0="244" v1="227" v2="301" v3="318"/>
      <tetrahedron index="1043" v0="331" v1="239" v2="293" v3="357"/>
      <tetrahedron index="1044" v0="32" v1="95" v2="96" v3="330"/>
      <tetrahedron index="1045" v0="100" v1="173" v2="27" v3="101"/>
      <tetrahedron index="1046" v0="250" v1="209" v2="282" v3="320"/>
      <tetrahedron index="1047" v0="150" v1="141" v2="151" v3="246"/>
      <tetrahedron index="1048" v0="187" v1="196" v2="194" v3="305"/>
      <tetrahedron index="1049" v0="110" v1="135" v2="130" v3="313"/>
      <tetrahedron index="1050" v0="134" v1="133" v2="278" v3="337"/>
      <tetrahedron index="1051" v0="79" v1="71" v2="87" v3="269"/>
      <tetrahedron index="1052" v0="215" v1="241" v2="280" v3="364"/>
      <tetrahedron index="1053" v0="247" v1="10" v2="310" v3="336"/>
      <tetrahedron index="1054" v0="183" v1="180" v2="243" v3="372"/>
      <tetrahedron index="1055" v0="306" v1="226" v2="317" v3="371"/>
      <tetrahedron index="1056" v0="218" v1="251" v2="276" v3="281"/>
      <tetrahedron index="1057" v0="201" v1="304" v2="258" v3="332"/>
      <tetrahedron index="1058" v0="43" v1="132" v2="181" v3="308"/>
      <tetrahedron index="1059" v0="252" v1="237" v2="321" v3="354"/>
      <tetrahedron index="1060" v0="241" v1="280" v2="364" v3="373"/>
      <tetrahedron index="1061" v0="204" v1="200" v2="306" v3="328"/>
      <tetrahedron index="1062" v0="255" v1="266" v2="222" v3="334"/>
      <tetrahedron index="1063" v0="176" v1="59" v2="177" v3="358"/>
      <tetrahedron index="1064" v0="80" v1="254" v2="236" v3="355"/>
      <tetrahedron index="1065" v0="61" v1="229" v2="292" v3="359"/>
      <tetrahedron index="1066" v0="235" v1="200" v2="328" v3="351"/>
      <tetrahedron index="1067" v0="72" v1="73" v2="70" v3="266"/>
      <tetrahedron index="1068" v0="164" v1="262" v2="338" v3="370"/>
      <tetrahedron index="1069" v0="234" v1="247" v2="216" v3="321"/>
      <tetrahedron index="1070" v0="238" v1="251" v2="309" v3="350"/>
      <tetrahedron index="1071" v0="144" v1="49" v2="335" v3="349"/>
      <tetrahedron index="1072" v0="72" v1="254" v2="222" v3="338"/>
      <tetrahedron index="1073" v0="48" v1="145" v2="112" v3="47"/>
      <tetrahedron index="1074" v0="167" v1="168" v2="319" v3="354"/>
      <tetrahedron index="1075" v0="102" v1="98" v2="90" v3="243"/>
      <tetrahedron index="1076" v0="88" v1="238" v2="288" v3="352"/>
      <tetrahedron index="1077" v0="236" v1="80" v2="67" v3="338"/>
      <tetrahedron index="1078" v0="75" v1="82" v2="65" v3="363"/>
      <tetrahedron index="1079" v0="86" v1="116" v2="103" v3="294"/>
      <tetrahedron index="1080" v0="96" v1="91" v2="97" v3="286"/>
      <tetrahedron index="1081" v0="229" v1="213" v2="249" v3="362"/>
      <tetrahedron index="1082" v0="256" v1="272" v2="341" v3="360"/>
      <tetrahedron index="1083" v0="90" v1="102" v2="243" v3="372"/>
      <tetrahedron index="1084" v0="137" v1="257" v2="300" v3="301"/>
      <tetrahedron index="1085" v0="93" v1="92" v2="90" v3="240"/>
      <tetrahedron index="1086" v0="12" v1="83" v2="78" v3="263"/>
      <tetrahedron index="1087" v0="182" v1="186" v2="267" v3="358"/>
      <tetrahedron index="1088" v0="246" v1="272" v2="300" v3="326"/>
      <tetrahedron index="1089" v0="144" v1="154" v2="155" v3="349"/>
      <tetrahedron index="1090" v0="286" v1="88" v2="288" v3="352"/>
      <tetrahedron index="1091" v0="287" v1="223" v2="245" v3="314"/>
      <tetrahedron index="1092" v0="228" v1="314" v2="220" v3="346"/>
      <tetrahedron index="1093" v0="150" v1="326" v2="246" v3="367"/>
      <tetrahedron index="1094" v0="233" v1="256" v2="341" v3="360"/>
      <tetrahedron index="1095" v0="217" v1="264" v2="293" v3="331"/>
      <tetrahedron index="1096" v0="281" v1="203" v2="276" v3="359"/>
      <tetrahedron index="1097" v0="201" v1="229" v2="281" v3="309"/>
      <tetrahedron index="1098" v0="236" v1="254" v2="344" v3="355"/>
      <tetrahedron index="1099" v0="289" v1="170" v2="250" v3="335"/>
      <tetrahedron index="1100" v0="49" v1="144" v2="155" v3="349"/>
      <tetrahedron index="1101" v0="247" v1="310" v2="249" v3="336"/>
      <tetrahedron index="1102" v0="326" v1="331" v2="246" v3="357"/>
      <tetrahedron index="1103" v0="228" v1="284" v2="248" v3="292"/>
      <tetrahedron index="1104" v0="246" v1="261" v2="220" v3="339"/>
      <tetrahedron index="1105" v0="294" v1="286" v2="219" v3="330"/>
      <tetrahedron index="1106" v0="166" v1="262" v2="296" v3="323"/>
      <tetrahedron index="1107" v0="122" v1="7" v2="134" v3="277"/>
      <tetrahedron index="1108" v0="284" v1="223" v2="302" v3="362"/>
      <tetrahedron index="1109" v0="275" v1="214" v2="258" v3="304"/>
      <tetrahedron index="1110" v0="140" v1="227" v2="301" v3="367"/>
      <tetrahedron index="1111" v0="78" v1="104" v2="263" v3="324"/>
      <tetrahedron index="1112" v0="137" v1="140" v2="301" v3="367"/>
      <tetrahedron index="1113" v0="292" v1="218" v2="248" v3="313"/>
      <tetrahedron index="1114" v0="125" v1="45" v2="148" v3="368"/>
      <tetrahedron index="1115" v0="134" v1="109" v2="361" v3="366"/>
      <tetrahedron index="1116" v0="10" v1="64" v2="208" v3="285"/>
      <tetrahedron index="1117" v0="121" v1="231" v2="274" v3="311"/>
      <tetrahedron index="1118" v0="114" v1="43" v2="130" v3="308"/>
      <tetrahedron index="1119" v0="185" v1="190" v2="179" v3="284"/>
      <tetrahedron index="1120" v0="304" v1="230" v2="258" v3="332"/>
      <tetrahedron index="1121" v0="214" v1="266" v2="299" v3="343"/>
      <tetrahedron index="1122" v0="84" v1="174" v2="67" v3="18"/>
      <tetrahedron index="1123" v0="157" v1="150" v2="142" v3="331"/>
      <tetrahedron index="1124" v0="254" v1="72" v2="222" v3="299"/>
      <tetrahedron index="1125" v0="93" v1="88" v2="238" v3="288"/>
      <tetrahedron index="1126" v0="141" v1="145" v2="151" v3="339"/>
      <tetrahedron index="1127" v0="228" v1="220" v2="327" v3="346"/>
      <tetrahedron index="1128" v0="122" v1="134" v2="276" v3="277"/>
      <tetrahedron index="1129" v0="209" v1="323" v2="250" v3="329"/>
      <tetrahedron index="1130" v0="267" v1="186" v2="319" v3="358"/>
      <tetrahedron index="1131" v0="224" v1="233" v2="325" v3="360"/>
      <tetrahedron index="1132" v0="216" v1="243" v2="319" v3="322"/>
      <tetrahedron index="1133" v0="338" v1="222" v2="320" v3="344"/>
      <tetrahedron index="1134" v0="219" v1="251" v2="276" v3="330"/>
      <tetrahedron index="1135" v0="232" v1="311" v2="273" v3="327"/>
      <tetrahedron index="1136" v0="234" v1="285" v2="280" v3="310"/>
      <tetrahedron index="1137" v0="285" v1="208" v2="233" v3="373"/>
      <tetrahedron index="1138" v0="277" v1="203" v2="278" v3="359"/>
      <tetrahedron index="1139" v0="148" v1="244" v2="318" v3="368"/>
      <tetrahedron index="1140" v0="85" v1="1" v2="15" v3="173"/>
      <tetrahedron index="1141" v0="104" v1="97" v2="286" v3="324"/>
      <tetrahedron index="1142" v0="213" v1="284" v2="302" v3="362"/>
      <tetrahedron index="1143" v0="224" v1="272" v2="282" v3="360"/>
      <tetrahedron index="1144" v0="144" v1="50" v2="289" v3="335"/>
      <tetrahedron index="1145" v0="131" v1="113" v2="276" v3="330"/>
      <tetrahedron index="1146" v0="255" v1="214" v2="258" v3="317"/>
      <tetrahedron index="1147" v0="223" v1="247" v2="345" v3="353"/>
      <tetrahedron index="1148" v0="121" v1="114" v2="130" v3="232"/>
      <tetrahedron index="1149" v0="232" v1="311" v2="312" v3="313"/>
      <tetrahedron index="1150" v0="272" v1="212" v2="282" v3="360"/>
      <tetrahedron index="1151" v0="135" v1="133" v2="130" v3="313"/>
      <tetrahedron index="1152" v0="227" v1="140" v2="301" v3="318"/>
      <tetrahedron index="1153" v0="285" v1="247" v2="234" v3="321"/>
      <tetrahedron index="1154" v0="104" v1="105" v2="263" v3="288"/>
      <tetrahedron index="1155" v0="250" v1="239" v2="282" v3="329"/>
      <tetrahedron index="1156" v0="261" v1="328" v2="220" v3="339"/>
      <tetrahedron index="1157" v0="221" v1="363" v2="244" v3="371"/>
      <tetrahedron index="1158" v0="120" v1="122" v2="268" v3="277"/>
      <tetrahedron index="1159" v0="251" v1="218" v2="276" v3="361"/>
      <tetrahedron index="1160" v0="247" v1="223" v2="336" v3="353"/>
      <tetrahedron index="1161" v0="277" v1="134" v2="278" v3="337"/>
      <tetrahedron index="1162" v0="302" v1="223" v2="345" v3="353"/>
      <tetrahedron index="1163" v0="212" v1="257" v2="300" v3="326"/>
      <tetrahedron index="1164" v0="153" v1="146" v2="157" v3="264"/>
      <tetrahedron index="1165" v0="272" v1="224" v2="282" v3="357"/>
      <tetrahedron index="1166" v0="233" v1="209" v2="320" v3="360"/>
      <tetrahedron index="1167" v0="249" v1="247" v2="336" v3="353"/>
      <tetrahedron index="1168" v0="74" v1="81" v2="65" v3="298"/>
      <tetrahedron index="1169" v0="80" v1="72" v2="67" v3="338"/>
      <tetrahedron index="1170" v0="83" v1="78" v2="263" v3="333"/>
      <tetrahedron index="1171" v0="17" v1="174" v2="67" v3="370"/>
      <tetrahedron index="1172" v0="251" v1="95" v2="315" v3="361"/>
      <tetrahedron index="1173" v0="316" v1="241" v2="280" v3="352"/>
      <tetrahedron index="1174" v0="260" v1="181" v2="297" v3="346"/>
      <tetrahedron index="1175" v0="4" v1="183" v2="57" v3="162"/>
      <tetrahedron index="1176" v0="144" v1="50" v2="142" v3="289"/>
      <tetrahedron index="1177" v0="259" v1="268" v2="219" v3="304"/>
      <tetrahedron index="1178" v0="221" v1="279" v2="303" v3="306"/>
      <tetrahedron index="1179" v0="262" v1="166" v2="296" v3="342"/>
      <tetrahedron index="1180" v0="266" v1="255" v2="299" v3="343"/>
      <tetrahedron index="1181" v0="249" v1="223" v2="336" v3="362"/>
      <tetrahedron index="1182" v0="304" v1="201" v2="230" v3="332"/>
      <tetrahedron index="1183" v0="166" v1="164" v2="262" v3="323"/>
      <tetrahedron index="1184" v0="287" v1="292" v2="228" v3="327"/>
      <tetrahedron index="1185" v0="151" v1="150" v2="246" v3="367"/>
      <tetrahedron index="1186" v0="198" v1="191" v2="181" v3="260"/>
      <tetrahedron index="1187" v0="272" v1="326" v2="246" v3="357"/>
      <tetrahedron index="1188" v0="81" v1="74" v2="253" v3="298"/>
      <tetrahedron index="1189" v0="305" v1="217" v2="246" v3="331"/>
      <tetrahedron index="1190" v0="202" v1="203" v2="268" v3="348"/>
      <tetrahedron index="1191" v0="248" v1="110" v2="313" v3="366"/>
      <tetrahedron index="1192" v0="175" v1="163" v2="293" v3="329"/>
      <tetrahedron index="1193" v0="146" v1="157" v2="264" v3="331"/>
      <tetrahedron index="1194" v0="186" v1="176" v2="319" v3="358"/>
      <tetrahedron index="1195" v0="238" v1="350" v2="309" v3="352"/>
      <tetrahedron index="1196" v0="49" v1="161" v2="335" v3="349"/>
      <tetrahedron index="1197" v0="230" v1="316" v2="309" v3="352"/>
      <tetrahedron index="1198" v0="145" v1="147" v2="152" v3="260"/>
      <tetrahedron index="1199" v0="46" v1="148" v2="140" v3="318"/>
      <tetrahedron index="1200" v0="247" v1="216" v2="345" v3="353"/>
      <tetrahedron index="1201" v0="233" v1="334" v2="364" v3="373"/>
      <tetrahedron index="1202" v0="318" v1="244" v2="283" v3="368"/>
      <tetrahedron index="1203" v0="223" v1="249" v2="336" v3="353"/>
      <tetrahedron index="1204" v0="244" v1="221" v2="283" v3="363"/>
      <tetrahedron index="1205" v0="322" v1="180" v2="319" v3="345"/>
      <tetrahedron index="1206" v0="102" v1="4" v2="183" v3="35"/>
      <tetrahedron index="1207" v0="302" v1="223" v2="353" v3="362"/>
      <tetrahedron index="1208" v0="262" v1="222" v2="320" v3="338"/>
      <tetrahedron index="1209" v0="242" v1="220" v2="327" v3="328"/>
      <tetrahedron index="1210" v0="73" v1="83" v2="263" v3="333"/>
      <tetrahedron index="1211" v0="257" v1="254" v2="295" v3="355"/>
      <tetrahedron index="1212" v0="257" v1="212" v2="300" v3="344"/>
      <tetrahedron index="1213" v0="224" v1="291" v2="272" v3="325"/>
      <tetrahedron index="1214" v0="76" v1="74" v2="298" v3="365"/>
      <tetrahedron index="1215" v0="292" v1="232" v2="312" v3="313"/>
      <tetrahedron index="1216" v0="114" v1="130" v2="232" v3="308"/>
      <tetrahedron index="1217" v0="29" v1="165" v2="28" v3="99"/>
      <tetrahedron index="1218" v0="60" v1="177" v2="59" v3="182"/>
      <tetrahedron index="1219" v0="150" v1="137" v2="326" v3="367"/>
      <tetrahedron index="1220" v0="200" v1="226" v2="306" v3="351"/>
      <tetrahedron index="1221" v0="20" v1="139" v2="295" v3="355"/>
      <tetrahedron index="1222" v0="185" v1="37" v2="193" v3="340"/>
      <tetrahedron index="1223" v0="214" v1="255" v2="258" v3="343"/>
      <tetrahedron index="1224" v0="104" v1="12" v2="78" v3="263"/>
      <tetrahedron index="1225" v0="250" v1="209" v2="320" v3="323"/>
      <tetrahedron index="1226" v0="125" v1="148" v2="318" v3="368"/>
      <tetrahedron index="1227" v0="72" v1="87" v2="266" v3="299"/>
      <tetrahedron index="1228" v0="284" v1="213" v2="292" v3="362"/>
      <tetrahedron index="1229" v0="19" v1="80" v2="155" v3="355"/>
      <tetrahedron index="1230" v0="212" v1="272" v2="282" v3="357"/>
      <tetrahedron index="1231" v0="12" v1="104" v2="106" v3="263"/>
      <tetrahedron index="1232" v0="236" v1="254" v2="338" v3="344"/>
      <tetrahedron index="1233" v0="33" v1="89" v2="95" v3="361"/>
      <tetrahedron index="1234" v0="241" v1="316" v2="280" v3="373"/>
      <tetrahedron index="1235" v0="167" v1="168" v2="176" v3="319"/>
      <tetrahedron index="1236" v0="209" v1="296" v2="252" v3="364"/>
      <tetrahedron index="1237" v0="73" v1="72" v2="87" v3="266"/>
      <tetrahedron index="1238" v0="151" v1="246" v2="339" v3="367"/>
      <tetrahedron index="1239" v0="180" v1="322" v2="243" v3="372"/>
      <tetrahedron index="1240" v0="91" v1="95" v2="251" v3="330"/>
      <tetrahedron index="1241" v0="210" v1="253" v2="317" v3="371"/>
      <tetrahedron index="1242" v0="95" v1="94" v2="251" v3="315"/>
      <tetrahedron index="1243" v0="14" v1="86" v2="103" v3="294"/>
      <tetrahedron index="1244" v0="72" v1="74" v2="87" v3="299"/>
      <tetrahedron index="1245" v0="136" v1="199" v2="273" v3="274"/>
      <tetrahedron index="1246" v0="110" v1="135" v2="313" v3="366"/>
      <tetrahedron index="1247" v0="39" v1="199" v2="136" v3="274"/>
      <tetrahedron index="1248" v0="285" v1="233" v2="364" v3="373"/>
      <tetrahedron index="1249" v0="261" v1="272" v2="246" v3="291"/>
      <tetrahedron index="1250" v0="180" v1="195" v2="322" v3="372"/>
      <tetrahedron index="1251" v0="234" v1="249" v2="280" v3="307"/>
      <tetrahedron index="1252" v0="88" v1="104" v2="97" v3="286"/>
      <tetrahedron index="1253" v0="330" v1="286" v2="219" v3="350"/>
      <tetrahedron index="1254" v0="235" v1="261" v2="291" v3="351"/>
      <tetrahedron index="1255" v0="253" v1="81" v2="298" v3="363"/>
      <tetrahedron index="1256" v0="335" v1="236" v2="289" v3="349"/>
      <tetrahedron index="1257" v0="29" v1="159" v2="98" v3="30"/>
      <tetrahedron index="1258" v0="243" v1="180" v2="319" v3="322"/>
      <tetrahedron index="1259" v0="272" v1="224" v2="325" v3="360"/>
      <tetrahedron index="1260" v0="316" v1="255" v2="334" v3="343"/>
      <tetrahedron index="1261" v0="1" v1="173" v2="101" v3="27"/>
      <tetrahedron index="1262" v0="304" v1="201" v2="258" v3="348"/>
      <tetrahedron index="1263" v0="188" v1="195" v2="302" v3="322"/>
      <tetrahedron index="1264" v0="131" v1="33" v2="95" v3="361"/>
      <tetrahedron index="1265" v0="251" v1="286" v2="330" v3="350"/>
      <tetrahedron index="1266" v0="257" v1="254" v2="344" v3="356"/>
      <tetrahedron index="1267" v0="191" v1="147" v2="56" v3="55"/>
      <tetrahedron index="1268" v0="53" v1="54" v2="146" v3="194"/>
      <tetrahedron index="1269" v0="21" v1="20" v2="139" v3="295"/>
      <tetrahedron index="1270" v0="149" v1="115" v2="82" v3="368"/>
      <tetrahedron index="1271" v0="176" v1="167" v2="319" v3="354"/>
      <tetrahedron index="1272" v0="338" v1="254" v2="222" v3="344"/>
      <tetrahedron index="1273" v0="212" v1="272" v2="256" v3="360"/>
      <tetrahedron index="1274" v0="46" v1="125" v2="148" v3="318"/>
      <tetrahedron index="1275" v0="266" v1="255" v2="222" v3="299"/>
      <tetrahedron index="1276" v0="192" v1="314" v2="228" v3="346"/>
      <tetrahedron index="1277" v0="218" v1="248" v2="313" v3="366"/>
      <tetrahedron index="1278" v0="275" v1="304" v2="258" v3="348"/>
      <tetrahedron index="1279" v0="115" v1="26" v2="82" v3="283"/>
      <tetrahedron index="1280" v0="242" v1="119" v2="273" v3="297"/>
      <tetrahedron index="1281" v0="94" v1="93" v2="88" v3="238"/>
      <tetrahedron index="1282" v0="13" v1="77" v2="97" v3="324"/>
      <tetrahedron index="1283" v0="284" v1="213" v2="302" v3="340"/>
      <tetrahedron index="1284" v0="82" v1="115" v2="283" v3="368"/>
      <tetrahedron index="1285" v0="97" v1="77" v2="294" v3="324"/>
      <tetrahedron index="1286" v0="257" v1="137" v2="300" v3="326"/>
      <tetrahedron index="1287" v0="43" v1="42" v2="130" v3="308"/>
      <tetrahedron index="1288" v0="192" v1="189" v2="181" v3="346"/>
      <tetrahedron index="1289" v0="169" v1="157" v2="52" v3="51"/>
      <tetrahedron index="1290" v0="22" v1="21" v2="138" v3="75"/>
      <tetrahedron index="1291" v0="216" v1="322" v2="319" v3="345"/>
      <tetrahedron index="1292" v0="186" v1="187" v2="182" v3="267"/>
      <tetrahedron index="1293" v0="229" v1="310" v2="336" v3="362"/>
      <tetrahedron index="1294" v0="95" v1="94" v2="91" v3="251"/>
      <tetrahedron index="1295" v0="178" v1="166" v2="160" v3="342"/>
      <tetrahedron index="1296" v0="185" v1="284" v2="302" v3="340"/>
      <tetrahedron index="1297" v0="262" v1="70" v2="338" v3="370"/>
      <tetrahedron index="1298" v0="297" v1="228" v2="327" v3="346"/>
      <tetrahedron index="1299" v0="105" v1="99" v2="100" v3="290"/>
      <tetrahedron index="1300" v0="35" v1="36" v2="195" v3="372"/>
      <tetrahedron index="1301" v0="237" v1="163" v2="293" v3="358"/>
      <tetrahedron index="1302" v0="45" v1="46" v2="125" v3="148"/>
      <tetrahedron index="1303" v0="191" v1="181" v2="260" v3="346"/>
      <tetrahedron index="1304" v0="122" v1="134" v2="131" v3="276"/>
      <tetrahedron index="1305" v0="196" v1="54" v2="194" v3="305"/>
      <tetrahedron index="1306" v0="213" v1="265" v2="315" v3="340"/>
      <tetrahedron index="1307" v0="214" v1="275" v2="258" v3="317"/>
      <tetrahedron index="1308" v0="119" v1="121" v2="273" v3="297"/>
      <tetrahedron index="1309" v0="134" v1="131" v2="276" v3="361"/>
      <tetrahedron index="1310" v0="267" v1="216" v2="319" v3="345"/>
      <tetrahedron index="1311" v0="3" v1="115" v2="82" v3="149"/>
      <tetrahedron index="1312" v0="64" v1="63" v2="316" v3="332"/>
      <tetrahedron index="1313" v0="236" v1="289" v2="250" v3="335"/>
      <tetrahedron index="1314" v0="159" v1="167" v2="165" v3="271"/>
      <tetrahedron index="1315" v0="261" v1="227" v2="306" v3="328"/>
      <tetrahedron index="1316" v0="159" v1="167" v2="271" v3="354"/>
      <tetrahedron index="1317" v0="114" v1="232" v2="297" v3="308"/>
      <tetrahedron index="1318" v0="241" v1="296" v2="334" v3="364"/>
      <tetrahedron index="1319" v0="58" v1="186" v2="59" v3="176"/>
      <tetrahedron index="1320" v0="299" v1="214" v2="253" v3="365"/>
      <tetrahedron index="1321" v0="111" v1="66" v2="23" v3="24"/>
      <tetrahedron index="1322" v0="181" v1="308" v2="297" v3="346"/>
      <tetrahedron index="1323" v0="49" v1="50" v2="144" v3="335"/>
      <tetrahedron index="1324" v0="44" v1="181" v2="43" v3="132"/>
      <tetrahedron index="1325" v0="10" v1="64" v2="285" v3="310"/>
      <tetrahedron index="1326" v0="238" v1="249" v2="280" v3="309"/>
      <tetrahedron index="1327" v0="276" v1="277" v2="278" v3="359"/>
      <tetrahedron index="1328" v0="143" v1="138" v2="139" v3="295"/>
      <tetrahedron index="1329" v0="247" v1="216" v2="321" v3="369"/>
      <tetrahedron index="1330" v0="104" v1="105" v2="106" v3="263"/>
      <tetrahedron index="1331" v0="308" v1="228" v2="297" v3="346"/>
      <tetrahedron index="1332" v0="127" v1="26" v2="115" v3="283"/>
      <tetrahedron index="1333" v0="256" v1="255" v2="334" v3="341"/>
      <tetrahedron index="1334" v0="213" v1="229" v2="292" v3="362"/>
      <tetrahedron index="1335" v0="35" v1="183" v2="102" v3="372"/>
      <tetrahedron index="1336" v0="104" v1="13" v2="97" v3="324"/>
      <tetrahedron index="1337" v0="363" v1="221" v2="253" v3="371"/>
      <tetrahedron index="1338" v0="218" v1="251" v2="315" v3="361"/>
      <tetrahedron index="1339" v0="139" v1="154" v2="137" v3="257"/>
      <tetrahedron index="1340" v0="267" v1="216" v2="345" v3="369"/>
      <tetrahedron index="1341" v0="55" v1="141" v2="196" v3="347"/>
      <tetrahedron index="1342" v0="196" v1="141" v2="305" v3="347"/>
      <tetrahedron index="1343" v0="146" v1="54" v2="141" v3="305"/>
      <tetrahedron index="1344" v0="229" v1="287" v2="292" v3="362"/>
      <tetrahedron index="1345" v0="227" v1="140" v2="339" v3="367"/>
      <tetrahedron index="1346" v0="251" v1="330" v2="219" v3="350"/>
      <tetrahedron index="1347" v0="16" v1="17" v2="70" v3="370"/>
      <tetrahedron index="1348" v0="215" v1="234" v2="280" v3="307"/>
      <tetrahedron index="1349" v0="221" v1="253" v2="298" v3="363"/>
      <tetrahedron index="1350" v0="86" v1="14" v2="77" v3="294"/>
      <tetrahedron index="1351" v0="17" v1="164" v2="174" v3="370"/>
      <tetrahedron index="1352" v0="121" v1="119" v2="114" v3="297"/>
      <tetrahedron index="1353" v0="55" v1="191" v2="147" v3="347"/>
      <tetrahedron index="1354" v0="36" v1="35" v2="90" v3="372"/>
      <tetrahedron index="1355" v0="265" v1="193" v2="107" v3="340"/>
      <tetrahedron index="1356" v0="261" v1="300" v2="301" v3="367"/>
      <tetrahedron index="1357" v0="309" v1="316" v2="280" v3="352"/>
      <tetrahedron index="1358" v0="249" v1="238" v2="280" v3="307"/>
      <tetrahedron index="1359" v0="96" v1="31" v2="32" v3="113"/>
      <tetrahedron index="1360" v0="156" v1="150" v2="137" v3="326"/>
      <tetrahedron index="1361" v0="115" v1="45" v2="125" v3="368"/>
      <tetrahedron index="1362" v0="310" v1="229" v2="249" v3="362"/>
      <tetrahedron index="1363" v0="91" v1="251" v2="286" v3="330"/>
      <tetrahedron index="1364" v0="208" v1="10" v2="285" v3="325"/>
      <tetrahedron index="1365" v0="261" v1="246" v2="300" v3="367"/>
      <tetrahedron index="1366" v0="227" v1="261" v2="301" v3="367"/>
      <tetrahedron index="1367" v0="328" v1="200" v2="306" v3="351"/>
      <tetrahedron index="1368" v0="180" v1="186" v2="319" v3="345"/>
      <tetrahedron index="1369" v0="95" v1="131" v2="32" v3="33"/>
      <tetrahedron index="1370" v0="221" v1="298" v2="283" v3="363"/>
      <tetrahedron index="1371" v0="74" v1="299" v2="253" v3="365"/>
      <tetrahedron index="1372" v0="141" v1="54" v2="196" v3="305"/>
      <tetrahedron index="1373" v0="99" v1="28" v2="100" v3="290"/>
      <tetrahedron index="1374" v0="192" v1="187" v2="179" v3="314"/>
      <tetrahedron index="1375" v0="74" v1="87" v2="299" v3="365"/>
      <tetrahedron index="1376" v0="62" v1="10" v2="208" v3="325"/>
      <tetrahedron index="1377" v0="260" v1="191" v2="346" v3="347"/>
      <tetrahedron index="1378" v0="328" v1="242" v2="220" v3="339"/>
      <tetrahedron index="1379" v0="157" v1="146" v2="150" v3="331"/>
      <tetrahedron index="1380" v0="166" v1="178" v2="158" v3="323"/>
      <tetrahedron index="1381" v0="17" v1="174" v2="18" v3="67"/>
      <tetrahedron index="1382" v0="74" v1="76" v2="79" v3="365"/>
      <tetrahedron index="1383" v0="0" v1="116" v2="103" v3="86"/>
      <tetrahedron index="1384" v0="188" v1="180" v2="195" v3="322"/>
      <tetrahedron index="1385" v0="237" v1="216" v2="321" v3="354"/>
      <tetrahedron index="1386" v0="196" v1="54" v2="141" v3="55"/>
      <tetrahedron index="1387" v0="292" v1="232" v2="228" v3="327"/>
      <tetrahedron index="1388" v0="91" v1="88" v2="97" v3="286"/>
      <tetrahedron index="1389" v0="191" v1="192" v2="346" v3="347"/>
      <tetrahedron index="1390" v0="232" v1="121" v2="273" v3="311"/>
      <tetrahedron index="1391" v0="261" v1="235" v2="328" v3="351"/>
      <tetrahedron index="1392" v0="193" v1="37" v2="107" v3="340"/>
      <tetrahedron index="1393" v0="246" v1="261" v2="339" v3="367"/>
      <tetrahedron index="1394" v0="326" v1="150" v2="246" v3="331"/>
      <tetrahedron index="1395" v0="282" v1="212" v2="320" v3="360"/>
      <tetrahedron index="1396" v0="58" v1="180" v2="186" v3="319"/>
      <tetrahedron index="1397" v0="42" v1="43" v2="189" v3="308"/>
      <tetrahedron index="1398" v0="97" v1="294" v2="286" v3="324"/>
      <tetrahedron index="1399" v0="74" v1="253" v2="298" v3="365"/>
      <tetrahedron index="1400" v0="61" v1="292" v2="312" v3="359"/>
      <tetrahedron index="1401" v0="189" v1="43" v2="181" v3="308"/>
      <tetrahedron index="1402" v0="150" v1="151" v2="137" v3="367"/>
      <tetrahedron index="1403" v0="223" v1="249" v2="353" v3="362"/>
      <tetrahedron index="1404" v0="154" v1="144" v2="156" v3="289"/>
      <tetrahedron index="1405" v0="20" v1="19" v2="155" v3="355"/>
      <tetrahedron index="1406" v0="93" v1="105" v2="88" v3="288"/>
      <tetrahedron index="1407" v0="83" v1="85" v2="68" v3="270"/>
      <tetrahedron index="1408" v0="95" v1="89" v2="315" v3="361"/>
      <tetrahedron index="1409" v0="83" v1="73" v2="78" v3="333"/>
      <tetrahedron index="1410" v0="138" v1="21" v2="139" v3="295"/>
      <tetrahedron index="1411" v0="269" v1="211" v2="324" v3="333"/>
      <tetrahedron index="1412" v0="244" v1="363" v2="283" v3="368"/>
      <tetrahedron index="1413" v0="211" v1="350" v2="286" v3="352"/>
      <tetrahedron index="1414" v0="198" v1="118" v2="8" v3="152"/>
      <tetrahedron index="1415" v0="275" v1="221" v2="306" v3="317"/>
      <tetrahedron index="1416" v0="218" v1="281" v2="276" v3="359"/>
      <tetrahedron index="1417" v0="127" v1="115" v2="126" v3="283"/>
      <tetrahedron index="1418" v0="194" v1="197" v2="182" v3="264"/>
      <tetrahedron index="1419" v0="107" v1="89" v2="108" v3="265"/>
      <tetrahedron index="1420" v0="212" v1="256" v2="320" v3="360"/>
      <tetrahedron index="1421" v0="322" v1="302" v2="345" v3="353"/>
      <tetrahedron index="1422" v0="134" v1="109" v2="131" v3="361"/>
      <tetrahedron index="1423" v0="256" v1="212" v2="320" v3="344"/>
      <tetrahedron index="1424" v0="259" v1="76" v2="298" v3="365"/>
      <tetrahedron index="1425" v0="297" v1="232" v2="273" v3="327"/>
      <tetrahedron index="1426" v0="113" v1="32" v2="96" v3="330"/>
      <tetrahedron index="1427" v0="115" v1="3" v2="82" v3="26"/>
      <tetrahedron index="1428" v0="149" v1="3" v2="115" v3="45"/>
      <tetrahedron index="1429" v0="253" v1="221" v2="317" v3="371"/>
      <tetrahedron index="1430" v0="188" v1="187" v2="186" v3="345"/>
      <tetrahedron index="1431" v0="131" v1="32" v2="113" v3="330"/>
      <tetrahedron index="1432" v0="109" v1="33" v2="131" v3="361"/>
      <tetrahedron index="1433" v0="73" v1="71" v2="78" v3="333"/>
      <tetrahedron index="1434" v0="220" v1="260" v2="346" v3="347"/>
      <tetrahedron index="1435" v0="139" v1="257" v2="295" v3="355"/>
      <tetrahedron index="1436" v0="227" v1="242" v2="328" v3="339"/>
      <tetrahedron index="1437" v0="246" v1="326" v2="300" v3="367"/>
      <tetrahedron index="1438" v0="227" v1="279" v2="306" v3="328"/>
      <tetrahedron index="1439" v0="187" v1="192" v2="196" v3="314"/>
      <tetrahedron index="1440" v0="137" v1="151" v2="140" v3="367"/>
      <tetrahedron index="1441" v0="180" v1="188" v2="186" v3="345"/>
      <tetrahedron index="1442" v0="105" v1="104" v2="88" v3="288"/>
      <tetrahedron index="1443" v0="106" v1="11" v2="12" v3="83"/>
      <tetrahedron index="1444" v0="209" v1="282" v2="320" v3="360"/>
      <tetrahedron index="1445" v0="19" v1="20" v2="80" v3="355"/>
      <tetrahedron index="1446" v0="169" v1="175" v2="163" v3="293"/>
      <tetrahedron index="1447" v0="334" v1="241" v2="364" v3="373"/>
      <tetrahedron index="1448" v0="71" v1="73" v2="87" v3="333"/>
      <tetrahedron index="1449" v0="225" v1="262" v2="296" v3="342"/>
      <tetrahedron index="1450" v0="81" v1="65" v2="298" v3="363"/>
      <tetrahedron index="1451" v0="151" v1="145" v2="140" v3="339"/>
      <tetrahedron index="1452" v0="87" v1="73" v2="266" v3="333"/>
      <tetrahedron index="1453" v0="176" v1="58" v2="186" v3="319"/>
      <tetrahedron index="1454" v0="350" v1="211" v2="230" v3="352"/>
      <tetrahedron index="1455" v0="103" v1="96" v2="97" v3="294"/>
      <tetrahedron index="1456" v0="251" v1="281" v2="309" v3="350"/>
      <tetrahedron index="1457" v0="4" v1="162" v2="30" v3="102"/>
      <tetrahedron index="1458" v0="300" v1="137" v2="301" v3="367"/>
      <tetrahedron index="1459" v0="121" v1="136" v2="273" v3="274"/>
      <tetrahedron index="1460" v0="192" v1="191" v2="196" v3="347"/>
      <tetrahedron index="1461" v0="13" v1="104" v2="78" v3="324"/>
      <tetrahedron index="1462" v0="139" v1="154" v2="257" v3="355"/>
      <tetrahedron index="1463" v0="249" v1="240" v2="307" v3="353"/>
      <tetrahedron index="1464" v0="254" v1="222" v2="344" v3="356"/>
      <tetrahedron index="1465" v0="144" v1="335" v2="289" v3="349"/>
      <tetrahedron index="1466" v0="186" v1="267" v2="319" v3="345"/>
      <tetrahedron index="1467" v0="71" v1="269" v2="324" v3="333"/>
      <tetrahedron index="1468" v0="9" v1="197" v2="53" v3="153"/>
      <tetrahedron index="1469" v0="63" v1="64" v2="316" v3="373"/>
      <tetrahedron index="1470" v0="109" v1="110" v2="117" v3="366"/>
      <tetrahedron index="1471" v0="5" v1="108" v2="34" v3="117"/>
      <tetrahedron index="1472" v0="255" v1="222" v2="299" v3="356"/>
      <tetrahedron index="1473" v0="64" v1="208" v2="285" v3="373"/>
      <tetrahedron index="1474" v0="37" v1="92" v2="107" v3="340"/>
      <tetrahedron index="1475" v0="298" v1="65" v2="283" v3="363"/>
      <tetrahedron index="1476" v0="188" v1="180" v2="322" v3="345"/>
      <tetrahedron index="1477" v0="64" v1="63" v2="208" v3="373"/>
      <tetrahedron index="1478" v0="186" v1="187" v2="267" v3="345"/>
      <tetrahedron index="1479" v0="116" v1="0" v2="23" v3="86"/>
      <tetrahedron index="1480" v0="66" v1="86" v2="77" v3="294"/>
      <tetrahedron index="1481" v0="224" v1="247" v2="321" v3="369"/>
      <tetrahedron index="1482" v0="116" v1="0" v2="103" v3="31"/>
      <tetrahedron index="1483" v0="288" v1="238" v2="280" v3="352"/>
      <tetrahedron index="1484" v0="261" v1="227" v2="328" v3="339"/>
      <tetrahedron index="1485" v0="86" v1="0" v2="14" v3="103"/>
      <tetrahedron index="1486" v0="218" v1="276" v2="278" v3="359"/>
      <tetrahedron index="1487" v0="8" v1="118" v2="48" v3="152"/>
      <tetrahedron index="1488" v0="152" v1="8" v2="198" v3="56"/>
      <tetrahedron index="1489" v0="278" v1="218" v2="312" v3="313"/>
      <tetrahedron index="1490" v0="45" v1="115" v2="149" v3="368"/>
      <tetrahedron index="1491" v0="141" v1="55" v2="147" v3="347"/>
      <tetrahedron index="1492" v0="89" v1="94" v2="95" v3="315"/>
      <tetrahedron index="1493" v0="255" v1="222" v2="256" v3="334"/>
      <tetrahedron index="1494" v0="242" v1="297" v2="273" v3="327"/>
      <tetrahedron index="1495" v0="38" v1="193" v2="37" v3="107"/>
      <tetrahedron index="1496" v0="149" v1="82" v2="3" v3="22"/>
      <tetrahedron index="1497" v0="11" v1="101" v2="1" v3="85"/>
      <tetrahedron index="1498" v0="241" v1="316" v2="334" v3="343"/>
      <tetrahedron index="1499" v0="74" v1="79" v2="87" v3="365"/>
      <tetrahedron index="1500" v0="273" v1="121" v2="274" v3="311"/>
      <tetrahedron index="1501" v0="119" v1="132" v2="114" v3="297"/>
      <tetrahedron index="1502" v0="149" v1="138" v2="148" v3="368"/>
      <tetrahedron index="1503" v0="71" v1="77" v2="78" v3="324"/>
      <tetrahedron index="1504" v0="218" v1="292" v2="312" v3="313"/>
      <tetrahedron index="1505" v0="222" v1="255" v2="256" v3="356"/>
      <tetrahedron index="1506" v0="118" v1="198" v2="8" v3="44"/>
      <tetrahedron index="1507" v0="256" v1="222" v2="320" v3="334"/>
      <tetrahedron index="1508" v0="326" v1="137" v2="300" v3="367"/>
      <tetrahedron index="1509" v0="191" v1="55" v2="196" v3="347"/>
      <tetrahedron index="1510" v0="109" v1="135" v2="110" v3="366"/>
      <tetrahedron index="1511" v0="45" v1="149" v2="148" v3="368"/>
      <tetrahedron index="1512" v0="287" v1="229" v2="336" v3="362"/>
      <tetrahedron index="1513" v0="70" v1="17" v2="67" v3="370"/>
      <tetrahedron index="1514" v0="261" v1="227" v2="339" v3="367"/>
      <tetrahedron index="1515" v0="12" v1="13" v2="104" v3="78"/>
      <tetrahedron index="1516" v0="315" v1="218" v2="361" v3="366"/>
      <tetrahedron index="1517" v0="176" v1="177" v2="163" v3="358"/>
      <tetrahedron index="1518" v0="222" v1="256" v2="320" v3="344"/>
      <tetrahedron index="1519" v0="322" v1="240" v2="302" v3="353"/>
      <tetrahedron index="1520" v0="188" v1="322" v2="302" v3="345"/>
      <tetrahedron index="1521" v0="168" v1="58" v2="176" v3="319"/>
      <tetrahedron index="1522" v0="72" v1="70" v2="67" v3="338"/>
      <tetrahedron index="1523" v0="344" v1="222" v2="256" v3="356"/>
      <tetrahedron index="1524" v0="316" v1="241" v2="334" v3="373"/>
      <tetrahedron index="1525" v0="81" v1="75" v2="65" v3="363"/>
      <tetrahedron index="1526" v0="310" v1="249" v2="336" v3="362"/>
      <tetrahedron index="1527" v0="216" v1="322" v2="345" v3="353"/>
      <tetrahedron index="1528" v0="292" v1="218" v2="312" v3="359"/>
      <tetrahedron index="1529" v0="191" v1="192" v2="181" v3="346"/>
      <tetrahedron index="1530" v0="156" v1="144" v2="142" v3="289"/>
      <tetrahedron index="1531" v0="77" v1="13" v2="78" v3="324"/>
      <tetrahedron index="1532" v0="70" v1="67" v2="338" v3="370"/>
      <tetrahedron index="1533" v0="350" v1="230" v2="309" v3="352"/>
      <tetrahedron index="1534" v0="218" v1="278" v2="312" v3="359"/>
      <tetrahedron index="1535" v0="78" v1="71" v2="324" v3="333"/>
      <tetrahedron index="1536" v0="140" v1="151" v2="339" v3="367"/>
      <tetrahedron index="1537" v0="35" v1="102" v2="90" v3="372"/>
      <tetrahedron index="1538" v0="223" v1="287" v2="336" v3="362"/>
      <tetrahedron index="1539" v0="119" v1="121" v2="136" v3="273"/>
      <tetrahedron index="1540" v0="221" v1="306" v2="317" v3="371"/>
      <tetrahedron index="1541" v0="238" v1="309" v2="280" v3="352"/>
      <tetrahedron index="1542" v0="128" v1="145" v2="112" v3="242"/>
      <tetrahedron index="1543" v0="10" v1="61" v2="64" v3="229"/>
      <tetrahedron index="1544" v0="10" v1="62" v2="61" v3="235"/>
      <tetrahedron index="1545" v0="202" v1="204" v2="275" v3="303"/>
      <tetrahedron index="1546" v0="140" v1="128" v2="227" v3="242"/>
      <tetrahedron index="1547" v0="242" v1="128" v2="145" v3="339"/>
      <tetrahedron index="1548" v0="245" v1="267" v2="345" v3="369"/>
      <tetrahedron index="1549" v0="63" v1="226" v2="258" v3="351"/>
      <tetrahedron index="1550" v0="211" v1="225" v2="241" v3="263"/>
      <tetrahedron index="1551" v0="237" v1="224" v2="217" v3="282"/>
      <tetrahedron index="1552" v0="120" v1="39" v2="7" v3="202"/>
      <tetrahedron index="1553" v0="210" v1="261" v2="226" v3="300"/>
      <tetrahedron index="1554" v0="64" v1="61" v2="201" v3="229"/>
      <tetrahedron index="1555" v0="194" v1="182" v2="217" v3="264"/>
      <tetrahedron index="1556" v0="61" v1="199" v2="205" v3="273"/>
      <tetrahedron index="1557" v0="6" v1="206" v2="205" v3="231"/>
      <tetrahedron index="1558" v0="170" v1="161" v2="164" v3="335"/>
      <tetrahedron index="1559" v0="98" v1="240" v2="90" v3="243"/>
      <tetrahedron index="1560" v0="164" v1="158" v2="250" v3="323"/>
      <tetrahedron index="1561" v0="213" v1="92" v2="238" v3="240"/>
      <tetrahedron index="1562" v0="140" v1="242" v2="227" v3="339"/>
      <tetrahedron index="1563" v0="63" v1="200" v2="258" v3="332"/>
      <tetrahedron index="1564" v0="225" v1="215" v2="241" v3="288"/>
      <tetrahedron index="1565" v0="226" v1="63" v2="341" v3="351"/>
      <tetrahedron index="1566" v0="206" v1="205" v2="231" v3="311"/>
      <tetrahedron index="1567" v0="10" v1="61" v2="229" v3="235"/>
      <tetrahedron index="1568" v0="240" v1="243" v2="271" v3="307"/>
      <tetrahedron index="1569" v0="267" v1="245" v2="217" v3="369"/>
      <tetrahedron index="1570" v0="98" v1="240" v2="243" v3="271"/>
      <tetrahedron index="1571" v0="63" v1="201" v2="200" v3="332"/>
      <tetrahedron index="1572" v0="221" v1="126" v2="279" v3="283"/>
      <tetrahedron index="1573" v0="64" v1="10" v2="229" v3="310"/>
      <tetrahedron index="1574" v0="63" v1="64" v2="201" v3="332"/>
      <tetrahedron index="1575" v0="229" v1="10" v2="235" v3="287"/>
      <tetrahedron index="1576" v0="207" v1="206" v2="278" v3="359"/>
      <tetrahedron index="1577" v0="126" v1="127" v2="283" v3="298"/>
      <tetrahedron index="1578" v0="206" v1="40" v2="207" v3="337"/>
      <tetrahedron index="1579" v0="62" v1="63" v2="200" v3="351"/>
      <tetrahedron index="1580" v0="61" v1="62" v2="200" v3="235"/>
      <tetrahedron index="1581" v0="205" v1="6" v2="231" v3="274"/>
      <tetrahedron index="1582" v0="201" v1="203" v2="202" v3="348"/>
      <tetrahedron index="1583" v0="62" v1="200" v2="235" v3="351"/>
      <tetrahedron index="1584" v0="262" v1="225" v2="222" v3="266"/>
      <tetrahedron index="1585" v0="264" v1="182" v2="217" v3="267"/>
      <tetrahedron index="1586" v0="171" v1="68" v2="342" v3="370"/>
      <tetrahedron index="1587" v0="211" v1="263" v2="241" v3="288"/>
      <tetrahedron index="1588" v0="199" v1="242" v2="136" v3="273"/>
      <tetrahedron index="1589" v0="199" v1="6" v2="205" v3="274"/>
      <tetrahedron index="1590" v0="201" v1="64" v2="229" v3="332"/>
      <tetrahedron index="1591" v0="221" v1="126" v2="283" v3="298"/>
      <tetrahedron index="1592" v0="7" v1="203" v2="207" v3="277"/>
      <tetrahedron index="1593" v0="202" v1="7" v2="120" v3="277"/>
      <tetrahedron index="1594" v0="203" v1="7" v2="202" v3="277"/>
      <tetrahedron index="1595" v0="202" v1="120" v2="268" v3="277"/>
      <tetrahedron index="1596" v0="242" v1="199" v2="136" v3="279"/>
      <tetrahedron index="1597" v0="200" v1="63" v2="258" v3="351"/>
      <tetrahedron index="1598" v0="201" v1="202" v2="200" v3="348"/>
      <tetrahedron index="1599" v0="164" v1="17" v2="171" v3="370"/>
      <tetrahedron index="1600" v0="215" v1="252" v2="271" v3="290"/>
      <tetrahedron index="1601" v0="221" v1="126" v2="298" v3="303"/>
      <tetrahedron index="1602" v0="63" v1="62" v2="341" v3="351"/>
      <tetrahedron index="1603" v0="194" v1="264" v2="217" v3="305"/>
      <tetrahedron index="1604" v0="261" v1="210" v2="226" v3="306"/>
      <tetrahedron index="1605" v0="93" v1="240" v2="271" v3="307"/>
      <tetrahedron index="1606" v0="205" v1="61" v2="273" v3="311"/>
      <tetrahedron index="1607" v0="133" v1="121" v2="232" v3="311"/>
      <tetrahedron index="1608" v0="61" v1="206" v2="207" v3="312"/>
      <tetrahedron index="1609" v0="206" v1="61" v2="205" v3="312"/>
      <tetrahedron index="1610" v0="205" v1="61" v2="311" v3="312"/>
      <tetrahedron index="1611" v0="206" v1="205" v2="311" v3="312"/>
      <tetrahedron index="1612" v0="232" v1="133" v2="311" v3="313"/>
      <tetrahedron index="1613" v0="199" v1="204" v2="279" v3="328"/>
      <tetrahedron index="1614" v0="6" v1="40" v2="206" v3="337"/>
      <tetrahedron index="1615" v0="6" v1="206" v2="231" v3="337"/>
      <tetrahedron index="1616" v0="40" v1="6" v2="231" v3="337"/>
      <tetrahedron index="1617" v0="206" v1="207" v2="278" v3="337"/>
      <tetrahedron index="1618" v0="133" v1="40" v2="231" v3="337"/>
      <tetrahedron index="1619" v0="40" v1="7" v2="207" v3="337"/>
      <tetrahedron index="1620" v0="207" v1="7" v2="277" v3="337"/>
      <tetrahedron index="1621" v0="207" v1="203" v2="278" v3="337"/>
      <tetrahedron index="1622" v0="262" v1="225" v2="266" v3="338"/>
      <tetrahedron index="1623" v0="262" v1="266" v2="222" v3="338"/>
      <tetrahedron index="1624" v0="296" v1="178" v2="252" v3="342"/>
      <tetrahedron index="1625" v0="17" v1="16" v2="171" v3="370"/>
      <tetrahedron index="1626" v0="206" v1="207" v2="312" v3="359"/>
    </cells>
  </mesh>
</dolfin>

best Regards
Elhassan

Question information

Language:
English Edit question
Status:
Solved
For:
DOLFIN Edit question
Assignee:
No assignee Edit question
Solved by:
elhassan Abdou
Solved:
Last query:
Last reply:
Revision history for this message
elhassan Abdou (elhassan-abdou) said :
#1

I forget to ask to the question, how can I make the program read it as 3d tetrahedron not as 2D triangles as It comes from this code

Revision history for this message
Andre Massing (massing) said :
#2

Hi!

I am not entirely sure what the question precisely is, but concerning the mesh: You actually got a 3D mesh as the xml tags
"tetrahedron index" indicate. The problem is that viper, the plotting program in FEniCS, plots only the surface mesh and not the entire 3d mesh.

HTH,
Andre

Revision history for this message
elhassan Abdou (elhassan-abdou) said :
#3

Hi

Thanks for your answer. I visualized it using paraview and It was tetrahedron