diff --git a/Code/Mantid/Framework/PythonAPI/PythonAlgorithms/RefMReduction.py b/Code/Mantid/Framework/PythonAPI/PythonAlgorithms/RefMReduction.py new file mode 100644 index 0000000000000000000000000000000000000000..86cb774e1a4a49a6c56e14cb206bc10f5f6c54d1 --- /dev/null +++ b/Code/Mantid/Framework/PythonAPI/PythonAlgorithms/RefMReduction.py @@ -0,0 +1,240 @@ +from MantidFramework import * +from mantidsimple import * +import math +import os +import numpy + +class RefMReduction(PythonAlgorithm): + + def category(self): + return "Reflectometry" + + def name(self): + return "RefMReduction" + + def version(self): + return 1 + + def PyInit(self): + self.declareListProperty("RunNumbers", [0], Validator=ArrayBoundedValidator(Lower=0)) + self.declareListProperty("SignalPeakPixelRange", [216, 226], Validator=ArrayBoundedValidator(Lower=0)) + self.declareProperty("SubtractSignalBackground", True) + self.declareListProperty("SignalBackgroundPixelRange", [80, 170], Validator=ArrayBoundedValidator(Lower=0)) + + self.declareProperty("PerformNormalization", True, Description="If true, the signal will be normalized") + self.declareProperty("NormalizationRunNumber", 0, Description="") + self.declareListProperty("NormPeakPixelRange", [90, 160], Validator=ArrayBoundedValidator(Lower=0)) + self.declareProperty("SubtractNormBackground", True) + self.declareListProperty("NormBackgroundPixelRange", [80, 170], Validator=ArrayBoundedValidator(Lower=0)) + self.declareListProperty("LowResAxisPixelRange", [100, 165], Validator=ArrayBoundedValidator(Lower=0)) + self.declareListProperty("TOFRange", [10700., 24500.], Validator=ArrayBoundedValidator(Lower=0)) + self.declareProperty("QMin", 0.0001, Description="Minimum Q-value") + self.declareProperty("QStep", 0.0002, Description="Step-size in Q. Enter a negative value to get a log scale.") + self.declareProperty("Theta", 0.0, Description="Scattering angle (degrees)") + self.declareProperty("WavelengthMin", 2.5) + self.declareProperty("WavelengthMax", 6.5) + self.declareProperty("WavelengthStep", 0.1) + # Output workspace to put the transmission histo into + self.declareWorkspaceProperty("OutputWorkspace", "", Direction.Output) + + def PyExec(self): + run_numbers = self.getProperty("RunNumbers") + mtd.sendLogMessage("RefMReduction: processing %s" % run_numbers) + allow_multiple = False + if len(run_numbers)>1 and not allow_multiple: + raise RuntimeError("Not ready for multiple runs yet, please specify only one run number") + + normalization_run = self.getProperty("NormalizationRunNumber") + + data_peak = self.getProperty("SignalPeakPixelRange") + data_back = self.getProperty("SignalBackgroundPixelRange") + + # TOF range to consider + self.TOFrange = self.getProperty("TOFRange") #microS + # Steps for TOF rebin + self.TOFsteps = 25.0 + + # Q binning for output distribution + q_min = self.getProperty("QMin") + q_step = self.getProperty("QStep") + + low_res_range = self.getProperty("LowResAxisPixelRange") + + h = 6.626e-34 # m^2 kg s^-1 + m = 1.675e-27 # kg + pixel_size = 0.0007 # m + + #dimension of the detector (256 by 304 pixels) + nx_pixels = 304 + ny_pixels = 256 + + norm_back = self.getProperty("NormBackgroundPixelRange") + BackfromYpixel = norm_back[0] + BacktoYpixel = norm_back[1] + + norm_peak = self.getProperty("NormPeakPixelRange") + from_peak = norm_peak[0] + to_peak = norm_peak[1] + + subtract_data_bck = self.getProperty("SubtractSignalBackground") + subtract_norm_bck = self.getProperty("SubtractNormBackground") + + ######################################################################## + # Find full path to event NeXus data file + f = FileFinder.findRuns("REF_M%d" %run_numbers[0]) + if len(f)>0 and os.path.isfile(f[0]): + data_file = f[0] + else: + msg = "RefMReduction: could not find run %d\n" % run_numbers[0] + msg += "Add your data folder to your User Data Directories in the File menu" + raise RuntimeError(msg) + + # Pick a good workspace name + ws_name_raw = "refm_%d" % run_numbers[0] + + # Load the data into its workspace + if not mtd.workspaceExists(ws_name_raw): + LoadEventNexus(Filename=data_file, NXentryName="entry-Off_Off", OutputWorkspace=ws_name_raw) + + # Rebin and crop out both sides of the TOF distribution + ws_name = ws_name_raw+'_cropped' + Rebin(InputWorkspace=ws_name_raw, OutputWorkspace=ws_name, Params=[self.TOFrange[0], self.TOFsteps, self.TOFrange[1]], PreserveEvents=False) + #CropWorkspace(InputWorkspace=ws_name, OutputWorkspace=ws_cropped, XMin=self.TOFrange[0], XMax=self.TOFrange[1]) + + # Normalized by Current (proton charge) + NormaliseByCurrent(InputWorkspace=ws_name, OutputWorkspace=ws_name) + + # Convert to wavelength + ConvertUnits(InputWorkspace=ws_name, Target="Wavelength", OutputWorkspace=ws_name) + wl_min = self.getProperty("WavelengthMin") + wl_max = self.getProperty("WavelengthMax") + wl_step = self.getProperty("WavelengthStep") + Rebin(InputWorkspace=ws_name, OutputWorkspace=ws_name, Params=[wl_min, wl_step, wl_max]) + + # Extract geometry + sample_z = mtd[ws_name].getInstrument().getSample().getPos().getZ() + source_z = mtd[ws_name].getInstrument().getSource().getPos().getZ() + detector_z = mtd[ws_name].getInstrument().getDetector(0).getPos().getZ() + + # We haven't moved the detector, so it's aligned along the beam + source_to_detector = detector_z - source_z + + # Get theta angle in degrees + #run = mtd[ws_name].getRun() + #theta = run.getProperty('SANGLE').value[0] + theta = float(self.getProperty("Theta")) + theta_radian = theta * math.pi / 180. + + # ID = NY*x + y + xmin = (data_peak[0]-nx_pixels/2.0)*pixel_size + xmax = (data_peak[1]-nx_pixels/2.0)*pixel_size + ymin = (low_res_range[0]-ny_pixels/2.0)*pixel_size + ymax = (low_res_range[1]-ny_pixels/2.0)*pixel_size + + xml_shape = "<cuboid id=\"shape\">\n" + xml_shape += " <left-front-bottom-point x=\"%g\" y=\"%g\" z=\"-5.0\" />\n" % (xmin,ymin) + xml_shape += " <left-front-top-point x=\"%g\" y=\"%g\" z=\"-5.0\" />\n" % (xmin, ymax) + xml_shape += " <left-back-bottom-point x=\"%g\" y=\"%g\" z=\"5.0\" />\n" % (xmin, ymin) + xml_shape += " <right-front-bottom-point x=\"%g\" y=\"%g\" z=\"-5.0\" />\n" % (xmax, ymin) + xml_shape += "</cuboid>\n<algebra val=\"shape\" />\n" + + alg = FindDetectorsInShape(Workspace=ws_name, ShapeXML=xml_shape) + det_list = alg.getPropertyValue("DetectorList") + + output_ws = self.getPropertyValue("OutputWorkspace") + + if mtd.workspaceExists(output_ws): + mtd.deleteWorkspace(output_ws) + + output_unsorted = '__'+output_ws+'_unsorted' + GroupDetectors(InputWorkspace=ws_name, DetectorList=det_list, OutputWorkspace=output_unsorted) + #SumSpectra(InputWorkspace=ws_name, OutputWorkspace=output_unsorted) + + # Perform normalization according to wavelength distribution of + # the direct beam + if self.getProperty("PerformNormalization"): + ws_wl_profile = self._process_normalization() + RebinToWorkspace(WorkspaceToRebin=ws_wl_profile, + WorkspaceToMatch=output_unsorted, + OutputWorkspace=ws_wl_profile) + Divide(LHSWorkspace=output_unsorted, + RHSWorkspace=ws_wl_profile, + OutputWorkspace=output_unsorted) + ReplaceSpecialValues(InputWorkspace=output_unsorted, + OutputWorkspace=output_unsorted, + NaNValue=0.0, NaNError=0.0, + InfinityValue=0.0, InfinityError=0.0) + + # Convert to Q + x = mtd[output_unsorted].readX(0) + y = mtd[output_unsorted].readY(0) + e = mtd[output_unsorted].readE(0) + + q = 4.0*math.pi*math.sin(theta_radian) / x + + zipped = zip(q,y,e) + def cmp(p1,p2): + if p2[0]==p1[0]: + return 0 + return -1 if p2[0]>p1[0] else 1 + combined = sorted(zipped, cmp) + q_,y_,e_ = zip(*combined) + + if len(q)>len(q_): + q_ = list(q_) + q_.insert(0,q[len(q)-1]) + + CreateWorkspace(DataX=q_, DataY=y_, DataE=e_, + OutputWorkspace=output_ws, + UnitX="MomentumTransfer", + YUnitLabel="Reflectivity", + ParentWorkspace=ws_name) + mtd[output_ws].setDistribution(True) + Rebin(InputWorkspace=output_ws, OutputWorkspace=output_ws, + Params=[q_min, q_step, max(q)]) + + self.setProperty("OutputWorkspace", mtd[output_ws]) + + mtd.deleteWorkspace(output_unsorted) + mtd.deleteWorkspace(ws_name) + + def _process_normalization(self): + """ + Process the direct beam normalization run + """ + normalization_run = self.getProperty("NormalizationRunNumber") + ws_normalization = "normalization_%d" % normalization_run + ws_wl_profile = "tof_profile_%d" % normalization_run + + # Find full path to event NeXus data file + f = FileFinder.findRuns("REF_M%d" % normalization_run) + + # FindRuns() is finding event workspaces, but we need histo + if len(f)>0: + f[0] = f[0].replace("event", "histo") + + if len(f)>0 and os.path.isfile(f[0]): + data_file = f[0] + else: + msg = "RefMReduction: could not find run %d\n" % normalization_run + msg += "Add your data folder to your User Data Directories in the File menu" + raise RuntimeError(msg) + + # Load the data into its workspace + if not mtd.workspaceExists(ws_normalization): + LoadTOFRawNexus(Filename=data_file, OutputWorkspace=ws_normalization) + + # Trim TOF + Rebin(InputWorkspace=ws_normalization, OutputWorkspace=ws_normalization, Params=[self.TOFrange[0], self.TOFsteps, self.TOFrange[1]]) + + # Normalized by Current (proton charge) + NormaliseByCurrent(InputWorkspace=ws_normalization, OutputWorkspace=ws_normalization) + + # Convert to wavelength + ConvertUnits(InputWorkspace=ws_normalization, Target="Wavelength", OutputWorkspace=ws_normalization) + + + SumSpectra(InputWorkspace=ws_normalization, OutputWorkspace=ws_wl_profile) + return ws_wl_profile + +mtd.registerPyAlgorithm(RefMReduction()) diff --git a/Code/Mantid/instrument/REF_M_Definition.xml b/Code/Mantid/instrument/REF_M_Definition.xml new file mode 100644 index 0000000000000000000000000000000000000000..38a6b811079b22be8f659f74938ebd0f60cafb67 --- /dev/null +++ b/Code/Mantid/instrument/REF_M_Definition.xml @@ -0,0 +1,4577 @@ +<instrument name="REF_M" valid-from="2011-12-08 11:36:21.935542" valid-to="2100-01-31 23:59:59"> + <defaults> + <length unit="metre"/> + <angle unit="degree"/> + <reference-frame> + <along-beam axis="z"/> + <pointing-up axis="y"/> + <handedness axis="right"/> + </reference-frame> + </defaults> + <!--SOURCE AND SAMPLE POSITION--> + <component type="moderator"> + <location z="-13.63"/> + </component> + <type is="Source" name="moderator"/> + <component type="sample-position"> + <location x="0.0" y="0.0" z="0.0"/> + </component> + <type is="SamplePos" name="sample-position"/> + <!--MONITORS--> + <component idlist="monitors" type="monitors"> + <location/> + </component> + <type name="monitors"> + <component mark-as="monitor" type="monitor"> + <location name="monitor1" z="-0.23368"/> + </component> + </type> + <!--DETECTOR--> + <component idlist="detector1" type="detector1"> + <location/> + </component> + <type name="detector1"> + <component type="tube0"> + <location/> + </component> + <component type="tube1"> + <location/> + </component> + <component type="tube2"> + <location/> + </component> + <component type="tube3"> + <location/> + </component> + <component type="tube4"> + <location/> + </component> + <component type="tube5"> + <location/> + </component> + <component type="tube6"> + <location/> + </component> + <component type="tube7"> + <location/> + </component> + <component type="tube8"> + <location/> + </component> + <component type="tube9"> + <location/> + </component> + <component type="tube10"> + <location/> + </component> + <component type="tube11"> + <location/> + </component> + <component type="tube12"> + <location/> + </component> + <component type="tube13"> + <location/> + </component> + <component type="tube14"> + <location/> + </component> + <component type="tube15"> + <location/> + </component> + <component type="tube16"> + <location/> + </component> + <component type="tube17"> + <location/> + </component> + <component type="tube18"> + <location/> + </component> + <component type="tube19"> + <location/> + </component> + <component type="tube20"> + <location/> + </component> + <component type="tube21"> + <location/> + </component> + <component type="tube22"> + <location/> + </component> + <component type="tube23"> + <location/> + </component> + <component type="tube24"> + <location/> + </component> + <component type="tube25"> + <location/> + </component> + <component type="tube26"> + <location/> + </component> + <component type="tube27"> + <location/> + </component> + <component type="tube28"> + <location/> + </component> + <component type="tube29"> + <location/> + </component> + <component type="tube30"> + <location/> + </component> + <component type="tube31"> + <location/> + </component> + <component type="tube32"> + <location/> + </component> + <component type="tube33"> + <location/> + </component> + <component type="tube34"> + <location/> + </component> + <component type="tube35"> + <location/> + </component> + <component type="tube36"> + <location/> + </component> + <component type="tube37"> + <location/> + </component> + <component type="tube38"> + <location/> + </component> + <component type="tube39"> + <location/> + </component> + <component type="tube40"> + <location/> + </component> + <component type="tube41"> + <location/> + </component> + <component type="tube42"> + <location/> + </component> + <component type="tube43"> + <location/> + </component> + <component type="tube44"> + <location/> + </component> + <component type="tube45"> + <location/> + </component> + <component type="tube46"> + <location/> + </component> + <component type="tube47"> + <location/> + </component> + <component type="tube48"> + <location/> + </component> + <component type="tube49"> + <location/> + </component> + <component type="tube50"> + <location/> + </component> + <component type="tube51"> + <location/> + </component> + <component type="tube52"> + <location/> + </component> + <component type="tube53"> + <location/> + </component> + <component type="tube54"> + <location/> + </component> + <component type="tube55"> + <location/> + </component> + <component type="tube56"> + <location/> + </component> + <component type="tube57"> + <location/> + </component> + <component type="tube58"> + <location/> + </component> + <component type="tube59"> + <location/> + </component> + <component type="tube60"> + <location/> + </component> + <component type="tube61"> + <location/> + </component> + <component type="tube62"> + <location/> + </component> + <component type="tube63"> + <location/> + </component> + <component type="tube64"> + <location/> + </component> + <component type="tube65"> + <location/> + </component> + <component type="tube66"> + <location/> + </component> + <component type="tube67"> + <location/> + </component> + <component type="tube68"> + <location/> + </component> + <component type="tube69"> + <location/> + </component> + <component type="tube70"> + <location/> + </component> + <component type="tube71"> + <location/> + </component> + <component type="tube72"> + <location/> + </component> + <component type="tube73"> + <location/> + </component> + <component type="tube74"> + <location/> + </component> + <component type="tube75"> + <location/> + </component> + <component type="tube76"> + <location/> + </component> + <component type="tube77"> + <location/> + </component> + <component type="tube78"> + <location/> + </component> + <component type="tube79"> + <location/> + </component> + <component type="tube80"> + <location/> + </component> + <component type="tube81"> + <location/> + </component> + <component type="tube82"> + <location/> + </component> + <component type="tube83"> + <location/> + </component> + <component type="tube84"> + <location/> + </component> + <component type="tube85"> + <location/> + </component> + <component type="tube86"> + <location/> + </component> + <component type="tube87"> + <location/> + </component> + <component type="tube88"> + <location/> + </component> + <component type="tube89"> + <location/> + </component> + <component type="tube90"> + <location/> + </component> + <component type="tube91"> + <location/> + </component> + <component type="tube92"> + <location/> + </component> + <component type="tube93"> + <location/> + </component> + <component type="tube94"> + <location/> + </component> + <component type="tube95"> + <location/> + </component> + <component type="tube96"> + <location/> + </component> + <component type="tube97"> + <location/> + </component> + <component type="tube98"> + <location/> + </component> + <component type="tube99"> + <location/> + </component> + <component type="tube100"> + <location/> + </component> + <component type="tube101"> + <location/> + </component> + <component type="tube102"> + <location/> + </component> + <component type="tube103"> + <location/> + </component> + <component type="tube104"> + <location/> + </component> + <component type="tube105"> + <location/> + </component> + <component type="tube106"> + <location/> + </component> + <component type="tube107"> + <location/> + </component> + <component type="tube108"> + <location/> + </component> + <component type="tube109"> + <location/> + </component> + <component type="tube110"> + <location/> + </component> + <component type="tube111"> + <location/> + </component> + <component type="tube112"> + <location/> + </component> + <component type="tube113"> + <location/> + </component> + <component type="tube114"> + <location/> + </component> + <component type="tube115"> + <location/> + </component> + <component type="tube116"> + <location/> + </component> + <component type="tube117"> + <location/> + </component> + <component type="tube118"> + <location/> + </component> + <component type="tube119"> + <location/> + </component> + <component type="tube120"> + <location/> + </component> + <component type="tube121"> + <location/> + </component> + <component type="tube122"> + <location/> + </component> + <component type="tube123"> + <location/> + </component> + <component type="tube124"> + <location/> + </component> + <component type="tube125"> + <location/> + </component> + <component type="tube126"> + <location/> + </component> + <component type="tube127"> + <location/> + </component> + <component type="tube128"> + <location/> + </component> + <component type="tube129"> + <location/> + </component> + <component type="tube130"> + <location/> + </component> + <component type="tube131"> + <location/> + </component> + <component type="tube132"> + <location/> + </component> + <component type="tube133"> + <location/> + </component> + <component type="tube134"> + <location/> + </component> + <component type="tube135"> + <location/> + </component> + <component type="tube136"> + <location/> + </component> + <component type="tube137"> + <location/> + </component> + <component type="tube138"> + <location/> + </component> + <component type="tube139"> + <location/> + </component> + <component type="tube140"> + <location/> + </component> + <component type="tube141"> + <location/> + </component> + <component type="tube142"> + <location/> + </component> + <component type="tube143"> + <location/> + </component> + <component type="tube144"> + <location/> + </component> + <component type="tube145"> + <location/> + </component> + <component type="tube146"> + <location/> + </component> + <component type="tube147"> + <location/> + </component> + <component type="tube148"> + <location/> + </component> + <component type="tube149"> + <location/> + </component> + <component type="tube150"> + <location/> + </component> + <component type="tube151"> + <location/> + </component> + <component type="tube152"> + <location/> + </component> + <component type="tube153"> + <location/> + </component> + <component type="tube154"> + <location/> + </component> + <component type="tube155"> + <location/> + </component> + <component type="tube156"> + <location/> + </component> + <component type="tube157"> + <location/> + </component> + <component type="tube158"> + <location/> + </component> + <component type="tube159"> + <location/> + </component> + <component type="tube160"> + <location/> + </component> + <component type="tube161"> + <location/> + </component> + <component type="tube162"> + <location/> + </component> + <component type="tube163"> + <location/> + </component> + <component type="tube164"> + <location/> + </component> + <component type="tube165"> + <location/> + </component> + <component type="tube166"> + <location/> + </component> + <component type="tube167"> + <location/> + </component> + <component type="tube168"> + <location/> + </component> + <component type="tube169"> + <location/> + </component> + <component type="tube170"> + <location/> + </component> + <component type="tube171"> + <location/> + </component> + <component type="tube172"> + <location/> + </component> + <component type="tube173"> + <location/> + </component> + <component type="tube174"> + <location/> + </component> + <component type="tube175"> + <location/> + </component> + <component type="tube176"> + <location/> + </component> + <component type="tube177"> + <location/> + </component> + <component type="tube178"> + <location/> + </component> + <component type="tube179"> + <location/> + </component> + <component type="tube180"> + <location/> + </component> + <component type="tube181"> + <location/> + </component> + <component type="tube182"> + <location/> + </component> + <component type="tube183"> + <location/> + </component> + <component type="tube184"> + <location/> + </component> + <component type="tube185"> + <location/> + </component> + <component type="tube186"> + <location/> + </component> + <component type="tube187"> + <location/> + </component> + <component type="tube188"> + <location/> + </component> + <component type="tube189"> + <location/> + </component> + <component type="tube190"> + <location/> + </component> + <component type="tube191"> + <location/> + </component> + <component type="tube192"> + <location/> + </component> + <component type="tube193"> + <location/> + </component> + <component type="tube194"> + <location/> + </component> + <component type="tube195"> + <location/> + </component> + <component type="tube196"> + <location/> + </component> + <component type="tube197"> + <location/> + </component> + <component type="tube198"> + <location/> + </component> + <component type="tube199"> + <location/> + </component> + <component type="tube200"> + <location/> + </component> + <component type="tube201"> + <location/> + </component> + <component type="tube202"> + <location/> + </component> + <component type="tube203"> + <location/> + </component> + <component type="tube204"> + <location/> + </component> + <component type="tube205"> + <location/> + </component> + <component type="tube206"> + <location/> + </component> + <component type="tube207"> + <location/> + </component> + <component type="tube208"> + <location/> + </component> + <component type="tube209"> + <location/> + </component> + <component type="tube210"> + <location/> + </component> + <component type="tube211"> + <location/> + </component> + <component type="tube212"> + <location/> + </component> + <component type="tube213"> + <location/> + </component> + <component type="tube214"> + <location/> + </component> + <component type="tube215"> + <location/> + </component> + <component type="tube216"> + <location/> + </component> + <component type="tube217"> + <location/> + </component> + <component type="tube218"> + <location/> + </component> + <component type="tube219"> + <location/> + </component> + <component type="tube220"> + <location/> + </component> + <component type="tube221"> + <location/> + </component> + <component type="tube222"> + <location/> + </component> + <component type="tube223"> + <location/> + </component> + <component type="tube224"> + <location/> + </component> + <component type="tube225"> + <location/> + </component> + <component type="tube226"> + <location/> + </component> + <component type="tube227"> + <location/> + </component> + <component type="tube228"> + <location/> + </component> + <component type="tube229"> + <location/> + </component> + <component type="tube230"> + <location/> + </component> + <component type="tube231"> + <location/> + </component> + <component type="tube232"> + <location/> + </component> + <component type="tube233"> + <location/> + </component> + <component type="tube234"> + <location/> + </component> + <component type="tube235"> + <location/> + </component> + <component type="tube236"> + <location/> + </component> + <component type="tube237"> + <location/> + </component> + <component type="tube238"> + <location/> + </component> + <component type="tube239"> + <location/> + </component> + <component type="tube240"> + <location/> + </component> + <component type="tube241"> + <location/> + </component> + <component type="tube242"> + <location/> + </component> + <component type="tube243"> + <location/> + </component> + <component type="tube244"> + <location/> + </component> + <component type="tube245"> + <location/> + </component> + <component type="tube246"> + <location/> + </component> + <component type="tube247"> + <location/> + </component> + <component type="tube248"> + <location/> + </component> + <component type="tube249"> + <location/> + </component> + <component type="tube250"> + <location/> + </component> + <component type="tube251"> + <location/> + </component> + <component type="tube252"> + <location/> + </component> + <component type="tube253"> + <location/> + </component> + <component type="tube254"> + <location/> + </component> + <component type="tube255"> + <location/> + </component> + <component type="tube256"> + <location/> + </component> + <component type="tube257"> + <location/> + </component> + <component type="tube258"> + <location/> + </component> + <component type="tube259"> + <location/> + </component> + <component type="tube260"> + <location/> + </component> + <component type="tube261"> + <location/> + </component> + <component type="tube262"> + <location/> + </component> + <component type="tube263"> + <location/> + </component> + <component type="tube264"> + <location/> + </component> + <component type="tube265"> + <location/> + </component> + <component type="tube266"> + <location/> + </component> + <component type="tube267"> + <location/> + </component> + <component type="tube268"> + <location/> + </component> + <component type="tube269"> + <location/> + </component> + <component type="tube270"> + <location/> + </component> + <component type="tube271"> + <location/> + </component> + <component type="tube272"> + <location/> + </component> + <component type="tube273"> + <location/> + </component> + <component type="tube274"> + <location/> + </component> + <component type="tube275"> + <location/> + </component> + <component type="tube276"> + <location/> + </component> + <component type="tube277"> + <location/> + </component> + <component type="tube278"> + <location/> + </component> + <component type="tube279"> + <location/> + </component> + <component type="tube280"> + <location/> + </component> + <component type="tube281"> + <location/> + </component> + <component type="tube282"> + <location/> + </component> + <component type="tube283"> + <location/> + </component> + <component type="tube284"> + <location/> + </component> + <component type="tube285"> + <location/> + </component> + <component type="tube286"> + <location/> + </component> + <component type="tube287"> + <location/> + </component> + <component type="tube288"> + <location/> + </component> + <component type="tube289"> + <location/> + </component> + <component type="tube290"> + <location/> + </component> + <component type="tube291"> + <location/> + </component> + <component type="tube292"> + <location/> + </component> + <component type="tube293"> + <location/> + </component> + <component type="tube294"> + <location/> + </component> + <component type="tube295"> + <location/> + </component> + <component type="tube296"> + <location/> + </component> + <component type="tube297"> + <location/> + </component> + <component type="tube298"> + <location/> + </component> + <component type="tube299"> + <location/> + </component> + <component type="tube300"> + <location/> + </component> + <component type="tube301"> + <location/> + </component> + <component type="tube302"> + <location/> + </component> + <component type="tube303"> + <location/> + </component> + </type> + <type name="tube" outline="yes"> + <properties/> + <component type="pixel"> + <location name="pixel1" y="-0.08925"/> + <location name="pixel2" y="-0.08855"/> + <location name="pixel3" y="-0.08785"/> + <location name="pixel4" y="-0.08715"/> + <location name="pixel5" y="-0.08645"/> + <location name="pixel6" y="-0.08575"/> + <location name="pixel7" y="-0.08505"/> + <location name="pixel8" y="-0.08435"/> + <location name="pixel9" y="-0.08365"/> + <location name="pixel10" y="-0.08295"/> + <location name="pixel11" y="-0.08225"/> + <location name="pixel12" y="-0.08155"/> + <location name="pixel13" y="-0.08085"/> + <location name="pixel14" y="-0.08015"/> + <location name="pixel15" y="-0.07945"/> + <location name="pixel16" y="-0.07875"/> + <location name="pixel17" y="-0.07805"/> + <location name="pixel18" y="-0.07735"/> + <location name="pixel19" y="-0.07665"/> + <location name="pixel20" y="-0.07595"/> + <location name="pixel21" y="-0.07525"/> + <location name="pixel22" y="-0.07455"/> + <location name="pixel23" y="-0.07385"/> + <location name="pixel24" y="-0.07315"/> + <location name="pixel25" y="-0.07245"/> + <location name="pixel26" y="-0.07175"/> + <location name="pixel27" y="-0.07105"/> + <location name="pixel28" y="-0.07035"/> + <location name="pixel29" y="-0.06965"/> + <location name="pixel30" y="-0.06895"/> + <location name="pixel31" y="-0.06825"/> + <location name="pixel32" y="-0.06755"/> + <location name="pixel33" y="-0.06685"/> + <location name="pixel34" y="-0.06615"/> + <location name="pixel35" y="-0.06545"/> + <location name="pixel36" y="-0.06475"/> + <location name="pixel37" y="-0.06405"/> + <location name="pixel38" y="-0.06335"/> + <location name="pixel39" y="-0.06265"/> + <location name="pixel40" y="-0.06195"/> + <location name="pixel41" y="-0.06125"/> + <location name="pixel42" y="-0.06055"/> + <location name="pixel43" y="-0.05985"/> + <location name="pixel44" y="-0.05915"/> + <location name="pixel45" y="-0.05845"/> + <location name="pixel46" y="-0.05775"/> + <location name="pixel47" y="-0.05705"/> + <location name="pixel48" y="-0.05635"/> + <location name="pixel49" y="-0.05565"/> + <location name="pixel50" y="-0.05495"/> + <location name="pixel51" y="-0.05425"/> + <location name="pixel52" y="-0.05355"/> + <location name="pixel53" y="-0.05285"/> + <location name="pixel54" y="-0.05215"/> + <location name="pixel55" y="-0.05145"/> + <location name="pixel56" y="-0.05075"/> + <location name="pixel57" y="-0.05005"/> + <location name="pixel58" y="-0.04935"/> + <location name="pixel59" y="-0.04865"/> + <location name="pixel60" y="-0.04795"/> + <location name="pixel61" y="-0.04725"/> + <location name="pixel62" y="-0.04655"/> + <location name="pixel63" y="-0.04585"/> + <location name="pixel64" y="-0.04515"/> + <location name="pixel65" y="-0.04445"/> + <location name="pixel66" y="-0.04375"/> + <location name="pixel67" y="-0.04305"/> + <location name="pixel68" y="-0.04235"/> + <location name="pixel69" y="-0.04165"/> + <location name="pixel70" y="-0.04095"/> + <location name="pixel71" y="-0.04025"/> + <location name="pixel72" y="-0.03955"/> + <location name="pixel73" y="-0.03885"/> + <location name="pixel74" y="-0.03815"/> + <location name="pixel75" y="-0.03745"/> + <location name="pixel76" y="-0.03675"/> + <location name="pixel77" y="-0.03605"/> + <location name="pixel78" y="-0.03535"/> + <location name="pixel79" y="-0.03465"/> + <location name="pixel80" y="-0.03395"/> + <location name="pixel81" y="-0.03325"/> + <location name="pixel82" y="-0.03255"/> + <location name="pixel83" y="-0.03185"/> + <location name="pixel84" y="-0.03115"/> + <location name="pixel85" y="-0.03045"/> + <location name="pixel86" y="-0.02975"/> + <location name="pixel87" y="-0.02905"/> + <location name="pixel88" y="-0.02835"/> + <location name="pixel89" y="-0.02765"/> + <location name="pixel90" y="-0.02695"/> + <location name="pixel91" y="-0.02625"/> + <location name="pixel92" y="-0.02555"/> + <location name="pixel93" y="-0.02485"/> + <location name="pixel94" y="-0.02415"/> + <location name="pixel95" y="-0.02345"/> + <location name="pixel96" y="-0.02275"/> + <location name="pixel97" y="-0.02205"/> + <location name="pixel98" y="-0.02135"/> + <location name="pixel99" y="-0.02065"/> + <location name="pixel100" y="-0.01995"/> + <location name="pixel101" y="-0.01925"/> + <location name="pixel102" y="-0.01855"/> + <location name="pixel103" y="-0.01785"/> + <location name="pixel104" y="-0.01715"/> + <location name="pixel105" y="-0.01645"/> + <location name="pixel106" y="-0.01575"/> + <location name="pixel107" y="-0.01505"/> + <location name="pixel108" y="-0.01435"/> + <location name="pixel109" y="-0.01365"/> + <location name="pixel110" y="-0.01295"/> + <location name="pixel111" y="-0.01225"/> + <location name="pixel112" y="-0.01155"/> + <location name="pixel113" y="-0.01085"/> + <location name="pixel114" y="-0.01015"/> + <location name="pixel115" y="-0.00945"/> + <location name="pixel116" y="-0.00875"/> + <location name="pixel117" y="-0.00805"/> + <location name="pixel118" y="-0.00735"/> + <location name="pixel119" y="-0.00665"/> + <location name="pixel120" y="-0.00595"/> + <location name="pixel121" y="-0.00525"/> + <location name="pixel122" y="-0.00455"/> + <location name="pixel123" y="-0.00385"/> + <location name="pixel124" y="-0.00315"/> + <location name="pixel125" y="-0.00245"/> + <location name="pixel126" y="-0.00175"/> + <location name="pixel127" y="-0.00105"/> + <location name="pixel128" y="-0.00035"/> + <location name="pixel129" y="0.00035"/> + <location name="pixel130" y="0.00105"/> + <location name="pixel131" y="0.00175"/> + <location name="pixel132" y="0.00245"/> + <location name="pixel133" y="0.00315"/> + <location name="pixel134" y="0.00385"/> + <location name="pixel135" y="0.00455"/> + <location name="pixel136" y="0.00525"/> + <location name="pixel137" y="0.00595"/> + <location name="pixel138" y="0.00665"/> + <location name="pixel139" y="0.00735"/> + <location name="pixel140" y="0.00805"/> + <location name="pixel141" y="0.00875"/> + <location name="pixel142" y="0.00945"/> + <location name="pixel143" y="0.01015"/> + <location name="pixel144" y="0.01085"/> + <location name="pixel145" y="0.01155"/> + <location name="pixel146" y="0.01225"/> + <location name="pixel147" y="0.01295"/> + <location name="pixel148" y="0.01365"/> + <location name="pixel149" y="0.01435"/> + <location name="pixel150" y="0.01505"/> + <location name="pixel151" y="0.01575"/> + <location name="pixel152" y="0.01645"/> + <location name="pixel153" y="0.01715"/> + <location name="pixel154" y="0.01785"/> + <location name="pixel155" y="0.01855"/> + <location name="pixel156" y="0.01925"/> + <location name="pixel157" y="0.01995"/> + <location name="pixel158" y="0.02065"/> + <location name="pixel159" y="0.02135"/> + <location name="pixel160" y="0.02205"/> + <location name="pixel161" y="0.02275"/> + <location name="pixel162" y="0.02345"/> + <location name="pixel163" y="0.02415"/> + <location name="pixel164" y="0.02485"/> + <location name="pixel165" y="0.02555"/> + <location name="pixel166" y="0.02625"/> + <location name="pixel167" y="0.02695"/> + <location name="pixel168" y="0.02765"/> + <location name="pixel169" y="0.02835"/> + <location name="pixel170" y="0.02905"/> + <location name="pixel171" y="0.02975"/> + <location name="pixel172" y="0.03045"/> + <location name="pixel173" y="0.03115"/> + <location name="pixel174" y="0.03185"/> + <location name="pixel175" y="0.03255"/> + <location name="pixel176" y="0.03325"/> + <location name="pixel177" y="0.03395"/> + <location name="pixel178" y="0.03465"/> + <location name="pixel179" y="0.03535"/> + <location name="pixel180" y="0.03605"/> + <location name="pixel181" y="0.03675"/> + <location name="pixel182" y="0.03745"/> + <location name="pixel183" y="0.03815"/> + <location name="pixel184" y="0.03885"/> + <location name="pixel185" y="0.03955"/> + <location name="pixel186" y="0.04025"/> + <location name="pixel187" y="0.04095"/> + <location name="pixel188" y="0.04165"/> + <location name="pixel189" y="0.04235"/> + <location name="pixel190" y="0.04305"/> + <location name="pixel191" y="0.04375"/> + <location name="pixel192" y="0.04445"/> + <location name="pixel193" y="0.04515"/> + <location name="pixel194" y="0.04585"/> + <location name="pixel195" y="0.04655"/> + <location name="pixel196" y="0.04725"/> + <location name="pixel197" y="0.04795"/> + <location name="pixel198" y="0.04865"/> + <location name="pixel199" y="0.04935"/> + <location name="pixel200" y="0.05005"/> + <location name="pixel201" y="0.05075"/> + <location name="pixel202" y="0.05145"/> + <location name="pixel203" y="0.05215"/> + <location name="pixel204" y="0.05285"/> + <location name="pixel205" y="0.05355"/> + <location name="pixel206" y="0.05425"/> + <location name="pixel207" y="0.05495"/> + <location name="pixel208" y="0.05565"/> + <location name="pixel209" y="0.05635"/> + <location name="pixel210" y="0.05705"/> + <location name="pixel211" y="0.05775"/> + <location name="pixel212" y="0.05845"/> + <location name="pixel213" y="0.05915"/> + <location name="pixel214" y="0.05985"/> + <location name="pixel215" y="0.06055"/> + <location name="pixel216" y="0.06125"/> + <location name="pixel217" y="0.06195"/> + <location name="pixel218" y="0.06265"/> + <location name="pixel219" y="0.06335"/> + <location name="pixel220" y="0.06405"/> + <location name="pixel221" y="0.06475"/> + <location name="pixel222" y="0.06545"/> + <location name="pixel223" y="0.06615"/> + <location name="pixel224" y="0.06685"/> + <location name="pixel225" y="0.06755"/> + <location name="pixel226" y="0.06825"/> + <location name="pixel227" y="0.06895"/> + <location name="pixel228" y="0.06965"/> + <location name="pixel229" y="0.07035"/> + <location name="pixel230" y="0.07105"/> + <location name="pixel231" y="0.07175"/> + <location name="pixel232" y="0.07245"/> + <location name="pixel233" y="0.07315"/> + <location name="pixel234" y="0.07385"/> + <location name="pixel235" y="0.07455"/> + <location name="pixel236" y="0.07525"/> + <location name="pixel237" y="0.07595"/> + <location name="pixel238" y="0.07665"/> + <location name="pixel239" y="0.07735"/> + <location name="pixel240" y="0.07805"/> + <location name="pixel241" y="0.07875"/> + <location name="pixel242" y="0.07945"/> + <location name="pixel243" y="0.08015"/> + <location name="pixel244" y="0.08085"/> + <location name="pixel245" y="0.08155"/> + <location name="pixel246" y="0.08225"/> + <location name="pixel247" y="0.08295"/> + <location name="pixel248" y="0.08365"/> + <location name="pixel249" y="0.08435"/> + <location name="pixel250" y="0.08505"/> + <location name="pixel251" y="0.08575"/> + <location name="pixel252" y="0.08645"/> + <location name="pixel253" y="0.08715"/> + <location name="pixel254" y="0.08785"/> + <location name="pixel255" y="0.08855"/> + <location name="pixel256" y="0.08925"/> + </component> + </type> + <type is="detector" name="pixel"> + <cylinder id="cyl-approx"> + <centre-of-bottom-base p="0.0" r="0.0" t="0.0"/> + <axis x="0.0" y="1.0" z="0.0"/> + <radius val="0.00035"/> + <height val="0.0007"/> + </cylinder> + <algebra val="cyl-approx"/> + </type> + <type name="tube0"> + <component type="tube"> + <location x="-0.10605" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube1"> + <component type="tube"> + <location x="-0.10535" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube2"> + <component type="tube"> + <location x="-0.10465" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube3"> + <component type="tube"> + <location x="-0.10395" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube4"> + <component type="tube"> + <location x="-0.10325" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube5"> + <component type="tube"> + <location x="-0.10255" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube6"> + <component type="tube"> + <location x="-0.10185" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube7"> + <component type="tube"> + <location x="-0.10115" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube8"> + <component type="tube"> + <location x="-0.10045" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube9"> + <component type="tube"> + <location x="-0.09975" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube10"> + <component type="tube"> + <location x="-0.09905" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube11"> + <component type="tube"> + <location x="-0.09835" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube12"> + <component type="tube"> + <location x="-0.09765" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube13"> + <component type="tube"> + <location x="-0.09695" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube14"> + <component type="tube"> + <location x="-0.09625" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube15"> + <component type="tube"> + <location x="-0.09555" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube16"> + <component type="tube"> + <location x="-0.09485" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube17"> + <component type="tube"> + <location x="-0.09415" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube18"> + <component type="tube"> + <location x="-0.09345" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube19"> + <component type="tube"> + <location x="-0.09275" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube20"> + <component type="tube"> + <location x="-0.09205" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube21"> + <component type="tube"> + <location x="-0.09135" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube22"> + <component type="tube"> + <location x="-0.09065" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube23"> + <component type="tube"> + <location x="-0.08995" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube24"> + <component type="tube"> + <location x="-0.08925" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube25"> + <component type="tube"> + <location x="-0.08855" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube26"> + <component type="tube"> + <location x="-0.08785" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube27"> + <component type="tube"> + <location x="-0.08715" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube28"> + <component type="tube"> + <location x="-0.08645" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube29"> + <component type="tube"> + <location x="-0.08575" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube30"> + <component type="tube"> + <location x="-0.08505" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube31"> + <component type="tube"> + <location x="-0.08435" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube32"> + <component type="tube"> + <location x="-0.08365" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube33"> + <component type="tube"> + <location x="-0.08295" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube34"> + <component type="tube"> + <location x="-0.08225" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube35"> + <component type="tube"> + <location x="-0.08155" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube36"> + <component type="tube"> + <location x="-0.08085" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube37"> + <component type="tube"> + <location x="-0.08015" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube38"> + <component type="tube"> + <location x="-0.07945" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube39"> + <component type="tube"> + <location x="-0.07875" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube40"> + <component type="tube"> + <location x="-0.07805" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube41"> + <component type="tube"> + <location x="-0.07735" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube42"> + <component type="tube"> + <location x="-0.07665" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube43"> + <component type="tube"> + <location x="-0.07595" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube44"> + <component type="tube"> + <location x="-0.07525" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube45"> + <component type="tube"> + <location x="-0.07455" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube46"> + <component type="tube"> + <location x="-0.07385" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube47"> + <component type="tube"> + <location x="-0.07315" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube48"> + <component type="tube"> + <location x="-0.07245" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube49"> + <component type="tube"> + <location x="-0.07175" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube50"> + <component type="tube"> + <location x="-0.07105" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube51"> + <component type="tube"> + <location x="-0.07035" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube52"> + <component type="tube"> + <location x="-0.06965" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube53"> + <component type="tube"> + <location x="-0.06895" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube54"> + <component type="tube"> + <location x="-0.06825" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube55"> + <component type="tube"> + <location x="-0.06755" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube56"> + <component type="tube"> + <location x="-0.06685" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube57"> + <component type="tube"> + <location x="-0.06615" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube58"> + <component type="tube"> + <location x="-0.06545" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube59"> + <component type="tube"> + <location x="-0.06475" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube60"> + <component type="tube"> + <location x="-0.06405" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube61"> + <component type="tube"> + <location x="-0.06335" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube62"> + <component type="tube"> + <location x="-0.06265" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube63"> + <component type="tube"> + <location x="-0.06195" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube64"> + <component type="tube"> + <location x="-0.06125" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube65"> + <component type="tube"> + <location x="-0.06055" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube66"> + <component type="tube"> + <location x="-0.05985" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube67"> + <component type="tube"> + <location x="-0.05915" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube68"> + <component type="tube"> + <location x="-0.05845" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube69"> + <component type="tube"> + <location x="-0.05775" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube70"> + <component type="tube"> + <location x="-0.05705" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube71"> + <component type="tube"> + <location x="-0.05635" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube72"> + <component type="tube"> + <location x="-0.05565" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube73"> + <component type="tube"> + <location x="-0.05495" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube74"> + <component type="tube"> + <location x="-0.05425" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube75"> + <component type="tube"> + <location x="-0.05355" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube76"> + <component type="tube"> + <location x="-0.05285" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube77"> + <component type="tube"> + <location x="-0.05215" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube78"> + <component type="tube"> + <location x="-0.05145" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube79"> + <component type="tube"> + <location x="-0.05075" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube80"> + <component type="tube"> + <location x="-0.05005" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube81"> + <component type="tube"> + <location x="-0.04935" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube82"> + <component type="tube"> + <location x="-0.04865" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube83"> + <component type="tube"> + <location x="-0.04795" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube84"> + <component type="tube"> + <location x="-0.04725" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube85"> + <component type="tube"> + <location x="-0.04655" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube86"> + <component type="tube"> + <location x="-0.04585" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube87"> + <component type="tube"> + <location x="-0.04515" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube88"> + <component type="tube"> + <location x="-0.04445" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube89"> + <component type="tube"> + <location x="-0.04375" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube90"> + <component type="tube"> + <location x="-0.04305" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube91"> + <component type="tube"> + <location x="-0.04235" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube92"> + <component type="tube"> + <location x="-0.04165" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube93"> + <component type="tube"> + <location x="-0.04095" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube94"> + <component type="tube"> + <location x="-0.04025" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube95"> + <component type="tube"> + <location x="-0.03955" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube96"> + <component type="tube"> + <location x="-0.03885" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube97"> + <component type="tube"> + <location x="-0.03815" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube98"> + <component type="tube"> + <location x="-0.03745" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube99"> + <component type="tube"> + <location x="-0.03675" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube100"> + <component type="tube"> + <location x="-0.03605" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube101"> + <component type="tube"> + <location x="-0.03535" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube102"> + <component type="tube"> + <location x="-0.03465" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube103"> + <component type="tube"> + <location x="-0.03395" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube104"> + <component type="tube"> + <location x="-0.03325" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube105"> + <component type="tube"> + <location x="-0.03255" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube106"> + <component type="tube"> + <location x="-0.03185" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube107"> + <component type="tube"> + <location x="-0.03115" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube108"> + <component type="tube"> + <location x="-0.03045" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube109"> + <component type="tube"> + <location x="-0.02975" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube110"> + <component type="tube"> + <location x="-0.02905" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube111"> + <component type="tube"> + <location x="-0.02835" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube112"> + <component type="tube"> + <location x="-0.02765" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube113"> + <component type="tube"> + <location x="-0.02695" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube114"> + <component type="tube"> + <location x="-0.02625" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube115"> + <component type="tube"> + <location x="-0.02555" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube116"> + <component type="tube"> + <location x="-0.02485" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube117"> + <component type="tube"> + <location x="-0.02415" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube118"> + <component type="tube"> + <location x="-0.02345" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube119"> + <component type="tube"> + <location x="-0.02275" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube120"> + <component type="tube"> + <location x="-0.02205" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube121"> + <component type="tube"> + <location x="-0.02135" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube122"> + <component type="tube"> + <location x="-0.02065" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube123"> + <component type="tube"> + <location x="-0.01995" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube124"> + <component type="tube"> + <location x="-0.01925" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube125"> + <component type="tube"> + <location x="-0.01855" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube126"> + <component type="tube"> + <location x="-0.01785" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube127"> + <component type="tube"> + <location x="-0.01715" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube128"> + <component type="tube"> + <location x="-0.01645" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube129"> + <component type="tube"> + <location x="-0.01575" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube130"> + <component type="tube"> + <location x="-0.01505" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube131"> + <component type="tube"> + <location x="-0.01435" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube132"> + <component type="tube"> + <location x="-0.01365" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube133"> + <component type="tube"> + <location x="-0.01295" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube134"> + <component type="tube"> + <location x="-0.01225" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube135"> + <component type="tube"> + <location x="-0.01155" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube136"> + <component type="tube"> + <location x="-0.01085" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube137"> + <component type="tube"> + <location x="-0.01015" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube138"> + <component type="tube"> + <location x="-0.00945" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube139"> + <component type="tube"> + <location x="-0.00875" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube140"> + <component type="tube"> + <location x="-0.00805" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube141"> + <component type="tube"> + <location x="-0.00735" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube142"> + <component type="tube"> + <location x="-0.00665" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube143"> + <component type="tube"> + <location x="-0.00595" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube144"> + <component type="tube"> + <location x="-0.00525" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube145"> + <component type="tube"> + <location x="-0.00455" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube146"> + <component type="tube"> + <location x="-0.00385" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube147"> + <component type="tube"> + <location x="-0.00315" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube148"> + <component type="tube"> + <location x="-0.00245" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube149"> + <component type="tube"> + <location x="-0.00175" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube150"> + <component type="tube"> + <location x="-0.00105" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube151"> + <component type="tube"> + <location x="-0.00035" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube152"> + <component type="tube"> + <location x="0.00035" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube153"> + <component type="tube"> + <location x="0.00105" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube154"> + <component type="tube"> + <location x="0.00175" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube155"> + <component type="tube"> + <location x="0.00245" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube156"> + <component type="tube"> + <location x="0.00315" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube157"> + <component type="tube"> + <location x="0.00385" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube158"> + <component type="tube"> + <location x="0.00455" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube159"> + <component type="tube"> + <location x="0.00525" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube160"> + <component type="tube"> + <location x="0.00595" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube161"> + <component type="tube"> + <location x="0.00665" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube162"> + <component type="tube"> + <location x="0.00735" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube163"> + <component type="tube"> + <location x="0.00805" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube164"> + <component type="tube"> + <location x="0.00875" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube165"> + <component type="tube"> + <location x="0.00945" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube166"> + <component type="tube"> + <location x="0.01015" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube167"> + <component type="tube"> + <location x="0.01085" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube168"> + <component type="tube"> + <location x="0.01155" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube169"> + <component type="tube"> + <location x="0.01225" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube170"> + <component type="tube"> + <location x="0.01295" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube171"> + <component type="tube"> + <location x="0.01365" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube172"> + <component type="tube"> + <location x="0.01435" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube173"> + <component type="tube"> + <location x="0.01505" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube174"> + <component type="tube"> + <location x="0.01575" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube175"> + <component type="tube"> + <location x="0.01645" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube176"> + <component type="tube"> + <location x="0.01715" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube177"> + <component type="tube"> + <location x="0.01785" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube178"> + <component type="tube"> + <location x="0.01855" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube179"> + <component type="tube"> + <location x="0.01925" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube180"> + <component type="tube"> + <location x="0.01995" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube181"> + <component type="tube"> + <location x="0.02065" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube182"> + <component type="tube"> + <location x="0.02135" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube183"> + <component type="tube"> + <location x="0.02205" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube184"> + <component type="tube"> + <location x="0.02275" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube185"> + <component type="tube"> + <location x="0.02345" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube186"> + <component type="tube"> + <location x="0.02415" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube187"> + <component type="tube"> + <location x="0.02485" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube188"> + <component type="tube"> + <location x="0.02555" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube189"> + <component type="tube"> + <location x="0.02625" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube190"> + <component type="tube"> + <location x="0.02695" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube191"> + <component type="tube"> + <location x="0.02765" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube192"> + <component type="tube"> + <location x="0.02835" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube193"> + <component type="tube"> + <location x="0.02905" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube194"> + <component type="tube"> + <location x="0.02975" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube195"> + <component type="tube"> + <location x="0.03045" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube196"> + <component type="tube"> + <location x="0.03115" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube197"> + <component type="tube"> + <location x="0.03185" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube198"> + <component type="tube"> + <location x="0.03255" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube199"> + <component type="tube"> + <location x="0.03325" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube200"> + <component type="tube"> + <location x="0.03395" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube201"> + <component type="tube"> + <location x="0.03465" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube202"> + <component type="tube"> + <location x="0.03535" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube203"> + <component type="tube"> + <location x="0.03605" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube204"> + <component type="tube"> + <location x="0.03675" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube205"> + <component type="tube"> + <location x="0.03745" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube206"> + <component type="tube"> + <location x="0.03815" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube207"> + <component type="tube"> + <location x="0.03885" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube208"> + <component type="tube"> + <location x="0.03955" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube209"> + <component type="tube"> + <location x="0.04025" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube210"> + <component type="tube"> + <location x="0.04095" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube211"> + <component type="tube"> + <location x="0.04165" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube212"> + <component type="tube"> + <location x="0.04235" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube213"> + <component type="tube"> + <location x="0.04305" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube214"> + <component type="tube"> + <location x="0.04375" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube215"> + <component type="tube"> + <location x="0.04445" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube216"> + <component type="tube"> + <location x="0.04515" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube217"> + <component type="tube"> + <location x="0.04585" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube218"> + <component type="tube"> + <location x="0.04655" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube219"> + <component type="tube"> + <location x="0.04725" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube220"> + <component type="tube"> + <location x="0.04795" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube221"> + <component type="tube"> + <location x="0.04865" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube222"> + <component type="tube"> + <location x="0.04935" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube223"> + <component type="tube"> + <location x="0.05005" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube224"> + <component type="tube"> + <location x="0.05075" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube225"> + <component type="tube"> + <location x="0.05145" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube226"> + <component type="tube"> + <location x="0.05215" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube227"> + <component type="tube"> + <location x="0.05285" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube228"> + <component type="tube"> + <location x="0.05355" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube229"> + <component type="tube"> + <location x="0.05425" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube230"> + <component type="tube"> + <location x="0.05495" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube231"> + <component type="tube"> + <location x="0.05565" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube232"> + <component type="tube"> + <location x="0.05635" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube233"> + <component type="tube"> + <location x="0.05705" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube234"> + <component type="tube"> + <location x="0.05775" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube235"> + <component type="tube"> + <location x="0.05845" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube236"> + <component type="tube"> + <location x="0.05915" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube237"> + <component type="tube"> + <location x="0.05985" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube238"> + <component type="tube"> + <location x="0.06055" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube239"> + <component type="tube"> + <location x="0.06125" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube240"> + <component type="tube"> + <location x="0.06195" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube241"> + <component type="tube"> + <location x="0.06265" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube242"> + <component type="tube"> + <location x="0.06335" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube243"> + <component type="tube"> + <location x="0.06405" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube244"> + <component type="tube"> + <location x="0.06475" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube245"> + <component type="tube"> + <location x="0.06545" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube246"> + <component type="tube"> + <location x="0.06615" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube247"> + <component type="tube"> + <location x="0.06685" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube248"> + <component type="tube"> + <location x="0.06755" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube249"> + <component type="tube"> + <location x="0.06825" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube250"> + <component type="tube"> + <location x="0.06895" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube251"> + <component type="tube"> + <location x="0.06965" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube252"> + <component type="tube"> + <location x="0.07035" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube253"> + <component type="tube"> + <location x="0.07105" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube254"> + <component type="tube"> + <location x="0.07175" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube255"> + <component type="tube"> + <location x="0.07245" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube256"> + <component type="tube"> + <location x="0.07315" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube257"> + <component type="tube"> + <location x="0.07385" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube258"> + <component type="tube"> + <location x="0.07455" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube259"> + <component type="tube"> + <location x="0.07525" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube260"> + <component type="tube"> + <location x="0.07595" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube261"> + <component type="tube"> + <location x="0.07665" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube262"> + <component type="tube"> + <location x="0.07735" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube263"> + <component type="tube"> + <location x="0.07805" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube264"> + <component type="tube"> + <location x="0.07875" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube265"> + <component type="tube"> + <location x="0.07945" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube266"> + <component type="tube"> + <location x="0.08015" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube267"> + <component type="tube"> + <location x="0.08085" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube268"> + <component type="tube"> + <location x="0.08155" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube269"> + <component type="tube"> + <location x="0.08225" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube270"> + <component type="tube"> + <location x="0.08295" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube271"> + <component type="tube"> + <location x="0.08365" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube272"> + <component type="tube"> + <location x="0.08435" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube273"> + <component type="tube"> + <location x="0.08505" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube274"> + <component type="tube"> + <location x="0.08575" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube275"> + <component type="tube"> + <location x="0.08645" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube276"> + <component type="tube"> + <location x="0.08715" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube277"> + <component type="tube"> + <location x="0.08785" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube278"> + <component type="tube"> + <location x="0.08855" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube279"> + <component type="tube"> + <location x="0.08925" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube280"> + <component type="tube"> + <location x="0.08995" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube281"> + <component type="tube"> + <location x="0.09065" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube282"> + <component type="tube"> + <location x="0.09135" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube283"> + <component type="tube"> + <location x="0.09205" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube284"> + <component type="tube"> + <location x="0.09275" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube285"> + <component type="tube"> + <location x="0.09345" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube286"> + <component type="tube"> + <location x="0.09415" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube287"> + <component type="tube"> + <location x="0.09485" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube288"> + <component type="tube"> + <location x="0.09555" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube289"> + <component type="tube"> + <location x="0.09625" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube290"> + <component type="tube"> + <location x="0.09695" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube291"> + <component type="tube"> + <location x="0.09765" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube292"> + <component type="tube"> + <location x="0.09835" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube293"> + <component type="tube"> + <location x="0.09905" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube294"> + <component type="tube"> + <location x="0.09975" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube295"> + <component type="tube"> + <location x="0.10045" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube296"> + <component type="tube"> + <location x="0.10115" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube297"> + <component type="tube"> + <location x="0.10185" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube298"> + <component type="tube"> + <location x="0.10255" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube299"> + <component type="tube"> + <location x="0.10325" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube300"> + <component type="tube"> + <location x="0.10395" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube301"> + <component type="tube"> + <location x="0.10465" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube302"> + <component type="tube"> + <location x="0.10535" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <type name="tube303"> + <component type="tube"> + <location x="0.10605" y="0" z="+1.28"> + <rot axis-x="0" axis-y="1" axis-z="0" val="0"> + <rot axis-x="1" axis-y="0" axis-z="0" val="0"> + <rot axis-x="0" axis-y="0" axis-z="1" val="0"/> + </rot> + </rot> + </location> + </component> + </type> + <!--FIXME: Do something real here.--> + <type is="detector" name="monitor"> + <cylinder id="cyl-approx"> + <centre-of-bottom-base x="0.0" y="0.0" z="0.0"/> + <axis x="0.0" y="0.0" z="1.0"/> + <radius radius="0.01"/> + <height height="0.03"/> + </cylinder> + <algebra val="cyl-approx"/> + </type> + <idlist idname="detector1"> + <id end="77823" start="0"/> + </idlist> + <idlist idname="monitors"> + <id val="-1"/> + </idlist> +</instrument>