<?xml version="1.0"  standalone="no" ?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:svg="http://www.w3.org/2000/svg" 
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<head>
<script type="text/ecmascript"> <![CDATA[
  //section to contain script code
  var myMapApp = new mapApp();
  var myMainMap;
  var myRefMapDragger;
  function init() {
     myMapApp.resetFactors();
     myMainMap = new map("mainMap",3000,100,1000,0.6);
     //set constraints to draggable rect in reference map
     myRefMapDragger = new dragObj("dragRectForRefMap",0,200,510,610,"ul");
     
     //colorRegion();
  }
  function showData(evt) {
        var xlinkns = "http://www.w3.org/1999/xlink"; 
	var myPoly = evt.currentTarget;
	var myDynamicTrackerText = document.getElementById("TrackerText");
        var myDynamicTrackerText1 = document.getElementById("TrackerText1");
        var myDynamicTrackerMessage = document.getElementById("TrackerMessage");
        var myTrackerPlot = document.getElementById("plot");
        if (evt.type == "mouseover") {
                var myTracker = myPoly.getAttribute("POS");
                var myTracker1 = "  value="+myPoly.getAttribute("value");
                var myMessage = myPoly.getAttribute("MESSAGE");
                myTracker1 = myTracker1+" count="+myPoly.getAttribute("count");
//		alert (myTracker+" "+myTracker1);
                myDynamicTrackerText.firstChild.nodeValue=myTracker;
                myDynamicTrackerText1.firstChild.nodeValue=myTracker1;
                myDynamicTrackerMessage.firstChild.nodeValue=myMessage;
        }

	if (evt.type == "mouseout") {
		myDynamicTrackerText.firstChild.nodeValue="-";				
	}

	if (evt.type == "click") {
		myDynamicTrackerText.firstChild.nodeValue="-";	
		var moduleId = myPoly.getAttribute("detid");
                var url_serv = "http://cmstkmon.cern.ch:1972/urn:xdaq-application:lid=15/Request?";
                var queryString = "RequestID=PlotTkMapHistogram";
		queryString+= "&ModId=" + moduleId;
                var url1 = url_serv  + queryString;
//                var filename=moduleId+".jpg";
//                myTrackerPlot.setAttributeNS( xlinkns, "xlink:href", filename ) 
                myTrackerPlot.setAttributeNS( xlinkns, "xlink:href", url1);
                
                pausecomp(5000);
                queryString = "RequestID=UpdatePlot&t="+moduleId;
                var url2 = url_serv  + queryString;

                myTrackerPlot.setAttributeNS( xlinkns, "xlink:href", url2);  
              
		var myTracker = myPoly.getAttribute("POS");
                myTracker = myTracker+"  value="+myPoly.getAttribute("value");
	        myTracker = myTracker+"  count="+myPoly.getAttribute("count");
		myDynamicTrackerText.firstChild.nodeValue=myTracker;
	}

  }
  function colorRegion() {
	var myGroup = document.getElementById("tracker");
	var children = myGroup.childNodes;
	var myModule;					
	//loop over all children
	//for (var i = 0; i < children.length;i++) {
	for (var i = 0; i < 10000;i++) {
	//check if it is a path-element
	 if (children.item(i).nodeName == "polygon") {
	   myModule = children.item(i).getAttribute("MODULE");
		switch (myModule) {
		   case "stereo":
			myColor = "blue";
			break;
		   case "nostereo":
			myColor = "rgb(255,255,0)";
			break;
		   default:
			myColor = "red";
		}
	   children.item(i).setAttribute("fill",myColor);
	 }
        }			
  }
  //holds data on map
  function map(mapName,origWidth,minZoom,maxZoom,zoomFact) {
	var mapSVG = document.getElementById(mapName);
	this.mapName = mapName;
	this.origWidth = origWidth;
	this.minZoom = minZoom;
	this.maxZoom = maxZoom;
	this.zoomFact = zoomFact;
	this.pixXOffset = parseFloat(mapSVG.getAttributeNS(null,"x"));
	this.pixYOffset = parseFloat(mapSVG.getAttributeNS(null,"y"));
	viewBoxArray = mapSVG.getAttributeNS(null,"viewBox").split(" ");
	this.curxOrig = parseFloat(viewBoxArray[0]);
	this.curyOrig = parseFloat(viewBoxArray[1]);
	this.curWidth = parseFloat(viewBoxArray[2]);
	this.curHeight = parseFloat(viewBoxArray[3]);
	this.pixWidth = parseFloat(mapSVG.getAttributeNS(null,"width"));
	this.pixHeight = parseFloat(mapSVG.getAttributeNS(null,"height"));
	this.pixXOrig = parseFloat(mapSVG.getAttributeNS(null,"x"));
	this.pixYOrig = parseFloat(mapSVG.getAttributeNS(null,"y"));
	this.pixSize = this.curWidth / this.pixWidth;
	this.zoomVal = this.origWidth / this.curWidth * 100;
  }
  map.prototype.newViewBox = function(refRectId,refMapId) {
	var myRefRect = document.getElementById(refRectId);
	var myRefMapSVG = document.getElementById(refMapId);
	var viewBoxArray = myRefMapSVG.getAttributeNS(null,"viewBox").split(" ");
	var refPixSize = viewBoxArray[2] / myRefMapSVG.getAttributeNS(null,"width");
	this.curxOrig = parseFloat(viewBoxArray[0]) + (myRefRect.getAttributeNS(null,"x") - myRefMapSVG.getAttributeNS(null,"x")) * refPixSize;
	this.curyOrig = parseFloat(viewBoxArray[1]) + (myRefRect.getAttributeNS(null,"y") - myRefMapSVG.getAttributeNS(null,"y")) * refPixSize;
	this.curWidth = myRefRect.getAttributeNS(null,"width") * refPixSize;
	this.curHeight = myRefRect.getAttributeNS(null,"height") * refPixSize;
	var myViewBoxString = this.curxOrig + " " + this.curyOrig + " " + this.curWidth + " " + this.curHeight;
	this.pixSize = this.curWidth / this.pixWidth;
	this.zoomVal = this.origWidth / this.curWidth * 100;
	document.getElementById(this.mapName).setAttributeNS(null,"viewBox",myViewBoxString);
  }
  //holds data on window size
  function mapApp() {
  }		
  //calculate ratio and offset values of app window
  mapApp.prototype.resetFactors = function() {
	var svgroot = document.documentElement;
	if (!svgroot.getScreenCTM) {
		//case for ASV3 and Corel
		var viewBoxArray = svgroot.getAttributeNS(null,"viewBox").split(" ");
		var myRatio = viewBoxArray[2]/viewBoxArray[3];
		if ((window.innerWidth/window.innerHeight) > myRatio) { //case window is more wide than myRatio
			this.scaleFactor = viewBoxArray[3] / window.innerHeight;
		}
		else { //case window is more tall than myRatio
			this.scaleFactor = viewBoxArray[2] / window.innerWidth;		
		}
		this.offsetX = (window.innerWidth - viewBoxArray[2] * 1 / this.scaleFactor) / 2;
		this.offsetY = (window.innerHeight - viewBoxArray[3] * 1 / this.scaleFactor) / 2;
		}
  }
   mapApp.prototype.calcCoord = function(coordx,coordy) {
	var svgroot = document.documentElement;
	var coords = new Array();
	if (!svgroot.getScreenCTM) {
	  //case ASV3 a. Corel
	  coords["x"] = (coordx  - this.offsetX) * this.scaleFactor;
	  coords["y"] = (coordy - this.offsetY) * this.scaleFactor;
	}
	else {
	  matrix=svgroot.getScreenCTM();
	  coords["x"]= matrix.inverse().a*coordx+matrix.inverse().c*coordy+matrix.inverse().e;
	  coords["y"]= matrix.inverse().b*coordx+matrix.inverse().d*coordy+matrix.inverse().f;
	 }
	return coords;
  }		
  
  //make an element draggable with constraints
  function dragObj(dragId,constrXmin,constrXmax,constrYmin,constrYmax,refPoint) {
	this.dragId = dragId;
	this.constrXmin = constrXmin;
	this.constrXmax = constrXmax;
	this.constrYmin = constrYmin;
	this.constrYmax = constrYmax;
	this.refPoint = refPoint;
	this.status = "false";
  }
  dragObj.prototype.drag = function(evt) {
        //works only for rect and use-elements
        var myDragElement = evt.target;
	if (evt.type == "mousedown") {
		var coords = myMapApp.calcCoord(evt.clientX,evt.clientY);
		this.curX = coords["x"];
		this.curY = coords["y"];
		this.status = "true";
	}
	if (evt.type == "mousemove" && this.status == "true") {
		var coords = myMapApp.calcCoord(evt.clientX,evt.clientY);
		var newEvtX = coords["x"];
		var newEvtY = coords["y"];
		var bBox = myDragElement.getBBox();
		if (this.refPoint == "ul") {
		  var toMoveX = bBox.x + newEvtX - this.curX;
		  var toMoveY = bBox.y + newEvtY - this.curY;
		}
		else {
		  //refPoint = center
		  var toMoveX = bBox.x + bBox.width / 2 + newEvtX - this.curX;
		  var toMoveY = bBox.y + bBox.height / 2 + newEvtY - this.curY;
		}
		if ((bBox.x + newEvtX - this.curX) < this.constrXmin) {
		  if(this.refPoint == "ul") {
		     toMoveX = this.constrXmin;
		  }
		  else {
		   toMoveX = this.constrXmin + bBox.width / 2;
		  }
	        }
		if ((bBox.x + newEvtX - this.curX + bBox.width) > this.constrXmax) {
			if(this.refPoint == "ul") {
		  	  toMoveX = this.constrXmax - bBox.width;
			}
			else {
		  	  toMoveX = this.constrXmax - bBox.width / 2;
			}					
		}
		if ((bBox.y + newEvtY - this.curY) < this.constrYmin) {
	 		if(this.refPoint == "ul") {
		  	 toMoveY = this.constrYmin;
			}
			else {
		  	 toMoveY = this.constrYmin + bBox.height / 2;
			}
		}
		if ((bBox.y + bBox.height + newEvtY - this.curY) > this.constrYmax) {
			if(this.refPoint == "ul") {
		  	 toMoveY = this.constrYmax - bBox.height;
			}
			else {
		 	 toMoveY = this.constrYmax - bBox.height / 2;
			}					
		}
		myDragElement.setAttributeNS(null,"x",toMoveX);
		myDragElement.setAttributeNS(null,"y",toMoveY);
		this.curX = newEvtX;
		this.curY = newEvtY;
	}
	if (evt.type == "mouseup" || evt.type == "mouseout") {
		this.status = "false";
	}			
  }
  dragObj.prototype.zoom = function(inOrOut) {
	var myDragElement = document.getElementById(this.dragId);
	var myOldX = myDragElement.getAttributeNS(null,"x");
	var myOldY = myDragElement.getAttributeNS(null,"y");
	var myOldWidth = myDragElement.getAttributeNS(null,"width");
	var myOldHeight = myDragElement.getAttributeNS(null,"height");
	switch (inOrOut) {
	   case "in":
		var myNewX = parseFloat(myOldX) + myOldWidth / 2 - (myOldWidth * myMainMap.zoomFact * 0.5);
		var myNewY = parseFloat(myOldY) + myOldHeight / 2 - (myOldHeight * myMainMap.zoomFact * 0.5);
		var myNewWidth = myOldWidth * myMainMap.zoomFact;
		var myNewHeight = myOldHeight * myMainMap.zoomFact;
		break;
	   case "out":
		var myNewX = parseFloat(myOldX) + myOldWidth / 2 - (myOldWidth * (1 + myMainMap.zoomFact) * 0.5);
		var myNewY = parseFloat(myOldY) + myOldHeight / 2 - (myOldHeight * (1 + myMainMap.zoomFact) * 0.5);
		var myNewWidth = myOldWidth * (1 + myMainMap.zoomFact);
		var myNewHeight = myOldHeight * (1 + myMainMap.zoomFact);
		break;
           case "down":
                var myNewX = parseFloat(myOldX);
                var myNewY = parseFloat(myOldY) +1.3* 6.*myMainMap.zoomFact;
                var myNewWidth = myOldWidth ;
                var myNewHeight = myOldHeight ;
                break;
           case "up":
                var myNewX = parseFloat(myOldX);
                var myNewY = parseFloat(myOldY) -1.3*6.* myMainMap.zoomFact;
                var myNewWidth = myOldWidth ;
                var myNewHeight = myOldHeight ;
                break;
           case "left":
                var myNewX = parseFloat(myOldX) - 3.*6.* myMainMap.zoomFact;
                var myNewY = parseFloat(myOldY);
                var myNewWidth = myOldWidth ;
                var myNewHeight = myOldHeight ;
                break;
           case "right":
                var myNewX = parseFloat(myOldX)+3.*6.* myMainMap.zoomFact;
                var myNewY = parseFloat(myOldY);
                var myNewWidth = myOldWidth ;
                var myNewHeight = myOldHeight ;
                break;
           case "PIXB":
                var myNewX = 0.;
                var myNewY = 540.;
                var myNewWidth = 62. ;
                var myNewHeight = 36. ;
                break;
           case "FPIX-z":
                var myNewX = 0.;
                var myNewY = 581.;
                var myNewWidth = 35.83 ;
                var myNewHeight = 21.01 ;
                break;
           case "FPIX+z":
                var myNewX = 0.;
                var myNewY = 516.;
                var myNewWidth = 35.83 ;
                var myNewHeight = 21.01 ;
                break;
           case "TID-z":
                var myNewX = 40.0;
                var myNewY = 585.;
                var myNewWidth = 34. ;
                var myNewHeight = 15. ;
                break;
           case "TID+z":
                var myNewX = 40.0;
                var myNewY = 520.;
                var myNewWidth = 34. ;
                var myNewHeight = 15. ;
                break;
           case "TOB":
                var myNewX = 97.;
                var myNewY = 542.;
                var myNewWidth = 72. ;
                var myNewHeight = 36. ;
                break;
           case "TIB":
                var myNewX = 46.8;
                var myNewY = 540.;
                var myNewWidth = 64.8 ;
                var myNewHeight = 38. ;
                break;
           case "TEC-z":
                var myNewX = 73.8;
                var myNewY = 568.;
                var myNewWidth = 115.2 ;
                var myNewHeight = 57.6 ;
                break;
           case "TEC+z":
                var myNewX = 73.8;
                var myNewY = 500.;
                var myNewWidth = 115.2 ;
                var myNewHeight = 57.6 ;
                break;

	   default:
		var myNewX = this.constrXmin;
		var myNewY = this.constrYmin;
		var myNewWidth = this.constrXmax - this.constrXmin;
		var myNewHeight = this.constrYmax - this.constrYmin;
		break;
	}
if(inOrOut=="in" || inOrOut=="out" || inOrOut=="full"){
	if (myNewWidth > (this.constrXmax - this.constrXmin)) {
		myNewWidth = this.constrXmax - this.constrXmin;
	}
	if (myNewHeight > (this.constrYmax - this.constrYmin)) {
		myNewHeight = this.constrYmax - this.constrYmin;
	}
	if (myNewX < this.constrXmin) {
		myNewX = this.constrXmin;
	}
	if (myNewY < this.constrYmin) {
		myNewY = this.constrYmin;
	}
	if ((myNewX + myNewWidth) > this.constrXmax) {
		myNewX = this.constrXmax - myNewWidth;
	}
	if ((myNewY + myNewHeight) > this.constrYmax) {
		myNewY = this.constrYmax - myNewHeight;
	}
	}
	myDragElement.setAttributeNS(null,"x",myNewX);
	myDragElement.setAttributeNS(null,"y",myNewY);
	myDragElement.setAttributeNS(null,"width",myNewWidth);
	myDragElement.setAttributeNS(null,"height",myNewHeight);
	myMainMap.newViewBox(this.dragId,"referenceMap");
  }
  //magnifier glass mouse-over effects
  function magnify(evt,scaleFact,inOrOut) {
	if (inOrOut == "in") {
	   if (myMainMap.zoomVal < myMainMap.maxZoom) {
	      scaleObject(evt,scaleFact);
	   }
	   else {
	   }
	}
	if (inOrOut == "out") {
           if (myMainMap.zoomVal > myMainMap.minZoom) {
	       scaleObject(evt,scaleFact);
	   }
	   else {
	   }		
	}
	if (inOrOut == "full") {
	   if (myMainMap.zoomVal > myMainMap.minZoom) {
	      scaleObject(evt,scaleFact);
	   }
	   else {			
	   }		
	}
	if (scaleFact == 1) {	
	   scaleObject(evt,scaleFact);
        }
  }
  //scale an object
  function scaleObject(evt,factor) {
  //reference to the currently selected object
        var element = evt.currentTarget;
	var myX = element.getAttributeNS(null,"x");
	var myY = element.getAttributeNS(null,"y");
        var newtransform = "scale(" + factor + ") translate(" + (myX * 1 / factor - myX) + " " + (myY * 1 / factor - myY) +")";
        element.setAttributeNS(null,'transform', newtransform);
  }
  function zoomIt(inOrOut) {
	if (inOrOut == "in") {
	   if (myMainMap.zoomVal < myMainMap.maxZoom) {
              myRefMapDragger.zoom("in");
	   }
	   else {
	   }
	}
	if (inOrOut == "out") {
	   if (myMainMap.zoomVal > myMainMap.minZoom) {
	       myRefMapDragger.zoom("out");
	   }
	   else {			
	   }		
	}
	if (inOrOut == "full") {
	     if (myMainMap.zoomVal > myMainMap.minZoom) {
	        myRefMapDragger.zoom("full");				
	     }
	     else {	
	     }		
	}
if(inOrOut!="in" && inOrOut!="out" && inOrOut!="full") myRefMapDragger.zoom(inOrOut);
  }

function pausecomp(millis)
{
  var inizio = new Date();
  var inizioint=inizio.getTime();
  var intervallo = 0;
  while(intervallo<millis){
    var fine = new Date();
    var fineint=fine.getTime();
     intervallo = fineint-inizioint;
   }
  return;
}

]]> </script>
<!-- section for CSS stylesheet definitions -->
<style type="text/css"><![CDATA[  
      .normalText {font-size:20;fill:black;font-weight:bold;}
      .dragRect {fill:darkcyan;stroke:none;opacity:0.4;}
  ]]></style>
</head>
<body onload="init()" onresize="myMapApp.resetFactors();">
<button onclick="zoomIt('in');">Zoom in</button>
<button onclick="zoomIt('out');">Zoom out</button>
<button onclick="zoomIt('full');">Home</button>
<button onclick="zoomIt('up');">Up</button>
<button onclick="zoomIt('down');">Down</button>
<button onclick="zoomIt('left');">Left</button>
<button onclick="zoomIt('right');">Right</button>
<button onclick="zoomIt('TIB');">TIB</button>
<button onclick="zoomIt('TOB');">TOB</button>
<button onclick="zoomIt('TID+z');">TID+z</button>
<button onclick="zoomIt('TID-z');">TID-z</button>
<button onclick="zoomIt('TEC+z');">TEC+z</button>
<button onclick="zoomIt('TEC-z');">TEC-z</button>
<button onclick="zoomIt('PIXB');">PIXB</button>
<button onclick="zoomIt('FPIX+z');">FPIX+z</button>
<button onclick="zoomIt('FPIX-z');">FPIX-z</button>
<br />
<svg:svg width="100%" height="100%" viewBox="0 0 1400 700"  >
<svg:defs>
   <svg:symbol id="magnifyer" overflow="visible" style="fill:white;stroke:darkcyan;stroke-width:2;" >
    <svg:circle r="12" />
  </svg:symbol>
  <svg:symbol id="magnifyerZoomOut" overflow="visible" style="fill:white;stroke:darkcyan;stroke-width:2;" >
    <svg:use xlink:href="#magnifyer"/>
    <svg:line x1="-6" y1="0" x2="6" y2="0" style="stroke:darkcyan;stroke-width:2;"/>
  </svg:symbol>
  <svg:symbol id="magnifyerZoomIn" overflow="visible">
    <svg:use xlink:href="#magnifyer"/>
    <svg:line x1="-6" y1="0" x2="6" y2="0" style="stroke:darkcyan;stroke-width:2;"/>
    <svg:line x1="0" y1="-6" x2="0" y2="6" style="stroke:darkcyan;stroke-width:2;"/>
  </svg:symbol>
  <svg:symbol id="magnifyerFull" overflow="visible">
    <svg:use xlink:href="#magnifyer"/>
    <svg:line x1="-2" y1="0" x2="4" y2="0" style="stroke:darkcyan;stroke-width:2;"/>
    <svg:line x1="-2" y1="-6" x2="-4" y2="6" style="stroke:darkcyan;stroke-width:2;"/>
    <svg:line x1="-2" y1="-6" x2="5" y2="-6" style="stroke:darkcyan;stroke-width:2;"/>
  </svg:symbol>
</svg:defs>
<svg:svg id="referenceMap" x="0" y="510" viewBox="0 0 3000 1600" width="180"
height="100" pointer-events="none">
        <svg:use xlink:href="#tracker" />
</svg:svg>
<svg:rect id="dragRectForRefMap" class="dragRect" x="0" y="510" width="180"
height="100" onmousedown="myRefMapDragger.drag(evt)"
onmousemove="myRefMapDragger.drag(evt)"
onmouseup="myRefMapDragger.drag(evt);myMainMap.newViewBox('dragRectForRefMap','referenceMap')"
/>
  <svg:g id="navigatorElements" class="normalText">       	  
  <!--
	<text x="220" y="530">Zoom</text>	
	<svg:use  id="zoomOut" x="230" y="560" xlink:href="#magnifyerZoomOut" onclick="zoomIt('out');"  onmouseover="magnify(evt,1.2,'out');" onmouseout="magnify(evt,1,'out');" />
	<svg:use  id="zoomIn" x="270" y="560" xlink:href="#magnifyerZoomIn" onclick="zoomIt('in');"  onmouseover="magnify(evt,1.2,'in');" onmouseout="magnify(evt,1,'in');"/>
	<svg:use  id="zoomFull" x="310" y="560" xlink:href="#magnifyerFull" onclick="zoomIt('full');"  onmouseover="magnify(evt,1.2,'full');" onmouseout="magnify(evt,1,'full');"/>
	-->
        <svg:text id="TrackerText" x="350" y="530"> - </svg:text>
        <svg:text id="TrackerText1" x="350" y="565"> - </svg:text>
        <svg:text id="TrackerMessage" x="350" y="600"> - </svg:text>
  </svg:g>
<svg:image id="plot" xlink:href="plot.jpg" x="900" y="10" width="420" height="400" /> 
<svg:svg id="mainMap" x="0" y="0" viewBox="0 0 3000 1600" width="900" height="500">
<svg:rect fill="lightblue" stroke="none" x="0" y="0" width="3000" height="1600" /> 
<svg:g id="tracker" transform="translate(10,1500) rotate(270)" style="fill:none;stroke:black;stroke-width:0;"> 
<svg:polygon detid="478773640" count="1" value="3" id="104001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  2 forward    Id 478773640 " fill="rgb(255,250,0)" points="228.822,2899.51 238.623,2899.52 238.282,2895.96 228.546,2896.62 " />
<svg:polygon detid="478773644" count="1" value="3" id="104002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  3 forward    Id 478773644 " fill="rgb(255,250,0)" points="228.359,2895.64 238.1,2895 237.083,2891.48 227.534,2892.78 " />
<svg:polygon detid="478740868" count="1" value="3" id="104003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  1 forward    Id 478740868 " fill="rgb(255,250,0)" points="227.161,2891.82 236.721,2890.55 235.041,2887.12 225.798,2889.04 " />
<svg:polygon detid="478740872" count="1" value="3" id="104004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  2 forward    Id 478740872 " fill="rgb(255,250,0)" points="225.244,2888.11 234.503,2886.22 232.18,2882.92 223.361,2885.43 " />
<svg:polygon detid="478740876" count="1" value="3" id="104005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  3 forward    Id 478740876 " fill="rgb(255,250,0)" points="222.633,2884.54 231.473,2882.05 228.538,2878.93 220.253,2882.01 " />
<svg:polygon detid="478773892" count="1" value="3" id="104006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  1 forward    Id 478773892 " fill="rgb(255,250,0)" points="219.36,2881.17 227.671,2878.12 224.159,2875.21 216.512,2878.81 " />
<svg:polygon detid="478773896" count="1" value="3" id="104007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  2 forward    Id 478773896 " fill="rgb(255,250,0)" points="215.466,2878.04 223.143,2874.46 219.099,2871.8 212.187,2875.88 " />
<svg:polygon detid="478773900" count="1" value="3" id="104008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  3 forward    Id 478773900 " fill="rgb(255,250,0)" points="211.001,2875.18 217.948,2871.12 213.422,2868.74 207.331,2873.26 " />
<svg:polygon detid="478773904" count="1" value="3" id="104009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  0 backward    Id 478773904 " fill="rgb(255,250,0)" points="206.019,2872.64 212.149,2868.14 207.199,2866.08 202.006,2870.96 " />
<svg:polygon detid="478741124" count="1" value="3" id="104010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  1 forward    Id 478741124 " fill="rgb(255,250,0)" points="200.585,2870.44 205.82,2865.57 200.508,2863.84 196.278,2869.04 " />
<svg:polygon detid="478741128" count="1" value="3" id="104011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  2 forward    Id 478741128 " fill="rgb(255,250,0)" points="194.766,2868.61 199.04,2863.42 193.433,2862.06 190.219,2867.5 " />
<svg:polygon detid="478741132" count="1" value="3" id="104012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  3 forward    Id 478741132 " fill="rgb(255,250,0)" points="188.636,2867.18 191.896,2861.74 186.064,2860.75 183.907,2866.38 " />
<svg:polygon detid="478774148" count="1" value="3" id="104013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  1 forward    Id 478774148 " fill="rgb(255,250,0)" points="182.271,2866.16 184.476,2860.54 178.493,2859.94 177.419,2865.67 " />
<svg:polygon detid="478774152" count="1" value="3" id="104014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  2 forward    Id 478774152 " fill="rgb(255,250,0)" points="175.753,2865.56 176.874,2859.83 170.814,2859.63 170.839,2865.4 " />
<svg:polygon detid="478774156" count="1" value="3" id="104015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  3 forward    Id 478774156 " fill="rgb(255,250,0)" points="169.161,2865.4 169.186,2859.63 163.126,2859.83 164.247,2865.56 " />
<svg:polygon detid="478774160" count="1" value="3" id="104016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  0 backward    Id 478774160 " fill="rgb(255,250,0)" points="162.581,2865.67 161.507,2859.94 155.524,2860.54 157.729,2866.16 " />
<svg:polygon detid="478741380" count="1" value="3" id="104017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  1 forward    Id 478741380 " fill="rgb(255,250,0)" points="156.093,2866.38 153.936,2860.75 148.104,2861.74 151.364,2867.18 " />
<svg:polygon detid="478741384" count="1" value="3" id="104018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  2 forward    Id 478741384 " fill="rgb(255,250,0)" points="149.781,2867.5 146.567,2862.06 140.96,2863.42 145.234,2868.61 " />
<svg:polygon detid="478741388" count="1" value="3" id="104019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  3 forward    Id 478741388 " fill="rgb(255,250,0)" points="143.722,2869.04 139.492,2863.84 134.18,2865.57 139.415,2870.44 " />
<svg:polygon detid="478774404" count="1" value="3" id="104020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  1 forward    Id 478774404 " fill="rgb(255,250,0)" points="137.994,2870.96 132.801,2866.08 127.851,2868.14 133.981,2872.64 " />
<svg:polygon detid="478774408" count="1" value="3" id="104021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  2 forward    Id 478774408 " fill="rgb(255,250,0)" points="132.669,2873.26 126.578,2868.74 122.052,2871.12 128.999,2875.18 " />
<svg:polygon detid="478774412" count="1" value="3" id="104022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  3 forward    Id 478774412 " fill="rgb(255,250,0)" points="127.813,2875.88 120.901,2871.8 116.857,2874.46 124.534,2878.04 " />
<svg:polygon detid="478774416" count="1" value="3" id="104023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  0 backward    Id 478774416 " fill="rgb(255,250,0)" points="123.488,2878.81 115.841,2875.21 112.329,2878.12 120.64,2881.17 " />
<svg:polygon detid="478741636" count="1" value="3" id="104024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  1 forward    Id 478741636 " fill="rgb(255,250,0)" points="119.747,2882.01 111.462,2878.93 108.527,2882.05 117.367,2884.54 " />
<svg:polygon detid="478741640" count="1" value="3" id="104025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  2 forward    Id 478741640 " fill="rgb(255,250,0)" points="116.639,2885.43 107.82,2882.92 105.497,2886.22 114.756,2888.11 " />
<svg:polygon detid="478741644" count="1" value="3" id="104026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  3 forward    Id 478741644 " fill="rgb(255,250,0)" points="114.202,2889.04 104.959,2887.12 103.279,2890.55 112.839,2891.82 " />
<svg:polygon detid="478774660" count="1" value="3" id="104027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  1 forward    Id 478774660 " fill="rgb(255,250,0)" points="112.466,2892.78 102.917,2891.48 101.9,2895 111.641,2895.64 " />
<svg:polygon detid="478774664" count="1" value="3" id="104028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  2 forward    Id 478774664 " fill="rgb(255,250,0)" points="111.454,2896.62 101.718,2895.96 101.377,2899.52 111.178,2899.51 " />
<svg:polygon detid="478774668" count="1" value="3" id="104029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  3 forward    Id 478774668 " fill="rgb(255,250,0)" points="111.178,2900.49 101.377,2900.48 101.718,2904.04 111.454,2903.38 " />
<svg:polygon detid="478774672" count="1" value="3" id="104030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  0 backward    Id 478774672 " fill="rgb(255,250,0)" points="111.641,2904.36 101.9,2905 102.917,2908.52 112.466,2907.22 " />
<svg:polygon detid="478741892" count="1" value="3" id="104031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  1 forward    Id 478741892 " fill="rgb(255,250,0)" points="112.839,2908.18 103.279,2909.45 104.959,2912.88 114.202,2910.96 " />
<svg:polygon detid="478741896" count="1" value="3" id="104032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  2 forward    Id 478741896 " fill="rgb(255,250,0)" points="114.756,2911.89 105.497,2913.78 107.82,2917.08 116.639,2914.57 " />
<svg:polygon detid="478741900" count="1" value="3" id="104033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  3 forward    Id 478741900 " fill="rgb(255,250,0)" points="117.367,2915.46 108.527,2917.95 111.462,2921.07 119.747,2917.99 " />
<svg:polygon detid="478774916" count="1" value="3" id="104034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  1 forward    Id 478774916 " fill="rgb(255,250,0)" points="120.64,2918.83 112.329,2921.88 115.841,2924.79 123.488,2921.19 " />
<svg:polygon detid="478774920" count="1" value="3" id="104035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  2 forward    Id 478774920 " fill="rgb(255,250,0)" points="124.534,2921.96 116.857,2925.54 120.901,2928.2 127.813,2924.12 " />
<svg:polygon detid="478774924" count="1" value="3" id="104036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  3 forward    Id 478774924 " fill="rgb(255,250,0)" points="128.999,2924.82 122.052,2928.88 126.578,2931.26 132.669,2926.74 " />
<svg:polygon detid="478774928" count="1" value="3" id="104037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  0 backward    Id 478774928 " fill="rgb(255,250,0)" points="133.981,2927.36 127.851,2931.86 132.801,2933.92 137.994,2929.04 " />
<svg:polygon detid="478742148" count="1" value="3" id="104038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  1 forward    Id 478742148 " fill="rgb(255,250,0)" points="139.415,2929.56 134.18,2934.43 139.492,2936.16 143.722,2930.96 " />
<svg:polygon detid="478742152" count="1" value="3" id="104039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  2 forward    Id 478742152 " fill="rgb(255,250,0)" points="145.234,2931.39 140.96,2936.58 146.567,2937.94 149.781,2932.5 " />
<svg:polygon detid="478742156" count="1" value="3" id="104040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  3 forward    Id 478742156 " fill="rgb(255,250,0)" points="151.364,2932.82 148.104,2938.26 153.936,2939.25 156.093,2933.62 " />
<svg:polygon detid="478775172" count="1" value="3" id="104041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  1 forward    Id 478775172 " fill="rgb(255,250,0)" points="157.729,2933.84 155.524,2939.46 161.507,2940.06 162.581,2934.33 " />
<svg:polygon detid="478775176" count="1" value="3" id="104042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  2 forward    Id 478775176 " fill="rgb(255,250,0)" points="164.247,2934.44 163.126,2940.17 169.186,2940.37 169.161,2934.6 " />
<svg:polygon detid="478775180" count="1" value="3" id="104043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  3 forward    Id 478775180 " fill="rgb(255,250,0)" points="170.839,2934.6 170.814,2940.37 176.874,2940.17 175.753,2934.44 " />
<svg:polygon detid="478775184" count="1" value="3" id="104044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  0 backward    Id 478775184 " fill="rgb(255,250,0)" points="177.419,2934.33 178.493,2940.06 184.476,2939.46 182.271,2933.84 " />
<svg:polygon detid="478742404" count="1" value="3" id="104045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  1 forward    Id 478742404 " fill="rgb(255,250,0)" points="183.907,2933.62 186.064,2939.25 191.896,2938.26 188.636,2932.82 " />
<svg:polygon detid="478742408" count="1" value="3" id="104046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  2 forward    Id 478742408 " fill="rgb(255,250,0)" points="190.219,2932.5 193.433,2937.94 199.04,2936.58 194.766,2931.39 " />
<svg:polygon detid="478742412" count="1" value="3" id="104047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  3 forward    Id 478742412 " fill="rgb(255,250,0)" points="196.278,2930.96 200.508,2936.16 205.82,2934.43 200.585,2929.56 " />
<svg:polygon detid="478775428" count="1" value="3" id="104048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  1 forward    Id 478775428 " fill="rgb(255,250,0)" points="202.006,2929.04 207.199,2933.92 212.149,2931.86 206.019,2927.36 " />
<svg:polygon detid="478775432" count="1" value="3" id="104049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  2 forward    Id 478775432 " fill="rgb(255,250,0)" points="207.331,2926.74 213.422,2931.26 217.948,2928.88 211.001,2924.82 " />
<svg:polygon detid="478775436" count="1" value="3" id="104050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  3 forward    Id 478775436 " fill="rgb(255,250,0)" points="212.187,2924.12 219.099,2928.2 223.143,2925.54 215.466,2921.96 " />
<svg:polygon detid="478775440" count="1" value="3" id="104051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  0 backward    Id 478775440 " fill="rgb(255,250,0)" points="216.512,2921.19 224.159,2924.79 227.671,2921.88 219.36,2918.83 " />
<svg:polygon detid="478742660" count="1" value="3" id="104052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  1 forward    Id 478742660 " fill="rgb(255,250,0)" points="220.253,2917.99 228.538,2921.07 231.473,2917.95 222.633,2915.46 " />
<svg:polygon detid="478742664" count="1" value="3" id="104053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  2 forward    Id 478742664 " fill="rgb(255,250,0)" points="223.361,2914.57 232.18,2917.08 234.503,2913.78 225.244,2911.89 " />
<svg:polygon detid="478742668" count="1" value="3" id="104054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  3 forward    Id 478742668 " fill="rgb(255,250,0)" points="225.798,2910.96 235.041,2912.88 236.721,2909.45 227.161,2908.18 " />
<svg:polygon detid="478773648" count="1" value="3" id="104055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  0 backward    Id 478773648 " fill="rgb(255,250,0)" points="227.534,2907.22 237.083,2908.52 238.1,2905 228.359,2904.36 " />
<svg:polygon detid="478773636" count="1" value="3" id="104056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  1 forward    Id 478773636 " fill="rgb(255,250,0)" points="228.546,2903.38 238.282,2904.04 238.623,2900.48 228.822,2900.49 " />
<svg:polygon detid="478773674" count="1" value="3" id="105001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  2 forward    Id 478773674 " fill="rgb(255,250,0)" points="252.313,2893.17 239.92,2894.35 240.562,2899.15 " />
<svg:polygon detid="478740902" count="1" value="3" id="105002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  1 forward    Id 478740902 " fill="rgb(255,250,0)" points="249.484,2885.68 237.556,2887.98 239.467,2892.67 " />
<svg:polygon detid="478740906" count="1" value="3" id="105003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  2 forward    Id 478740906 " fill="rgb(255,250,0)" points="244.698,2878.54 233.528,2881.92 236.661,2886.36 " />
<svg:polygon detid="478740910" count="1" value="3" id="105004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  3 forward    Id 478740910 " fill="rgb(255,250,0)" points="238.072,2871.93 227.937,2876.29 232.214,2880.4 " />
<svg:polygon detid="478773926" count="1" value="3" id="105005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  1 forward    Id 478773926 " fill="rgb(255,250,0)" points="229.77,2866.02 220.919,2871.25 226.235,2874.91 " />
<svg:polygon detid="478773930" count="1" value="3" id="105006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  2 forward    Id 478773930 " fill="rgb(255,250,0)" points="219.997,2860.93 212.647,2866.92 218.871,2870.05 " />
<svg:polygon detid="478741158" count="1" value="3" id="105007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  1 forward    Id 478741158 " fill="rgb(255,250,0)" points="208.992,2856.81 203.324,2863.4 210.304,2865.92 " />
<svg:polygon detid="478741162" count="1" value="3" id="105008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  2 forward    Id 478741162 " fill="rgb(255,250,0)" points="197.028,2853.76 193.182,2860.79 200.744,2862.63 " />
<svg:polygon detid="478741166" count="1" value="3" id="105009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  3 forward    Id 478741166 " fill="rgb(255,250,0)" points="184.397,2851.84 182.468,2859.14 190.428,2860.26 " />
<svg:polygon detid="478774182" count="1" value="3" id="105010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  1 forward    Id 478774182 " fill="rgb(255,250,0)" points="171.413,2851.11 171.448,2858.49 179.608,2858.87 " />
<svg:polygon detid="478774186" count="1" value="3" id="105011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  2 forward    Id 478774186 " fill="rgb(255,250,0)" points="158.393,2851.58 160.392,2858.87 168.552,2858.49 " />
<svg:polygon detid="478741414" count="1" value="3" id="105012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  1 forward    Id 478741414 " fill="rgb(255,250,0)" points="145.66,2853.24 149.572,2860.26 157.532,2859.14 " />
<svg:polygon detid="478741418" count="1" value="3" id="105013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  2 forward    Id 478741418 " fill="rgb(255,250,0)" points="133.525,2856.06 139.256,2862.63 146.818,2860.79 " />
<svg:polygon detid="478741422" count="1" value="3" id="105014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  3 forward    Id 478741422 " fill="rgb(255,250,0)" points="122.289,2859.96 129.696,2865.92 136.676,2863.4 " />
<svg:polygon detid="478774438" count="1" value="3" id="105015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  1 forward    Id 478774438 " fill="rgb(255,250,0)" points="112.228,2864.84 121.129,2870.05 127.353,2866.92 " />
<svg:polygon detid="478774442" count="1" value="3" id="105016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  2 forward    Id 478774442 " fill="rgb(255,250,0)" points="103.589,2870.59 113.765,2874.91 119.081,2871.25 " />
<svg:polygon detid="478741670" count="1" value="3" id="105017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  1 forward    Id 478741670 " fill="rgb(255,250,0)" points="96.5852,2877.06 107.786,2880.4 112.063,2876.29 " />
<svg:polygon detid="478741674" count="1" value="3" id="105018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  2 forward    Id 478741674 " fill="rgb(255,250,0)" points="91.3893,2884.1 103.339,2886.36 106.472,2881.92 " />
<svg:polygon detid="478741678" count="1" value="3" id="105019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  3 forward    Id 478741678 " fill="rgb(255,250,0)" points="88.129,2891.53 100.533,2892.67 102.444,2887.98 " />
<svg:polygon detid="478774694" count="1" value="3" id="105020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  1 forward    Id 478774694 " fill="rgb(255,250,0)" points="86.8848,2899.17 99.4383,2899.15 100.08,2894.35 " />
<svg:polygon detid="478774698" count="1" value="3" id="105021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  2 forward    Id 478774698 " fill="rgb(255,250,0)" points="87.6871,2906.83 100.08,2905.65 99.4383,2900.85 " />
<svg:polygon detid="478741926" count="1" value="3" id="105022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  1 forward    Id 478741926 " fill="rgb(255,250,0)" points="90.5161,2914.32 102.444,2912.02 100.533,2907.33 " />
<svg:polygon detid="478741930" count="1" value="3" id="105023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  2 forward    Id 478741930 " fill="rgb(255,250,0)" points="95.3024,2921.46 106.472,2918.08 103.339,2913.64 " />
<svg:polygon detid="478741934" count="1" value="3" id="105024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  3 forward    Id 478741934 " fill="rgb(255,250,0)" points="101.928,2928.07 112.063,2923.71 107.786,2919.6 " />
<svg:polygon detid="478774950" count="1" value="3" id="105025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  1 forward    Id 478774950 " fill="rgb(255,250,0)" points="110.23,2933.98 119.081,2928.75 113.765,2925.09 " />
<svg:polygon detid="478774954" count="1" value="3" id="105026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  2 forward    Id 478774954 " fill="rgb(255,250,0)" points="120.003,2939.07 127.353,2933.08 121.129,2929.95 " />
<svg:polygon detid="478742182" count="1" value="3" id="105027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  1 forward    Id 478742182 " fill="rgb(255,250,0)" points="131.008,2943.19 136.676,2936.6 129.696,2934.08 " />
<svg:polygon detid="478742186" count="1" value="3" id="105028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  2 forward    Id 478742186 " fill="rgb(255,250,0)" points="142.972,2946.24 146.818,2939.21 139.256,2937.37 " />
<svg:polygon detid="478742190" count="1" value="3" id="105029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  3 forward    Id 478742190 " fill="rgb(255,250,0)" points="155.603,2948.16 157.532,2940.86 149.572,2939.74 " />
<svg:polygon detid="478775206" count="1" value="3" id="105030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  1 forward    Id 478775206 " fill="rgb(255,250,0)" points="168.587,2948.89 168.552,2941.51 160.392,2941.13 " />
<svg:polygon detid="478775210" count="1" value="3" id="105031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  2 forward    Id 478775210 " fill="rgb(255,250,0)" points="181.607,2948.42 179.608,2941.13 171.448,2941.51 " />
<svg:polygon detid="478742438" count="1" value="3" id="105032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  1 forward    Id 478742438 " fill="rgb(255,250,0)" points="194.34,2946.76 190.428,2939.74 182.468,2940.86 " />
<svg:polygon detid="478742442" count="1" value="3" id="105033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  2 forward    Id 478742442 " fill="rgb(255,250,0)" points="206.475,2943.94 200.744,2937.37 193.182,2939.21 " />
<svg:polygon detid="478742446" count="1" value="3" id="105034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  3 forward    Id 478742446 " fill="rgb(255,250,0)" points="217.711,2940.04 210.304,2934.08 203.324,2936.6 " />
<svg:polygon detid="478775462" count="1" value="3" id="105035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  1 forward    Id 478775462 " fill="rgb(255,250,0)" points="227.772,2935.16 218.871,2929.95 212.647,2933.08 " />
<svg:polygon detid="478775466" count="1" value="3" id="105036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  2 forward    Id 478775466 " fill="rgb(255,250,0)" points="236.411,2929.41 226.235,2925.09 220.919,2928.75 " />
<svg:polygon detid="478742694" count="1" value="3" id="105037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  1 forward    Id 478742694 " fill="rgb(255,250,0)" points="243.415,2922.94 232.214,2919.6 227.937,2923.71 " />
<svg:polygon detid="478742698" count="1" value="3" id="105038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  2 forward    Id 478742698 " fill="rgb(255,250,0)" points="248.611,2915.9 236.661,2913.64 233.528,2918.08 " />
<svg:polygon detid="478742702" count="1" value="3" id="105039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  3 forward    Id 478742702 " fill="rgb(255,250,0)" points="251.871,2908.47 239.467,2907.33 237.556,2912.02 " />
<svg:polygon detid="478773670" count="1" value="3" id="105040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  1 forward    Id 478773670 " fill="rgb(255,250,0)" points="253.115,2900.83 240.562,2900.85 239.92,2905.65 " />
<svg:polygon detid="478773673" count="1" value="3" id="105101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  2 forward   stereo Id 478773673 " fill="rgb(255,250,0)" points="240.562,2899.15 253.115,2899.17 252.313,2893.17 " />
<svg:polygon detid="478740901" count="1" value="3" id="105102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  1 forward   stereo Id 478740901 " fill="rgb(255,250,0)" points="239.467,2892.67 251.871,2891.53 249.484,2885.68 " />
<svg:polygon detid="478740905" count="1" value="3" id="105103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  2 forward   stereo Id 478740905 " fill="rgb(255,250,0)" points="236.661,2886.36 248.611,2884.1 244.698,2878.54 " />
<svg:polygon detid="478740909" count="1" value="3" id="105104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  3 forward   stereo Id 478740909 " fill="rgb(255,250,0)" points="232.214,2880.4 243.415,2877.06 238.072,2871.93 " />
<svg:polygon detid="478773925" count="1" value="3" id="105105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  1 forward   stereo Id 478773925 " fill="rgb(255,250,0)" points="226.235,2874.91 236.411,2870.59 229.77,2866.02 " />
<svg:polygon detid="478773929" count="1" value="3" id="105106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  2 forward   stereo Id 478773929 " fill="rgb(255,250,0)" points="218.871,2870.05 227.772,2864.84 219.997,2860.93 " />
<svg:polygon detid="478741157" count="1" value="3" id="105107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  1 forward   stereo Id 478741157 " fill="rgb(255,250,0)" points="210.304,2865.92 217.711,2859.96 208.992,2856.81 " />
<svg:polygon detid="478741161" count="1" value="3" id="105108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  2 forward   stereo Id 478741161 " fill="rgb(255,250,0)" points="200.744,2862.63 206.475,2856.06 197.028,2853.76 " />
<svg:polygon detid="478741165" count="1" value="3" id="105109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  3 forward   stereo Id 478741165 " fill="rgb(255,250,0)" points="190.428,2860.26 194.34,2853.24 184.397,2851.84 " />
<svg:polygon detid="478774181" count="1" value="3" id="105110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  1 forward   stereo Id 478774181 " fill="rgb(255,250,0)" points="179.608,2858.87 181.607,2851.58 171.413,2851.11 " />
<svg:polygon detid="478774185" count="1" value="3" id="105111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  2 forward   stereo Id 478774185 " fill="rgb(255,250,0)" points="168.552,2858.49 168.587,2851.11 158.393,2851.58 " />
<svg:polygon detid="478741413" count="1" value="3" id="105112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  1 forward   stereo Id 478741413 " fill="rgb(255,250,0)" points="157.532,2859.14 155.603,2851.84 145.66,2853.24 " />
<svg:polygon detid="478741417" count="1" value="3" id="105113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  2 forward   stereo Id 478741417 " fill="rgb(255,250,0)" points="146.818,2860.79 142.972,2853.76 133.525,2856.06 " />
<svg:polygon detid="478741421" count="1" value="3" id="105114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  3 forward   stereo Id 478741421 " fill="rgb(255,250,0)" points="136.676,2863.4 131.008,2856.81 122.289,2859.96 " />
<svg:polygon detid="478774437" count="1" value="3" id="105115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  1 forward   stereo Id 478774437 " fill="rgb(255,250,0)" points="127.353,2866.92 120.003,2860.93 112.228,2864.84 " />
<svg:polygon detid="478774441" count="1" value="3" id="105116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  2 forward   stereo Id 478774441 " fill="rgb(255,250,0)" points="119.081,2871.25 110.23,2866.02 103.589,2870.59 " />
<svg:polygon detid="478741669" count="1" value="3" id="105117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  1 forward   stereo Id 478741669 " fill="rgb(255,250,0)" points="112.063,2876.29 101.928,2871.93 96.5852,2877.06 " />
<svg:polygon detid="478741673" count="1" value="3" id="105118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  2 forward   stereo Id 478741673 " fill="rgb(255,250,0)" points="106.472,2881.92 95.3024,2878.54 91.3893,2884.1 " />
<svg:polygon detid="478741677" count="1" value="3" id="105119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  3 forward   stereo Id 478741677 " fill="rgb(255,250,0)" points="102.444,2887.98 90.5161,2885.68 88.129,2891.53 " />
<svg:polygon detid="478774693" count="1" value="3" id="105120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  1 forward   stereo Id 478774693 " fill="rgb(255,250,0)" points="100.08,2894.35 87.6871,2893.17 86.8848,2899.17 " />
<svg:polygon detid="478774697" count="1" value="3" id="105121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  2 forward   stereo Id 478774697 " fill="rgb(255,250,0)" points="99.4383,2900.85 86.8848,2900.83 87.6871,2906.83 " />
<svg:polygon detid="478741925" count="1" value="3" id="105122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  1 forward   stereo Id 478741925 " fill="rgb(255,250,0)" points="100.533,2907.33 88.129,2908.47 90.5161,2914.32 " />
<svg:polygon detid="478741929" count="1" value="3" id="105123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  2 forward   stereo Id 478741929 " fill="rgb(255,250,0)" points="103.339,2913.64 91.3893,2915.9 95.3024,2921.46 " />
<svg:polygon detid="478741933" count="1" value="3" id="105124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  3 forward   stereo Id 478741933 " fill="rgb(255,250,0)" points="107.786,2919.6 96.5852,2922.94 101.928,2928.07 " />
<svg:polygon detid="478774949" count="1" value="3" id="105125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  1 forward   stereo Id 478774949 " fill="rgb(255,250,0)" points="113.765,2925.09 103.589,2929.41 110.23,2933.98 " />
<svg:polygon detid="478774953" count="1" value="3" id="105126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  2 forward   stereo Id 478774953 " fill="rgb(255,250,0)" points="121.129,2929.95 112.228,2935.16 120.003,2939.07 " />
<svg:polygon detid="478742181" count="1" value="3" id="105127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  1 forward   stereo Id 478742181 " fill="rgb(255,250,0)" points="129.696,2934.08 122.289,2940.04 131.008,2943.19 " />
<svg:polygon detid="478742185" count="1" value="3" id="105128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  2 forward   stereo Id 478742185 " fill="rgb(255,250,0)" points="139.256,2937.37 133.525,2943.94 142.972,2946.24 " />
<svg:polygon detid="478742189" count="1" value="3" id="105129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  3 forward   stereo Id 478742189 " fill="rgb(255,250,0)" points="149.572,2939.74 145.66,2946.76 155.603,2948.16 " />
<svg:polygon detid="478775205" count="1" value="3" id="105130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  1 forward   stereo Id 478775205 " fill="rgb(255,250,0)" points="160.392,2941.13 158.393,2948.42 168.587,2948.89 " />
<svg:polygon detid="478775209" count="1" value="3" id="105131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  2 forward   stereo Id 478775209 " fill="rgb(255,250,0)" points="171.448,2941.51 171.413,2948.89 181.607,2948.42 " />
<svg:polygon detid="478742437" count="1" value="3" id="105132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  1 forward   stereo Id 478742437 " fill="rgb(255,250,0)" points="182.468,2940.86 184.397,2948.16 194.34,2946.76 " />
<svg:polygon detid="478742441" count="1" value="3" id="105133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  2 forward   stereo Id 478742441 " fill="rgb(255,250,0)" points="193.182,2939.21 197.028,2946.24 206.475,2943.94 " />
<svg:polygon detid="478742445" count="1" value="3" id="105134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  3 forward   stereo Id 478742445 " fill="rgb(255,250,0)" points="203.324,2936.6 208.992,2943.19 217.711,2940.04 " />
<svg:polygon detid="478775461" count="1" value="3" id="105135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  1 forward   stereo Id 478775461 " fill="rgb(255,250,0)" points="212.647,2933.08 219.997,2939.07 227.772,2935.16 " />
<svg:polygon detid="478775465" count="1" value="3" id="105136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  2 forward   stereo Id 478775465 " fill="rgb(255,250,0)" points="220.919,2928.75 229.77,2933.98 236.411,2929.41 " />
<svg:polygon detid="478742693" count="1" value="3" id="105137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  1 forward   stereo Id 478742693 " fill="rgb(255,250,0)" points="227.937,2923.71 238.072,2928.07 243.415,2922.94 " />
<svg:polygon detid="478742697" count="1" value="3" id="105138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  2 forward   stereo Id 478742697 " fill="rgb(255,250,0)" points="233.528,2918.08 244.698,2921.46 248.611,2915.9 " />
<svg:polygon detid="478742701" count="1" value="3" id="105139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  3 forward   stereo Id 478742701 " fill="rgb(255,250,0)" points="237.556,2912.02 249.484,2914.32 251.871,2908.47 " />
<svg:polygon detid="478773669" count="1" value="3" id="105140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  1 forward   stereo Id 478773669 " fill="rgb(255,250,0)" points="239.92,2905.65 252.313,2906.83 253.115,2900.83 " />
<svg:polygon detid="478773704" count="1" value="3" id="106001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  2 forward    Id 478773704 " fill="rgb(255,250,0)" points="255.048,2899.28 270.706,2899.3 270.206,2894.06 254.65,2895.12 " />
<svg:polygon detid="478773708" count="1" value="3" id="106002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  3 forward    Id 478773708 " fill="rgb(255,250,0)" points="254.376,2893.68 269.939,2892.67 268.446,2887.5 253.188,2889.57 " />
<svg:polygon detid="478740932" count="1" value="3" id="106003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  1 forward    Id 478740932 " fill="rgb(255,250,0)" points="252.643,2888.16 267.916,2886.14 265.448,2881.1 250.68,2884.16 " />
<svg:polygon detid="478740936" count="1" value="3" id="106004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  2 forward    Id 478740936 " fill="rgb(255,250,0)" points="249.87,2882.8 264.662,2879.77 261.249,2874.93 247.157,2878.94 " />
<svg:polygon detid="478740940" count="1" value="3" id="106005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  3 forward    Id 478740940 " fill="rgb(255,250,0)" points="246.093,2877.64 260.216,2873.67 255.903,2869.08 242.664,2873.99 " />
<svg:polygon detid="478773956" count="1" value="3" id="106006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  1 forward    Id 478773956 " fill="rgb(255,250,0)" points="241.36,2872.77 254.637,2867.89 249.477,2863.61 237.257,2869.37 " />
<svg:polygon detid="478773960" count="1" value="3" id="106007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  2 forward    Id 478773960 " fill="rgb(255,250,0)" points="235.729,2868.24 247.993,2862.52 242.051,2858.61 231.005,2865.13 " />
<svg:polygon detid="478773964" count="1" value="3" id="106008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  3 forward    Id 478773964 " fill="rgb(255,250,0)" points="229.271,2864.11 240.368,2857.62 233.72,2854.12 223.985,2861.34 " />
<svg:polygon detid="478773968" count="1" value="3" id="106009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  0 backward    Id 478773968 " fill="rgb(255,250,0)" points="222.068,2860.44 231.859,2853.25 224.587,2850.21 216.286,2858.02 " />
<svg:polygon detid="478741188" count="1" value="3" id="106010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  1 forward    Id 478741188 " fill="rgb(255,250,0)" points="214.21,2857.26 222.571,2849.47 214.767,2846.93 208.006,2855.24 " />
<svg:polygon detid="478741192" count="1" value="3" id="106011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  2 forward    Id 478741192 " fill="rgb(255,250,0)" points="205.796,2854.61 212.622,2846.32 204.385,2844.32 199.247,2853.02 " />
<svg:polygon detid="478741196" count="1" value="3" id="106012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  3 forward    Id 478741196 " fill="rgb(255,250,0)" points="196.932,2852.54 202.138,2843.85 193.57,2842.4 190.12,2851.39 " />
<svg:polygon detid="478774212" count="1" value="3" id="106013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  1 forward    Id 478774212 " fill="rgb(255,250,0)" points="187.73,2851.07 191.249,2842.09 182.458,2841.21 180.741,2850.37 " />
<svg:polygon detid="478774216" count="1" value="3" id="106014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  2 forward    Id 478774216 " fill="rgb(255,250,0)" points="178.304,2850.21 180.093,2841.06 171.19,2840.76 171.226,2849.97 " />
<svg:polygon detid="478774220" count="1" value="3" id="106015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  3 forward    Id 478774220 " fill="rgb(255,250,0)" points="168.774,2849.97 168.81,2840.76 159.907,2841.06 161.696,2850.21 " />
<svg:polygon detid="478774224" count="1" value="3" id="106016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  0 backward    Id 478774224 " fill="rgb(255,250,0)" points="159.259,2850.37 157.542,2841.21 148.751,2842.09 152.27,2851.07 " />
<svg:polygon detid="478741444" count="1" value="3" id="106017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  1 forward    Id 478741444 " fill="rgb(255,250,0)" points="149.88,2851.39 146.43,2842.4 137.862,2843.85 143.068,2852.54 " />
<svg:polygon detid="478741448" count="1" value="3" id="106018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  2 forward    Id 478741448 " fill="rgb(255,250,0)" points="140.753,2853.02 135.615,2844.32 127.378,2846.32 134.204,2854.61 " />
<svg:polygon detid="478741452" count="1" value="3" id="106019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  3 forward    Id 478741452 " fill="rgb(255,250,0)" points="131.994,2855.24 125.233,2846.93 117.429,2849.47 125.79,2857.26 " />
<svg:polygon detid="478774468" count="1" value="3" id="106020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  1 forward    Id 478774468 " fill="rgb(255,250,0)" points="123.714,2858.02 115.413,2850.21 108.141,2853.25 117.932,2860.44 " />
<svg:polygon detid="478774472" count="1" value="3" id="106021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  2 forward    Id 478774472 " fill="rgb(255,250,0)" points="116.015,2861.34 106.28,2854.12 99.6318,2857.62 110.729,2864.11 " />
<svg:polygon detid="478774476" count="1" value="3" id="106022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  3 forward    Id 478774476 " fill="rgb(255,250,0)" points="108.995,2865.13 97.9486,2858.61 92.0071,2862.52 104.271,2868.24 " />
<svg:polygon detid="478774480" count="1" value="3" id="106023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  0 backward    Id 478774480 " fill="rgb(255,250,0)" points="102.743,2869.37 90.5229,2863.61 85.3632,2867.89 98.6404,2872.77 " />
<svg:polygon detid="478741700" count="1" value="3" id="106024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  1 forward    Id 478741700 " fill="rgb(255,250,0)" points="97.3356,2873.99 84.0966,2869.08 79.7835,2873.67 93.9066,2877.64 " />
<svg:polygon detid="478741704" count="1" value="3" id="106025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  2 forward    Id 478741704 " fill="rgb(255,250,0)" points="92.8426,2878.94 78.7507,2874.93 75.3385,2879.77 90.1298,2882.8 " />
<svg:polygon detid="478741708" count="1" value="3" id="106026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  3 forward    Id 478741708 " fill="rgb(255,250,0)" points="89.3198,2884.16 74.5522,2881.1 72.0838,2886.14 87.3574,2888.16 " />
<svg:polygon detid="478774724" count="1" value="3" id="106027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  1 forward    Id 478774724 " fill="rgb(255,250,0)" points="86.8117,2889.57 71.5541,2887.5 70.0606,2892.67 85.6243,2893.68 " />
<svg:polygon detid="478774728" count="1" value="3" id="106028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  2 forward    Id 478774728 " fill="rgb(255,250,0)" points="85.3497,2895.12 69.794,2894.06 69.2941,2899.3 84.9522,2899.28 " />
<svg:polygon detid="478774732" count="1" value="3" id="106029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  3 forward    Id 478774732 " fill="rgb(255,250,0)" points="84.9522,2900.72 69.2941,2900.7 69.794,2905.94 85.3497,2904.88 " />
<svg:polygon detid="478774736" count="1" value="3" id="106030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  0 backward    Id 478774736 " fill="rgb(255,250,0)" points="85.6243,2906.32 70.0606,2907.33 71.5541,2912.5 86.8117,2910.43 " />
<svg:polygon detid="478741956" count="1" value="3" id="106031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  1 forward    Id 478741956 " fill="rgb(255,250,0)" points="87.3574,2911.84 72.0838,2913.86 74.5522,2918.9 89.3198,2915.84 " />
<svg:polygon detid="478741960" count="1" value="3" id="106032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  2 forward    Id 478741960 " fill="rgb(255,250,0)" points="90.1298,2917.2 75.3385,2920.23 78.7507,2925.07 92.8426,2921.06 " />
<svg:polygon detid="478741964" count="1" value="3" id="106033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  3 forward    Id 478741964 " fill="rgb(255,250,0)" points="93.9066,2922.36 79.7835,2926.33 84.0966,2930.92 97.3356,2926.01 " />
<svg:polygon detid="478774980" count="1" value="3" id="106034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  1 forward    Id 478774980 " fill="rgb(255,250,0)" points="98.6404,2927.23 85.3632,2932.11 90.5229,2936.39 102.743,2930.63 " />
<svg:polygon detid="478774984" count="1" value="3" id="106035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  2 forward    Id 478774984 " fill="rgb(255,250,0)" points="104.271,2931.76 92.0071,2937.48 97.9486,2941.39 108.995,2934.87 " />
<svg:polygon detid="478774988" count="1" value="3" id="106036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  3 forward    Id 478774988 " fill="rgb(255,250,0)" points="110.729,2935.89 99.6318,2942.38 106.28,2945.88 116.015,2938.66 " />
<svg:polygon detid="478774992" count="1" value="3" id="106037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  0 backward    Id 478774992 " fill="rgb(255,250,0)" points="117.932,2939.56 108.141,2946.75 115.413,2949.79 123.714,2941.98 " />
<svg:polygon detid="478742212" count="1" value="3" id="106038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  1 forward    Id 478742212 " fill="rgb(255,250,0)" points="125.79,2942.74 117.429,2950.53 125.233,2953.07 131.994,2944.76 " />
<svg:polygon detid="478742216" count="1" value="3" id="106039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  2 forward    Id 478742216 " fill="rgb(255,250,0)" points="134.204,2945.39 127.378,2953.68 135.615,2955.68 140.753,2946.98 " />
<svg:polygon detid="478742220" count="1" value="3" id="106040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  3 forward    Id 478742220 " fill="rgb(255,250,0)" points="143.068,2947.46 137.862,2956.15 146.43,2957.6 149.88,2948.61 " />
<svg:polygon detid="478775236" count="1" value="3" id="106041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  1 forward    Id 478775236 " fill="rgb(255,250,0)" points="152.27,2948.93 148.751,2957.91 157.542,2958.79 159.259,2949.63 " />
<svg:polygon detid="478775240" count="1" value="3" id="106042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  2 forward    Id 478775240 " fill="rgb(255,250,0)" points="161.696,2949.79 159.907,2958.94 168.81,2959.24 168.774,2950.03 " />
<svg:polygon detid="478775244" count="1" value="3" id="106043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  3 forward    Id 478775244 " fill="rgb(255,250,0)" points="171.226,2950.03 171.19,2959.24 180.093,2958.94 178.304,2949.79 " />
<svg:polygon detid="478775248" count="1" value="3" id="106044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  0 backward    Id 478775248 " fill="rgb(255,250,0)" points="180.741,2949.63 182.458,2958.79 191.249,2957.91 187.73,2948.93 " />
<svg:polygon detid="478742468" count="1" value="3" id="106045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  1 forward    Id 478742468 " fill="rgb(255,250,0)" points="190.12,2948.61 193.57,2957.6 202.138,2956.15 196.932,2947.46 " />
<svg:polygon detid="478742472" count="1" value="3" id="106046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  2 forward    Id 478742472 " fill="rgb(255,250,0)" points="199.247,2946.98 204.385,2955.68 212.622,2953.68 205.796,2945.39 " />
<svg:polygon detid="478742476" count="1" value="3" id="106047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  3 forward    Id 478742476 " fill="rgb(255,250,0)" points="208.006,2944.76 214.767,2953.07 222.571,2950.53 214.21,2942.74 " />
<svg:polygon detid="478775492" count="1" value="3" id="106048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  1 forward    Id 478775492 " fill="rgb(255,250,0)" points="216.286,2941.98 224.587,2949.79 231.859,2946.75 222.068,2939.56 " />
<svg:polygon detid="478775496" count="1" value="3" id="106049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  2 forward    Id 478775496 " fill="rgb(255,250,0)" points="223.985,2938.66 233.72,2945.88 240.368,2942.38 229.271,2935.89 " />
<svg:polygon detid="478775500" count="1" value="3" id="106050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  3 forward    Id 478775500 " fill="rgb(255,250,0)" points="231.005,2934.87 242.051,2941.39 247.993,2937.48 235.729,2931.76 " />
<svg:polygon detid="478775504" count="1" value="3" id="106051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  0 backward    Id 478775504 " fill="rgb(255,250,0)" points="237.257,2930.63 249.477,2936.39 254.637,2932.11 241.36,2927.23 " />
<svg:polygon detid="478742724" count="1" value="3" id="106052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  1 forward    Id 478742724 " fill="rgb(255,250,0)" points="242.664,2926.01 255.903,2930.92 260.216,2926.33 246.093,2922.36 " />
<svg:polygon detid="478742728" count="1" value="3" id="106053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  2 forward    Id 478742728 " fill="rgb(255,250,0)" points="247.157,2921.06 261.249,2925.07 264.662,2920.23 249.87,2917.2 " />
<svg:polygon detid="478742732" count="1" value="3" id="106054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  3 forward    Id 478742732 " fill="rgb(255,250,0)" points="250.68,2915.84 265.448,2918.9 267.916,2913.86 252.643,2911.84 " />
<svg:polygon detid="478773712" count="1" value="3" id="106055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  0 backward    Id 478773712 " fill="rgb(255,250,0)" points="253.188,2910.43 268.446,2912.5 269.939,2907.33 254.376,2906.32 " />
<svg:polygon detid="478773700" count="1" value="3" id="106056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  1 forward    Id 478773700 " fill="rgb(255,250,0)" points="254.65,2904.88 270.206,2905.94 270.706,2900.7 255.048,2900.72 " />
<svg:polygon detid="478773732" count="1" value="3" id="107001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  1 forward    Id 478773732 " fill="rgb(255,250,0)" points="273.723,2901.79 291.123,2902.21 291.123,2897.79 273.723,2898.21 " />
<svg:polygon detid="478773740" count="1" value="3" id="107002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  3 forward    Id 478773740 " fill="rgb(255,250,0)" points="273.642,2896.99 291.043,2896.61 290.455,2892.21 273.165,2893.43 " />
<svg:polygon detid="478773744" count="1" value="3" id="107003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  0 backward    Id 478773744 " fill="rgb(255,250,0)" points="272.921,2892.22 290.218,2891.03 289.045,2886.68 271.971,2888.69 " />
<svg:polygon detid="478740964" count="1" value="3" id="107004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  1 forward    Id 478740964 " fill="rgb(255,250,0)" points="271.567,2887.49 288.651,2885.51 286.901,2881.22 270.148,2884.02 " />
<svg:polygon detid="478740968" count="1" value="3" id="107005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  2 forward    Id 478740968 " fill="rgb(255,250,0)" points="269.586,2882.85 286.353,2880.08 284.036,2875.89 267.708,2879.45 " />
<svg:polygon detid="478740972" count="1" value="3" id="107006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  3 forward    Id 478740972 " fill="rgb(255,250,0)" points="266.99,2878.3 283.337,2874.77 280.468,2870.7 264.665,2875 " />
<svg:polygon detid="478740976" count="1" value="3" id="107007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  0 backward    Id 478740976 " fill="rgb(255,250,0)" points="263.797,2873.89 279.623,2869.62 276.219,2865.69 261.039,2870.71 " />
<svg:polygon detid="478740980" count="1" value="3" id="107008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 forward  module  1 backward    Id 478740980 " fill="rgb(255,250,0)" points="260.026,2869.64 275.233,2864.65 271.315,2860.89 256.851,2866.6 " />
<svg:polygon detid="478773988" count="1" value="3" id="107009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  1 forward    Id 478773988 " fill="rgb(255,250,0)" points="255.7,2865.58 270.194,2859.9 265.787,2856.34 252.128,2862.69 " />
<svg:polygon detid="478773992" count="1" value="3" id="107010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  2 forward    Id 478773992 " fill="rgb(255,250,0)" points="250.845,2861.73 264.537,2855.4 259.668,2852.05 246.899,2859.02 " />
<svg:polygon detid="478773996" count="1" value="3" id="107011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  3 forward    Id 478773996 " fill="rgb(255,250,0)" points="245.492,2858.12 258.297,2851.18 252.996,2848.06 241.195,2855.59 " />
<svg:polygon detid="478774000" count="1" value="3" id="107012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  0 backward    Id 478774000 " fill="rgb(255,250,0)" points="239.673,2854.77 251.513,2847.25 245.813,2844.39 235.052,2852.44 " />
<svg:polygon detid="478774004" count="1" value="3" id="107013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 backward  module  1 backward    Id 478774004 " fill="rgb(255,250,0)" points="233.425,2851.69 244.227,2843.65 238.162,2841.06 228.509,2849.59 " />
<svg:polygon detid="478741220" count="1" value="3" id="107014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  1 forward    Id 478741220 " fill="rgb(255,250,0)" points="226.786,2848.91 236.483,2840.4 230.09,2838.1 221.605,2847.04 " />
<svg:polygon detid="478741224" count="1" value="3" id="107015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  2 forward    Id 478741224 " fill="rgb(255,250,0)" points="219.797,2846.45 228.329,2837.52 221.649,2835.52 214.382,2844.83 " />
<svg:polygon detid="478741228" count="1" value="3" id="107016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  3 forward    Id 478741228 " fill="rgb(255,250,0)" points="212.5,2844.31 219.815,2835.02 212.888,2833.33 206.886,2842.95 " />
<svg:polygon detid="478741232" count="1" value="3" id="107017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  0 backward    Id 478741232 " fill="rgb(255,250,0)" points="204.942,2842.52 210.994,2832.92 203.864,2831.56 199.163,2841.42 " />
<svg:polygon detid="478741236" count="1" value="3" id="107018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 2 forward  module  1 backward    Id 478741236 " fill="rgb(255,250,0)" points="197.168,2841.09 201.92,2831.23 194.631,2830.21 191.259,2840.25 " />
<svg:polygon detid="478774244" count="1" value="3" id="107019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  1 forward    Id 478774244 " fill="rgb(255,250,0)" points="189.227,2840.02 192.65,2829.97 185.245,2829.28 183.225,2839.46 " />
<svg:polygon detid="478774248" count="1" value="3" id="107020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  2 forward    Id 478774248 " fill="rgb(255,250,0)" points="181.167,2839.31 183.24,2829.14 175.766,2828.8 175.109,2839.03 " />
<svg:polygon detid="478774252" count="1" value="3" id="107021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  3 forward    Id 478774252 " fill="rgb(255,250,0)" points="173.038,2838.99 173.749,2828.75 166.251,2828.75 166.962,2838.99 " />
<svg:polygon detid="478774256" count="1" value="3" id="107022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  0 backward    Id 478774256 " fill="rgb(255,250,0)" points="164.891,2839.03 164.234,2828.8 156.76,2829.14 158.833,2839.31 " />
<svg:polygon detid="478774260" count="1" value="3" id="107023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 backward  module  1 backward    Id 478774260 " fill="rgb(255,250,0)" points="156.775,2839.46 154.755,2829.28 147.35,2829.97 150.773,2840.02 " />
<svg:polygon detid="478741476" count="1" value="3" id="107024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  1 forward    Id 478741476 " fill="rgb(255,250,0)" points="148.741,2840.25 145.369,2830.21 138.08,2831.23 142.832,2841.09 " />
<svg:polygon detid="478741480" count="1" value="3" id="107025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  2 forward    Id 478741480 " fill="rgb(255,250,0)" points="140.837,2841.42 136.136,2831.56 129.006,2832.92 135.058,2842.52 " />
<svg:polygon detid="478741484" count="1" value="3" id="107026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  3 forward    Id 478741484 " fill="rgb(255,250,0)" points="133.114,2842.95 127.112,2833.33 120.185,2835.02 127.5,2844.31 " />
<svg:polygon detid="478741488" count="1" value="3" id="107027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  0 backward    Id 478741488 " fill="rgb(255,250,0)" points="125.618,2844.83 118.351,2835.52 111.671,2837.52 120.203,2846.45 " />
<svg:polygon detid="478741492" count="1" value="3" id="107028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 3 forward  module  1 backward    Id 478741492 " fill="rgb(255,250,0)" points="118.395,2847.04 109.91,2838.1 103.517,2840.4 113.214,2848.91 " />
<svg:polygon detid="478774500" count="1" value="3" id="107029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  1 forward    Id 478774500 " fill="rgb(255,250,0)" points="111.491,2849.59 101.838,2841.06 95.7732,2843.65 106.575,2851.69 " />
<svg:polygon detid="478774504" count="1" value="3" id="107030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  2 forward    Id 478774504 " fill="rgb(255,250,0)" points="104.948,2852.44 94.1875,2844.39 88.4867,2847.25 100.327,2854.77 " />
<svg:polygon detid="478774508" count="1" value="3" id="107031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  3 forward    Id 478774508 " fill="rgb(255,250,0)" points="98.805,2855.59 87.0039,2848.06 81.7027,2851.18 94.5082,2858.12 " />
<svg:polygon detid="478774512" count="1" value="3" id="107032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  0 backward    Id 478774512 " fill="rgb(255,250,0)" points="93.1015,2859.02 80.332,2852.05 75.4631,2855.4 89.155,2861.73 " />
<svg:polygon detid="478774516" count="1" value="3" id="107033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 backward  module  1 backward    Id 478774516 " fill="rgb(255,250,0)" points="87.8721,2862.69 74.213,2856.34 69.8064,2859.9 84.3003,2865.58 " />
<svg:polygon detid="478741732" count="1" value="3" id="107034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  1 forward    Id 478741732 " fill="rgb(255,250,0)" points="83.149,2866.6 68.6845,2860.89 64.7673,2864.65 79.9739,2869.64 " />
<svg:polygon detid="478741736" count="1" value="3" id="107035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  2 forward    Id 478741736 " fill="rgb(255,250,0)" points="78.9613,2870.71 63.7807,2865.69 60.3771,2869.62 76.2026,2873.89 " />
<svg:polygon detid="478741740" count="1" value="3" id="107036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  3 forward    Id 478741740 " fill="rgb(255,250,0)" points="75.335,2875 59.5317,2870.7 56.6627,2874.77 73.0096,2878.3 " />
<svg:polygon detid="478741744" count="1" value="3" id="107037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  0 backward    Id 478741744 " fill="rgb(255,250,0)" points="72.2923,2879.45 55.9638,2875.89 53.6471,2880.08 70.4145,2882.85 " />
<svg:polygon detid="478741748" count="1" value="3" id="107038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 4 forward  module  1 backward    Id 478741748 " fill="rgb(255,250,0)" points="69.852,2884.02 53.099,2881.22 51.3489,2885.51 68.4334,2887.49 " />
<svg:polygon detid="478774756" count="1" value="3" id="107039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  1 forward    Id 478774756 " fill="rgb(255,250,0)" points="68.0292,2888.69 50.955,2886.68 49.7822,2891.03 67.0786,2892.22 " />
<svg:polygon detid="478774760" count="1" value="3" id="107040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  2 forward    Id 478774760 " fill="rgb(255,250,0)" points="66.835,2893.43 49.5448,2892.21 48.9566,2896.61 66.3582,2896.99 " />
<svg:polygon detid="478774764" count="1" value="3" id="107041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  3 forward    Id 478774764 " fill="rgb(255,250,0)" points="66.2768,2898.21 48.8773,2897.79 48.8773,2902.21 66.2768,2901.79 " />
<svg:polygon detid="478774768" count="1" value="3" id="107042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  0 backward    Id 478774768 " fill="rgb(255,250,0)" points="66.3582,2903.01 48.9566,2903.39 49.5448,2907.79 66.835,2906.57 " />
<svg:polygon detid="478774772" count="1" value="3" id="107043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 backward  module  1 backward    Id 478774772 " fill="rgb(255,250,0)" points="67.0786,2907.78 49.7822,2908.97 50.955,2913.32 68.0292,2911.31 " />
<svg:polygon detid="478741988" count="1" value="3" id="107044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  1 forward    Id 478741988 " fill="rgb(255,250,0)" points="68.4334,2912.51 51.3489,2914.49 53.099,2918.78 69.852,2915.98 " />
<svg:polygon detid="478741992" count="1" value="3" id="107045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  2 forward    Id 478741992 " fill="rgb(255,250,0)" points="70.4145,2917.15 53.6471,2919.92 55.9638,2924.11 72.2923,2920.55 " />
<svg:polygon detid="478741996" count="1" value="3" id="107046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  3 forward    Id 478741996 " fill="rgb(255,250,0)" points="73.0096,2921.7 56.6627,2925.23 59.5317,2929.3 75.335,2925 " />
<svg:polygon detid="478742000" count="1" value="3" id="107047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  0 backward    Id 478742000 " fill="rgb(255,250,0)" points="76.2026,2926.11 60.3771,2930.38 63.7807,2934.31 78.9613,2929.29 " />
<svg:polygon detid="478742004" count="1" value="3" id="107048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 5 forward  module  1 backward    Id 478742004 " fill="rgb(255,250,0)" points="79.9739,2930.36 64.7673,2935.35 68.6845,2939.11 83.149,2933.4 " />
<svg:polygon detid="478775012" count="1" value="3" id="107049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  1 forward    Id 478775012 " fill="rgb(255,250,0)" points="84.3003,2934.42 69.8064,2940.1 74.213,2943.66 87.8721,2937.31 " />
<svg:polygon detid="478775016" count="1" value="3" id="107050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  2 forward    Id 478775016 " fill="rgb(255,250,0)" points="89.155,2938.27 75.4631,2944.6 80.332,2947.95 93.1015,2940.98 " />
<svg:polygon detid="478775020" count="1" value="3" id="107051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  3 forward    Id 478775020 " fill="rgb(255,250,0)" points="94.5082,2941.88 81.7027,2948.82 87.0039,2951.94 98.805,2944.41 " />
<svg:polygon detid="478775024" count="1" value="3" id="107052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  0 backward    Id 478775024 " fill="rgb(255,250,0)" points="100.327,2945.23 88.4867,2952.75 94.1875,2955.61 104.948,2947.56 " />
<svg:polygon detid="478775028" count="1" value="3" id="107053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 backward  module  1 backward    Id 478775028 " fill="rgb(255,250,0)" points="106.575,2948.31 95.7732,2956.35 101.838,2958.94 111.491,2950.41 " />
<svg:polygon detid="478742244" count="1" value="3" id="107054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  1 forward    Id 478742244 " fill="rgb(255,250,0)" points="113.214,2951.09 103.517,2959.6 109.91,2961.9 118.395,2952.96 " />
<svg:polygon detid="478742248" count="1" value="3" id="107055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  2 forward    Id 478742248 " fill="rgb(255,250,0)" points="120.203,2953.55 111.671,2962.48 118.351,2964.48 125.618,2955.17 " />
<svg:polygon detid="478742252" count="1" value="3" id="107056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  3 forward    Id 478742252 " fill="rgb(255,250,0)" points="127.5,2955.69 120.185,2964.98 127.112,2966.67 133.114,2957.05 " />
<svg:polygon detid="478742256" count="1" value="3" id="107057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  0 backward    Id 478742256 " fill="rgb(255,250,0)" points="135.058,2957.48 129.006,2967.08 136.136,2968.44 140.837,2958.58 " />
<svg:polygon detid="478742260" count="1" value="3" id="107058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 6 forward  module  1 backward    Id 478742260 " fill="rgb(255,250,0)" points="142.832,2958.91 138.08,2968.77 145.369,2969.79 148.741,2959.75 " />
<svg:polygon detid="478775268" count="1" value="3" id="107059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  1 forward    Id 478775268 " fill="rgb(255,250,0)" points="150.773,2959.98 147.35,2970.03 154.755,2970.72 156.775,2960.54 " />
<svg:polygon detid="478775272" count="1" value="3" id="107060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  2 forward    Id 478775272 " fill="rgb(255,250,0)" points="158.833,2960.69 156.76,2970.86 164.234,2971.2 164.891,2960.97 " />
<svg:polygon detid="478775276" count="1" value="3" id="107061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  3 forward    Id 478775276 " fill="rgb(255,250,0)" points="166.962,2961.01 166.251,2971.25 173.749,2971.25 173.038,2961.01 " />
<svg:polygon detid="478775280" count="1" value="3" id="107062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  0 backward    Id 478775280 " fill="rgb(255,250,0)" points="175.109,2960.97 175.766,2971.2 183.24,2970.86 181.167,2960.69 " />
<svg:polygon detid="478775284" count="1" value="3" id="107063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 backward  module  1 backward    Id 478775284 " fill="rgb(255,250,0)" points="183.225,2960.54 185.245,2970.72 192.65,2970.03 189.227,2959.98 " />
<svg:polygon detid="478742500" count="1" value="3" id="107064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  1 forward    Id 478742500 " fill="rgb(255,250,0)" points="191.259,2959.75 194.631,2969.79 201.92,2968.77 197.168,2958.91 " />
<svg:polygon detid="478742504" count="1" value="3" id="107065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  2 forward    Id 478742504 " fill="rgb(255,250,0)" points="199.163,2958.58 203.864,2968.44 210.994,2967.08 204.942,2957.48 " />
<svg:polygon detid="478742508" count="1" value="3" id="107066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  3 forward    Id 478742508 " fill="rgb(255,250,0)" points="206.886,2957.05 212.888,2966.67 219.815,2964.98 212.5,2955.69 " />
<svg:polygon detid="478742512" count="1" value="3" id="107067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  0 backward    Id 478742512 " fill="rgb(255,250,0)" points="214.382,2955.17 221.649,2964.48 228.329,2962.48 219.797,2953.55 " />
<svg:polygon detid="478742516" count="1" value="3" id="107068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 7 forward  module  1 backward    Id 478742516 " fill="rgb(255,250,0)" points="221.605,2952.96 230.09,2961.9 236.483,2959.6 226.786,2951.09 " />
<svg:polygon detid="478775524" count="1" value="3" id="107069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  1 forward    Id 478775524 " fill="rgb(255,250,0)" points="228.509,2950.41 238.162,2958.94 244.227,2956.35 233.425,2948.31 " />
<svg:polygon detid="478775528" count="1" value="3" id="107070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  2 forward    Id 478775528 " fill="rgb(255,250,0)" points="235.052,2947.56 245.813,2955.61 251.513,2952.75 239.673,2945.23 " />
<svg:polygon detid="478775532" count="1" value="3" id="107071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  3 forward    Id 478775532 " fill="rgb(255,250,0)" points="241.195,2944.41 252.996,2951.94 258.297,2948.82 245.492,2941.88 " />
<svg:polygon detid="478775536" count="1" value="3" id="107072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  0 backward    Id 478775536 " fill="rgb(255,250,0)" points="246.899,2940.98 259.668,2947.95 264.537,2944.6 250.845,2938.27 " />
<svg:polygon detid="478775540" count="1" value="3" id="107073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 backward  module  1 backward    Id 478775540 " fill="rgb(255,250,0)" points="252.128,2937.31 265.787,2943.66 270.194,2940.1 255.7,2934.42 " />
<svg:polygon detid="478742756" count="1" value="3" id="107074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  1 forward    Id 478742756 " fill="rgb(255,250,0)" points="256.851,2933.4 271.315,2939.11 275.233,2935.35 260.026,2930.36 " />
<svg:polygon detid="478742760" count="1" value="3" id="107075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  2 forward    Id 478742760 " fill="rgb(255,250,0)" points="261.039,2929.29 276.219,2934.31 279.623,2930.38 263.797,2926.11 " />
<svg:polygon detid="478742764" count="1" value="3" id="107076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  3 forward    Id 478742764 " fill="rgb(255,250,0)" points="264.665,2925 280.468,2929.3 283.337,2925.23 266.99,2921.7 " />
<svg:polygon detid="478742768" count="1" value="3" id="107077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  0 backward    Id 478742768 " fill="rgb(255,250,0)" points="267.708,2920.55 284.036,2924.11 286.353,2919.92 269.586,2917.15 " />
<svg:polygon detid="478742772" count="1" value="3" id="107078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 8 forward  module  1 backward    Id 478742772 " fill="rgb(255,250,0)" points="270.148,2915.98 286.901,2918.78 288.651,2914.49 271.567,2912.51 " />
<svg:polygon detid="478773748" count="1" value="3" id="107079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  1 backward    Id 478773748 " fill="rgb(255,250,0)" points="271.971,2911.31 289.045,2913.32 290.218,2908.97 272.921,2907.78 " />
<svg:polygon detid="478773736" count="1" value="3" id="107080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 9 ring 0 petal 1 backward  module  2 forward    Id 478773736 " fill="rgb(255,250,0)" points="273.165,2906.57 290.455,2907.79 291.043,2903.39 273.642,2903.01 " />
<svg:polygon detid="478708068" count="1" value="6" id="203001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 forward    Id 478708068 " fill="rgb(255,244,0)" points="216.008,2701.57 225.409,2702.03 225.409,2697.97 216.008,2698.43 " />
<svg:polygon detid="478708072" count="1" value="6" id="203002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  2 forward    Id 478708072 " fill="rgb(255,244,0)" points="215.861,2697.32 225.267,2696.91 224.187,2692.9 215.023,2694.21 " />
<svg:polygon detid="478675300" count="1" value="6" id="203003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 forward    Id 478675300 " fill="rgb(255,244,0)" points="214.584,2693.13 223.764,2691.86 221.631,2688 212.929,2690.14 " />
<svg:polygon detid="478675304" count="1" value="6" id="203004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  2 forward    Id 478675304 " fill="rgb(255,244,0)" points="212.209,2689.12 220.937,2687.01 217.803,2683.39 209.778,2686.31 " />
<svg:polygon detid="478708324" count="1" value="6" id="203005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 forward    Id 478708324 " fill="rgb(255,244,0)" points="208.795,2685.37 216.856,2682.48 212.799,2679.2 205.648,2682.82 " />
<svg:polygon detid="478708328" count="1" value="6" id="203006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  2 forward    Id 478708328 " fill="rgb(255,244,0)" points="204.426,2681.98 211.621,2678.39 206.74,2675.52 200.64,2679.75 " />
<svg:polygon detid="478708332" count="1" value="6" id="203007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  3 forward    Id 478708332 " fill="rgb(255,244,0)" points="199.209,2679.03 205.361,2674.82 199.777,2672.44 194.877,2677.18 " />
<svg:polygon detid="478675556" count="1" value="6" id="203008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 forward    Id 478675556 " fill="rgb(255,244,0)" points="193.273,2676.6 198.23,2671.88 192.081,2670.04 188.502,2675.17 " />
<svg:polygon detid="478675560" count="1" value="6" id="203009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  2 forward    Id 478675560 " fill="rgb(255,244,0)" points="186.764,2674.75 190.405,2669.63 183.84,2668.37 181.671,2673.77 " />
<svg:polygon detid="478708580" count="1" value="6" id="203010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 forward    Id 478708580 " fill="rgb(255,244,0)" points="179.842,2673.52 182.076,2668.13 175.259,2667.49 174.553,2673.02 " />
<svg:polygon detid="478708584" count="1" value="6" id="203011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  2 forward    Id 478708584 " fill="rgb(255,244,0)" points="172.677,2672.94 173.451,2667.41 166.549,2667.41 167.323,2672.94 " />
<svg:polygon detid="478708588" count="1" value="6" id="203012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  3 forward    Id 478708588 " fill="rgb(255,244,0)" points="165.447,2673.02 164.741,2667.49 157.924,2668.13 160.158,2673.52 " />
<svg:polygon detid="478675812" count="1" value="6" id="203013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 forward    Id 478675812 " fill="rgb(255,244,0)" points="158.329,2673.77 156.16,2668.37 149.595,2669.63 153.236,2674.75 " />
<svg:polygon detid="478675816" count="1" value="6" id="203014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  2 forward    Id 478675816 " fill="rgb(255,244,0)" points="151.498,2675.17 147.919,2670.04 141.77,2671.88 146.727,2676.6 " />
<svg:polygon detid="478708836" count="1" value="6" id="203015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 forward    Id 478708836 " fill="rgb(255,244,0)" points="145.123,2677.18 140.223,2672.44 134.639,2674.82 140.791,2679.03 " />
<svg:polygon detid="478708840" count="1" value="6" id="203016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  2 forward    Id 478708840 " fill="rgb(255,244,0)" points="139.36,2679.75 133.26,2675.52 128.379,2678.39 135.574,2681.98 " />
<svg:polygon detid="478708844" count="1" value="6" id="203017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  3 forward    Id 478708844 " fill="rgb(255,244,0)" points="134.352,2682.82 127.201,2679.2 123.144,2682.48 131.205,2685.37 " />
<svg:polygon detid="478676068" count="1" value="6" id="203018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 forward    Id 478676068 " fill="rgb(255,244,0)" points="130.222,2686.31 122.197,2683.39 119.063,2687.01 127.791,2689.12 " />
<svg:polygon detid="478676072" count="1" value="6" id="203019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  2 forward    Id 478676072 " fill="rgb(255,244,0)" points="127.071,2690.14 118.369,2688 116.236,2691.86 125.416,2693.13 " />
<svg:polygon detid="478709092" count="1" value="6" id="203020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 forward    Id 478709092 " fill="rgb(255,244,0)" points="124.977,2694.21 115.813,2692.9 114.733,2696.91 124.139,2697.32 " />
<svg:polygon detid="478709096" count="1" value="6" id="203021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  2 forward    Id 478709096 " fill="rgb(255,244,0)" points="123.992,2698.43 114.591,2697.97 114.591,2702.03 123.992,2701.57 " />
<svg:polygon detid="478709100" count="1" value="6" id="203022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  3 forward    Id 478709100 " fill="rgb(255,244,0)" points="124.139,2702.68 114.733,2703.09 115.813,2707.1 124.977,2705.79 " />
<svg:polygon detid="478676324" count="1" value="6" id="203023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 forward    Id 478676324 " fill="rgb(255,244,0)" points="125.416,2706.87 116.236,2708.14 118.369,2712 127.071,2709.86 " />
<svg:polygon detid="478676328" count="1" value="6" id="203024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  2 forward    Id 478676328 " fill="rgb(255,244,0)" points="127.791,2710.88 119.063,2712.99 122.197,2716.61 130.222,2713.69 " />
<svg:polygon detid="478709348" count="1" value="6" id="203025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 forward    Id 478709348 " fill="rgb(255,244,0)" points="131.205,2714.63 123.144,2717.52 127.201,2720.8 134.352,2717.18 " />
<svg:polygon detid="478709352" count="1" value="6" id="203026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  2 forward    Id 478709352 " fill="rgb(255,244,0)" points="135.574,2718.02 128.379,2721.61 133.26,2724.48 139.36,2720.25 " />
<svg:polygon detid="478709356" count="1" value="6" id="203027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  3 forward    Id 478709356 " fill="rgb(255,244,0)" points="140.791,2720.97 134.639,2725.18 140.223,2727.56 145.123,2722.82 " />
<svg:polygon detid="478676580" count="1" value="6" id="203028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 forward    Id 478676580 " fill="rgb(255,244,0)" points="146.727,2723.4 141.77,2728.12 147.919,2729.96 151.498,2724.83 " />
<svg:polygon detid="478676584" count="1" value="6" id="203029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  2 forward    Id 478676584 " fill="rgb(255,244,0)" points="153.236,2725.25 149.595,2730.37 156.16,2731.63 158.329,2726.23 " />
<svg:polygon detid="478709604" count="1" value="6" id="203030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 forward    Id 478709604 " fill="rgb(255,244,0)" points="160.158,2726.48 157.924,2731.87 164.741,2732.51 165.447,2726.98 " />
<svg:polygon detid="478709608" count="1" value="6" id="203031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  2 forward    Id 478709608 " fill="rgb(255,244,0)" points="167.323,2727.06 166.549,2732.59 173.451,2732.59 172.677,2727.06 " />
<svg:polygon detid="478709612" count="1" value="6" id="203032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  3 forward    Id 478709612 " fill="rgb(255,244,0)" points="174.553,2726.98 175.259,2732.51 182.076,2731.87 179.842,2726.48 " />
<svg:polygon detid="478676836" count="1" value="6" id="203033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 forward    Id 478676836 " fill="rgb(255,244,0)" points="181.671,2726.23 183.84,2731.63 190.405,2730.37 186.764,2725.25 " />
<svg:polygon detid="478676840" count="1" value="6" id="203034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  2 forward    Id 478676840 " fill="rgb(255,244,0)" points="188.502,2724.83 192.081,2729.96 198.23,2728.12 193.273,2723.4 " />
<svg:polygon detid="478709860" count="1" value="6" id="203035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 forward    Id 478709860 " fill="rgb(255,244,0)" points="194.877,2722.82 199.777,2727.56 205.361,2725.18 199.209,2720.97 " />
<svg:polygon detid="478709864" count="1" value="6" id="203036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  2 forward    Id 478709864 " fill="rgb(255,244,0)" points="200.64,2720.25 206.74,2724.48 211.621,2721.61 204.426,2718.02 " />
<svg:polygon detid="478709868" count="1" value="6" id="203037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  3 forward    Id 478709868 " fill="rgb(255,244,0)" points="205.648,2717.18 212.799,2720.8 216.856,2717.52 208.795,2714.63 " />
<svg:polygon detid="478677092" count="1" value="6" id="203038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 forward    Id 478677092 " fill="rgb(255,244,0)" points="209.778,2713.69 217.803,2716.61 220.937,2712.99 212.209,2710.88 " />
<svg:polygon detid="478677096" count="1" value="6" id="203039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  2 forward    Id 478677096 " fill="rgb(255,244,0)" points="212.929,2709.86 221.631,2712 223.764,2708.14 214.584,2706.87 " />
<svg:polygon detid="478708076" count="1" value="6" id="203040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  3 forward    Id 478708076 " fill="rgb(255,244,0)" points="215.023,2705.79 224.187,2707.1 225.267,2703.09 215.861,2702.68 " />
<svg:polygon detid="478708104" count="1" value="6" id="204001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  2 forward    Id 478708104 " fill="rgb(255,244,0)" points="228.822,2699.51 238.623,2699.52 238.282,2695.96 228.546,2696.62 " />
<svg:polygon detid="478708108" count="1" value="6" id="204002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  3 forward    Id 478708108 " fill="rgb(255,244,0)" points="228.359,2695.64 238.1,2695 237.083,2691.48 227.534,2692.78 " />
<svg:polygon detid="478675332" count="1" value="6" id="204003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 forward    Id 478675332 " fill="rgb(255,244,0)" points="227.161,2691.82 236.721,2690.55 235.041,2687.12 225.798,2689.04 " />
<svg:polygon detid="478675336" count="1" value="6" id="204004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  2 forward    Id 478675336 " fill="rgb(255,244,0)" points="225.244,2688.11 234.503,2686.22 232.18,2682.92 223.361,2685.43 " />
<svg:polygon detid="478675340" count="1" value="6" id="204005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  3 forward    Id 478675340 " fill="rgb(255,244,0)" points="222.633,2684.54 231.473,2682.05 228.538,2678.93 220.253,2682.01 " />
<svg:polygon detid="478708356" count="1" value="6" id="204006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 forward    Id 478708356 " fill="rgb(255,244,0)" points="219.36,2681.17 227.671,2678.12 224.159,2675.21 216.512,2678.81 " />
<svg:polygon detid="478708360" count="1" value="6" id="204007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  2 forward    Id 478708360 " fill="rgb(255,244,0)" points="215.466,2678.04 223.143,2674.46 219.099,2671.8 212.187,2675.88 " />
<svg:polygon detid="478708364" count="1" value="6" id="204008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  3 forward    Id 478708364 " fill="rgb(255,244,0)" points="211.001,2675.18 217.948,2671.12 213.422,2668.74 207.331,2673.26 " />
<svg:polygon detid="478708368" count="1" value="6" id="204009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  0 backward    Id 478708368 " fill="rgb(255,244,0)" points="206.019,2672.64 212.149,2668.14 207.199,2666.08 202.006,2670.96 " />
<svg:polygon detid="478675588" count="1" value="6" id="204010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 forward    Id 478675588 " fill="rgb(255,244,0)" points="200.585,2670.44 205.82,2665.57 200.508,2663.84 196.278,2669.04 " />
<svg:polygon detid="478675592" count="1" value="6" id="204011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  2 forward    Id 478675592 " fill="rgb(255,244,0)" points="194.766,2668.61 199.04,2663.42 193.433,2662.06 190.219,2667.5 " />
<svg:polygon detid="478675596" count="1" value="6" id="204012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  3 forward    Id 478675596 " fill="rgb(255,244,0)" points="188.636,2667.18 191.896,2661.74 186.064,2660.75 183.907,2666.38 " />
<svg:polygon detid="478708612" count="1" value="6" id="204013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 forward    Id 478708612 " fill="rgb(255,244,0)" points="182.271,2666.16 184.476,2660.54 178.493,2659.94 177.419,2665.67 " />
<svg:polygon detid="478708616" count="1" value="6" id="204014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  2 forward    Id 478708616 " fill="rgb(255,244,0)" points="175.753,2665.56 176.874,2659.83 170.814,2659.63 170.839,2665.4 " />
<svg:polygon detid="478708620" count="1" value="6" id="204015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  3 forward    Id 478708620 " fill="rgb(255,244,0)" points="169.161,2665.4 169.186,2659.63 163.126,2659.83 164.247,2665.56 " />
<svg:polygon detid="478708624" count="1" value="6" id="204016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  0 backward    Id 478708624 " fill="rgb(255,244,0)" points="162.581,2665.67 161.507,2659.94 155.524,2660.54 157.729,2666.16 " />
<svg:polygon detid="478675844" count="1" value="6" id="204017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 forward    Id 478675844 " fill="rgb(255,244,0)" points="156.093,2666.38 153.936,2660.75 148.104,2661.74 151.364,2667.18 " />
<svg:polygon detid="478675848" count="1" value="6" id="204018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  2 forward    Id 478675848 " fill="rgb(255,244,0)" points="149.781,2667.5 146.567,2662.06 140.96,2663.42 145.234,2668.61 " />
<svg:polygon detid="478675852" count="1" value="6" id="204019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  3 forward    Id 478675852 " fill="rgb(255,244,0)" points="143.722,2669.04 139.492,2663.84 134.18,2665.57 139.415,2670.44 " />
<svg:polygon detid="478708868" count="1" value="6" id="204020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 forward    Id 478708868 " fill="rgb(255,244,0)" points="137.994,2670.96 132.801,2666.08 127.851,2668.14 133.981,2672.64 " />
<svg:polygon detid="478708872" count="1" value="6" id="204021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  2 forward    Id 478708872 " fill="rgb(255,244,0)" points="132.669,2673.26 126.578,2668.74 122.052,2671.12 128.999,2675.18 " />
<svg:polygon detid="478708876" count="1" value="6" id="204022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  3 forward    Id 478708876 " fill="rgb(255,244,0)" points="127.813,2675.88 120.901,2671.8 116.857,2674.46 124.534,2678.04 " />
<svg:polygon detid="478708880" count="1" value="6" id="204023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  0 backward    Id 478708880 " fill="rgb(255,244,0)" points="123.488,2678.81 115.841,2675.21 112.329,2678.12 120.64,2681.17 " />
<svg:polygon detid="478676100" count="1" value="6" id="204024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 forward    Id 478676100 " fill="rgb(255,244,0)" points="119.747,2682.01 111.462,2678.93 108.527,2682.05 117.367,2684.54 " />
<svg:polygon detid="478676104" count="1" value="6" id="204025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  2 forward    Id 478676104 " fill="rgb(255,244,0)" points="116.639,2685.43 107.82,2682.92 105.497,2686.22 114.756,2688.11 " />
<svg:polygon detid="478676108" count="1" value="6" id="204026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  3 forward    Id 478676108 " fill="rgb(255,244,0)" points="114.202,2689.04 104.959,2687.12 103.279,2690.55 112.839,2691.82 " />
<svg:polygon detid="478709124" count="1" value="6" id="204027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 forward    Id 478709124 " fill="rgb(255,244,0)" points="112.466,2692.78 102.917,2691.48 101.9,2695 111.641,2695.64 " />
<svg:polygon detid="478709128" count="1" value="6" id="204028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  2 forward    Id 478709128 " fill="rgb(255,244,0)" points="111.454,2696.62 101.718,2695.96 101.377,2699.52 111.178,2699.51 " />
<svg:polygon detid="478709132" count="1" value="6" id="204029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  3 forward    Id 478709132 " fill="rgb(255,244,0)" points="111.178,2700.49 101.377,2700.48 101.718,2704.04 111.454,2703.38 " />
<svg:polygon detid="478709136" count="1" value="6" id="204030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  0 backward    Id 478709136 " fill="rgb(255,244,0)" points="111.641,2704.36 101.9,2705 102.917,2708.52 112.466,2707.22 " />
<svg:polygon detid="478676356" count="1" value="6" id="204031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 forward    Id 478676356 " fill="rgb(255,244,0)" points="112.839,2708.18 103.279,2709.45 104.959,2712.88 114.202,2710.96 " />
<svg:polygon detid="478676360" count="1" value="6" id="204032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  2 forward    Id 478676360 " fill="rgb(255,244,0)" points="114.756,2711.89 105.497,2713.78 107.82,2717.08 116.639,2714.57 " />
<svg:polygon detid="478676364" count="1" value="6" id="204033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  3 forward    Id 478676364 " fill="rgb(255,244,0)" points="117.367,2715.46 108.527,2717.95 111.462,2721.07 119.747,2717.99 " />
<svg:polygon detid="478709380" count="1" value="6" id="204034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 forward    Id 478709380 " fill="rgb(255,244,0)" points="120.64,2718.83 112.329,2721.88 115.841,2724.79 123.488,2721.19 " />
<svg:polygon detid="478709384" count="1" value="6" id="204035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  2 forward    Id 478709384 " fill="rgb(255,244,0)" points="124.534,2721.96 116.857,2725.54 120.901,2728.2 127.813,2724.12 " />
<svg:polygon detid="478709388" count="1" value="6" id="204036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  3 forward    Id 478709388 " fill="rgb(255,244,0)" points="128.999,2724.82 122.052,2728.88 126.578,2731.26 132.669,2726.74 " />
<svg:polygon detid="478709392" count="1" value="6" id="204037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  0 backward    Id 478709392 " fill="rgb(255,244,0)" points="133.981,2727.36 127.851,2731.86 132.801,2733.92 137.994,2729.04 " />
<svg:polygon detid="478676612" count="1" value="6" id="204038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 forward    Id 478676612 " fill="rgb(255,244,0)" points="139.415,2729.56 134.18,2734.43 139.492,2736.16 143.722,2730.96 " />
<svg:polygon detid="478676616" count="1" value="6" id="204039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  2 forward    Id 478676616 " fill="rgb(255,244,0)" points="145.234,2731.39 140.96,2736.58 146.567,2737.94 149.781,2732.5 " />
<svg:polygon detid="478676620" count="1" value="6" id="204040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  3 forward    Id 478676620 " fill="rgb(255,244,0)" points="151.364,2732.82 148.104,2738.26 153.936,2739.25 156.093,2733.62 " />
<svg:polygon detid="478709636" count="1" value="6" id="204041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 forward    Id 478709636 " fill="rgb(255,244,0)" points="157.729,2733.84 155.524,2739.46 161.507,2740.06 162.581,2734.33 " />
<svg:polygon detid="478709640" count="1" value="6" id="204042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  2 forward    Id 478709640 " fill="rgb(255,244,0)" points="164.247,2734.44 163.126,2740.17 169.186,2740.37 169.161,2734.6 " />
<svg:polygon detid="478709644" count="1" value="6" id="204043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  3 forward    Id 478709644 " fill="rgb(255,244,0)" points="170.839,2734.6 170.814,2740.37 176.874,2740.17 175.753,2734.44 " />
<svg:polygon detid="478709648" count="1" value="6" id="204044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  0 backward    Id 478709648 " fill="rgb(255,244,0)" points="177.419,2734.33 178.493,2740.06 184.476,2739.46 182.271,2733.84 " />
<svg:polygon detid="478676868" count="1" value="6" id="204045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 forward    Id 478676868 " fill="rgb(255,244,0)" points="183.907,2733.62 186.064,2739.25 191.896,2738.26 188.636,2732.82 " />
<svg:polygon detid="478676872" count="1" value="6" id="204046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  2 forward    Id 478676872 " fill="rgb(255,244,0)" points="190.219,2732.5 193.433,2737.94 199.04,2736.58 194.766,2731.39 " />
<svg:polygon detid="478676876" count="1" value="6" id="204047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  3 forward    Id 478676876 " fill="rgb(255,244,0)" points="196.278,2730.96 200.508,2736.16 205.82,2734.43 200.585,2729.56 " />
<svg:polygon detid="478709892" count="1" value="6" id="204048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 forward    Id 478709892 " fill="rgb(255,244,0)" points="202.006,2729.04 207.199,2733.92 212.149,2731.86 206.019,2727.36 " />
<svg:polygon detid="478709896" count="1" value="6" id="204049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  2 forward    Id 478709896 " fill="rgb(255,244,0)" points="207.331,2726.74 213.422,2731.26 217.948,2728.88 211.001,2724.82 " />
<svg:polygon detid="478709900" count="1" value="6" id="204050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  3 forward    Id 478709900 " fill="rgb(255,244,0)" points="212.187,2724.12 219.099,2728.2 223.143,2725.54 215.466,2721.96 " />
<svg:polygon detid="478709904" count="1" value="6" id="204051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  0 backward    Id 478709904 " fill="rgb(255,244,0)" points="216.512,2721.19 224.159,2724.79 227.671,2721.88 219.36,2718.83 " />
<svg:polygon detid="478677124" count="1" value="6" id="204052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 forward    Id 478677124 " fill="rgb(255,244,0)" points="220.253,2717.99 228.538,2721.07 231.473,2717.95 222.633,2715.46 " />
<svg:polygon detid="478677128" count="1" value="6" id="204053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  2 forward    Id 478677128 " fill="rgb(255,244,0)" points="223.361,2714.57 232.18,2717.08 234.503,2713.78 225.244,2711.89 " />
<svg:polygon detid="478677132" count="1" value="6" id="204054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  3 forward    Id 478677132 " fill="rgb(255,244,0)" points="225.798,2710.96 235.041,2712.88 236.721,2709.45 227.161,2708.18 " />
<svg:polygon detid="478708112" count="1" value="6" id="204055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  0 backward    Id 478708112 " fill="rgb(255,244,0)" points="227.534,2707.22 237.083,2708.52 238.1,2705 228.359,2704.36 " />
<svg:polygon detid="478708100" count="1" value="6" id="204056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 forward    Id 478708100 " fill="rgb(255,244,0)" points="228.546,2703.38 238.282,2704.04 238.623,2700.48 228.822,2700.49 " />
<svg:polygon detid="478708138" count="1" value="6" id="205001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  2 forward    Id 478708138 " fill="rgb(255,244,0)" points="252.313,2693.17 239.92,2694.35 240.562,2699.15 " />
<svg:polygon detid="478675366" count="1" value="6" id="205002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 forward    Id 478675366 " fill="rgb(255,244,0)" points="249.484,2685.68 237.556,2687.98 239.467,2692.67 " />
<svg:polygon detid="478675370" count="1" value="6" id="205003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  2 forward    Id 478675370 " fill="rgb(255,244,0)" points="244.698,2678.54 233.528,2681.92 236.661,2686.36 " />
<svg:polygon detid="478675374" count="1" value="6" id="205004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  3 forward    Id 478675374 " fill="rgb(255,244,0)" points="238.072,2671.93 227.937,2676.29 232.214,2680.4 " />
<svg:polygon detid="478708390" count="1" value="6" id="205005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 forward    Id 478708390 " fill="rgb(255,244,0)" points="229.77,2666.02 220.919,2671.25 226.235,2674.91 " />
<svg:polygon detid="478708394" count="1" value="6" id="205006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  2 forward    Id 478708394 " fill="rgb(255,244,0)" points="219.997,2660.93 212.647,2666.92 218.871,2670.05 " />
<svg:polygon detid="478675622" count="1" value="6" id="205007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 forward    Id 478675622 " fill="rgb(255,244,0)" points="208.992,2656.81 203.324,2663.4 210.304,2665.92 " />
<svg:polygon detid="478675626" count="1" value="6" id="205008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  2 forward    Id 478675626 " fill="rgb(255,244,0)" points="197.028,2653.76 193.182,2660.79 200.744,2662.63 " />
<svg:polygon detid="478675630" count="1" value="6" id="205009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  3 forward    Id 478675630 " fill="rgb(255,244,0)" points="184.397,2651.84 182.468,2659.14 190.428,2660.26 " />
<svg:polygon detid="478708646" count="1" value="6" id="205010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 forward    Id 478708646 " fill="rgb(255,244,0)" points="171.413,2651.11 171.448,2658.49 179.608,2658.87 " />
<svg:polygon detid="478708650" count="1" value="6" id="205011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  2 forward    Id 478708650 " fill="rgb(255,244,0)" points="158.393,2651.58 160.392,2658.87 168.552,2658.49 " />
<svg:polygon detid="478675878" count="1" value="6" id="205012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 forward    Id 478675878 " fill="rgb(255,244,0)" points="145.66,2653.24 149.572,2660.26 157.532,2659.14 " />
<svg:polygon detid="478675882" count="1" value="6" id="205013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  2 forward    Id 478675882 " fill="rgb(255,244,0)" points="133.525,2656.06 139.256,2662.63 146.818,2660.79 " />
<svg:polygon detid="478675886" count="1" value="6" id="205014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  3 forward    Id 478675886 " fill="rgb(255,244,0)" points="122.289,2659.96 129.696,2665.92 136.676,2663.4 " />
<svg:polygon detid="478708902" count="1" value="6" id="205015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 forward    Id 478708902 " fill="rgb(255,244,0)" points="112.228,2664.84 121.129,2670.05 127.353,2666.92 " />
<svg:polygon detid="478708906" count="1" value="6" id="205016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  2 forward    Id 478708906 " fill="rgb(255,244,0)" points="103.589,2670.59 113.765,2674.91 119.081,2671.25 " />
<svg:polygon detid="478676134" count="1" value="6" id="205017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 forward    Id 478676134 " fill="rgb(255,244,0)" points="96.5852,2677.06 107.786,2680.4 112.063,2676.29 " />
<svg:polygon detid="478676138" count="1" value="6" id="205018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  2 forward    Id 478676138 " fill="rgb(255,244,0)" points="91.3893,2684.1 103.339,2686.36 106.472,2681.92 " />
<svg:polygon detid="478676142" count="1" value="6" id="205019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  3 forward    Id 478676142 " fill="rgb(255,244,0)" points="88.129,2691.53 100.533,2692.67 102.444,2687.98 " />
<svg:polygon detid="478709158" count="1" value="6" id="205020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 forward    Id 478709158 " fill="rgb(255,244,0)" points="86.8848,2699.17 99.4383,2699.15 100.08,2694.35 " />
<svg:polygon detid="478709162" count="1" value="6" id="205021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  2 forward    Id 478709162 " fill="rgb(255,244,0)" points="87.6871,2706.83 100.08,2705.65 99.4383,2700.85 " />
<svg:polygon detid="478676390" count="1" value="6" id="205022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 forward    Id 478676390 " fill="rgb(255,244,0)" points="90.5161,2714.32 102.444,2712.02 100.533,2707.33 " />
<svg:polygon detid="478676394" count="1" value="6" id="205023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  2 forward    Id 478676394 " fill="rgb(255,244,0)" points="95.3024,2721.46 106.472,2718.08 103.339,2713.64 " />
<svg:polygon detid="478676398" count="1" value="6" id="205024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  3 forward    Id 478676398 " fill="rgb(255,244,0)" points="101.928,2728.07 112.063,2723.71 107.786,2719.6 " />
<svg:polygon detid="478709414" count="1" value="6" id="205025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 forward    Id 478709414 " fill="rgb(255,244,0)" points="110.23,2733.98 119.081,2728.75 113.765,2725.09 " />
<svg:polygon detid="478709418" count="1" value="6" id="205026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  2 forward    Id 478709418 " fill="rgb(255,244,0)" points="120.003,2739.07 127.353,2733.08 121.129,2729.95 " />
<svg:polygon detid="478676646" count="1" value="6" id="205027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 forward    Id 478676646 " fill="rgb(255,244,0)" points="131.008,2743.19 136.676,2736.6 129.696,2734.08 " />
<svg:polygon detid="478676650" count="1" value="6" id="205028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  2 forward    Id 478676650 " fill="rgb(255,244,0)" points="142.972,2746.24 146.818,2739.21 139.256,2737.37 " />
<svg:polygon detid="478676654" count="1" value="6" id="205029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  3 forward    Id 478676654 " fill="rgb(255,244,0)" points="155.603,2748.16 157.532,2740.86 149.572,2739.74 " />
<svg:polygon detid="478709670" count="1" value="6" id="205030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 forward    Id 478709670 " fill="rgb(255,244,0)" points="168.587,2748.89 168.552,2741.51 160.392,2741.13 " />
<svg:polygon detid="478709674" count="1" value="6" id="205031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  2 forward    Id 478709674 " fill="rgb(255,244,0)" points="181.607,2748.42 179.608,2741.13 171.448,2741.51 " />
<svg:polygon detid="478676902" count="1" value="6" id="205032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 forward    Id 478676902 " fill="rgb(255,244,0)" points="194.34,2746.76 190.428,2739.74 182.468,2740.86 " />
<svg:polygon detid="478676906" count="1" value="6" id="205033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  2 forward    Id 478676906 " fill="rgb(255,244,0)" points="206.475,2743.94 200.744,2737.37 193.182,2739.21 " />
<svg:polygon detid="478676910" count="1" value="6" id="205034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  3 forward    Id 478676910 " fill="rgb(255,244,0)" points="217.711,2740.04 210.304,2734.08 203.324,2736.6 " />
<svg:polygon detid="478709926" count="1" value="6" id="205035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 forward    Id 478709926 " fill="rgb(255,244,0)" points="227.772,2735.16 218.871,2729.95 212.647,2733.08 " />
<svg:polygon detid="478709930" count="1" value="6" id="205036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  2 forward    Id 478709930 " fill="rgb(255,244,0)" points="236.411,2729.41 226.235,2725.09 220.919,2728.75 " />
<svg:polygon detid="478677158" count="1" value="6" id="205037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 forward    Id 478677158 " fill="rgb(255,244,0)" points="243.415,2722.94 232.214,2719.6 227.937,2723.71 " />
<svg:polygon detid="478677162" count="1" value="6" id="205038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  2 forward    Id 478677162 " fill="rgb(255,244,0)" points="248.611,2715.9 236.661,2713.64 233.528,2718.08 " />
<svg:polygon detid="478677166" count="1" value="6" id="205039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  3 forward    Id 478677166 " fill="rgb(255,244,0)" points="251.871,2708.47 239.467,2707.33 237.556,2712.02 " />
<svg:polygon detid="478708134" count="1" value="6" id="205040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 forward    Id 478708134 " fill="rgb(255,244,0)" points="253.115,2700.83 240.562,2700.85 239.92,2705.65 " />
<svg:polygon detid="478708137" count="1" value="6" id="205101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  2 forward   stereo Id 478708137 " fill="rgb(255,244,0)" points="240.562,2699.15 253.115,2699.17 252.313,2693.17 " />
<svg:polygon detid="478675365" count="1" value="6" id="205102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 forward   stereo Id 478675365 " fill="rgb(255,244,0)" points="239.467,2692.67 251.871,2691.53 249.484,2685.68 " />
<svg:polygon detid="478675369" count="1" value="6" id="205103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  2 forward   stereo Id 478675369 " fill="rgb(255,244,0)" points="236.661,2686.36 248.611,2684.1 244.698,2678.54 " />
<svg:polygon detid="478675373" count="1" value="6" id="205104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  3 forward   stereo Id 478675373 " fill="rgb(255,244,0)" points="232.214,2680.4 243.415,2677.06 238.072,2671.93 " />
<svg:polygon detid="478708389" count="1" value="6" id="205105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 forward   stereo Id 478708389 " fill="rgb(255,244,0)" points="226.235,2674.91 236.411,2670.59 229.77,2666.02 " />
<svg:polygon detid="478708393" count="1" value="6" id="205106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  2 forward   stereo Id 478708393 " fill="rgb(255,244,0)" points="218.871,2670.05 227.772,2664.84 219.997,2660.93 " />
<svg:polygon detid="478675621" count="1" value="6" id="205107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 forward   stereo Id 478675621 " fill="rgb(255,244,0)" points="210.304,2665.92 217.711,2659.96 208.992,2656.81 " />
<svg:polygon detid="478675625" count="1" value="6" id="205108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  2 forward   stereo Id 478675625 " fill="rgb(255,244,0)" points="200.744,2662.63 206.475,2656.06 197.028,2653.76 " />
<svg:polygon detid="478675629" count="1" value="6" id="205109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  3 forward   stereo Id 478675629 " fill="rgb(255,244,0)" points="190.428,2660.26 194.34,2653.24 184.397,2651.84 " />
<svg:polygon detid="478708645" count="1" value="6" id="205110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 forward   stereo Id 478708645 " fill="rgb(255,244,0)" points="179.608,2658.87 181.607,2651.58 171.413,2651.11 " />
<svg:polygon detid="478708649" count="1" value="6" id="205111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  2 forward   stereo Id 478708649 " fill="rgb(255,244,0)" points="168.552,2658.49 168.587,2651.11 158.393,2651.58 " />
<svg:polygon detid="478675877" count="1" value="6" id="205112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 forward   stereo Id 478675877 " fill="rgb(255,244,0)" points="157.532,2659.14 155.603,2651.84 145.66,2653.24 " />
<svg:polygon detid="478675881" count="1" value="6" id="205113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  2 forward   stereo Id 478675881 " fill="rgb(255,244,0)" points="146.818,2660.79 142.972,2653.76 133.525,2656.06 " />
<svg:polygon detid="478675885" count="1" value="6" id="205114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  3 forward   stereo Id 478675885 " fill="rgb(255,244,0)" points="136.676,2663.4 131.008,2656.81 122.289,2659.96 " />
<svg:polygon detid="478708901" count="1" value="6" id="205115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 forward   stereo Id 478708901 " fill="rgb(255,244,0)" points="127.353,2666.92 120.003,2660.93 112.228,2664.84 " />
<svg:polygon detid="478708905" count="1" value="6" id="205116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  2 forward   stereo Id 478708905 " fill="rgb(255,244,0)" points="119.081,2671.25 110.23,2666.02 103.589,2670.59 " />
<svg:polygon detid="478676133" count="1" value="6" id="205117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 forward   stereo Id 478676133 " fill="rgb(255,244,0)" points="112.063,2676.29 101.928,2671.93 96.5852,2677.06 " />
<svg:polygon detid="478676137" count="1" value="6" id="205118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  2 forward   stereo Id 478676137 " fill="rgb(255,244,0)" points="106.472,2681.92 95.3024,2678.54 91.3893,2684.1 " />
<svg:polygon detid="478676141" count="1" value="6" id="205119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  3 forward   stereo Id 478676141 " fill="rgb(255,244,0)" points="102.444,2687.98 90.5161,2685.68 88.129,2691.53 " />
<svg:polygon detid="478709157" count="1" value="6" id="205120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 forward   stereo Id 478709157 " fill="rgb(255,244,0)" points="100.08,2694.35 87.6871,2693.17 86.8848,2699.17 " />
<svg:polygon detid="478709161" count="1" value="6" id="205121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  2 forward   stereo Id 478709161 " fill="rgb(255,244,0)" points="99.4383,2700.85 86.8848,2700.83 87.6871,2706.83 " />
<svg:polygon detid="478676389" count="1" value="6" id="205122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 forward   stereo Id 478676389 " fill="rgb(255,244,0)" points="100.533,2707.33 88.129,2708.47 90.5161,2714.32 " />
<svg:polygon detid="478676393" count="1" value="6" id="205123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  2 forward   stereo Id 478676393 " fill="rgb(255,244,0)" points="103.339,2713.64 91.3893,2715.9 95.3024,2721.46 " />
<svg:polygon detid="478676397" count="1" value="6" id="205124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  3 forward   stereo Id 478676397 " fill="rgb(255,244,0)" points="107.786,2719.6 96.5852,2722.94 101.928,2728.07 " />
<svg:polygon detid="478709413" count="1" value="6" id="205125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 forward   stereo Id 478709413 " fill="rgb(255,244,0)" points="113.765,2725.09 103.589,2729.41 110.23,2733.98 " />
<svg:polygon detid="478709417" count="1" value="6" id="205126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  2 forward   stereo Id 478709417 " fill="rgb(255,244,0)" points="121.129,2729.95 112.228,2735.16 120.003,2739.07 " />
<svg:polygon detid="478676645" count="1" value="6" id="205127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 forward   stereo Id 478676645 " fill="rgb(255,244,0)" points="129.696,2734.08 122.289,2740.04 131.008,2743.19 " />
<svg:polygon detid="478676649" count="1" value="6" id="205128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  2 forward   stereo Id 478676649 " fill="rgb(255,244,0)" points="139.256,2737.37 133.525,2743.94 142.972,2746.24 " />
<svg:polygon detid="478676653" count="1" value="6" id="205129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  3 forward   stereo Id 478676653 " fill="rgb(255,244,0)" points="149.572,2739.74 145.66,2746.76 155.603,2748.16 " />
<svg:polygon detid="478709669" count="1" value="6" id="205130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 forward   stereo Id 478709669 " fill="rgb(255,244,0)" points="160.392,2741.13 158.393,2748.42 168.587,2748.89 " />
<svg:polygon detid="478709673" count="1" value="6" id="205131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  2 forward   stereo Id 478709673 " fill="rgb(255,244,0)" points="171.448,2741.51 171.413,2748.89 181.607,2748.42 " />
<svg:polygon detid="478676901" count="1" value="6" id="205132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 forward   stereo Id 478676901 " fill="rgb(255,244,0)" points="182.468,2740.86 184.397,2748.16 194.34,2746.76 " />
<svg:polygon detid="478676905" count="1" value="6" id="205133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  2 forward   stereo Id 478676905 " fill="rgb(255,244,0)" points="193.182,2739.21 197.028,2746.24 206.475,2743.94 " />
<svg:polygon detid="478676909" count="1" value="6" id="205134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  3 forward   stereo Id 478676909 " fill="rgb(255,244,0)" points="203.324,2736.6 208.992,2743.19 217.711,2740.04 " />
<svg:polygon detid="478709925" count="1" value="6" id="205135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 forward   stereo Id 478709925 " fill="rgb(255,244,0)" points="212.647,2733.08 219.997,2739.07 227.772,2735.16 " />
<svg:polygon detid="478709929" count="1" value="6" id="205136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  2 forward   stereo Id 478709929 " fill="rgb(255,244,0)" points="220.919,2728.75 229.77,2733.98 236.411,2729.41 " />
<svg:polygon detid="478677157" count="1" value="6" id="205137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 forward   stereo Id 478677157 " fill="rgb(255,244,0)" points="227.937,2723.71 238.072,2728.07 243.415,2722.94 " />
<svg:polygon detid="478677161" count="1" value="6" id="205138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  2 forward   stereo Id 478677161 " fill="rgb(255,244,0)" points="233.528,2718.08 244.698,2721.46 248.611,2715.9 " />
<svg:polygon detid="478677165" count="1" value="6" id="205139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  3 forward   stereo Id 478677165 " fill="rgb(255,244,0)" points="237.556,2712.02 249.484,2714.32 251.871,2708.47 " />
<svg:polygon detid="478708133" count="1" value="6" id="205140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 forward   stereo Id 478708133 " fill="rgb(255,244,0)" points="239.92,2705.65 252.313,2706.83 253.115,2700.83 " />
<svg:polygon detid="478708164" count="1" value="6" id="206001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 forward    Id 478708164 " fill="rgb(255,244,0)" points="255.048,2699.28 270.706,2699.3 270.206,2694.06 254.65,2695.12 " />
<svg:polygon detid="478708172" count="1" value="6" id="206002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  3 forward    Id 478708172 " fill="rgb(255,244,0)" points="254.376,2693.68 269.939,2692.67 268.446,2687.5 253.188,2689.57 " />
<svg:polygon detid="478675396" count="1" value="6" id="206003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 forward    Id 478675396 " fill="rgb(255,244,0)" points="252.643,2688.16 267.916,2686.14 265.448,2681.1 250.68,2684.16 " />
<svg:polygon detid="478675400" count="1" value="6" id="206004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  2 forward    Id 478675400 " fill="rgb(255,244,0)" points="249.87,2682.8 264.662,2679.77 261.249,2674.93 247.157,2678.94 " />
<svg:polygon detid="478675404" count="1" value="6" id="206005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  3 forward    Id 478675404 " fill="rgb(255,244,0)" points="246.093,2677.64 260.216,2673.67 255.903,2669.08 242.664,2673.99 " />
<svg:polygon detid="478708420" count="1" value="6" id="206006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 forward    Id 478708420 " fill="rgb(255,244,0)" points="241.36,2672.77 254.637,2667.89 249.477,2663.61 237.257,2669.37 " />
<svg:polygon detid="478708424" count="1" value="6" id="206007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  2 forward    Id 478708424 " fill="rgb(255,244,0)" points="235.729,2668.24 247.993,2662.52 242.051,2658.61 231.005,2665.13 " />
<svg:polygon detid="478708428" count="1" value="6" id="206008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  3 forward    Id 478708428 " fill="rgb(255,244,0)" points="229.271,2664.11 240.368,2657.62 233.72,2654.12 223.985,2661.34 " />
<svg:polygon detid="478708432" count="1" value="6" id="206009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  0 backward    Id 478708432 " fill="rgb(255,244,0)" points="222.068,2660.44 231.859,2653.25 224.587,2650.21 216.286,2658.02 " />
<svg:polygon detid="478675652" count="1" value="6" id="206010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 forward    Id 478675652 " fill="rgb(255,244,0)" points="214.21,2657.26 222.571,2649.47 214.767,2646.93 208.006,2655.24 " />
<svg:polygon detid="478675656" count="1" value="6" id="206011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  2 forward    Id 478675656 " fill="rgb(255,244,0)" points="205.796,2654.61 212.622,2646.32 204.385,2644.32 199.247,2653.02 " />
<svg:polygon detid="478675660" count="1" value="6" id="206012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  3 forward    Id 478675660 " fill="rgb(255,244,0)" points="196.932,2652.54 202.138,2643.85 193.57,2642.4 190.12,2651.39 " />
<svg:polygon detid="478708676" count="1" value="6" id="206013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 forward    Id 478708676 " fill="rgb(255,244,0)" points="187.73,2651.07 191.249,2642.09 182.458,2641.21 180.741,2650.37 " />
<svg:polygon detid="478708680" count="1" value="6" id="206014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  2 forward    Id 478708680 " fill="rgb(255,244,0)" points="178.304,2650.21 180.093,2641.06 171.19,2640.76 171.226,2649.97 " />
<svg:polygon detid="478708684" count="1" value="6" id="206015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  3 forward    Id 478708684 " fill="rgb(255,244,0)" points="168.774,2649.97 168.81,2640.76 159.907,2641.06 161.696,2650.21 " />
<svg:polygon detid="478708688" count="1" value="6" id="206016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  0 backward    Id 478708688 " fill="rgb(255,244,0)" points="159.259,2650.37 157.542,2641.21 148.751,2642.09 152.27,2651.07 " />
<svg:polygon detid="478675908" count="1" value="6" id="206017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 forward    Id 478675908 " fill="rgb(255,244,0)" points="149.88,2651.39 146.43,2642.4 137.862,2643.85 143.068,2652.54 " />
<svg:polygon detid="478675912" count="1" value="6" id="206018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  2 forward    Id 478675912 " fill="rgb(255,244,0)" points="140.753,2653.02 135.615,2644.32 127.378,2646.32 134.204,2654.61 " />
<svg:polygon detid="478675916" count="1" value="6" id="206019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  3 forward    Id 478675916 " fill="rgb(255,244,0)" points="131.994,2655.24 125.233,2646.93 117.429,2649.47 125.79,2657.26 " />
<svg:polygon detid="478708932" count="1" value="6" id="206020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 forward    Id 478708932 " fill="rgb(255,244,0)" points="123.714,2658.02 115.413,2650.21 108.141,2653.25 117.932,2660.44 " />
<svg:polygon detid="478708936" count="1" value="6" id="206021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  2 forward    Id 478708936 " fill="rgb(255,244,0)" points="116.015,2661.34 106.28,2654.12 99.6318,2657.62 110.729,2664.11 " />
<svg:polygon detid="478708940" count="1" value="6" id="206022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  3 forward    Id 478708940 " fill="rgb(255,244,0)" points="108.995,2665.13 97.9486,2658.61 92.0071,2662.52 104.271,2668.24 " />
<svg:polygon detid="478708944" count="1" value="6" id="206023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  0 backward    Id 478708944 " fill="rgb(255,244,0)" points="102.743,2669.37 90.5229,2663.61 85.3632,2667.89 98.6404,2672.77 " />
<svg:polygon detid="478676164" count="1" value="6" id="206024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 forward    Id 478676164 " fill="rgb(255,244,0)" points="97.3356,2673.99 84.0966,2669.08 79.7835,2673.67 93.9066,2677.64 " />
<svg:polygon detid="478676168" count="1" value="6" id="206025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  2 forward    Id 478676168 " fill="rgb(255,244,0)" points="92.8426,2678.94 78.7507,2674.93 75.3385,2679.77 90.1298,2682.8 " />
<svg:polygon detid="478676172" count="1" value="6" id="206026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  3 forward    Id 478676172 " fill="rgb(255,244,0)" points="89.3198,2684.16 74.5522,2681.1 72.0838,2686.14 87.3574,2688.16 " />
<svg:polygon detid="478709188" count="1" value="6" id="206027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 forward    Id 478709188 " fill="rgb(255,244,0)" points="86.8117,2689.57 71.5541,2687.5 70.0606,2692.67 85.6243,2693.68 " />
<svg:polygon detid="478709192" count="1" value="6" id="206028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  2 forward    Id 478709192 " fill="rgb(255,244,0)" points="85.3497,2695.12 69.794,2694.06 69.2941,2699.3 84.9522,2699.28 " />
<svg:polygon detid="478709196" count="1" value="6" id="206029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  3 forward    Id 478709196 " fill="rgb(255,244,0)" points="84.9522,2700.72 69.2941,2700.7 69.794,2705.94 85.3497,2704.88 " />
<svg:polygon detid="478709200" count="1" value="6" id="206030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  0 backward    Id 478709200 " fill="rgb(255,244,0)" points="85.6243,2706.32 70.0606,2707.33 71.5541,2712.5 86.8117,2710.43 " />
<svg:polygon detid="478676420" count="1" value="6" id="206031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 forward    Id 478676420 " fill="rgb(255,244,0)" points="87.3574,2711.84 72.0838,2713.86 74.5522,2718.9 89.3198,2715.84 " />
<svg:polygon detid="478676424" count="1" value="6" id="206032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  2 forward    Id 478676424 " fill="rgb(255,244,0)" points="90.1298,2717.2 75.3385,2720.23 78.7507,2725.07 92.8426,2721.06 " />
<svg:polygon detid="478676428" count="1" value="6" id="206033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  3 forward    Id 478676428 " fill="rgb(255,244,0)" points="93.9066,2722.36 79.7835,2726.33 84.0966,2730.92 97.3356,2726.01 " />
<svg:polygon detid="478709444" count="1" value="6" id="206034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 forward    Id 478709444 " fill="rgb(255,244,0)" points="98.6404,2727.23 85.3632,2732.11 90.5229,2736.39 102.743,2730.63 " />
<svg:polygon detid="478709448" count="1" value="6" id="206035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  2 forward    Id 478709448 " fill="rgb(255,244,0)" points="104.271,2731.76 92.0071,2737.48 97.9486,2741.39 108.995,2734.87 " />
<svg:polygon detid="478709452" count="1" value="6" id="206036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  3 forward    Id 478709452 " fill="rgb(255,244,0)" points="110.729,2735.89 99.6318,2742.38 106.28,2745.88 116.015,2738.66 " />
<svg:polygon detid="478709456" count="1" value="6" id="206037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  0 backward    Id 478709456 " fill="rgb(255,244,0)" points="117.932,2739.56 108.141,2746.75 115.413,2749.79 123.714,2741.98 " />
<svg:polygon detid="478676676" count="1" value="6" id="206038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 forward    Id 478676676 " fill="rgb(255,244,0)" points="125.79,2742.74 117.429,2750.53 125.233,2753.07 131.994,2744.76 " />
<svg:polygon detid="478676680" count="1" value="6" id="206039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  2 forward    Id 478676680 " fill="rgb(255,244,0)" points="134.204,2745.39 127.378,2753.68 135.615,2755.68 140.753,2746.98 " />
<svg:polygon detid="478676684" count="1" value="6" id="206040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  3 forward    Id 478676684 " fill="rgb(255,244,0)" points="143.068,2747.46 137.862,2756.15 146.43,2757.6 149.88,2748.61 " />
<svg:polygon detid="478709700" count="1" value="6" id="206041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 forward    Id 478709700 " fill="rgb(255,244,0)" points="152.27,2748.93 148.751,2757.91 157.542,2758.79 159.259,2749.63 " />
<svg:polygon detid="478709704" count="1" value="6" id="206042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  2 forward    Id 478709704 " fill="rgb(255,244,0)" points="161.696,2749.79 159.907,2758.94 168.81,2759.24 168.774,2750.03 " />
<svg:polygon detid="478709708" count="1" value="6" id="206043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  3 forward    Id 478709708 " fill="rgb(255,244,0)" points="171.226,2750.03 171.19,2759.24 180.093,2758.94 178.304,2749.79 " />
<svg:polygon detid="478709712" count="1" value="6" id="206044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  0 backward    Id 478709712 " fill="rgb(255,244,0)" points="180.741,2749.63 182.458,2758.79 191.249,2757.91 187.73,2748.93 " />
<svg:polygon detid="478676932" count="1" value="6" id="206045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 forward    Id 478676932 " fill="rgb(255,244,0)" points="190.12,2748.61 193.57,2757.6 202.138,2756.15 196.932,2747.46 " />
<svg:polygon detid="478676936" count="1" value="6" id="206046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  2 forward    Id 478676936 " fill="rgb(255,244,0)" points="199.247,2746.98 204.385,2755.68 212.622,2753.68 205.796,2745.39 " />
<svg:polygon detid="478676940" count="1" value="6" id="206047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  3 forward    Id 478676940 " fill="rgb(255,244,0)" points="208.006,2744.76 214.767,2753.07 222.571,2750.53 214.21,2742.74 " />
<svg:polygon detid="478709956" count="1" value="6" id="206048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 forward    Id 478709956 " fill="rgb(255,244,0)" points="216.286,2741.98 224.587,2749.79 231.859,2746.75 222.068,2739.56 " />
<svg:polygon detid="478709960" count="1" value="6" id="206049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  2 forward    Id 478709960 " fill="rgb(255,244,0)" points="223.985,2738.66 233.72,2745.88 240.368,2742.38 229.271,2735.89 " />
<svg:polygon detid="478709964" count="1" value="6" id="206050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  3 forward    Id 478709964 " fill="rgb(255,244,0)" points="231.005,2734.87 242.051,2741.39 247.993,2737.48 235.729,2731.76 " />
<svg:polygon detid="478709968" count="1" value="6" id="206051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  0 backward    Id 478709968 " fill="rgb(255,244,0)" points="237.257,2730.63 249.477,2736.39 254.637,2732.11 241.36,2727.23 " />
<svg:polygon detid="478677188" count="1" value="6" id="206052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 forward    Id 478677188 " fill="rgb(255,244,0)" points="242.664,2726.01 255.903,2730.92 260.216,2726.33 246.093,2722.36 " />
<svg:polygon detid="478677192" count="1" value="6" id="206053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  2 forward    Id 478677192 " fill="rgb(255,244,0)" points="247.157,2721.06 261.249,2725.07 264.662,2720.23 249.87,2717.2 " />
<svg:polygon detid="478677196" count="1" value="6" id="206054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  3 forward    Id 478677196 " fill="rgb(255,244,0)" points="250.68,2715.84 265.448,2718.9 267.916,2713.86 252.643,2711.84 " />
<svg:polygon detid="478708176" count="1" value="6" id="206055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  0 backward    Id 478708176 " fill="rgb(255,244,0)" points="253.188,2710.43 268.446,2712.5 269.939,2707.33 254.376,2706.32 " />
<svg:polygon detid="478708168" count="1" value="6" id="206056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  2 forward    Id 478708168 " fill="rgb(255,244,0)" points="254.65,2704.88 270.206,2705.94 270.706,2700.7 255.048,2700.72 " />
<svg:polygon detid="478708196" count="1" value="6" id="207001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 forward    Id 478708196 " fill="rgb(255,244,0)" points="273.723,2701.79 291.123,2702.21 291.123,2697.79 273.723,2698.21 " />
<svg:polygon detid="478708204" count="1" value="6" id="207002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  3 forward    Id 478708204 " fill="rgb(255,244,0)" points="273.642,2696.99 291.043,2696.61 290.455,2692.21 273.165,2693.43 " />
<svg:polygon detid="478708208" count="1" value="6" id="207003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  0 backward    Id 478708208 " fill="rgb(255,244,0)" points="272.921,2692.22 290.218,2691.03 289.045,2686.68 271.971,2688.69 " />
<svg:polygon detid="478675428" count="1" value="6" id="207004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 forward    Id 478675428 " fill="rgb(255,244,0)" points="271.567,2687.49 288.651,2685.51 286.901,2681.22 270.148,2684.02 " />
<svg:polygon detid="478675432" count="1" value="6" id="207005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  2 forward    Id 478675432 " fill="rgb(255,244,0)" points="269.586,2682.85 286.353,2680.08 284.036,2675.89 267.708,2679.45 " />
<svg:polygon detid="478675436" count="1" value="6" id="207006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  3 forward    Id 478675436 " fill="rgb(255,244,0)" points="266.99,2678.3 283.337,2674.77 280.468,2670.7 264.665,2675 " />
<svg:polygon detid="478675440" count="1" value="6" id="207007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  0 backward    Id 478675440 " fill="rgb(255,244,0)" points="263.797,2673.89 279.623,2669.62 276.219,2665.69 261.039,2670.71 " />
<svg:polygon detid="478675444" count="1" value="6" id="207008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 forward  module  1 backward    Id 478675444 " fill="rgb(255,244,0)" points="260.026,2669.64 275.233,2664.65 271.315,2660.89 256.851,2666.6 " />
<svg:polygon detid="478708452" count="1" value="6" id="207009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 forward    Id 478708452 " fill="rgb(255,244,0)" points="255.7,2665.58 270.194,2659.9 265.787,2656.34 252.128,2662.69 " />
<svg:polygon detid="478708456" count="1" value="6" id="207010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  2 forward    Id 478708456 " fill="rgb(255,244,0)" points="250.845,2661.73 264.537,2655.4 259.668,2652.05 246.899,2659.02 " />
<svg:polygon detid="478708460" count="1" value="6" id="207011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  3 forward    Id 478708460 " fill="rgb(255,244,0)" points="245.492,2658.12 258.297,2651.18 252.996,2648.06 241.195,2655.59 " />
<svg:polygon detid="478708464" count="1" value="6" id="207012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  0 backward    Id 478708464 " fill="rgb(255,244,0)" points="239.673,2654.77 251.513,2647.25 245.813,2644.39 235.052,2652.44 " />
<svg:polygon detid="478708468" count="1" value="6" id="207013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 backward  module  1 backward    Id 478708468 " fill="rgb(255,244,0)" points="233.425,2651.69 244.227,2643.65 238.162,2641.06 228.509,2649.59 " />
<svg:polygon detid="478675684" count="1" value="6" id="207014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 forward    Id 478675684 " fill="rgb(255,244,0)" points="226.786,2648.91 236.483,2640.4 230.09,2638.1 221.605,2647.04 " />
<svg:polygon detid="478675688" count="1" value="6" id="207015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  2 forward    Id 478675688 " fill="rgb(255,244,0)" points="219.797,2646.45 228.329,2637.52 221.649,2635.52 214.382,2644.83 " />
<svg:polygon detid="478675692" count="1" value="6" id="207016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  3 forward    Id 478675692 " fill="rgb(255,244,0)" points="212.5,2644.31 219.815,2635.02 212.888,2633.33 206.886,2642.95 " />
<svg:polygon detid="478675696" count="1" value="6" id="207017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  0 backward    Id 478675696 " fill="rgb(255,244,0)" points="204.942,2642.52 210.994,2632.92 203.864,2631.56 199.163,2641.42 " />
<svg:polygon detid="478675700" count="1" value="6" id="207018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 2 forward  module  1 backward    Id 478675700 " fill="rgb(255,244,0)" points="197.168,2641.09 201.92,2631.23 194.631,2630.21 191.259,2640.25 " />
<svg:polygon detid="478708708" count="1" value="6" id="207019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 forward    Id 478708708 " fill="rgb(255,244,0)" points="189.227,2640.02 192.65,2629.97 185.245,2629.28 183.225,2639.46 " />
<svg:polygon detid="478708712" count="1" value="6" id="207020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  2 forward    Id 478708712 " fill="rgb(255,244,0)" points="181.167,2639.31 183.24,2629.14 175.766,2628.8 175.109,2639.03 " />
<svg:polygon detid="478708716" count="1" value="6" id="207021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  3 forward    Id 478708716 " fill="rgb(255,244,0)" points="173.038,2638.99 173.749,2628.75 166.251,2628.75 166.962,2638.99 " />
<svg:polygon detid="478708720" count="1" value="6" id="207022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  0 backward    Id 478708720 " fill="rgb(255,244,0)" points="164.891,2639.03 164.234,2628.8 156.76,2629.14 158.833,2639.31 " />
<svg:polygon detid="478708724" count="1" value="6" id="207023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 backward  module  1 backward    Id 478708724 " fill="rgb(255,244,0)" points="156.775,2639.46 154.755,2629.28 147.35,2629.97 150.773,2640.02 " />
<svg:polygon detid="478675940" count="1" value="6" id="207024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 forward    Id 478675940 " fill="rgb(255,244,0)" points="148.741,2640.25 145.369,2630.21 138.08,2631.23 142.832,2641.09 " />
<svg:polygon detid="478675944" count="1" value="6" id="207025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  2 forward    Id 478675944 " fill="rgb(255,244,0)" points="140.837,2641.42 136.136,2631.56 129.006,2632.92 135.058,2642.52 " />
<svg:polygon detid="478675948" count="1" value="6" id="207026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  3 forward    Id 478675948 " fill="rgb(255,244,0)" points="133.114,2642.95 127.112,2633.33 120.185,2635.02 127.5,2644.31 " />
<svg:polygon detid="478675952" count="1" value="6" id="207027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  0 backward    Id 478675952 " fill="rgb(255,244,0)" points="125.618,2644.83 118.351,2635.52 111.671,2637.52 120.203,2646.45 " />
<svg:polygon detid="478675956" count="1" value="6" id="207028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 3 forward  module  1 backward    Id 478675956 " fill="rgb(255,244,0)" points="118.395,2647.04 109.91,2638.1 103.517,2640.4 113.214,2648.91 " />
<svg:polygon detid="478708964" count="1" value="6" id="207029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 forward    Id 478708964 " fill="rgb(255,244,0)" points="111.491,2649.59 101.838,2641.06 95.7732,2643.65 106.575,2651.69 " />
<svg:polygon detid="478708968" count="1" value="6" id="207030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  2 forward    Id 478708968 " fill="rgb(255,244,0)" points="104.948,2652.44 94.1875,2644.39 88.4867,2647.25 100.327,2654.77 " />
<svg:polygon detid="478708972" count="1" value="6" id="207031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  3 forward    Id 478708972 " fill="rgb(255,244,0)" points="98.805,2655.59 87.0039,2648.06 81.7027,2651.18 94.5082,2658.12 " />
<svg:polygon detid="478708976" count="1" value="6" id="207032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  0 backward    Id 478708976 " fill="rgb(255,244,0)" points="93.1015,2659.02 80.332,2652.05 75.4631,2655.4 89.155,2661.73 " />
<svg:polygon detid="478708980" count="1" value="6" id="207033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 backward  module  1 backward    Id 478708980 " fill="rgb(255,244,0)" points="87.8721,2662.69 74.213,2656.34 69.8064,2659.9 84.3003,2665.58 " />
<svg:polygon detid="478676196" count="1" value="6" id="207034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 forward    Id 478676196 " fill="rgb(255,244,0)" points="83.149,2666.6 68.6845,2660.89 64.7673,2664.65 79.9739,2669.64 " />
<svg:polygon detid="478676200" count="1" value="6" id="207035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  2 forward    Id 478676200 " fill="rgb(255,244,0)" points="78.9613,2670.71 63.7807,2665.69 60.3771,2669.62 76.2026,2673.89 " />
<svg:polygon detid="478676204" count="1" value="6" id="207036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  3 forward    Id 478676204 " fill="rgb(255,244,0)" points="75.335,2675 59.5317,2670.7 56.6627,2674.77 73.0096,2678.3 " />
<svg:polygon detid="478676208" count="1" value="6" id="207037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  0 backward    Id 478676208 " fill="rgb(255,244,0)" points="72.2923,2679.45 55.9638,2675.89 53.6471,2680.08 70.4145,2682.85 " />
<svg:polygon detid="478676212" count="1" value="6" id="207038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 4 forward  module  1 backward    Id 478676212 " fill="rgb(255,244,0)" points="69.852,2684.02 53.099,2681.22 51.3489,2685.51 68.4334,2687.49 " />
<svg:polygon detid="478709220" count="1" value="6" id="207039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 forward    Id 478709220 " fill="rgb(255,244,0)" points="68.0292,2688.69 50.955,2686.68 49.7822,2691.03 67.0786,2692.22 " />
<svg:polygon detid="478709224" count="1" value="6" id="207040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  2 forward    Id 478709224 " fill="rgb(255,244,0)" points="66.835,2693.43 49.5448,2692.21 48.9566,2696.61 66.3582,2696.99 " />
<svg:polygon detid="478709228" count="1" value="6" id="207041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  3 forward    Id 478709228 " fill="rgb(255,244,0)" points="66.2768,2698.21 48.8773,2697.79 48.8773,2702.21 66.2768,2701.79 " />
<svg:polygon detid="478709232" count="1" value="6" id="207042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  0 backward    Id 478709232 " fill="rgb(255,244,0)" points="66.3582,2703.01 48.9566,2703.39 49.5448,2707.79 66.835,2706.57 " />
<svg:polygon detid="478709236" count="1" value="6" id="207043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 backward  module  1 backward    Id 478709236 " fill="rgb(255,244,0)" points="67.0786,2707.78 49.7822,2708.97 50.955,2713.32 68.0292,2711.31 " />
<svg:polygon detid="478676452" count="1" value="6" id="207044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 forward    Id 478676452 " fill="rgb(255,244,0)" points="68.4334,2712.51 51.3489,2714.49 53.099,2718.78 69.852,2715.98 " />
<svg:polygon detid="478676456" count="1" value="6" id="207045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  2 forward    Id 478676456 " fill="rgb(255,244,0)" points="70.4145,2717.15 53.6471,2719.92 55.9638,2724.11 72.2923,2720.55 " />
<svg:polygon detid="478676460" count="1" value="6" id="207046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  3 forward    Id 478676460 " fill="rgb(255,244,0)" points="73.0096,2721.7 56.6627,2725.23 59.5317,2729.3 75.335,2725 " />
<svg:polygon detid="478676464" count="1" value="6" id="207047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  0 backward    Id 478676464 " fill="rgb(255,244,0)" points="76.2026,2726.11 60.3771,2730.38 63.7807,2734.31 78.9613,2729.29 " />
<svg:polygon detid="478676468" count="1" value="6" id="207048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 5 forward  module  1 backward    Id 478676468 " fill="rgb(255,244,0)" points="79.9739,2730.36 64.7673,2735.35 68.6845,2739.11 83.149,2733.4 " />
<svg:polygon detid="478709476" count="1" value="6" id="207049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 forward    Id 478709476 " fill="rgb(255,244,0)" points="84.3003,2734.42 69.8064,2740.1 74.213,2743.66 87.8721,2737.31 " />
<svg:polygon detid="478709480" count="1" value="6" id="207050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  2 forward    Id 478709480 " fill="rgb(255,244,0)" points="89.155,2738.27 75.4631,2744.6 80.332,2747.95 93.1015,2740.98 " />
<svg:polygon detid="478709484" count="1" value="6" id="207051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  3 forward    Id 478709484 " fill="rgb(255,244,0)" points="94.5082,2741.88 81.7027,2748.82 87.0039,2751.94 98.805,2744.41 " />
<svg:polygon detid="478709488" count="1" value="6" id="207052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  0 backward    Id 478709488 " fill="rgb(255,244,0)" points="100.327,2745.23 88.4867,2752.75 94.1875,2755.61 104.948,2747.56 " />
<svg:polygon detid="478709492" count="1" value="6" id="207053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 backward  module  1 backward    Id 478709492 " fill="rgb(255,244,0)" points="106.575,2748.31 95.7732,2756.35 101.838,2758.94 111.491,2750.41 " />
<svg:polygon detid="478676708" count="1" value="6" id="207054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 forward    Id 478676708 " fill="rgb(255,244,0)" points="113.214,2751.09 103.517,2759.6 109.91,2761.9 118.395,2752.96 " />
<svg:polygon detid="478676712" count="1" value="6" id="207055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  2 forward    Id 478676712 " fill="rgb(255,244,0)" points="120.203,2753.55 111.671,2762.48 118.351,2764.48 125.618,2755.17 " />
<svg:polygon detid="478676716" count="1" value="6" id="207056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  3 forward    Id 478676716 " fill="rgb(255,244,0)" points="127.5,2755.69 120.185,2764.98 127.112,2766.67 133.114,2757.05 " />
<svg:polygon detid="478676720" count="1" value="6" id="207057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  0 backward    Id 478676720 " fill="rgb(255,244,0)" points="135.058,2757.48 129.006,2767.08 136.136,2768.44 140.837,2758.58 " />
<svg:polygon detid="478676724" count="1" value="6" id="207058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 6 forward  module  1 backward    Id 478676724 " fill="rgb(255,244,0)" points="142.832,2758.91 138.08,2768.77 145.369,2769.79 148.741,2759.75 " />
<svg:polygon detid="478709732" count="1" value="6" id="207059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 forward    Id 478709732 " fill="rgb(255,244,0)" points="150.773,2759.98 147.35,2770.03 154.755,2770.72 156.775,2760.54 " />
<svg:polygon detid="478709736" count="1" value="6" id="207060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  2 forward    Id 478709736 " fill="rgb(255,244,0)" points="158.833,2760.69 156.76,2770.86 164.234,2771.2 164.891,2760.97 " />
<svg:polygon detid="478709740" count="1" value="6" id="207061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  3 forward    Id 478709740 " fill="rgb(255,244,0)" points="166.962,2761.01 166.251,2771.25 173.749,2771.25 173.038,2761.01 " />
<svg:polygon detid="478709744" count="1" value="6" id="207062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  0 backward    Id 478709744 " fill="rgb(255,244,0)" points="175.109,2760.97 175.766,2771.2 183.24,2770.86 181.167,2760.69 " />
<svg:polygon detid="478709748" count="1" value="6" id="207063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 backward  module  1 backward    Id 478709748 " fill="rgb(255,244,0)" points="183.225,2760.54 185.245,2770.72 192.65,2770.03 189.227,2759.98 " />
<svg:polygon detid="478676964" count="1" value="6" id="207064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 forward    Id 478676964 " fill="rgb(255,244,0)" points="191.259,2759.75 194.631,2769.79 201.92,2768.77 197.168,2758.91 " />
<svg:polygon detid="478676968" count="1" value="6" id="207065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  2 forward    Id 478676968 " fill="rgb(255,244,0)" points="199.163,2758.58 203.864,2768.44 210.994,2767.08 204.942,2757.48 " />
<svg:polygon detid="478676972" count="1" value="6" id="207066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  3 forward    Id 478676972 " fill="rgb(255,244,0)" points="206.886,2757.05 212.888,2766.67 219.815,2764.98 212.5,2755.69 " />
<svg:polygon detid="478676976" count="1" value="6" id="207067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  0 backward    Id 478676976 " fill="rgb(255,244,0)" points="214.382,2755.17 221.649,2764.48 228.329,2762.48 219.797,2753.55 " />
<svg:polygon detid="478676980" count="1" value="6" id="207068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 7 forward  module  1 backward    Id 478676980 " fill="rgb(255,244,0)" points="221.605,2752.96 230.09,2761.9 236.483,2759.6 226.786,2751.09 " />
<svg:polygon detid="478709988" count="1" value="6" id="207069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 forward    Id 478709988 " fill="rgb(255,244,0)" points="228.509,2750.41 238.162,2758.94 244.227,2756.35 233.425,2748.31 " />
<svg:polygon detid="478709992" count="1" value="6" id="207070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  2 forward    Id 478709992 " fill="rgb(255,244,0)" points="235.052,2747.56 245.813,2755.61 251.513,2752.75 239.673,2745.23 " />
<svg:polygon detid="478709996" count="1" value="6" id="207071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  3 forward    Id 478709996 " fill="rgb(255,244,0)" points="241.195,2744.41 252.996,2751.94 258.297,2748.82 245.492,2741.88 " />
<svg:polygon detid="478710000" count="1" value="6" id="207072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  0 backward    Id 478710000 " fill="rgb(255,244,0)" points="246.899,2740.98 259.668,2747.95 264.537,2744.6 250.845,2738.27 " />
<svg:polygon detid="478710004" count="1" value="6" id="207073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 backward  module  1 backward    Id 478710004 " fill="rgb(255,244,0)" points="252.128,2737.31 265.787,2743.66 270.194,2740.1 255.7,2734.42 " />
<svg:polygon detid="478677220" count="1" value="6" id="207074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 forward    Id 478677220 " fill="rgb(255,244,0)" points="256.851,2733.4 271.315,2739.11 275.233,2735.35 260.026,2730.36 " />
<svg:polygon detid="478677224" count="1" value="6" id="207075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  2 forward    Id 478677224 " fill="rgb(255,244,0)" points="261.039,2729.29 276.219,2734.31 279.623,2730.38 263.797,2726.11 " />
<svg:polygon detid="478677228" count="1" value="6" id="207076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  3 forward    Id 478677228 " fill="rgb(255,244,0)" points="264.665,2725 280.468,2729.3 283.337,2725.23 266.99,2721.7 " />
<svg:polygon detid="478677232" count="1" value="6" id="207077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  0 backward    Id 478677232 " fill="rgb(255,244,0)" points="267.708,2720.55 284.036,2724.11 286.353,2719.92 269.586,2717.15 " />
<svg:polygon detid="478677236" count="1" value="6" id="207078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 8 forward  module  1 backward    Id 478677236 " fill="rgb(255,244,0)" points="270.148,2715.98 286.901,2718.78 288.651,2714.49 271.567,2712.51 " />
<svg:polygon detid="478708212" count="1" value="6" id="207079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  1 backward    Id 478708212 " fill="rgb(255,244,0)" points="271.971,2711.31 289.045,2713.32 290.218,2708.97 272.921,2707.78 " />
<svg:polygon detid="478708200" count="1" value="6" id="207080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 8 ring 0 petal 1 backward  module  2 forward    Id 478708200 " fill="rgb(255,244,0)" points="273.165,2706.57 290.455,2707.79 291.043,2703.39 273.642,2703.01 " />
<svg:polygon detid="478642532" count="1" value="9" id="303001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 forward    Id 478642532 " fill="rgb(255,238,0)" points="216.008,2501.57 225.409,2502.03 225.409,2497.97 216.008,2498.43 " />
<svg:polygon detid="478642536" count="1" value="9" id="303002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  2 forward    Id 478642536 " fill="rgb(255,238,0)" points="215.861,2497.32 225.267,2496.91 224.187,2492.9 215.023,2494.21 " />
<svg:polygon detid="478609764" count="1" value="9" id="303003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 forward    Id 478609764 " fill="rgb(255,238,0)" points="214.584,2493.13 223.764,2491.86 221.631,2488 212.929,2490.14 " />
<svg:polygon detid="478609768" count="1" value="9" id="303004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  2 forward    Id 478609768 " fill="rgb(255,238,0)" points="212.209,2489.12 220.937,2487.01 217.803,2483.39 209.778,2486.31 " />
<svg:polygon detid="478642788" count="1" value="9" id="303005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 forward    Id 478642788 " fill="rgb(255,238,0)" points="208.795,2485.37 216.856,2482.48 212.799,2479.2 205.648,2482.82 " />
<svg:polygon detid="478642792" count="1" value="9" id="303006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  2 forward    Id 478642792 " fill="rgb(255,238,0)" points="204.426,2481.98 211.621,2478.39 206.74,2475.52 200.64,2479.75 " />
<svg:polygon detid="478642796" count="1" value="9" id="303007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  3 forward    Id 478642796 " fill="rgb(255,238,0)" points="199.209,2479.03 205.361,2474.82 199.777,2472.44 194.877,2477.18 " />
<svg:polygon detid="478610020" count="1" value="9" id="303008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 forward    Id 478610020 " fill="rgb(255,238,0)" points="193.273,2476.6 198.23,2471.88 192.081,2470.04 188.502,2475.17 " />
<svg:polygon detid="478610024" count="1" value="9" id="303009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  2 forward    Id 478610024 " fill="rgb(255,238,0)" points="186.764,2474.75 190.405,2469.63 183.84,2468.37 181.671,2473.77 " />
<svg:polygon detid="478643044" count="1" value="9" id="303010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 forward    Id 478643044 " fill="rgb(255,238,0)" points="179.842,2473.52 182.076,2468.13 175.259,2467.49 174.553,2473.02 " />
<svg:polygon detid="478643048" count="1" value="9" id="303011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  2 forward    Id 478643048 " fill="rgb(255,238,0)" points="172.677,2472.94 173.451,2467.41 166.549,2467.41 167.323,2472.94 " />
<svg:polygon detid="478643052" count="1" value="9" id="303012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  3 forward    Id 478643052 " fill="rgb(255,238,0)" points="165.447,2473.02 164.741,2467.49 157.924,2468.13 160.158,2473.52 " />
<svg:polygon detid="478610276" count="1" value="9" id="303013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 forward    Id 478610276 " fill="rgb(255,238,0)" points="158.329,2473.77 156.16,2468.37 149.595,2469.63 153.236,2474.75 " />
<svg:polygon detid="478610280" count="1" value="9" id="303014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  2 forward    Id 478610280 " fill="rgb(255,238,0)" points="151.498,2475.17 147.919,2470.04 141.77,2471.88 146.727,2476.6 " />
<svg:polygon detid="478643300" count="1" value="9" id="303015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 forward    Id 478643300 " fill="rgb(255,238,0)" points="145.123,2477.18 140.223,2472.44 134.639,2474.82 140.791,2479.03 " />
<svg:polygon detid="478643304" count="1" value="9" id="303016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  2 forward    Id 478643304 " fill="rgb(255,238,0)" points="139.36,2479.75 133.26,2475.52 128.379,2478.39 135.574,2481.98 " />
<svg:polygon detid="478643308" count="1" value="9" id="303017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  3 forward    Id 478643308 " fill="rgb(255,238,0)" points="134.352,2482.82 127.201,2479.2 123.144,2482.48 131.205,2485.37 " />
<svg:polygon detid="478610532" count="1" value="9" id="303018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 forward    Id 478610532 " fill="rgb(255,238,0)" points="130.222,2486.31 122.197,2483.39 119.063,2487.01 127.791,2489.12 " />
<svg:polygon detid="478610536" count="1" value="9" id="303019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  2 forward    Id 478610536 " fill="rgb(255,238,0)" points="127.071,2490.14 118.369,2488 116.236,2491.86 125.416,2493.13 " />
<svg:polygon detid="478643556" count="1" value="9" id="303020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 forward    Id 478643556 " fill="rgb(255,238,0)" points="124.977,2494.21 115.813,2492.9 114.733,2496.91 124.139,2497.32 " />
<svg:polygon detid="478643560" count="1" value="9" id="303021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  2 forward    Id 478643560 " fill="rgb(255,238,0)" points="123.992,2498.43 114.591,2497.97 114.591,2502.03 123.992,2501.57 " />
<svg:polygon detid="478643564" count="1" value="9" id="303022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  3 forward    Id 478643564 " fill="rgb(255,238,0)" points="124.139,2502.68 114.733,2503.09 115.813,2507.1 124.977,2505.79 " />
<svg:polygon detid="478610788" count="1" value="9" id="303023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 forward    Id 478610788 " fill="rgb(255,238,0)" points="125.416,2506.87 116.236,2508.14 118.369,2512 127.071,2509.86 " />
<svg:polygon detid="478610792" count="1" value="9" id="303024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  2 forward    Id 478610792 " fill="rgb(255,238,0)" points="127.791,2510.88 119.063,2512.99 122.197,2516.61 130.222,2513.69 " />
<svg:polygon detid="478643812" count="1" value="9" id="303025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 forward    Id 478643812 " fill="rgb(255,238,0)" points="131.205,2514.63 123.144,2517.52 127.201,2520.8 134.352,2517.18 " />
<svg:polygon detid="478643816" count="1" value="9" id="303026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  2 forward    Id 478643816 " fill="rgb(255,238,0)" points="135.574,2518.02 128.379,2521.61 133.26,2524.48 139.36,2520.25 " />
<svg:polygon detid="478643820" count="1" value="9" id="303027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  3 forward    Id 478643820 " fill="rgb(255,238,0)" points="140.791,2520.97 134.639,2525.18 140.223,2527.56 145.123,2522.82 " />
<svg:polygon detid="478611044" count="1" value="9" id="303028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 forward    Id 478611044 " fill="rgb(255,238,0)" points="146.727,2523.4 141.77,2528.12 147.919,2529.96 151.498,2524.83 " />
<svg:polygon detid="478611048" count="1" value="9" id="303029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  2 forward    Id 478611048 " fill="rgb(255,238,0)" points="153.236,2525.25 149.595,2530.37 156.16,2531.63 158.329,2526.23 " />
<svg:polygon detid="478644068" count="1" value="9" id="303030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 forward    Id 478644068 " fill="rgb(255,238,0)" points="160.158,2526.48 157.924,2531.87 164.741,2532.51 165.447,2526.98 " />
<svg:polygon detid="478644072" count="1" value="9" id="303031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  2 forward    Id 478644072 " fill="rgb(255,238,0)" points="167.323,2527.06 166.549,2532.59 173.451,2532.59 172.677,2527.06 " />
<svg:polygon detid="478644076" count="1" value="9" id="303032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  3 forward    Id 478644076 " fill="rgb(255,238,0)" points="174.553,2526.98 175.259,2532.51 182.076,2531.87 179.842,2526.48 " />
<svg:polygon detid="478611300" count="1" value="9" id="303033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 forward    Id 478611300 " fill="rgb(255,238,0)" points="181.671,2526.23 183.84,2531.63 190.405,2530.37 186.764,2525.25 " />
<svg:polygon detid="478611304" count="1" value="9" id="303034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  2 forward    Id 478611304 " fill="rgb(255,238,0)" points="188.502,2524.83 192.081,2529.96 198.23,2528.12 193.273,2523.4 " />
<svg:polygon detid="478644324" count="1" value="9" id="303035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 forward    Id 478644324 " fill="rgb(255,238,0)" points="194.877,2522.82 199.777,2527.56 205.361,2525.18 199.209,2520.97 " />
<svg:polygon detid="478644328" count="1" value="9" id="303036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  2 forward    Id 478644328 " fill="rgb(255,238,0)" points="200.64,2520.25 206.74,2524.48 211.621,2521.61 204.426,2518.02 " />
<svg:polygon detid="478644332" count="1" value="9" id="303037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  3 forward    Id 478644332 " fill="rgb(255,238,0)" points="205.648,2517.18 212.799,2520.8 216.856,2517.52 208.795,2514.63 " />
<svg:polygon detid="478611556" count="1" value="9" id="303038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 forward    Id 478611556 " fill="rgb(255,238,0)" points="209.778,2513.69 217.803,2516.61 220.937,2512.99 212.209,2510.88 " />
<svg:polygon detid="478611560" count="1" value="9" id="303039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  2 forward    Id 478611560 " fill="rgb(255,238,0)" points="212.929,2509.86 221.631,2512 223.764,2508.14 214.584,2506.87 " />
<svg:polygon detid="478642540" count="1" value="9" id="303040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  3 forward    Id 478642540 " fill="rgb(255,238,0)" points="215.023,2505.79 224.187,2507.1 225.267,2503.09 215.861,2502.68 " />
<svg:polygon detid="478642568" count="1" value="9" id="304001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  2 forward    Id 478642568 " fill="rgb(255,238,0)" points="228.822,2499.51 238.623,2499.52 238.282,2495.96 228.546,2496.62 " />
<svg:polygon detid="478642572" count="1" value="9" id="304002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  3 forward    Id 478642572 " fill="rgb(255,238,0)" points="228.359,2495.64 238.1,2495 237.083,2491.48 227.534,2492.78 " />
<svg:polygon detid="478609796" count="1" value="9" id="304003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 forward    Id 478609796 " fill="rgb(255,238,0)" points="227.161,2491.82 236.721,2490.55 235.041,2487.12 225.798,2489.04 " />
<svg:polygon detid="478609800" count="1" value="9" id="304004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  2 forward    Id 478609800 " fill="rgb(255,238,0)" points="225.244,2488.11 234.503,2486.22 232.18,2482.92 223.361,2485.43 " />
<svg:polygon detid="478609804" count="1" value="9" id="304005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  3 forward    Id 478609804 " fill="rgb(255,238,0)" points="222.633,2484.54 231.473,2482.05 228.538,2478.93 220.253,2482.01 " />
<svg:polygon detid="478642820" count="1" value="9" id="304006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 forward    Id 478642820 " fill="rgb(255,238,0)" points="219.36,2481.17 227.671,2478.12 224.159,2475.21 216.512,2478.81 " />
<svg:polygon detid="478642824" count="1" value="9" id="304007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  2 forward    Id 478642824 " fill="rgb(255,238,0)" points="215.466,2478.04 223.143,2474.46 219.099,2471.8 212.187,2475.88 " />
<svg:polygon detid="478642828" count="1" value="9" id="304008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  3 forward    Id 478642828 " fill="rgb(255,238,0)" points="211.001,2475.18 217.948,2471.12 213.422,2468.74 207.331,2473.26 " />
<svg:polygon detid="478642832" count="1" value="9" id="304009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  0 backward    Id 478642832 " fill="rgb(255,238,0)" points="206.019,2472.64 212.149,2468.14 207.199,2466.08 202.006,2470.96 " />
<svg:polygon detid="478610052" count="1" value="9" id="304010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 forward    Id 478610052 " fill="rgb(255,238,0)" points="200.585,2470.44 205.82,2465.57 200.508,2463.84 196.278,2469.04 " />
<svg:polygon detid="478610056" count="1" value="9" id="304011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  2 forward    Id 478610056 " fill="rgb(255,238,0)" points="194.766,2468.61 199.04,2463.42 193.433,2462.06 190.219,2467.5 " />
<svg:polygon detid="478610060" count="1" value="9" id="304012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  3 forward    Id 478610060 " fill="rgb(255,238,0)" points="188.636,2467.18 191.896,2461.74 186.064,2460.75 183.907,2466.38 " />
<svg:polygon detid="478643076" count="1" value="9" id="304013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 forward    Id 478643076 " fill="rgb(255,238,0)" points="182.271,2466.16 184.476,2460.54 178.493,2459.94 177.419,2465.67 " />
<svg:polygon detid="478643080" count="1" value="9" id="304014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  2 forward    Id 478643080 " fill="rgb(255,238,0)" points="175.753,2465.56 176.874,2459.83 170.814,2459.63 170.839,2465.4 " />
<svg:polygon detid="478643084" count="1" value="9" id="304015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  3 forward    Id 478643084 " fill="rgb(255,238,0)" points="169.161,2465.4 169.186,2459.63 163.126,2459.83 164.247,2465.56 " />
<svg:polygon detid="478643088" count="1" value="9" id="304016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  0 backward    Id 478643088 " fill="rgb(255,238,0)" points="162.581,2465.67 161.507,2459.94 155.524,2460.54 157.729,2466.16 " />
<svg:polygon detid="478610308" count="1" value="9" id="304017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 forward    Id 478610308 " fill="rgb(255,238,0)" points="156.093,2466.38 153.936,2460.75 148.104,2461.74 151.364,2467.18 " />
<svg:polygon detid="478610312" count="1" value="9" id="304018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  2 forward    Id 478610312 " fill="rgb(255,238,0)" points="149.781,2467.5 146.567,2462.06 140.96,2463.42 145.234,2468.61 " />
<svg:polygon detid="478610316" count="1" value="9" id="304019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  3 forward    Id 478610316 " fill="rgb(255,238,0)" points="143.722,2469.04 139.492,2463.84 134.18,2465.57 139.415,2470.44 " />
<svg:polygon detid="478643332" count="1" value="9" id="304020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 forward    Id 478643332 " fill="rgb(255,238,0)" points="137.994,2470.96 132.801,2466.08 127.851,2468.14 133.981,2472.64 " />
<svg:polygon detid="478643336" count="1" value="9" id="304021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  2 forward    Id 478643336 " fill="rgb(255,238,0)" points="132.669,2473.26 126.578,2468.74 122.052,2471.12 128.999,2475.18 " />
<svg:polygon detid="478643340" count="1" value="9" id="304022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  3 forward    Id 478643340 " fill="rgb(255,238,0)" points="127.813,2475.88 120.901,2471.8 116.857,2474.46 124.534,2478.04 " />
<svg:polygon detid="478643344" count="1" value="9" id="304023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  0 backward    Id 478643344 " fill="rgb(255,238,0)" points="123.488,2478.81 115.841,2475.21 112.329,2478.12 120.64,2481.17 " />
<svg:polygon detid="478610564" count="1" value="9" id="304024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 forward    Id 478610564 " fill="rgb(255,238,0)" points="119.747,2482.01 111.462,2478.93 108.527,2482.05 117.367,2484.54 " />
<svg:polygon detid="478610568" count="1" value="9" id="304025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  2 forward    Id 478610568 " fill="rgb(255,238,0)" points="116.639,2485.43 107.82,2482.92 105.497,2486.22 114.756,2488.11 " />
<svg:polygon detid="478610572" count="1" value="9" id="304026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  3 forward    Id 478610572 " fill="rgb(255,238,0)" points="114.202,2489.04 104.959,2487.12 103.279,2490.55 112.839,2491.82 " />
<svg:polygon detid="478643588" count="1" value="9" id="304027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 forward    Id 478643588 " fill="rgb(255,238,0)" points="112.466,2492.78 102.917,2491.48 101.9,2495 111.641,2495.64 " />
<svg:polygon detid="478643592" count="1" value="9" id="304028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  2 forward    Id 478643592 " fill="rgb(255,238,0)" points="111.454,2496.62 101.718,2495.96 101.377,2499.52 111.178,2499.51 " />
<svg:polygon detid="478643596" count="1" value="9" id="304029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  3 forward    Id 478643596 " fill="rgb(255,238,0)" points="111.178,2500.49 101.377,2500.48 101.718,2504.04 111.454,2503.38 " />
<svg:polygon detid="478643600" count="1" value="9" id="304030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  0 backward    Id 478643600 " fill="rgb(255,238,0)" points="111.641,2504.36 101.9,2505 102.917,2508.52 112.466,2507.22 " />
<svg:polygon detid="478610820" count="1" value="9" id="304031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 forward    Id 478610820 " fill="rgb(255,238,0)" points="112.839,2508.18 103.279,2509.45 104.959,2512.88 114.202,2510.96 " />
<svg:polygon detid="478610824" count="1" value="9" id="304032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  2 forward    Id 478610824 " fill="rgb(255,238,0)" points="114.756,2511.89 105.497,2513.78 107.82,2517.08 116.639,2514.57 " />
<svg:polygon detid="478610828" count="1" value="9" id="304033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  3 forward    Id 478610828 " fill="rgb(255,238,0)" points="117.367,2515.46 108.527,2517.95 111.462,2521.07 119.747,2517.99 " />
<svg:polygon detid="478643844" count="1" value="9" id="304034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 forward    Id 478643844 " fill="rgb(255,238,0)" points="120.64,2518.83 112.329,2521.88 115.841,2524.79 123.488,2521.19 " />
<svg:polygon detid="478643848" count="1" value="9" id="304035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  2 forward    Id 478643848 " fill="rgb(255,238,0)" points="124.534,2521.96 116.857,2525.54 120.901,2528.2 127.813,2524.12 " />
<svg:polygon detid="478643852" count="1" value="9" id="304036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  3 forward    Id 478643852 " fill="rgb(255,238,0)" points="128.999,2524.82 122.052,2528.88 126.578,2531.26 132.669,2526.74 " />
<svg:polygon detid="478643856" count="1" value="9" id="304037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  0 backward    Id 478643856 " fill="rgb(255,238,0)" points="133.981,2527.36 127.851,2531.86 132.801,2533.92 137.994,2529.04 " />
<svg:polygon detid="478611076" count="1" value="9" id="304038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 forward    Id 478611076 " fill="rgb(255,238,0)" points="139.415,2529.56 134.18,2534.43 139.492,2536.16 143.722,2530.96 " />
<svg:polygon detid="478611080" count="1" value="9" id="304039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  2 forward    Id 478611080 " fill="rgb(255,238,0)" points="145.234,2531.39 140.96,2536.58 146.567,2537.94 149.781,2532.5 " />
<svg:polygon detid="478611084" count="1" value="9" id="304040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  3 forward    Id 478611084 " fill="rgb(255,238,0)" points="151.364,2532.82 148.104,2538.26 153.936,2539.25 156.093,2533.62 " />
<svg:polygon detid="478644100" count="1" value="9" id="304041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 forward    Id 478644100 " fill="rgb(255,238,0)" points="157.729,2533.84 155.524,2539.46 161.507,2540.06 162.581,2534.33 " />
<svg:polygon detid="478644104" count="1" value="9" id="304042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  2 forward    Id 478644104 " fill="rgb(255,238,0)" points="164.247,2534.44 163.126,2540.17 169.186,2540.37 169.161,2534.6 " />
<svg:polygon detid="478644108" count="1" value="9" id="304043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  3 forward    Id 478644108 " fill="rgb(255,238,0)" points="170.839,2534.6 170.814,2540.37 176.874,2540.17 175.753,2534.44 " />
<svg:polygon detid="478644112" count="1" value="9" id="304044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  0 backward    Id 478644112 " fill="rgb(255,238,0)" points="177.419,2534.33 178.493,2540.06 184.476,2539.46 182.271,2533.84 " />
<svg:polygon detid="478611332" count="1" value="9" id="304045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 forward    Id 478611332 " fill="rgb(255,238,0)" points="183.907,2533.62 186.064,2539.25 191.896,2538.26 188.636,2532.82 " />
<svg:polygon detid="478611336" count="1" value="9" id="304046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  2 forward    Id 478611336 " fill="rgb(255,238,0)" points="190.219,2532.5 193.433,2537.94 199.04,2536.58 194.766,2531.39 " />
<svg:polygon detid="478611340" count="1" value="9" id="304047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  3 forward    Id 478611340 " fill="rgb(255,238,0)" points="196.278,2530.96 200.508,2536.16 205.82,2534.43 200.585,2529.56 " />
<svg:polygon detid="478644356" count="1" value="9" id="304048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 forward    Id 478644356 " fill="rgb(255,238,0)" points="202.006,2529.04 207.199,2533.92 212.149,2531.86 206.019,2527.36 " />
<svg:polygon detid="478644360" count="1" value="9" id="304049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  2 forward    Id 478644360 " fill="rgb(255,238,0)" points="207.331,2526.74 213.422,2531.26 217.948,2528.88 211.001,2524.82 " />
<svg:polygon detid="478644364" count="1" value="9" id="304050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  3 forward    Id 478644364 " fill="rgb(255,238,0)" points="212.187,2524.12 219.099,2528.2 223.143,2525.54 215.466,2521.96 " />
<svg:polygon detid="478644368" count="1" value="9" id="304051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  0 backward    Id 478644368 " fill="rgb(255,238,0)" points="216.512,2521.19 224.159,2524.79 227.671,2521.88 219.36,2518.83 " />
<svg:polygon detid="478611588" count="1" value="9" id="304052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 forward    Id 478611588 " fill="rgb(255,238,0)" points="220.253,2517.99 228.538,2521.07 231.473,2517.95 222.633,2515.46 " />
<svg:polygon detid="478611592" count="1" value="9" id="304053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  2 forward    Id 478611592 " fill="rgb(255,238,0)" points="223.361,2514.57 232.18,2517.08 234.503,2513.78 225.244,2511.89 " />
<svg:polygon detid="478611596" count="1" value="9" id="304054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  3 forward    Id 478611596 " fill="rgb(255,238,0)" points="225.798,2510.96 235.041,2512.88 236.721,2509.45 227.161,2508.18 " />
<svg:polygon detid="478642576" count="1" value="9" id="304055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  0 backward    Id 478642576 " fill="rgb(255,238,0)" points="227.534,2507.22 237.083,2508.52 238.1,2505 228.359,2504.36 " />
<svg:polygon detid="478642564" count="1" value="9" id="304056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 forward    Id 478642564 " fill="rgb(255,238,0)" points="228.546,2503.38 238.282,2504.04 238.623,2500.48 228.822,2500.49 " />
<svg:polygon detid="478642602" count="1" value="9" id="305001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  2 forward    Id 478642602 " fill="rgb(255,238,0)" points="252.313,2493.17 239.92,2494.35 240.562,2499.15 " />
<svg:polygon detid="478609830" count="1" value="9" id="305002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 forward    Id 478609830 " fill="rgb(255,238,0)" points="249.484,2485.68 237.556,2487.98 239.467,2492.67 " />
<svg:polygon detid="478609834" count="1" value="9" id="305003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  2 forward    Id 478609834 " fill="rgb(255,238,0)" points="244.698,2478.54 233.528,2481.92 236.661,2486.36 " />
<svg:polygon detid="478609838" count="1" value="9" id="305004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  3 forward    Id 478609838 " fill="rgb(255,238,0)" points="238.072,2471.93 227.937,2476.29 232.214,2480.4 " />
<svg:polygon detid="478642854" count="1" value="9" id="305005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 forward    Id 478642854 " fill="rgb(255,238,0)" points="229.77,2466.02 220.919,2471.25 226.235,2474.91 " />
<svg:polygon detid="478642858" count="1" value="9" id="305006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  2 forward    Id 478642858 " fill="rgb(255,238,0)" points="219.997,2460.93 212.647,2466.92 218.871,2470.05 " />
<svg:polygon detid="478610086" count="1" value="9" id="305007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 forward    Id 478610086 " fill="rgb(255,238,0)" points="208.992,2456.81 203.324,2463.4 210.304,2465.92 " />
<svg:polygon detid="478610090" count="1" value="9" id="305008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  2 forward    Id 478610090 " fill="rgb(255,238,0)" points="197.028,2453.76 193.182,2460.79 200.744,2462.63 " />
<svg:polygon detid="478610094" count="1" value="9" id="305009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  3 forward    Id 478610094 " fill="rgb(255,238,0)" points="184.397,2451.84 182.468,2459.14 190.428,2460.26 " />
<svg:polygon detid="478643110" count="1" value="9" id="305010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 forward    Id 478643110 " fill="rgb(255,238,0)" points="171.413,2451.11 171.448,2458.49 179.608,2458.87 " />
<svg:polygon detid="478643114" count="1" value="9" id="305011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  2 forward    Id 478643114 " fill="rgb(255,238,0)" points="158.393,2451.58 160.392,2458.87 168.552,2458.49 " />
<svg:polygon detid="478610342" count="1" value="9" id="305012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 forward    Id 478610342 " fill="rgb(255,238,0)" points="145.66,2453.24 149.572,2460.26 157.532,2459.14 " />
<svg:polygon detid="478610346" count="1" value="9" id="305013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  2 forward    Id 478610346 " fill="rgb(255,238,0)" points="133.525,2456.06 139.256,2462.63 146.818,2460.79 " />
<svg:polygon detid="478610350" count="1" value="9" id="305014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  3 forward    Id 478610350 " fill="rgb(255,238,0)" points="122.289,2459.96 129.696,2465.92 136.676,2463.4 " />
<svg:polygon detid="478643366" count="1" value="9" id="305015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 forward    Id 478643366 " fill="rgb(255,238,0)" points="112.228,2464.84 121.129,2470.05 127.353,2466.92 " />
<svg:polygon detid="478643370" count="1" value="9" id="305016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  2 forward    Id 478643370 " fill="rgb(255,238,0)" points="103.589,2470.59 113.765,2474.91 119.081,2471.25 " />
<svg:polygon detid="478610598" count="1" value="9" id="305017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 forward    Id 478610598 " fill="rgb(255,238,0)" points="96.5852,2477.06 107.786,2480.4 112.063,2476.29 " />
<svg:polygon detid="478610602" count="1" value="9" id="305018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  2 forward    Id 478610602 " fill="rgb(255,238,0)" points="91.3893,2484.1 103.339,2486.36 106.472,2481.92 " />
<svg:polygon detid="478610606" count="1" value="9" id="305019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  3 forward    Id 478610606 " fill="rgb(255,238,0)" points="88.129,2491.53 100.533,2492.67 102.444,2487.98 " />
<svg:polygon detid="478643622" count="1" value="9" id="305020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 forward    Id 478643622 " fill="rgb(255,238,0)" points="86.8848,2499.17 99.4383,2499.15 100.08,2494.35 " />
<svg:polygon detid="478643626" count="1" value="9" id="305021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  2 forward    Id 478643626 " fill="rgb(255,238,0)" points="87.6871,2506.83 100.08,2505.65 99.4383,2500.85 " />
<svg:polygon detid="478610854" count="1" value="9" id="305022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 forward    Id 478610854 " fill="rgb(255,238,0)" points="90.5161,2514.32 102.444,2512.02 100.533,2507.33 " />
<svg:polygon detid="478610858" count="1" value="9" id="305023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  2 forward    Id 478610858 " fill="rgb(255,238,0)" points="95.3024,2521.46 106.472,2518.08 103.339,2513.64 " />
<svg:polygon detid="478610862" count="1" value="9" id="305024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  3 forward    Id 478610862 " fill="rgb(255,238,0)" points="101.928,2528.07 112.063,2523.71 107.786,2519.6 " />
<svg:polygon detid="478643878" count="1" value="9" id="305025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 forward    Id 478643878 " fill="rgb(255,238,0)" points="110.23,2533.98 119.081,2528.75 113.765,2525.09 " />
<svg:polygon detid="478643882" count="1" value="9" id="305026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  2 forward    Id 478643882 " fill="rgb(255,238,0)" points="120.003,2539.07 127.353,2533.08 121.129,2529.95 " />
<svg:polygon detid="478611110" count="1" value="9" id="305027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 forward    Id 478611110 " fill="rgb(255,238,0)" points="131.008,2543.19 136.676,2536.6 129.696,2534.08 " />
<svg:polygon detid="478611114" count="1" value="9" id="305028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  2 forward    Id 478611114 " fill="rgb(255,238,0)" points="142.972,2546.24 146.818,2539.21 139.256,2537.37 " />
<svg:polygon detid="478611118" count="1" value="9" id="305029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  3 forward    Id 478611118 " fill="rgb(255,238,0)" points="155.603,2548.16 157.532,2540.86 149.572,2539.74 " />
<svg:polygon detid="478644134" count="1" value="9" id="305030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 forward    Id 478644134 " fill="rgb(255,238,0)" points="168.587,2548.89 168.552,2541.51 160.392,2541.13 " />
<svg:polygon detid="478644138" count="1" value="9" id="305031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  2 forward    Id 478644138 " fill="rgb(255,238,0)" points="181.607,2548.42 179.608,2541.13 171.448,2541.51 " />
<svg:polygon detid="478611366" count="1" value="9" id="305032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 forward    Id 478611366 " fill="rgb(255,238,0)" points="194.34,2546.76 190.428,2539.74 182.468,2540.86 " />
<svg:polygon detid="478611370" count="1" value="9" id="305033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  2 forward    Id 478611370 " fill="rgb(255,238,0)" points="206.475,2543.94 200.744,2537.37 193.182,2539.21 " />
<svg:polygon detid="478611374" count="1" value="9" id="305034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  3 forward    Id 478611374 " fill="rgb(255,238,0)" points="217.711,2540.04 210.304,2534.08 203.324,2536.6 " />
<svg:polygon detid="478644390" count="1" value="9" id="305035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 forward    Id 478644390 " fill="rgb(255,238,0)" points="227.772,2535.16 218.871,2529.95 212.647,2533.08 " />
<svg:polygon detid="478644394" count="1" value="9" id="305036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  2 forward    Id 478644394 " fill="rgb(255,238,0)" points="236.411,2529.41 226.235,2525.09 220.919,2528.75 " />
<svg:polygon detid="478611622" count="1" value="9" id="305037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 forward    Id 478611622 " fill="rgb(255,238,0)" points="243.415,2522.94 232.214,2519.6 227.937,2523.71 " />
<svg:polygon detid="478611626" count="1" value="9" id="305038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  2 forward    Id 478611626 " fill="rgb(255,238,0)" points="248.611,2515.9 236.661,2513.64 233.528,2518.08 " />
<svg:polygon detid="478611630" count="1" value="9" id="305039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  3 forward    Id 478611630 " fill="rgb(255,238,0)" points="251.871,2508.47 239.467,2507.33 237.556,2512.02 " />
<svg:polygon detid="478642598" count="1" value="9" id="305040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 forward    Id 478642598 " fill="rgb(255,238,0)" points="253.115,2500.83 240.562,2500.85 239.92,2505.65 " />
<svg:polygon detid="478642601" count="1" value="9" id="305101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  2 forward   stereo Id 478642601 " fill="rgb(255,238,0)" points="240.562,2499.15 253.115,2499.17 252.313,2493.17 " />
<svg:polygon detid="478609829" count="1" value="9" id="305102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 forward   stereo Id 478609829 " fill="rgb(255,238,0)" points="239.467,2492.67 251.871,2491.53 249.484,2485.68 " />
<svg:polygon detid="478609833" count="1" value="9" id="305103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  2 forward   stereo Id 478609833 " fill="rgb(255,238,0)" points="236.661,2486.36 248.611,2484.1 244.698,2478.54 " />
<svg:polygon detid="478609837" count="1" value="9" id="305104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  3 forward   stereo Id 478609837 " fill="rgb(255,238,0)" points="232.214,2480.4 243.415,2477.06 238.072,2471.93 " />
<svg:polygon detid="478642853" count="1" value="9" id="305105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 forward   stereo Id 478642853 " fill="rgb(255,238,0)" points="226.235,2474.91 236.411,2470.59 229.77,2466.02 " />
<svg:polygon detid="478642857" count="1" value="9" id="305106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  2 forward   stereo Id 478642857 " fill="rgb(255,238,0)" points="218.871,2470.05 227.772,2464.84 219.997,2460.93 " />
<svg:polygon detid="478610085" count="1" value="9" id="305107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 forward   stereo Id 478610085 " fill="rgb(255,238,0)" points="210.304,2465.92 217.711,2459.96 208.992,2456.81 " />
<svg:polygon detid="478610089" count="1" value="9" id="305108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  2 forward   stereo Id 478610089 " fill="rgb(255,238,0)" points="200.744,2462.63 206.475,2456.06 197.028,2453.76 " />
<svg:polygon detid="478610093" count="1" value="9" id="305109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  3 forward   stereo Id 478610093 " fill="rgb(255,238,0)" points="190.428,2460.26 194.34,2453.24 184.397,2451.84 " />
<svg:polygon detid="478643109" count="1" value="9" id="305110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 forward   stereo Id 478643109 " fill="rgb(255,238,0)" points="179.608,2458.87 181.607,2451.58 171.413,2451.11 " />
<svg:polygon detid="478643113" count="1" value="9" id="305111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  2 forward   stereo Id 478643113 " fill="rgb(255,238,0)" points="168.552,2458.49 168.587,2451.11 158.393,2451.58 " />
<svg:polygon detid="478610341" count="1" value="9" id="305112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 forward   stereo Id 478610341 " fill="rgb(255,238,0)" points="157.532,2459.14 155.603,2451.84 145.66,2453.24 " />
<svg:polygon detid="478610345" count="1" value="9" id="305113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  2 forward   stereo Id 478610345 " fill="rgb(255,238,0)" points="146.818,2460.79 142.972,2453.76 133.525,2456.06 " />
<svg:polygon detid="478610349" count="1" value="9" id="305114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  3 forward   stereo Id 478610349 " fill="rgb(255,238,0)" points="136.676,2463.4 131.008,2456.81 122.289,2459.96 " />
<svg:polygon detid="478643365" count="1" value="9" id="305115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 forward   stereo Id 478643365 " fill="rgb(255,238,0)" points="127.353,2466.92 120.003,2460.93 112.228,2464.84 " />
<svg:polygon detid="478643369" count="1" value="9" id="305116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  2 forward   stereo Id 478643369 " fill="rgb(255,238,0)" points="119.081,2471.25 110.23,2466.02 103.589,2470.59 " />
<svg:polygon detid="478610597" count="1" value="9" id="305117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 forward   stereo Id 478610597 " fill="rgb(255,238,0)" points="112.063,2476.29 101.928,2471.93 96.5852,2477.06 " />
<svg:polygon detid="478610601" count="1" value="9" id="305118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  2 forward   stereo Id 478610601 " fill="rgb(255,238,0)" points="106.472,2481.92 95.3024,2478.54 91.3893,2484.1 " />
<svg:polygon detid="478610605" count="1" value="9" id="305119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  3 forward   stereo Id 478610605 " fill="rgb(255,238,0)" points="102.444,2487.98 90.5161,2485.68 88.129,2491.53 " />
<svg:polygon detid="478643621" count="1" value="9" id="305120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 forward   stereo Id 478643621 " fill="rgb(255,238,0)" points="100.08,2494.35 87.6871,2493.17 86.8848,2499.17 " />
<svg:polygon detid="478643625" count="1" value="9" id="305121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  2 forward   stereo Id 478643625 " fill="rgb(255,238,0)" points="99.4383,2500.85 86.8848,2500.83 87.6871,2506.83 " />
<svg:polygon detid="478610853" count="1" value="9" id="305122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 forward   stereo Id 478610853 " fill="rgb(255,238,0)" points="100.533,2507.33 88.129,2508.47 90.5161,2514.32 " />
<svg:polygon detid="478610857" count="1" value="9" id="305123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  2 forward   stereo Id 478610857 " fill="rgb(255,238,0)" points="103.339,2513.64 91.3893,2515.9 95.3024,2521.46 " />
<svg:polygon detid="478610861" count="1" value="9" id="305124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  3 forward   stereo Id 478610861 " fill="rgb(255,238,0)" points="107.786,2519.6 96.5852,2522.94 101.928,2528.07 " />
<svg:polygon detid="478643877" count="1" value="9" id="305125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 forward   stereo Id 478643877 " fill="rgb(255,238,0)" points="113.765,2525.09 103.589,2529.41 110.23,2533.98 " />
<svg:polygon detid="478643881" count="1" value="9" id="305126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  2 forward   stereo Id 478643881 " fill="rgb(255,238,0)" points="121.129,2529.95 112.228,2535.16 120.003,2539.07 " />
<svg:polygon detid="478611109" count="1" value="9" id="305127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 forward   stereo Id 478611109 " fill="rgb(255,238,0)" points="129.696,2534.08 122.289,2540.04 131.008,2543.19 " />
<svg:polygon detid="478611113" count="1" value="9" id="305128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  2 forward   stereo Id 478611113 " fill="rgb(255,238,0)" points="139.256,2537.37 133.525,2543.94 142.972,2546.24 " />
<svg:polygon detid="478611117" count="1" value="9" id="305129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  3 forward   stereo Id 478611117 " fill="rgb(255,238,0)" points="149.572,2539.74 145.66,2546.76 155.603,2548.16 " />
<svg:polygon detid="478644133" count="1" value="9" id="305130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 forward   stereo Id 478644133 " fill="rgb(255,238,0)" points="160.392,2541.13 158.393,2548.42 168.587,2548.89 " />
<svg:polygon detid="478644137" count="1" value="9" id="305131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  2 forward   stereo Id 478644137 " fill="rgb(255,238,0)" points="171.448,2541.51 171.413,2548.89 181.607,2548.42 " />
<svg:polygon detid="478611365" count="1" value="9" id="305132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 forward   stereo Id 478611365 " fill="rgb(255,238,0)" points="182.468,2540.86 184.397,2548.16 194.34,2546.76 " />
<svg:polygon detid="478611369" count="1" value="9" id="305133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  2 forward   stereo Id 478611369 " fill="rgb(255,238,0)" points="193.182,2539.21 197.028,2546.24 206.475,2543.94 " />
<svg:polygon detid="478611373" count="1" value="9" id="305134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  3 forward   stereo Id 478611373 " fill="rgb(255,238,0)" points="203.324,2536.6 208.992,2543.19 217.711,2540.04 " />
<svg:polygon detid="478644389" count="1" value="9" id="305135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 forward   stereo Id 478644389 " fill="rgb(255,238,0)" points="212.647,2533.08 219.997,2539.07 227.772,2535.16 " />
<svg:polygon detid="478644393" count="1" value="9" id="305136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  2 forward   stereo Id 478644393 " fill="rgb(255,238,0)" points="220.919,2528.75 229.77,2533.98 236.411,2529.41 " />
<svg:polygon detid="478611621" count="1" value="9" id="305137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 forward   stereo Id 478611621 " fill="rgb(255,238,0)" points="227.937,2523.71 238.072,2528.07 243.415,2522.94 " />
<svg:polygon detid="478611625" count="1" value="9" id="305138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  2 forward   stereo Id 478611625 " fill="rgb(255,238,0)" points="233.528,2518.08 244.698,2521.46 248.611,2515.9 " />
<svg:polygon detid="478611629" count="1" value="9" id="305139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  3 forward   stereo Id 478611629 " fill="rgb(255,238,0)" points="237.556,2512.02 249.484,2514.32 251.871,2508.47 " />
<svg:polygon detid="478642597" count="1" value="9" id="305140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 forward   stereo Id 478642597 " fill="rgb(255,238,0)" points="239.92,2505.65 252.313,2506.83 253.115,2500.83 " />
<svg:polygon detid="478642628" count="1" value="9" id="306001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 forward    Id 478642628 " fill="rgb(255,238,0)" points="255.048,2499.28 270.706,2499.3 270.206,2494.06 254.65,2495.12 " />
<svg:polygon detid="478642636" count="1" value="9" id="306002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  3 forward    Id 478642636 " fill="rgb(255,238,0)" points="254.376,2493.68 269.939,2492.67 268.446,2487.5 253.188,2489.57 " />
<svg:polygon detid="478609860" count="1" value="9" id="306003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 forward    Id 478609860 " fill="rgb(255,238,0)" points="252.643,2488.16 267.916,2486.14 265.448,2481.1 250.68,2484.16 " />
<svg:polygon detid="478609864" count="1" value="9" id="306004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  2 forward    Id 478609864 " fill="rgb(255,238,0)" points="249.87,2482.8 264.662,2479.77 261.249,2474.93 247.157,2478.94 " />
<svg:polygon detid="478609868" count="1" value="9" id="306005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  3 forward    Id 478609868 " fill="rgb(255,238,0)" points="246.093,2477.64 260.216,2473.67 255.903,2469.08 242.664,2473.99 " />
<svg:polygon detid="478642884" count="1" value="9" id="306006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 forward    Id 478642884 " fill="rgb(255,238,0)" points="241.36,2472.77 254.637,2467.89 249.477,2463.61 237.257,2469.37 " />
<svg:polygon detid="478642888" count="1" value="9" id="306007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  2 forward    Id 478642888 " fill="rgb(255,238,0)" points="235.729,2468.24 247.993,2462.52 242.051,2458.61 231.005,2465.13 " />
<svg:polygon detid="478642892" count="1" value="9" id="306008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  3 forward    Id 478642892 " fill="rgb(255,238,0)" points="229.271,2464.11 240.368,2457.62 233.72,2454.12 223.985,2461.34 " />
<svg:polygon detid="478642896" count="1" value="9" id="306009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  0 backward    Id 478642896 " fill="rgb(255,238,0)" points="222.068,2460.44 231.859,2453.25 224.587,2450.21 216.286,2458.02 " />
<svg:polygon detid="478610116" count="1" value="9" id="306010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 forward    Id 478610116 " fill="rgb(255,238,0)" points="214.21,2457.26 222.571,2449.47 214.767,2446.93 208.006,2455.24 " />
<svg:polygon detid="478610120" count="1" value="9" id="306011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  2 forward    Id 478610120 " fill="rgb(255,238,0)" points="205.796,2454.61 212.622,2446.32 204.385,2444.32 199.247,2453.02 " />
<svg:polygon detid="478610124" count="1" value="9" id="306012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  3 forward    Id 478610124 " fill="rgb(255,238,0)" points="196.932,2452.54 202.138,2443.85 193.57,2442.4 190.12,2451.39 " />
<svg:polygon detid="478643140" count="1" value="9" id="306013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 forward    Id 478643140 " fill="rgb(255,238,0)" points="187.73,2451.07 191.249,2442.09 182.458,2441.21 180.741,2450.37 " />
<svg:polygon detid="478643144" count="1" value="9" id="306014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  2 forward    Id 478643144 " fill="rgb(255,238,0)" points="178.304,2450.21 180.093,2441.06 171.19,2440.76 171.226,2449.97 " />
<svg:polygon detid="478643148" count="1" value="9" id="306015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  3 forward    Id 478643148 " fill="rgb(255,238,0)" points="168.774,2449.97 168.81,2440.76 159.907,2441.06 161.696,2450.21 " />
<svg:polygon detid="478643152" count="1" value="9" id="306016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  0 backward    Id 478643152 " fill="rgb(255,238,0)" points="159.259,2450.37 157.542,2441.21 148.751,2442.09 152.27,2451.07 " />
<svg:polygon detid="478610372" count="1" value="9" id="306017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 forward    Id 478610372 " fill="rgb(255,238,0)" points="149.88,2451.39 146.43,2442.4 137.862,2443.85 143.068,2452.54 " />
<svg:polygon detid="478610376" count="1" value="9" id="306018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  2 forward    Id 478610376 " fill="rgb(255,238,0)" points="140.753,2453.02 135.615,2444.32 127.378,2446.32 134.204,2454.61 " />
<svg:polygon detid="478610380" count="1" value="9" id="306019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  3 forward    Id 478610380 " fill="rgb(255,238,0)" points="131.994,2455.24 125.233,2446.93 117.429,2449.47 125.79,2457.26 " />
<svg:polygon detid="478643396" count="1" value="9" id="306020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 forward    Id 478643396 " fill="rgb(255,238,0)" points="123.714,2458.02 115.413,2450.21 108.141,2453.25 117.932,2460.44 " />
<svg:polygon detid="478643400" count="1" value="9" id="306021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  2 forward    Id 478643400 " fill="rgb(255,238,0)" points="116.015,2461.34 106.28,2454.12 99.6318,2457.62 110.729,2464.11 " />
<svg:polygon detid="478643404" count="1" value="9" id="306022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  3 forward    Id 478643404 " fill="rgb(255,238,0)" points="108.995,2465.13 97.9486,2458.61 92.0071,2462.52 104.271,2468.24 " />
<svg:polygon detid="478643408" count="1" value="9" id="306023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  0 backward    Id 478643408 " fill="rgb(255,238,0)" points="102.743,2469.37 90.5229,2463.61 85.3632,2467.89 98.6404,2472.77 " />
<svg:polygon detid="478610628" count="1" value="9" id="306024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 forward    Id 478610628 " fill="rgb(255,238,0)" points="97.3356,2473.99 84.0966,2469.08 79.7835,2473.67 93.9066,2477.64 " />
<svg:polygon detid="478610632" count="1" value="9" id="306025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  2 forward    Id 478610632 " fill="rgb(255,238,0)" points="92.8426,2478.94 78.7507,2474.93 75.3385,2479.77 90.1298,2482.8 " />
<svg:polygon detid="478610636" count="1" value="9" id="306026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  3 forward    Id 478610636 " fill="rgb(255,238,0)" points="89.3198,2484.16 74.5522,2481.1 72.0838,2486.14 87.3574,2488.16 " />
<svg:polygon detid="478643652" count="1" value="9" id="306027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 forward    Id 478643652 " fill="rgb(255,238,0)" points="86.8117,2489.57 71.5541,2487.5 70.0606,2492.67 85.6243,2493.68 " />
<svg:polygon detid="478643656" count="1" value="9" id="306028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  2 forward    Id 478643656 " fill="rgb(255,238,0)" points="85.3497,2495.12 69.794,2494.06 69.2941,2499.3 84.9522,2499.28 " />
<svg:polygon detid="478643660" count="1" value="9" id="306029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  3 forward    Id 478643660 " fill="rgb(255,238,0)" points="84.9522,2500.72 69.2941,2500.7 69.794,2505.94 85.3497,2504.88 " />
<svg:polygon detid="478643664" count="1" value="9" id="306030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  0 backward    Id 478643664 " fill="rgb(255,238,0)" points="85.6243,2506.32 70.0606,2507.33 71.5541,2512.5 86.8117,2510.43 " />
<svg:polygon detid="478610884" count="1" value="9" id="306031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 forward    Id 478610884 " fill="rgb(255,238,0)" points="87.3574,2511.84 72.0838,2513.86 74.5522,2518.9 89.3198,2515.84 " />
<svg:polygon detid="478610888" count="1" value="9" id="306032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  2 forward    Id 478610888 " fill="rgb(255,238,0)" points="90.1298,2517.2 75.3385,2520.23 78.7507,2525.07 92.8426,2521.06 " />
<svg:polygon detid="478610892" count="1" value="9" id="306033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  3 forward    Id 478610892 " fill="rgb(255,238,0)" points="93.9066,2522.36 79.7835,2526.33 84.0966,2530.92 97.3356,2526.01 " />
<svg:polygon detid="478643908" count="1" value="9" id="306034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 forward    Id 478643908 " fill="rgb(255,238,0)" points="98.6404,2527.23 85.3632,2532.11 90.5229,2536.39 102.743,2530.63 " />
<svg:polygon detid="478643912" count="1" value="9" id="306035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  2 forward    Id 478643912 " fill="rgb(255,238,0)" points="104.271,2531.76 92.0071,2537.48 97.9486,2541.39 108.995,2534.87 " />
<svg:polygon detid="478643916" count="1" value="9" id="306036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  3 forward    Id 478643916 " fill="rgb(255,238,0)" points="110.729,2535.89 99.6318,2542.38 106.28,2545.88 116.015,2538.66 " />
<svg:polygon detid="478643920" count="1" value="9" id="306037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  0 backward    Id 478643920 " fill="rgb(255,238,0)" points="117.932,2539.56 108.141,2546.75 115.413,2549.79 123.714,2541.98 " />
<svg:polygon detid="478611140" count="1" value="9" id="306038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 forward    Id 478611140 " fill="rgb(255,238,0)" points="125.79,2542.74 117.429,2550.53 125.233,2553.07 131.994,2544.76 " />
<svg:polygon detid="478611144" count="1" value="9" id="306039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  2 forward    Id 478611144 " fill="rgb(255,238,0)" points="134.204,2545.39 127.378,2553.68 135.615,2555.68 140.753,2546.98 " />
<svg:polygon detid="478611148" count="1" value="9" id="306040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  3 forward    Id 478611148 " fill="rgb(255,238,0)" points="143.068,2547.46 137.862,2556.15 146.43,2557.6 149.88,2548.61 " />
<svg:polygon detid="478644164" count="1" value="9" id="306041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 forward    Id 478644164 " fill="rgb(255,238,0)" points="152.27,2548.93 148.751,2557.91 157.542,2558.79 159.259,2549.63 " />
<svg:polygon detid="478644168" count="1" value="9" id="306042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  2 forward    Id 478644168 " fill="rgb(255,238,0)" points="161.696,2549.79 159.907,2558.94 168.81,2559.24 168.774,2550.03 " />
<svg:polygon detid="478644172" count="1" value="9" id="306043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  3 forward    Id 478644172 " fill="rgb(255,238,0)" points="171.226,2550.03 171.19,2559.24 180.093,2558.94 178.304,2549.79 " />
<svg:polygon detid="478644176" count="1" value="9" id="306044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  0 backward    Id 478644176 " fill="rgb(255,238,0)" points="180.741,2549.63 182.458,2558.79 191.249,2557.91 187.73,2548.93 " />
<svg:polygon detid="478611396" count="1" value="9" id="306045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 forward    Id 478611396 " fill="rgb(255,238,0)" points="190.12,2548.61 193.57,2557.6 202.138,2556.15 196.932,2547.46 " />
<svg:polygon detid="478611400" count="1" value="9" id="306046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  2 forward    Id 478611400 " fill="rgb(255,238,0)" points="199.247,2546.98 204.385,2555.68 212.622,2553.68 205.796,2545.39 " />
<svg:polygon detid="478611404" count="1" value="9" id="306047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  3 forward    Id 478611404 " fill="rgb(255,238,0)" points="208.006,2544.76 214.767,2553.07 222.571,2550.53 214.21,2542.74 " />
<svg:polygon detid="478644420" count="1" value="9" id="306048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 forward    Id 478644420 " fill="rgb(255,238,0)" points="216.286,2541.98 224.587,2549.79 231.859,2546.75 222.068,2539.56 " />
<svg:polygon detid="478644424" count="1" value="9" id="306049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  2 forward    Id 478644424 " fill="rgb(255,238,0)" points="223.985,2538.66 233.72,2545.88 240.368,2542.38 229.271,2535.89 " />
<svg:polygon detid="478644428" count="1" value="9" id="306050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  3 forward    Id 478644428 " fill="rgb(255,238,0)" points="231.005,2534.87 242.051,2541.39 247.993,2537.48 235.729,2531.76 " />
<svg:polygon detid="478644432" count="1" value="9" id="306051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  0 backward    Id 478644432 " fill="rgb(255,238,0)" points="237.257,2530.63 249.477,2536.39 254.637,2532.11 241.36,2527.23 " />
<svg:polygon detid="478611652" count="1" value="9" id="306052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 forward    Id 478611652 " fill="rgb(255,238,0)" points="242.664,2526.01 255.903,2530.92 260.216,2526.33 246.093,2522.36 " />
<svg:polygon detid="478611656" count="1" value="9" id="306053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  2 forward    Id 478611656 " fill="rgb(255,238,0)" points="247.157,2521.06 261.249,2525.07 264.662,2520.23 249.87,2517.2 " />
<svg:polygon detid="478611660" count="1" value="9" id="306054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  3 forward    Id 478611660 " fill="rgb(255,238,0)" points="250.68,2515.84 265.448,2518.9 267.916,2513.86 252.643,2511.84 " />
<svg:polygon detid="478642640" count="1" value="9" id="306055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  0 backward    Id 478642640 " fill="rgb(255,238,0)" points="253.188,2510.43 268.446,2512.5 269.939,2507.33 254.376,2506.32 " />
<svg:polygon detid="478642632" count="1" value="9" id="306056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  2 forward    Id 478642632 " fill="rgb(255,238,0)" points="254.65,2504.88 270.206,2505.94 270.706,2500.7 255.048,2500.72 " />
<svg:polygon detid="478642660" count="1" value="9" id="307001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 forward    Id 478642660 " fill="rgb(255,238,0)" points="273.723,2501.79 291.123,2502.21 291.123,2497.79 273.723,2498.21 " />
<svg:polygon detid="478642668" count="1" value="9" id="307002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  3 forward    Id 478642668 " fill="rgb(255,238,0)" points="273.642,2496.99 291.043,2496.61 290.455,2492.21 273.165,2493.43 " />
<svg:polygon detid="478642672" count="1" value="9" id="307003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  0 backward    Id 478642672 " fill="rgb(255,238,0)" points="272.921,2492.22 290.218,2491.03 289.045,2486.68 271.971,2488.69 " />
<svg:polygon detid="478609892" count="1" value="9" id="307004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 forward    Id 478609892 " fill="rgb(255,238,0)" points="271.567,2487.49 288.651,2485.51 286.901,2481.22 270.148,2484.02 " />
<svg:polygon detid="478609896" count="1" value="9" id="307005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  2 forward    Id 478609896 " fill="rgb(255,238,0)" points="269.586,2482.85 286.353,2480.08 284.036,2475.89 267.708,2479.45 " />
<svg:polygon detid="478609900" count="1" value="9" id="307006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  3 forward    Id 478609900 " fill="rgb(255,238,0)" points="266.99,2478.3 283.337,2474.77 280.468,2470.7 264.665,2475 " />
<svg:polygon detid="478609904" count="1" value="9" id="307007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  0 backward    Id 478609904 " fill="rgb(255,238,0)" points="263.797,2473.89 279.623,2469.62 276.219,2465.69 261.039,2470.71 " />
<svg:polygon detid="478609908" count="1" value="9" id="307008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 forward  module  1 backward    Id 478609908 " fill="rgb(255,238,0)" points="260.026,2469.64 275.233,2464.65 271.315,2460.89 256.851,2466.6 " />
<svg:polygon detid="478642916" count="1" value="9" id="307009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 forward    Id 478642916 " fill="rgb(255,238,0)" points="255.7,2465.58 270.194,2459.9 265.787,2456.34 252.128,2462.69 " />
<svg:polygon detid="478642920" count="1" value="9" id="307010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  2 forward    Id 478642920 " fill="rgb(255,238,0)" points="250.845,2461.73 264.537,2455.4 259.668,2452.05 246.899,2459.02 " />
<svg:polygon detid="478642924" count="1" value="9" id="307011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  3 forward    Id 478642924 " fill="rgb(255,238,0)" points="245.492,2458.12 258.297,2451.18 252.996,2448.06 241.195,2455.59 " />
<svg:polygon detid="478642928" count="1" value="9" id="307012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  0 backward    Id 478642928 " fill="rgb(255,238,0)" points="239.673,2454.77 251.513,2447.25 245.813,2444.39 235.052,2452.44 " />
<svg:polygon detid="478642932" count="1" value="9" id="307013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 backward  module  1 backward    Id 478642932 " fill="rgb(255,238,0)" points="233.425,2451.69 244.227,2443.65 238.162,2441.06 228.509,2449.59 " />
<svg:polygon detid="478610148" count="1" value="9" id="307014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 forward    Id 478610148 " fill="rgb(255,238,0)" points="226.786,2448.91 236.483,2440.4 230.09,2438.1 221.605,2447.04 " />
<svg:polygon detid="478610152" count="1" value="9" id="307015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  2 forward    Id 478610152 " fill="rgb(255,238,0)" points="219.797,2446.45 228.329,2437.52 221.649,2435.52 214.382,2444.83 " />
<svg:polygon detid="478610156" count="1" value="9" id="307016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  3 forward    Id 478610156 " fill="rgb(255,238,0)" points="212.5,2444.31 219.815,2435.02 212.888,2433.33 206.886,2442.95 " />
<svg:polygon detid="478610160" count="1" value="9" id="307017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  0 backward    Id 478610160 " fill="rgb(255,238,0)" points="204.942,2442.52 210.994,2432.92 203.864,2431.56 199.163,2441.42 " />
<svg:polygon detid="478610164" count="1" value="9" id="307018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 2 forward  module  1 backward    Id 478610164 " fill="rgb(255,238,0)" points="197.168,2441.09 201.92,2431.23 194.631,2430.21 191.259,2440.25 " />
<svg:polygon detid="478643172" count="1" value="9" id="307019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 forward    Id 478643172 " fill="rgb(255,238,0)" points="189.227,2440.02 192.65,2429.97 185.245,2429.28 183.225,2439.46 " />
<svg:polygon detid="478643176" count="1" value="9" id="307020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  2 forward    Id 478643176 " fill="rgb(255,238,0)" points="181.167,2439.31 183.24,2429.14 175.766,2428.8 175.109,2439.03 " />
<svg:polygon detid="478643180" count="1" value="9" id="307021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  3 forward    Id 478643180 " fill="rgb(255,238,0)" points="173.038,2438.99 173.749,2428.75 166.251,2428.75 166.962,2438.99 " />
<svg:polygon detid="478643184" count="1" value="9" id="307022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  0 backward    Id 478643184 " fill="rgb(255,238,0)" points="164.891,2439.03 164.234,2428.8 156.76,2429.14 158.833,2439.31 " />
<svg:polygon detid="478643188" count="1" value="9" id="307023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 backward  module  1 backward    Id 478643188 " fill="rgb(255,238,0)" points="156.775,2439.46 154.755,2429.28 147.35,2429.97 150.773,2440.02 " />
<svg:polygon detid="478610404" count="1" value="9" id="307024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 forward    Id 478610404 " fill="rgb(255,238,0)" points="148.741,2440.25 145.369,2430.21 138.08,2431.23 142.832,2441.09 " />
<svg:polygon detid="478610408" count="1" value="9" id="307025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  2 forward    Id 478610408 " fill="rgb(255,238,0)" points="140.837,2441.42 136.136,2431.56 129.006,2432.92 135.058,2442.52 " />
<svg:polygon detid="478610412" count="1" value="9" id="307026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  3 forward    Id 478610412 " fill="rgb(255,238,0)" points="133.114,2442.95 127.112,2433.33 120.185,2435.02 127.5,2444.31 " />
<svg:polygon detid="478610416" count="1" value="9" id="307027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  0 backward    Id 478610416 " fill="rgb(255,238,0)" points="125.618,2444.83 118.351,2435.52 111.671,2437.52 120.203,2446.45 " />
<svg:polygon detid="478610420" count="1" value="9" id="307028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 3 forward  module  1 backward    Id 478610420 " fill="rgb(255,238,0)" points="118.395,2447.04 109.91,2438.1 103.517,2440.4 113.214,2448.91 " />
<svg:polygon detid="478643428" count="1" value="9" id="307029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 forward    Id 478643428 " fill="rgb(255,238,0)" points="111.491,2449.59 101.838,2441.06 95.7732,2443.65 106.575,2451.69 " />
<svg:polygon detid="478643432" count="1" value="9" id="307030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  2 forward    Id 478643432 " fill="rgb(255,238,0)" points="104.948,2452.44 94.1875,2444.39 88.4867,2447.25 100.327,2454.77 " />
<svg:polygon detid="478643436" count="1" value="9" id="307031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  3 forward    Id 478643436 " fill="rgb(255,238,0)" points="98.805,2455.59 87.0039,2448.06 81.7027,2451.18 94.5082,2458.12 " />
<svg:polygon detid="478643440" count="1" value="9" id="307032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  0 backward    Id 478643440 " fill="rgb(255,238,0)" points="93.1015,2459.02 80.332,2452.05 75.4631,2455.4 89.155,2461.73 " />
<svg:polygon detid="478643444" count="1" value="9" id="307033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 backward  module  1 backward    Id 478643444 " fill="rgb(255,238,0)" points="87.8721,2462.69 74.213,2456.34 69.8064,2459.9 84.3003,2465.58 " />
<svg:polygon detid="478610660" count="1" value="9" id="307034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 forward    Id 478610660 " fill="rgb(255,238,0)" points="83.149,2466.6 68.6845,2460.89 64.7673,2464.65 79.9739,2469.64 " />
<svg:polygon detid="478610664" count="1" value="9" id="307035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  2 forward    Id 478610664 " fill="rgb(255,238,0)" points="78.9613,2470.71 63.7807,2465.69 60.3771,2469.62 76.2026,2473.89 " />
<svg:polygon detid="478610668" count="1" value="9" id="307036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  3 forward    Id 478610668 " fill="rgb(255,238,0)" points="75.335,2475 59.5317,2470.7 56.6627,2474.77 73.0096,2478.3 " />
<svg:polygon detid="478610672" count="1" value="9" id="307037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  0 backward    Id 478610672 " fill="rgb(255,238,0)" points="72.2923,2479.45 55.9638,2475.89 53.6471,2480.08 70.4145,2482.85 " />
<svg:polygon detid="478610676" count="1" value="9" id="307038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 4 forward  module  1 backward    Id 478610676 " fill="rgb(255,238,0)" points="69.852,2484.02 53.099,2481.22 51.3489,2485.51 68.4334,2487.49 " />
<svg:polygon detid="478643684" count="1" value="9" id="307039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 forward    Id 478643684 " fill="rgb(255,238,0)" points="68.0292,2488.69 50.955,2486.68 49.7822,2491.03 67.0786,2492.22 " />
<svg:polygon detid="478643688" count="1" value="9" id="307040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  2 forward    Id 478643688 " fill="rgb(255,238,0)" points="66.835,2493.43 49.5448,2492.21 48.9566,2496.61 66.3582,2496.99 " />
<svg:polygon detid="478643692" count="1" value="9" id="307041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  3 forward    Id 478643692 " fill="rgb(255,238,0)" points="66.2768,2498.21 48.8773,2497.79 48.8773,2502.21 66.2768,2501.79 " />
<svg:polygon detid="478643696" count="1" value="9" id="307042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  0 backward    Id 478643696 " fill="rgb(255,238,0)" points="66.3582,2503.01 48.9566,2503.39 49.5448,2507.79 66.835,2506.57 " />
<svg:polygon detid="478643700" count="1" value="9" id="307043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 backward  module  1 backward    Id 478643700 " fill="rgb(255,238,0)" points="67.0786,2507.78 49.7822,2508.97 50.955,2513.32 68.0292,2511.31 " />
<svg:polygon detid="478610916" count="1" value="9" id="307044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 forward    Id 478610916 " fill="rgb(255,238,0)" points="68.4334,2512.51 51.3489,2514.49 53.099,2518.78 69.852,2515.98 " />
<svg:polygon detid="478610920" count="1" value="9" id="307045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  2 forward    Id 478610920 " fill="rgb(255,238,0)" points="70.4145,2517.15 53.6471,2519.92 55.9638,2524.11 72.2923,2520.55 " />
<svg:polygon detid="478610924" count="1" value="9" id="307046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  3 forward    Id 478610924 " fill="rgb(255,238,0)" points="73.0096,2521.7 56.6627,2525.23 59.5317,2529.3 75.335,2525 " />
<svg:polygon detid="478610928" count="1" value="9" id="307047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  0 backward    Id 478610928 " fill="rgb(255,238,0)" points="76.2026,2526.11 60.3771,2530.38 63.7807,2534.31 78.9613,2529.29 " />
<svg:polygon detid="478610932" count="1" value="9" id="307048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 5 forward  module  1 backward    Id 478610932 " fill="rgb(255,238,0)" points="79.9739,2530.36 64.7673,2535.35 68.6845,2539.11 83.149,2533.4 " />
<svg:polygon detid="478643940" count="1" value="9" id="307049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 forward    Id 478643940 " fill="rgb(255,238,0)" points="84.3003,2534.42 69.8064,2540.1 74.213,2543.66 87.8721,2537.31 " />
<svg:polygon detid="478643944" count="1" value="9" id="307050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  2 forward    Id 478643944 " fill="rgb(255,238,0)" points="89.155,2538.27 75.4631,2544.6 80.332,2547.95 93.1015,2540.98 " />
<svg:polygon detid="478643948" count="1" value="9" id="307051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  3 forward    Id 478643948 " fill="rgb(255,238,0)" points="94.5082,2541.88 81.7027,2548.82 87.0039,2551.94 98.805,2544.41 " />
<svg:polygon detid="478643952" count="1" value="9" id="307052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  0 backward    Id 478643952 " fill="rgb(255,238,0)" points="100.327,2545.23 88.4867,2552.75 94.1875,2555.61 104.948,2547.56 " />
<svg:polygon detid="478643956" count="1" value="9" id="307053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 backward  module  1 backward    Id 478643956 " fill="rgb(255,238,0)" points="106.575,2548.31 95.7732,2556.35 101.838,2558.94 111.491,2550.41 " />
<svg:polygon detid="478611172" count="1" value="9" id="307054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 forward    Id 478611172 " fill="rgb(255,238,0)" points="113.214,2551.09 103.517,2559.6 109.91,2561.9 118.395,2552.96 " />
<svg:polygon detid="478611176" count="1" value="9" id="307055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  2 forward    Id 478611176 " fill="rgb(255,238,0)" points="120.203,2553.55 111.671,2562.48 118.351,2564.48 125.618,2555.17 " />
<svg:polygon detid="478611180" count="1" value="9" id="307056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  3 forward    Id 478611180 " fill="rgb(255,238,0)" points="127.5,2555.69 120.185,2564.98 127.112,2566.67 133.114,2557.05 " />
<svg:polygon detid="478611184" count="1" value="9" id="307057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  0 backward    Id 478611184 " fill="rgb(255,238,0)" points="135.058,2557.48 129.006,2567.08 136.136,2568.44 140.837,2558.58 " />
<svg:polygon detid="478611188" count="1" value="9" id="307058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 6 forward  module  1 backward    Id 478611188 " fill="rgb(255,238,0)" points="142.832,2558.91 138.08,2568.77 145.369,2569.79 148.741,2559.75 " />
<svg:polygon detid="478644196" count="1" value="9" id="307059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 forward    Id 478644196 " fill="rgb(255,238,0)" points="150.773,2559.98 147.35,2570.03 154.755,2570.72 156.775,2560.54 " />
<svg:polygon detid="478644200" count="1" value="9" id="307060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  2 forward    Id 478644200 " fill="rgb(255,238,0)" points="158.833,2560.69 156.76,2570.86 164.234,2571.2 164.891,2560.97 " />
<svg:polygon detid="478644204" count="1" value="9" id="307061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  3 forward    Id 478644204 " fill="rgb(255,238,0)" points="166.962,2561.01 166.251,2571.25 173.749,2571.25 173.038,2561.01 " />
<svg:polygon detid="478644208" count="1" value="9" id="307062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  0 backward    Id 478644208 " fill="rgb(255,238,0)" points="175.109,2560.97 175.766,2571.2 183.24,2570.86 181.167,2560.69 " />
<svg:polygon detid="478644212" count="1" value="9" id="307063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 backward  module  1 backward    Id 478644212 " fill="rgb(255,238,0)" points="183.225,2560.54 185.245,2570.72 192.65,2570.03 189.227,2559.98 " />
<svg:polygon detid="478611428" count="1" value="9" id="307064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 forward    Id 478611428 " fill="rgb(255,238,0)" points="191.259,2559.75 194.631,2569.79 201.92,2568.77 197.168,2558.91 " />
<svg:polygon detid="478611432" count="1" value="9" id="307065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  2 forward    Id 478611432 " fill="rgb(255,238,0)" points="199.163,2558.58 203.864,2568.44 210.994,2567.08 204.942,2557.48 " />
<svg:polygon detid="478611436" count="1" value="9" id="307066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  3 forward    Id 478611436 " fill="rgb(255,238,0)" points="206.886,2557.05 212.888,2566.67 219.815,2564.98 212.5,2555.69 " />
<svg:polygon detid="478611440" count="1" value="9" id="307067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  0 backward    Id 478611440 " fill="rgb(255,238,0)" points="214.382,2555.17 221.649,2564.48 228.329,2562.48 219.797,2553.55 " />
<svg:polygon detid="478611444" count="1" value="9" id="307068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 7 forward  module  1 backward    Id 478611444 " fill="rgb(255,238,0)" points="221.605,2552.96 230.09,2561.9 236.483,2559.6 226.786,2551.09 " />
<svg:polygon detid="478644452" count="1" value="9" id="307069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 forward    Id 478644452 " fill="rgb(255,238,0)" points="228.509,2550.41 238.162,2558.94 244.227,2556.35 233.425,2548.31 " />
<svg:polygon detid="478644456" count="1" value="9" id="307070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  2 forward    Id 478644456 " fill="rgb(255,238,0)" points="235.052,2547.56 245.813,2555.61 251.513,2552.75 239.673,2545.23 " />
<svg:polygon detid="478644460" count="1" value="9" id="307071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  3 forward    Id 478644460 " fill="rgb(255,238,0)" points="241.195,2544.41 252.996,2551.94 258.297,2548.82 245.492,2541.88 " />
<svg:polygon detid="478644464" count="1" value="9" id="307072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  0 backward    Id 478644464 " fill="rgb(255,238,0)" points="246.899,2540.98 259.668,2547.95 264.537,2544.6 250.845,2538.27 " />
<svg:polygon detid="478644468" count="1" value="9" id="307073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 backward  module  1 backward    Id 478644468 " fill="rgb(255,238,0)" points="252.128,2537.31 265.787,2543.66 270.194,2540.1 255.7,2534.42 " />
<svg:polygon detid="478611684" count="1" value="9" id="307074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 forward    Id 478611684 " fill="rgb(255,238,0)" points="256.851,2533.4 271.315,2539.11 275.233,2535.35 260.026,2530.36 " />
<svg:polygon detid="478611688" count="1" value="9" id="307075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  2 forward    Id 478611688 " fill="rgb(255,238,0)" points="261.039,2529.29 276.219,2534.31 279.623,2530.38 263.797,2526.11 " />
<svg:polygon detid="478611692" count="1" value="9" id="307076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  3 forward    Id 478611692 " fill="rgb(255,238,0)" points="264.665,2525 280.468,2529.3 283.337,2525.23 266.99,2521.7 " />
<svg:polygon detid="478611696" count="1" value="9" id="307077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  0 backward    Id 478611696 " fill="rgb(255,238,0)" points="267.708,2520.55 284.036,2524.11 286.353,2519.92 269.586,2517.15 " />
<svg:polygon detid="478611700" count="1" value="9" id="307078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 8 forward  module  1 backward    Id 478611700 " fill="rgb(255,238,0)" points="270.148,2515.98 286.901,2518.78 288.651,2514.49 271.567,2512.51 " />
<svg:polygon detid="478642676" count="1" value="9" id="307079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  1 backward    Id 478642676 " fill="rgb(255,238,0)" points="271.971,2511.31 289.045,2513.32 290.218,2508.97 272.921,2507.78 " />
<svg:polygon detid="478642664" count="1" value="9" id="307080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 7 ring 0 petal 1 backward  module  2 forward    Id 478642664 " fill="rgb(255,238,0)" points="273.165,2506.57 290.455,2507.79 291.043,2503.39 273.642,2503.01 " />
<svg:polygon detid="478576970" count="1" value="12" id="402001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward    Id 478576970 " fill="rgb(255,232,0)" points="214.347,2293.78 207.056,2294.96 208.013,2299.23 " />
<svg:polygon detid="478544198" count="1" value="12" id="402002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward    Id 478544198 " fill="rgb(255,232,0)" points="210.1,2287.24 203.575,2289.49 206.379,2293.47 " />
<svg:polygon detid="478577222" count="1" value="12" id="402003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward    Id 478577222 " fill="rgb(255,232,0)" points="203.12,2281.57 197.805,2284.73 202.265,2288.15 " />
<svg:polygon detid="478577226" count="1" value="12" id="402004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward    Id 478577226 " fill="rgb(255,232,0)" points="193.883,2277.16 190.14,2281.02 195.953,2283.64 " />
<svg:polygon detid="478544454" count="1" value="12" id="402005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward    Id 478544454 " fill="rgb(255,232,0)" points="183.019,2274.3 181.103,2278.6 187.872,2280.25 " />
<svg:polygon detid="478577478" count="1" value="12" id="402006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward    Id 478577478 " fill="rgb(255,232,0)" points="171.267,2273.19 171.309,2277.64 178.574,2278.2 " />
<svg:polygon detid="478577482" count="1" value="12" id="402007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward    Id 478577482 " fill="rgb(255,232,0)" points="159.429,2273.91 161.426,2278.2 168.691,2277.64 " />
<svg:polygon detid="478544710" count="1" value="12" id="402008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward    Id 478544710 " fill="rgb(255,232,0)" points="148.312,2276.41 152.128,2280.25 158.897,2278.6 " />
<svg:polygon detid="478577734" count="1" value="12" id="402009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward    Id 478577734 " fill="rgb(255,232,0)" points="138.672,2280.52 144.047,2283.64 149.86,2281.02 " />
<svg:polygon detid="478577738" count="1" value="12" id="402010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward    Id 478577738 " fill="rgb(255,232,0)" points="131.168,2285.95 137.735,2288.15 142.195,2284.73 " />
<svg:polygon detid="478544966" count="1" value="12" id="402011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward    Id 478544966 " fill="rgb(255,232,0)" points="126.309,2292.34 133.621,2293.47 136.425,2289.49 " />
<svg:polygon detid="478577990" count="1" value="12" id="402012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward    Id 478577990 " fill="rgb(255,232,0)" points="124.429,2299.25 131.987,2299.23 132.944,2294.96 " />
<svg:polygon detid="478577994" count="1" value="12" id="402013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward    Id 478577994 " fill="rgb(255,232,0)" points="125.653,2306.22 132.944,2305.04 131.987,2300.77 " />
<svg:polygon detid="478545222" count="1" value="12" id="402014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward    Id 478545222 " fill="rgb(255,232,0)" points="129.9,2312.76 136.425,2310.51 133.621,2306.53 " />
<svg:polygon detid="478578246" count="1" value="12" id="402015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward    Id 478578246 " fill="rgb(255,232,0)" points="136.88,2318.43 142.195,2315.27 137.735,2311.85 " />
<svg:polygon detid="478578250" count="1" value="12" id="402016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward    Id 478578250 " fill="rgb(255,232,0)" points="146.117,2322.84 149.86,2318.98 144.047,2316.36 " />
<svg:polygon detid="478545478" count="1" value="12" id="402017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward    Id 478545478 " fill="rgb(255,232,0)" points="156.981,2325.7 158.897,2321.4 152.128,2319.75 " />
<svg:polygon detid="478578502" count="1" value="12" id="402018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward    Id 478578502 " fill="rgb(255,232,0)" points="168.733,2326.81 168.691,2322.36 161.426,2321.8 " />
<svg:polygon detid="478578506" count="1" value="12" id="402019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward    Id 478578506 " fill="rgb(255,232,0)" points="180.571,2326.09 178.574,2321.8 171.309,2322.36 " />
<svg:polygon detid="478545734" count="1" value="12" id="402020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward    Id 478545734 " fill="rgb(255,232,0)" points="191.688,2323.59 187.872,2319.75 181.103,2321.4 " />
<svg:polygon detid="478578758" count="1" value="12" id="402021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward    Id 478578758 " fill="rgb(255,232,0)" points="201.328,2319.48 195.953,2316.36 190.14,2318.98 " />
<svg:polygon detid="478578762" count="1" value="12" id="402022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward    Id 478578762 " fill="rgb(255,232,0)" points="208.832,2314.05 202.265,2311.85 197.805,2315.27 " />
<svg:polygon detid="478545990" count="1" value="12" id="402023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward    Id 478545990 " fill="rgb(255,232,0)" points="213.691,2307.66 206.379,2306.53 203.575,2310.51 " />
<svg:polygon detid="478576966" count="1" value="12" id="402024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward    Id 478576966 " fill="rgb(255,232,0)" points="215.571,2300.75 208.013,2300.77 207.056,2305.04 " />
<svg:polygon detid="478576969" count="1" value="12" id="402101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward   stereo Id 478576969 " fill="rgb(255,232,0)" points="208.013,2299.23 215.571,2299.25 214.347,2293.78 " />
<svg:polygon detid="478544197" count="1" value="12" id="402102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward   stereo Id 478544197 " fill="rgb(255,232,0)" points="206.379,2293.47 213.691,2292.34 210.1,2287.24 " />
<svg:polygon detid="478577221" count="1" value="12" id="402103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward   stereo Id 478577221 " fill="rgb(255,232,0)" points="202.265,2288.15 208.832,2285.95 203.12,2281.57 " />
<svg:polygon detid="478577225" count="1" value="12" id="402104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward   stereo Id 478577225 " fill="rgb(255,232,0)" points="195.953,2283.64 201.328,2280.52 193.883,2277.16 " />
<svg:polygon detid="478544453" count="1" value="12" id="402105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward   stereo Id 478544453 " fill="rgb(255,232,0)" points="187.872,2280.25 191.688,2276.41 183.019,2274.3 " />
<svg:polygon detid="478577477" count="1" value="12" id="402106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward   stereo Id 478577477 " fill="rgb(255,232,0)" points="178.574,2278.2 180.571,2273.91 171.267,2273.19 " />
<svg:polygon detid="478577481" count="1" value="12" id="402107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward   stereo Id 478577481 " fill="rgb(255,232,0)" points="168.691,2277.64 168.733,2273.19 159.429,2273.91 " />
<svg:polygon detid="478544709" count="1" value="12" id="402108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward   stereo Id 478544709 " fill="rgb(255,232,0)" points="158.897,2278.6 156.981,2274.3 148.312,2276.41 " />
<svg:polygon detid="478577733" count="1" value="12" id="402109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward   stereo Id 478577733 " fill="rgb(255,232,0)" points="149.86,2281.02 146.117,2277.16 138.672,2280.52 " />
<svg:polygon detid="478577737" count="1" value="12" id="402110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward   stereo Id 478577737 " fill="rgb(255,232,0)" points="142.195,2284.73 136.88,2281.57 131.168,2285.95 " />
<svg:polygon detid="478544965" count="1" value="12" id="402111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward   stereo Id 478544965 " fill="rgb(255,232,0)" points="136.425,2289.49 129.9,2287.24 126.309,2292.34 " />
<svg:polygon detid="478577989" count="1" value="12" id="402112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward   stereo Id 478577989 " fill="rgb(255,232,0)" points="132.944,2294.96 125.653,2293.78 124.429,2299.25 " />
<svg:polygon detid="478577993" count="1" value="12" id="402113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward   stereo Id 478577993 " fill="rgb(255,232,0)" points="131.987,2300.77 124.429,2300.75 125.653,2306.22 " />
<svg:polygon detid="478545221" count="1" value="12" id="402114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward   stereo Id 478545221 " fill="rgb(255,232,0)" points="133.621,2306.53 126.309,2307.66 129.9,2312.76 " />
<svg:polygon detid="478578245" count="1" value="12" id="402115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward   stereo Id 478578245 " fill="rgb(255,232,0)" points="137.735,2311.85 131.168,2314.05 136.88,2318.43 " />
<svg:polygon detid="478578249" count="1" value="12" id="402116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward   stereo Id 478578249 " fill="rgb(255,232,0)" points="144.047,2316.36 138.672,2319.48 146.117,2322.84 " />
<svg:polygon detid="478545477" count="1" value="12" id="402117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward   stereo Id 478545477 " fill="rgb(255,232,0)" points="152.128,2319.75 148.312,2323.59 156.981,2325.7 " />
<svg:polygon detid="478578501" count="1" value="12" id="402118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward   stereo Id 478578501 " fill="rgb(255,232,0)" points="161.426,2321.8 159.429,2326.09 168.733,2326.81 " />
<svg:polygon detid="478578505" count="1" value="12" id="402119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward   stereo Id 478578505 " fill="rgb(255,232,0)" points="171.309,2322.36 171.267,2326.81 180.571,2326.09 " />
<svg:polygon detid="478545733" count="1" value="12" id="402120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward   stereo Id 478545733 " fill="rgb(255,232,0)" points="181.103,2321.4 183.019,2325.7 191.688,2323.59 " />
<svg:polygon detid="478578757" count="1" value="12" id="402121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward   stereo Id 478578757 " fill="rgb(255,232,0)" points="190.14,2318.98 193.883,2322.84 201.328,2319.48 " />
<svg:polygon detid="478578761" count="1" value="12" id="402122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward   stereo Id 478578761 " fill="rgb(255,232,0)" points="197.805,2315.27 203.12,2318.43 208.832,2314.05 " />
<svg:polygon detid="478545989" count="1" value="12" id="402123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward   stereo Id 478545989 " fill="rgb(255,232,0)" points="203.575,2310.51 210.1,2312.76 213.691,2307.66 " />
<svg:polygon detid="478576965" count="1" value="12" id="402124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward   stereo Id 478576965 " fill="rgb(255,232,0)" points="207.056,2305.04 214.347,2306.22 215.571,2300.75 " />
<svg:polygon detid="478576996" count="1" value="12" id="403001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward    Id 478576996 " fill="rgb(255,232,0)" points="216.008,2301.57 225.409,2302.03 225.409,2297.97 216.008,2298.43 " />
<svg:polygon detid="478577000" count="1" value="12" id="403002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward    Id 478577000 " fill="rgb(255,232,0)" points="215.861,2297.32 225.267,2296.91 224.187,2292.9 215.023,2294.21 " />
<svg:polygon detid="478544228" count="1" value="12" id="403003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward    Id 478544228 " fill="rgb(255,232,0)" points="214.584,2293.13 223.764,2291.86 221.631,2288 212.929,2290.14 " />
<svg:polygon detid="478544232" count="1" value="12" id="403004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  2 forward    Id 478544232 " fill="rgb(255,232,0)" points="212.209,2289.12 220.937,2287.01 217.803,2283.39 209.778,2286.31 " />
<svg:polygon detid="478577252" count="1" value="12" id="403005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward    Id 478577252 " fill="rgb(255,232,0)" points="208.795,2285.37 216.856,2282.48 212.799,2279.2 205.648,2282.82 " />
<svg:polygon detid="478577256" count="1" value="12" id="403006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward    Id 478577256 " fill="rgb(255,232,0)" points="204.426,2281.98 211.621,2278.39 206.74,2275.52 200.64,2279.75 " />
<svg:polygon detid="478577260" count="1" value="12" id="403007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  3 forward    Id 478577260 " fill="rgb(255,232,0)" points="199.209,2279.03 205.361,2274.82 199.777,2272.44 194.877,2277.18 " />
<svg:polygon detid="478544484" count="1" value="12" id="403008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward    Id 478544484 " fill="rgb(255,232,0)" points="193.273,2276.6 198.23,2271.88 192.081,2270.04 188.502,2275.17 " />
<svg:polygon detid="478544488" count="1" value="12" id="403009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  2 forward    Id 478544488 " fill="rgb(255,232,0)" points="186.764,2274.75 190.405,2269.63 183.84,2268.37 181.671,2273.77 " />
<svg:polygon detid="478577508" count="1" value="12" id="403010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward    Id 478577508 " fill="rgb(255,232,0)" points="179.842,2273.52 182.076,2268.13 175.259,2267.49 174.553,2273.02 " />
<svg:polygon detid="478577512" count="1" value="12" id="403011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward    Id 478577512 " fill="rgb(255,232,0)" points="172.677,2272.94 173.451,2267.41 166.549,2267.41 167.323,2272.94 " />
<svg:polygon detid="478577516" count="1" value="12" id="403012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  3 forward    Id 478577516 " fill="rgb(255,232,0)" points="165.447,2273.02 164.741,2267.49 157.924,2268.13 160.158,2273.52 " />
<svg:polygon detid="478544740" count="1" value="12" id="403013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward    Id 478544740 " fill="rgb(255,232,0)" points="158.329,2273.77 156.16,2268.37 149.595,2269.63 153.236,2274.75 " />
<svg:polygon detid="478544744" count="1" value="12" id="403014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  2 forward    Id 478544744 " fill="rgb(255,232,0)" points="151.498,2275.17 147.919,2270.04 141.77,2271.88 146.727,2276.6 " />
<svg:polygon detid="478577764" count="1" value="12" id="403015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward    Id 478577764 " fill="rgb(255,232,0)" points="145.123,2277.18 140.223,2272.44 134.639,2274.82 140.791,2279.03 " />
<svg:polygon detid="478577768" count="1" value="12" id="403016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward    Id 478577768 " fill="rgb(255,232,0)" points="139.36,2279.75 133.26,2275.52 128.379,2278.39 135.574,2281.98 " />
<svg:polygon detid="478577772" count="1" value="12" id="403017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  3 forward    Id 478577772 " fill="rgb(255,232,0)" points="134.352,2282.82 127.201,2279.2 123.144,2282.48 131.205,2285.37 " />
<svg:polygon detid="478544996" count="1" value="12" id="403018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward    Id 478544996 " fill="rgb(255,232,0)" points="130.222,2286.31 122.197,2283.39 119.063,2287.01 127.791,2289.12 " />
<svg:polygon detid="478545000" count="1" value="12" id="403019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  2 forward    Id 478545000 " fill="rgb(255,232,0)" points="127.071,2290.14 118.369,2288 116.236,2291.86 125.416,2293.13 " />
<svg:polygon detid="478578020" count="1" value="12" id="403020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward    Id 478578020 " fill="rgb(255,232,0)" points="124.977,2294.21 115.813,2292.9 114.733,2296.91 124.139,2297.32 " />
<svg:polygon detid="478578024" count="1" value="12" id="403021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward    Id 478578024 " fill="rgb(255,232,0)" points="123.992,2298.43 114.591,2297.97 114.591,2302.03 123.992,2301.57 " />
<svg:polygon detid="478578028" count="1" value="12" id="403022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  3 forward    Id 478578028 " fill="rgb(255,232,0)" points="124.139,2302.68 114.733,2303.09 115.813,2307.1 124.977,2305.79 " />
<svg:polygon detid="478545252" count="1" value="12" id="403023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward    Id 478545252 " fill="rgb(255,232,0)" points="125.416,2306.87 116.236,2308.14 118.369,2312 127.071,2309.86 " />
<svg:polygon detid="478545256" count="1" value="12" id="403024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  2 forward    Id 478545256 " fill="rgb(255,232,0)" points="127.791,2310.88 119.063,2312.99 122.197,2316.61 130.222,2313.69 " />
<svg:polygon detid="478578276" count="1" value="12" id="403025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward    Id 478578276 " fill="rgb(255,232,0)" points="131.205,2314.63 123.144,2317.52 127.201,2320.8 134.352,2317.18 " />
<svg:polygon detid="478578280" count="1" value="12" id="403026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward    Id 478578280 " fill="rgb(255,232,0)" points="135.574,2318.02 128.379,2321.61 133.26,2324.48 139.36,2320.25 " />
<svg:polygon detid="478578284" count="1" value="12" id="403027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  3 forward    Id 478578284 " fill="rgb(255,232,0)" points="140.791,2320.97 134.639,2325.18 140.223,2327.56 145.123,2322.82 " />
<svg:polygon detid="478545508" count="1" value="12" id="403028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward    Id 478545508 " fill="rgb(255,232,0)" points="146.727,2323.4 141.77,2328.12 147.919,2329.96 151.498,2324.83 " />
<svg:polygon detid="478545512" count="1" value="12" id="403029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  2 forward    Id 478545512 " fill="rgb(255,232,0)" points="153.236,2325.25 149.595,2330.37 156.16,2331.63 158.329,2326.23 " />
<svg:polygon detid="478578532" count="1" value="12" id="403030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward    Id 478578532 " fill="rgb(255,232,0)" points="160.158,2326.48 157.924,2331.87 164.741,2332.51 165.447,2326.98 " />
<svg:polygon detid="478578536" count="1" value="12" id="403031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward    Id 478578536 " fill="rgb(255,232,0)" points="167.323,2327.06 166.549,2332.59 173.451,2332.59 172.677,2327.06 " />
<svg:polygon detid="478578540" count="1" value="12" id="403032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  3 forward    Id 478578540 " fill="rgb(255,232,0)" points="174.553,2326.98 175.259,2332.51 182.076,2331.87 179.842,2326.48 " />
<svg:polygon detid="478545764" count="1" value="12" id="403033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward    Id 478545764 " fill="rgb(255,232,0)" points="181.671,2326.23 183.84,2331.63 190.405,2330.37 186.764,2325.25 " />
<svg:polygon detid="478545768" count="1" value="12" id="403034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  2 forward    Id 478545768 " fill="rgb(255,232,0)" points="188.502,2324.83 192.081,2329.96 198.23,2328.12 193.273,2323.4 " />
<svg:polygon detid="478578788" count="1" value="12" id="403035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward    Id 478578788 " fill="rgb(255,232,0)" points="194.877,2322.82 199.777,2327.56 205.361,2325.18 199.209,2320.97 " />
<svg:polygon detid="478578792" count="1" value="12" id="403036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward    Id 478578792 " fill="rgb(255,232,0)" points="200.64,2320.25 206.74,2324.48 211.621,2321.61 204.426,2318.02 " />
<svg:polygon detid="478578796" count="1" value="12" id="403037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  3 forward    Id 478578796 " fill="rgb(255,232,0)" points="205.648,2317.18 212.799,2320.8 216.856,2317.52 208.795,2314.63 " />
<svg:polygon detid="478546020" count="1" value="12" id="403038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward    Id 478546020 " fill="rgb(255,232,0)" points="209.778,2313.69 217.803,2316.61 220.937,2312.99 212.209,2310.88 " />
<svg:polygon detid="478546024" count="1" value="12" id="403039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  2 forward    Id 478546024 " fill="rgb(255,232,0)" points="212.929,2309.86 221.631,2312 223.764,2308.14 214.584,2306.87 " />
<svg:polygon detid="478577004" count="1" value="12" id="403040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  3 forward    Id 478577004 " fill="rgb(255,232,0)" points="215.023,2305.79 224.187,2307.1 225.267,2303.09 215.861,2302.68 " />
<svg:polygon detid="478577032" count="1" value="12" id="404001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward    Id 478577032 " fill="rgb(255,232,0)" points="228.822,2299.51 238.623,2299.52 238.282,2295.96 228.546,2296.62 " />
<svg:polygon detid="478577036" count="1" value="12" id="404002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  3 forward    Id 478577036 " fill="rgb(255,232,0)" points="228.359,2295.64 238.1,2295 237.083,2291.48 227.534,2292.78 " />
<svg:polygon detid="478544260" count="1" value="12" id="404003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward    Id 478544260 " fill="rgb(255,232,0)" points="227.161,2291.82 236.721,2290.55 235.041,2287.12 225.798,2289.04 " />
<svg:polygon detid="478544264" count="1" value="12" id="404004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  2 forward    Id 478544264 " fill="rgb(255,232,0)" points="225.244,2288.11 234.503,2286.22 232.18,2282.92 223.361,2285.43 " />
<svg:polygon detid="478544268" count="1" value="12" id="404005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  3 forward    Id 478544268 " fill="rgb(255,232,0)" points="222.633,2284.54 231.473,2282.05 228.538,2278.93 220.253,2282.01 " />
<svg:polygon detid="478577284" count="1" value="12" id="404006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward    Id 478577284 " fill="rgb(255,232,0)" points="219.36,2281.17 227.671,2278.12 224.159,2275.21 216.512,2278.81 " />
<svg:polygon detid="478577288" count="1" value="12" id="404007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward    Id 478577288 " fill="rgb(255,232,0)" points="215.466,2278.04 223.143,2274.46 219.099,2271.8 212.187,2275.88 " />
<svg:polygon detid="478577292" count="1" value="12" id="404008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  3 forward    Id 478577292 " fill="rgb(255,232,0)" points="211.001,2275.18 217.948,2271.12 213.422,2268.74 207.331,2273.26 " />
<svg:polygon detid="478577296" count="1" value="12" id="404009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  0 backward    Id 478577296 " fill="rgb(255,232,0)" points="206.019,2272.64 212.149,2268.14 207.199,2266.08 202.006,2270.96 " />
<svg:polygon detid="478544516" count="1" value="12" id="404010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward    Id 478544516 " fill="rgb(255,232,0)" points="200.585,2270.44 205.82,2265.57 200.508,2263.84 196.278,2269.04 " />
<svg:polygon detid="478544520" count="1" value="12" id="404011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  2 forward    Id 478544520 " fill="rgb(255,232,0)" points="194.766,2268.61 199.04,2263.42 193.433,2262.06 190.219,2267.5 " />
<svg:polygon detid="478544524" count="1" value="12" id="404012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  3 forward    Id 478544524 " fill="rgb(255,232,0)" points="188.636,2267.18 191.896,2261.74 186.064,2260.75 183.907,2266.38 " />
<svg:polygon detid="478577540" count="1" value="12" id="404013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward    Id 478577540 " fill="rgb(255,232,0)" points="182.271,2266.16 184.476,2260.54 178.493,2259.94 177.419,2265.67 " />
<svg:polygon detid="478577544" count="1" value="12" id="404014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward    Id 478577544 " fill="rgb(255,232,0)" points="175.753,2265.56 176.874,2259.83 170.814,2259.63 170.839,2265.4 " />
<svg:polygon detid="478577548" count="1" value="12" id="404015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  3 forward    Id 478577548 " fill="rgb(255,232,0)" points="169.161,2265.4 169.186,2259.63 163.126,2259.83 164.247,2265.56 " />
<svg:polygon detid="478577552" count="1" value="12" id="404016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  0 backward    Id 478577552 " fill="rgb(255,232,0)" points="162.581,2265.67 161.507,2259.94 155.524,2260.54 157.729,2266.16 " />
<svg:polygon detid="478544772" count="1" value="12" id="404017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward    Id 478544772 " fill="rgb(255,232,0)" points="156.093,2266.38 153.936,2260.75 148.104,2261.74 151.364,2267.18 " />
<svg:polygon detid="478544776" count="1" value="12" id="404018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  2 forward    Id 478544776 " fill="rgb(255,232,0)" points="149.781,2267.5 146.567,2262.06 140.96,2263.42 145.234,2268.61 " />
<svg:polygon detid="478544780" count="1" value="12" id="404019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  3 forward    Id 478544780 " fill="rgb(255,232,0)" points="143.722,2269.04 139.492,2263.84 134.18,2265.57 139.415,2270.44 " />
<svg:polygon detid="478577796" count="1" value="12" id="404020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward    Id 478577796 " fill="rgb(255,232,0)" points="137.994,2270.96 132.801,2266.08 127.851,2268.14 133.981,2272.64 " />
<svg:polygon detid="478577800" count="1" value="12" id="404021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward    Id 478577800 " fill="rgb(255,232,0)" points="132.669,2273.26 126.578,2268.74 122.052,2271.12 128.999,2275.18 " />
<svg:polygon detid="478577804" count="1" value="12" id="404022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  3 forward    Id 478577804 " fill="rgb(255,232,0)" points="127.813,2275.88 120.901,2271.8 116.857,2274.46 124.534,2278.04 " />
<svg:polygon detid="478577808" count="1" value="12" id="404023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  0 backward    Id 478577808 " fill="rgb(255,232,0)" points="123.488,2278.81 115.841,2275.21 112.329,2278.12 120.64,2281.17 " />
<svg:polygon detid="478545028" count="1" value="12" id="404024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward    Id 478545028 " fill="rgb(255,232,0)" points="119.747,2282.01 111.462,2278.93 108.527,2282.05 117.367,2284.54 " />
<svg:polygon detid="478545032" count="1" value="12" id="404025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  2 forward    Id 478545032 " fill="rgb(255,232,0)" points="116.639,2285.43 107.82,2282.92 105.497,2286.22 114.756,2288.11 " />
<svg:polygon detid="478545036" count="1" value="12" id="404026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  3 forward    Id 478545036 " fill="rgb(255,232,0)" points="114.202,2289.04 104.959,2287.12 103.279,2290.55 112.839,2291.82 " />
<svg:polygon detid="478578052" count="1" value="12" id="404027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward    Id 478578052 " fill="rgb(255,232,0)" points="112.466,2292.78 102.917,2291.48 101.9,2295 111.641,2295.64 " />
<svg:polygon detid="478578056" count="1" value="12" id="404028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward    Id 478578056 " fill="rgb(255,232,0)" points="111.454,2296.62 101.718,2295.96 101.377,2299.52 111.178,2299.51 " />
<svg:polygon detid="478578060" count="1" value="12" id="404029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  3 forward    Id 478578060 " fill="rgb(255,232,0)" points="111.178,2300.49 101.377,2300.48 101.718,2304.04 111.454,2303.38 " />
<svg:polygon detid="478578064" count="1" value="12" id="404030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  0 backward    Id 478578064 " fill="rgb(255,232,0)" points="111.641,2304.36 101.9,2305 102.917,2308.52 112.466,2307.22 " />
<svg:polygon detid="478545284" count="1" value="12" id="404031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward    Id 478545284 " fill="rgb(255,232,0)" points="112.839,2308.18 103.279,2309.45 104.959,2312.88 114.202,2310.96 " />
<svg:polygon detid="478545288" count="1" value="12" id="404032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  2 forward    Id 478545288 " fill="rgb(255,232,0)" points="114.756,2311.89 105.497,2313.78 107.82,2317.08 116.639,2314.57 " />
<svg:polygon detid="478545292" count="1" value="12" id="404033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  3 forward    Id 478545292 " fill="rgb(255,232,0)" points="117.367,2315.46 108.527,2317.95 111.462,2321.07 119.747,2317.99 " />
<svg:polygon detid="478578308" count="1" value="12" id="404034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward    Id 478578308 " fill="rgb(255,232,0)" points="120.64,2318.83 112.329,2321.88 115.841,2324.79 123.488,2321.19 " />
<svg:polygon detid="478578312" count="1" value="12" id="404035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward    Id 478578312 " fill="rgb(255,232,0)" points="124.534,2321.96 116.857,2325.54 120.901,2328.2 127.813,2324.12 " />
<svg:polygon detid="478578316" count="1" value="12" id="404036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  3 forward    Id 478578316 " fill="rgb(255,232,0)" points="128.999,2324.82 122.052,2328.88 126.578,2331.26 132.669,2326.74 " />
<svg:polygon detid="478578320" count="1" value="12" id="404037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  0 backward    Id 478578320 " fill="rgb(255,232,0)" points="133.981,2327.36 127.851,2331.86 132.801,2333.92 137.994,2329.04 " />
<svg:polygon detid="478545540" count="1" value="12" id="404038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward    Id 478545540 " fill="rgb(255,232,0)" points="139.415,2329.56 134.18,2334.43 139.492,2336.16 143.722,2330.96 " />
<svg:polygon detid="478545544" count="1" value="12" id="404039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  2 forward    Id 478545544 " fill="rgb(255,232,0)" points="145.234,2331.39 140.96,2336.58 146.567,2337.94 149.781,2332.5 " />
<svg:polygon detid="478545548" count="1" value="12" id="404040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  3 forward    Id 478545548 " fill="rgb(255,232,0)" points="151.364,2332.82 148.104,2338.26 153.936,2339.25 156.093,2333.62 " />
<svg:polygon detid="478578564" count="1" value="12" id="404041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward    Id 478578564 " fill="rgb(255,232,0)" points="157.729,2333.84 155.524,2339.46 161.507,2340.06 162.581,2334.33 " />
<svg:polygon detid="478578568" count="1" value="12" id="404042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward    Id 478578568 " fill="rgb(255,232,0)" points="164.247,2334.44 163.126,2340.17 169.186,2340.37 169.161,2334.6 " />
<svg:polygon detid="478578572" count="1" value="12" id="404043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  3 forward    Id 478578572 " fill="rgb(255,232,0)" points="170.839,2334.6 170.814,2340.37 176.874,2340.17 175.753,2334.44 " />
<svg:polygon detid="478578576" count="1" value="12" id="404044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  0 backward    Id 478578576 " fill="rgb(255,232,0)" points="177.419,2334.33 178.493,2340.06 184.476,2339.46 182.271,2333.84 " />
<svg:polygon detid="478545796" count="1" value="12" id="404045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward    Id 478545796 " fill="rgb(255,232,0)" points="183.907,2333.62 186.064,2339.25 191.896,2338.26 188.636,2332.82 " />
<svg:polygon detid="478545800" count="1" value="12" id="404046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  2 forward    Id 478545800 " fill="rgb(255,232,0)" points="190.219,2332.5 193.433,2337.94 199.04,2336.58 194.766,2331.39 " />
<svg:polygon detid="478545804" count="1" value="12" id="404047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  3 forward    Id 478545804 " fill="rgb(255,232,0)" points="196.278,2330.96 200.508,2336.16 205.82,2334.43 200.585,2329.56 " />
<svg:polygon detid="478578820" count="1" value="12" id="404048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward    Id 478578820 " fill="rgb(255,232,0)" points="202.006,2329.04 207.199,2333.92 212.149,2331.86 206.019,2327.36 " />
<svg:polygon detid="478578824" count="1" value="12" id="404049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward    Id 478578824 " fill="rgb(255,232,0)" points="207.331,2326.74 213.422,2331.26 217.948,2328.88 211.001,2324.82 " />
<svg:polygon detid="478578828" count="1" value="12" id="404050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  3 forward    Id 478578828 " fill="rgb(255,232,0)" points="212.187,2324.12 219.099,2328.2 223.143,2325.54 215.466,2321.96 " />
<svg:polygon detid="478578832" count="1" value="12" id="404051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  0 backward    Id 478578832 " fill="rgb(255,232,0)" points="216.512,2321.19 224.159,2324.79 227.671,2321.88 219.36,2318.83 " />
<svg:polygon detid="478546052" count="1" value="12" id="404052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward    Id 478546052 " fill="rgb(255,232,0)" points="220.253,2317.99 228.538,2321.07 231.473,2317.95 222.633,2315.46 " />
<svg:polygon detid="478546056" count="1" value="12" id="404053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  2 forward    Id 478546056 " fill="rgb(255,232,0)" points="223.361,2314.57 232.18,2317.08 234.503,2313.78 225.244,2311.89 " />
<svg:polygon detid="478546060" count="1" value="12" id="404054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  3 forward    Id 478546060 " fill="rgb(255,232,0)" points="225.798,2310.96 235.041,2312.88 236.721,2309.45 227.161,2308.18 " />
<svg:polygon detid="478577040" count="1" value="12" id="404055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  0 backward    Id 478577040 " fill="rgb(255,232,0)" points="227.534,2307.22 237.083,2308.52 238.1,2305 228.359,2304.36 " />
<svg:polygon detid="478577028" count="1" value="12" id="404056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward    Id 478577028 " fill="rgb(255,232,0)" points="228.546,2303.38 238.282,2304.04 238.623,2300.48 228.822,2300.49 " />
<svg:polygon detid="478577066" count="1" value="12" id="405001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward    Id 478577066 " fill="rgb(255,232,0)" points="252.313,2293.17 239.92,2294.35 240.562,2299.15 " />
<svg:polygon detid="478544294" count="1" value="12" id="405002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward    Id 478544294 " fill="rgb(255,232,0)" points="249.484,2285.68 237.556,2287.98 239.467,2292.67 " />
<svg:polygon detid="478544298" count="1" value="12" id="405003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  2 forward    Id 478544298 " fill="rgb(255,232,0)" points="244.698,2278.54 233.528,2281.92 236.661,2286.36 " />
<svg:polygon detid="478544302" count="1" value="12" id="405004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  3 forward    Id 478544302 " fill="rgb(255,232,0)" points="238.072,2271.93 227.937,2276.29 232.214,2280.4 " />
<svg:polygon detid="478577318" count="1" value="12" id="405005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward    Id 478577318 " fill="rgb(255,232,0)" points="229.77,2266.02 220.919,2271.25 226.235,2274.91 " />
<svg:polygon detid="478577322" count="1" value="12" id="405006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward    Id 478577322 " fill="rgb(255,232,0)" points="219.997,2260.93 212.647,2266.92 218.871,2270.05 " />
<svg:polygon detid="478544550" count="1" value="12" id="405007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward    Id 478544550 " fill="rgb(255,232,0)" points="208.992,2256.81 203.324,2263.4 210.304,2265.92 " />
<svg:polygon detid="478544554" count="1" value="12" id="405008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  2 forward    Id 478544554 " fill="rgb(255,232,0)" points="197.028,2253.76 193.182,2260.79 200.744,2262.63 " />
<svg:polygon detid="478544558" count="1" value="12" id="405009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  3 forward    Id 478544558 " fill="rgb(255,232,0)" points="184.397,2251.84 182.468,2259.14 190.428,2260.26 " />
<svg:polygon detid="478577574" count="1" value="12" id="405010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward    Id 478577574 " fill="rgb(255,232,0)" points="171.413,2251.11 171.448,2258.49 179.608,2258.87 " />
<svg:polygon detid="478577578" count="1" value="12" id="405011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward    Id 478577578 " fill="rgb(255,232,0)" points="158.393,2251.58 160.392,2258.87 168.552,2258.49 " />
<svg:polygon detid="478544806" count="1" value="12" id="405012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward    Id 478544806 " fill="rgb(255,232,0)" points="145.66,2253.24 149.572,2260.26 157.532,2259.14 " />
<svg:polygon detid="478544810" count="1" value="12" id="405013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  2 forward    Id 478544810 " fill="rgb(255,232,0)" points="133.525,2256.06 139.256,2262.63 146.818,2260.79 " />
<svg:polygon detid="478544814" count="1" value="12" id="405014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  3 forward    Id 478544814 " fill="rgb(255,232,0)" points="122.289,2259.96 129.696,2265.92 136.676,2263.4 " />
<svg:polygon detid="478577830" count="1" value="12" id="405015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward    Id 478577830 " fill="rgb(255,232,0)" points="112.228,2264.84 121.129,2270.05 127.353,2266.92 " />
<svg:polygon detid="478577834" count="1" value="12" id="405016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward    Id 478577834 " fill="rgb(255,232,0)" points="103.589,2270.59 113.765,2274.91 119.081,2271.25 " />
<svg:polygon detid="478545062" count="1" value="12" id="405017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward    Id 478545062 " fill="rgb(255,232,0)" points="96.5852,2277.06 107.786,2280.4 112.063,2276.29 " />
<svg:polygon detid="478545066" count="1" value="12" id="405018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  2 forward    Id 478545066 " fill="rgb(255,232,0)" points="91.3893,2284.1 103.339,2286.36 106.472,2281.92 " />
<svg:polygon detid="478545070" count="1" value="12" id="405019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  3 forward    Id 478545070 " fill="rgb(255,232,0)" points="88.129,2291.53 100.533,2292.67 102.444,2287.98 " />
<svg:polygon detid="478578086" count="1" value="12" id="405020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward    Id 478578086 " fill="rgb(255,232,0)" points="86.8848,2299.17 99.4383,2299.15 100.08,2294.35 " />
<svg:polygon detid="478578090" count="1" value="12" id="405021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward    Id 478578090 " fill="rgb(255,232,0)" points="87.6871,2306.83 100.08,2305.65 99.4383,2300.85 " />
<svg:polygon detid="478545318" count="1" value="12" id="405022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward    Id 478545318 " fill="rgb(255,232,0)" points="90.5161,2314.32 102.444,2312.02 100.533,2307.33 " />
<svg:polygon detid="478545322" count="1" value="12" id="405023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  2 forward    Id 478545322 " fill="rgb(255,232,0)" points="95.3024,2321.46 106.472,2318.08 103.339,2313.64 " />
<svg:polygon detid="478545326" count="1" value="12" id="405024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  3 forward    Id 478545326 " fill="rgb(255,232,0)" points="101.928,2328.07 112.063,2323.71 107.786,2319.6 " />
<svg:polygon detid="478578342" count="1" value="12" id="405025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward    Id 478578342 " fill="rgb(255,232,0)" points="110.23,2333.98 119.081,2328.75 113.765,2325.09 " />
<svg:polygon detid="478578346" count="1" value="12" id="405026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward    Id 478578346 " fill="rgb(255,232,0)" points="120.003,2339.07 127.353,2333.08 121.129,2329.95 " />
<svg:polygon detid="478545574" count="1" value="12" id="405027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward    Id 478545574 " fill="rgb(255,232,0)" points="131.008,2343.19 136.676,2336.6 129.696,2334.08 " />
<svg:polygon detid="478545578" count="1" value="12" id="405028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  2 forward    Id 478545578 " fill="rgb(255,232,0)" points="142.972,2346.24 146.818,2339.21 139.256,2337.37 " />
<svg:polygon detid="478545582" count="1" value="12" id="405029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  3 forward    Id 478545582 " fill="rgb(255,232,0)" points="155.603,2348.16 157.532,2340.86 149.572,2339.74 " />
<svg:polygon detid="478578598" count="1" value="12" id="405030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward    Id 478578598 " fill="rgb(255,232,0)" points="168.587,2348.89 168.552,2341.51 160.392,2341.13 " />
<svg:polygon detid="478578602" count="1" value="12" id="405031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward    Id 478578602 " fill="rgb(255,232,0)" points="181.607,2348.42 179.608,2341.13 171.448,2341.51 " />
<svg:polygon detid="478545830" count="1" value="12" id="405032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward    Id 478545830 " fill="rgb(255,232,0)" points="194.34,2346.76 190.428,2339.74 182.468,2340.86 " />
<svg:polygon detid="478545834" count="1" value="12" id="405033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  2 forward    Id 478545834 " fill="rgb(255,232,0)" points="206.475,2343.94 200.744,2337.37 193.182,2339.21 " />
<svg:polygon detid="478545838" count="1" value="12" id="405034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  3 forward    Id 478545838 " fill="rgb(255,232,0)" points="217.711,2340.04 210.304,2334.08 203.324,2336.6 " />
<svg:polygon detid="478578854" count="1" value="12" id="405035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward    Id 478578854 " fill="rgb(255,232,0)" points="227.772,2335.16 218.871,2329.95 212.647,2333.08 " />
<svg:polygon detid="478578858" count="1" value="12" id="405036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward    Id 478578858 " fill="rgb(255,232,0)" points="236.411,2329.41 226.235,2325.09 220.919,2328.75 " />
<svg:polygon detid="478546086" count="1" value="12" id="405037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward    Id 478546086 " fill="rgb(255,232,0)" points="243.415,2322.94 232.214,2319.6 227.937,2323.71 " />
<svg:polygon detid="478546090" count="1" value="12" id="405038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  2 forward    Id 478546090 " fill="rgb(255,232,0)" points="248.611,2315.9 236.661,2313.64 233.528,2318.08 " />
<svg:polygon detid="478546094" count="1" value="12" id="405039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  3 forward    Id 478546094 " fill="rgb(255,232,0)" points="251.871,2308.47 239.467,2307.33 237.556,2312.02 " />
<svg:polygon detid="478577062" count="1" value="12" id="405040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward    Id 478577062 " fill="rgb(255,232,0)" points="253.115,2300.83 240.562,2300.85 239.92,2305.65 " />
<svg:polygon detid="478577065" count="1" value="12" id="405101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward   stereo Id 478577065 " fill="rgb(255,232,0)" points="240.562,2299.15 253.115,2299.17 252.313,2293.17 " />
<svg:polygon detid="478544293" count="1" value="12" id="405102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward   stereo Id 478544293 " fill="rgb(255,232,0)" points="239.467,2292.67 251.871,2291.53 249.484,2285.68 " />
<svg:polygon detid="478544297" count="1" value="12" id="405103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  2 forward   stereo Id 478544297 " fill="rgb(255,232,0)" points="236.661,2286.36 248.611,2284.1 244.698,2278.54 " />
<svg:polygon detid="478544301" count="1" value="12" id="405104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  3 forward   stereo Id 478544301 " fill="rgb(255,232,0)" points="232.214,2280.4 243.415,2277.06 238.072,2271.93 " />
<svg:polygon detid="478577317" count="1" value="12" id="405105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward   stereo Id 478577317 " fill="rgb(255,232,0)" points="226.235,2274.91 236.411,2270.59 229.77,2266.02 " />
<svg:polygon detid="478577321" count="1" value="12" id="405106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward   stereo Id 478577321 " fill="rgb(255,232,0)" points="218.871,2270.05 227.772,2264.84 219.997,2260.93 " />
<svg:polygon detid="478544549" count="1" value="12" id="405107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward   stereo Id 478544549 " fill="rgb(255,232,0)" points="210.304,2265.92 217.711,2259.96 208.992,2256.81 " />
<svg:polygon detid="478544553" count="1" value="12" id="405108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  2 forward   stereo Id 478544553 " fill="rgb(255,232,0)" points="200.744,2262.63 206.475,2256.06 197.028,2253.76 " />
<svg:polygon detid="478544557" count="1" value="12" id="405109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  3 forward   stereo Id 478544557 " fill="rgb(255,232,0)" points="190.428,2260.26 194.34,2253.24 184.397,2251.84 " />
<svg:polygon detid="478577573" count="1" value="12" id="405110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward   stereo Id 478577573 " fill="rgb(255,232,0)" points="179.608,2258.87 181.607,2251.58 171.413,2251.11 " />
<svg:polygon detid="478577577" count="1" value="12" id="405111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward   stereo Id 478577577 " fill="rgb(255,232,0)" points="168.552,2258.49 168.587,2251.11 158.393,2251.58 " />
<svg:polygon detid="478544805" count="1" value="12" id="405112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward   stereo Id 478544805 " fill="rgb(255,232,0)" points="157.532,2259.14 155.603,2251.84 145.66,2253.24 " />
<svg:polygon detid="478544809" count="1" value="12" id="405113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  2 forward   stereo Id 478544809 " fill="rgb(255,232,0)" points="146.818,2260.79 142.972,2253.76 133.525,2256.06 " />
<svg:polygon detid="478544813" count="1" value="12" id="405114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  3 forward   stereo Id 478544813 " fill="rgb(255,232,0)" points="136.676,2263.4 131.008,2256.81 122.289,2259.96 " />
<svg:polygon detid="478577829" count="1" value="12" id="405115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward   stereo Id 478577829 " fill="rgb(255,232,0)" points="127.353,2266.92 120.003,2260.93 112.228,2264.84 " />
<svg:polygon detid="478577833" count="1" value="12" id="405116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward   stereo Id 478577833 " fill="rgb(255,232,0)" points="119.081,2271.25 110.23,2266.02 103.589,2270.59 " />
<svg:polygon detid="478545061" count="1" value="12" id="405117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward   stereo Id 478545061 " fill="rgb(255,232,0)" points="112.063,2276.29 101.928,2271.93 96.5852,2277.06 " />
<svg:polygon detid="478545065" count="1" value="12" id="405118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  2 forward   stereo Id 478545065 " fill="rgb(255,232,0)" points="106.472,2281.92 95.3024,2278.54 91.3893,2284.1 " />
<svg:polygon detid="478545069" count="1" value="12" id="405119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  3 forward   stereo Id 478545069 " fill="rgb(255,232,0)" points="102.444,2287.98 90.5161,2285.68 88.129,2291.53 " />
<svg:polygon detid="478578085" count="1" value="12" id="405120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward   stereo Id 478578085 " fill="rgb(255,232,0)" points="100.08,2294.35 87.6871,2293.17 86.8848,2299.17 " />
<svg:polygon detid="478578089" count="1" value="12" id="405121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward   stereo Id 478578089 " fill="rgb(255,232,0)" points="99.4383,2300.85 86.8848,2300.83 87.6871,2306.83 " />
<svg:polygon detid="478545317" count="1" value="12" id="405122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward   stereo Id 478545317 " fill="rgb(255,232,0)" points="100.533,2307.33 88.129,2308.47 90.5161,2314.32 " />
<svg:polygon detid="478545321" count="1" value="12" id="405123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  2 forward   stereo Id 478545321 " fill="rgb(255,232,0)" points="103.339,2313.64 91.3893,2315.9 95.3024,2321.46 " />
<svg:polygon detid="478545325" count="1" value="12" id="405124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  3 forward   stereo Id 478545325 " fill="rgb(255,232,0)" points="107.786,2319.6 96.5852,2322.94 101.928,2328.07 " />
<svg:polygon detid="478578341" count="1" value="12" id="405125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward   stereo Id 478578341 " fill="rgb(255,232,0)" points="113.765,2325.09 103.589,2329.41 110.23,2333.98 " />
<svg:polygon detid="478578345" count="1" value="12" id="405126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward   stereo Id 478578345 " fill="rgb(255,232,0)" points="121.129,2329.95 112.228,2335.16 120.003,2339.07 " />
<svg:polygon detid="478545573" count="1" value="12" id="405127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward   stereo Id 478545573 " fill="rgb(255,232,0)" points="129.696,2334.08 122.289,2340.04 131.008,2343.19 " />
<svg:polygon detid="478545577" count="1" value="12" id="405128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  2 forward   stereo Id 478545577 " fill="rgb(255,232,0)" points="139.256,2337.37 133.525,2343.94 142.972,2346.24 " />
<svg:polygon detid="478545581" count="1" value="12" id="405129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  3 forward   stereo Id 478545581 " fill="rgb(255,232,0)" points="149.572,2339.74 145.66,2346.76 155.603,2348.16 " />
<svg:polygon detid="478578597" count="1" value="12" id="405130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward   stereo Id 478578597 " fill="rgb(255,232,0)" points="160.392,2341.13 158.393,2348.42 168.587,2348.89 " />
<svg:polygon detid="478578601" count="1" value="12" id="405131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward   stereo Id 478578601 " fill="rgb(255,232,0)" points="171.448,2341.51 171.413,2348.89 181.607,2348.42 " />
<svg:polygon detid="478545829" count="1" value="12" id="405132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward   stereo Id 478545829 " fill="rgb(255,232,0)" points="182.468,2340.86 184.397,2348.16 194.34,2346.76 " />
<svg:polygon detid="478545833" count="1" value="12" id="405133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  2 forward   stereo Id 478545833 " fill="rgb(255,232,0)" points="193.182,2339.21 197.028,2346.24 206.475,2343.94 " />
<svg:polygon detid="478545837" count="1" value="12" id="405134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  3 forward   stereo Id 478545837 " fill="rgb(255,232,0)" points="203.324,2336.6 208.992,2343.19 217.711,2340.04 " />
<svg:polygon detid="478578853" count="1" value="12" id="405135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward   stereo Id 478578853 " fill="rgb(255,232,0)" points="212.647,2333.08 219.997,2339.07 227.772,2335.16 " />
<svg:polygon detid="478578857" count="1" value="12" id="405136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward   stereo Id 478578857 " fill="rgb(255,232,0)" points="220.919,2328.75 229.77,2333.98 236.411,2329.41 " />
<svg:polygon detid="478546085" count="1" value="12" id="405137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward   stereo Id 478546085 " fill="rgb(255,232,0)" points="227.937,2323.71 238.072,2328.07 243.415,2322.94 " />
<svg:polygon detid="478546089" count="1" value="12" id="405138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  2 forward   stereo Id 478546089 " fill="rgb(255,232,0)" points="233.528,2318.08 244.698,2321.46 248.611,2315.9 " />
<svg:polygon detid="478546093" count="1" value="12" id="405139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  3 forward   stereo Id 478546093 " fill="rgb(255,232,0)" points="237.556,2312.02 249.484,2314.32 251.871,2308.47 " />
<svg:polygon detid="478577061" count="1" value="12" id="405140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward   stereo Id 478577061 " fill="rgb(255,232,0)" points="239.92,2305.65 252.313,2306.83 253.115,2300.83 " />
<svg:polygon detid="478577092" count="1" value="12" id="406001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward    Id 478577092 " fill="rgb(255,232,0)" points="255.048,2299.28 270.706,2299.3 270.206,2294.06 254.65,2295.12 " />
<svg:polygon detid="478577100" count="1" value="12" id="406002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  3 forward    Id 478577100 " fill="rgb(255,232,0)" points="254.376,2293.68 269.939,2292.67 268.446,2287.5 253.188,2289.57 " />
<svg:polygon detid="478544324" count="1" value="12" id="406003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward    Id 478544324 " fill="rgb(255,232,0)" points="252.643,2288.16 267.916,2286.14 265.448,2281.1 250.68,2284.16 " />
<svg:polygon detid="478544328" count="1" value="12" id="406004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  2 forward    Id 478544328 " fill="rgb(255,232,0)" points="249.87,2282.8 264.662,2279.77 261.249,2274.93 247.157,2278.94 " />
<svg:polygon detid="478544332" count="1" value="12" id="406005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  3 forward    Id 478544332 " fill="rgb(255,232,0)" points="246.093,2277.64 260.216,2273.67 255.903,2269.08 242.664,2273.99 " />
<svg:polygon detid="478577348" count="1" value="12" id="406006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward    Id 478577348 " fill="rgb(255,232,0)" points="241.36,2272.77 254.637,2267.89 249.477,2263.61 237.257,2269.37 " />
<svg:polygon detid="478577352" count="1" value="12" id="406007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward    Id 478577352 " fill="rgb(255,232,0)" points="235.729,2268.24 247.993,2262.52 242.051,2258.61 231.005,2265.13 " />
<svg:polygon detid="478577356" count="1" value="12" id="406008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  3 forward    Id 478577356 " fill="rgb(255,232,0)" points="229.271,2264.11 240.368,2257.62 233.72,2254.12 223.985,2261.34 " />
<svg:polygon detid="478577360" count="1" value="12" id="406009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  0 backward    Id 478577360 " fill="rgb(255,232,0)" points="222.068,2260.44 231.859,2253.25 224.587,2250.21 216.286,2258.02 " />
<svg:polygon detid="478544580" count="1" value="12" id="406010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward    Id 478544580 " fill="rgb(255,232,0)" points="214.21,2257.26 222.571,2249.47 214.767,2246.93 208.006,2255.24 " />
<svg:polygon detid="478544584" count="1" value="12" id="406011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  2 forward    Id 478544584 " fill="rgb(255,232,0)" points="205.796,2254.61 212.622,2246.32 204.385,2244.32 199.247,2253.02 " />
<svg:polygon detid="478544588" count="1" value="12" id="406012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  3 forward    Id 478544588 " fill="rgb(255,232,0)" points="196.932,2252.54 202.138,2243.85 193.57,2242.4 190.12,2251.39 " />
<svg:polygon detid="478577604" count="1" value="12" id="406013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward    Id 478577604 " fill="rgb(255,232,0)" points="187.73,2251.07 191.249,2242.09 182.458,2241.21 180.741,2250.37 " />
<svg:polygon detid="478577608" count="1" value="12" id="406014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward    Id 478577608 " fill="rgb(255,232,0)" points="178.304,2250.21 180.093,2241.06 171.19,2240.76 171.226,2249.97 " />
<svg:polygon detid="478577612" count="1" value="12" id="406015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  3 forward    Id 478577612 " fill="rgb(255,232,0)" points="168.774,2249.97 168.81,2240.76 159.907,2241.06 161.696,2250.21 " />
<svg:polygon detid="478577616" count="1" value="12" id="406016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  0 backward    Id 478577616 " fill="rgb(255,232,0)" points="159.259,2250.37 157.542,2241.21 148.751,2242.09 152.27,2251.07 " />
<svg:polygon detid="478544836" count="1" value="12" id="406017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward    Id 478544836 " fill="rgb(255,232,0)" points="149.88,2251.39 146.43,2242.4 137.862,2243.85 143.068,2252.54 " />
<svg:polygon detid="478544840" count="1" value="12" id="406018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  2 forward    Id 478544840 " fill="rgb(255,232,0)" points="140.753,2253.02 135.615,2244.32 127.378,2246.32 134.204,2254.61 " />
<svg:polygon detid="478544844" count="1" value="12" id="406019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  3 forward    Id 478544844 " fill="rgb(255,232,0)" points="131.994,2255.24 125.233,2246.93 117.429,2249.47 125.79,2257.26 " />
<svg:polygon detid="478577860" count="1" value="12" id="406020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward    Id 478577860 " fill="rgb(255,232,0)" points="123.714,2258.02 115.413,2250.21 108.141,2253.25 117.932,2260.44 " />
<svg:polygon detid="478577864" count="1" value="12" id="406021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward    Id 478577864 " fill="rgb(255,232,0)" points="116.015,2261.34 106.28,2254.12 99.6318,2257.62 110.729,2264.11 " />
<svg:polygon detid="478577868" count="1" value="12" id="406022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  3 forward    Id 478577868 " fill="rgb(255,232,0)" points="108.995,2265.13 97.9486,2258.61 92.0071,2262.52 104.271,2268.24 " />
<svg:polygon detid="478577872" count="1" value="12" id="406023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  0 backward    Id 478577872 " fill="rgb(255,232,0)" points="102.743,2269.37 90.5229,2263.61 85.3632,2267.89 98.6404,2272.77 " />
<svg:polygon detid="478545092" count="1" value="12" id="406024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward    Id 478545092 " fill="rgb(255,232,0)" points="97.3356,2273.99 84.0966,2269.08 79.7835,2273.67 93.9066,2277.64 " />
<svg:polygon detid="478545096" count="1" value="12" id="406025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  2 forward    Id 478545096 " fill="rgb(255,232,0)" points="92.8426,2278.94 78.7507,2274.93 75.3385,2279.77 90.1298,2282.8 " />
<svg:polygon detid="478545100" count="1" value="12" id="406026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  3 forward    Id 478545100 " fill="rgb(255,232,0)" points="89.3198,2284.16 74.5522,2281.1 72.0838,2286.14 87.3574,2288.16 " />
<svg:polygon detid="478578116" count="1" value="12" id="406027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward    Id 478578116 " fill="rgb(255,232,0)" points="86.8117,2289.57 71.5541,2287.5 70.0606,2292.67 85.6243,2293.68 " />
<svg:polygon detid="478578120" count="1" value="12" id="406028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward    Id 478578120 " fill="rgb(255,232,0)" points="85.3497,2295.12 69.794,2294.06 69.2941,2299.3 84.9522,2299.28 " />
<svg:polygon detid="478578124" count="1" value="12" id="406029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  3 forward    Id 478578124 " fill="rgb(255,232,0)" points="84.9522,2300.72 69.2941,2300.7 69.794,2305.94 85.3497,2304.88 " />
<svg:polygon detid="478578128" count="1" value="12" id="406030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  0 backward    Id 478578128 " fill="rgb(255,232,0)" points="85.6243,2306.32 70.0606,2307.33 71.5541,2312.5 86.8117,2310.43 " />
<svg:polygon detid="478545348" count="1" value="12" id="406031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward    Id 478545348 " fill="rgb(255,232,0)" points="87.3574,2311.84 72.0838,2313.86 74.5522,2318.9 89.3198,2315.84 " />
<svg:polygon detid="478545352" count="1" value="12" id="406032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  2 forward    Id 478545352 " fill="rgb(255,232,0)" points="90.1298,2317.2 75.3385,2320.23 78.7507,2325.07 92.8426,2321.06 " />
<svg:polygon detid="478545356" count="1" value="12" id="406033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  3 forward    Id 478545356 " fill="rgb(255,232,0)" points="93.9066,2322.36 79.7835,2326.33 84.0966,2330.92 97.3356,2326.01 " />
<svg:polygon detid="478578372" count="1" value="12" id="406034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward    Id 478578372 " fill="rgb(255,232,0)" points="98.6404,2327.23 85.3632,2332.11 90.5229,2336.39 102.743,2330.63 " />
<svg:polygon detid="478578376" count="1" value="12" id="406035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward    Id 478578376 " fill="rgb(255,232,0)" points="104.271,2331.76 92.0071,2337.48 97.9486,2341.39 108.995,2334.87 " />
<svg:polygon detid="478578380" count="1" value="12" id="406036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  3 forward    Id 478578380 " fill="rgb(255,232,0)" points="110.729,2335.89 99.6318,2342.38 106.28,2345.88 116.015,2338.66 " />
<svg:polygon detid="478578384" count="1" value="12" id="406037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  0 backward    Id 478578384 " fill="rgb(255,232,0)" points="117.932,2339.56 108.141,2346.75 115.413,2349.79 123.714,2341.98 " />
<svg:polygon detid="478545604" count="1" value="12" id="406038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward    Id 478545604 " fill="rgb(255,232,0)" points="125.79,2342.74 117.429,2350.53 125.233,2353.07 131.994,2344.76 " />
<svg:polygon detid="478545608" count="1" value="12" id="406039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  2 forward    Id 478545608 " fill="rgb(255,232,0)" points="134.204,2345.39 127.378,2353.68 135.615,2355.68 140.753,2346.98 " />
<svg:polygon detid="478545612" count="1" value="12" id="406040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  3 forward    Id 478545612 " fill="rgb(255,232,0)" points="143.068,2347.46 137.862,2356.15 146.43,2357.6 149.88,2348.61 " />
<svg:polygon detid="478578628" count="1" value="12" id="406041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward    Id 478578628 " fill="rgb(255,232,0)" points="152.27,2348.93 148.751,2357.91 157.542,2358.79 159.259,2349.63 " />
<svg:polygon detid="478578632" count="1" value="12" id="406042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward    Id 478578632 " fill="rgb(255,232,0)" points="161.696,2349.79 159.907,2358.94 168.81,2359.24 168.774,2350.03 " />
<svg:polygon detid="478578636" count="1" value="12" id="406043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  3 forward    Id 478578636 " fill="rgb(255,232,0)" points="171.226,2350.03 171.19,2359.24 180.093,2358.94 178.304,2349.79 " />
<svg:polygon detid="478578640" count="1" value="12" id="406044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  0 backward    Id 478578640 " fill="rgb(255,232,0)" points="180.741,2349.63 182.458,2358.79 191.249,2357.91 187.73,2348.93 " />
<svg:polygon detid="478545860" count="1" value="12" id="406045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward    Id 478545860 " fill="rgb(255,232,0)" points="190.12,2348.61 193.57,2357.6 202.138,2356.15 196.932,2347.46 " />
<svg:polygon detid="478545864" count="1" value="12" id="406046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  2 forward    Id 478545864 " fill="rgb(255,232,0)" points="199.247,2346.98 204.385,2355.68 212.622,2353.68 205.796,2345.39 " />
<svg:polygon detid="478545868" count="1" value="12" id="406047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  3 forward    Id 478545868 " fill="rgb(255,232,0)" points="208.006,2344.76 214.767,2353.07 222.571,2350.53 214.21,2342.74 " />
<svg:polygon detid="478578884" count="1" value="12" id="406048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward    Id 478578884 " fill="rgb(255,232,0)" points="216.286,2341.98 224.587,2349.79 231.859,2346.75 222.068,2339.56 " />
<svg:polygon detid="478578888" count="1" value="12" id="406049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward    Id 478578888 " fill="rgb(255,232,0)" points="223.985,2338.66 233.72,2345.88 240.368,2342.38 229.271,2335.89 " />
<svg:polygon detid="478578892" count="1" value="12" id="406050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  3 forward    Id 478578892 " fill="rgb(255,232,0)" points="231.005,2334.87 242.051,2341.39 247.993,2337.48 235.729,2331.76 " />
<svg:polygon detid="478578896" count="1" value="12" id="406051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  0 backward    Id 478578896 " fill="rgb(255,232,0)" points="237.257,2330.63 249.477,2336.39 254.637,2332.11 241.36,2327.23 " />
<svg:polygon detid="478546116" count="1" value="12" id="406052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward    Id 478546116 " fill="rgb(255,232,0)" points="242.664,2326.01 255.903,2330.92 260.216,2326.33 246.093,2322.36 " />
<svg:polygon detid="478546120" count="1" value="12" id="406053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  2 forward    Id 478546120 " fill="rgb(255,232,0)" points="247.157,2321.06 261.249,2325.07 264.662,2320.23 249.87,2317.2 " />
<svg:polygon detid="478546124" count="1" value="12" id="406054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  3 forward    Id 478546124 " fill="rgb(255,232,0)" points="250.68,2315.84 265.448,2318.9 267.916,2313.86 252.643,2311.84 " />
<svg:polygon detid="478577104" count="1" value="12" id="406055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  0 backward    Id 478577104 " fill="rgb(255,232,0)" points="253.188,2310.43 268.446,2312.5 269.939,2307.33 254.376,2306.32 " />
<svg:polygon detid="478577096" count="1" value="12" id="406056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward    Id 478577096 " fill="rgb(255,232,0)" points="254.65,2304.88 270.206,2305.94 270.706,2300.7 255.048,2300.72 " />
<svg:polygon detid="478577124" count="1" value="12" id="407001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 forward    Id 478577124 " fill="rgb(255,232,0)" points="273.723,2301.79 291.123,2302.21 291.123,2297.79 273.723,2298.21 " />
<svg:polygon detid="478577132" count="1" value="12" id="407002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  3 forward    Id 478577132 " fill="rgb(255,232,0)" points="273.642,2296.99 291.043,2296.61 290.455,2292.21 273.165,2293.43 " />
<svg:polygon detid="478577136" count="1" value="12" id="407003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  0 backward    Id 478577136 " fill="rgb(255,232,0)" points="272.921,2292.22 290.218,2291.03 289.045,2286.68 271.971,2288.69 " />
<svg:polygon detid="478544356" count="1" value="12" id="407004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 forward    Id 478544356 " fill="rgb(255,232,0)" points="271.567,2287.49 288.651,2285.51 286.901,2281.22 270.148,2284.02 " />
<svg:polygon detid="478544360" count="1" value="12" id="407005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  2 forward    Id 478544360 " fill="rgb(255,232,0)" points="269.586,2282.85 286.353,2280.08 284.036,2275.89 267.708,2279.45 " />
<svg:polygon detid="478544364" count="1" value="12" id="407006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  3 forward    Id 478544364 " fill="rgb(255,232,0)" points="266.99,2278.3 283.337,2274.77 280.468,2270.7 264.665,2275 " />
<svg:polygon detid="478544368" count="1" value="12" id="407007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  0 backward    Id 478544368 " fill="rgb(255,232,0)" points="263.797,2273.89 279.623,2269.62 276.219,2265.69 261.039,2270.71 " />
<svg:polygon detid="478544372" count="1" value="12" id="407008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 forward  module  1 backward    Id 478544372 " fill="rgb(255,232,0)" points="260.026,2269.64 275.233,2264.65 271.315,2260.89 256.851,2266.6 " />
<svg:polygon detid="478577380" count="1" value="12" id="407009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 forward    Id 478577380 " fill="rgb(255,232,0)" points="255.7,2265.58 270.194,2259.9 265.787,2256.34 252.128,2262.69 " />
<svg:polygon detid="478577384" count="1" value="12" id="407010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  2 forward    Id 478577384 " fill="rgb(255,232,0)" points="250.845,2261.73 264.537,2255.4 259.668,2252.05 246.899,2259.02 " />
<svg:polygon detid="478577388" count="1" value="12" id="407011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  3 forward    Id 478577388 " fill="rgb(255,232,0)" points="245.492,2258.12 258.297,2251.18 252.996,2248.06 241.195,2255.59 " />
<svg:polygon detid="478577392" count="1" value="12" id="407012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  0 backward    Id 478577392 " fill="rgb(255,232,0)" points="239.673,2254.77 251.513,2247.25 245.813,2244.39 235.052,2252.44 " />
<svg:polygon detid="478577396" count="1" value="12" id="407013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 backward  module  1 backward    Id 478577396 " fill="rgb(255,232,0)" points="233.425,2251.69 244.227,2243.65 238.162,2241.06 228.509,2249.59 " />
<svg:polygon detid="478544612" count="1" value="12" id="407014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 forward    Id 478544612 " fill="rgb(255,232,0)" points="226.786,2248.91 236.483,2240.4 230.09,2238.1 221.605,2247.04 " />
<svg:polygon detid="478544616" count="1" value="12" id="407015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  2 forward    Id 478544616 " fill="rgb(255,232,0)" points="219.797,2246.45 228.329,2237.52 221.649,2235.52 214.382,2244.83 " />
<svg:polygon detid="478544620" count="1" value="12" id="407016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  3 forward    Id 478544620 " fill="rgb(255,232,0)" points="212.5,2244.31 219.815,2235.02 212.888,2233.33 206.886,2242.95 " />
<svg:polygon detid="478544624" count="1" value="12" id="407017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  0 backward    Id 478544624 " fill="rgb(255,232,0)" points="204.942,2242.52 210.994,2232.92 203.864,2231.56 199.163,2241.42 " />
<svg:polygon detid="478544628" count="1" value="12" id="407018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 2 forward  module  1 backward    Id 478544628 " fill="rgb(255,232,0)" points="197.168,2241.09 201.92,2231.23 194.631,2230.21 191.259,2240.25 " />
<svg:polygon detid="478577636" count="1" value="12" id="407019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 forward    Id 478577636 " fill="rgb(255,232,0)" points="189.227,2240.02 192.65,2229.97 185.245,2229.28 183.225,2239.46 " />
<svg:polygon detid="478577640" count="1" value="12" id="407020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  2 forward    Id 478577640 " fill="rgb(255,232,0)" points="181.167,2239.31 183.24,2229.14 175.766,2228.8 175.109,2239.03 " />
<svg:polygon detid="478577644" count="1" value="12" id="407021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  3 forward    Id 478577644 " fill="rgb(255,232,0)" points="173.038,2238.99 173.749,2228.75 166.251,2228.75 166.962,2238.99 " />
<svg:polygon detid="478577648" count="1" value="12" id="407022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  0 backward    Id 478577648 " fill="rgb(255,232,0)" points="164.891,2239.03 164.234,2228.8 156.76,2229.14 158.833,2239.31 " />
<svg:polygon detid="478577652" count="1" value="12" id="407023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 backward  module  1 backward    Id 478577652 " fill="rgb(255,232,0)" points="156.775,2239.46 154.755,2229.28 147.35,2229.97 150.773,2240.02 " />
<svg:polygon detid="478544868" count="1" value="12" id="407024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 forward    Id 478544868 " fill="rgb(255,232,0)" points="148.741,2240.25 145.369,2230.21 138.08,2231.23 142.832,2241.09 " />
<svg:polygon detid="478544872" count="1" value="12" id="407025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  2 forward    Id 478544872 " fill="rgb(255,232,0)" points="140.837,2241.42 136.136,2231.56 129.006,2232.92 135.058,2242.52 " />
<svg:polygon detid="478544876" count="1" value="12" id="407026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  3 forward    Id 478544876 " fill="rgb(255,232,0)" points="133.114,2242.95 127.112,2233.33 120.185,2235.02 127.5,2244.31 " />
<svg:polygon detid="478544880" count="1" value="12" id="407027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  0 backward    Id 478544880 " fill="rgb(255,232,0)" points="125.618,2244.83 118.351,2235.52 111.671,2237.52 120.203,2246.45 " />
<svg:polygon detid="478544884" count="1" value="12" id="407028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 3 forward  module  1 backward    Id 478544884 " fill="rgb(255,232,0)" points="118.395,2247.04 109.91,2238.1 103.517,2240.4 113.214,2248.91 " />
<svg:polygon detid="478577892" count="1" value="12" id="407029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 forward    Id 478577892 " fill="rgb(255,232,0)" points="111.491,2249.59 101.838,2241.06 95.7732,2243.65 106.575,2251.69 " />
<svg:polygon detid="478577896" count="1" value="12" id="407030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  2 forward    Id 478577896 " fill="rgb(255,232,0)" points="104.948,2252.44 94.1875,2244.39 88.4867,2247.25 100.327,2254.77 " />
<svg:polygon detid="478577900" count="1" value="12" id="407031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  3 forward    Id 478577900 " fill="rgb(255,232,0)" points="98.805,2255.59 87.0039,2248.06 81.7027,2251.18 94.5082,2258.12 " />
<svg:polygon detid="478577904" count="1" value="12" id="407032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  0 backward    Id 478577904 " fill="rgb(255,232,0)" points="93.1015,2259.02 80.332,2252.05 75.4631,2255.4 89.155,2261.73 " />
<svg:polygon detid="478577908" count="1" value="12" id="407033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 backward  module  1 backward    Id 478577908 " fill="rgb(255,232,0)" points="87.8721,2262.69 74.213,2256.34 69.8064,2259.9 84.3003,2265.58 " />
<svg:polygon detid="478545124" count="1" value="12" id="407034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 forward    Id 478545124 " fill="rgb(255,232,0)" points="83.149,2266.6 68.6845,2260.89 64.7673,2264.65 79.9739,2269.64 " />
<svg:polygon detid="478545128" count="1" value="12" id="407035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  2 forward    Id 478545128 " fill="rgb(255,232,0)" points="78.9613,2270.71 63.7807,2265.69 60.3771,2269.62 76.2026,2273.89 " />
<svg:polygon detid="478545132" count="1" value="12" id="407036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  3 forward    Id 478545132 " fill="rgb(255,232,0)" points="75.335,2275 59.5317,2270.7 56.6627,2274.77 73.0096,2278.3 " />
<svg:polygon detid="478545136" count="1" value="12" id="407037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  0 backward    Id 478545136 " fill="rgb(255,232,0)" points="72.2923,2279.45 55.9638,2275.89 53.6471,2280.08 70.4145,2282.85 " />
<svg:polygon detid="478545140" count="1" value="12" id="407038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 4 forward  module  1 backward    Id 478545140 " fill="rgb(255,232,0)" points="69.852,2284.02 53.099,2281.22 51.3489,2285.51 68.4334,2287.49 " />
<svg:polygon detid="478578148" count="1" value="12" id="407039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 forward    Id 478578148 " fill="rgb(255,232,0)" points="68.0292,2288.69 50.955,2286.68 49.7822,2291.03 67.0786,2292.22 " />
<svg:polygon detid="478578152" count="1" value="12" id="407040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  2 forward    Id 478578152 " fill="rgb(255,232,0)" points="66.835,2293.43 49.5448,2292.21 48.9566,2296.61 66.3582,2296.99 " />
<svg:polygon detid="478578156" count="1" value="12" id="407041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  3 forward    Id 478578156 " fill="rgb(255,232,0)" points="66.2768,2298.21 48.8773,2297.79 48.8773,2302.21 66.2768,2301.79 " />
<svg:polygon detid="478578160" count="1" value="12" id="407042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  0 backward    Id 478578160 " fill="rgb(255,232,0)" points="66.3582,2303.01 48.9566,2303.39 49.5448,2307.79 66.835,2306.57 " />
<svg:polygon detid="478578164" count="1" value="12" id="407043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 backward  module  1 backward    Id 478578164 " fill="rgb(255,232,0)" points="67.0786,2307.78 49.7822,2308.97 50.955,2313.32 68.0292,2311.31 " />
<svg:polygon detid="478545380" count="1" value="12" id="407044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 forward    Id 478545380 " fill="rgb(255,232,0)" points="68.4334,2312.51 51.3489,2314.49 53.099,2318.78 69.852,2315.98 " />
<svg:polygon detid="478545384" count="1" value="12" id="407045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  2 forward    Id 478545384 " fill="rgb(255,232,0)" points="70.4145,2317.15 53.6471,2319.92 55.9638,2324.11 72.2923,2320.55 " />
<svg:polygon detid="478545388" count="1" value="12" id="407046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  3 forward    Id 478545388 " fill="rgb(255,232,0)" points="73.0096,2321.7 56.6627,2325.23 59.5317,2329.3 75.335,2325 " />
<svg:polygon detid="478545392" count="1" value="12" id="407047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  0 backward    Id 478545392 " fill="rgb(255,232,0)" points="76.2026,2326.11 60.3771,2330.38 63.7807,2334.31 78.9613,2329.29 " />
<svg:polygon detid="478545396" count="1" value="12" id="407048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 5 forward  module  1 backward    Id 478545396 " fill="rgb(255,232,0)" points="79.9739,2330.36 64.7673,2335.35 68.6845,2339.11 83.149,2333.4 " />
<svg:polygon detid="478578404" count="1" value="12" id="407049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 forward    Id 478578404 " fill="rgb(255,232,0)" points="84.3003,2334.42 69.8064,2340.1 74.213,2343.66 87.8721,2337.31 " />
<svg:polygon detid="478578408" count="1" value="12" id="407050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  2 forward    Id 478578408 " fill="rgb(255,232,0)" points="89.155,2338.27 75.4631,2344.6 80.332,2347.95 93.1015,2340.98 " />
<svg:polygon detid="478578412" count="1" value="12" id="407051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  3 forward    Id 478578412 " fill="rgb(255,232,0)" points="94.5082,2341.88 81.7027,2348.82 87.0039,2351.94 98.805,2344.41 " />
<svg:polygon detid="478578416" count="1" value="12" id="407052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  0 backward    Id 478578416 " fill="rgb(255,232,0)" points="100.327,2345.23 88.4867,2352.75 94.1875,2355.61 104.948,2347.56 " />
<svg:polygon detid="478578420" count="1" value="12" id="407053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 backward  module  1 backward    Id 478578420 " fill="rgb(255,232,0)" points="106.575,2348.31 95.7732,2356.35 101.838,2358.94 111.491,2350.41 " />
<svg:polygon detid="478545636" count="1" value="12" id="407054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 forward    Id 478545636 " fill="rgb(255,232,0)" points="113.214,2351.09 103.517,2359.6 109.91,2361.9 118.395,2352.96 " />
<svg:polygon detid="478545640" count="1" value="12" id="407055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  2 forward    Id 478545640 " fill="rgb(255,232,0)" points="120.203,2353.55 111.671,2362.48 118.351,2364.48 125.618,2355.17 " />
<svg:polygon detid="478545644" count="1" value="12" id="407056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  3 forward    Id 478545644 " fill="rgb(255,232,0)" points="127.5,2355.69 120.185,2364.98 127.112,2366.67 133.114,2357.05 " />
<svg:polygon detid="478545648" count="1" value="12" id="407057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  0 backward    Id 478545648 " fill="rgb(255,232,0)" points="135.058,2357.48 129.006,2367.08 136.136,2368.44 140.837,2358.58 " />
<svg:polygon detid="478545652" count="1" value="12" id="407058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 6 forward  module  1 backward    Id 478545652 " fill="rgb(255,232,0)" points="142.832,2358.91 138.08,2368.77 145.369,2369.79 148.741,2359.75 " />
<svg:polygon detid="478578660" count="1" value="12" id="407059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 forward    Id 478578660 " fill="rgb(255,232,0)" points="150.773,2359.98 147.35,2370.03 154.755,2370.72 156.775,2360.54 " />
<svg:polygon detid="478578664" count="1" value="12" id="407060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  2 forward    Id 478578664 " fill="rgb(255,232,0)" points="158.833,2360.69 156.76,2370.86 164.234,2371.2 164.891,2360.97 " />
<svg:polygon detid="478578668" count="1" value="12" id="407061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  3 forward    Id 478578668 " fill="rgb(255,232,0)" points="166.962,2361.01 166.251,2371.25 173.749,2371.25 173.038,2361.01 " />
<svg:polygon detid="478578672" count="1" value="12" id="407062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  0 backward    Id 478578672 " fill="rgb(255,232,0)" points="175.109,2360.97 175.766,2371.2 183.24,2370.86 181.167,2360.69 " />
<svg:polygon detid="478578676" count="1" value="12" id="407063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 backward  module  1 backward    Id 478578676 " fill="rgb(255,232,0)" points="183.225,2360.54 185.245,2370.72 192.65,2370.03 189.227,2359.98 " />
<svg:polygon detid="478545892" count="1" value="12" id="407064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 forward    Id 478545892 " fill="rgb(255,232,0)" points="191.259,2359.75 194.631,2369.79 201.92,2368.77 197.168,2358.91 " />
<svg:polygon detid="478545896" count="1" value="12" id="407065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  2 forward    Id 478545896 " fill="rgb(255,232,0)" points="199.163,2358.58 203.864,2368.44 210.994,2367.08 204.942,2357.48 " />
<svg:polygon detid="478545900" count="1" value="12" id="407066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  3 forward    Id 478545900 " fill="rgb(255,232,0)" points="206.886,2357.05 212.888,2366.67 219.815,2364.98 212.5,2355.69 " />
<svg:polygon detid="478545904" count="1" value="12" id="407067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  0 backward    Id 478545904 " fill="rgb(255,232,0)" points="214.382,2355.17 221.649,2364.48 228.329,2362.48 219.797,2353.55 " />
<svg:polygon detid="478545908" count="1" value="12" id="407068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 7 forward  module  1 backward    Id 478545908 " fill="rgb(255,232,0)" points="221.605,2352.96 230.09,2361.9 236.483,2359.6 226.786,2351.09 " />
<svg:polygon detid="478578916" count="1" value="12" id="407069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 forward    Id 478578916 " fill="rgb(255,232,0)" points="228.509,2350.41 238.162,2358.94 244.227,2356.35 233.425,2348.31 " />
<svg:polygon detid="478578920" count="1" value="12" id="407070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  2 forward    Id 478578920 " fill="rgb(255,232,0)" points="235.052,2347.56 245.813,2355.61 251.513,2352.75 239.673,2345.23 " />
<svg:polygon detid="478578924" count="1" value="12" id="407071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  3 forward    Id 478578924 " fill="rgb(255,232,0)" points="241.195,2344.41 252.996,2351.94 258.297,2348.82 245.492,2341.88 " />
<svg:polygon detid="478578928" count="1" value="12" id="407072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  0 backward    Id 478578928 " fill="rgb(255,232,0)" points="246.899,2340.98 259.668,2347.95 264.537,2344.6 250.845,2338.27 " />
<svg:polygon detid="478578932" count="1" value="12" id="407073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 backward  module  1 backward    Id 478578932 " fill="rgb(255,232,0)" points="252.128,2337.31 265.787,2343.66 270.194,2340.1 255.7,2334.42 " />
<svg:polygon detid="478546148" count="1" value="12" id="407074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 forward    Id 478546148 " fill="rgb(255,232,0)" points="256.851,2333.4 271.315,2339.11 275.233,2335.35 260.026,2330.36 " />
<svg:polygon detid="478546152" count="1" value="12" id="407075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  2 forward    Id 478546152 " fill="rgb(255,232,0)" points="261.039,2329.29 276.219,2334.31 279.623,2330.38 263.797,2326.11 " />
<svg:polygon detid="478546156" count="1" value="12" id="407076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  3 forward    Id 478546156 " fill="rgb(255,232,0)" points="264.665,2325 280.468,2329.3 283.337,2325.23 266.99,2321.7 " />
<svg:polygon detid="478546160" count="1" value="12" id="407077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  0 backward    Id 478546160 " fill="rgb(255,232,0)" points="267.708,2320.55 284.036,2324.11 286.353,2319.92 269.586,2317.15 " />
<svg:polygon detid="478546164" count="1" value="12" id="407078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 8 forward  module  1 backward    Id 478546164 " fill="rgb(255,232,0)" points="270.148,2315.98 286.901,2318.78 288.651,2314.49 271.567,2312.51 " />
<svg:polygon detid="478577140" count="1" value="12" id="407079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  1 backward    Id 478577140 " fill="rgb(255,232,0)" points="271.971,2311.31 289.045,2313.32 290.218,2308.97 272.921,2307.78 " />
<svg:polygon detid="478577128" count="1" value="12" id="407080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 6 ring 0 petal 1 backward  module  2 forward    Id 478577128 " fill="rgb(255,232,0)" points="273.165,2306.57 290.455,2307.79 291.043,2303.39 273.642,2303.01 " />
<svg:polygon detid="478511434" count="1" value="15" id="502001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward    Id 478511434 " fill="rgb(255,226,0)" points="214.347,2093.78 207.056,2094.96 208.013,2099.23 " />
<svg:polygon detid="478478662" count="1" value="15" id="502002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward    Id 478478662 " fill="rgb(255,226,0)" points="210.1,2087.24 203.575,2089.49 206.379,2093.47 " />
<svg:polygon detid="478511686" count="1" value="15" id="502003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward    Id 478511686 " fill="rgb(255,226,0)" points="203.12,2081.57 197.805,2084.73 202.265,2088.15 " />
<svg:polygon detid="478511690" count="1" value="15" id="502004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward    Id 478511690 " fill="rgb(255,226,0)" points="193.883,2077.16 190.14,2081.02 195.953,2083.64 " />
<svg:polygon detid="478478918" count="1" value="15" id="502005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward    Id 478478918 " fill="rgb(255,226,0)" points="183.019,2074.3 181.103,2078.6 187.872,2080.25 " />
<svg:polygon detid="478511942" count="1" value="15" id="502006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward    Id 478511942 " fill="rgb(255,226,0)" points="171.267,2073.19 171.309,2077.64 178.574,2078.2 " />
<svg:polygon detid="478511946" count="1" value="15" id="502007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward    Id 478511946 " fill="rgb(255,226,0)" points="159.429,2073.91 161.426,2078.2 168.691,2077.64 " />
<svg:polygon detid="478479174" count="1" value="15" id="502008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward    Id 478479174 " fill="rgb(255,226,0)" points="148.312,2076.41 152.128,2080.25 158.897,2078.6 " />
<svg:polygon detid="478512198" count="1" value="15" id="502009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward    Id 478512198 " fill="rgb(255,226,0)" points="138.672,2080.52 144.047,2083.64 149.86,2081.02 " />
<svg:polygon detid="478512202" count="1" value="15" id="502010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward    Id 478512202 " fill="rgb(255,226,0)" points="131.168,2085.95 137.735,2088.15 142.195,2084.73 " />
<svg:polygon detid="478479430" count="1" value="15" id="502011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward    Id 478479430 " fill="rgb(255,226,0)" points="126.309,2092.34 133.621,2093.47 136.425,2089.49 " />
<svg:polygon detid="478512454" count="1" value="15" id="502012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward    Id 478512454 " fill="rgb(255,226,0)" points="124.429,2099.25 131.987,2099.23 132.944,2094.96 " />
<svg:polygon detid="478512458" count="1" value="15" id="502013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward    Id 478512458 " fill="rgb(255,226,0)" points="125.653,2106.22 132.944,2105.04 131.987,2100.77 " />
<svg:polygon detid="478479686" count="1" value="15" id="502014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward    Id 478479686 " fill="rgb(255,226,0)" points="129.9,2112.76 136.425,2110.51 133.621,2106.53 " />
<svg:polygon detid="478512710" count="1" value="15" id="502015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward    Id 478512710 " fill="rgb(255,226,0)" points="136.88,2118.43 142.195,2115.27 137.735,2111.85 " />
<svg:polygon detid="478512714" count="1" value="15" id="502016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward    Id 478512714 " fill="rgb(255,226,0)" points="146.117,2122.84 149.86,2118.98 144.047,2116.36 " />
<svg:polygon detid="478479942" count="1" value="15" id="502017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward    Id 478479942 " fill="rgb(255,226,0)" points="156.981,2125.7 158.897,2121.4 152.128,2119.75 " />
<svg:polygon detid="478512966" count="1" value="15" id="502018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward    Id 478512966 " fill="rgb(255,226,0)" points="168.733,2126.81 168.691,2122.36 161.426,2121.8 " />
<svg:polygon detid="478512970" count="1" value="15" id="502019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward    Id 478512970 " fill="rgb(255,226,0)" points="180.571,2126.09 178.574,2121.8 171.309,2122.36 " />
<svg:polygon detid="478480198" count="1" value="15" id="502020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward    Id 478480198 " fill="rgb(255,226,0)" points="191.688,2123.59 187.872,2119.75 181.103,2121.4 " />
<svg:polygon detid="478513222" count="1" value="15" id="502021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward    Id 478513222 " fill="rgb(255,226,0)" points="201.328,2119.48 195.953,2116.36 190.14,2118.98 " />
<svg:polygon detid="478513226" count="1" value="15" id="502022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward    Id 478513226 " fill="rgb(255,226,0)" points="208.832,2114.05 202.265,2111.85 197.805,2115.27 " />
<svg:polygon detid="478480454" count="1" value="15" id="502023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward    Id 478480454 " fill="rgb(255,226,0)" points="213.691,2107.66 206.379,2106.53 203.575,2110.51 " />
<svg:polygon detid="478511430" count="1" value="15" id="502024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward    Id 478511430 " fill="rgb(255,226,0)" points="215.571,2100.75 208.013,2100.77 207.056,2105.04 " />
<svg:polygon detid="478511433" count="1" value="15" id="502101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward   stereo Id 478511433 " fill="rgb(255,226,0)" points="208.013,2099.23 215.571,2099.25 214.347,2093.78 " />
<svg:polygon detid="478478661" count="1" value="15" id="502102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward   stereo Id 478478661 " fill="rgb(255,226,0)" points="206.379,2093.47 213.691,2092.34 210.1,2087.24 " />
<svg:polygon detid="478511685" count="1" value="15" id="502103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward   stereo Id 478511685 " fill="rgb(255,226,0)" points="202.265,2088.15 208.832,2085.95 203.12,2081.57 " />
<svg:polygon detid="478511689" count="1" value="15" id="502104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward   stereo Id 478511689 " fill="rgb(255,226,0)" points="195.953,2083.64 201.328,2080.52 193.883,2077.16 " />
<svg:polygon detid="478478917" count="1" value="15" id="502105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward   stereo Id 478478917 " fill="rgb(255,226,0)" points="187.872,2080.25 191.688,2076.41 183.019,2074.3 " />
<svg:polygon detid="478511941" count="1" value="15" id="502106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward   stereo Id 478511941 " fill="rgb(255,226,0)" points="178.574,2078.2 180.571,2073.91 171.267,2073.19 " />
<svg:polygon detid="478511945" count="1" value="15" id="502107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward   stereo Id 478511945 " fill="rgb(255,226,0)" points="168.691,2077.64 168.733,2073.19 159.429,2073.91 " />
<svg:polygon detid="478479173" count="1" value="15" id="502108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward   stereo Id 478479173 " fill="rgb(255,226,0)" points="158.897,2078.6 156.981,2074.3 148.312,2076.41 " />
<svg:polygon detid="478512197" count="1" value="15" id="502109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward   stereo Id 478512197 " fill="rgb(255,226,0)" points="149.86,2081.02 146.117,2077.16 138.672,2080.52 " />
<svg:polygon detid="478512201" count="1" value="15" id="502110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward   stereo Id 478512201 " fill="rgb(255,226,0)" points="142.195,2084.73 136.88,2081.57 131.168,2085.95 " />
<svg:polygon detid="478479429" count="1" value="15" id="502111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward   stereo Id 478479429 " fill="rgb(255,226,0)" points="136.425,2089.49 129.9,2087.24 126.309,2092.34 " />
<svg:polygon detid="478512453" count="1" value="15" id="502112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward   stereo Id 478512453 " fill="rgb(255,226,0)" points="132.944,2094.96 125.653,2093.78 124.429,2099.25 " />
<svg:polygon detid="478512457" count="1" value="15" id="502113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward   stereo Id 478512457 " fill="rgb(255,226,0)" points="131.987,2100.77 124.429,2100.75 125.653,2106.22 " />
<svg:polygon detid="478479685" count="1" value="15" id="502114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward   stereo Id 478479685 " fill="rgb(255,226,0)" points="133.621,2106.53 126.309,2107.66 129.9,2112.76 " />
<svg:polygon detid="478512709" count="1" value="15" id="502115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward   stereo Id 478512709 " fill="rgb(255,226,0)" points="137.735,2111.85 131.168,2114.05 136.88,2118.43 " />
<svg:polygon detid="478512713" count="1" value="15" id="502116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward   stereo Id 478512713 " fill="rgb(255,226,0)" points="144.047,2116.36 138.672,2119.48 146.117,2122.84 " />
<svg:polygon detid="478479941" count="1" value="15" id="502117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward   stereo Id 478479941 " fill="rgb(255,226,0)" points="152.128,2119.75 148.312,2123.59 156.981,2125.7 " />
<svg:polygon detid="478512965" count="1" value="15" id="502118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward   stereo Id 478512965 " fill="rgb(255,226,0)" points="161.426,2121.8 159.429,2126.09 168.733,2126.81 " />
<svg:polygon detid="478512969" count="1" value="15" id="502119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward   stereo Id 478512969 " fill="rgb(255,226,0)" points="171.309,2122.36 171.267,2126.81 180.571,2126.09 " />
<svg:polygon detid="478480197" count="1" value="15" id="502120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward   stereo Id 478480197 " fill="rgb(255,226,0)" points="181.103,2121.4 183.019,2125.7 191.688,2123.59 " />
<svg:polygon detid="478513221" count="1" value="15" id="502121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward   stereo Id 478513221 " fill="rgb(255,226,0)" points="190.14,2118.98 193.883,2122.84 201.328,2119.48 " />
<svg:polygon detid="478513225" count="1" value="15" id="502122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward   stereo Id 478513225 " fill="rgb(255,226,0)" points="197.805,2115.27 203.12,2118.43 208.832,2114.05 " />
<svg:polygon detid="478480453" count="1" value="15" id="502123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward   stereo Id 478480453 " fill="rgb(255,226,0)" points="203.575,2110.51 210.1,2112.76 213.691,2107.66 " />
<svg:polygon detid="478511429" count="1" value="15" id="502124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward   stereo Id 478511429 " fill="rgb(255,226,0)" points="207.056,2105.04 214.347,2106.22 215.571,2100.75 " />
<svg:polygon detid="478511460" count="1" value="15" id="503001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward    Id 478511460 " fill="rgb(255,226,0)" points="216.008,2101.57 225.409,2102.03 225.409,2097.97 216.008,2098.43 " />
<svg:polygon detid="478511464" count="1" value="15" id="503002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward    Id 478511464 " fill="rgb(255,226,0)" points="215.861,2097.32 225.267,2096.91 224.187,2092.9 215.023,2094.21 " />
<svg:polygon detid="478478692" count="1" value="15" id="503003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward    Id 478478692 " fill="rgb(255,226,0)" points="214.584,2093.13 223.764,2091.86 221.631,2088 212.929,2090.14 " />
<svg:polygon detid="478478696" count="1" value="15" id="503004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  2 forward    Id 478478696 " fill="rgb(255,226,0)" points="212.209,2089.12 220.937,2087.01 217.803,2083.39 209.778,2086.31 " />
<svg:polygon detid="478511716" count="1" value="15" id="503005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward    Id 478511716 " fill="rgb(255,226,0)" points="208.795,2085.37 216.856,2082.48 212.799,2079.2 205.648,2082.82 " />
<svg:polygon detid="478511720" count="1" value="15" id="503006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward    Id 478511720 " fill="rgb(255,226,0)" points="204.426,2081.98 211.621,2078.39 206.74,2075.52 200.64,2079.75 " />
<svg:polygon detid="478511724" count="1" value="15" id="503007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  3 forward    Id 478511724 " fill="rgb(255,226,0)" points="199.209,2079.03 205.361,2074.82 199.777,2072.44 194.877,2077.18 " />
<svg:polygon detid="478478948" count="1" value="15" id="503008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward    Id 478478948 " fill="rgb(255,226,0)" points="193.273,2076.6 198.23,2071.88 192.081,2070.04 188.502,2075.17 " />
<svg:polygon detid="478478952" count="1" value="15" id="503009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  2 forward    Id 478478952 " fill="rgb(255,226,0)" points="186.764,2074.75 190.405,2069.63 183.84,2068.37 181.671,2073.77 " />
<svg:polygon detid="478511972" count="1" value="15" id="503010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward    Id 478511972 " fill="rgb(255,226,0)" points="179.842,2073.52 182.076,2068.13 175.259,2067.49 174.553,2073.02 " />
<svg:polygon detid="478511976" count="1" value="15" id="503011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward    Id 478511976 " fill="rgb(255,226,0)" points="172.677,2072.94 173.451,2067.41 166.549,2067.41 167.323,2072.94 " />
<svg:polygon detid="478511980" count="1" value="15" id="503012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  3 forward    Id 478511980 " fill="rgb(255,226,0)" points="165.447,2073.02 164.741,2067.49 157.924,2068.13 160.158,2073.52 " />
<svg:polygon detid="478479204" count="1" value="15" id="503013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward    Id 478479204 " fill="rgb(255,226,0)" points="158.329,2073.77 156.16,2068.37 149.595,2069.63 153.236,2074.75 " />
<svg:polygon detid="478479208" count="1" value="15" id="503014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  2 forward    Id 478479208 " fill="rgb(255,226,0)" points="151.498,2075.17 147.919,2070.04 141.77,2071.88 146.727,2076.6 " />
<svg:polygon detid="478512228" count="1" value="15" id="503015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward    Id 478512228 " fill="rgb(255,226,0)" points="145.123,2077.18 140.223,2072.44 134.639,2074.82 140.791,2079.03 " />
<svg:polygon detid="478512232" count="1" value="15" id="503016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward    Id 478512232 " fill="rgb(255,226,0)" points="139.36,2079.75 133.26,2075.52 128.379,2078.39 135.574,2081.98 " />
<svg:polygon detid="478512236" count="1" value="15" id="503017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  3 forward    Id 478512236 " fill="rgb(255,226,0)" points="134.352,2082.82 127.201,2079.2 123.144,2082.48 131.205,2085.37 " />
<svg:polygon detid="478479460" count="1" value="15" id="503018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward    Id 478479460 " fill="rgb(255,226,0)" points="130.222,2086.31 122.197,2083.39 119.063,2087.01 127.791,2089.12 " />
<svg:polygon detid="478479464" count="1" value="15" id="503019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  2 forward    Id 478479464 " fill="rgb(255,226,0)" points="127.071,2090.14 118.369,2088 116.236,2091.86 125.416,2093.13 " />
<svg:polygon detid="478512484" count="1" value="15" id="503020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward    Id 478512484 " fill="rgb(255,226,0)" points="124.977,2094.21 115.813,2092.9 114.733,2096.91 124.139,2097.32 " />
<svg:polygon detid="478512488" count="1" value="15" id="503021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward    Id 478512488 " fill="rgb(255,226,0)" points="123.992,2098.43 114.591,2097.97 114.591,2102.03 123.992,2101.57 " />
<svg:polygon detid="478512492" count="1" value="15" id="503022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  3 forward    Id 478512492 " fill="rgb(255,226,0)" points="124.139,2102.68 114.733,2103.09 115.813,2107.1 124.977,2105.79 " />
<svg:polygon detid="478479716" count="1" value="15" id="503023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward    Id 478479716 " fill="rgb(255,226,0)" points="125.416,2106.87 116.236,2108.14 118.369,2112 127.071,2109.86 " />
<svg:polygon detid="478479720" count="1" value="15" id="503024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  2 forward    Id 478479720 " fill="rgb(255,226,0)" points="127.791,2110.88 119.063,2112.99 122.197,2116.61 130.222,2113.69 " />
<svg:polygon detid="478512740" count="1" value="15" id="503025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward    Id 478512740 " fill="rgb(255,226,0)" points="131.205,2114.63 123.144,2117.52 127.201,2120.8 134.352,2117.18 " />
<svg:polygon detid="478512744" count="1" value="15" id="503026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward    Id 478512744 " fill="rgb(255,226,0)" points="135.574,2118.02 128.379,2121.61 133.26,2124.48 139.36,2120.25 " />
<svg:polygon detid="478512748" count="1" value="15" id="503027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  3 forward    Id 478512748 " fill="rgb(255,226,0)" points="140.791,2120.97 134.639,2125.18 140.223,2127.56 145.123,2122.82 " />
<svg:polygon detid="478479972" count="1" value="15" id="503028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward    Id 478479972 " fill="rgb(255,226,0)" points="146.727,2123.4 141.77,2128.12 147.919,2129.96 151.498,2124.83 " />
<svg:polygon detid="478479976" count="1" value="15" id="503029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  2 forward    Id 478479976 " fill="rgb(255,226,0)" points="153.236,2125.25 149.595,2130.37 156.16,2131.63 158.329,2126.23 " />
<svg:polygon detid="478512996" count="1" value="15" id="503030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward    Id 478512996 " fill="rgb(255,226,0)" points="160.158,2126.48 157.924,2131.87 164.741,2132.51 165.447,2126.98 " />
<svg:polygon detid="478513000" count="1" value="15" id="503031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward    Id 478513000 " fill="rgb(255,226,0)" points="167.323,2127.06 166.549,2132.59 173.451,2132.59 172.677,2127.06 " />
<svg:polygon detid="478513004" count="1" value="15" id="503032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  3 forward    Id 478513004 " fill="rgb(255,226,0)" points="174.553,2126.98 175.259,2132.51 182.076,2131.87 179.842,2126.48 " />
<svg:polygon detid="478480228" count="1" value="15" id="503033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward    Id 478480228 " fill="rgb(255,226,0)" points="181.671,2126.23 183.84,2131.63 190.405,2130.37 186.764,2125.25 " />
<svg:polygon detid="478480232" count="1" value="15" id="503034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  2 forward    Id 478480232 " fill="rgb(255,226,0)" points="188.502,2124.83 192.081,2129.96 198.23,2128.12 193.273,2123.4 " />
<svg:polygon detid="478513252" count="1" value="15" id="503035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward    Id 478513252 " fill="rgb(255,226,0)" points="194.877,2122.82 199.777,2127.56 205.361,2125.18 199.209,2120.97 " />
<svg:polygon detid="478513256" count="1" value="15" id="503036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward    Id 478513256 " fill="rgb(255,226,0)" points="200.64,2120.25 206.74,2124.48 211.621,2121.61 204.426,2118.02 " />
<svg:polygon detid="478513260" count="1" value="15" id="503037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  3 forward    Id 478513260 " fill="rgb(255,226,0)" points="205.648,2117.18 212.799,2120.8 216.856,2117.52 208.795,2114.63 " />
<svg:polygon detid="478480484" count="1" value="15" id="503038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward    Id 478480484 " fill="rgb(255,226,0)" points="209.778,2113.69 217.803,2116.61 220.937,2112.99 212.209,2110.88 " />
<svg:polygon detid="478480488" count="1" value="15" id="503039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  2 forward    Id 478480488 " fill="rgb(255,226,0)" points="212.929,2109.86 221.631,2112 223.764,2108.14 214.584,2106.87 " />
<svg:polygon detid="478511468" count="1" value="15" id="503040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  3 forward    Id 478511468 " fill="rgb(255,226,0)" points="215.023,2105.79 224.187,2107.1 225.267,2103.09 215.861,2102.68 " />
<svg:polygon detid="478511496" count="1" value="15" id="504001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward    Id 478511496 " fill="rgb(255,226,0)" points="228.822,2099.51 238.623,2099.52 238.282,2095.96 228.546,2096.62 " />
<svg:polygon detid="478511500" count="1" value="15" id="504002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  3 forward    Id 478511500 " fill="rgb(255,226,0)" points="228.359,2095.64 238.1,2095 237.083,2091.48 227.534,2092.78 " />
<svg:polygon detid="478478724" count="1" value="15" id="504003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward    Id 478478724 " fill="rgb(255,226,0)" points="227.161,2091.82 236.721,2090.55 235.041,2087.12 225.798,2089.04 " />
<svg:polygon detid="478478728" count="1" value="15" id="504004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  2 forward    Id 478478728 " fill="rgb(255,226,0)" points="225.244,2088.11 234.503,2086.22 232.18,2082.92 223.361,2085.43 " />
<svg:polygon detid="478478732" count="1" value="15" id="504005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  3 forward    Id 478478732 " fill="rgb(255,226,0)" points="222.633,2084.54 231.473,2082.05 228.538,2078.93 220.253,2082.01 " />
<svg:polygon detid="478511748" count="1" value="15" id="504006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward    Id 478511748 " fill="rgb(255,226,0)" points="219.36,2081.17 227.671,2078.12 224.159,2075.21 216.512,2078.81 " />
<svg:polygon detid="478511752" count="1" value="15" id="504007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward    Id 478511752 " fill="rgb(255,226,0)" points="215.466,2078.04 223.143,2074.46 219.099,2071.8 212.187,2075.88 " />
<svg:polygon detid="478511756" count="1" value="15" id="504008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  3 forward    Id 478511756 " fill="rgb(255,226,0)" points="211.001,2075.18 217.948,2071.12 213.422,2068.74 207.331,2073.26 " />
<svg:polygon detid="478511760" count="1" value="15" id="504009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  0 backward    Id 478511760 " fill="rgb(255,226,0)" points="206.019,2072.64 212.149,2068.14 207.199,2066.08 202.006,2070.96 " />
<svg:polygon detid="478478980" count="1" value="15" id="504010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward    Id 478478980 " fill="rgb(255,226,0)" points="200.585,2070.44 205.82,2065.57 200.508,2063.84 196.278,2069.04 " />
<svg:polygon detid="478478984" count="1" value="15" id="504011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  2 forward    Id 478478984 " fill="rgb(255,226,0)" points="194.766,2068.61 199.04,2063.42 193.433,2062.06 190.219,2067.5 " />
<svg:polygon detid="478478988" count="1" value="15" id="504012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  3 forward    Id 478478988 " fill="rgb(255,226,0)" points="188.636,2067.18 191.896,2061.74 186.064,2060.75 183.907,2066.38 " />
<svg:polygon detid="478512004" count="1" value="15" id="504013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward    Id 478512004 " fill="rgb(255,226,0)" points="182.271,2066.16 184.476,2060.54 178.493,2059.94 177.419,2065.67 " />
<svg:polygon detid="478512008" count="1" value="15" id="504014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward    Id 478512008 " fill="rgb(255,226,0)" points="175.753,2065.56 176.874,2059.83 170.814,2059.63 170.839,2065.4 " />
<svg:polygon detid="478512012" count="1" value="15" id="504015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  3 forward    Id 478512012 " fill="rgb(255,226,0)" points="169.161,2065.4 169.186,2059.63 163.126,2059.83 164.247,2065.56 " />
<svg:polygon detid="478512016" count="1" value="15" id="504016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  0 backward    Id 478512016 " fill="rgb(255,226,0)" points="162.581,2065.67 161.507,2059.94 155.524,2060.54 157.729,2066.16 " />
<svg:polygon detid="478479236" count="1" value="15" id="504017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward    Id 478479236 " fill="rgb(255,226,0)" points="156.093,2066.38 153.936,2060.75 148.104,2061.74 151.364,2067.18 " />
<svg:polygon detid="478479240" count="1" value="15" id="504018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  2 forward    Id 478479240 " fill="rgb(255,226,0)" points="149.781,2067.5 146.567,2062.06 140.96,2063.42 145.234,2068.61 " />
<svg:polygon detid="478479244" count="1" value="15" id="504019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  3 forward    Id 478479244 " fill="rgb(255,226,0)" points="143.722,2069.04 139.492,2063.84 134.18,2065.57 139.415,2070.44 " />
<svg:polygon detid="478512260" count="1" value="15" id="504020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward    Id 478512260 " fill="rgb(255,226,0)" points="137.994,2070.96 132.801,2066.08 127.851,2068.14 133.981,2072.64 " />
<svg:polygon detid="478512264" count="1" value="15" id="504021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward    Id 478512264 " fill="rgb(255,226,0)" points="132.669,2073.26 126.578,2068.74 122.052,2071.12 128.999,2075.18 " />
<svg:polygon detid="478512268" count="1" value="15" id="504022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  3 forward    Id 478512268 " fill="rgb(255,226,0)" points="127.813,2075.88 120.901,2071.8 116.857,2074.46 124.534,2078.04 " />
<svg:polygon detid="478512272" count="1" value="15" id="504023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  0 backward    Id 478512272 " fill="rgb(255,226,0)" points="123.488,2078.81 115.841,2075.21 112.329,2078.12 120.64,2081.17 " />
<svg:polygon detid="478479492" count="1" value="15" id="504024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward    Id 478479492 " fill="rgb(255,226,0)" points="119.747,2082.01 111.462,2078.93 108.527,2082.05 117.367,2084.54 " />
<svg:polygon detid="478479496" count="1" value="15" id="504025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  2 forward    Id 478479496 " fill="rgb(255,226,0)" points="116.639,2085.43 107.82,2082.92 105.497,2086.22 114.756,2088.11 " />
<svg:polygon detid="478479500" count="1" value="15" id="504026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  3 forward    Id 478479500 " fill="rgb(255,226,0)" points="114.202,2089.04 104.959,2087.12 103.279,2090.55 112.839,2091.82 " />
<svg:polygon detid="478512516" count="1" value="15" id="504027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward    Id 478512516 " fill="rgb(255,226,0)" points="112.466,2092.78 102.917,2091.48 101.9,2095 111.641,2095.64 " />
<svg:polygon detid="478512520" count="1" value="15" id="504028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward    Id 478512520 " fill="rgb(255,226,0)" points="111.454,2096.62 101.718,2095.96 101.377,2099.52 111.178,2099.51 " />
<svg:polygon detid="478512524" count="1" value="15" id="504029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  3 forward    Id 478512524 " fill="rgb(255,226,0)" points="111.178,2100.49 101.377,2100.48 101.718,2104.04 111.454,2103.38 " />
<svg:polygon detid="478512528" count="1" value="15" id="504030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  0 backward    Id 478512528 " fill="rgb(255,226,0)" points="111.641,2104.36 101.9,2105 102.917,2108.52 112.466,2107.22 " />
<svg:polygon detid="478479748" count="1" value="15" id="504031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward    Id 478479748 " fill="rgb(255,226,0)" points="112.839,2108.18 103.279,2109.45 104.959,2112.88 114.202,2110.96 " />
<svg:polygon detid="478479752" count="1" value="15" id="504032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  2 forward    Id 478479752 " fill="rgb(255,226,0)" points="114.756,2111.89 105.497,2113.78 107.82,2117.08 116.639,2114.57 " />
<svg:polygon detid="478479756" count="1" value="15" id="504033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  3 forward    Id 478479756 " fill="rgb(255,226,0)" points="117.367,2115.46 108.527,2117.95 111.462,2121.07 119.747,2117.99 " />
<svg:polygon detid="478512772" count="1" value="15" id="504034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward    Id 478512772 " fill="rgb(255,226,0)" points="120.64,2118.83 112.329,2121.88 115.841,2124.79 123.488,2121.19 " />
<svg:polygon detid="478512776" count="1" value="15" id="504035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward    Id 478512776 " fill="rgb(255,226,0)" points="124.534,2121.96 116.857,2125.54 120.901,2128.2 127.813,2124.12 " />
<svg:polygon detid="478512780" count="1" value="15" id="504036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  3 forward    Id 478512780 " fill="rgb(255,226,0)" points="128.999,2124.82 122.052,2128.88 126.578,2131.26 132.669,2126.74 " />
<svg:polygon detid="478512784" count="1" value="15" id="504037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  0 backward    Id 478512784 " fill="rgb(255,226,0)" points="133.981,2127.36 127.851,2131.86 132.801,2133.92 137.994,2129.04 " />
<svg:polygon detid="478480004" count="1" value="15" id="504038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward    Id 478480004 " fill="rgb(255,226,0)" points="139.415,2129.56 134.18,2134.43 139.492,2136.16 143.722,2130.96 " />
<svg:polygon detid="478480008" count="1" value="15" id="504039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  2 forward    Id 478480008 " fill="rgb(255,226,0)" points="145.234,2131.39 140.96,2136.58 146.567,2137.94 149.781,2132.5 " />
<svg:polygon detid="478480012" count="1" value="15" id="504040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  3 forward    Id 478480012 " fill="rgb(255,226,0)" points="151.364,2132.82 148.104,2138.26 153.936,2139.25 156.093,2133.62 " />
<svg:polygon detid="478513028" count="1" value="15" id="504041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward    Id 478513028 " fill="rgb(255,226,0)" points="157.729,2133.84 155.524,2139.46 161.507,2140.06 162.581,2134.33 " />
<svg:polygon detid="478513032" count="1" value="15" id="504042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward    Id 478513032 " fill="rgb(255,226,0)" points="164.247,2134.44 163.126,2140.17 169.186,2140.37 169.161,2134.6 " />
<svg:polygon detid="478513036" count="1" value="15" id="504043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  3 forward    Id 478513036 " fill="rgb(255,226,0)" points="170.839,2134.6 170.814,2140.37 176.874,2140.17 175.753,2134.44 " />
<svg:polygon detid="478513040" count="1" value="15" id="504044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  0 backward    Id 478513040 " fill="rgb(255,226,0)" points="177.419,2134.33 178.493,2140.06 184.476,2139.46 182.271,2133.84 " />
<svg:polygon detid="478480260" count="1" value="15" id="504045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward    Id 478480260 " fill="rgb(255,226,0)" points="183.907,2133.62 186.064,2139.25 191.896,2138.26 188.636,2132.82 " />
<svg:polygon detid="478480264" count="1" value="15" id="504046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  2 forward    Id 478480264 " fill="rgb(255,226,0)" points="190.219,2132.5 193.433,2137.94 199.04,2136.58 194.766,2131.39 " />
<svg:polygon detid="478480268" count="1" value="15" id="504047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  3 forward    Id 478480268 " fill="rgb(255,226,0)" points="196.278,2130.96 200.508,2136.16 205.82,2134.43 200.585,2129.56 " />
<svg:polygon detid="478513284" count="1" value="15" id="504048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward    Id 478513284 " fill="rgb(255,226,0)" points="202.006,2129.04 207.199,2133.92 212.149,2131.86 206.019,2127.36 " />
<svg:polygon detid="478513288" count="1" value="15" id="504049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward    Id 478513288 " fill="rgb(255,226,0)" points="207.331,2126.74 213.422,2131.26 217.948,2128.88 211.001,2124.82 " />
<svg:polygon detid="478513292" count="1" value="15" id="504050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  3 forward    Id 478513292 " fill="rgb(255,226,0)" points="212.187,2124.12 219.099,2128.2 223.143,2125.54 215.466,2121.96 " />
<svg:polygon detid="478513296" count="1" value="15" id="504051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  0 backward    Id 478513296 " fill="rgb(255,226,0)" points="216.512,2121.19 224.159,2124.79 227.671,2121.88 219.36,2118.83 " />
<svg:polygon detid="478480516" count="1" value="15" id="504052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward    Id 478480516 " fill="rgb(255,226,0)" points="220.253,2117.99 228.538,2121.07 231.473,2117.95 222.633,2115.46 " />
<svg:polygon detid="478480520" count="1" value="15" id="504053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  2 forward    Id 478480520 " fill="rgb(255,226,0)" points="223.361,2114.57 232.18,2117.08 234.503,2113.78 225.244,2111.89 " />
<svg:polygon detid="478480524" count="1" value="15" id="504054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  3 forward    Id 478480524 " fill="rgb(255,226,0)" points="225.798,2110.96 235.041,2112.88 236.721,2109.45 227.161,2108.18 " />
<svg:polygon detid="478511504" count="1" value="15" id="504055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  0 backward    Id 478511504 " fill="rgb(255,226,0)" points="227.534,2107.22 237.083,2108.52 238.1,2105 228.359,2104.36 " />
<svg:polygon detid="478511492" count="1" value="15" id="504056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward    Id 478511492 " fill="rgb(255,226,0)" points="228.546,2103.38 238.282,2104.04 238.623,2100.48 228.822,2100.49 " />
<svg:polygon detid="478511530" count="1" value="15" id="505001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward    Id 478511530 " fill="rgb(255,226,0)" points="252.313,2093.17 239.92,2094.35 240.562,2099.15 " />
<svg:polygon detid="478478758" count="1" value="15" id="505002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward    Id 478478758 " fill="rgb(255,226,0)" points="249.484,2085.68 237.556,2087.98 239.467,2092.67 " />
<svg:polygon detid="478478762" count="1" value="15" id="505003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  2 forward    Id 478478762 " fill="rgb(255,226,0)" points="244.698,2078.54 233.528,2081.92 236.661,2086.36 " />
<svg:polygon detid="478478766" count="1" value="15" id="505004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  3 forward    Id 478478766 " fill="rgb(255,226,0)" points="238.072,2071.93 227.937,2076.29 232.214,2080.4 " />
<svg:polygon detid="478511782" count="1" value="15" id="505005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward    Id 478511782 " fill="rgb(255,226,0)" points="229.77,2066.02 220.919,2071.25 226.235,2074.91 " />
<svg:polygon detid="478511786" count="1" value="15" id="505006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward    Id 478511786 " fill="rgb(255,226,0)" points="219.997,2060.93 212.647,2066.92 218.871,2070.05 " />
<svg:polygon detid="478479014" count="1" value="15" id="505007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward    Id 478479014 " fill="rgb(255,226,0)" points="208.992,2056.81 203.324,2063.4 210.304,2065.92 " />
<svg:polygon detid="478479018" count="1" value="15" id="505008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  2 forward    Id 478479018 " fill="rgb(255,226,0)" points="197.028,2053.76 193.182,2060.79 200.744,2062.63 " />
<svg:polygon detid="478479022" count="1" value="15" id="505009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  3 forward    Id 478479022 " fill="rgb(255,226,0)" points="184.397,2051.84 182.468,2059.14 190.428,2060.26 " />
<svg:polygon detid="478512038" count="1" value="15" id="505010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward    Id 478512038 " fill="rgb(255,226,0)" points="171.413,2051.11 171.448,2058.49 179.608,2058.87 " />
<svg:polygon detid="478512042" count="1" value="15" id="505011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward    Id 478512042 " fill="rgb(255,226,0)" points="158.393,2051.58 160.392,2058.87 168.552,2058.49 " />
<svg:polygon detid="478479270" count="1" value="15" id="505012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward    Id 478479270 " fill="rgb(255,226,0)" points="145.66,2053.24 149.572,2060.26 157.532,2059.14 " />
<svg:polygon detid="478479274" count="1" value="15" id="505013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  2 forward    Id 478479274 " fill="rgb(255,226,0)" points="133.525,2056.06 139.256,2062.63 146.818,2060.79 " />
<svg:polygon detid="478479278" count="1" value="15" id="505014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  3 forward    Id 478479278 " fill="rgb(255,226,0)" points="122.289,2059.96 129.696,2065.92 136.676,2063.4 " />
<svg:polygon detid="478512294" count="1" value="15" id="505015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward    Id 478512294 " fill="rgb(255,226,0)" points="112.228,2064.84 121.129,2070.05 127.353,2066.92 " />
<svg:polygon detid="478512298" count="1" value="15" id="505016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward    Id 478512298 " fill="rgb(255,226,0)" points="103.589,2070.59 113.765,2074.91 119.081,2071.25 " />
<svg:polygon detid="478479526" count="1" value="15" id="505017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward    Id 478479526 " fill="rgb(255,226,0)" points="96.5852,2077.06 107.786,2080.4 112.063,2076.29 " />
<svg:polygon detid="478479530" count="1" value="15" id="505018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  2 forward    Id 478479530 " fill="rgb(255,226,0)" points="91.3893,2084.1 103.339,2086.36 106.472,2081.92 " />
<svg:polygon detid="478479534" count="1" value="15" id="505019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  3 forward    Id 478479534 " fill="rgb(255,226,0)" points="88.129,2091.53 100.533,2092.67 102.444,2087.98 " />
<svg:polygon detid="478512550" count="1" value="15" id="505020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward    Id 478512550 " fill="rgb(255,226,0)" points="86.8848,2099.17 99.4383,2099.15 100.08,2094.35 " />
<svg:polygon detid="478512554" count="1" value="15" id="505021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward    Id 478512554 " fill="rgb(255,226,0)" points="87.6871,2106.83 100.08,2105.65 99.4383,2100.85 " />
<svg:polygon detid="478479782" count="1" value="15" id="505022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward    Id 478479782 " fill="rgb(255,226,0)" points="90.5161,2114.32 102.444,2112.02 100.533,2107.33 " />
<svg:polygon detid="478479786" count="1" value="15" id="505023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  2 forward    Id 478479786 " fill="rgb(255,226,0)" points="95.3024,2121.46 106.472,2118.08 103.339,2113.64 " />
<svg:polygon detid="478479790" count="1" value="15" id="505024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  3 forward    Id 478479790 " fill="rgb(255,226,0)" points="101.928,2128.07 112.063,2123.71 107.786,2119.6 " />
<svg:polygon detid="478512806" count="1" value="15" id="505025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward    Id 478512806 " fill="rgb(255,226,0)" points="110.23,2133.98 119.081,2128.75 113.765,2125.09 " />
<svg:polygon detid="478512810" count="1" value="15" id="505026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward    Id 478512810 " fill="rgb(255,226,0)" points="120.003,2139.07 127.353,2133.08 121.129,2129.95 " />
<svg:polygon detid="478480038" count="1" value="15" id="505027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward    Id 478480038 " fill="rgb(255,226,0)" points="131.008,2143.19 136.676,2136.6 129.696,2134.08 " />
<svg:polygon detid="478480042" count="1" value="15" id="505028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  2 forward    Id 478480042 " fill="rgb(255,226,0)" points="142.972,2146.24 146.818,2139.21 139.256,2137.37 " />
<svg:polygon detid="478480046" count="1" value="15" id="505029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  3 forward    Id 478480046 " fill="rgb(255,226,0)" points="155.603,2148.16 157.532,2140.86 149.572,2139.74 " />
<svg:polygon detid="478513062" count="1" value="15" id="505030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward    Id 478513062 " fill="rgb(255,226,0)" points="168.587,2148.89 168.552,2141.51 160.392,2141.13 " />
<svg:polygon detid="478513066" count="1" value="15" id="505031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward    Id 478513066 " fill="rgb(255,226,0)" points="181.607,2148.42 179.608,2141.13 171.448,2141.51 " />
<svg:polygon detid="478480294" count="1" value="15" id="505032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward    Id 478480294 " fill="rgb(255,226,0)" points="194.34,2146.76 190.428,2139.74 182.468,2140.86 " />
<svg:polygon detid="478480298" count="1" value="15" id="505033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  2 forward    Id 478480298 " fill="rgb(255,226,0)" points="206.475,2143.94 200.744,2137.37 193.182,2139.21 " />
<svg:polygon detid="478480302" count="1" value="15" id="505034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  3 forward    Id 478480302 " fill="rgb(255,226,0)" points="217.711,2140.04 210.304,2134.08 203.324,2136.6 " />
<svg:polygon detid="478513318" count="1" value="15" id="505035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward    Id 478513318 " fill="rgb(255,226,0)" points="227.772,2135.16 218.871,2129.95 212.647,2133.08 " />
<svg:polygon detid="478513322" count="1" value="15" id="505036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward    Id 478513322 " fill="rgb(255,226,0)" points="236.411,2129.41 226.235,2125.09 220.919,2128.75 " />
<svg:polygon detid="478480550" count="1" value="15" id="505037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward    Id 478480550 " fill="rgb(255,226,0)" points="243.415,2122.94 232.214,2119.6 227.937,2123.71 " />
<svg:polygon detid="478480554" count="1" value="15" id="505038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  2 forward    Id 478480554 " fill="rgb(255,226,0)" points="248.611,2115.9 236.661,2113.64 233.528,2118.08 " />
<svg:polygon detid="478480558" count="1" value="15" id="505039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  3 forward    Id 478480558 " fill="rgb(255,226,0)" points="251.871,2108.47 239.467,2107.33 237.556,2112.02 " />
<svg:polygon detid="478511526" count="1" value="15" id="505040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward    Id 478511526 " fill="rgb(255,226,0)" points="253.115,2100.83 240.562,2100.85 239.92,2105.65 " />
<svg:polygon detid="478511529" count="1" value="15" id="505101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward   stereo Id 478511529 " fill="rgb(255,226,0)" points="240.562,2099.15 253.115,2099.17 252.313,2093.17 " />
<svg:polygon detid="478478757" count="1" value="15" id="505102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward   stereo Id 478478757 " fill="rgb(255,226,0)" points="239.467,2092.67 251.871,2091.53 249.484,2085.68 " />
<svg:polygon detid="478478761" count="1" value="15" id="505103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  2 forward   stereo Id 478478761 " fill="rgb(255,226,0)" points="236.661,2086.36 248.611,2084.1 244.698,2078.54 " />
<svg:polygon detid="478478765" count="1" value="15" id="505104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  3 forward   stereo Id 478478765 " fill="rgb(255,226,0)" points="232.214,2080.4 243.415,2077.06 238.072,2071.93 " />
<svg:polygon detid="478511781" count="1" value="15" id="505105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward   stereo Id 478511781 " fill="rgb(255,226,0)" points="226.235,2074.91 236.411,2070.59 229.77,2066.02 " />
<svg:polygon detid="478511785" count="1" value="15" id="505106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward   stereo Id 478511785 " fill="rgb(255,226,0)" points="218.871,2070.05 227.772,2064.84 219.997,2060.93 " />
<svg:polygon detid="478479013" count="1" value="15" id="505107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward   stereo Id 478479013 " fill="rgb(255,226,0)" points="210.304,2065.92 217.711,2059.96 208.992,2056.81 " />
<svg:polygon detid="478479017" count="1" value="15" id="505108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  2 forward   stereo Id 478479017 " fill="rgb(255,226,0)" points="200.744,2062.63 206.475,2056.06 197.028,2053.76 " />
<svg:polygon detid="478479021" count="1" value="15" id="505109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  3 forward   stereo Id 478479021 " fill="rgb(255,226,0)" points="190.428,2060.26 194.34,2053.24 184.397,2051.84 " />
<svg:polygon detid="478512037" count="1" value="15" id="505110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward   stereo Id 478512037 " fill="rgb(255,226,0)" points="179.608,2058.87 181.607,2051.58 171.413,2051.11 " />
<svg:polygon detid="478512041" count="1" value="15" id="505111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward   stereo Id 478512041 " fill="rgb(255,226,0)" points="168.552,2058.49 168.587,2051.11 158.393,2051.58 " />
<svg:polygon detid="478479269" count="1" value="15" id="505112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward   stereo Id 478479269 " fill="rgb(255,226,0)" points="157.532,2059.14 155.603,2051.84 145.66,2053.24 " />
<svg:polygon detid="478479273" count="1" value="15" id="505113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  2 forward   stereo Id 478479273 " fill="rgb(255,226,0)" points="146.818,2060.79 142.972,2053.76 133.525,2056.06 " />
<svg:polygon detid="478479277" count="1" value="15" id="505114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  3 forward   stereo Id 478479277 " fill="rgb(255,226,0)" points="136.676,2063.4 131.008,2056.81 122.289,2059.96 " />
<svg:polygon detid="478512293" count="1" value="15" id="505115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward   stereo Id 478512293 " fill="rgb(255,226,0)" points="127.353,2066.92 120.003,2060.93 112.228,2064.84 " />
<svg:polygon detid="478512297" count="1" value="15" id="505116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward   stereo Id 478512297 " fill="rgb(255,226,0)" points="119.081,2071.25 110.23,2066.02 103.589,2070.59 " />
<svg:polygon detid="478479525" count="1" value="15" id="505117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward   stereo Id 478479525 " fill="rgb(255,226,0)" points="112.063,2076.29 101.928,2071.93 96.5852,2077.06 " />
<svg:polygon detid="478479529" count="1" value="15" id="505118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  2 forward   stereo Id 478479529 " fill="rgb(255,226,0)" points="106.472,2081.92 95.3024,2078.54 91.3893,2084.1 " />
<svg:polygon detid="478479533" count="1" value="15" id="505119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  3 forward   stereo Id 478479533 " fill="rgb(255,226,0)" points="102.444,2087.98 90.5161,2085.68 88.129,2091.53 " />
<svg:polygon detid="478512549" count="1" value="15" id="505120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward   stereo Id 478512549 " fill="rgb(255,226,0)" points="100.08,2094.35 87.6871,2093.17 86.8848,2099.17 " />
<svg:polygon detid="478512553" count="1" value="15" id="505121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward   stereo Id 478512553 " fill="rgb(255,226,0)" points="99.4383,2100.85 86.8848,2100.83 87.6871,2106.83 " />
<svg:polygon detid="478479781" count="1" value="15" id="505122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward   stereo Id 478479781 " fill="rgb(255,226,0)" points="100.533,2107.33 88.129,2108.47 90.5161,2114.32 " />
<svg:polygon detid="478479785" count="1" value="15" id="505123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  2 forward   stereo Id 478479785 " fill="rgb(255,226,0)" points="103.339,2113.64 91.3893,2115.9 95.3024,2121.46 " />
<svg:polygon detid="478479789" count="1" value="15" id="505124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  3 forward   stereo Id 478479789 " fill="rgb(255,226,0)" points="107.786,2119.6 96.5852,2122.94 101.928,2128.07 " />
<svg:polygon detid="478512805" count="1" value="15" id="505125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward   stereo Id 478512805 " fill="rgb(255,226,0)" points="113.765,2125.09 103.589,2129.41 110.23,2133.98 " />
<svg:polygon detid="478512809" count="1" value="15" id="505126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward   stereo Id 478512809 " fill="rgb(255,226,0)" points="121.129,2129.95 112.228,2135.16 120.003,2139.07 " />
<svg:polygon detid="478480037" count="1" value="15" id="505127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward   stereo Id 478480037 " fill="rgb(255,226,0)" points="129.696,2134.08 122.289,2140.04 131.008,2143.19 " />
<svg:polygon detid="478480041" count="1" value="15" id="505128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  2 forward   stereo Id 478480041 " fill="rgb(255,226,0)" points="139.256,2137.37 133.525,2143.94 142.972,2146.24 " />
<svg:polygon detid="478480045" count="1" value="15" id="505129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  3 forward   stereo Id 478480045 " fill="rgb(255,226,0)" points="149.572,2139.74 145.66,2146.76 155.603,2148.16 " />
<svg:polygon detid="478513061" count="1" value="15" id="505130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward   stereo Id 478513061 " fill="rgb(255,226,0)" points="160.392,2141.13 158.393,2148.42 168.587,2148.89 " />
<svg:polygon detid="478513065" count="1" value="15" id="505131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward   stereo Id 478513065 " fill="rgb(255,226,0)" points="171.448,2141.51 171.413,2148.89 181.607,2148.42 " />
<svg:polygon detid="478480293" count="1" value="15" id="505132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward   stereo Id 478480293 " fill="rgb(255,226,0)" points="182.468,2140.86 184.397,2148.16 194.34,2146.76 " />
<svg:polygon detid="478480297" count="1" value="15" id="505133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  2 forward   stereo Id 478480297 " fill="rgb(255,226,0)" points="193.182,2139.21 197.028,2146.24 206.475,2143.94 " />
<svg:polygon detid="478480301" count="1" value="15" id="505134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  3 forward   stereo Id 478480301 " fill="rgb(255,226,0)" points="203.324,2136.6 208.992,2143.19 217.711,2140.04 " />
<svg:polygon detid="478513317" count="1" value="15" id="505135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward   stereo Id 478513317 " fill="rgb(255,226,0)" points="212.647,2133.08 219.997,2139.07 227.772,2135.16 " />
<svg:polygon detid="478513321" count="1" value="15" id="505136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward   stereo Id 478513321 " fill="rgb(255,226,0)" points="220.919,2128.75 229.77,2133.98 236.411,2129.41 " />
<svg:polygon detid="478480549" count="1" value="15" id="505137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward   stereo Id 478480549 " fill="rgb(255,226,0)" points="227.937,2123.71 238.072,2128.07 243.415,2122.94 " />
<svg:polygon detid="478480553" count="1" value="15" id="505138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  2 forward   stereo Id 478480553 " fill="rgb(255,226,0)" points="233.528,2118.08 244.698,2121.46 248.611,2115.9 " />
<svg:polygon detid="478480557" count="1" value="15" id="505139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  3 forward   stereo Id 478480557 " fill="rgb(255,226,0)" points="237.556,2112.02 249.484,2114.32 251.871,2108.47 " />
<svg:polygon detid="478511525" count="1" value="15" id="505140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward   stereo Id 478511525 " fill="rgb(255,226,0)" points="239.92,2105.65 252.313,2106.83 253.115,2100.83 " />
<svg:polygon detid="478511556" count="1" value="15" id="506001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward    Id 478511556 " fill="rgb(255,226,0)" points="255.048,2099.28 270.706,2099.3 270.206,2094.06 254.65,2095.12 " />
<svg:polygon detid="478511564" count="1" value="15" id="506002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  3 forward    Id 478511564 " fill="rgb(255,226,0)" points="254.376,2093.68 269.939,2092.67 268.446,2087.5 253.188,2089.57 " />
<svg:polygon detid="478478788" count="1" value="15" id="506003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward    Id 478478788 " fill="rgb(255,226,0)" points="252.643,2088.16 267.916,2086.14 265.448,2081.1 250.68,2084.16 " />
<svg:polygon detid="478478792" count="1" value="15" id="506004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  2 forward    Id 478478792 " fill="rgb(255,226,0)" points="249.87,2082.8 264.662,2079.77 261.249,2074.93 247.157,2078.94 " />
<svg:polygon detid="478478796" count="1" value="15" id="506005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  3 forward    Id 478478796 " fill="rgb(255,226,0)" points="246.093,2077.64 260.216,2073.67 255.903,2069.08 242.664,2073.99 " />
<svg:polygon detid="478511812" count="1" value="15" id="506006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward    Id 478511812 " fill="rgb(255,226,0)" points="241.36,2072.77 254.637,2067.89 249.477,2063.61 237.257,2069.37 " />
<svg:polygon detid="478511816" count="1" value="15" id="506007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward    Id 478511816 " fill="rgb(255,226,0)" points="235.729,2068.24 247.993,2062.52 242.051,2058.61 231.005,2065.13 " />
<svg:polygon detid="478511820" count="1" value="15" id="506008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  3 forward    Id 478511820 " fill="rgb(255,226,0)" points="229.271,2064.11 240.368,2057.62 233.72,2054.12 223.985,2061.34 " />
<svg:polygon detid="478511824" count="1" value="15" id="506009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  0 backward    Id 478511824 " fill="rgb(255,226,0)" points="222.068,2060.44 231.859,2053.25 224.587,2050.21 216.286,2058.02 " />
<svg:polygon detid="478479044" count="1" value="15" id="506010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward    Id 478479044 " fill="rgb(255,226,0)" points="214.21,2057.26 222.571,2049.47 214.767,2046.93 208.006,2055.24 " />
<svg:polygon detid="478479048" count="1" value="15" id="506011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  2 forward    Id 478479048 " fill="rgb(255,226,0)" points="205.796,2054.61 212.622,2046.32 204.385,2044.32 199.247,2053.02 " />
<svg:polygon detid="478479052" count="1" value="15" id="506012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  3 forward    Id 478479052 " fill="rgb(255,226,0)" points="196.932,2052.54 202.138,2043.85 193.57,2042.4 190.12,2051.39 " />
<svg:polygon detid="478512068" count="1" value="15" id="506013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward    Id 478512068 " fill="rgb(255,226,0)" points="187.73,2051.07 191.249,2042.09 182.458,2041.21 180.741,2050.37 " />
<svg:polygon detid="478512072" count="1" value="15" id="506014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward    Id 478512072 " fill="rgb(255,226,0)" points="178.304,2050.21 180.093,2041.06 171.19,2040.76 171.226,2049.97 " />
<svg:polygon detid="478512076" count="1" value="15" id="506015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  3 forward    Id 478512076 " fill="rgb(255,226,0)" points="168.774,2049.97 168.81,2040.76 159.907,2041.06 161.696,2050.21 " />
<svg:polygon detid="478512080" count="1" value="15" id="506016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  0 backward    Id 478512080 " fill="rgb(255,226,0)" points="159.259,2050.37 157.542,2041.21 148.751,2042.09 152.27,2051.07 " />
<svg:polygon detid="478479300" count="1" value="15" id="506017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward    Id 478479300 " fill="rgb(255,226,0)" points="149.88,2051.39 146.43,2042.4 137.862,2043.85 143.068,2052.54 " />
<svg:polygon detid="478479304" count="1" value="15" id="506018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  2 forward    Id 478479304 " fill="rgb(255,226,0)" points="140.753,2053.02 135.615,2044.32 127.378,2046.32 134.204,2054.61 " />
<svg:polygon detid="478479308" count="1" value="15" id="506019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  3 forward    Id 478479308 " fill="rgb(255,226,0)" points="131.994,2055.24 125.233,2046.93 117.429,2049.47 125.79,2057.26 " />
<svg:polygon detid="478512324" count="1" value="15" id="506020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward    Id 478512324 " fill="rgb(255,226,0)" points="123.714,2058.02 115.413,2050.21 108.141,2053.25 117.932,2060.44 " />
<svg:polygon detid="478512328" count="1" value="15" id="506021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward    Id 478512328 " fill="rgb(255,226,0)" points="116.015,2061.34 106.28,2054.12 99.6318,2057.62 110.729,2064.11 " />
<svg:polygon detid="478512332" count="1" value="15" id="506022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  3 forward    Id 478512332 " fill="rgb(255,226,0)" points="108.995,2065.13 97.9486,2058.61 92.0071,2062.52 104.271,2068.24 " />
<svg:polygon detid="478512336" count="1" value="15" id="506023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  0 backward    Id 478512336 " fill="rgb(255,226,0)" points="102.743,2069.37 90.5229,2063.61 85.3632,2067.89 98.6404,2072.77 " />
<svg:polygon detid="478479556" count="1" value="15" id="506024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward    Id 478479556 " fill="rgb(255,226,0)" points="97.3356,2073.99 84.0966,2069.08 79.7835,2073.67 93.9066,2077.64 " />
<svg:polygon detid="478479560" count="1" value="15" id="506025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  2 forward    Id 478479560 " fill="rgb(255,226,0)" points="92.8426,2078.94 78.7507,2074.93 75.3385,2079.77 90.1298,2082.8 " />
<svg:polygon detid="478479564" count="1" value="15" id="506026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  3 forward    Id 478479564 " fill="rgb(255,226,0)" points="89.3198,2084.16 74.5522,2081.1 72.0838,2086.14 87.3574,2088.16 " />
<svg:polygon detid="478512580" count="1" value="15" id="506027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward    Id 478512580 " fill="rgb(255,226,0)" points="86.8117,2089.57 71.5541,2087.5 70.0606,2092.67 85.6243,2093.68 " />
<svg:polygon detid="478512584" count="1" value="15" id="506028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward    Id 478512584 " fill="rgb(255,226,0)" points="85.3497,2095.12 69.794,2094.06 69.2941,2099.3 84.9522,2099.28 " />
<svg:polygon detid="478512588" count="1" value="15" id="506029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  3 forward    Id 478512588 " fill="rgb(255,226,0)" points="84.9522,2100.72 69.2941,2100.7 69.794,2105.94 85.3497,2104.88 " />
<svg:polygon detid="478512592" count="1" value="15" id="506030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  0 backward    Id 478512592 " fill="rgb(255,226,0)" points="85.6243,2106.32 70.0606,2107.33 71.5541,2112.5 86.8117,2110.43 " />
<svg:polygon detid="478479812" count="1" value="15" id="506031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward    Id 478479812 " fill="rgb(255,226,0)" points="87.3574,2111.84 72.0838,2113.86 74.5522,2118.9 89.3198,2115.84 " />
<svg:polygon detid="478479816" count="1" value="15" id="506032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  2 forward    Id 478479816 " fill="rgb(255,226,0)" points="90.1298,2117.2 75.3385,2120.23 78.7507,2125.07 92.8426,2121.06 " />
<svg:polygon detid="478479820" count="1" value="15" id="506033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  3 forward    Id 478479820 " fill="rgb(255,226,0)" points="93.9066,2122.36 79.7835,2126.33 84.0966,2130.92 97.3356,2126.01 " />
<svg:polygon detid="478512836" count="1" value="15" id="506034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward    Id 478512836 " fill="rgb(255,226,0)" points="98.6404,2127.23 85.3632,2132.11 90.5229,2136.39 102.743,2130.63 " />
<svg:polygon detid="478512840" count="1" value="15" id="506035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward    Id 478512840 " fill="rgb(255,226,0)" points="104.271,2131.76 92.0071,2137.48 97.9486,2141.39 108.995,2134.87 " />
<svg:polygon detid="478512844" count="1" value="15" id="506036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  3 forward    Id 478512844 " fill="rgb(255,226,0)" points="110.729,2135.89 99.6318,2142.38 106.28,2145.88 116.015,2138.66 " />
<svg:polygon detid="478512848" count="1" value="15" id="506037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  0 backward    Id 478512848 " fill="rgb(255,226,0)" points="117.932,2139.56 108.141,2146.75 115.413,2149.79 123.714,2141.98 " />
<svg:polygon detid="478480068" count="1" value="15" id="506038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward    Id 478480068 " fill="rgb(255,226,0)" points="125.79,2142.74 117.429,2150.53 125.233,2153.07 131.994,2144.76 " />
<svg:polygon detid="478480072" count="1" value="15" id="506039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  2 forward    Id 478480072 " fill="rgb(255,226,0)" points="134.204,2145.39 127.378,2153.68 135.615,2155.68 140.753,2146.98 " />
<svg:polygon detid="478480076" count="1" value="15" id="506040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  3 forward    Id 478480076 " fill="rgb(255,226,0)" points="143.068,2147.46 137.862,2156.15 146.43,2157.6 149.88,2148.61 " />
<svg:polygon detid="478513092" count="1" value="15" id="506041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward    Id 478513092 " fill="rgb(255,226,0)" points="152.27,2148.93 148.751,2157.91 157.542,2158.79 159.259,2149.63 " />
<svg:polygon detid="478513096" count="1" value="15" id="506042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward    Id 478513096 " fill="rgb(255,226,0)" points="161.696,2149.79 159.907,2158.94 168.81,2159.24 168.774,2150.03 " />
<svg:polygon detid="478513100" count="1" value="15" id="506043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  3 forward    Id 478513100 " fill="rgb(255,226,0)" points="171.226,2150.03 171.19,2159.24 180.093,2158.94 178.304,2149.79 " />
<svg:polygon detid="478513104" count="1" value="15" id="506044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  0 backward    Id 478513104 " fill="rgb(255,226,0)" points="180.741,2149.63 182.458,2158.79 191.249,2157.91 187.73,2148.93 " />
<svg:polygon detid="478480324" count="1" value="15" id="506045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward    Id 478480324 " fill="rgb(255,226,0)" points="190.12,2148.61 193.57,2157.6 202.138,2156.15 196.932,2147.46 " />
<svg:polygon detid="478480328" count="1" value="15" id="506046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  2 forward    Id 478480328 " fill="rgb(255,226,0)" points="199.247,2146.98 204.385,2155.68 212.622,2153.68 205.796,2145.39 " />
<svg:polygon detid="478480332" count="1" value="15" id="506047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  3 forward    Id 478480332 " fill="rgb(255,226,0)" points="208.006,2144.76 214.767,2153.07 222.571,2150.53 214.21,2142.74 " />
<svg:polygon detid="478513348" count="1" value="15" id="506048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward    Id 478513348 " fill="rgb(255,226,0)" points="216.286,2141.98 224.587,2149.79 231.859,2146.75 222.068,2139.56 " />
<svg:polygon detid="478513352" count="1" value="15" id="506049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward    Id 478513352 " fill="rgb(255,226,0)" points="223.985,2138.66 233.72,2145.88 240.368,2142.38 229.271,2135.89 " />
<svg:polygon detid="478513356" count="1" value="15" id="506050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  3 forward    Id 478513356 " fill="rgb(255,226,0)" points="231.005,2134.87 242.051,2141.39 247.993,2137.48 235.729,2131.76 " />
<svg:polygon detid="478513360" count="1" value="15" id="506051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  0 backward    Id 478513360 " fill="rgb(255,226,0)" points="237.257,2130.63 249.477,2136.39 254.637,2132.11 241.36,2127.23 " />
<svg:polygon detid="478480580" count="1" value="15" id="506052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward    Id 478480580 " fill="rgb(255,226,0)" points="242.664,2126.01 255.903,2130.92 260.216,2126.33 246.093,2122.36 " />
<svg:polygon detid="478480584" count="1" value="15" id="506053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  2 forward    Id 478480584 " fill="rgb(255,226,0)" points="247.157,2121.06 261.249,2125.07 264.662,2120.23 249.87,2117.2 " />
<svg:polygon detid="478480588" count="1" value="15" id="506054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  3 forward    Id 478480588 " fill="rgb(255,226,0)" points="250.68,2115.84 265.448,2118.9 267.916,2113.86 252.643,2111.84 " />
<svg:polygon detid="478511568" count="1" value="15" id="506055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  0 backward    Id 478511568 " fill="rgb(255,226,0)" points="253.188,2110.43 268.446,2112.5 269.939,2107.33 254.376,2106.32 " />
<svg:polygon detid="478511560" count="1" value="15" id="506056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward    Id 478511560 " fill="rgb(255,226,0)" points="254.65,2104.88 270.206,2105.94 270.706,2100.7 255.048,2100.72 " />
<svg:polygon detid="478511588" count="1" value="15" id="507001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 forward    Id 478511588 " fill="rgb(255,226,0)" points="273.723,2101.79 291.123,2102.21 291.123,2097.79 273.723,2098.21 " />
<svg:polygon detid="478511596" count="1" value="15" id="507002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  3 forward    Id 478511596 " fill="rgb(255,226,0)" points="273.642,2096.99 291.043,2096.61 290.455,2092.21 273.165,2093.43 " />
<svg:polygon detid="478511600" count="1" value="15" id="507003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  0 backward    Id 478511600 " fill="rgb(255,226,0)" points="272.921,2092.22 290.218,2091.03 289.045,2086.68 271.971,2088.69 " />
<svg:polygon detid="478478820" count="1" value="15" id="507004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 forward    Id 478478820 " fill="rgb(255,226,0)" points="271.567,2087.49 288.651,2085.51 286.901,2081.22 270.148,2084.02 " />
<svg:polygon detid="478478824" count="1" value="15" id="507005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  2 forward    Id 478478824 " fill="rgb(255,226,0)" points="269.586,2082.85 286.353,2080.08 284.036,2075.89 267.708,2079.45 " />
<svg:polygon detid="478478828" count="1" value="15" id="507006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  3 forward    Id 478478828 " fill="rgb(255,226,0)" points="266.99,2078.3 283.337,2074.77 280.468,2070.7 264.665,2075 " />
<svg:polygon detid="478478832" count="1" value="15" id="507007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  0 backward    Id 478478832 " fill="rgb(255,226,0)" points="263.797,2073.89 279.623,2069.62 276.219,2065.69 261.039,2070.71 " />
<svg:polygon detid="478478836" count="1" value="15" id="507008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 forward  module  1 backward    Id 478478836 " fill="rgb(255,226,0)" points="260.026,2069.64 275.233,2064.65 271.315,2060.89 256.851,2066.6 " />
<svg:polygon detid="478511844" count="1" value="15" id="507009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 forward    Id 478511844 " fill="rgb(255,226,0)" points="255.7,2065.58 270.194,2059.9 265.787,2056.34 252.128,2062.69 " />
<svg:polygon detid="478511848" count="1" value="15" id="507010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  2 forward    Id 478511848 " fill="rgb(255,226,0)" points="250.845,2061.73 264.537,2055.4 259.668,2052.05 246.899,2059.02 " />
<svg:polygon detid="478511852" count="1" value="15" id="507011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  3 forward    Id 478511852 " fill="rgb(255,226,0)" points="245.492,2058.12 258.297,2051.18 252.996,2048.06 241.195,2055.59 " />
<svg:polygon detid="478511856" count="1" value="15" id="507012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  0 backward    Id 478511856 " fill="rgb(255,226,0)" points="239.673,2054.77 251.513,2047.25 245.813,2044.39 235.052,2052.44 " />
<svg:polygon detid="478511860" count="1" value="15" id="507013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 backward  module  1 backward    Id 478511860 " fill="rgb(255,226,0)" points="233.425,2051.69 244.227,2043.65 238.162,2041.06 228.509,2049.59 " />
<svg:polygon detid="478479076" count="1" value="15" id="507014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 forward    Id 478479076 " fill="rgb(255,226,0)" points="226.786,2048.91 236.483,2040.4 230.09,2038.1 221.605,2047.04 " />
<svg:polygon detid="478479080" count="1" value="15" id="507015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  2 forward    Id 478479080 " fill="rgb(255,226,0)" points="219.797,2046.45 228.329,2037.52 221.649,2035.52 214.382,2044.83 " />
<svg:polygon detid="478479084" count="1" value="15" id="507016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  3 forward    Id 478479084 " fill="rgb(255,226,0)" points="212.5,2044.31 219.815,2035.02 212.888,2033.33 206.886,2042.95 " />
<svg:polygon detid="478479088" count="1" value="15" id="507017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  0 backward    Id 478479088 " fill="rgb(255,226,0)" points="204.942,2042.52 210.994,2032.92 203.864,2031.56 199.163,2041.42 " />
<svg:polygon detid="478479092" count="1" value="15" id="507018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 2 forward  module  1 backward    Id 478479092 " fill="rgb(255,226,0)" points="197.168,2041.09 201.92,2031.23 194.631,2030.21 191.259,2040.25 " />
<svg:polygon detid="478512100" count="1" value="15" id="507019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 forward    Id 478512100 " fill="rgb(255,226,0)" points="189.227,2040.02 192.65,2029.97 185.245,2029.28 183.225,2039.46 " />
<svg:polygon detid="478512104" count="1" value="15" id="507020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  2 forward    Id 478512104 " fill="rgb(255,226,0)" points="181.167,2039.31 183.24,2029.14 175.766,2028.8 175.109,2039.03 " />
<svg:polygon detid="478512108" count="1" value="15" id="507021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  3 forward    Id 478512108 " fill="rgb(255,226,0)" points="173.038,2038.99 173.749,2028.75 166.251,2028.75 166.962,2038.99 " />
<svg:polygon detid="478512112" count="1" value="15" id="507022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  0 backward    Id 478512112 " fill="rgb(255,226,0)" points="164.891,2039.03 164.234,2028.8 156.76,2029.14 158.833,2039.31 " />
<svg:polygon detid="478512116" count="1" value="15" id="507023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 backward  module  1 backward    Id 478512116 " fill="rgb(255,226,0)" points="156.775,2039.46 154.755,2029.28 147.35,2029.97 150.773,2040.02 " />
<svg:polygon detid="478479332" count="1" value="15" id="507024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 forward    Id 478479332 " fill="rgb(255,226,0)" points="148.741,2040.25 145.369,2030.21 138.08,2031.23 142.832,2041.09 " />
<svg:polygon detid="478479336" count="1" value="15" id="507025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  2 forward    Id 478479336 " fill="rgb(255,226,0)" points="140.837,2041.42 136.136,2031.56 129.006,2032.92 135.058,2042.52 " />
<svg:polygon detid="478479340" count="1" value="15" id="507026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  3 forward    Id 478479340 " fill="rgb(255,226,0)" points="133.114,2042.95 127.112,2033.33 120.185,2035.02 127.5,2044.31 " />
<svg:polygon detid="478479344" count="1" value="15" id="507027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  0 backward    Id 478479344 " fill="rgb(255,226,0)" points="125.618,2044.83 118.351,2035.52 111.671,2037.52 120.203,2046.45 " />
<svg:polygon detid="478479348" count="1" value="15" id="507028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 3 forward  module  1 backward    Id 478479348 " fill="rgb(255,226,0)" points="118.395,2047.04 109.91,2038.1 103.517,2040.4 113.214,2048.91 " />
<svg:polygon detid="478512356" count="1" value="15" id="507029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 forward    Id 478512356 " fill="rgb(255,226,0)" points="111.491,2049.59 101.838,2041.06 95.7732,2043.65 106.575,2051.69 " />
<svg:polygon detid="478512360" count="1" value="15" id="507030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  2 forward    Id 478512360 " fill="rgb(255,226,0)" points="104.948,2052.44 94.1875,2044.39 88.4867,2047.25 100.327,2054.77 " />
<svg:polygon detid="478512364" count="1" value="15" id="507031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  3 forward    Id 478512364 " fill="rgb(255,226,0)" points="98.805,2055.59 87.0039,2048.06 81.7027,2051.18 94.5082,2058.12 " />
<svg:polygon detid="478512368" count="1" value="15" id="507032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  0 backward    Id 478512368 " fill="rgb(255,226,0)" points="93.1015,2059.02 80.332,2052.05 75.4631,2055.4 89.155,2061.73 " />
<svg:polygon detid="478512372" count="1" value="15" id="507033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 backward  module  1 backward    Id 478512372 " fill="rgb(255,226,0)" points="87.8721,2062.69 74.213,2056.34 69.8064,2059.9 84.3003,2065.58 " />
<svg:polygon detid="478479588" count="1" value="15" id="507034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 forward    Id 478479588 " fill="rgb(255,226,0)" points="83.149,2066.6 68.6845,2060.89 64.7673,2064.65 79.9739,2069.64 " />
<svg:polygon detid="478479592" count="1" value="15" id="507035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  2 forward    Id 478479592 " fill="rgb(255,226,0)" points="78.9613,2070.71 63.7807,2065.69 60.3771,2069.62 76.2026,2073.89 " />
<svg:polygon detid="478479596" count="1" value="15" id="507036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  3 forward    Id 478479596 " fill="rgb(255,226,0)" points="75.335,2075 59.5317,2070.7 56.6627,2074.77 73.0096,2078.3 " />
<svg:polygon detid="478479600" count="1" value="15" id="507037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  0 backward    Id 478479600 " fill="rgb(255,226,0)" points="72.2923,2079.45 55.9638,2075.89 53.6471,2080.08 70.4145,2082.85 " />
<svg:polygon detid="478479604" count="1" value="15" id="507038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 4 forward  module  1 backward    Id 478479604 " fill="rgb(255,226,0)" points="69.852,2084.02 53.099,2081.22 51.3489,2085.51 68.4334,2087.49 " />
<svg:polygon detid="478512612" count="1" value="15" id="507039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 forward    Id 478512612 " fill="rgb(255,226,0)" points="68.0292,2088.69 50.955,2086.68 49.7822,2091.03 67.0786,2092.22 " />
<svg:polygon detid="478512616" count="1" value="15" id="507040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  2 forward    Id 478512616 " fill="rgb(255,226,0)" points="66.835,2093.43 49.5448,2092.21 48.9566,2096.61 66.3582,2096.99 " />
<svg:polygon detid="478512620" count="1" value="15" id="507041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  3 forward    Id 478512620 " fill="rgb(255,226,0)" points="66.2768,2098.21 48.8773,2097.79 48.8773,2102.21 66.2768,2101.79 " />
<svg:polygon detid="478512624" count="1" value="15" id="507042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  0 backward    Id 478512624 " fill="rgb(255,226,0)" points="66.3582,2103.01 48.9566,2103.39 49.5448,2107.79 66.835,2106.57 " />
<svg:polygon detid="478512628" count="1" value="15" id="507043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 backward  module  1 backward    Id 478512628 " fill="rgb(255,226,0)" points="67.0786,2107.78 49.7822,2108.97 50.955,2113.32 68.0292,2111.31 " />
<svg:polygon detid="478479844" count="1" value="15" id="507044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 forward    Id 478479844 " fill="rgb(255,226,0)" points="68.4334,2112.51 51.3489,2114.49 53.099,2118.78 69.852,2115.98 " />
<svg:polygon detid="478479848" count="1" value="15" id="507045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  2 forward    Id 478479848 " fill="rgb(255,226,0)" points="70.4145,2117.15 53.6471,2119.92 55.9638,2124.11 72.2923,2120.55 " />
<svg:polygon detid="478479852" count="1" value="15" id="507046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  3 forward    Id 478479852 " fill="rgb(255,226,0)" points="73.0096,2121.7 56.6627,2125.23 59.5317,2129.3 75.335,2125 " />
<svg:polygon detid="478479856" count="1" value="15" id="507047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  0 backward    Id 478479856 " fill="rgb(255,226,0)" points="76.2026,2126.11 60.3771,2130.38 63.7807,2134.31 78.9613,2129.29 " />
<svg:polygon detid="478479860" count="1" value="15" id="507048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 5 forward  module  1 backward    Id 478479860 " fill="rgb(255,226,0)" points="79.9739,2130.36 64.7673,2135.35 68.6845,2139.11 83.149,2133.4 " />
<svg:polygon detid="478512868" count="1" value="15" id="507049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 forward    Id 478512868 " fill="rgb(255,226,0)" points="84.3003,2134.42 69.8064,2140.1 74.213,2143.66 87.8721,2137.31 " />
<svg:polygon detid="478512872" count="1" value="15" id="507050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  2 forward    Id 478512872 " fill="rgb(255,226,0)" points="89.155,2138.27 75.4631,2144.6 80.332,2147.95 93.1015,2140.98 " />
<svg:polygon detid="478512876" count="1" value="15" id="507051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  3 forward    Id 478512876 " fill="rgb(255,226,0)" points="94.5082,2141.88 81.7027,2148.82 87.0039,2151.94 98.805,2144.41 " />
<svg:polygon detid="478512880" count="1" value="15" id="507052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  0 backward    Id 478512880 " fill="rgb(255,226,0)" points="100.327,2145.23 88.4867,2152.75 94.1875,2155.61 104.948,2147.56 " />
<svg:polygon detid="478512884" count="1" value="15" id="507053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 backward  module  1 backward    Id 478512884 " fill="rgb(255,226,0)" points="106.575,2148.31 95.7732,2156.35 101.838,2158.94 111.491,2150.41 " />
<svg:polygon detid="478480100" count="1" value="15" id="507054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 forward    Id 478480100 " fill="rgb(255,226,0)" points="113.214,2151.09 103.517,2159.6 109.91,2161.9 118.395,2152.96 " />
<svg:polygon detid="478480104" count="1" value="15" id="507055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  2 forward    Id 478480104 " fill="rgb(255,226,0)" points="120.203,2153.55 111.671,2162.48 118.351,2164.48 125.618,2155.17 " />
<svg:polygon detid="478480108" count="1" value="15" id="507056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  3 forward    Id 478480108 " fill="rgb(255,226,0)" points="127.5,2155.69 120.185,2164.98 127.112,2166.67 133.114,2157.05 " />
<svg:polygon detid="478480112" count="1" value="15" id="507057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  0 backward    Id 478480112 " fill="rgb(255,226,0)" points="135.058,2157.48 129.006,2167.08 136.136,2168.44 140.837,2158.58 " />
<svg:polygon detid="478480116" count="1" value="15" id="507058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 6 forward  module  1 backward    Id 478480116 " fill="rgb(255,226,0)" points="142.832,2158.91 138.08,2168.77 145.369,2169.79 148.741,2159.75 " />
<svg:polygon detid="478513124" count="1" value="15" id="507059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 forward    Id 478513124 " fill="rgb(255,226,0)" points="150.773,2159.98 147.35,2170.03 154.755,2170.72 156.775,2160.54 " />
<svg:polygon detid="478513128" count="1" value="15" id="507060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  2 forward    Id 478513128 " fill="rgb(255,226,0)" points="158.833,2160.69 156.76,2170.86 164.234,2171.2 164.891,2160.97 " />
<svg:polygon detid="478513132" count="1" value="15" id="507061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  3 forward    Id 478513132 " fill="rgb(255,226,0)" points="166.962,2161.01 166.251,2171.25 173.749,2171.25 173.038,2161.01 " />
<svg:polygon detid="478513136" count="1" value="15" id="507062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  0 backward    Id 478513136 " fill="rgb(255,226,0)" points="175.109,2160.97 175.766,2171.2 183.24,2170.86 181.167,2160.69 " />
<svg:polygon detid="478513140" count="1" value="15" id="507063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 backward  module  1 backward    Id 478513140 " fill="rgb(255,226,0)" points="183.225,2160.54 185.245,2170.72 192.65,2170.03 189.227,2159.98 " />
<svg:polygon detid="478480356" count="1" value="15" id="507064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 forward    Id 478480356 " fill="rgb(255,226,0)" points="191.259,2159.75 194.631,2169.79 201.92,2168.77 197.168,2158.91 " />
<svg:polygon detid="478480360" count="1" value="15" id="507065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  2 forward    Id 478480360 " fill="rgb(255,226,0)" points="199.163,2158.58 203.864,2168.44 210.994,2167.08 204.942,2157.48 " />
<svg:polygon detid="478480364" count="1" value="15" id="507066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  3 forward    Id 478480364 " fill="rgb(255,226,0)" points="206.886,2157.05 212.888,2166.67 219.815,2164.98 212.5,2155.69 " />
<svg:polygon detid="478480368" count="1" value="15" id="507067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  0 backward    Id 478480368 " fill="rgb(255,226,0)" points="214.382,2155.17 221.649,2164.48 228.329,2162.48 219.797,2153.55 " />
<svg:polygon detid="478480372" count="1" value="15" id="507068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 7 forward  module  1 backward    Id 478480372 " fill="rgb(255,226,0)" points="221.605,2152.96 230.09,2161.9 236.483,2159.6 226.786,2151.09 " />
<svg:polygon detid="478513380" count="1" value="15" id="507069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 forward    Id 478513380 " fill="rgb(255,226,0)" points="228.509,2150.41 238.162,2158.94 244.227,2156.35 233.425,2148.31 " />
<svg:polygon detid="478513384" count="1" value="15" id="507070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  2 forward    Id 478513384 " fill="rgb(255,226,0)" points="235.052,2147.56 245.813,2155.61 251.513,2152.75 239.673,2145.23 " />
<svg:polygon detid="478513388" count="1" value="15" id="507071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  3 forward    Id 478513388 " fill="rgb(255,226,0)" points="241.195,2144.41 252.996,2151.94 258.297,2148.82 245.492,2141.88 " />
<svg:polygon detid="478513392" count="1" value="15" id="507072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  0 backward    Id 478513392 " fill="rgb(255,226,0)" points="246.899,2140.98 259.668,2147.95 264.537,2144.6 250.845,2138.27 " />
<svg:polygon detid="478513396" count="1" value="15" id="507073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 backward  module  1 backward    Id 478513396 " fill="rgb(255,226,0)" points="252.128,2137.31 265.787,2143.66 270.194,2140.1 255.7,2134.42 " />
<svg:polygon detid="478480612" count="1" value="15" id="507074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 forward    Id 478480612 " fill="rgb(255,226,0)" points="256.851,2133.4 271.315,2139.11 275.233,2135.35 260.026,2130.36 " />
<svg:polygon detid="478480616" count="1" value="15" id="507075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  2 forward    Id 478480616 " fill="rgb(255,226,0)" points="261.039,2129.29 276.219,2134.31 279.623,2130.38 263.797,2126.11 " />
<svg:polygon detid="478480620" count="1" value="15" id="507076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  3 forward    Id 478480620 " fill="rgb(255,226,0)" points="264.665,2125 280.468,2129.3 283.337,2125.23 266.99,2121.7 " />
<svg:polygon detid="478480624" count="1" value="15" id="507077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  0 backward    Id 478480624 " fill="rgb(255,226,0)" points="267.708,2120.55 284.036,2124.11 286.353,2119.92 269.586,2117.15 " />
<svg:polygon detid="478480628" count="1" value="15" id="507078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 8 forward  module  1 backward    Id 478480628 " fill="rgb(255,226,0)" points="270.148,2115.98 286.901,2118.78 288.651,2114.49 271.567,2112.51 " />
<svg:polygon detid="478511604" count="1" value="15" id="507079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  1 backward    Id 478511604 " fill="rgb(255,226,0)" points="271.971,2111.31 289.045,2113.32 290.218,2108.97 272.921,2107.78 " />
<svg:polygon detid="478511592" count="1" value="15" id="507080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 5 ring 0 petal 1 backward  module  2 forward    Id 478511592 " fill="rgb(255,226,0)" points="273.165,2106.57 290.455,2107.79 291.043,2103.39 273.642,2103.01 " />
<svg:polygon detid="478445898" count="1" value="18" id="602001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward    Id 478445898 " fill="rgb(255,220,0)" points="214.347,1893.78 207.056,1894.96 208.013,1899.23 " />
<svg:polygon detid="478413126" count="1" value="18" id="602002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward    Id 478413126 " fill="rgb(255,220,0)" points="210.1,1887.24 203.575,1889.49 206.379,1893.47 " />
<svg:polygon detid="478446150" count="1" value="18" id="602003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward    Id 478446150 " fill="rgb(255,220,0)" points="203.12,1881.57 197.805,1884.73 202.265,1888.15 " />
<svg:polygon detid="478446154" count="1" value="18" id="602004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward    Id 478446154 " fill="rgb(255,220,0)" points="193.883,1877.16 190.14,1881.02 195.953,1883.64 " />
<svg:polygon detid="478413382" count="1" value="18" id="602005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward    Id 478413382 " fill="rgb(255,220,0)" points="183.019,1874.3 181.103,1878.6 187.872,1880.25 " />
<svg:polygon detid="478446406" count="1" value="18" id="602006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward    Id 478446406 " fill="rgb(255,220,0)" points="171.267,1873.19 171.309,1877.64 178.574,1878.2 " />
<svg:polygon detid="478446410" count="1" value="18" id="602007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward    Id 478446410 " fill="rgb(255,220,0)" points="159.429,1873.91 161.426,1878.2 168.691,1877.64 " />
<svg:polygon detid="478413638" count="1" value="18" id="602008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward    Id 478413638 " fill="rgb(255,220,0)" points="148.312,1876.41 152.128,1880.25 158.897,1878.6 " />
<svg:polygon detid="478446662" count="1" value="18" id="602009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward    Id 478446662 " fill="rgb(255,220,0)" points="138.672,1880.52 144.047,1883.64 149.86,1881.02 " />
<svg:polygon detid="478446666" count="1" value="18" id="602010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward    Id 478446666 " fill="rgb(255,220,0)" points="131.168,1885.95 137.735,1888.15 142.195,1884.73 " />
<svg:polygon detid="478413894" count="1" value="18" id="602011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward    Id 478413894 " fill="rgb(255,220,0)" points="126.309,1892.34 133.621,1893.47 136.425,1889.49 " />
<svg:polygon detid="478446918" count="1" value="18" id="602012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward    Id 478446918 " fill="rgb(255,220,0)" points="124.429,1899.25 131.987,1899.23 132.944,1894.96 " />
<svg:polygon detid="478446922" count="1" value="18" id="602013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward    Id 478446922 " fill="rgb(255,220,0)" points="125.653,1906.22 132.944,1905.04 131.987,1900.77 " />
<svg:polygon detid="478414150" count="1" value="18" id="602014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward    Id 478414150 " fill="rgb(255,220,0)" points="129.9,1912.76 136.425,1910.51 133.621,1906.53 " />
<svg:polygon detid="478447174" count="1" value="18" id="602015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward    Id 478447174 " fill="rgb(255,220,0)" points="136.88,1918.43 142.195,1915.27 137.735,1911.85 " />
<svg:polygon detid="478447178" count="1" value="18" id="602016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward    Id 478447178 " fill="rgb(255,220,0)" points="146.117,1922.84 149.86,1918.98 144.047,1916.36 " />
<svg:polygon detid="478414406" count="1" value="18" id="602017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward    Id 478414406 " fill="rgb(255,220,0)" points="156.981,1925.7 158.897,1921.4 152.128,1919.75 " />
<svg:polygon detid="478447430" count="1" value="18" id="602018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward    Id 478447430 " fill="rgb(255,220,0)" points="168.733,1926.81 168.691,1922.36 161.426,1921.8 " />
<svg:polygon detid="478447434" count="1" value="18" id="602019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward    Id 478447434 " fill="rgb(255,220,0)" points="180.571,1926.09 178.574,1921.8 171.309,1922.36 " />
<svg:polygon detid="478414662" count="1" value="18" id="602020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward    Id 478414662 " fill="rgb(255,220,0)" points="191.688,1923.59 187.872,1919.75 181.103,1921.4 " />
<svg:polygon detid="478447686" count="1" value="18" id="602021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward    Id 478447686 " fill="rgb(255,220,0)" points="201.328,1919.48 195.953,1916.36 190.14,1918.98 " />
<svg:polygon detid="478447690" count="1" value="18" id="602022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward    Id 478447690 " fill="rgb(255,220,0)" points="208.832,1914.05 202.265,1911.85 197.805,1915.27 " />
<svg:polygon detid="478414918" count="1" value="18" id="602023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward    Id 478414918 " fill="rgb(255,220,0)" points="213.691,1907.66 206.379,1906.53 203.575,1910.51 " />
<svg:polygon detid="478445894" count="1" value="18" id="602024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward    Id 478445894 " fill="rgb(255,220,0)" points="215.571,1900.75 208.013,1900.77 207.056,1905.04 " />
<svg:polygon detid="478445897" count="1" value="18" id="602101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward   stereo Id 478445897 " fill="rgb(255,220,0)" points="208.013,1899.23 215.571,1899.25 214.347,1893.78 " />
<svg:polygon detid="478413125" count="1" value="18" id="602102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward   stereo Id 478413125 " fill="rgb(255,220,0)" points="206.379,1893.47 213.691,1892.34 210.1,1887.24 " />
<svg:polygon detid="478446149" count="1" value="18" id="602103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward   stereo Id 478446149 " fill="rgb(255,220,0)" points="202.265,1888.15 208.832,1885.95 203.12,1881.57 " />
<svg:polygon detid="478446153" count="1" value="18" id="602104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward   stereo Id 478446153 " fill="rgb(255,220,0)" points="195.953,1883.64 201.328,1880.52 193.883,1877.16 " />
<svg:polygon detid="478413381" count="1" value="18" id="602105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward   stereo Id 478413381 " fill="rgb(255,220,0)" points="187.872,1880.25 191.688,1876.41 183.019,1874.3 " />
<svg:polygon detid="478446405" count="1" value="18" id="602106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward   stereo Id 478446405 " fill="rgb(255,220,0)" points="178.574,1878.2 180.571,1873.91 171.267,1873.19 " />
<svg:polygon detid="478446409" count="1" value="18" id="602107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward   stereo Id 478446409 " fill="rgb(255,220,0)" points="168.691,1877.64 168.733,1873.19 159.429,1873.91 " />
<svg:polygon detid="478413637" count="1" value="18" id="602108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward   stereo Id 478413637 " fill="rgb(255,220,0)" points="158.897,1878.6 156.981,1874.3 148.312,1876.41 " />
<svg:polygon detid="478446661" count="1" value="18" id="602109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward   stereo Id 478446661 " fill="rgb(255,220,0)" points="149.86,1881.02 146.117,1877.16 138.672,1880.52 " />
<svg:polygon detid="478446665" count="1" value="18" id="602110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward   stereo Id 478446665 " fill="rgb(255,220,0)" points="142.195,1884.73 136.88,1881.57 131.168,1885.95 " />
<svg:polygon detid="478413893" count="1" value="18" id="602111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward   stereo Id 478413893 " fill="rgb(255,220,0)" points="136.425,1889.49 129.9,1887.24 126.309,1892.34 " />
<svg:polygon detid="478446917" count="1" value="18" id="602112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward   stereo Id 478446917 " fill="rgb(255,220,0)" points="132.944,1894.96 125.653,1893.78 124.429,1899.25 " />
<svg:polygon detid="478446921" count="1" value="18" id="602113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward   stereo Id 478446921 " fill="rgb(255,220,0)" points="131.987,1900.77 124.429,1900.75 125.653,1906.22 " />
<svg:polygon detid="478414149" count="1" value="18" id="602114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward   stereo Id 478414149 " fill="rgb(255,220,0)" points="133.621,1906.53 126.309,1907.66 129.9,1912.76 " />
<svg:polygon detid="478447173" count="1" value="18" id="602115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward   stereo Id 478447173 " fill="rgb(255,220,0)" points="137.735,1911.85 131.168,1914.05 136.88,1918.43 " />
<svg:polygon detid="478447177" count="1" value="18" id="602116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward   stereo Id 478447177 " fill="rgb(255,220,0)" points="144.047,1916.36 138.672,1919.48 146.117,1922.84 " />
<svg:polygon detid="478414405" count="1" value="18" id="602117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward   stereo Id 478414405 " fill="rgb(255,220,0)" points="152.128,1919.75 148.312,1923.59 156.981,1925.7 " />
<svg:polygon detid="478447429" count="1" value="18" id="602118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward   stereo Id 478447429 " fill="rgb(255,220,0)" points="161.426,1921.8 159.429,1926.09 168.733,1926.81 " />
<svg:polygon detid="478447433" count="1" value="18" id="602119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward   stereo Id 478447433 " fill="rgb(255,220,0)" points="171.309,1922.36 171.267,1926.81 180.571,1926.09 " />
<svg:polygon detid="478414661" count="1" value="18" id="602120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward   stereo Id 478414661 " fill="rgb(255,220,0)" points="181.103,1921.4 183.019,1925.7 191.688,1923.59 " />
<svg:polygon detid="478447685" count="1" value="18" id="602121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward   stereo Id 478447685 " fill="rgb(255,220,0)" points="190.14,1918.98 193.883,1922.84 201.328,1919.48 " />
<svg:polygon detid="478447689" count="1" value="18" id="602122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward   stereo Id 478447689 " fill="rgb(255,220,0)" points="197.805,1915.27 203.12,1918.43 208.832,1914.05 " />
<svg:polygon detid="478414917" count="1" value="18" id="602123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward   stereo Id 478414917 " fill="rgb(255,220,0)" points="203.575,1910.51 210.1,1912.76 213.691,1907.66 " />
<svg:polygon detid="478445893" count="1" value="18" id="602124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward   stereo Id 478445893 " fill="rgb(255,220,0)" points="207.056,1905.04 214.347,1906.22 215.571,1900.75 " />
<svg:polygon detid="478445924" count="1" value="18" id="603001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward    Id 478445924 " fill="rgb(255,220,0)" points="216.008,1901.57 225.409,1902.03 225.409,1897.97 216.008,1898.43 " />
<svg:polygon detid="478445928" count="1" value="18" id="603002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward    Id 478445928 " fill="rgb(255,220,0)" points="215.861,1897.32 225.267,1896.91 224.187,1892.9 215.023,1894.21 " />
<svg:polygon detid="478413156" count="1" value="18" id="603003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward    Id 478413156 " fill="rgb(255,220,0)" points="214.584,1893.13 223.764,1891.86 221.631,1888 212.929,1890.14 " />
<svg:polygon detid="478413160" count="1" value="18" id="603004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  2 forward    Id 478413160 " fill="rgb(255,220,0)" points="212.209,1889.12 220.937,1887.01 217.803,1883.39 209.778,1886.31 " />
<svg:polygon detid="478446180" count="1" value="18" id="603005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward    Id 478446180 " fill="rgb(255,220,0)" points="208.795,1885.37 216.856,1882.48 212.799,1879.2 205.648,1882.82 " />
<svg:polygon detid="478446184" count="1" value="18" id="603006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward    Id 478446184 " fill="rgb(255,220,0)" points="204.426,1881.98 211.621,1878.39 206.74,1875.52 200.64,1879.75 " />
<svg:polygon detid="478446188" count="1" value="18" id="603007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  3 forward    Id 478446188 " fill="rgb(255,220,0)" points="199.209,1879.03 205.361,1874.82 199.777,1872.44 194.877,1877.18 " />
<svg:polygon detid="478413412" count="1" value="18" id="603008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward    Id 478413412 " fill="rgb(255,220,0)" points="193.273,1876.6 198.23,1871.88 192.081,1870.04 188.502,1875.17 " />
<svg:polygon detid="478413416" count="1" value="18" id="603009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  2 forward    Id 478413416 " fill="rgb(255,220,0)" points="186.764,1874.75 190.405,1869.63 183.84,1868.37 181.671,1873.77 " />
<svg:polygon detid="478446436" count="1" value="18" id="603010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward    Id 478446436 " fill="rgb(255,220,0)" points="179.842,1873.52 182.076,1868.13 175.259,1867.49 174.553,1873.02 " />
<svg:polygon detid="478446440" count="1" value="18" id="603011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward    Id 478446440 " fill="rgb(255,220,0)" points="172.677,1872.94 173.451,1867.41 166.549,1867.41 167.323,1872.94 " />
<svg:polygon detid="478446444" count="1" value="18" id="603012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  3 forward    Id 478446444 " fill="rgb(255,220,0)" points="165.447,1873.02 164.741,1867.49 157.924,1868.13 160.158,1873.52 " />
<svg:polygon detid="478413668" count="1" value="18" id="603013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward    Id 478413668 " fill="rgb(255,220,0)" points="158.329,1873.77 156.16,1868.37 149.595,1869.63 153.236,1874.75 " />
<svg:polygon detid="478413672" count="1" value="18" id="603014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  2 forward    Id 478413672 " fill="rgb(255,220,0)" points="151.498,1875.17 147.919,1870.04 141.77,1871.88 146.727,1876.6 " />
<svg:polygon detid="478446692" count="1" value="18" id="603015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward    Id 478446692 " fill="rgb(255,220,0)" points="145.123,1877.18 140.223,1872.44 134.639,1874.82 140.791,1879.03 " />
<svg:polygon detid="478446696" count="1" value="18" id="603016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward    Id 478446696 " fill="rgb(255,220,0)" points="139.36,1879.75 133.26,1875.52 128.379,1878.39 135.574,1881.98 " />
<svg:polygon detid="478446700" count="1" value="18" id="603017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  3 forward    Id 478446700 " fill="rgb(255,220,0)" points="134.352,1882.82 127.201,1879.2 123.144,1882.48 131.205,1885.37 " />
<svg:polygon detid="478413924" count="1" value="18" id="603018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward    Id 478413924 " fill="rgb(255,220,0)" points="130.222,1886.31 122.197,1883.39 119.063,1887.01 127.791,1889.12 " />
<svg:polygon detid="478413928" count="1" value="18" id="603019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  2 forward    Id 478413928 " fill="rgb(255,220,0)" points="127.071,1890.14 118.369,1888 116.236,1891.86 125.416,1893.13 " />
<svg:polygon detid="478446948" count="1" value="18" id="603020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward    Id 478446948 " fill="rgb(255,220,0)" points="124.977,1894.21 115.813,1892.9 114.733,1896.91 124.139,1897.32 " />
<svg:polygon detid="478446952" count="1" value="18" id="603021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward    Id 478446952 " fill="rgb(255,220,0)" points="123.992,1898.43 114.591,1897.97 114.591,1902.03 123.992,1901.57 " />
<svg:polygon detid="478446956" count="1" value="18" id="603022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  3 forward    Id 478446956 " fill="rgb(255,220,0)" points="124.139,1902.68 114.733,1903.09 115.813,1907.1 124.977,1905.79 " />
<svg:polygon detid="478414180" count="1" value="18" id="603023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward    Id 478414180 " fill="rgb(255,220,0)" points="125.416,1906.87 116.236,1908.14 118.369,1912 127.071,1909.86 " />
<svg:polygon detid="478414184" count="1" value="18" id="603024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  2 forward    Id 478414184 " fill="rgb(255,220,0)" points="127.791,1910.88 119.063,1912.99 122.197,1916.61 130.222,1913.69 " />
<svg:polygon detid="478447204" count="1" value="18" id="603025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward    Id 478447204 " fill="rgb(255,220,0)" points="131.205,1914.63 123.144,1917.52 127.201,1920.8 134.352,1917.18 " />
<svg:polygon detid="478447208" count="1" value="18" id="603026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward    Id 478447208 " fill="rgb(255,220,0)" points="135.574,1918.02 128.379,1921.61 133.26,1924.48 139.36,1920.25 " />
<svg:polygon detid="478447212" count="1" value="18" id="603027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  3 forward    Id 478447212 " fill="rgb(255,220,0)" points="140.791,1920.97 134.639,1925.18 140.223,1927.56 145.123,1922.82 " />
<svg:polygon detid="478414436" count="1" value="18" id="603028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward    Id 478414436 " fill="rgb(255,220,0)" points="146.727,1923.4 141.77,1928.12 147.919,1929.96 151.498,1924.83 " />
<svg:polygon detid="478414440" count="1" value="18" id="603029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  2 forward    Id 478414440 " fill="rgb(255,220,0)" points="153.236,1925.25 149.595,1930.37 156.16,1931.63 158.329,1926.23 " />
<svg:polygon detid="478447460" count="1" value="18" id="603030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward    Id 478447460 " fill="rgb(255,220,0)" points="160.158,1926.48 157.924,1931.87 164.741,1932.51 165.447,1926.98 " />
<svg:polygon detid="478447464" count="1" value="18" id="603031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward    Id 478447464 " fill="rgb(255,220,0)" points="167.323,1927.06 166.549,1932.59 173.451,1932.59 172.677,1927.06 " />
<svg:polygon detid="478447468" count="1" value="18" id="603032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  3 forward    Id 478447468 " fill="rgb(255,220,0)" points="174.553,1926.98 175.259,1932.51 182.076,1931.87 179.842,1926.48 " />
<svg:polygon detid="478414692" count="1" value="18" id="603033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward    Id 478414692 " fill="rgb(255,220,0)" points="181.671,1926.23 183.84,1931.63 190.405,1930.37 186.764,1925.25 " />
<svg:polygon detid="478414696" count="1" value="18" id="603034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  2 forward    Id 478414696 " fill="rgb(255,220,0)" points="188.502,1924.83 192.081,1929.96 198.23,1928.12 193.273,1923.4 " />
<svg:polygon detid="478447716" count="1" value="18" id="603035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward    Id 478447716 " fill="rgb(255,220,0)" points="194.877,1922.82 199.777,1927.56 205.361,1925.18 199.209,1920.97 " />
<svg:polygon detid="478447720" count="1" value="18" id="603036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward    Id 478447720 " fill="rgb(255,220,0)" points="200.64,1920.25 206.74,1924.48 211.621,1921.61 204.426,1918.02 " />
<svg:polygon detid="478447724" count="1" value="18" id="603037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  3 forward    Id 478447724 " fill="rgb(255,220,0)" points="205.648,1917.18 212.799,1920.8 216.856,1917.52 208.795,1914.63 " />
<svg:polygon detid="478414948" count="1" value="18" id="603038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward    Id 478414948 " fill="rgb(255,220,0)" points="209.778,1913.69 217.803,1916.61 220.937,1912.99 212.209,1910.88 " />
<svg:polygon detid="478414952" count="1" value="18" id="603039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  2 forward    Id 478414952 " fill="rgb(255,220,0)" points="212.929,1909.86 221.631,1912 223.764,1908.14 214.584,1906.87 " />
<svg:polygon detid="478445932" count="1" value="18" id="603040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  3 forward    Id 478445932 " fill="rgb(255,220,0)" points="215.023,1905.79 224.187,1907.1 225.267,1903.09 215.861,1902.68 " />
<svg:polygon detid="478445960" count="1" value="18" id="604001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward    Id 478445960 " fill="rgb(255,220,0)" points="228.822,1899.51 238.623,1899.52 238.282,1895.96 228.546,1896.62 " />
<svg:polygon detid="478445964" count="1" value="18" id="604002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  3 forward    Id 478445964 " fill="rgb(255,220,0)" points="228.359,1895.64 238.1,1895 237.083,1891.48 227.534,1892.78 " />
<svg:polygon detid="478413188" count="1" value="18" id="604003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward    Id 478413188 " fill="rgb(255,220,0)" points="227.161,1891.82 236.721,1890.55 235.041,1887.12 225.798,1889.04 " />
<svg:polygon detid="478413192" count="1" value="18" id="604004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  2 forward    Id 478413192 " fill="rgb(255,220,0)" points="225.244,1888.11 234.503,1886.22 232.18,1882.92 223.361,1885.43 " />
<svg:polygon detid="478413196" count="1" value="18" id="604005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  3 forward    Id 478413196 " fill="rgb(255,220,0)" points="222.633,1884.54 231.473,1882.05 228.538,1878.93 220.253,1882.01 " />
<svg:polygon detid="478446212" count="1" value="18" id="604006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward    Id 478446212 " fill="rgb(255,220,0)" points="219.36,1881.17 227.671,1878.12 224.159,1875.21 216.512,1878.81 " />
<svg:polygon detid="478446216" count="1" value="18" id="604007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward    Id 478446216 " fill="rgb(255,220,0)" points="215.466,1878.04 223.143,1874.46 219.099,1871.8 212.187,1875.88 " />
<svg:polygon detid="478446220" count="1" value="18" id="604008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  3 forward    Id 478446220 " fill="rgb(255,220,0)" points="211.001,1875.18 217.948,1871.12 213.422,1868.74 207.331,1873.26 " />
<svg:polygon detid="478446224" count="1" value="18" id="604009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  0 backward    Id 478446224 " fill="rgb(255,220,0)" points="206.019,1872.64 212.149,1868.14 207.199,1866.08 202.006,1870.96 " />
<svg:polygon detid="478413444" count="1" value="18" id="604010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward    Id 478413444 " fill="rgb(255,220,0)" points="200.585,1870.44 205.82,1865.57 200.508,1863.84 196.278,1869.04 " />
<svg:polygon detid="478413448" count="1" value="18" id="604011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  2 forward    Id 478413448 " fill="rgb(255,220,0)" points="194.766,1868.61 199.04,1863.42 193.433,1862.06 190.219,1867.5 " />
<svg:polygon detid="478413452" count="1" value="18" id="604012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  3 forward    Id 478413452 " fill="rgb(255,220,0)" points="188.636,1867.18 191.896,1861.74 186.064,1860.75 183.907,1866.38 " />
<svg:polygon detid="478446468" count="1" value="18" id="604013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward    Id 478446468 " fill="rgb(255,220,0)" points="182.271,1866.16 184.476,1860.54 178.493,1859.94 177.419,1865.67 " />
<svg:polygon detid="478446472" count="1" value="18" id="604014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward    Id 478446472 " fill="rgb(255,220,0)" points="175.753,1865.56 176.874,1859.83 170.814,1859.63 170.839,1865.4 " />
<svg:polygon detid="478446476" count="1" value="18" id="604015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  3 forward    Id 478446476 " fill="rgb(255,220,0)" points="169.161,1865.4 169.186,1859.63 163.126,1859.83 164.247,1865.56 " />
<svg:polygon detid="478446480" count="1" value="18" id="604016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  0 backward    Id 478446480 " fill="rgb(255,220,0)" points="162.581,1865.67 161.507,1859.94 155.524,1860.54 157.729,1866.16 " />
<svg:polygon detid="478413700" count="1" value="18" id="604017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward    Id 478413700 " fill="rgb(255,220,0)" points="156.093,1866.38 153.936,1860.75 148.104,1861.74 151.364,1867.18 " />
<svg:polygon detid="478413704" count="1" value="18" id="604018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  2 forward    Id 478413704 " fill="rgb(255,220,0)" points="149.781,1867.5 146.567,1862.06 140.96,1863.42 145.234,1868.61 " />
<svg:polygon detid="478413708" count="1" value="18" id="604019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  3 forward    Id 478413708 " fill="rgb(255,220,0)" points="143.722,1869.04 139.492,1863.84 134.18,1865.57 139.415,1870.44 " />
<svg:polygon detid="478446724" count="1" value="18" id="604020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward    Id 478446724 " fill="rgb(255,220,0)" points="137.994,1870.96 132.801,1866.08 127.851,1868.14 133.981,1872.64 " />
<svg:polygon detid="478446728" count="1" value="18" id="604021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward    Id 478446728 " fill="rgb(255,220,0)" points="132.669,1873.26 126.578,1868.74 122.052,1871.12 128.999,1875.18 " />
<svg:polygon detid="478446732" count="1" value="18" id="604022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  3 forward    Id 478446732 " fill="rgb(255,220,0)" points="127.813,1875.88 120.901,1871.8 116.857,1874.46 124.534,1878.04 " />
<svg:polygon detid="478446736" count="1" value="18" id="604023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  0 backward    Id 478446736 " fill="rgb(255,220,0)" points="123.488,1878.81 115.841,1875.21 112.329,1878.12 120.64,1881.17 " />
<svg:polygon detid="478413956" count="1" value="18" id="604024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward    Id 478413956 " fill="rgb(255,220,0)" points="119.747,1882.01 111.462,1878.93 108.527,1882.05 117.367,1884.54 " />
<svg:polygon detid="478413960" count="1" value="18" id="604025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  2 forward    Id 478413960 " fill="rgb(255,220,0)" points="116.639,1885.43 107.82,1882.92 105.497,1886.22 114.756,1888.11 " />
<svg:polygon detid="478413964" count="1" value="18" id="604026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  3 forward    Id 478413964 " fill="rgb(255,220,0)" points="114.202,1889.04 104.959,1887.12 103.279,1890.55 112.839,1891.82 " />
<svg:polygon detid="478446980" count="1" value="18" id="604027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward    Id 478446980 " fill="rgb(255,220,0)" points="112.466,1892.78 102.917,1891.48 101.9,1895 111.641,1895.64 " />
<svg:polygon detid="478446984" count="1" value="18" id="604028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward    Id 478446984 " fill="rgb(255,220,0)" points="111.454,1896.62 101.718,1895.96 101.377,1899.52 111.178,1899.51 " />
<svg:polygon detid="478446988" count="1" value="18" id="604029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  3 forward    Id 478446988 " fill="rgb(255,220,0)" points="111.178,1900.49 101.377,1900.48 101.718,1904.04 111.454,1903.38 " />
<svg:polygon detid="478446992" count="1" value="18" id="604030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  0 backward    Id 478446992 " fill="rgb(255,220,0)" points="111.641,1904.36 101.9,1905 102.917,1908.52 112.466,1907.22 " />
<svg:polygon detid="478414212" count="1" value="18" id="604031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward    Id 478414212 " fill="rgb(255,220,0)" points="112.839,1908.18 103.279,1909.45 104.959,1912.88 114.202,1910.96 " />
<svg:polygon detid="478414216" count="1" value="18" id="604032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  2 forward    Id 478414216 " fill="rgb(255,220,0)" points="114.756,1911.89 105.497,1913.78 107.82,1917.08 116.639,1914.57 " />
<svg:polygon detid="478414220" count="1" value="18" id="604033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  3 forward    Id 478414220 " fill="rgb(255,220,0)" points="117.367,1915.46 108.527,1917.95 111.462,1921.07 119.747,1917.99 " />
<svg:polygon detid="478447236" count="1" value="18" id="604034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward    Id 478447236 " fill="rgb(255,220,0)" points="120.64,1918.83 112.329,1921.88 115.841,1924.79 123.488,1921.19 " />
<svg:polygon detid="478447240" count="1" value="18" id="604035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward    Id 478447240 " fill="rgb(255,220,0)" points="124.534,1921.96 116.857,1925.54 120.901,1928.2 127.813,1924.12 " />
<svg:polygon detid="478447244" count="1" value="18" id="604036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  3 forward    Id 478447244 " fill="rgb(255,220,0)" points="128.999,1924.82 122.052,1928.88 126.578,1931.26 132.669,1926.74 " />
<svg:polygon detid="478447248" count="1" value="18" id="604037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  0 backward    Id 478447248 " fill="rgb(255,220,0)" points="133.981,1927.36 127.851,1931.86 132.801,1933.92 137.994,1929.04 " />
<svg:polygon detid="478414468" count="1" value="18" id="604038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward    Id 478414468 " fill="rgb(255,220,0)" points="139.415,1929.56 134.18,1934.43 139.492,1936.16 143.722,1930.96 " />
<svg:polygon detid="478414472" count="1" value="18" id="604039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  2 forward    Id 478414472 " fill="rgb(255,220,0)" points="145.234,1931.39 140.96,1936.58 146.567,1937.94 149.781,1932.5 " />
<svg:polygon detid="478414476" count="1" value="18" id="604040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  3 forward    Id 478414476 " fill="rgb(255,220,0)" points="151.364,1932.82 148.104,1938.26 153.936,1939.25 156.093,1933.62 " />
<svg:polygon detid="478447492" count="1" value="18" id="604041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward    Id 478447492 " fill="rgb(255,220,0)" points="157.729,1933.84 155.524,1939.46 161.507,1940.06 162.581,1934.33 " />
<svg:polygon detid="478447496" count="1" value="18" id="604042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward    Id 478447496 " fill="rgb(255,220,0)" points="164.247,1934.44 163.126,1940.17 169.186,1940.37 169.161,1934.6 " />
<svg:polygon detid="478447500" count="1" value="18" id="604043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  3 forward    Id 478447500 " fill="rgb(255,220,0)" points="170.839,1934.6 170.814,1940.37 176.874,1940.17 175.753,1934.44 " />
<svg:polygon detid="478447504" count="1" value="18" id="604044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  0 backward    Id 478447504 " fill="rgb(255,220,0)" points="177.419,1934.33 178.493,1940.06 184.476,1939.46 182.271,1933.84 " />
<svg:polygon detid="478414724" count="1" value="18" id="604045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward    Id 478414724 " fill="rgb(255,220,0)" points="183.907,1933.62 186.064,1939.25 191.896,1938.26 188.636,1932.82 " />
<svg:polygon detid="478414728" count="1" value="18" id="604046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  2 forward    Id 478414728 " fill="rgb(255,220,0)" points="190.219,1932.5 193.433,1937.94 199.04,1936.58 194.766,1931.39 " />
<svg:polygon detid="478414732" count="1" value="18" id="604047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  3 forward    Id 478414732 " fill="rgb(255,220,0)" points="196.278,1930.96 200.508,1936.16 205.82,1934.43 200.585,1929.56 " />
<svg:polygon detid="478447748" count="1" value="18" id="604048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward    Id 478447748 " fill="rgb(255,220,0)" points="202.006,1929.04 207.199,1933.92 212.149,1931.86 206.019,1927.36 " />
<svg:polygon detid="478447752" count="1" value="18" id="604049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward    Id 478447752 " fill="rgb(255,220,0)" points="207.331,1926.74 213.422,1931.26 217.948,1928.88 211.001,1924.82 " />
<svg:polygon detid="478447756" count="1" value="18" id="604050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  3 forward    Id 478447756 " fill="rgb(255,220,0)" points="212.187,1924.12 219.099,1928.2 223.143,1925.54 215.466,1921.96 " />
<svg:polygon detid="478447760" count="1" value="18" id="604051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  0 backward    Id 478447760 " fill="rgb(255,220,0)" points="216.512,1921.19 224.159,1924.79 227.671,1921.88 219.36,1918.83 " />
<svg:polygon detid="478414980" count="1" value="18" id="604052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward    Id 478414980 " fill="rgb(255,220,0)" points="220.253,1917.99 228.538,1921.07 231.473,1917.95 222.633,1915.46 " />
<svg:polygon detid="478414984" count="1" value="18" id="604053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  2 forward    Id 478414984 " fill="rgb(255,220,0)" points="223.361,1914.57 232.18,1917.08 234.503,1913.78 225.244,1911.89 " />
<svg:polygon detid="478414988" count="1" value="18" id="604054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  3 forward    Id 478414988 " fill="rgb(255,220,0)" points="225.798,1910.96 235.041,1912.88 236.721,1909.45 227.161,1908.18 " />
<svg:polygon detid="478445968" count="1" value="18" id="604055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  0 backward    Id 478445968 " fill="rgb(255,220,0)" points="227.534,1907.22 237.083,1908.52 238.1,1905 228.359,1904.36 " />
<svg:polygon detid="478445956" count="1" value="18" id="604056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward    Id 478445956 " fill="rgb(255,220,0)" points="228.546,1903.38 238.282,1904.04 238.623,1900.48 228.822,1900.49 " />
<svg:polygon detid="478445994" count="1" value="18" id="605001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward    Id 478445994 " fill="rgb(255,220,0)" points="252.313,1893.17 239.92,1894.35 240.562,1899.15 " />
<svg:polygon detid="478413222" count="1" value="18" id="605002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward    Id 478413222 " fill="rgb(255,220,0)" points="249.484,1885.68 237.556,1887.98 239.467,1892.67 " />
<svg:polygon detid="478413226" count="1" value="18" id="605003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  2 forward    Id 478413226 " fill="rgb(255,220,0)" points="244.698,1878.54 233.528,1881.92 236.661,1886.36 " />
<svg:polygon detid="478413230" count="1" value="18" id="605004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  3 forward    Id 478413230 " fill="rgb(255,220,0)" points="238.072,1871.93 227.937,1876.29 232.214,1880.4 " />
<svg:polygon detid="478446246" count="1" value="18" id="605005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward    Id 478446246 " fill="rgb(255,220,0)" points="229.77,1866.02 220.919,1871.25 226.235,1874.91 " />
<svg:polygon detid="478446250" count="1" value="18" id="605006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward    Id 478446250 " fill="rgb(255,220,0)" points="219.997,1860.93 212.647,1866.92 218.871,1870.05 " />
<svg:polygon detid="478413478" count="1" value="18" id="605007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward    Id 478413478 " fill="rgb(255,220,0)" points="208.992,1856.81 203.324,1863.4 210.304,1865.92 " />
<svg:polygon detid="478413482" count="1" value="18" id="605008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  2 forward    Id 478413482 " fill="rgb(255,220,0)" points="197.028,1853.76 193.182,1860.79 200.744,1862.63 " />
<svg:polygon detid="478413486" count="1" value="18" id="605009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  3 forward    Id 478413486 " fill="rgb(255,220,0)" points="184.397,1851.84 182.468,1859.14 190.428,1860.26 " />
<svg:polygon detid="478446502" count="1" value="18" id="605010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward    Id 478446502 " fill="rgb(255,220,0)" points="171.413,1851.11 171.448,1858.49 179.608,1858.87 " />
<svg:polygon detid="478446506" count="1" value="18" id="605011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward    Id 478446506 " fill="rgb(255,220,0)" points="158.393,1851.58 160.392,1858.87 168.552,1858.49 " />
<svg:polygon detid="478413734" count="1" value="18" id="605012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward    Id 478413734 " fill="rgb(255,220,0)" points="145.66,1853.24 149.572,1860.26 157.532,1859.14 " />
<svg:polygon detid="478413738" count="1" value="18" id="605013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  2 forward    Id 478413738 " fill="rgb(255,220,0)" points="133.525,1856.06 139.256,1862.63 146.818,1860.79 " />
<svg:polygon detid="478413742" count="1" value="18" id="605014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  3 forward    Id 478413742 " fill="rgb(255,220,0)" points="122.289,1859.96 129.696,1865.92 136.676,1863.4 " />
<svg:polygon detid="478446758" count="1" value="18" id="605015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward    Id 478446758 " fill="rgb(255,220,0)" points="112.228,1864.84 121.129,1870.05 127.353,1866.92 " />
<svg:polygon detid="478446762" count="1" value="18" id="605016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward    Id 478446762 " fill="rgb(255,220,0)" points="103.589,1870.59 113.765,1874.91 119.081,1871.25 " />
<svg:polygon detid="478413990" count="1" value="18" id="605017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward    Id 478413990 " fill="rgb(255,220,0)" points="96.5852,1877.06 107.786,1880.4 112.063,1876.29 " />
<svg:polygon detid="478413994" count="1" value="18" id="605018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  2 forward    Id 478413994 " fill="rgb(255,220,0)" points="91.3893,1884.1 103.339,1886.36 106.472,1881.92 " />
<svg:polygon detid="478413998" count="1" value="18" id="605019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  3 forward    Id 478413998 " fill="rgb(255,220,0)" points="88.129,1891.53 100.533,1892.67 102.444,1887.98 " />
<svg:polygon detid="478447014" count="1" value="18" id="605020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward    Id 478447014 " fill="rgb(255,220,0)" points="86.8848,1899.17 99.4383,1899.15 100.08,1894.35 " />
<svg:polygon detid="478447018" count="1" value="18" id="605021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward    Id 478447018 " fill="rgb(255,220,0)" points="87.6871,1906.83 100.08,1905.65 99.4383,1900.85 " />
<svg:polygon detid="478414246" count="1" value="18" id="605022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward    Id 478414246 " fill="rgb(255,220,0)" points="90.5161,1914.32 102.444,1912.02 100.533,1907.33 " />
<svg:polygon detid="478414250" count="1" value="18" id="605023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  2 forward    Id 478414250 " fill="rgb(255,220,0)" points="95.3024,1921.46 106.472,1918.08 103.339,1913.64 " />
<svg:polygon detid="478414254" count="1" value="18" id="605024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  3 forward    Id 478414254 " fill="rgb(255,220,0)" points="101.928,1928.07 112.063,1923.71 107.786,1919.6 " />
<svg:polygon detid="478447270" count="1" value="18" id="605025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward    Id 478447270 " fill="rgb(255,220,0)" points="110.23,1933.98 119.081,1928.75 113.765,1925.09 " />
<svg:polygon detid="478447274" count="1" value="18" id="605026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward    Id 478447274 " fill="rgb(255,220,0)" points="120.003,1939.07 127.353,1933.08 121.129,1929.95 " />
<svg:polygon detid="478414502" count="1" value="18" id="605027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward    Id 478414502 " fill="rgb(255,220,0)" points="131.008,1943.19 136.676,1936.6 129.696,1934.08 " />
<svg:polygon detid="478414506" count="1" value="18" id="605028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  2 forward    Id 478414506 " fill="rgb(255,220,0)" points="142.972,1946.24 146.818,1939.21 139.256,1937.37 " />
<svg:polygon detid="478414510" count="1" value="18" id="605029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  3 forward    Id 478414510 " fill="rgb(255,220,0)" points="155.603,1948.16 157.532,1940.86 149.572,1939.74 " />
<svg:polygon detid="478447526" count="1" value="18" id="605030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward    Id 478447526 " fill="rgb(255,220,0)" points="168.587,1948.89 168.552,1941.51 160.392,1941.13 " />
<svg:polygon detid="478447530" count="1" value="18" id="605031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward    Id 478447530 " fill="rgb(255,220,0)" points="181.607,1948.42 179.608,1941.13 171.448,1941.51 " />
<svg:polygon detid="478414758" count="1" value="18" id="605032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward    Id 478414758 " fill="rgb(255,220,0)" points="194.34,1946.76 190.428,1939.74 182.468,1940.86 " />
<svg:polygon detid="478414762" count="1" value="18" id="605033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  2 forward    Id 478414762 " fill="rgb(255,220,0)" points="206.475,1943.94 200.744,1937.37 193.182,1939.21 " />
<svg:polygon detid="478414766" count="1" value="18" id="605034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  3 forward    Id 478414766 " fill="rgb(255,220,0)" points="217.711,1940.04 210.304,1934.08 203.324,1936.6 " />
<svg:polygon detid="478447782" count="1" value="18" id="605035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward    Id 478447782 " fill="rgb(255,220,0)" points="227.772,1935.16 218.871,1929.95 212.647,1933.08 " />
<svg:polygon detid="478447786" count="1" value="18" id="605036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward    Id 478447786 " fill="rgb(255,220,0)" points="236.411,1929.41 226.235,1925.09 220.919,1928.75 " />
<svg:polygon detid="478415014" count="1" value="18" id="605037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward    Id 478415014 " fill="rgb(255,220,0)" points="243.415,1922.94 232.214,1919.6 227.937,1923.71 " />
<svg:polygon detid="478415018" count="1" value="18" id="605038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  2 forward    Id 478415018 " fill="rgb(255,220,0)" points="248.611,1915.9 236.661,1913.64 233.528,1918.08 " />
<svg:polygon detid="478415022" count="1" value="18" id="605039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  3 forward    Id 478415022 " fill="rgb(255,220,0)" points="251.871,1908.47 239.467,1907.33 237.556,1912.02 " />
<svg:polygon detid="478445990" count="1" value="18" id="605040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward    Id 478445990 " fill="rgb(255,220,0)" points="253.115,1900.83 240.562,1900.85 239.92,1905.65 " />
<svg:polygon detid="478445993" count="1" value="18" id="605101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward   stereo Id 478445993 " fill="rgb(255,220,0)" points="240.562,1899.15 253.115,1899.17 252.313,1893.17 " />
<svg:polygon detid="478413221" count="1" value="18" id="605102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward   stereo Id 478413221 " fill="rgb(255,220,0)" points="239.467,1892.67 251.871,1891.53 249.484,1885.68 " />
<svg:polygon detid="478413225" count="1" value="18" id="605103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  2 forward   stereo Id 478413225 " fill="rgb(255,220,0)" points="236.661,1886.36 248.611,1884.1 244.698,1878.54 " />
<svg:polygon detid="478413229" count="1" value="18" id="605104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  3 forward   stereo Id 478413229 " fill="rgb(255,220,0)" points="232.214,1880.4 243.415,1877.06 238.072,1871.93 " />
<svg:polygon detid="478446245" count="1" value="18" id="605105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward   stereo Id 478446245 " fill="rgb(255,220,0)" points="226.235,1874.91 236.411,1870.59 229.77,1866.02 " />
<svg:polygon detid="478446249" count="1" value="18" id="605106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward   stereo Id 478446249 " fill="rgb(255,220,0)" points="218.871,1870.05 227.772,1864.84 219.997,1860.93 " />
<svg:polygon detid="478413477" count="1" value="18" id="605107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward   stereo Id 478413477 " fill="rgb(255,220,0)" points="210.304,1865.92 217.711,1859.96 208.992,1856.81 " />
<svg:polygon detid="478413481" count="1" value="18" id="605108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  2 forward   stereo Id 478413481 " fill="rgb(255,220,0)" points="200.744,1862.63 206.475,1856.06 197.028,1853.76 " />
<svg:polygon detid="478413485" count="1" value="18" id="605109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  3 forward   stereo Id 478413485 " fill="rgb(255,220,0)" points="190.428,1860.26 194.34,1853.24 184.397,1851.84 " />
<svg:polygon detid="478446501" count="1" value="18" id="605110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward   stereo Id 478446501 " fill="rgb(255,220,0)" points="179.608,1858.87 181.607,1851.58 171.413,1851.11 " />
<svg:polygon detid="478446505" count="1" value="18" id="605111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward   stereo Id 478446505 " fill="rgb(255,220,0)" points="168.552,1858.49 168.587,1851.11 158.393,1851.58 " />
<svg:polygon detid="478413733" count="1" value="18" id="605112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward   stereo Id 478413733 " fill="rgb(255,220,0)" points="157.532,1859.14 155.603,1851.84 145.66,1853.24 " />
<svg:polygon detid="478413737" count="1" value="18" id="605113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  2 forward   stereo Id 478413737 " fill="rgb(255,220,0)" points="146.818,1860.79 142.972,1853.76 133.525,1856.06 " />
<svg:polygon detid="478413741" count="1" value="18" id="605114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  3 forward   stereo Id 478413741 " fill="rgb(255,220,0)" points="136.676,1863.4 131.008,1856.81 122.289,1859.96 " />
<svg:polygon detid="478446757" count="1" value="18" id="605115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward   stereo Id 478446757 " fill="rgb(255,220,0)" points="127.353,1866.92 120.003,1860.93 112.228,1864.84 " />
<svg:polygon detid="478446761" count="1" value="18" id="605116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward   stereo Id 478446761 " fill="rgb(255,220,0)" points="119.081,1871.25 110.23,1866.02 103.589,1870.59 " />
<svg:polygon detid="478413989" count="1" value="18" id="605117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward   stereo Id 478413989 " fill="rgb(255,220,0)" points="112.063,1876.29 101.928,1871.93 96.5852,1877.06 " />
<svg:polygon detid="478413993" count="1" value="18" id="605118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  2 forward   stereo Id 478413993 " fill="rgb(255,220,0)" points="106.472,1881.92 95.3024,1878.54 91.3893,1884.1 " />
<svg:polygon detid="478413997" count="1" value="18" id="605119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  3 forward   stereo Id 478413997 " fill="rgb(255,220,0)" points="102.444,1887.98 90.5161,1885.68 88.129,1891.53 " />
<svg:polygon detid="478447013" count="1" value="18" id="605120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward   stereo Id 478447013 " fill="rgb(255,220,0)" points="100.08,1894.35 87.6871,1893.17 86.8848,1899.17 " />
<svg:polygon detid="478447017" count="1" value="18" id="605121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward   stereo Id 478447017 " fill="rgb(255,220,0)" points="99.4383,1900.85 86.8848,1900.83 87.6871,1906.83 " />
<svg:polygon detid="478414245" count="1" value="18" id="605122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward   stereo Id 478414245 " fill="rgb(255,220,0)" points="100.533,1907.33 88.129,1908.47 90.5161,1914.32 " />
<svg:polygon detid="478414249" count="1" value="18" id="605123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  2 forward   stereo Id 478414249 " fill="rgb(255,220,0)" points="103.339,1913.64 91.3893,1915.9 95.3024,1921.46 " />
<svg:polygon detid="478414253" count="1" value="18" id="605124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  3 forward   stereo Id 478414253 " fill="rgb(255,220,0)" points="107.786,1919.6 96.5852,1922.94 101.928,1928.07 " />
<svg:polygon detid="478447269" count="1" value="18" id="605125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward   stereo Id 478447269 " fill="rgb(255,220,0)" points="113.765,1925.09 103.589,1929.41 110.23,1933.98 " />
<svg:polygon detid="478447273" count="1" value="18" id="605126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward   stereo Id 478447273 " fill="rgb(255,220,0)" points="121.129,1929.95 112.228,1935.16 120.003,1939.07 " />
<svg:polygon detid="478414501" count="1" value="18" id="605127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward   stereo Id 478414501 " fill="rgb(255,220,0)" points="129.696,1934.08 122.289,1940.04 131.008,1943.19 " />
<svg:polygon detid="478414505" count="1" value="18" id="605128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  2 forward   stereo Id 478414505 " fill="rgb(255,220,0)" points="139.256,1937.37 133.525,1943.94 142.972,1946.24 " />
<svg:polygon detid="478414509" count="1" value="18" id="605129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  3 forward   stereo Id 478414509 " fill="rgb(255,220,0)" points="149.572,1939.74 145.66,1946.76 155.603,1948.16 " />
<svg:polygon detid="478447525" count="1" value="18" id="605130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward   stereo Id 478447525 " fill="rgb(255,220,0)" points="160.392,1941.13 158.393,1948.42 168.587,1948.89 " />
<svg:polygon detid="478447529" count="1" value="18" id="605131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward   stereo Id 478447529 " fill="rgb(255,220,0)" points="171.448,1941.51 171.413,1948.89 181.607,1948.42 " />
<svg:polygon detid="478414757" count="1" value="18" id="605132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward   stereo Id 478414757 " fill="rgb(255,220,0)" points="182.468,1940.86 184.397,1948.16 194.34,1946.76 " />
<svg:polygon detid="478414761" count="1" value="18" id="605133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  2 forward   stereo Id 478414761 " fill="rgb(255,220,0)" points="193.182,1939.21 197.028,1946.24 206.475,1943.94 " />
<svg:polygon detid="478414765" count="1" value="18" id="605134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  3 forward   stereo Id 478414765 " fill="rgb(255,220,0)" points="203.324,1936.6 208.992,1943.19 217.711,1940.04 " />
<svg:polygon detid="478447781" count="1" value="18" id="605135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward   stereo Id 478447781 " fill="rgb(255,220,0)" points="212.647,1933.08 219.997,1939.07 227.772,1935.16 " />
<svg:polygon detid="478447785" count="1" value="18" id="605136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward   stereo Id 478447785 " fill="rgb(255,220,0)" points="220.919,1928.75 229.77,1933.98 236.411,1929.41 " />
<svg:polygon detid="478415013" count="1" value="18" id="605137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward   stereo Id 478415013 " fill="rgb(255,220,0)" points="227.937,1923.71 238.072,1928.07 243.415,1922.94 " />
<svg:polygon detid="478415017" count="1" value="18" id="605138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  2 forward   stereo Id 478415017 " fill="rgb(255,220,0)" points="233.528,1918.08 244.698,1921.46 248.611,1915.9 " />
<svg:polygon detid="478415021" count="1" value="18" id="605139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  3 forward   stereo Id 478415021 " fill="rgb(255,220,0)" points="237.556,1912.02 249.484,1914.32 251.871,1908.47 " />
<svg:polygon detid="478445989" count="1" value="18" id="605140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward   stereo Id 478445989 " fill="rgb(255,220,0)" points="239.92,1905.65 252.313,1906.83 253.115,1900.83 " />
<svg:polygon detid="478446020" count="1" value="18" id="606001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward    Id 478446020 " fill="rgb(255,220,0)" points="255.048,1899.28 270.706,1899.3 270.206,1894.06 254.65,1895.12 " />
<svg:polygon detid="478446028" count="1" value="18" id="606002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  3 forward    Id 478446028 " fill="rgb(255,220,0)" points="254.376,1893.68 269.939,1892.67 268.446,1887.5 253.188,1889.57 " />
<svg:polygon detid="478413252" count="1" value="18" id="606003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward    Id 478413252 " fill="rgb(255,220,0)" points="252.643,1888.16 267.916,1886.14 265.448,1881.1 250.68,1884.16 " />
<svg:polygon detid="478413256" count="1" value="18" id="606004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  2 forward    Id 478413256 " fill="rgb(255,220,0)" points="249.87,1882.8 264.662,1879.77 261.249,1874.93 247.157,1878.94 " />
<svg:polygon detid="478413260" count="1" value="18" id="606005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  3 forward    Id 478413260 " fill="rgb(255,220,0)" points="246.093,1877.64 260.216,1873.67 255.903,1869.08 242.664,1873.99 " />
<svg:polygon detid="478446276" count="1" value="18" id="606006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward    Id 478446276 " fill="rgb(255,220,0)" points="241.36,1872.77 254.637,1867.89 249.477,1863.61 237.257,1869.37 " />
<svg:polygon detid="478446280" count="1" value="18" id="606007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward    Id 478446280 " fill="rgb(255,220,0)" points="235.729,1868.24 247.993,1862.52 242.051,1858.61 231.005,1865.13 " />
<svg:polygon detid="478446284" count="1" value="18" id="606008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  3 forward    Id 478446284 " fill="rgb(255,220,0)" points="229.271,1864.11 240.368,1857.62 233.72,1854.12 223.985,1861.34 " />
<svg:polygon detid="478446288" count="1" value="18" id="606009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  0 backward    Id 478446288 " fill="rgb(255,220,0)" points="222.068,1860.44 231.859,1853.25 224.587,1850.21 216.286,1858.02 " />
<svg:polygon detid="478413508" count="1" value="18" id="606010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward    Id 478413508 " fill="rgb(255,220,0)" points="214.21,1857.26 222.571,1849.47 214.767,1846.93 208.006,1855.24 " />
<svg:polygon detid="478413512" count="1" value="18" id="606011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  2 forward    Id 478413512 " fill="rgb(255,220,0)" points="205.796,1854.61 212.622,1846.32 204.385,1844.32 199.247,1853.02 " />
<svg:polygon detid="478413516" count="1" value="18" id="606012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  3 forward    Id 478413516 " fill="rgb(255,220,0)" points="196.932,1852.54 202.138,1843.85 193.57,1842.4 190.12,1851.39 " />
<svg:polygon detid="478446532" count="1" value="18" id="606013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward    Id 478446532 " fill="rgb(255,220,0)" points="187.73,1851.07 191.249,1842.09 182.458,1841.21 180.741,1850.37 " />
<svg:polygon detid="478446536" count="1" value="18" id="606014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward    Id 478446536 " fill="rgb(255,220,0)" points="178.304,1850.21 180.093,1841.06 171.19,1840.76 171.226,1849.97 " />
<svg:polygon detid="478446540" count="1" value="18" id="606015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  3 forward    Id 478446540 " fill="rgb(255,220,0)" points="168.774,1849.97 168.81,1840.76 159.907,1841.06 161.696,1850.21 " />
<svg:polygon detid="478446544" count="1" value="18" id="606016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  0 backward    Id 478446544 " fill="rgb(255,220,0)" points="159.259,1850.37 157.542,1841.21 148.751,1842.09 152.27,1851.07 " />
<svg:polygon detid="478413764" count="1" value="18" id="606017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward    Id 478413764 " fill="rgb(255,220,0)" points="149.88,1851.39 146.43,1842.4 137.862,1843.85 143.068,1852.54 " />
<svg:polygon detid="478413768" count="1" value="18" id="606018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  2 forward    Id 478413768 " fill="rgb(255,220,0)" points="140.753,1853.02 135.615,1844.32 127.378,1846.32 134.204,1854.61 " />
<svg:polygon detid="478413772" count="1" value="18" id="606019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  3 forward    Id 478413772 " fill="rgb(255,220,0)" points="131.994,1855.24 125.233,1846.93 117.429,1849.47 125.79,1857.26 " />
<svg:polygon detid="478446788" count="1" value="18" id="606020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward    Id 478446788 " fill="rgb(255,220,0)" points="123.714,1858.02 115.413,1850.21 108.141,1853.25 117.932,1860.44 " />
<svg:polygon detid="478446792" count="1" value="18" id="606021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward    Id 478446792 " fill="rgb(255,220,0)" points="116.015,1861.34 106.28,1854.12 99.6318,1857.62 110.729,1864.11 " />
<svg:polygon detid="478446796" count="1" value="18" id="606022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  3 forward    Id 478446796 " fill="rgb(255,220,0)" points="108.995,1865.13 97.9486,1858.61 92.0071,1862.52 104.271,1868.24 " />
<svg:polygon detid="478446800" count="1" value="18" id="606023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  0 backward    Id 478446800 " fill="rgb(255,220,0)" points="102.743,1869.37 90.5229,1863.61 85.3632,1867.89 98.6404,1872.77 " />
<svg:polygon detid="478414020" count="1" value="18" id="606024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward    Id 478414020 " fill="rgb(255,220,0)" points="97.3356,1873.99 84.0966,1869.08 79.7835,1873.67 93.9066,1877.64 " />
<svg:polygon detid="478414024" count="1" value="18" id="606025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  2 forward    Id 478414024 " fill="rgb(255,220,0)" points="92.8426,1878.94 78.7507,1874.93 75.3385,1879.77 90.1298,1882.8 " />
<svg:polygon detid="478414028" count="1" value="18" id="606026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  3 forward    Id 478414028 " fill="rgb(255,220,0)" points="89.3198,1884.16 74.5522,1881.1 72.0838,1886.14 87.3574,1888.16 " />
<svg:polygon detid="478447044" count="1" value="18" id="606027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward    Id 478447044 " fill="rgb(255,220,0)" points="86.8117,1889.57 71.5541,1887.5 70.0606,1892.67 85.6243,1893.68 " />
<svg:polygon detid="478447048" count="1" value="18" id="606028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward    Id 478447048 " fill="rgb(255,220,0)" points="85.3497,1895.12 69.794,1894.06 69.2941,1899.3 84.9522,1899.28 " />
<svg:polygon detid="478447052" count="1" value="18" id="606029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  3 forward    Id 478447052 " fill="rgb(255,220,0)" points="84.9522,1900.72 69.2941,1900.7 69.794,1905.94 85.3497,1904.88 " />
<svg:polygon detid="478447056" count="1" value="18" id="606030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  0 backward    Id 478447056 " fill="rgb(255,220,0)" points="85.6243,1906.32 70.0606,1907.33 71.5541,1912.5 86.8117,1910.43 " />
<svg:polygon detid="478414276" count="1" value="18" id="606031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward    Id 478414276 " fill="rgb(255,220,0)" points="87.3574,1911.84 72.0838,1913.86 74.5522,1918.9 89.3198,1915.84 " />
<svg:polygon detid="478414280" count="1" value="18" id="606032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  2 forward    Id 478414280 " fill="rgb(255,220,0)" points="90.1298,1917.2 75.3385,1920.23 78.7507,1925.07 92.8426,1921.06 " />
<svg:polygon detid="478414284" count="1" value="18" id="606033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  3 forward    Id 478414284 " fill="rgb(255,220,0)" points="93.9066,1922.36 79.7835,1926.33 84.0966,1930.92 97.3356,1926.01 " />
<svg:polygon detid="478447300" count="1" value="18" id="606034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward    Id 478447300 " fill="rgb(255,220,0)" points="98.6404,1927.23 85.3632,1932.11 90.5229,1936.39 102.743,1930.63 " />
<svg:polygon detid="478447304" count="1" value="18" id="606035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward    Id 478447304 " fill="rgb(255,220,0)" points="104.271,1931.76 92.0071,1937.48 97.9486,1941.39 108.995,1934.87 " />
<svg:polygon detid="478447308" count="1" value="18" id="606036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  3 forward    Id 478447308 " fill="rgb(255,220,0)" points="110.729,1935.89 99.6318,1942.38 106.28,1945.88 116.015,1938.66 " />
<svg:polygon detid="478447312" count="1" value="18" id="606037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  0 backward    Id 478447312 " fill="rgb(255,220,0)" points="117.932,1939.56 108.141,1946.75 115.413,1949.79 123.714,1941.98 " />
<svg:polygon detid="478414532" count="1" value="18" id="606038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward    Id 478414532 " fill="rgb(255,220,0)" points="125.79,1942.74 117.429,1950.53 125.233,1953.07 131.994,1944.76 " />
<svg:polygon detid="478414536" count="1" value="18" id="606039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  2 forward    Id 478414536 " fill="rgb(255,220,0)" points="134.204,1945.39 127.378,1953.68 135.615,1955.68 140.753,1946.98 " />
<svg:polygon detid="478414540" count="1" value="18" id="606040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  3 forward    Id 478414540 " fill="rgb(255,220,0)" points="143.068,1947.46 137.862,1956.15 146.43,1957.6 149.88,1948.61 " />
<svg:polygon detid="478447556" count="1" value="18" id="606041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward    Id 478447556 " fill="rgb(255,220,0)" points="152.27,1948.93 148.751,1957.91 157.542,1958.79 159.259,1949.63 " />
<svg:polygon detid="478447560" count="1" value="18" id="606042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward    Id 478447560 " fill="rgb(255,220,0)" points="161.696,1949.79 159.907,1958.94 168.81,1959.24 168.774,1950.03 " />
<svg:polygon detid="478447564" count="1" value="18" id="606043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  3 forward    Id 478447564 " fill="rgb(255,220,0)" points="171.226,1950.03 171.19,1959.24 180.093,1958.94 178.304,1949.79 " />
<svg:polygon detid="478447568" count="1" value="18" id="606044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  0 backward    Id 478447568 " fill="rgb(255,220,0)" points="180.741,1949.63 182.458,1958.79 191.249,1957.91 187.73,1948.93 " />
<svg:polygon detid="478414788" count="1" value="18" id="606045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward    Id 478414788 " fill="rgb(255,220,0)" points="190.12,1948.61 193.57,1957.6 202.138,1956.15 196.932,1947.46 " />
<svg:polygon detid="478414792" count="1" value="18" id="606046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  2 forward    Id 478414792 " fill="rgb(255,220,0)" points="199.247,1946.98 204.385,1955.68 212.622,1953.68 205.796,1945.39 " />
<svg:polygon detid="478414796" count="1" value="18" id="606047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  3 forward    Id 478414796 " fill="rgb(255,220,0)" points="208.006,1944.76 214.767,1953.07 222.571,1950.53 214.21,1942.74 " />
<svg:polygon detid="478447812" count="1" value="18" id="606048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward    Id 478447812 " fill="rgb(255,220,0)" points="216.286,1941.98 224.587,1949.79 231.859,1946.75 222.068,1939.56 " />
<svg:polygon detid="478447816" count="1" value="18" id="606049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward    Id 478447816 " fill="rgb(255,220,0)" points="223.985,1938.66 233.72,1945.88 240.368,1942.38 229.271,1935.89 " />
<svg:polygon detid="478447820" count="1" value="18" id="606050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  3 forward    Id 478447820 " fill="rgb(255,220,0)" points="231.005,1934.87 242.051,1941.39 247.993,1937.48 235.729,1931.76 " />
<svg:polygon detid="478447824" count="1" value="18" id="606051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  0 backward    Id 478447824 " fill="rgb(255,220,0)" points="237.257,1930.63 249.477,1936.39 254.637,1932.11 241.36,1927.23 " />
<svg:polygon detid="478415044" count="1" value="18" id="606052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward    Id 478415044 " fill="rgb(255,220,0)" points="242.664,1926.01 255.903,1930.92 260.216,1926.33 246.093,1922.36 " />
<svg:polygon detid="478415048" count="1" value="18" id="606053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  2 forward    Id 478415048 " fill="rgb(255,220,0)" points="247.157,1921.06 261.249,1925.07 264.662,1920.23 249.87,1917.2 " />
<svg:polygon detid="478415052" count="1" value="18" id="606054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  3 forward    Id 478415052 " fill="rgb(255,220,0)" points="250.68,1915.84 265.448,1918.9 267.916,1913.86 252.643,1911.84 " />
<svg:polygon detid="478446032" count="1" value="18" id="606055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  0 backward    Id 478446032 " fill="rgb(255,220,0)" points="253.188,1910.43 268.446,1912.5 269.939,1907.33 254.376,1906.32 " />
<svg:polygon detid="478446024" count="1" value="18" id="606056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward    Id 478446024 " fill="rgb(255,220,0)" points="254.65,1904.88 270.206,1905.94 270.706,1900.7 255.048,1900.72 " />
<svg:polygon detid="478446052" count="1" value="18" id="607001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 forward    Id 478446052 " fill="rgb(255,220,0)" points="273.723,1901.79 291.123,1902.21 291.123,1897.79 273.723,1898.21 " />
<svg:polygon detid="478446060" count="1" value="18" id="607002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  3 forward    Id 478446060 " fill="rgb(255,220,0)" points="273.642,1896.99 291.043,1896.61 290.455,1892.21 273.165,1893.43 " />
<svg:polygon detid="478446064" count="1" value="18" id="607003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  0 backward    Id 478446064 " fill="rgb(255,220,0)" points="272.921,1892.22 290.218,1891.03 289.045,1886.68 271.971,1888.69 " />
<svg:polygon detid="478413284" count="1" value="18" id="607004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 forward    Id 478413284 " fill="rgb(255,220,0)" points="271.567,1887.49 288.651,1885.51 286.901,1881.22 270.148,1884.02 " />
<svg:polygon detid="478413288" count="1" value="18" id="607005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  2 forward    Id 478413288 " fill="rgb(255,220,0)" points="269.586,1882.85 286.353,1880.08 284.036,1875.89 267.708,1879.45 " />
<svg:polygon detid="478413292" count="1" value="18" id="607006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  3 forward    Id 478413292 " fill="rgb(255,220,0)" points="266.99,1878.3 283.337,1874.77 280.468,1870.7 264.665,1875 " />
<svg:polygon detid="478413296" count="1" value="18" id="607007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  0 backward    Id 478413296 " fill="rgb(255,220,0)" points="263.797,1873.89 279.623,1869.62 276.219,1865.69 261.039,1870.71 " />
<svg:polygon detid="478413300" count="1" value="18" id="607008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 forward  module  1 backward    Id 478413300 " fill="rgb(255,220,0)" points="260.026,1869.64 275.233,1864.65 271.315,1860.89 256.851,1866.6 " />
<svg:polygon detid="478446308" count="1" value="18" id="607009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 forward    Id 478446308 " fill="rgb(255,220,0)" points="255.7,1865.58 270.194,1859.9 265.787,1856.34 252.128,1862.69 " />
<svg:polygon detid="478446312" count="1" value="18" id="607010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  2 forward    Id 478446312 " fill="rgb(255,220,0)" points="250.845,1861.73 264.537,1855.4 259.668,1852.05 246.899,1859.02 " />
<svg:polygon detid="478446316" count="1" value="18" id="607011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  3 forward    Id 478446316 " fill="rgb(255,220,0)" points="245.492,1858.12 258.297,1851.18 252.996,1848.06 241.195,1855.59 " />
<svg:polygon detid="478446320" count="1" value="18" id="607012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  0 backward    Id 478446320 " fill="rgb(255,220,0)" points="239.673,1854.77 251.513,1847.25 245.813,1844.39 235.052,1852.44 " />
<svg:polygon detid="478446324" count="1" value="18" id="607013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 backward  module  1 backward    Id 478446324 " fill="rgb(255,220,0)" points="233.425,1851.69 244.227,1843.65 238.162,1841.06 228.509,1849.59 " />
<svg:polygon detid="478413540" count="1" value="18" id="607014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 forward    Id 478413540 " fill="rgb(255,220,0)" points="226.786,1848.91 236.483,1840.4 230.09,1838.1 221.605,1847.04 " />
<svg:polygon detid="478413544" count="1" value="18" id="607015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  2 forward    Id 478413544 " fill="rgb(255,220,0)" points="219.797,1846.45 228.329,1837.52 221.649,1835.52 214.382,1844.83 " />
<svg:polygon detid="478413548" count="1" value="18" id="607016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  3 forward    Id 478413548 " fill="rgb(255,220,0)" points="212.5,1844.31 219.815,1835.02 212.888,1833.33 206.886,1842.95 " />
<svg:polygon detid="478413552" count="1" value="18" id="607017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  0 backward    Id 478413552 " fill="rgb(255,220,0)" points="204.942,1842.52 210.994,1832.92 203.864,1831.56 199.163,1841.42 " />
<svg:polygon detid="478413556" count="1" value="18" id="607018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 2 forward  module  1 backward    Id 478413556 " fill="rgb(255,220,0)" points="197.168,1841.09 201.92,1831.23 194.631,1830.21 191.259,1840.25 " />
<svg:polygon detid="478446564" count="1" value="18" id="607019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 forward    Id 478446564 " fill="rgb(255,220,0)" points="189.227,1840.02 192.65,1829.97 185.245,1829.28 183.225,1839.46 " />
<svg:polygon detid="478446568" count="1" value="18" id="607020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  2 forward    Id 478446568 " fill="rgb(255,220,0)" points="181.167,1839.31 183.24,1829.14 175.766,1828.8 175.109,1839.03 " />
<svg:polygon detid="478446572" count="1" value="18" id="607021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  3 forward    Id 478446572 " fill="rgb(255,220,0)" points="173.038,1838.99 173.749,1828.75 166.251,1828.75 166.962,1838.99 " />
<svg:polygon detid="478446576" count="1" value="18" id="607022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  0 backward    Id 478446576 " fill="rgb(255,220,0)" points="164.891,1839.03 164.234,1828.8 156.76,1829.14 158.833,1839.31 " />
<svg:polygon detid="478446580" count="1" value="18" id="607023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 backward  module  1 backward    Id 478446580 " fill="rgb(255,220,0)" points="156.775,1839.46 154.755,1829.28 147.35,1829.97 150.773,1840.02 " />
<svg:polygon detid="478413796" count="1" value="18" id="607024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 forward    Id 478413796 " fill="rgb(255,220,0)" points="148.741,1840.25 145.369,1830.21 138.08,1831.23 142.832,1841.09 " />
<svg:polygon detid="478413800" count="1" value="18" id="607025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  2 forward    Id 478413800 " fill="rgb(255,220,0)" points="140.837,1841.42 136.136,1831.56 129.006,1832.92 135.058,1842.52 " />
<svg:polygon detid="478413804" count="1" value="18" id="607026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  3 forward    Id 478413804 " fill="rgb(255,220,0)" points="133.114,1842.95 127.112,1833.33 120.185,1835.02 127.5,1844.31 " />
<svg:polygon detid="478413808" count="1" value="18" id="607027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  0 backward    Id 478413808 " fill="rgb(255,220,0)" points="125.618,1844.83 118.351,1835.52 111.671,1837.52 120.203,1846.45 " />
<svg:polygon detid="478413812" count="1" value="18" id="607028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 3 forward  module  1 backward    Id 478413812 " fill="rgb(255,220,0)" points="118.395,1847.04 109.91,1838.1 103.517,1840.4 113.214,1848.91 " />
<svg:polygon detid="478446820" count="1" value="18" id="607029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 forward    Id 478446820 " fill="rgb(255,220,0)" points="111.491,1849.59 101.838,1841.06 95.7732,1843.65 106.575,1851.69 " />
<svg:polygon detid="478446824" count="1" value="18" id="607030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  2 forward    Id 478446824 " fill="rgb(255,220,0)" points="104.948,1852.44 94.1875,1844.39 88.4867,1847.25 100.327,1854.77 " />
<svg:polygon detid="478446828" count="1" value="18" id="607031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  3 forward    Id 478446828 " fill="rgb(255,220,0)" points="98.805,1855.59 87.0039,1848.06 81.7027,1851.18 94.5082,1858.12 " />
<svg:polygon detid="478446832" count="1" value="18" id="607032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  0 backward    Id 478446832 " fill="rgb(255,220,0)" points="93.1015,1859.02 80.332,1852.05 75.4631,1855.4 89.155,1861.73 " />
<svg:polygon detid="478446836" count="1" value="18" id="607033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 backward  module  1 backward    Id 478446836 " fill="rgb(255,220,0)" points="87.8721,1862.69 74.213,1856.34 69.8064,1859.9 84.3003,1865.58 " />
<svg:polygon detid="478414052" count="1" value="18" id="607034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 forward    Id 478414052 " fill="rgb(255,220,0)" points="83.149,1866.6 68.6845,1860.89 64.7673,1864.65 79.9739,1869.64 " />
<svg:polygon detid="478414056" count="1" value="18" id="607035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  2 forward    Id 478414056 " fill="rgb(255,220,0)" points="78.9613,1870.71 63.7807,1865.69 60.3771,1869.62 76.2026,1873.89 " />
<svg:polygon detid="478414060" count="1" value="18" id="607036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  3 forward    Id 478414060 " fill="rgb(255,220,0)" points="75.335,1875 59.5317,1870.7 56.6627,1874.77 73.0096,1878.3 " />
<svg:polygon detid="478414064" count="1" value="18" id="607037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  0 backward    Id 478414064 " fill="rgb(255,220,0)" points="72.2923,1879.45 55.9638,1875.89 53.6471,1880.08 70.4145,1882.85 " />
<svg:polygon detid="478414068" count="1" value="18" id="607038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 4 forward  module  1 backward    Id 478414068 " fill="rgb(255,220,0)" points="69.852,1884.02 53.099,1881.22 51.3489,1885.51 68.4334,1887.49 " />
<svg:polygon detid="478447076" count="1" value="18" id="607039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 forward    Id 478447076 " fill="rgb(255,220,0)" points="68.0292,1888.69 50.955,1886.68 49.7822,1891.03 67.0786,1892.22 " />
<svg:polygon detid="478447080" count="1" value="18" id="607040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  2 forward    Id 478447080 " fill="rgb(255,220,0)" points="66.835,1893.43 49.5448,1892.21 48.9566,1896.61 66.3582,1896.99 " />
<svg:polygon detid="478447084" count="1" value="18" id="607041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  3 forward    Id 478447084 " fill="rgb(255,220,0)" points="66.2768,1898.21 48.8773,1897.79 48.8773,1902.21 66.2768,1901.79 " />
<svg:polygon detid="478447088" count="1" value="18" id="607042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  0 backward    Id 478447088 " fill="rgb(255,220,0)" points="66.3582,1903.01 48.9566,1903.39 49.5448,1907.79 66.835,1906.57 " />
<svg:polygon detid="478447092" count="1" value="18" id="607043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 backward  module  1 backward    Id 478447092 " fill="rgb(255,220,0)" points="67.0786,1907.78 49.7822,1908.97 50.955,1913.32 68.0292,1911.31 " />
<svg:polygon detid="478414308" count="1" value="18" id="607044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 forward    Id 478414308 " fill="rgb(255,220,0)" points="68.4334,1912.51 51.3489,1914.49 53.099,1918.78 69.852,1915.98 " />
<svg:polygon detid="478414312" count="1" value="18" id="607045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  2 forward    Id 478414312 " fill="rgb(255,220,0)" points="70.4145,1917.15 53.6471,1919.92 55.9638,1924.11 72.2923,1920.55 " />
<svg:polygon detid="478414316" count="1" value="18" id="607046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  3 forward    Id 478414316 " fill="rgb(255,220,0)" points="73.0096,1921.7 56.6627,1925.23 59.5317,1929.3 75.335,1925 " />
<svg:polygon detid="478414320" count="1" value="18" id="607047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  0 backward    Id 478414320 " fill="rgb(255,220,0)" points="76.2026,1926.11 60.3771,1930.38 63.7807,1934.31 78.9613,1929.29 " />
<svg:polygon detid="478414324" count="1" value="18" id="607048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 5 forward  module  1 backward    Id 478414324 " fill="rgb(255,220,0)" points="79.9739,1930.36 64.7673,1935.35 68.6845,1939.11 83.149,1933.4 " />
<svg:polygon detid="478447332" count="1" value="18" id="607049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 forward    Id 478447332 " fill="rgb(255,220,0)" points="84.3003,1934.42 69.8064,1940.1 74.213,1943.66 87.8721,1937.31 " />
<svg:polygon detid="478447336" count="1" value="18" id="607050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  2 forward    Id 478447336 " fill="rgb(255,220,0)" points="89.155,1938.27 75.4631,1944.6 80.332,1947.95 93.1015,1940.98 " />
<svg:polygon detid="478447340" count="1" value="18" id="607051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  3 forward    Id 478447340 " fill="rgb(255,220,0)" points="94.5082,1941.88 81.7027,1948.82 87.0039,1951.94 98.805,1944.41 " />
<svg:polygon detid="478447344" count="1" value="18" id="607052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  0 backward    Id 478447344 " fill="rgb(255,220,0)" points="100.327,1945.23 88.4867,1952.75 94.1875,1955.61 104.948,1947.56 " />
<svg:polygon detid="478447348" count="1" value="18" id="607053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 backward  module  1 backward    Id 478447348 " fill="rgb(255,220,0)" points="106.575,1948.31 95.7732,1956.35 101.838,1958.94 111.491,1950.41 " />
<svg:polygon detid="478414564" count="1" value="18" id="607054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 forward    Id 478414564 " fill="rgb(255,220,0)" points="113.214,1951.09 103.517,1959.6 109.91,1961.9 118.395,1952.96 " />
<svg:polygon detid="478414568" count="1" value="18" id="607055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  2 forward    Id 478414568 " fill="rgb(255,220,0)" points="120.203,1953.55 111.671,1962.48 118.351,1964.48 125.618,1955.17 " />
<svg:polygon detid="478414572" count="1" value="18" id="607056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  3 forward    Id 478414572 " fill="rgb(255,220,0)" points="127.5,1955.69 120.185,1964.98 127.112,1966.67 133.114,1957.05 " />
<svg:polygon detid="478414576" count="1" value="18" id="607057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  0 backward    Id 478414576 " fill="rgb(255,220,0)" points="135.058,1957.48 129.006,1967.08 136.136,1968.44 140.837,1958.58 " />
<svg:polygon detid="478414580" count="1" value="18" id="607058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 6 forward  module  1 backward    Id 478414580 " fill="rgb(255,220,0)" points="142.832,1958.91 138.08,1968.77 145.369,1969.79 148.741,1959.75 " />
<svg:polygon detid="478447588" count="1" value="18" id="607059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 forward    Id 478447588 " fill="rgb(255,220,0)" points="150.773,1959.98 147.35,1970.03 154.755,1970.72 156.775,1960.54 " />
<svg:polygon detid="478447592" count="1" value="18" id="607060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  2 forward    Id 478447592 " fill="rgb(255,220,0)" points="158.833,1960.69 156.76,1970.86 164.234,1971.2 164.891,1960.97 " />
<svg:polygon detid="478447596" count="1" value="18" id="607061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  3 forward    Id 478447596 " fill="rgb(255,220,0)" points="166.962,1961.01 166.251,1971.25 173.749,1971.25 173.038,1961.01 " />
<svg:polygon detid="478447600" count="1" value="18" id="607062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  0 backward    Id 478447600 " fill="rgb(255,220,0)" points="175.109,1960.97 175.766,1971.2 183.24,1970.86 181.167,1960.69 " />
<svg:polygon detid="478447604" count="1" value="18" id="607063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 backward  module  1 backward    Id 478447604 " fill="rgb(255,220,0)" points="183.225,1960.54 185.245,1970.72 192.65,1970.03 189.227,1959.98 " />
<svg:polygon detid="478414820" count="1" value="18" id="607064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 forward    Id 478414820 " fill="rgb(255,220,0)" points="191.259,1959.75 194.631,1969.79 201.92,1968.77 197.168,1958.91 " />
<svg:polygon detid="478414824" count="1" value="18" id="607065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  2 forward    Id 478414824 " fill="rgb(255,220,0)" points="199.163,1958.58 203.864,1968.44 210.994,1967.08 204.942,1957.48 " />
<svg:polygon detid="478414828" count="1" value="18" id="607066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  3 forward    Id 478414828 " fill="rgb(255,220,0)" points="206.886,1957.05 212.888,1966.67 219.815,1964.98 212.5,1955.69 " />
<svg:polygon detid="478414832" count="1" value="18" id="607067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  0 backward    Id 478414832 " fill="rgb(255,220,0)" points="214.382,1955.17 221.649,1964.48 228.329,1962.48 219.797,1953.55 " />
<svg:polygon detid="478414836" count="1" value="18" id="607068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 7 forward  module  1 backward    Id 478414836 " fill="rgb(255,220,0)" points="221.605,1952.96 230.09,1961.9 236.483,1959.6 226.786,1951.09 " />
<svg:polygon detid="478447844" count="1" value="18" id="607069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 forward    Id 478447844 " fill="rgb(255,220,0)" points="228.509,1950.41 238.162,1958.94 244.227,1956.35 233.425,1948.31 " />
<svg:polygon detid="478447848" count="1" value="18" id="607070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  2 forward    Id 478447848 " fill="rgb(255,220,0)" points="235.052,1947.56 245.813,1955.61 251.513,1952.75 239.673,1945.23 " />
<svg:polygon detid="478447852" count="1" value="18" id="607071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  3 forward    Id 478447852 " fill="rgb(255,220,0)" points="241.195,1944.41 252.996,1951.94 258.297,1948.82 245.492,1941.88 " />
<svg:polygon detid="478447856" count="1" value="18" id="607072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  0 backward    Id 478447856 " fill="rgb(255,220,0)" points="246.899,1940.98 259.668,1947.95 264.537,1944.6 250.845,1938.27 " />
<svg:polygon detid="478447860" count="1" value="18" id="607073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 backward  module  1 backward    Id 478447860 " fill="rgb(255,220,0)" points="252.128,1937.31 265.787,1943.66 270.194,1940.1 255.7,1934.42 " />
<svg:polygon detid="478415076" count="1" value="18" id="607074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 forward    Id 478415076 " fill="rgb(255,220,0)" points="256.851,1933.4 271.315,1939.11 275.233,1935.35 260.026,1930.36 " />
<svg:polygon detid="478415080" count="1" value="18" id="607075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  2 forward    Id 478415080 " fill="rgb(255,220,0)" points="261.039,1929.29 276.219,1934.31 279.623,1930.38 263.797,1926.11 " />
<svg:polygon detid="478415084" count="1" value="18" id="607076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  3 forward    Id 478415084 " fill="rgb(255,220,0)" points="264.665,1925 280.468,1929.3 283.337,1925.23 266.99,1921.7 " />
<svg:polygon detid="478415088" count="1" value="18" id="607077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  0 backward    Id 478415088 " fill="rgb(255,220,0)" points="267.708,1920.55 284.036,1924.11 286.353,1919.92 269.586,1917.15 " />
<svg:polygon detid="478415092" count="1" value="18" id="607078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 8 forward  module  1 backward    Id 478415092 " fill="rgb(255,220,0)" points="270.148,1915.98 286.901,1918.78 288.651,1914.49 271.567,1912.51 " />
<svg:polygon detid="478446068" count="1" value="18" id="607079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  1 backward    Id 478446068 " fill="rgb(255,220,0)" points="271.971,1911.31 289.045,1913.32 290.218,1908.97 272.921,1907.78 " />
<svg:polygon detid="478446056" count="1" value="18" id="607080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 4 ring 0 petal 1 backward  module  2 forward    Id 478446056 " fill="rgb(255,220,0)" points="273.165,1906.57 290.455,1907.79 291.043,1903.39 273.642,1903.01 " />
<svg:polygon detid="478380330" count="1" value="21" id="701001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380330 " fill="rgb(255,214,0)" points="204.311,1695.19 197.269,1696.32 197.958,1699.4 " />
<svg:polygon detid="478347558" count="1" value="21" id="701002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347558 " fill="rgb(255,214,0)" points="201.024,1690.13 194.722,1692.3 196.742,1695.16 " />
<svg:polygon detid="478380582" count="1" value="21" id="701003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380582 " fill="rgb(255,214,0)" points="195.623,1685.74 190.489,1688.79 193.703,1691.26 " />
<svg:polygon detid="478380586" count="1" value="21" id="701004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380586 " fill="rgb(255,214,0)" points="188.475,1682.33 184.861,1686.06 189.049,1687.95 " />
<svg:polygon detid="478347814" count="1" value="21" id="701005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478347814 " fill="rgb(255,214,0)" points="180.069,1680.11 178.22,1684.27 183.097,1685.46 " />
<svg:polygon detid="478380838" count="1" value="21" id="701006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478380838 " fill="rgb(255,214,0)" points="170.976,1679.26 171.019,1683.55 176.252,1683.96 " />
<svg:polygon detid="478380842" count="1" value="21" id="701007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478380842 " fill="rgb(255,214,0)" points="161.817,1679.82 163.748,1683.96 168.981,1683.55 " />
<svg:polygon detid="478348070" count="1" value="21" id="701008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348070 " fill="rgb(255,214,0)" points="153.216,1681.75 156.903,1685.46 161.78,1684.27 " />
<svg:polygon detid="478381094" count="1" value="21" id="701009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381094 " fill="rgb(255,214,0)" points="145.758,1684.93 150.951,1687.95 155.139,1686.06 " />
<svg:polygon detid="478381098" count="1" value="21" id="701010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381098 " fill="rgb(255,214,0)" points="139.953,1689.13 146.297,1691.26 149.511,1688.79 " />
<svg:polygon detid="478348326" count="1" value="21" id="701011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348326 " fill="rgb(255,214,0)" points="136.195,1694.08 143.258,1695.16 145.278,1692.3 " />
<svg:polygon detid="478381350" count="1" value="21" id="701012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381350 " fill="rgb(255,214,0)" points="134.741,1699.43 142.042,1699.4 142.731,1696.32 " />
<svg:polygon detid="478381354" count="1" value="21" id="701013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381354 " fill="rgb(255,214,0)" points="135.689,1704.81 142.731,1703.68 142.042,1700.6 " />
<svg:polygon detid="478348582" count="1" value="21" id="701014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348582 " fill="rgb(255,214,0)" points="138.976,1709.87 145.278,1707.7 143.258,1704.84 " />
<svg:polygon detid="478381606" count="1" value="21" id="701015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381606 " fill="rgb(255,214,0)" points="144.377,1714.26 149.511,1711.21 146.297,1708.74 " />
<svg:polygon detid="478381610" count="1" value="21" id="701016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381610 " fill="rgb(255,214,0)" points="151.525,1717.67 155.139,1713.94 150.951,1712.05 " />
<svg:polygon detid="478348838" count="1" value="21" id="701017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478348838 " fill="rgb(255,214,0)" points="159.931,1719.89 161.78,1715.73 156.903,1714.54 " />
<svg:polygon detid="478381862" count="1" value="21" id="701018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478381862 " fill="rgb(255,214,0)" points="169.024,1720.74 168.981,1716.45 163.748,1716.04 " />
<svg:polygon detid="478381866" count="1" value="21" id="701019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478381866 " fill="rgb(255,214,0)" points="178.183,1720.18 176.252,1716.04 171.019,1716.45 " />
<svg:polygon detid="478349094" count="1" value="21" id="701020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349094 " fill="rgb(255,214,0)" points="186.784,1718.25 183.097,1714.54 178.22,1715.73 " />
<svg:polygon detid="478382118" count="1" value="21" id="701021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382118 " fill="rgb(255,214,0)" points="194.242,1715.07 189.049,1712.05 184.861,1713.94 " />
<svg:polygon detid="478382122" count="1" value="21" id="701022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382122 " fill="rgb(255,214,0)" points="200.047,1710.87 193.703,1708.74 190.489,1711.21 " />
<svg:polygon detid="478349350" count="1" value="21" id="701023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349350 " fill="rgb(255,214,0)" points="203.805,1705.92 196.742,1704.84 194.722,1707.7 " />
<svg:polygon detid="478380326" count="1" value="21" id="701024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380326 " fill="rgb(255,214,0)" points="205.259,1700.57 197.958,1700.6 197.269,1703.68 " />
<svg:polygon detid="478380329" count="1" value="21" id="701101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward   stereo Id 478380329 " fill="rgb(255,214,0)" points="197.958,1699.4 205.259,1699.43 204.311,1695.19 " />
<svg:polygon detid="478347557" count="1" value="21" id="701102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward   stereo Id 478347557 " fill="rgb(255,214,0)" points="196.742,1695.16 203.805,1694.08 201.024,1690.13 " />
<svg:polygon detid="478380581" count="1" value="21" id="701103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward   stereo Id 478380581 " fill="rgb(255,214,0)" points="193.703,1691.26 200.047,1689.13 195.623,1685.74 " />
<svg:polygon detid="478380585" count="1" value="21" id="701104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward   stereo Id 478380585 " fill="rgb(255,214,0)" points="189.049,1687.95 194.242,1684.93 188.475,1682.33 " />
<svg:polygon detid="478347813" count="1" value="21" id="701105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward   stereo Id 478347813 " fill="rgb(255,214,0)" points="183.097,1685.46 186.784,1681.75 180.069,1680.11 " />
<svg:polygon detid="478380837" count="1" value="21" id="701106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward   stereo Id 478380837 " fill="rgb(255,214,0)" points="176.252,1683.96 178.183,1679.82 170.976,1679.26 " />
<svg:polygon detid="478380841" count="1" value="21" id="701107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward   stereo Id 478380841 " fill="rgb(255,214,0)" points="168.981,1683.55 169.024,1679.26 161.817,1679.82 " />
<svg:polygon detid="478348069" count="1" value="21" id="701108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward   stereo Id 478348069 " fill="rgb(255,214,0)" points="161.78,1684.27 159.931,1680.11 153.216,1681.75 " />
<svg:polygon detid="478381093" count="1" value="21" id="701109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward   stereo Id 478381093 " fill="rgb(255,214,0)" points="155.139,1686.06 151.525,1682.33 145.758,1684.93 " />
<svg:polygon detid="478381097" count="1" value="21" id="701110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward   stereo Id 478381097 " fill="rgb(255,214,0)" points="149.511,1688.79 144.377,1685.74 139.953,1689.13 " />
<svg:polygon detid="478348325" count="1" value="21" id="701111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward   stereo Id 478348325 " fill="rgb(255,214,0)" points="145.278,1692.3 138.976,1690.13 136.195,1694.08 " />
<svg:polygon detid="478381349" count="1" value="21" id="701112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward   stereo Id 478381349 " fill="rgb(255,214,0)" points="142.731,1696.32 135.689,1695.19 134.741,1699.43 " />
<svg:polygon detid="478381353" count="1" value="21" id="701113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward   stereo Id 478381353 " fill="rgb(255,214,0)" points="142.042,1700.6 134.741,1700.57 135.689,1704.81 " />
<svg:polygon detid="478348581" count="1" value="21" id="701114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward   stereo Id 478348581 " fill="rgb(255,214,0)" points="143.258,1704.84 136.195,1705.92 138.976,1709.87 " />
<svg:polygon detid="478381605" count="1" value="21" id="701115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward   stereo Id 478381605 " fill="rgb(255,214,0)" points="146.297,1708.74 139.953,1710.87 144.377,1714.26 " />
<svg:polygon detid="478381609" count="1" value="21" id="701116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward   stereo Id 478381609 " fill="rgb(255,214,0)" points="150.951,1712.05 145.758,1715.07 151.525,1717.67 " />
<svg:polygon detid="478348837" count="1" value="21" id="701117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward   stereo Id 478348837 " fill="rgb(255,214,0)" points="156.903,1714.54 153.216,1718.25 159.931,1719.89 " />
<svg:polygon detid="478381861" count="1" value="21" id="701118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward   stereo Id 478381861 " fill="rgb(255,214,0)" points="163.748,1716.04 161.817,1720.18 169.024,1720.74 " />
<svg:polygon detid="478381865" count="1" value="21" id="701119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward   stereo Id 478381865 " fill="rgb(255,214,0)" points="171.019,1716.45 170.976,1720.74 178.183,1720.18 " />
<svg:polygon detid="478349093" count="1" value="21" id="701120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward   stereo Id 478349093 " fill="rgb(255,214,0)" points="178.22,1715.73 180.069,1719.89 186.784,1718.25 " />
<svg:polygon detid="478382117" count="1" value="21" id="701121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward   stereo Id 478382117 " fill="rgb(255,214,0)" points="184.861,1713.94 188.475,1717.67 194.242,1715.07 " />
<svg:polygon detid="478382121" count="1" value="21" id="701122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward   stereo Id 478382121 " fill="rgb(255,214,0)" points="190.489,1711.21 195.623,1714.26 200.047,1710.87 " />
<svg:polygon detid="478349349" count="1" value="21" id="701123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward   stereo Id 478349349 " fill="rgb(255,214,0)" points="194.722,1707.7 201.024,1709.87 203.805,1705.92 " />
<svg:polygon detid="478380325" count="1" value="21" id="701124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward   stereo Id 478380325 " fill="rgb(255,214,0)" points="197.269,1703.68 204.311,1704.81 205.259,1700.57 " />
<svg:polygon detid="478380362" count="1" value="21" id="702001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380362 " fill="rgb(255,214,0)" points="214.347,1693.78 207.056,1694.96 208.013,1699.23 " />
<svg:polygon detid="478347590" count="1" value="21" id="702002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347590 " fill="rgb(255,214,0)" points="210.1,1687.24 203.575,1689.49 206.379,1693.47 " />
<svg:polygon detid="478380614" count="1" value="21" id="702003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380614 " fill="rgb(255,214,0)" points="203.12,1681.57 197.805,1684.73 202.265,1688.15 " />
<svg:polygon detid="478380618" count="1" value="21" id="702004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380618 " fill="rgb(255,214,0)" points="193.883,1677.16 190.14,1681.02 195.953,1683.64 " />
<svg:polygon detid="478347846" count="1" value="21" id="702005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478347846 " fill="rgb(255,214,0)" points="183.019,1674.3 181.103,1678.6 187.872,1680.25 " />
<svg:polygon detid="478380870" count="1" value="21" id="702006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478380870 " fill="rgb(255,214,0)" points="171.267,1673.19 171.309,1677.64 178.574,1678.2 " />
<svg:polygon detid="478380874" count="1" value="21" id="702007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478380874 " fill="rgb(255,214,0)" points="159.429,1673.91 161.426,1678.2 168.691,1677.64 " />
<svg:polygon detid="478348102" count="1" value="21" id="702008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348102 " fill="rgb(255,214,0)" points="148.312,1676.41 152.128,1680.25 158.897,1678.6 " />
<svg:polygon detid="478381126" count="1" value="21" id="702009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381126 " fill="rgb(255,214,0)" points="138.672,1680.52 144.047,1683.64 149.86,1681.02 " />
<svg:polygon detid="478381130" count="1" value="21" id="702010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381130 " fill="rgb(255,214,0)" points="131.168,1685.95 137.735,1688.15 142.195,1684.73 " />
<svg:polygon detid="478348358" count="1" value="21" id="702011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348358 " fill="rgb(255,214,0)" points="126.309,1692.34 133.621,1693.47 136.425,1689.49 " />
<svg:polygon detid="478381382" count="1" value="21" id="702012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381382 " fill="rgb(255,214,0)" points="124.429,1699.25 131.987,1699.23 132.944,1694.96 " />
<svg:polygon detid="478381386" count="1" value="21" id="702013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381386 " fill="rgb(255,214,0)" points="125.653,1706.22 132.944,1705.04 131.987,1700.77 " />
<svg:polygon detid="478348614" count="1" value="21" id="702014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348614 " fill="rgb(255,214,0)" points="129.9,1712.76 136.425,1710.51 133.621,1706.53 " />
<svg:polygon detid="478381638" count="1" value="21" id="702015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381638 " fill="rgb(255,214,0)" points="136.88,1718.43 142.195,1715.27 137.735,1711.85 " />
<svg:polygon detid="478381642" count="1" value="21" id="702016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381642 " fill="rgb(255,214,0)" points="146.117,1722.84 149.86,1718.98 144.047,1716.36 " />
<svg:polygon detid="478348870" count="1" value="21" id="702017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478348870 " fill="rgb(255,214,0)" points="156.981,1725.7 158.897,1721.4 152.128,1719.75 " />
<svg:polygon detid="478381894" count="1" value="21" id="702018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478381894 " fill="rgb(255,214,0)" points="168.733,1726.81 168.691,1722.36 161.426,1721.8 " />
<svg:polygon detid="478381898" count="1" value="21" id="702019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478381898 " fill="rgb(255,214,0)" points="180.571,1726.09 178.574,1721.8 171.309,1722.36 " />
<svg:polygon detid="478349126" count="1" value="21" id="702020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349126 " fill="rgb(255,214,0)" points="191.688,1723.59 187.872,1719.75 181.103,1721.4 " />
<svg:polygon detid="478382150" count="1" value="21" id="702021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382150 " fill="rgb(255,214,0)" points="201.328,1719.48 195.953,1716.36 190.14,1718.98 " />
<svg:polygon detid="478382154" count="1" value="21" id="702022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382154 " fill="rgb(255,214,0)" points="208.832,1714.05 202.265,1711.85 197.805,1715.27 " />
<svg:polygon detid="478349382" count="1" value="21" id="702023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349382 " fill="rgb(255,214,0)" points="213.691,1707.66 206.379,1706.53 203.575,1710.51 " />
<svg:polygon detid="478380358" count="1" value="21" id="702024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380358 " fill="rgb(255,214,0)" points="215.571,1700.75 208.013,1700.77 207.056,1705.04 " />
<svg:polygon detid="478380361" count="1" value="21" id="702101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward   stereo Id 478380361 " fill="rgb(255,214,0)" points="208.013,1699.23 215.571,1699.25 214.347,1693.78 " />
<svg:polygon detid="478347589" count="1" value="21" id="702102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward   stereo Id 478347589 " fill="rgb(255,214,0)" points="206.379,1693.47 213.691,1692.34 210.1,1687.24 " />
<svg:polygon detid="478380613" count="1" value="21" id="702103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward   stereo Id 478380613 " fill="rgb(255,214,0)" points="202.265,1688.15 208.832,1685.95 203.12,1681.57 " />
<svg:polygon detid="478380617" count="1" value="21" id="702104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward   stereo Id 478380617 " fill="rgb(255,214,0)" points="195.953,1683.64 201.328,1680.52 193.883,1677.16 " />
<svg:polygon detid="478347845" count="1" value="21" id="702105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward   stereo Id 478347845 " fill="rgb(255,214,0)" points="187.872,1680.25 191.688,1676.41 183.019,1674.3 " />
<svg:polygon detid="478380869" count="1" value="21" id="702106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward   stereo Id 478380869 " fill="rgb(255,214,0)" points="178.574,1678.2 180.571,1673.91 171.267,1673.19 " />
<svg:polygon detid="478380873" count="1" value="21" id="702107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward   stereo Id 478380873 " fill="rgb(255,214,0)" points="168.691,1677.64 168.733,1673.19 159.429,1673.91 " />
<svg:polygon detid="478348101" count="1" value="21" id="702108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward   stereo Id 478348101 " fill="rgb(255,214,0)" points="158.897,1678.6 156.981,1674.3 148.312,1676.41 " />
<svg:polygon detid="478381125" count="1" value="21" id="702109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward   stereo Id 478381125 " fill="rgb(255,214,0)" points="149.86,1681.02 146.117,1677.16 138.672,1680.52 " />
<svg:polygon detid="478381129" count="1" value="21" id="702110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward   stereo Id 478381129 " fill="rgb(255,214,0)" points="142.195,1684.73 136.88,1681.57 131.168,1685.95 " />
<svg:polygon detid="478348357" count="1" value="21" id="702111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward   stereo Id 478348357 " fill="rgb(255,214,0)" points="136.425,1689.49 129.9,1687.24 126.309,1692.34 " />
<svg:polygon detid="478381381" count="1" value="21" id="702112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward   stereo Id 478381381 " fill="rgb(255,214,0)" points="132.944,1694.96 125.653,1693.78 124.429,1699.25 " />
<svg:polygon detid="478381385" count="1" value="21" id="702113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward   stereo Id 478381385 " fill="rgb(255,214,0)" points="131.987,1700.77 124.429,1700.75 125.653,1706.22 " />
<svg:polygon detid="478348613" count="1" value="21" id="702114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward   stereo Id 478348613 " fill="rgb(255,214,0)" points="133.621,1706.53 126.309,1707.66 129.9,1712.76 " />
<svg:polygon detid="478381637" count="1" value="21" id="702115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward   stereo Id 478381637 " fill="rgb(255,214,0)" points="137.735,1711.85 131.168,1714.05 136.88,1718.43 " />
<svg:polygon detid="478381641" count="1" value="21" id="702116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward   stereo Id 478381641 " fill="rgb(255,214,0)" points="144.047,1716.36 138.672,1719.48 146.117,1722.84 " />
<svg:polygon detid="478348869" count="1" value="21" id="702117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward   stereo Id 478348869 " fill="rgb(255,214,0)" points="152.128,1719.75 148.312,1723.59 156.981,1725.7 " />
<svg:polygon detid="478381893" count="1" value="21" id="702118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward   stereo Id 478381893 " fill="rgb(255,214,0)" points="161.426,1721.8 159.429,1726.09 168.733,1726.81 " />
<svg:polygon detid="478381897" count="1" value="21" id="702119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward   stereo Id 478381897 " fill="rgb(255,214,0)" points="171.309,1722.36 171.267,1726.81 180.571,1726.09 " />
<svg:polygon detid="478349125" count="1" value="21" id="702120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward   stereo Id 478349125 " fill="rgb(255,214,0)" points="181.103,1721.4 183.019,1725.7 191.688,1723.59 " />
<svg:polygon detid="478382149" count="1" value="21" id="702121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward   stereo Id 478382149 " fill="rgb(255,214,0)" points="190.14,1718.98 193.883,1722.84 201.328,1719.48 " />
<svg:polygon detid="478382153" count="1" value="21" id="702122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward   stereo Id 478382153 " fill="rgb(255,214,0)" points="197.805,1715.27 203.12,1718.43 208.832,1714.05 " />
<svg:polygon detid="478349381" count="1" value="21" id="702123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward   stereo Id 478349381 " fill="rgb(255,214,0)" points="203.575,1710.51 210.1,1712.76 213.691,1707.66 " />
<svg:polygon detid="478380357" count="1" value="21" id="702124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward   stereo Id 478380357 " fill="rgb(255,214,0)" points="207.056,1705.04 214.347,1706.22 215.571,1700.75 " />
<svg:polygon detid="478380388" count="1" value="21" id="703001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380388 " fill="rgb(255,214,0)" points="216.008,1701.57 225.409,1702.03 225.409,1697.97 216.008,1698.43 " />
<svg:polygon detid="478380392" count="1" value="21" id="703002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380392 " fill="rgb(255,214,0)" points="215.861,1697.32 225.267,1696.91 224.187,1692.9 215.023,1694.21 " />
<svg:polygon detid="478347620" count="1" value="21" id="703003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347620 " fill="rgb(255,214,0)" points="214.584,1693.13 223.764,1691.86 221.631,1688 212.929,1690.14 " />
<svg:polygon detid="478347624" count="1" value="21" id="703004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  2 forward    Id 478347624 " fill="rgb(255,214,0)" points="212.209,1689.12 220.937,1687.01 217.803,1683.39 209.778,1686.31 " />
<svg:polygon detid="478380644" count="1" value="21" id="703005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380644 " fill="rgb(255,214,0)" points="208.795,1685.37 216.856,1682.48 212.799,1679.2 205.648,1682.82 " />
<svg:polygon detid="478380648" count="1" value="21" id="703006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380648 " fill="rgb(255,214,0)" points="204.426,1681.98 211.621,1678.39 206.74,1675.52 200.64,1679.75 " />
<svg:polygon detid="478380652" count="1" value="21" id="703007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  3 forward    Id 478380652 " fill="rgb(255,214,0)" points="199.209,1679.03 205.361,1674.82 199.777,1672.44 194.877,1677.18 " />
<svg:polygon detid="478347876" count="1" value="21" id="703008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478347876 " fill="rgb(255,214,0)" points="193.273,1676.6 198.23,1671.88 192.081,1670.04 188.502,1675.17 " />
<svg:polygon detid="478347880" count="1" value="21" id="703009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  2 forward    Id 478347880 " fill="rgb(255,214,0)" points="186.764,1674.75 190.405,1669.63 183.84,1668.37 181.671,1673.77 " />
<svg:polygon detid="478380900" count="1" value="21" id="703010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478380900 " fill="rgb(255,214,0)" points="179.842,1673.52 182.076,1668.13 175.259,1667.49 174.553,1673.02 " />
<svg:polygon detid="478380904" count="1" value="21" id="703011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478380904 " fill="rgb(255,214,0)" points="172.677,1672.94 173.451,1667.41 166.549,1667.41 167.323,1672.94 " />
<svg:polygon detid="478380908" count="1" value="21" id="703012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  3 forward    Id 478380908 " fill="rgb(255,214,0)" points="165.447,1673.02 164.741,1667.49 157.924,1668.13 160.158,1673.52 " />
<svg:polygon detid="478348132" count="1" value="21" id="703013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348132 " fill="rgb(255,214,0)" points="158.329,1673.77 156.16,1668.37 149.595,1669.63 153.236,1674.75 " />
<svg:polygon detid="478348136" count="1" value="21" id="703014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  2 forward    Id 478348136 " fill="rgb(255,214,0)" points="151.498,1675.17 147.919,1670.04 141.77,1671.88 146.727,1676.6 " />
<svg:polygon detid="478381156" count="1" value="21" id="703015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381156 " fill="rgb(255,214,0)" points="145.123,1677.18 140.223,1672.44 134.639,1674.82 140.791,1679.03 " />
<svg:polygon detid="478381160" count="1" value="21" id="703016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381160 " fill="rgb(255,214,0)" points="139.36,1679.75 133.26,1675.52 128.379,1678.39 135.574,1681.98 " />
<svg:polygon detid="478381164" count="1" value="21" id="703017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  3 forward    Id 478381164 " fill="rgb(255,214,0)" points="134.352,1682.82 127.201,1679.2 123.144,1682.48 131.205,1685.37 " />
<svg:polygon detid="478348388" count="1" value="21" id="703018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348388 " fill="rgb(255,214,0)" points="130.222,1686.31 122.197,1683.39 119.063,1687.01 127.791,1689.12 " />
<svg:polygon detid="478348392" count="1" value="21" id="703019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  2 forward    Id 478348392 " fill="rgb(255,214,0)" points="127.071,1690.14 118.369,1688 116.236,1691.86 125.416,1693.13 " />
<svg:polygon detid="478381412" count="1" value="21" id="703020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381412 " fill="rgb(255,214,0)" points="124.977,1694.21 115.813,1692.9 114.733,1696.91 124.139,1697.32 " />
<svg:polygon detid="478381416" count="1" value="21" id="703021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381416 " fill="rgb(255,214,0)" points="123.992,1698.43 114.591,1697.97 114.591,1702.03 123.992,1701.57 " />
<svg:polygon detid="478381420" count="1" value="21" id="703022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  3 forward    Id 478381420 " fill="rgb(255,214,0)" points="124.139,1702.68 114.733,1703.09 115.813,1707.1 124.977,1705.79 " />
<svg:polygon detid="478348644" count="1" value="21" id="703023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348644 " fill="rgb(255,214,0)" points="125.416,1706.87 116.236,1708.14 118.369,1712 127.071,1709.86 " />
<svg:polygon detid="478348648" count="1" value="21" id="703024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  2 forward    Id 478348648 " fill="rgb(255,214,0)" points="127.791,1710.88 119.063,1712.99 122.197,1716.61 130.222,1713.69 " />
<svg:polygon detid="478381668" count="1" value="21" id="703025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381668 " fill="rgb(255,214,0)" points="131.205,1714.63 123.144,1717.52 127.201,1720.8 134.352,1717.18 " />
<svg:polygon detid="478381672" count="1" value="21" id="703026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381672 " fill="rgb(255,214,0)" points="135.574,1718.02 128.379,1721.61 133.26,1724.48 139.36,1720.25 " />
<svg:polygon detid="478381676" count="1" value="21" id="703027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  3 forward    Id 478381676 " fill="rgb(255,214,0)" points="140.791,1720.97 134.639,1725.18 140.223,1727.56 145.123,1722.82 " />
<svg:polygon detid="478348900" count="1" value="21" id="703028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478348900 " fill="rgb(255,214,0)" points="146.727,1723.4 141.77,1728.12 147.919,1729.96 151.498,1724.83 " />
<svg:polygon detid="478348904" count="1" value="21" id="703029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  2 forward    Id 478348904 " fill="rgb(255,214,0)" points="153.236,1725.25 149.595,1730.37 156.16,1731.63 158.329,1726.23 " />
<svg:polygon detid="478381924" count="1" value="21" id="703030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478381924 " fill="rgb(255,214,0)" points="160.158,1726.48 157.924,1731.87 164.741,1732.51 165.447,1726.98 " />
<svg:polygon detid="478381928" count="1" value="21" id="703031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478381928 " fill="rgb(255,214,0)" points="167.323,1727.06 166.549,1732.59 173.451,1732.59 172.677,1727.06 " />
<svg:polygon detid="478381932" count="1" value="21" id="703032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  3 forward    Id 478381932 " fill="rgb(255,214,0)" points="174.553,1726.98 175.259,1732.51 182.076,1731.87 179.842,1726.48 " />
<svg:polygon detid="478349156" count="1" value="21" id="703033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349156 " fill="rgb(255,214,0)" points="181.671,1726.23 183.84,1731.63 190.405,1730.37 186.764,1725.25 " />
<svg:polygon detid="478349160" count="1" value="21" id="703034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  2 forward    Id 478349160 " fill="rgb(255,214,0)" points="188.502,1724.83 192.081,1729.96 198.23,1728.12 193.273,1723.4 " />
<svg:polygon detid="478382180" count="1" value="21" id="703035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382180 " fill="rgb(255,214,0)" points="194.877,1722.82 199.777,1727.56 205.361,1725.18 199.209,1720.97 " />
<svg:polygon detid="478382184" count="1" value="21" id="703036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382184 " fill="rgb(255,214,0)" points="200.64,1720.25 206.74,1724.48 211.621,1721.61 204.426,1718.02 " />
<svg:polygon detid="478382188" count="1" value="21" id="703037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  3 forward    Id 478382188 " fill="rgb(255,214,0)" points="205.648,1717.18 212.799,1720.8 216.856,1717.52 208.795,1714.63 " />
<svg:polygon detid="478349412" count="1" value="21" id="703038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349412 " fill="rgb(255,214,0)" points="209.778,1713.69 217.803,1716.61 220.937,1712.99 212.209,1710.88 " />
<svg:polygon detid="478349416" count="1" value="21" id="703039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  2 forward    Id 478349416 " fill="rgb(255,214,0)" points="212.929,1709.86 221.631,1712 223.764,1708.14 214.584,1706.87 " />
<svg:polygon detid="478380396" count="1" value="21" id="703040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  3 forward    Id 478380396 " fill="rgb(255,214,0)" points="215.023,1705.79 224.187,1707.1 225.267,1703.09 215.861,1702.68 " />
<svg:polygon detid="478380424" count="1" value="21" id="704001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380424 " fill="rgb(255,214,0)" points="228.822,1699.51 238.623,1699.52 238.282,1695.96 228.546,1696.62 " />
<svg:polygon detid="478380428" count="1" value="21" id="704002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  3 forward    Id 478380428 " fill="rgb(255,214,0)" points="228.359,1695.64 238.1,1695 237.083,1691.48 227.534,1692.78 " />
<svg:polygon detid="478347652" count="1" value="21" id="704003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347652 " fill="rgb(255,214,0)" points="227.161,1691.82 236.721,1690.55 235.041,1687.12 225.798,1689.04 " />
<svg:polygon detid="478347656" count="1" value="21" id="704004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  2 forward    Id 478347656 " fill="rgb(255,214,0)" points="225.244,1688.11 234.503,1686.22 232.18,1682.92 223.361,1685.43 " />
<svg:polygon detid="478347660" count="1" value="21" id="704005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  3 forward    Id 478347660 " fill="rgb(255,214,0)" points="222.633,1684.54 231.473,1682.05 228.538,1678.93 220.253,1682.01 " />
<svg:polygon detid="478380676" count="1" value="21" id="704006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380676 " fill="rgb(255,214,0)" points="219.36,1681.17 227.671,1678.12 224.159,1675.21 216.512,1678.81 " />
<svg:polygon detid="478380680" count="1" value="21" id="704007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380680 " fill="rgb(255,214,0)" points="215.466,1678.04 223.143,1674.46 219.099,1671.8 212.187,1675.88 " />
<svg:polygon detid="478380684" count="1" value="21" id="704008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  3 forward    Id 478380684 " fill="rgb(255,214,0)" points="211.001,1675.18 217.948,1671.12 213.422,1668.74 207.331,1673.26 " />
<svg:polygon detid="478380688" count="1" value="21" id="704009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  0 backward    Id 478380688 " fill="rgb(255,214,0)" points="206.019,1672.64 212.149,1668.14 207.199,1666.08 202.006,1670.96 " />
<svg:polygon detid="478347908" count="1" value="21" id="704010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478347908 " fill="rgb(255,214,0)" points="200.585,1670.44 205.82,1665.57 200.508,1663.84 196.278,1669.04 " />
<svg:polygon detid="478347912" count="1" value="21" id="704011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  2 forward    Id 478347912 " fill="rgb(255,214,0)" points="194.766,1668.61 199.04,1663.42 193.433,1662.06 190.219,1667.5 " />
<svg:polygon detid="478347916" count="1" value="21" id="704012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  3 forward    Id 478347916 " fill="rgb(255,214,0)" points="188.636,1667.18 191.896,1661.74 186.064,1660.75 183.907,1666.38 " />
<svg:polygon detid="478380932" count="1" value="21" id="704013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478380932 " fill="rgb(255,214,0)" points="182.271,1666.16 184.476,1660.54 178.493,1659.94 177.419,1665.67 " />
<svg:polygon detid="478380936" count="1" value="21" id="704014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478380936 " fill="rgb(255,214,0)" points="175.753,1665.56 176.874,1659.83 170.814,1659.63 170.839,1665.4 " />
<svg:polygon detid="478380940" count="1" value="21" id="704015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  3 forward    Id 478380940 " fill="rgb(255,214,0)" points="169.161,1665.4 169.186,1659.63 163.126,1659.83 164.247,1665.56 " />
<svg:polygon detid="478380944" count="1" value="21" id="704016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  0 backward    Id 478380944 " fill="rgb(255,214,0)" points="162.581,1665.67 161.507,1659.94 155.524,1660.54 157.729,1666.16 " />
<svg:polygon detid="478348164" count="1" value="21" id="704017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348164 " fill="rgb(255,214,0)" points="156.093,1666.38 153.936,1660.75 148.104,1661.74 151.364,1667.18 " />
<svg:polygon detid="478348168" count="1" value="21" id="704018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  2 forward    Id 478348168 " fill="rgb(255,214,0)" points="149.781,1667.5 146.567,1662.06 140.96,1663.42 145.234,1668.61 " />
<svg:polygon detid="478348172" count="1" value="21" id="704019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  3 forward    Id 478348172 " fill="rgb(255,214,0)" points="143.722,1669.04 139.492,1663.84 134.18,1665.57 139.415,1670.44 " />
<svg:polygon detid="478381188" count="1" value="21" id="704020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381188 " fill="rgb(255,214,0)" points="137.994,1670.96 132.801,1666.08 127.851,1668.14 133.981,1672.64 " />
<svg:polygon detid="478381192" count="1" value="21" id="704021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381192 " fill="rgb(255,214,0)" points="132.669,1673.26 126.578,1668.74 122.052,1671.12 128.999,1675.18 " />
<svg:polygon detid="478381196" count="1" value="21" id="704022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  3 forward    Id 478381196 " fill="rgb(255,214,0)" points="127.813,1675.88 120.901,1671.8 116.857,1674.46 124.534,1678.04 " />
<svg:polygon detid="478381200" count="1" value="21" id="704023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  0 backward    Id 478381200 " fill="rgb(255,214,0)" points="123.488,1678.81 115.841,1675.21 112.329,1678.12 120.64,1681.17 " />
<svg:polygon detid="478348420" count="1" value="21" id="704024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348420 " fill="rgb(255,214,0)" points="119.747,1682.01 111.462,1678.93 108.527,1682.05 117.367,1684.54 " />
<svg:polygon detid="478348424" count="1" value="21" id="704025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  2 forward    Id 478348424 " fill="rgb(255,214,0)" points="116.639,1685.43 107.82,1682.92 105.497,1686.22 114.756,1688.11 " />
<svg:polygon detid="478348428" count="1" value="21" id="704026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  3 forward    Id 478348428 " fill="rgb(255,214,0)" points="114.202,1689.04 104.959,1687.12 103.279,1690.55 112.839,1691.82 " />
<svg:polygon detid="478381444" count="1" value="21" id="704027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381444 " fill="rgb(255,214,0)" points="112.466,1692.78 102.917,1691.48 101.9,1695 111.641,1695.64 " />
<svg:polygon detid="478381448" count="1" value="21" id="704028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381448 " fill="rgb(255,214,0)" points="111.454,1696.62 101.718,1695.96 101.377,1699.52 111.178,1699.51 " />
<svg:polygon detid="478381452" count="1" value="21" id="704029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  3 forward    Id 478381452 " fill="rgb(255,214,0)" points="111.178,1700.49 101.377,1700.48 101.718,1704.04 111.454,1703.38 " />
<svg:polygon detid="478381456" count="1" value="21" id="704030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  0 backward    Id 478381456 " fill="rgb(255,214,0)" points="111.641,1704.36 101.9,1705 102.917,1708.52 112.466,1707.22 " />
<svg:polygon detid="478348676" count="1" value="21" id="704031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348676 " fill="rgb(255,214,0)" points="112.839,1708.18 103.279,1709.45 104.959,1712.88 114.202,1710.96 " />
<svg:polygon detid="478348680" count="1" value="21" id="704032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  2 forward    Id 478348680 " fill="rgb(255,214,0)" points="114.756,1711.89 105.497,1713.78 107.82,1717.08 116.639,1714.57 " />
<svg:polygon detid="478348684" count="1" value="21" id="704033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  3 forward    Id 478348684 " fill="rgb(255,214,0)" points="117.367,1715.46 108.527,1717.95 111.462,1721.07 119.747,1717.99 " />
<svg:polygon detid="478381700" count="1" value="21" id="704034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381700 " fill="rgb(255,214,0)" points="120.64,1718.83 112.329,1721.88 115.841,1724.79 123.488,1721.19 " />
<svg:polygon detid="478381704" count="1" value="21" id="704035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381704 " fill="rgb(255,214,0)" points="124.534,1721.96 116.857,1725.54 120.901,1728.2 127.813,1724.12 " />
<svg:polygon detid="478381708" count="1" value="21" id="704036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  3 forward    Id 478381708 " fill="rgb(255,214,0)" points="128.999,1724.82 122.052,1728.88 126.578,1731.26 132.669,1726.74 " />
<svg:polygon detid="478381712" count="1" value="21" id="704037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  0 backward    Id 478381712 " fill="rgb(255,214,0)" points="133.981,1727.36 127.851,1731.86 132.801,1733.92 137.994,1729.04 " />
<svg:polygon detid="478348932" count="1" value="21" id="704038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478348932 " fill="rgb(255,214,0)" points="139.415,1729.56 134.18,1734.43 139.492,1736.16 143.722,1730.96 " />
<svg:polygon detid="478348936" count="1" value="21" id="704039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  2 forward    Id 478348936 " fill="rgb(255,214,0)" points="145.234,1731.39 140.96,1736.58 146.567,1737.94 149.781,1732.5 " />
<svg:polygon detid="478348940" count="1" value="21" id="704040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  3 forward    Id 478348940 " fill="rgb(255,214,0)" points="151.364,1732.82 148.104,1738.26 153.936,1739.25 156.093,1733.62 " />
<svg:polygon detid="478381956" count="1" value="21" id="704041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478381956 " fill="rgb(255,214,0)" points="157.729,1733.84 155.524,1739.46 161.507,1740.06 162.581,1734.33 " />
<svg:polygon detid="478381960" count="1" value="21" id="704042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478381960 " fill="rgb(255,214,0)" points="164.247,1734.44 163.126,1740.17 169.186,1740.37 169.161,1734.6 " />
<svg:polygon detid="478381964" count="1" value="21" id="704043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  3 forward    Id 478381964 " fill="rgb(255,214,0)" points="170.839,1734.6 170.814,1740.37 176.874,1740.17 175.753,1734.44 " />
<svg:polygon detid="478381968" count="1" value="21" id="704044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  0 backward    Id 478381968 " fill="rgb(255,214,0)" points="177.419,1734.33 178.493,1740.06 184.476,1739.46 182.271,1733.84 " />
<svg:polygon detid="478349188" count="1" value="21" id="704045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349188 " fill="rgb(255,214,0)" points="183.907,1733.62 186.064,1739.25 191.896,1738.26 188.636,1732.82 " />
<svg:polygon detid="478349192" count="1" value="21" id="704046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  2 forward    Id 478349192 " fill="rgb(255,214,0)" points="190.219,1732.5 193.433,1737.94 199.04,1736.58 194.766,1731.39 " />
<svg:polygon detid="478349196" count="1" value="21" id="704047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  3 forward    Id 478349196 " fill="rgb(255,214,0)" points="196.278,1730.96 200.508,1736.16 205.82,1734.43 200.585,1729.56 " />
<svg:polygon detid="478382212" count="1" value="21" id="704048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382212 " fill="rgb(255,214,0)" points="202.006,1729.04 207.199,1733.92 212.149,1731.86 206.019,1727.36 " />
<svg:polygon detid="478382216" count="1" value="21" id="704049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382216 " fill="rgb(255,214,0)" points="207.331,1726.74 213.422,1731.26 217.948,1728.88 211.001,1724.82 " />
<svg:polygon detid="478382220" count="1" value="21" id="704050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  3 forward    Id 478382220 " fill="rgb(255,214,0)" points="212.187,1724.12 219.099,1728.2 223.143,1725.54 215.466,1721.96 " />
<svg:polygon detid="478382224" count="1" value="21" id="704051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  0 backward    Id 478382224 " fill="rgb(255,214,0)" points="216.512,1721.19 224.159,1724.79 227.671,1721.88 219.36,1718.83 " />
<svg:polygon detid="478349444" count="1" value="21" id="704052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349444 " fill="rgb(255,214,0)" points="220.253,1717.99 228.538,1721.07 231.473,1717.95 222.633,1715.46 " />
<svg:polygon detid="478349448" count="1" value="21" id="704053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  2 forward    Id 478349448 " fill="rgb(255,214,0)" points="223.361,1714.57 232.18,1717.08 234.503,1713.78 225.244,1711.89 " />
<svg:polygon detid="478349452" count="1" value="21" id="704054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  3 forward    Id 478349452 " fill="rgb(255,214,0)" points="225.798,1710.96 235.041,1712.88 236.721,1709.45 227.161,1708.18 " />
<svg:polygon detid="478380432" count="1" value="21" id="704055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  0 backward    Id 478380432 " fill="rgb(255,214,0)" points="227.534,1707.22 237.083,1708.52 238.1,1705 228.359,1704.36 " />
<svg:polygon detid="478380420" count="1" value="21" id="704056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380420 " fill="rgb(255,214,0)" points="228.546,1703.38 238.282,1704.04 238.623,1700.48 228.822,1700.49 " />
<svg:polygon detid="478380454" count="1" value="21" id="705001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380454 " fill="rgb(255,214,0)" points="252.313,1693.17 239.92,1694.35 240.562,1699.15 " />
<svg:polygon detid="478347686" count="1" value="21" id="705002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347686 " fill="rgb(255,214,0)" points="249.484,1685.68 237.556,1687.98 239.467,1692.67 " />
<svg:polygon detid="478347690" count="1" value="21" id="705003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  2 forward    Id 478347690 " fill="rgb(255,214,0)" points="244.698,1678.54 233.528,1681.92 236.661,1686.36 " />
<svg:polygon detid="478347694" count="1" value="21" id="705004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  3 forward    Id 478347694 " fill="rgb(255,214,0)" points="238.072,1671.93 227.937,1676.29 232.214,1680.4 " />
<svg:polygon detid="478380710" count="1" value="21" id="705005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380710 " fill="rgb(255,214,0)" points="229.77,1666.02 220.919,1671.25 226.235,1674.91 " />
<svg:polygon detid="478380714" count="1" value="21" id="705006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380714 " fill="rgb(255,214,0)" points="219.997,1660.93 212.647,1666.92 218.871,1670.05 " />
<svg:polygon detid="478347942" count="1" value="21" id="705007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478347942 " fill="rgb(255,214,0)" points="208.992,1656.81 203.324,1663.4 210.304,1665.92 " />
<svg:polygon detid="478347946" count="1" value="21" id="705008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  2 forward    Id 478347946 " fill="rgb(255,214,0)" points="197.028,1653.76 193.182,1660.79 200.744,1662.63 " />
<svg:polygon detid="478347950" count="1" value="21" id="705009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  3 forward    Id 478347950 " fill="rgb(255,214,0)" points="184.397,1651.84 182.468,1659.14 190.428,1660.26 " />
<svg:polygon detid="478380966" count="1" value="21" id="705010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478380966 " fill="rgb(255,214,0)" points="171.413,1651.11 171.448,1658.49 179.608,1658.87 " />
<svg:polygon detid="478380970" count="1" value="21" id="705011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478380970 " fill="rgb(255,214,0)" points="158.393,1651.58 160.392,1658.87 168.552,1658.49 " />
<svg:polygon detid="478348198" count="1" value="21" id="705012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348198 " fill="rgb(255,214,0)" points="145.66,1653.24 149.572,1660.26 157.532,1659.14 " />
<svg:polygon detid="478348202" count="1" value="21" id="705013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  2 forward    Id 478348202 " fill="rgb(255,214,0)" points="133.525,1656.06 139.256,1662.63 146.818,1660.79 " />
<svg:polygon detid="478348206" count="1" value="21" id="705014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  3 forward    Id 478348206 " fill="rgb(255,214,0)" points="122.289,1659.96 129.696,1665.92 136.676,1663.4 " />
<svg:polygon detid="478381222" count="1" value="21" id="705015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381222 " fill="rgb(255,214,0)" points="112.228,1664.84 121.129,1670.05 127.353,1666.92 " />
<svg:polygon detid="478381226" count="1" value="21" id="705016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381226 " fill="rgb(255,214,0)" points="103.589,1670.59 113.765,1674.91 119.081,1671.25 " />
<svg:polygon detid="478348454" count="1" value="21" id="705017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348454 " fill="rgb(255,214,0)" points="96.5852,1677.06 107.786,1680.4 112.063,1676.29 " />
<svg:polygon detid="478348458" count="1" value="21" id="705018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  2 forward    Id 478348458 " fill="rgb(255,214,0)" points="91.3893,1684.1 103.339,1686.36 106.472,1681.92 " />
<svg:polygon detid="478348462" count="1" value="21" id="705019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  3 forward    Id 478348462 " fill="rgb(255,214,0)" points="88.129,1691.53 100.533,1692.67 102.444,1687.98 " />
<svg:polygon detid="478381478" count="1" value="21" id="705020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381478 " fill="rgb(255,214,0)" points="86.8848,1699.17 99.4383,1699.15 100.08,1694.35 " />
<svg:polygon detid="478381482" count="1" value="21" id="705021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381482 " fill="rgb(255,214,0)" points="87.6871,1706.83 100.08,1705.65 99.4383,1700.85 " />
<svg:polygon detid="478348710" count="1" value="21" id="705022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348710 " fill="rgb(255,214,0)" points="90.5161,1714.32 102.444,1712.02 100.533,1707.33 " />
<svg:polygon detid="478348714" count="1" value="21" id="705023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  2 forward    Id 478348714 " fill="rgb(255,214,0)" points="95.3024,1721.46 106.472,1718.08 103.339,1713.64 " />
<svg:polygon detid="478348718" count="1" value="21" id="705024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  3 forward    Id 478348718 " fill="rgb(255,214,0)" points="101.928,1728.07 112.063,1723.71 107.786,1719.6 " />
<svg:polygon detid="478381734" count="1" value="21" id="705025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381734 " fill="rgb(255,214,0)" points="110.23,1733.98 119.081,1728.75 113.765,1725.09 " />
<svg:polygon detid="478381738" count="1" value="21" id="705026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381738 " fill="rgb(255,214,0)" points="120.003,1739.07 127.353,1733.08 121.129,1729.95 " />
<svg:polygon detid="478348966" count="1" value="21" id="705027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478348966 " fill="rgb(255,214,0)" points="131.008,1743.19 136.676,1736.6 129.696,1734.08 " />
<svg:polygon detid="478348970" count="1" value="21" id="705028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  2 forward    Id 478348970 " fill="rgb(255,214,0)" points="142.972,1746.24 146.818,1739.21 139.256,1737.37 " />
<svg:polygon detid="478348974" count="1" value="21" id="705029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  3 forward    Id 478348974 " fill="rgb(255,214,0)" points="155.603,1748.16 157.532,1740.86 149.572,1739.74 " />
<svg:polygon detid="478381990" count="1" value="21" id="705030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478381990 " fill="rgb(255,214,0)" points="168.587,1748.89 168.552,1741.51 160.392,1741.13 " />
<svg:polygon detid="478381994" count="1" value="21" id="705031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478381994 " fill="rgb(255,214,0)" points="181.607,1748.42 179.608,1741.13 171.448,1741.51 " />
<svg:polygon detid="478349222" count="1" value="21" id="705032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349222 " fill="rgb(255,214,0)" points="194.34,1746.76 190.428,1739.74 182.468,1740.86 " />
<svg:polygon detid="478349226" count="1" value="21" id="705033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  2 forward    Id 478349226 " fill="rgb(255,214,0)" points="206.475,1743.94 200.744,1737.37 193.182,1739.21 " />
<svg:polygon detid="478349230" count="1" value="21" id="705034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  3 forward    Id 478349230 " fill="rgb(255,214,0)" points="217.711,1740.04 210.304,1734.08 203.324,1736.6 " />
<svg:polygon detid="478382246" count="1" value="21" id="705035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382246 " fill="rgb(255,214,0)" points="227.772,1735.16 218.871,1729.95 212.647,1733.08 " />
<svg:polygon detid="478382250" count="1" value="21" id="705036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382250 " fill="rgb(255,214,0)" points="236.411,1729.41 226.235,1725.09 220.919,1728.75 " />
<svg:polygon detid="478349478" count="1" value="21" id="705037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349478 " fill="rgb(255,214,0)" points="243.415,1722.94 232.214,1719.6 227.937,1723.71 " />
<svg:polygon detid="478349482" count="1" value="21" id="705038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  2 forward    Id 478349482 " fill="rgb(255,214,0)" points="248.611,1715.9 236.661,1713.64 233.528,1718.08 " />
<svg:polygon detid="478349486" count="1" value="21" id="705039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  3 forward    Id 478349486 " fill="rgb(255,214,0)" points="251.871,1708.47 239.467,1707.33 237.556,1712.02 " />
<svg:polygon detid="478380458" count="1" value="21" id="705040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380458 " fill="rgb(255,214,0)" points="253.115,1700.83 240.562,1700.85 239.92,1705.65 " />
<svg:polygon detid="478380453" count="1" value="21" id="705101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward   stereo Id 478380453 " fill="rgb(255,214,0)" points="240.562,1699.15 253.115,1699.17 252.313,1693.17 " />
<svg:polygon detid="478347685" count="1" value="21" id="705102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward   stereo Id 478347685 " fill="rgb(255,214,0)" points="239.467,1692.67 251.871,1691.53 249.484,1685.68 " />
<svg:polygon detid="478347689" count="1" value="21" id="705103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  2 forward   stereo Id 478347689 " fill="rgb(255,214,0)" points="236.661,1686.36 248.611,1684.1 244.698,1678.54 " />
<svg:polygon detid="478347693" count="1" value="21" id="705104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  3 forward   stereo Id 478347693 " fill="rgb(255,214,0)" points="232.214,1680.4 243.415,1677.06 238.072,1671.93 " />
<svg:polygon detid="478380709" count="1" value="21" id="705105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward   stereo Id 478380709 " fill="rgb(255,214,0)" points="226.235,1674.91 236.411,1670.59 229.77,1666.02 " />
<svg:polygon detid="478380713" count="1" value="21" id="705106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward   stereo Id 478380713 " fill="rgb(255,214,0)" points="218.871,1670.05 227.772,1664.84 219.997,1660.93 " />
<svg:polygon detid="478347941" count="1" value="21" id="705107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward   stereo Id 478347941 " fill="rgb(255,214,0)" points="210.304,1665.92 217.711,1659.96 208.992,1656.81 " />
<svg:polygon detid="478347945" count="1" value="21" id="705108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  2 forward   stereo Id 478347945 " fill="rgb(255,214,0)" points="200.744,1662.63 206.475,1656.06 197.028,1653.76 " />
<svg:polygon detid="478347949" count="1" value="21" id="705109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  3 forward   stereo Id 478347949 " fill="rgb(255,214,0)" points="190.428,1660.26 194.34,1653.24 184.397,1651.84 " />
<svg:polygon detid="478380965" count="1" value="21" id="705110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward   stereo Id 478380965 " fill="rgb(255,214,0)" points="179.608,1658.87 181.607,1651.58 171.413,1651.11 " />
<svg:polygon detid="478380969" count="1" value="21" id="705111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward   stereo Id 478380969 " fill="rgb(255,214,0)" points="168.552,1658.49 168.587,1651.11 158.393,1651.58 " />
<svg:polygon detid="478348197" count="1" value="21" id="705112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward   stereo Id 478348197 " fill="rgb(255,214,0)" points="157.532,1659.14 155.603,1651.84 145.66,1653.24 " />
<svg:polygon detid="478348201" count="1" value="21" id="705113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  2 forward   stereo Id 478348201 " fill="rgb(255,214,0)" points="146.818,1660.79 142.972,1653.76 133.525,1656.06 " />
<svg:polygon detid="478348205" count="1" value="21" id="705114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  3 forward   stereo Id 478348205 " fill="rgb(255,214,0)" points="136.676,1663.4 131.008,1656.81 122.289,1659.96 " />
<svg:polygon detid="478381221" count="1" value="21" id="705115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward   stereo Id 478381221 " fill="rgb(255,214,0)" points="127.353,1666.92 120.003,1660.93 112.228,1664.84 " />
<svg:polygon detid="478381225" count="1" value="21" id="705116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward   stereo Id 478381225 " fill="rgb(255,214,0)" points="119.081,1671.25 110.23,1666.02 103.589,1670.59 " />
<svg:polygon detid="478348453" count="1" value="21" id="705117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward   stereo Id 478348453 " fill="rgb(255,214,0)" points="112.063,1676.29 101.928,1671.93 96.5852,1677.06 " />
<svg:polygon detid="478348457" count="1" value="21" id="705118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  2 forward   stereo Id 478348457 " fill="rgb(255,214,0)" points="106.472,1681.92 95.3024,1678.54 91.3893,1684.1 " />
<svg:polygon detid="478348461" count="1" value="21" id="705119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  3 forward   stereo Id 478348461 " fill="rgb(255,214,0)" points="102.444,1687.98 90.5161,1685.68 88.129,1691.53 " />
<svg:polygon detid="478381477" count="1" value="21" id="705120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward   stereo Id 478381477 " fill="rgb(255,214,0)" points="100.08,1694.35 87.6871,1693.17 86.8848,1699.17 " />
<svg:polygon detid="478381481" count="1" value="21" id="705121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward   stereo Id 478381481 " fill="rgb(255,214,0)" points="99.4383,1700.85 86.8848,1700.83 87.6871,1706.83 " />
<svg:polygon detid="478348709" count="1" value="21" id="705122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward   stereo Id 478348709 " fill="rgb(255,214,0)" points="100.533,1707.33 88.129,1708.47 90.5161,1714.32 " />
<svg:polygon detid="478348713" count="1" value="21" id="705123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  2 forward   stereo Id 478348713 " fill="rgb(255,214,0)" points="103.339,1713.64 91.3893,1715.9 95.3024,1721.46 " />
<svg:polygon detid="478348717" count="1" value="21" id="705124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  3 forward   stereo Id 478348717 " fill="rgb(255,214,0)" points="107.786,1719.6 96.5852,1722.94 101.928,1728.07 " />
<svg:polygon detid="478381733" count="1" value="21" id="705125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward   stereo Id 478381733 " fill="rgb(255,214,0)" points="113.765,1725.09 103.589,1729.41 110.23,1733.98 " />
<svg:polygon detid="478381737" count="1" value="21" id="705126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward   stereo Id 478381737 " fill="rgb(255,214,0)" points="121.129,1729.95 112.228,1735.16 120.003,1739.07 " />
<svg:polygon detid="478348965" count="1" value="21" id="705127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward   stereo Id 478348965 " fill="rgb(255,214,0)" points="129.696,1734.08 122.289,1740.04 131.008,1743.19 " />
<svg:polygon detid="478348969" count="1" value="21" id="705128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  2 forward   stereo Id 478348969 " fill="rgb(255,214,0)" points="139.256,1737.37 133.525,1743.94 142.972,1746.24 " />
<svg:polygon detid="478348973" count="1" value="21" id="705129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  3 forward   stereo Id 478348973 " fill="rgb(255,214,0)" points="149.572,1739.74 145.66,1746.76 155.603,1748.16 " />
<svg:polygon detid="478381989" count="1" value="21" id="705130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward   stereo Id 478381989 " fill="rgb(255,214,0)" points="160.392,1741.13 158.393,1748.42 168.587,1748.89 " />
<svg:polygon detid="478381993" count="1" value="21" id="705131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward   stereo Id 478381993 " fill="rgb(255,214,0)" points="171.448,1741.51 171.413,1748.89 181.607,1748.42 " />
<svg:polygon detid="478349221" count="1" value="21" id="705132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward   stereo Id 478349221 " fill="rgb(255,214,0)" points="182.468,1740.86 184.397,1748.16 194.34,1746.76 " />
<svg:polygon detid="478349225" count="1" value="21" id="705133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  2 forward   stereo Id 478349225 " fill="rgb(255,214,0)" points="193.182,1739.21 197.028,1746.24 206.475,1743.94 " />
<svg:polygon detid="478349229" count="1" value="21" id="705134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  3 forward   stereo Id 478349229 " fill="rgb(255,214,0)" points="203.324,1736.6 208.992,1743.19 217.711,1740.04 " />
<svg:polygon detid="478382245" count="1" value="21" id="705135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward   stereo Id 478382245 " fill="rgb(255,214,0)" points="212.647,1733.08 219.997,1739.07 227.772,1735.16 " />
<svg:polygon detid="478382249" count="1" value="21" id="705136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward   stereo Id 478382249 " fill="rgb(255,214,0)" points="220.919,1728.75 229.77,1733.98 236.411,1729.41 " />
<svg:polygon detid="478349477" count="1" value="21" id="705137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward   stereo Id 478349477 " fill="rgb(255,214,0)" points="227.937,1723.71 238.072,1728.07 243.415,1722.94 " />
<svg:polygon detid="478349481" count="1" value="21" id="705138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  2 forward   stereo Id 478349481 " fill="rgb(255,214,0)" points="233.528,1718.08 244.698,1721.46 248.611,1715.9 " />
<svg:polygon detid="478349485" count="1" value="21" id="705139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  3 forward   stereo Id 478349485 " fill="rgb(255,214,0)" points="237.556,1712.02 249.484,1714.32 251.871,1708.47 " />
<svg:polygon detid="478380457" count="1" value="21" id="705140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward   stereo Id 478380457 " fill="rgb(255,214,0)" points="239.92,1705.65 252.313,1706.83 253.115,1700.83 " />
<svg:polygon detid="478380484" count="1" value="21" id="706001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380484 " fill="rgb(255,214,0)" points="255.048,1699.28 270.706,1699.3 270.206,1694.06 254.65,1695.12 " />
<svg:polygon detid="478380492" count="1" value="21" id="706002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  3 forward    Id 478380492 " fill="rgb(255,214,0)" points="254.376,1693.68 269.939,1692.67 268.446,1687.5 253.188,1689.57 " />
<svg:polygon detid="478347716" count="1" value="21" id="706003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347716 " fill="rgb(255,214,0)" points="252.643,1688.16 267.916,1686.14 265.448,1681.1 250.68,1684.16 " />
<svg:polygon detid="478347720" count="1" value="21" id="706004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  2 forward    Id 478347720 " fill="rgb(255,214,0)" points="249.87,1682.8 264.662,1679.77 261.249,1674.93 247.157,1678.94 " />
<svg:polygon detid="478347724" count="1" value="21" id="706005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  3 forward    Id 478347724 " fill="rgb(255,214,0)" points="246.093,1677.64 260.216,1673.67 255.903,1669.08 242.664,1673.99 " />
<svg:polygon detid="478380740" count="1" value="21" id="706006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380740 " fill="rgb(255,214,0)" points="241.36,1672.77 254.637,1667.89 249.477,1663.61 237.257,1669.37 " />
<svg:polygon detid="478380744" count="1" value="21" id="706007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380744 " fill="rgb(255,214,0)" points="235.729,1668.24 247.993,1662.52 242.051,1658.61 231.005,1665.13 " />
<svg:polygon detid="478380748" count="1" value="21" id="706008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  3 forward    Id 478380748 " fill="rgb(255,214,0)" points="229.271,1664.11 240.368,1657.62 233.72,1654.12 223.985,1661.34 " />
<svg:polygon detid="478380752" count="1" value="21" id="706009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  0 backward    Id 478380752 " fill="rgb(255,214,0)" points="222.068,1660.44 231.859,1653.25 224.587,1650.21 216.286,1658.02 " />
<svg:polygon detid="478347972" count="1" value="21" id="706010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478347972 " fill="rgb(255,214,0)" points="214.21,1657.26 222.571,1649.47 214.767,1646.93 208.006,1655.24 " />
<svg:polygon detid="478347976" count="1" value="21" id="706011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  2 forward    Id 478347976 " fill="rgb(255,214,0)" points="205.796,1654.61 212.622,1646.32 204.385,1644.32 199.247,1653.02 " />
<svg:polygon detid="478347980" count="1" value="21" id="706012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  3 forward    Id 478347980 " fill="rgb(255,214,0)" points="196.932,1652.54 202.138,1643.85 193.57,1642.4 190.12,1651.39 " />
<svg:polygon detid="478380996" count="1" value="21" id="706013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478380996 " fill="rgb(255,214,0)" points="187.73,1651.07 191.249,1642.09 182.458,1641.21 180.741,1650.37 " />
<svg:polygon detid="478381000" count="1" value="21" id="706014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478381000 " fill="rgb(255,214,0)" points="178.304,1650.21 180.093,1641.06 171.19,1640.76 171.226,1649.97 " />
<svg:polygon detid="478381004" count="1" value="21" id="706015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  3 forward    Id 478381004 " fill="rgb(255,214,0)" points="168.774,1649.97 168.81,1640.76 159.907,1641.06 161.696,1650.21 " />
<svg:polygon detid="478381008" count="1" value="21" id="706016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  0 backward    Id 478381008 " fill="rgb(255,214,0)" points="159.259,1650.37 157.542,1641.21 148.751,1642.09 152.27,1651.07 " />
<svg:polygon detid="478348228" count="1" value="21" id="706017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348228 " fill="rgb(255,214,0)" points="149.88,1651.39 146.43,1642.4 137.862,1643.85 143.068,1652.54 " />
<svg:polygon detid="478348232" count="1" value="21" id="706018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  2 forward    Id 478348232 " fill="rgb(255,214,0)" points="140.753,1653.02 135.615,1644.32 127.378,1646.32 134.204,1654.61 " />
<svg:polygon detid="478348236" count="1" value="21" id="706019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  3 forward    Id 478348236 " fill="rgb(255,214,0)" points="131.994,1655.24 125.233,1646.93 117.429,1649.47 125.79,1657.26 " />
<svg:polygon detid="478381252" count="1" value="21" id="706020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381252 " fill="rgb(255,214,0)" points="123.714,1658.02 115.413,1650.21 108.141,1653.25 117.932,1660.44 " />
<svg:polygon detid="478381256" count="1" value="21" id="706021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381256 " fill="rgb(255,214,0)" points="116.015,1661.34 106.28,1654.12 99.6318,1657.62 110.729,1664.11 " />
<svg:polygon detid="478381260" count="1" value="21" id="706022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  3 forward    Id 478381260 " fill="rgb(255,214,0)" points="108.995,1665.13 97.9486,1658.61 92.0071,1662.52 104.271,1668.24 " />
<svg:polygon detid="478381264" count="1" value="21" id="706023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  0 backward    Id 478381264 " fill="rgb(255,214,0)" points="102.743,1669.37 90.5229,1663.61 85.3632,1667.89 98.6404,1672.77 " />
<svg:polygon detid="478348484" count="1" value="21" id="706024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348484 " fill="rgb(255,214,0)" points="97.3356,1673.99 84.0966,1669.08 79.7835,1673.67 93.9066,1677.64 " />
<svg:polygon detid="478348488" count="1" value="21" id="706025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  2 forward    Id 478348488 " fill="rgb(255,214,0)" points="92.8426,1678.94 78.7507,1674.93 75.3385,1679.77 90.1298,1682.8 " />
<svg:polygon detid="478348492" count="1" value="21" id="706026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  3 forward    Id 478348492 " fill="rgb(255,214,0)" points="89.3198,1684.16 74.5522,1681.1 72.0838,1686.14 87.3574,1688.16 " />
<svg:polygon detid="478381508" count="1" value="21" id="706027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381508 " fill="rgb(255,214,0)" points="86.8117,1689.57 71.5541,1687.5 70.0606,1692.67 85.6243,1693.68 " />
<svg:polygon detid="478381512" count="1" value="21" id="706028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381512 " fill="rgb(255,214,0)" points="85.3497,1695.12 69.794,1694.06 69.2941,1699.3 84.9522,1699.28 " />
<svg:polygon detid="478381516" count="1" value="21" id="706029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  3 forward    Id 478381516 " fill="rgb(255,214,0)" points="84.9522,1700.72 69.2941,1700.7 69.794,1705.94 85.3497,1704.88 " />
<svg:polygon detid="478381520" count="1" value="21" id="706030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  0 backward    Id 478381520 " fill="rgb(255,214,0)" points="85.6243,1706.32 70.0606,1707.33 71.5541,1712.5 86.8117,1710.43 " />
<svg:polygon detid="478348740" count="1" value="21" id="706031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348740 " fill="rgb(255,214,0)" points="87.3574,1711.84 72.0838,1713.86 74.5522,1718.9 89.3198,1715.84 " />
<svg:polygon detid="478348744" count="1" value="21" id="706032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  2 forward    Id 478348744 " fill="rgb(255,214,0)" points="90.1298,1717.2 75.3385,1720.23 78.7507,1725.07 92.8426,1721.06 " />
<svg:polygon detid="478348748" count="1" value="21" id="706033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  3 forward    Id 478348748 " fill="rgb(255,214,0)" points="93.9066,1722.36 79.7835,1726.33 84.0966,1730.92 97.3356,1726.01 " />
<svg:polygon detid="478381764" count="1" value="21" id="706034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381764 " fill="rgb(255,214,0)" points="98.6404,1727.23 85.3632,1732.11 90.5229,1736.39 102.743,1730.63 " />
<svg:polygon detid="478381768" count="1" value="21" id="706035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381768 " fill="rgb(255,214,0)" points="104.271,1731.76 92.0071,1737.48 97.9486,1741.39 108.995,1734.87 " />
<svg:polygon detid="478381772" count="1" value="21" id="706036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  3 forward    Id 478381772 " fill="rgb(255,214,0)" points="110.729,1735.89 99.6318,1742.38 106.28,1745.88 116.015,1738.66 " />
<svg:polygon detid="478381776" count="1" value="21" id="706037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  0 backward    Id 478381776 " fill="rgb(255,214,0)" points="117.932,1739.56 108.141,1746.75 115.413,1749.79 123.714,1741.98 " />
<svg:polygon detid="478348996" count="1" value="21" id="706038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478348996 " fill="rgb(255,214,0)" points="125.79,1742.74 117.429,1750.53 125.233,1753.07 131.994,1744.76 " />
<svg:polygon detid="478349000" count="1" value="21" id="706039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  2 forward    Id 478349000 " fill="rgb(255,214,0)" points="134.204,1745.39 127.378,1753.68 135.615,1755.68 140.753,1746.98 " />
<svg:polygon detid="478349004" count="1" value="21" id="706040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  3 forward    Id 478349004 " fill="rgb(255,214,0)" points="143.068,1747.46 137.862,1756.15 146.43,1757.6 149.88,1748.61 " />
<svg:polygon detid="478382020" count="1" value="21" id="706041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478382020 " fill="rgb(255,214,0)" points="152.27,1748.93 148.751,1757.91 157.542,1758.79 159.259,1749.63 " />
<svg:polygon detid="478382024" count="1" value="21" id="706042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478382024 " fill="rgb(255,214,0)" points="161.696,1749.79 159.907,1758.94 168.81,1759.24 168.774,1750.03 " />
<svg:polygon detid="478382028" count="1" value="21" id="706043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  3 forward    Id 478382028 " fill="rgb(255,214,0)" points="171.226,1750.03 171.19,1759.24 180.093,1758.94 178.304,1749.79 " />
<svg:polygon detid="478382032" count="1" value="21" id="706044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  0 backward    Id 478382032 " fill="rgb(255,214,0)" points="180.741,1749.63 182.458,1758.79 191.249,1757.91 187.73,1748.93 " />
<svg:polygon detid="478349252" count="1" value="21" id="706045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349252 " fill="rgb(255,214,0)" points="190.12,1748.61 193.57,1757.6 202.138,1756.15 196.932,1747.46 " />
<svg:polygon detid="478349256" count="1" value="21" id="706046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  2 forward    Id 478349256 " fill="rgb(255,214,0)" points="199.247,1746.98 204.385,1755.68 212.622,1753.68 205.796,1745.39 " />
<svg:polygon detid="478349260" count="1" value="21" id="706047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  3 forward    Id 478349260 " fill="rgb(255,214,0)" points="208.006,1744.76 214.767,1753.07 222.571,1750.53 214.21,1742.74 " />
<svg:polygon detid="478382276" count="1" value="21" id="706048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382276 " fill="rgb(255,214,0)" points="216.286,1741.98 224.587,1749.79 231.859,1746.75 222.068,1739.56 " />
<svg:polygon detid="478382280" count="1" value="21" id="706049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382280 " fill="rgb(255,214,0)" points="223.985,1738.66 233.72,1745.88 240.368,1742.38 229.271,1735.89 " />
<svg:polygon detid="478382284" count="1" value="21" id="706050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  3 forward    Id 478382284 " fill="rgb(255,214,0)" points="231.005,1734.87 242.051,1741.39 247.993,1737.48 235.729,1731.76 " />
<svg:polygon detid="478382288" count="1" value="21" id="706051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  0 backward    Id 478382288 " fill="rgb(255,214,0)" points="237.257,1730.63 249.477,1736.39 254.637,1732.11 241.36,1727.23 " />
<svg:polygon detid="478349508" count="1" value="21" id="706052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349508 " fill="rgb(255,214,0)" points="242.664,1726.01 255.903,1730.92 260.216,1726.33 246.093,1722.36 " />
<svg:polygon detid="478349512" count="1" value="21" id="706053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  2 forward    Id 478349512 " fill="rgb(255,214,0)" points="247.157,1721.06 261.249,1725.07 264.662,1720.23 249.87,1717.2 " />
<svg:polygon detid="478349516" count="1" value="21" id="706054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  3 forward    Id 478349516 " fill="rgb(255,214,0)" points="250.68,1715.84 265.448,1718.9 267.916,1713.86 252.643,1711.84 " />
<svg:polygon detid="478380496" count="1" value="21" id="706055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  0 backward    Id 478380496 " fill="rgb(255,214,0)" points="253.188,1710.43 268.446,1712.5 269.939,1707.33 254.376,1706.32 " />
<svg:polygon detid="478380488" count="1" value="21" id="706056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380488 " fill="rgb(255,214,0)" points="254.65,1704.88 270.206,1705.94 270.706,1700.7 255.048,1700.72 " />
<svg:polygon detid="478380516" count="1" value="21" id="707001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 forward    Id 478380516 " fill="rgb(255,214,0)" points="273.723,1701.79 291.123,1702.21 291.123,1697.79 273.723,1698.21 " />
<svg:polygon detid="478380524" count="1" value="21" id="707002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  3 forward    Id 478380524 " fill="rgb(255,214,0)" points="273.642,1696.99 291.043,1696.61 290.455,1692.21 273.165,1693.43 " />
<svg:polygon detid="478380528" count="1" value="21" id="707003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  0 backward    Id 478380528 " fill="rgb(255,214,0)" points="272.921,1692.22 290.218,1691.03 289.045,1686.68 271.971,1688.69 " />
<svg:polygon detid="478347748" count="1" value="21" id="707004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 forward    Id 478347748 " fill="rgb(255,214,0)" points="271.567,1687.49 288.651,1685.51 286.901,1681.22 270.148,1684.02 " />
<svg:polygon detid="478347752" count="1" value="21" id="707005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  2 forward    Id 478347752 " fill="rgb(255,214,0)" points="269.586,1682.85 286.353,1680.08 284.036,1675.89 267.708,1679.45 " />
<svg:polygon detid="478347756" count="1" value="21" id="707006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  3 forward    Id 478347756 " fill="rgb(255,214,0)" points="266.99,1678.3 283.337,1674.77 280.468,1670.7 264.665,1675 " />
<svg:polygon detid="478347760" count="1" value="21" id="707007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  0 backward    Id 478347760 " fill="rgb(255,214,0)" points="263.797,1673.89 279.623,1669.62 276.219,1665.69 261.039,1670.71 " />
<svg:polygon detid="478347764" count="1" value="21" id="707008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 forward  module  1 backward    Id 478347764 " fill="rgb(255,214,0)" points="260.026,1669.64 275.233,1664.65 271.315,1660.89 256.851,1666.6 " />
<svg:polygon detid="478380772" count="1" value="21" id="707009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 forward    Id 478380772 " fill="rgb(255,214,0)" points="255.7,1665.58 270.194,1659.9 265.787,1656.34 252.128,1662.69 " />
<svg:polygon detid="478380776" count="1" value="21" id="707010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  2 forward    Id 478380776 " fill="rgb(255,214,0)" points="250.845,1661.73 264.537,1655.4 259.668,1652.05 246.899,1659.02 " />
<svg:polygon detid="478380780" count="1" value="21" id="707011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  3 forward    Id 478380780 " fill="rgb(255,214,0)" points="245.492,1658.12 258.297,1651.18 252.996,1648.06 241.195,1655.59 " />
<svg:polygon detid="478380784" count="1" value="21" id="707012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  0 backward    Id 478380784 " fill="rgb(255,214,0)" points="239.673,1654.77 251.513,1647.25 245.813,1644.39 235.052,1652.44 " />
<svg:polygon detid="478380788" count="1" value="21" id="707013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 backward  module  1 backward    Id 478380788 " fill="rgb(255,214,0)" points="233.425,1651.69 244.227,1643.65 238.162,1641.06 228.509,1649.59 " />
<svg:polygon detid="478348004" count="1" value="21" id="707014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 forward    Id 478348004 " fill="rgb(255,214,0)" points="226.786,1648.91 236.483,1640.4 230.09,1638.1 221.605,1647.04 " />
<svg:polygon detid="478348008" count="1" value="21" id="707015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  2 forward    Id 478348008 " fill="rgb(255,214,0)" points="219.797,1646.45 228.329,1637.52 221.649,1635.52 214.382,1644.83 " />
<svg:polygon detid="478348012" count="1" value="21" id="707016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  3 forward    Id 478348012 " fill="rgb(255,214,0)" points="212.5,1644.31 219.815,1635.02 212.888,1633.33 206.886,1642.95 " />
<svg:polygon detid="478348016" count="1" value="21" id="707017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  0 backward    Id 478348016 " fill="rgb(255,214,0)" points="204.942,1642.52 210.994,1632.92 203.864,1631.56 199.163,1641.42 " />
<svg:polygon detid="478348020" count="1" value="21" id="707018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 2 forward  module  1 backward    Id 478348020 " fill="rgb(255,214,0)" points="197.168,1641.09 201.92,1631.23 194.631,1630.21 191.259,1640.25 " />
<svg:polygon detid="478381028" count="1" value="21" id="707019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 forward    Id 478381028 " fill="rgb(255,214,0)" points="189.227,1640.02 192.65,1629.97 185.245,1629.28 183.225,1639.46 " />
<svg:polygon detid="478381032" count="1" value="21" id="707020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  2 forward    Id 478381032 " fill="rgb(255,214,0)" points="181.167,1639.31 183.24,1629.14 175.766,1628.8 175.109,1639.03 " />
<svg:polygon detid="478381036" count="1" value="21" id="707021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  3 forward    Id 478381036 " fill="rgb(255,214,0)" points="173.038,1638.99 173.749,1628.75 166.251,1628.75 166.962,1638.99 " />
<svg:polygon detid="478381040" count="1" value="21" id="707022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  0 backward    Id 478381040 " fill="rgb(255,214,0)" points="164.891,1639.03 164.234,1628.8 156.76,1629.14 158.833,1639.31 " />
<svg:polygon detid="478381044" count="1" value="21" id="707023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 backward  module  1 backward    Id 478381044 " fill="rgb(255,214,0)" points="156.775,1639.46 154.755,1629.28 147.35,1629.97 150.773,1640.02 " />
<svg:polygon detid="478348260" count="1" value="21" id="707024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 forward    Id 478348260 " fill="rgb(255,214,0)" points="148.741,1640.25 145.369,1630.21 138.08,1631.23 142.832,1641.09 " />
<svg:polygon detid="478348264" count="1" value="21" id="707025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  2 forward    Id 478348264 " fill="rgb(255,214,0)" points="140.837,1641.42 136.136,1631.56 129.006,1632.92 135.058,1642.52 " />
<svg:polygon detid="478348268" count="1" value="21" id="707026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  3 forward    Id 478348268 " fill="rgb(255,214,0)" points="133.114,1642.95 127.112,1633.33 120.185,1635.02 127.5,1644.31 " />
<svg:polygon detid="478348272" count="1" value="21" id="707027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  0 backward    Id 478348272 " fill="rgb(255,214,0)" points="125.618,1644.83 118.351,1635.52 111.671,1637.52 120.203,1646.45 " />
<svg:polygon detid="478348276" count="1" value="21" id="707028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 3 forward  module  1 backward    Id 478348276 " fill="rgb(255,214,0)" points="118.395,1647.04 109.91,1638.1 103.517,1640.4 113.214,1648.91 " />
<svg:polygon detid="478381284" count="1" value="21" id="707029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 forward    Id 478381284 " fill="rgb(255,214,0)" points="111.491,1649.59 101.838,1641.06 95.7732,1643.65 106.575,1651.69 " />
<svg:polygon detid="478381288" count="1" value="21" id="707030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  2 forward    Id 478381288 " fill="rgb(255,214,0)" points="104.948,1652.44 94.1875,1644.39 88.4867,1647.25 100.327,1654.77 " />
<svg:polygon detid="478381292" count="1" value="21" id="707031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  3 forward    Id 478381292 " fill="rgb(255,214,0)" points="98.805,1655.59 87.0039,1648.06 81.7027,1651.18 94.5082,1658.12 " />
<svg:polygon detid="478381296" count="1" value="21" id="707032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  0 backward    Id 478381296 " fill="rgb(255,214,0)" points="93.1015,1659.02 80.332,1652.05 75.4631,1655.4 89.155,1661.73 " />
<svg:polygon detid="478381300" count="1" value="21" id="707033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 backward  module  1 backward    Id 478381300 " fill="rgb(255,214,0)" points="87.8721,1662.69 74.213,1656.34 69.8064,1659.9 84.3003,1665.58 " />
<svg:polygon detid="478348516" count="1" value="21" id="707034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 forward    Id 478348516 " fill="rgb(255,214,0)" points="83.149,1666.6 68.6845,1660.89 64.7673,1664.65 79.9739,1669.64 " />
<svg:polygon detid="478348520" count="1" value="21" id="707035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  2 forward    Id 478348520 " fill="rgb(255,214,0)" points="78.9613,1670.71 63.7807,1665.69 60.3771,1669.62 76.2026,1673.89 " />
<svg:polygon detid="478348524" count="1" value="21" id="707036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  3 forward    Id 478348524 " fill="rgb(255,214,0)" points="75.335,1675 59.5317,1670.7 56.6627,1674.77 73.0096,1678.3 " />
<svg:polygon detid="478348528" count="1" value="21" id="707037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  0 backward    Id 478348528 " fill="rgb(255,214,0)" points="72.2923,1679.45 55.9638,1675.89 53.6471,1680.08 70.4145,1682.85 " />
<svg:polygon detid="478348532" count="1" value="21" id="707038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 4 forward  module  1 backward    Id 478348532 " fill="rgb(255,214,0)" points="69.852,1684.02 53.099,1681.22 51.3489,1685.51 68.4334,1687.49 " />
<svg:polygon detid="478381540" count="1" value="21" id="707039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 forward    Id 478381540 " fill="rgb(255,214,0)" points="68.0292,1688.69 50.955,1686.68 49.7822,1691.03 67.0786,1692.22 " />
<svg:polygon detid="478381544" count="1" value="21" id="707040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  2 forward    Id 478381544 " fill="rgb(255,214,0)" points="66.835,1693.43 49.5448,1692.21 48.9566,1696.61 66.3582,1696.99 " />
<svg:polygon detid="478381548" count="1" value="21" id="707041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  3 forward    Id 478381548 " fill="rgb(255,214,0)" points="66.2768,1698.21 48.8773,1697.79 48.8773,1702.21 66.2768,1701.79 " />
<svg:polygon detid="478381552" count="1" value="21" id="707042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  0 backward    Id 478381552 " fill="rgb(255,214,0)" points="66.3582,1703.01 48.9566,1703.39 49.5448,1707.79 66.835,1706.57 " />
<svg:polygon detid="478381556" count="1" value="21" id="707043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 backward  module  1 backward    Id 478381556 " fill="rgb(255,214,0)" points="67.0786,1707.78 49.7822,1708.97 50.955,1713.32 68.0292,1711.31 " />
<svg:polygon detid="478348772" count="1" value="21" id="707044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 forward    Id 478348772 " fill="rgb(255,214,0)" points="68.4334,1712.51 51.3489,1714.49 53.099,1718.78 69.852,1715.98 " />
<svg:polygon detid="478348776" count="1" value="21" id="707045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  2 forward    Id 478348776 " fill="rgb(255,214,0)" points="70.4145,1717.15 53.6471,1719.92 55.9638,1724.11 72.2923,1720.55 " />
<svg:polygon detid="478348780" count="1" value="21" id="707046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  3 forward    Id 478348780 " fill="rgb(255,214,0)" points="73.0096,1721.7 56.6627,1725.23 59.5317,1729.3 75.335,1725 " />
<svg:polygon detid="478348784" count="1" value="21" id="707047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  0 backward    Id 478348784 " fill="rgb(255,214,0)" points="76.2026,1726.11 60.3771,1730.38 63.7807,1734.31 78.9613,1729.29 " />
<svg:polygon detid="478348788" count="1" value="21" id="707048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 5 forward  module  1 backward    Id 478348788 " fill="rgb(255,214,0)" points="79.9739,1730.36 64.7673,1735.35 68.6845,1739.11 83.149,1733.4 " />
<svg:polygon detid="478381796" count="1" value="21" id="707049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 forward    Id 478381796 " fill="rgb(255,214,0)" points="84.3003,1734.42 69.8064,1740.1 74.213,1743.66 87.8721,1737.31 " />
<svg:polygon detid="478381800" count="1" value="21" id="707050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  2 forward    Id 478381800 " fill="rgb(255,214,0)" points="89.155,1738.27 75.4631,1744.6 80.332,1747.95 93.1015,1740.98 " />
<svg:polygon detid="478381804" count="1" value="21" id="707051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  3 forward    Id 478381804 " fill="rgb(255,214,0)" points="94.5082,1741.88 81.7027,1748.82 87.0039,1751.94 98.805,1744.41 " />
<svg:polygon detid="478381808" count="1" value="21" id="707052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  0 backward    Id 478381808 " fill="rgb(255,214,0)" points="100.327,1745.23 88.4867,1752.75 94.1875,1755.61 104.948,1747.56 " />
<svg:polygon detid="478381812" count="1" value="21" id="707053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 backward  module  1 backward    Id 478381812 " fill="rgb(255,214,0)" points="106.575,1748.31 95.7732,1756.35 101.838,1758.94 111.491,1750.41 " />
<svg:polygon detid="478349028" count="1" value="21" id="707054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 forward    Id 478349028 " fill="rgb(255,214,0)" points="113.214,1751.09 103.517,1759.6 109.91,1761.9 118.395,1752.96 " />
<svg:polygon detid="478349032" count="1" value="21" id="707055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  2 forward    Id 478349032 " fill="rgb(255,214,0)" points="120.203,1753.55 111.671,1762.48 118.351,1764.48 125.618,1755.17 " />
<svg:polygon detid="478349036" count="1" value="21" id="707056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  3 forward    Id 478349036 " fill="rgb(255,214,0)" points="127.5,1755.69 120.185,1764.98 127.112,1766.67 133.114,1757.05 " />
<svg:polygon detid="478349040" count="1" value="21" id="707057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  0 backward    Id 478349040 " fill="rgb(255,214,0)" points="135.058,1757.48 129.006,1767.08 136.136,1768.44 140.837,1758.58 " />
<svg:polygon detid="478349044" count="1" value="21" id="707058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 6 forward  module  1 backward    Id 478349044 " fill="rgb(255,214,0)" points="142.832,1758.91 138.08,1768.77 145.369,1769.79 148.741,1759.75 " />
<svg:polygon detid="478382052" count="1" value="21" id="707059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 forward    Id 478382052 " fill="rgb(255,214,0)" points="150.773,1759.98 147.35,1770.03 154.755,1770.72 156.775,1760.54 " />
<svg:polygon detid="478382056" count="1" value="21" id="707060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  2 forward    Id 478382056 " fill="rgb(255,214,0)" points="158.833,1760.69 156.76,1770.86 164.234,1771.2 164.891,1760.97 " />
<svg:polygon detid="478382060" count="1" value="21" id="707061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  3 forward    Id 478382060 " fill="rgb(255,214,0)" points="166.962,1761.01 166.251,1771.25 173.749,1771.25 173.038,1761.01 " />
<svg:polygon detid="478382064" count="1" value="21" id="707062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  0 backward    Id 478382064 " fill="rgb(255,214,0)" points="175.109,1760.97 175.766,1771.2 183.24,1770.86 181.167,1760.69 " />
<svg:polygon detid="478382068" count="1" value="21" id="707063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 backward  module  1 backward    Id 478382068 " fill="rgb(255,214,0)" points="183.225,1760.54 185.245,1770.72 192.65,1770.03 189.227,1759.98 " />
<svg:polygon detid="478349284" count="1" value="21" id="707064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 forward    Id 478349284 " fill="rgb(255,214,0)" points="191.259,1759.75 194.631,1769.79 201.92,1768.77 197.168,1758.91 " />
<svg:polygon detid="478349288" count="1" value="21" id="707065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  2 forward    Id 478349288 " fill="rgb(255,214,0)" points="199.163,1758.58 203.864,1768.44 210.994,1767.08 204.942,1757.48 " />
<svg:polygon detid="478349292" count="1" value="21" id="707066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  3 forward    Id 478349292 " fill="rgb(255,214,0)" points="206.886,1757.05 212.888,1766.67 219.815,1764.98 212.5,1755.69 " />
<svg:polygon detid="478349296" count="1" value="21" id="707067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  0 backward    Id 478349296 " fill="rgb(255,214,0)" points="214.382,1755.17 221.649,1764.48 228.329,1762.48 219.797,1753.55 " />
<svg:polygon detid="478349300" count="1" value="21" id="707068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 7 forward  module  1 backward    Id 478349300 " fill="rgb(255,214,0)" points="221.605,1752.96 230.09,1761.9 236.483,1759.6 226.786,1751.09 " />
<svg:polygon detid="478382308" count="1" value="21" id="707069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 forward    Id 478382308 " fill="rgb(255,214,0)" points="228.509,1750.41 238.162,1758.94 244.227,1756.35 233.425,1748.31 " />
<svg:polygon detid="478382312" count="1" value="21" id="707070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  2 forward    Id 478382312 " fill="rgb(255,214,0)" points="235.052,1747.56 245.813,1755.61 251.513,1752.75 239.673,1745.23 " />
<svg:polygon detid="478382316" count="1" value="21" id="707071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  3 forward    Id 478382316 " fill="rgb(255,214,0)" points="241.195,1744.41 252.996,1751.94 258.297,1748.82 245.492,1741.88 " />
<svg:polygon detid="478382320" count="1" value="21" id="707072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  0 backward    Id 478382320 " fill="rgb(255,214,0)" points="246.899,1740.98 259.668,1747.95 264.537,1744.6 250.845,1738.27 " />
<svg:polygon detid="478382324" count="1" value="21" id="707073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 backward  module  1 backward    Id 478382324 " fill="rgb(255,214,0)" points="252.128,1737.31 265.787,1743.66 270.194,1740.1 255.7,1734.42 " />
<svg:polygon detid="478349540" count="1" value="21" id="707074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 forward    Id 478349540 " fill="rgb(255,214,0)" points="256.851,1733.4 271.315,1739.11 275.233,1735.35 260.026,1730.36 " />
<svg:polygon detid="478349544" count="1" value="21" id="707075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  2 forward    Id 478349544 " fill="rgb(255,214,0)" points="261.039,1729.29 276.219,1734.31 279.623,1730.38 263.797,1726.11 " />
<svg:polygon detid="478349548" count="1" value="21" id="707076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  3 forward    Id 478349548 " fill="rgb(255,214,0)" points="264.665,1725 280.468,1729.3 283.337,1725.23 266.99,1721.7 " />
<svg:polygon detid="478349552" count="1" value="21" id="707077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  0 backward    Id 478349552 " fill="rgb(255,214,0)" points="267.708,1720.55 284.036,1724.11 286.353,1719.92 269.586,1717.15 " />
<svg:polygon detid="478349556" count="1" value="21" id="707078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 8 forward  module  1 backward    Id 478349556 " fill="rgb(255,214,0)" points="270.148,1715.98 286.901,1718.78 288.651,1714.49 271.567,1712.51 " />
<svg:polygon detid="478380532" count="1" value="21" id="707079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  1 backward    Id 478380532 " fill="rgb(255,214,0)" points="271.971,1711.31 289.045,1713.32 290.218,1708.97 272.921,1707.78 " />
<svg:polygon detid="478380520" count="1" value="21" id="707080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 3 ring 0 petal 1 backward  module  2 forward    Id 478380520 " fill="rgb(255,214,0)" points="273.165,1706.57 290.455,1707.79 291.043,1703.39 273.642,1703.01 " />
<svg:polygon detid="478314794" count="1" value="24" id="801001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314794 " fill="rgb(255,208,0)" points="204.311,1495.19 197.269,1496.32 197.958,1499.4 " />
<svg:polygon detid="478282022" count="1" value="24" id="801002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282022 " fill="rgb(255,208,0)" points="201.024,1490.13 194.722,1492.3 196.742,1495.16 " />
<svg:polygon detid="478315046" count="1" value="24" id="801003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315046 " fill="rgb(255,208,0)" points="195.623,1485.74 190.489,1488.79 193.703,1491.26 " />
<svg:polygon detid="478315050" count="1" value="24" id="801004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315050 " fill="rgb(255,208,0)" points="188.475,1482.33 184.861,1486.06 189.049,1487.95 " />
<svg:polygon detid="478282278" count="1" value="24" id="801005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282278 " fill="rgb(255,208,0)" points="180.069,1480.11 178.22,1484.27 183.097,1485.46 " />
<svg:polygon detid="478315302" count="1" value="24" id="801006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315302 " fill="rgb(255,208,0)" points="170.976,1479.26 171.019,1483.55 176.252,1483.96 " />
<svg:polygon detid="478315306" count="1" value="24" id="801007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315306 " fill="rgb(255,208,0)" points="161.817,1479.82 163.748,1483.96 168.981,1483.55 " />
<svg:polygon detid="478282534" count="1" value="24" id="801008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282534 " fill="rgb(255,208,0)" points="153.216,1481.75 156.903,1485.46 161.78,1484.27 " />
<svg:polygon detid="478315558" count="1" value="24" id="801009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315558 " fill="rgb(255,208,0)" points="145.758,1484.93 150.951,1487.95 155.139,1486.06 " />
<svg:polygon detid="478315562" count="1" value="24" id="801010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315562 " fill="rgb(255,208,0)" points="139.953,1489.13 146.297,1491.26 149.511,1488.79 " />
<svg:polygon detid="478282790" count="1" value="24" id="801011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282790 " fill="rgb(255,208,0)" points="136.195,1494.08 143.258,1495.16 145.278,1492.3 " />
<svg:polygon detid="478315814" count="1" value="24" id="801012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478315814 " fill="rgb(255,208,0)" points="134.741,1499.43 142.042,1499.4 142.731,1496.32 " />
<svg:polygon detid="478315818" count="1" value="24" id="801013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478315818 " fill="rgb(255,208,0)" points="135.689,1504.81 142.731,1503.68 142.042,1500.6 " />
<svg:polygon detid="478283046" count="1" value="24" id="801014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283046 " fill="rgb(255,208,0)" points="138.976,1509.87 145.278,1507.7 143.258,1504.84 " />
<svg:polygon detid="478316070" count="1" value="24" id="801015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316070 " fill="rgb(255,208,0)" points="144.377,1514.26 149.511,1511.21 146.297,1508.74 " />
<svg:polygon detid="478316074" count="1" value="24" id="801016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316074 " fill="rgb(255,208,0)" points="151.525,1517.67 155.139,1513.94 150.951,1512.05 " />
<svg:polygon detid="478283302" count="1" value="24" id="801017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283302 " fill="rgb(255,208,0)" points="159.931,1519.89 161.78,1515.73 156.903,1514.54 " />
<svg:polygon detid="478316326" count="1" value="24" id="801018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316326 " fill="rgb(255,208,0)" points="169.024,1520.74 168.981,1516.45 163.748,1516.04 " />
<svg:polygon detid="478316330" count="1" value="24" id="801019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316330 " fill="rgb(255,208,0)" points="178.183,1520.18 176.252,1516.04 171.019,1516.45 " />
<svg:polygon detid="478283558" count="1" value="24" id="801020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283558 " fill="rgb(255,208,0)" points="186.784,1518.25 183.097,1514.54 178.22,1515.73 " />
<svg:polygon detid="478316582" count="1" value="24" id="801021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316582 " fill="rgb(255,208,0)" points="194.242,1515.07 189.049,1512.05 184.861,1513.94 " />
<svg:polygon detid="478316586" count="1" value="24" id="801022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316586 " fill="rgb(255,208,0)" points="200.047,1510.87 193.703,1508.74 190.489,1511.21 " />
<svg:polygon detid="478283814" count="1" value="24" id="801023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478283814 " fill="rgb(255,208,0)" points="203.805,1505.92 196.742,1504.84 194.722,1507.7 " />
<svg:polygon detid="478314790" count="1" value="24" id="801024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314790 " fill="rgb(255,208,0)" points="205.259,1500.57 197.958,1500.6 197.269,1503.68 " />
<svg:polygon detid="478314793" count="1" value="24" id="801101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward   stereo Id 478314793 " fill="rgb(255,208,0)" points="197.958,1499.4 205.259,1499.43 204.311,1495.19 " />
<svg:polygon detid="478282021" count="1" value="24" id="801102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward   stereo Id 478282021 " fill="rgb(255,208,0)" points="196.742,1495.16 203.805,1494.08 201.024,1490.13 " />
<svg:polygon detid="478315045" count="1" value="24" id="801103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward   stereo Id 478315045 " fill="rgb(255,208,0)" points="193.703,1491.26 200.047,1489.13 195.623,1485.74 " />
<svg:polygon detid="478315049" count="1" value="24" id="801104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward   stereo Id 478315049 " fill="rgb(255,208,0)" points="189.049,1487.95 194.242,1484.93 188.475,1482.33 " />
<svg:polygon detid="478282277" count="1" value="24" id="801105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward   stereo Id 478282277 " fill="rgb(255,208,0)" points="183.097,1485.46 186.784,1481.75 180.069,1480.11 " />
<svg:polygon detid="478315301" count="1" value="24" id="801106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward   stereo Id 478315301 " fill="rgb(255,208,0)" points="176.252,1483.96 178.183,1479.82 170.976,1479.26 " />
<svg:polygon detid="478315305" count="1" value="24" id="801107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward   stereo Id 478315305 " fill="rgb(255,208,0)" points="168.981,1483.55 169.024,1479.26 161.817,1479.82 " />
<svg:polygon detid="478282533" count="1" value="24" id="801108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward   stereo Id 478282533 " fill="rgb(255,208,0)" points="161.78,1484.27 159.931,1480.11 153.216,1481.75 " />
<svg:polygon detid="478315557" count="1" value="24" id="801109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward   stereo Id 478315557 " fill="rgb(255,208,0)" points="155.139,1486.06 151.525,1482.33 145.758,1484.93 " />
<svg:polygon detid="478315561" count="1" value="24" id="801110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward   stereo Id 478315561 " fill="rgb(255,208,0)" points="149.511,1488.79 144.377,1485.74 139.953,1489.13 " />
<svg:polygon detid="478282789" count="1" value="24" id="801111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward   stereo Id 478282789 " fill="rgb(255,208,0)" points="145.278,1492.3 138.976,1490.13 136.195,1494.08 " />
<svg:polygon detid="478315813" count="1" value="24" id="801112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward   stereo Id 478315813 " fill="rgb(255,208,0)" points="142.731,1496.32 135.689,1495.19 134.741,1499.43 " />
<svg:polygon detid="478315817" count="1" value="24" id="801113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward   stereo Id 478315817 " fill="rgb(255,208,0)" points="142.042,1500.6 134.741,1500.57 135.689,1504.81 " />
<svg:polygon detid="478283045" count="1" value="24" id="801114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward   stereo Id 478283045 " fill="rgb(255,208,0)" points="143.258,1504.84 136.195,1505.92 138.976,1509.87 " />
<svg:polygon detid="478316069" count="1" value="24" id="801115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward   stereo Id 478316069 " fill="rgb(255,208,0)" points="146.297,1508.74 139.953,1510.87 144.377,1514.26 " />
<svg:polygon detid="478316073" count="1" value="24" id="801116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward   stereo Id 478316073 " fill="rgb(255,208,0)" points="150.951,1512.05 145.758,1515.07 151.525,1517.67 " />
<svg:polygon detid="478283301" count="1" value="24" id="801117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward   stereo Id 478283301 " fill="rgb(255,208,0)" points="156.903,1514.54 153.216,1518.25 159.931,1519.89 " />
<svg:polygon detid="478316325" count="1" value="24" id="801118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward   stereo Id 478316325 " fill="rgb(255,208,0)" points="163.748,1516.04 161.817,1520.18 169.024,1520.74 " />
<svg:polygon detid="478316329" count="1" value="24" id="801119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward   stereo Id 478316329 " fill="rgb(255,208,0)" points="171.019,1516.45 170.976,1520.74 178.183,1520.18 " />
<svg:polygon detid="478283557" count="1" value="24" id="801120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward   stereo Id 478283557 " fill="rgb(255,208,0)" points="178.22,1515.73 180.069,1519.89 186.784,1518.25 " />
<svg:polygon detid="478316581" count="1" value="24" id="801121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward   stereo Id 478316581 " fill="rgb(255,208,0)" points="184.861,1513.94 188.475,1517.67 194.242,1515.07 " />
<svg:polygon detid="478316585" count="1" value="24" id="801122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward   stereo Id 478316585 " fill="rgb(255,208,0)" points="190.489,1511.21 195.623,1514.26 200.047,1510.87 " />
<svg:polygon detid="478283813" count="1" value="24" id="801123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward   stereo Id 478283813 " fill="rgb(255,208,0)" points="194.722,1507.7 201.024,1509.87 203.805,1505.92 " />
<svg:polygon detid="478314789" count="1" value="24" id="801124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward   stereo Id 478314789 " fill="rgb(255,208,0)" points="197.269,1503.68 204.311,1504.81 205.259,1500.57 " />
<svg:polygon detid="478314826" count="1" value="24" id="802001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314826 " fill="rgb(255,208,0)" points="214.347,1493.78 207.056,1494.96 208.013,1499.23 " />
<svg:polygon detid="478282054" count="1" value="24" id="802002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282054 " fill="rgb(255,208,0)" points="210.1,1487.24 203.575,1489.49 206.379,1493.47 " />
<svg:polygon detid="478315078" count="1" value="24" id="802003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315078 " fill="rgb(255,208,0)" points="203.12,1481.57 197.805,1484.73 202.265,1488.15 " />
<svg:polygon detid="478315082" count="1" value="24" id="802004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315082 " fill="rgb(255,208,0)" points="193.883,1477.16 190.14,1481.02 195.953,1483.64 " />
<svg:polygon detid="478282310" count="1" value="24" id="802005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282310 " fill="rgb(255,208,0)" points="183.019,1474.3 181.103,1478.6 187.872,1480.25 " />
<svg:polygon detid="478315334" count="1" value="24" id="802006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315334 " fill="rgb(255,208,0)" points="171.267,1473.19 171.309,1477.64 178.574,1478.2 " />
<svg:polygon detid="478315338" count="1" value="24" id="802007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315338 " fill="rgb(255,208,0)" points="159.429,1473.91 161.426,1478.2 168.691,1477.64 " />
<svg:polygon detid="478282566" count="1" value="24" id="802008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282566 " fill="rgb(255,208,0)" points="148.312,1476.41 152.128,1480.25 158.897,1478.6 " />
<svg:polygon detid="478315590" count="1" value="24" id="802009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315590 " fill="rgb(255,208,0)" points="138.672,1480.52 144.047,1483.64 149.86,1481.02 " />
<svg:polygon detid="478315594" count="1" value="24" id="802010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315594 " fill="rgb(255,208,0)" points="131.168,1485.95 137.735,1488.15 142.195,1484.73 " />
<svg:polygon detid="478282822" count="1" value="24" id="802011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282822 " fill="rgb(255,208,0)" points="126.309,1492.34 133.621,1493.47 136.425,1489.49 " />
<svg:polygon detid="478315846" count="1" value="24" id="802012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478315846 " fill="rgb(255,208,0)" points="124.429,1499.25 131.987,1499.23 132.944,1494.96 " />
<svg:polygon detid="478315850" count="1" value="24" id="802013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478315850 " fill="rgb(255,208,0)" points="125.653,1506.22 132.944,1505.04 131.987,1500.77 " />
<svg:polygon detid="478283078" count="1" value="24" id="802014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283078 " fill="rgb(255,208,0)" points="129.9,1512.76 136.425,1510.51 133.621,1506.53 " />
<svg:polygon detid="478316102" count="1" value="24" id="802015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316102 " fill="rgb(255,208,0)" points="136.88,1518.43 142.195,1515.27 137.735,1511.85 " />
<svg:polygon detid="478316106" count="1" value="24" id="802016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316106 " fill="rgb(255,208,0)" points="146.117,1522.84 149.86,1518.98 144.047,1516.36 " />
<svg:polygon detid="478283334" count="1" value="24" id="802017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283334 " fill="rgb(255,208,0)" points="156.981,1525.7 158.897,1521.4 152.128,1519.75 " />
<svg:polygon detid="478316358" count="1" value="24" id="802018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316358 " fill="rgb(255,208,0)" points="168.733,1526.81 168.691,1522.36 161.426,1521.8 " />
<svg:polygon detid="478316362" count="1" value="24" id="802019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316362 " fill="rgb(255,208,0)" points="180.571,1526.09 178.574,1521.8 171.309,1522.36 " />
<svg:polygon detid="478283590" count="1" value="24" id="802020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283590 " fill="rgb(255,208,0)" points="191.688,1523.59 187.872,1519.75 181.103,1521.4 " />
<svg:polygon detid="478316614" count="1" value="24" id="802021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316614 " fill="rgb(255,208,0)" points="201.328,1519.48 195.953,1516.36 190.14,1518.98 " />
<svg:polygon detid="478316618" count="1" value="24" id="802022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316618 " fill="rgb(255,208,0)" points="208.832,1514.05 202.265,1511.85 197.805,1515.27 " />
<svg:polygon detid="478283846" count="1" value="24" id="802023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478283846 " fill="rgb(255,208,0)" points="213.691,1507.66 206.379,1506.53 203.575,1510.51 " />
<svg:polygon detid="478314822" count="1" value="24" id="802024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314822 " fill="rgb(255,208,0)" points="215.571,1500.75 208.013,1500.77 207.056,1505.04 " />
<svg:polygon detid="478314825" count="1" value="24" id="802101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward   stereo Id 478314825 " fill="rgb(255,208,0)" points="208.013,1499.23 215.571,1499.25 214.347,1493.78 " />
<svg:polygon detid="478282053" count="1" value="24" id="802102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward   stereo Id 478282053 " fill="rgb(255,208,0)" points="206.379,1493.47 213.691,1492.34 210.1,1487.24 " />
<svg:polygon detid="478315077" count="1" value="24" id="802103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward   stereo Id 478315077 " fill="rgb(255,208,0)" points="202.265,1488.15 208.832,1485.95 203.12,1481.57 " />
<svg:polygon detid="478315081" count="1" value="24" id="802104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward   stereo Id 478315081 " fill="rgb(255,208,0)" points="195.953,1483.64 201.328,1480.52 193.883,1477.16 " />
<svg:polygon detid="478282309" count="1" value="24" id="802105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward   stereo Id 478282309 " fill="rgb(255,208,0)" points="187.872,1480.25 191.688,1476.41 183.019,1474.3 " />
<svg:polygon detid="478315333" count="1" value="24" id="802106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward   stereo Id 478315333 " fill="rgb(255,208,0)" points="178.574,1478.2 180.571,1473.91 171.267,1473.19 " />
<svg:polygon detid="478315337" count="1" value="24" id="802107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward   stereo Id 478315337 " fill="rgb(255,208,0)" points="168.691,1477.64 168.733,1473.19 159.429,1473.91 " />
<svg:polygon detid="478282565" count="1" value="24" id="802108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward   stereo Id 478282565 " fill="rgb(255,208,0)" points="158.897,1478.6 156.981,1474.3 148.312,1476.41 " />
<svg:polygon detid="478315589" count="1" value="24" id="802109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward   stereo Id 478315589 " fill="rgb(255,208,0)" points="149.86,1481.02 146.117,1477.16 138.672,1480.52 " />
<svg:polygon detid="478315593" count="1" value="24" id="802110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward   stereo Id 478315593 " fill="rgb(255,208,0)" points="142.195,1484.73 136.88,1481.57 131.168,1485.95 " />
<svg:polygon detid="478282821" count="1" value="24" id="802111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward   stereo Id 478282821 " fill="rgb(255,208,0)" points="136.425,1489.49 129.9,1487.24 126.309,1492.34 " />
<svg:polygon detid="478315845" count="1" value="24" id="802112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward   stereo Id 478315845 " fill="rgb(255,208,0)" points="132.944,1494.96 125.653,1493.78 124.429,1499.25 " />
<svg:polygon detid="478315849" count="1" value="24" id="802113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward   stereo Id 478315849 " fill="rgb(255,208,0)" points="131.987,1500.77 124.429,1500.75 125.653,1506.22 " />
<svg:polygon detid="478283077" count="1" value="24" id="802114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward   stereo Id 478283077 " fill="rgb(255,208,0)" points="133.621,1506.53 126.309,1507.66 129.9,1512.76 " />
<svg:polygon detid="478316101" count="1" value="24" id="802115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward   stereo Id 478316101 " fill="rgb(255,208,0)" points="137.735,1511.85 131.168,1514.05 136.88,1518.43 " />
<svg:polygon detid="478316105" count="1" value="24" id="802116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward   stereo Id 478316105 " fill="rgb(255,208,0)" points="144.047,1516.36 138.672,1519.48 146.117,1522.84 " />
<svg:polygon detid="478283333" count="1" value="24" id="802117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward   stereo Id 478283333 " fill="rgb(255,208,0)" points="152.128,1519.75 148.312,1523.59 156.981,1525.7 " />
<svg:polygon detid="478316357" count="1" value="24" id="802118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward   stereo Id 478316357 " fill="rgb(255,208,0)" points="161.426,1521.8 159.429,1526.09 168.733,1526.81 " />
<svg:polygon detid="478316361" count="1" value="24" id="802119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward   stereo Id 478316361 " fill="rgb(255,208,0)" points="171.309,1522.36 171.267,1526.81 180.571,1526.09 " />
<svg:polygon detid="478283589" count="1" value="24" id="802120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward   stereo Id 478283589 " fill="rgb(255,208,0)" points="181.103,1521.4 183.019,1525.7 191.688,1523.59 " />
<svg:polygon detid="478316613" count="1" value="24" id="802121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward   stereo Id 478316613 " fill="rgb(255,208,0)" points="190.14,1518.98 193.883,1522.84 201.328,1519.48 " />
<svg:polygon detid="478316617" count="1" value="24" id="802122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward   stereo Id 478316617 " fill="rgb(255,208,0)" points="197.805,1515.27 203.12,1518.43 208.832,1514.05 " />
<svg:polygon detid="478283845" count="1" value="24" id="802123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward   stereo Id 478283845 " fill="rgb(255,208,0)" points="203.575,1510.51 210.1,1512.76 213.691,1507.66 " />
<svg:polygon detid="478314821" count="1" value="24" id="802124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward   stereo Id 478314821 " fill="rgb(255,208,0)" points="207.056,1505.04 214.347,1506.22 215.571,1500.75 " />
<svg:polygon detid="478314852" count="1" value="24" id="803001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314852 " fill="rgb(255,208,0)" points="216.008,1501.57 225.409,1502.03 225.409,1497.97 216.008,1498.43 " />
<svg:polygon detid="478314856" count="1" value="24" id="803002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314856 " fill="rgb(255,208,0)" points="215.861,1497.32 225.267,1496.91 224.187,1492.9 215.023,1494.21 " />
<svg:polygon detid="478282084" count="1" value="24" id="803003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282084 " fill="rgb(255,208,0)" points="214.584,1493.13 223.764,1491.86 221.631,1488 212.929,1490.14 " />
<svg:polygon detid="478282088" count="1" value="24" id="803004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  2 forward    Id 478282088 " fill="rgb(255,208,0)" points="212.209,1489.12 220.937,1487.01 217.803,1483.39 209.778,1486.31 " />
<svg:polygon detid="478315108" count="1" value="24" id="803005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315108 " fill="rgb(255,208,0)" points="208.795,1485.37 216.856,1482.48 212.799,1479.2 205.648,1482.82 " />
<svg:polygon detid="478315112" count="1" value="24" id="803006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315112 " fill="rgb(255,208,0)" points="204.426,1481.98 211.621,1478.39 206.74,1475.52 200.64,1479.75 " />
<svg:polygon detid="478315116" count="1" value="24" id="803007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  3 forward    Id 478315116 " fill="rgb(255,208,0)" points="199.209,1479.03 205.361,1474.82 199.777,1472.44 194.877,1477.18 " />
<svg:polygon detid="478282340" count="1" value="24" id="803008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282340 " fill="rgb(255,208,0)" points="193.273,1476.6 198.23,1471.88 192.081,1470.04 188.502,1475.17 " />
<svg:polygon detid="478282344" count="1" value="24" id="803009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  2 forward    Id 478282344 " fill="rgb(255,208,0)" points="186.764,1474.75 190.405,1469.63 183.84,1468.37 181.671,1473.77 " />
<svg:polygon detid="478315364" count="1" value="24" id="803010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315364 " fill="rgb(255,208,0)" points="179.842,1473.52 182.076,1468.13 175.259,1467.49 174.553,1473.02 " />
<svg:polygon detid="478315368" count="1" value="24" id="803011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315368 " fill="rgb(255,208,0)" points="172.677,1472.94 173.451,1467.41 166.549,1467.41 167.323,1472.94 " />
<svg:polygon detid="478315372" count="1" value="24" id="803012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  3 forward    Id 478315372 " fill="rgb(255,208,0)" points="165.447,1473.02 164.741,1467.49 157.924,1468.13 160.158,1473.52 " />
<svg:polygon detid="478282596" count="1" value="24" id="803013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282596 " fill="rgb(255,208,0)" points="158.329,1473.77 156.16,1468.37 149.595,1469.63 153.236,1474.75 " />
<svg:polygon detid="478282600" count="1" value="24" id="803014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  2 forward    Id 478282600 " fill="rgb(255,208,0)" points="151.498,1475.17 147.919,1470.04 141.77,1471.88 146.727,1476.6 " />
<svg:polygon detid="478315620" count="1" value="24" id="803015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315620 " fill="rgb(255,208,0)" points="145.123,1477.18 140.223,1472.44 134.639,1474.82 140.791,1479.03 " />
<svg:polygon detid="478315624" count="1" value="24" id="803016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315624 " fill="rgb(255,208,0)" points="139.36,1479.75 133.26,1475.52 128.379,1478.39 135.574,1481.98 " />
<svg:polygon detid="478315628" count="1" value="24" id="803017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  3 forward    Id 478315628 " fill="rgb(255,208,0)" points="134.352,1482.82 127.201,1479.2 123.144,1482.48 131.205,1485.37 " />
<svg:polygon detid="478282852" count="1" value="24" id="803018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282852 " fill="rgb(255,208,0)" points="130.222,1486.31 122.197,1483.39 119.063,1487.01 127.791,1489.12 " />
<svg:polygon detid="478282856" count="1" value="24" id="803019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  2 forward    Id 478282856 " fill="rgb(255,208,0)" points="127.071,1490.14 118.369,1488 116.236,1491.86 125.416,1493.13 " />
<svg:polygon detid="478315876" count="1" value="24" id="803020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478315876 " fill="rgb(255,208,0)" points="124.977,1494.21 115.813,1492.9 114.733,1496.91 124.139,1497.32 " />
<svg:polygon detid="478315880" count="1" value="24" id="803021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478315880 " fill="rgb(255,208,0)" points="123.992,1498.43 114.591,1497.97 114.591,1502.03 123.992,1501.57 " />
<svg:polygon detid="478315884" count="1" value="24" id="803022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  3 forward    Id 478315884 " fill="rgb(255,208,0)" points="124.139,1502.68 114.733,1503.09 115.813,1507.1 124.977,1505.79 " />
<svg:polygon detid="478283108" count="1" value="24" id="803023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283108 " fill="rgb(255,208,0)" points="125.416,1506.87 116.236,1508.14 118.369,1512 127.071,1509.86 " />
<svg:polygon detid="478283112" count="1" value="24" id="803024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  2 forward    Id 478283112 " fill="rgb(255,208,0)" points="127.791,1510.88 119.063,1512.99 122.197,1516.61 130.222,1513.69 " />
<svg:polygon detid="478316132" count="1" value="24" id="803025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316132 " fill="rgb(255,208,0)" points="131.205,1514.63 123.144,1517.52 127.201,1520.8 134.352,1517.18 " />
<svg:polygon detid="478316136" count="1" value="24" id="803026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316136 " fill="rgb(255,208,0)" points="135.574,1518.02 128.379,1521.61 133.26,1524.48 139.36,1520.25 " />
<svg:polygon detid="478316140" count="1" value="24" id="803027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  3 forward    Id 478316140 " fill="rgb(255,208,0)" points="140.791,1520.97 134.639,1525.18 140.223,1527.56 145.123,1522.82 " />
<svg:polygon detid="478283364" count="1" value="24" id="803028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283364 " fill="rgb(255,208,0)" points="146.727,1523.4 141.77,1528.12 147.919,1529.96 151.498,1524.83 " />
<svg:polygon detid="478283368" count="1" value="24" id="803029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  2 forward    Id 478283368 " fill="rgb(255,208,0)" points="153.236,1525.25 149.595,1530.37 156.16,1531.63 158.329,1526.23 " />
<svg:polygon detid="478316388" count="1" value="24" id="803030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316388 " fill="rgb(255,208,0)" points="160.158,1526.48 157.924,1531.87 164.741,1532.51 165.447,1526.98 " />
<svg:polygon detid="478316392" count="1" value="24" id="803031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316392 " fill="rgb(255,208,0)" points="167.323,1527.06 166.549,1532.59 173.451,1532.59 172.677,1527.06 " />
<svg:polygon detid="478316396" count="1" value="24" id="803032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  3 forward    Id 478316396 " fill="rgb(255,208,0)" points="174.553,1526.98 175.259,1532.51 182.076,1531.87 179.842,1526.48 " />
<svg:polygon detid="478283620" count="1" value="24" id="803033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283620 " fill="rgb(255,208,0)" points="181.671,1526.23 183.84,1531.63 190.405,1530.37 186.764,1525.25 " />
<svg:polygon detid="478283624" count="1" value="24" id="803034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  2 forward    Id 478283624 " fill="rgb(255,208,0)" points="188.502,1524.83 192.081,1529.96 198.23,1528.12 193.273,1523.4 " />
<svg:polygon detid="478316644" count="1" value="24" id="803035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316644 " fill="rgb(255,208,0)" points="194.877,1522.82 199.777,1527.56 205.361,1525.18 199.209,1520.97 " />
<svg:polygon detid="478316648" count="1" value="24" id="803036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316648 " fill="rgb(255,208,0)" points="200.64,1520.25 206.74,1524.48 211.621,1521.61 204.426,1518.02 " />
<svg:polygon detid="478316652" count="1" value="24" id="803037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  3 forward    Id 478316652 " fill="rgb(255,208,0)" points="205.648,1517.18 212.799,1520.8 216.856,1517.52 208.795,1514.63 " />
<svg:polygon detid="478283876" count="1" value="24" id="803038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478283876 " fill="rgb(255,208,0)" points="209.778,1513.69 217.803,1516.61 220.937,1512.99 212.209,1510.88 " />
<svg:polygon detid="478283880" count="1" value="24" id="803039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  2 forward    Id 478283880 " fill="rgb(255,208,0)" points="212.929,1509.86 221.631,1512 223.764,1508.14 214.584,1506.87 " />
<svg:polygon detid="478314860" count="1" value="24" id="803040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  3 forward    Id 478314860 " fill="rgb(255,208,0)" points="215.023,1505.79 224.187,1507.1 225.267,1503.09 215.861,1502.68 " />
<svg:polygon detid="478314884" count="1" value="24" id="804001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314884 " fill="rgb(255,208,0)" points="228.822,1499.51 238.623,1499.52 238.282,1495.96 228.546,1496.62 " />
<svg:polygon detid="478314892" count="1" value="24" id="804002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  3 forward    Id 478314892 " fill="rgb(255,208,0)" points="228.359,1495.64 238.1,1495 237.083,1491.48 227.534,1492.78 " />
<svg:polygon detid="478282116" count="1" value="24" id="804003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282116 " fill="rgb(255,208,0)" points="227.161,1491.82 236.721,1490.55 235.041,1487.12 225.798,1489.04 " />
<svg:polygon detid="478282120" count="1" value="24" id="804004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  2 forward    Id 478282120 " fill="rgb(255,208,0)" points="225.244,1488.11 234.503,1486.22 232.18,1482.92 223.361,1485.43 " />
<svg:polygon detid="478282124" count="1" value="24" id="804005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  3 forward    Id 478282124 " fill="rgb(255,208,0)" points="222.633,1484.54 231.473,1482.05 228.538,1478.93 220.253,1482.01 " />
<svg:polygon detid="478315140" count="1" value="24" id="804006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315140 " fill="rgb(255,208,0)" points="219.36,1481.17 227.671,1478.12 224.159,1475.21 216.512,1478.81 " />
<svg:polygon detid="478315144" count="1" value="24" id="804007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315144 " fill="rgb(255,208,0)" points="215.466,1478.04 223.143,1474.46 219.099,1471.8 212.187,1475.88 " />
<svg:polygon detid="478315148" count="1" value="24" id="804008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  3 forward    Id 478315148 " fill="rgb(255,208,0)" points="211.001,1475.18 217.948,1471.12 213.422,1468.74 207.331,1473.26 " />
<svg:polygon detid="478315152" count="1" value="24" id="804009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  0 backward    Id 478315152 " fill="rgb(255,208,0)" points="206.019,1472.64 212.149,1468.14 207.199,1466.08 202.006,1470.96 " />
<svg:polygon detid="478282372" count="1" value="24" id="804010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282372 " fill="rgb(255,208,0)" points="200.585,1470.44 205.82,1465.57 200.508,1463.84 196.278,1469.04 " />
<svg:polygon detid="478282376" count="1" value="24" id="804011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  2 forward    Id 478282376 " fill="rgb(255,208,0)" points="194.766,1468.61 199.04,1463.42 193.433,1462.06 190.219,1467.5 " />
<svg:polygon detid="478282380" count="1" value="24" id="804012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  3 forward    Id 478282380 " fill="rgb(255,208,0)" points="188.636,1467.18 191.896,1461.74 186.064,1460.75 183.907,1466.38 " />
<svg:polygon detid="478315396" count="1" value="24" id="804013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315396 " fill="rgb(255,208,0)" points="182.271,1466.16 184.476,1460.54 178.493,1459.94 177.419,1465.67 " />
<svg:polygon detid="478315400" count="1" value="24" id="804014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315400 " fill="rgb(255,208,0)" points="175.753,1465.56 176.874,1459.83 170.814,1459.63 170.839,1465.4 " />
<svg:polygon detid="478315404" count="1" value="24" id="804015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  3 forward    Id 478315404 " fill="rgb(255,208,0)" points="169.161,1465.4 169.186,1459.63 163.126,1459.83 164.247,1465.56 " />
<svg:polygon detid="478315408" count="1" value="24" id="804016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  0 backward    Id 478315408 " fill="rgb(255,208,0)" points="162.581,1465.67 161.507,1459.94 155.524,1460.54 157.729,1466.16 " />
<svg:polygon detid="478282628" count="1" value="24" id="804017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282628 " fill="rgb(255,208,0)" points="156.093,1466.38 153.936,1460.75 148.104,1461.74 151.364,1467.18 " />
<svg:polygon detid="478282632" count="1" value="24" id="804018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  2 forward    Id 478282632 " fill="rgb(255,208,0)" points="149.781,1467.5 146.567,1462.06 140.96,1463.42 145.234,1468.61 " />
<svg:polygon detid="478282636" count="1" value="24" id="804019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  3 forward    Id 478282636 " fill="rgb(255,208,0)" points="143.722,1469.04 139.492,1463.84 134.18,1465.57 139.415,1470.44 " />
<svg:polygon detid="478315652" count="1" value="24" id="804020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315652 " fill="rgb(255,208,0)" points="137.994,1470.96 132.801,1466.08 127.851,1468.14 133.981,1472.64 " />
<svg:polygon detid="478315656" count="1" value="24" id="804021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315656 " fill="rgb(255,208,0)" points="132.669,1473.26 126.578,1468.74 122.052,1471.12 128.999,1475.18 " />
<svg:polygon detid="478315660" count="1" value="24" id="804022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  3 forward    Id 478315660 " fill="rgb(255,208,0)" points="127.813,1475.88 120.901,1471.8 116.857,1474.46 124.534,1478.04 " />
<svg:polygon detid="478315664" count="1" value="24" id="804023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  0 backward    Id 478315664 " fill="rgb(255,208,0)" points="123.488,1478.81 115.841,1475.21 112.329,1478.12 120.64,1481.17 " />
<svg:polygon detid="478282884" count="1" value="24" id="804024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282884 " fill="rgb(255,208,0)" points="119.747,1482.01 111.462,1478.93 108.527,1482.05 117.367,1484.54 " />
<svg:polygon detid="478282888" count="1" value="24" id="804025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  2 forward    Id 478282888 " fill="rgb(255,208,0)" points="116.639,1485.43 107.82,1482.92 105.497,1486.22 114.756,1488.11 " />
<svg:polygon detid="478282892" count="1" value="24" id="804026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  3 forward    Id 478282892 " fill="rgb(255,208,0)" points="114.202,1489.04 104.959,1487.12 103.279,1490.55 112.839,1491.82 " />
<svg:polygon detid="478315908" count="1" value="24" id="804027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478315908 " fill="rgb(255,208,0)" points="112.466,1492.78 102.917,1491.48 101.9,1495 111.641,1495.64 " />
<svg:polygon detid="478315912" count="1" value="24" id="804028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478315912 " fill="rgb(255,208,0)" points="111.454,1496.62 101.718,1495.96 101.377,1499.52 111.178,1499.51 " />
<svg:polygon detid="478315916" count="1" value="24" id="804029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  3 forward    Id 478315916 " fill="rgb(255,208,0)" points="111.178,1500.49 101.377,1500.48 101.718,1504.04 111.454,1503.38 " />
<svg:polygon detid="478315920" count="1" value="24" id="804030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  0 backward    Id 478315920 " fill="rgb(255,208,0)" points="111.641,1504.36 101.9,1505 102.917,1508.52 112.466,1507.22 " />
<svg:polygon detid="478283140" count="1" value="24" id="804031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283140 " fill="rgb(255,208,0)" points="112.839,1508.18 103.279,1509.45 104.959,1512.88 114.202,1510.96 " />
<svg:polygon detid="478283144" count="1" value="24" id="804032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  2 forward    Id 478283144 " fill="rgb(255,208,0)" points="114.756,1511.89 105.497,1513.78 107.82,1517.08 116.639,1514.57 " />
<svg:polygon detid="478283148" count="1" value="24" id="804033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  3 forward    Id 478283148 " fill="rgb(255,208,0)" points="117.367,1515.46 108.527,1517.95 111.462,1521.07 119.747,1517.99 " />
<svg:polygon detid="478316164" count="1" value="24" id="804034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316164 " fill="rgb(255,208,0)" points="120.64,1518.83 112.329,1521.88 115.841,1524.79 123.488,1521.19 " />
<svg:polygon detid="478316168" count="1" value="24" id="804035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316168 " fill="rgb(255,208,0)" points="124.534,1521.96 116.857,1525.54 120.901,1528.2 127.813,1524.12 " />
<svg:polygon detid="478316172" count="1" value="24" id="804036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  3 forward    Id 478316172 " fill="rgb(255,208,0)" points="128.999,1524.82 122.052,1528.88 126.578,1531.26 132.669,1526.74 " />
<svg:polygon detid="478316176" count="1" value="24" id="804037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  0 backward    Id 478316176 " fill="rgb(255,208,0)" points="133.981,1527.36 127.851,1531.86 132.801,1533.92 137.994,1529.04 " />
<svg:polygon detid="478283396" count="1" value="24" id="804038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283396 " fill="rgb(255,208,0)" points="139.415,1529.56 134.18,1534.43 139.492,1536.16 143.722,1530.96 " />
<svg:polygon detid="478283400" count="1" value="24" id="804039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  2 forward    Id 478283400 " fill="rgb(255,208,0)" points="145.234,1531.39 140.96,1536.58 146.567,1537.94 149.781,1532.5 " />
<svg:polygon detid="478283404" count="1" value="24" id="804040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  3 forward    Id 478283404 " fill="rgb(255,208,0)" points="151.364,1532.82 148.104,1538.26 153.936,1539.25 156.093,1533.62 " />
<svg:polygon detid="478316420" count="1" value="24" id="804041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316420 " fill="rgb(255,208,0)" points="157.729,1533.84 155.524,1539.46 161.507,1540.06 162.581,1534.33 " />
<svg:polygon detid="478316424" count="1" value="24" id="804042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316424 " fill="rgb(255,208,0)" points="164.247,1534.44 163.126,1540.17 169.186,1540.37 169.161,1534.6 " />
<svg:polygon detid="478316428" count="1" value="24" id="804043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  3 forward    Id 478316428 " fill="rgb(255,208,0)" points="170.839,1534.6 170.814,1540.37 176.874,1540.17 175.753,1534.44 " />
<svg:polygon detid="478316432" count="1" value="24" id="804044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  0 backward    Id 478316432 " fill="rgb(255,208,0)" points="177.419,1534.33 178.493,1540.06 184.476,1539.46 182.271,1533.84 " />
<svg:polygon detid="478283652" count="1" value="24" id="804045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283652 " fill="rgb(255,208,0)" points="183.907,1533.62 186.064,1539.25 191.896,1538.26 188.636,1532.82 " />
<svg:polygon detid="478283656" count="1" value="24" id="804046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  2 forward    Id 478283656 " fill="rgb(255,208,0)" points="190.219,1532.5 193.433,1537.94 199.04,1536.58 194.766,1531.39 " />
<svg:polygon detid="478283660" count="1" value="24" id="804047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  3 forward    Id 478283660 " fill="rgb(255,208,0)" points="196.278,1530.96 200.508,1536.16 205.82,1534.43 200.585,1529.56 " />
<svg:polygon detid="478316676" count="1" value="24" id="804048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316676 " fill="rgb(255,208,0)" points="202.006,1529.04 207.199,1533.92 212.149,1531.86 206.019,1527.36 " />
<svg:polygon detid="478316680" count="1" value="24" id="804049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316680 " fill="rgb(255,208,0)" points="207.331,1526.74 213.422,1531.26 217.948,1528.88 211.001,1524.82 " />
<svg:polygon detid="478316684" count="1" value="24" id="804050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  3 forward    Id 478316684 " fill="rgb(255,208,0)" points="212.187,1524.12 219.099,1528.2 223.143,1525.54 215.466,1521.96 " />
<svg:polygon detid="478316688" count="1" value="24" id="804051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  0 backward    Id 478316688 " fill="rgb(255,208,0)" points="216.512,1521.19 224.159,1524.79 227.671,1521.88 219.36,1518.83 " />
<svg:polygon detid="478283908" count="1" value="24" id="804052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478283908 " fill="rgb(255,208,0)" points="220.253,1517.99 228.538,1521.07 231.473,1517.95 222.633,1515.46 " />
<svg:polygon detid="478283912" count="1" value="24" id="804053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  2 forward    Id 478283912 " fill="rgb(255,208,0)" points="223.361,1514.57 232.18,1517.08 234.503,1513.78 225.244,1511.89 " />
<svg:polygon detid="478283916" count="1" value="24" id="804054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  3 forward    Id 478283916 " fill="rgb(255,208,0)" points="225.798,1510.96 235.041,1512.88 236.721,1509.45 227.161,1508.18 " />
<svg:polygon detid="478314896" count="1" value="24" id="804055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  0 backward    Id 478314896 " fill="rgb(255,208,0)" points="227.534,1507.22 237.083,1508.52 238.1,1505 228.359,1504.36 " />
<svg:polygon detid="478314888" count="1" value="24" id="804056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314888 " fill="rgb(255,208,0)" points="228.546,1503.38 238.282,1504.04 238.623,1500.48 228.822,1500.49 " />
<svg:polygon detid="478314918" count="1" value="24" id="805001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314918 " fill="rgb(255,208,0)" points="252.313,1493.17 239.92,1494.35 240.562,1499.15 " />
<svg:polygon detid="478282150" count="1" value="24" id="805002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282150 " fill="rgb(255,208,0)" points="249.484,1485.68 237.556,1487.98 239.467,1492.67 " />
<svg:polygon detid="478282154" count="1" value="24" id="805003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  2 forward    Id 478282154 " fill="rgb(255,208,0)" points="244.698,1478.54 233.528,1481.92 236.661,1486.36 " />
<svg:polygon detid="478282158" count="1" value="24" id="805004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  3 forward    Id 478282158 " fill="rgb(255,208,0)" points="238.072,1471.93 227.937,1476.29 232.214,1480.4 " />
<svg:polygon detid="478315174" count="1" value="24" id="805005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315174 " fill="rgb(255,208,0)" points="229.77,1466.02 220.919,1471.25 226.235,1474.91 " />
<svg:polygon detid="478315178" count="1" value="24" id="805006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315178 " fill="rgb(255,208,0)" points="219.997,1460.93 212.647,1466.92 218.871,1470.05 " />
<svg:polygon detid="478282406" count="1" value="24" id="805007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282406 " fill="rgb(255,208,0)" points="208.992,1456.81 203.324,1463.4 210.304,1465.92 " />
<svg:polygon detid="478282410" count="1" value="24" id="805008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  2 forward    Id 478282410 " fill="rgb(255,208,0)" points="197.028,1453.76 193.182,1460.79 200.744,1462.63 " />
<svg:polygon detid="478282414" count="1" value="24" id="805009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  3 forward    Id 478282414 " fill="rgb(255,208,0)" points="184.397,1451.84 182.468,1459.14 190.428,1460.26 " />
<svg:polygon detid="478315430" count="1" value="24" id="805010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315430 " fill="rgb(255,208,0)" points="171.413,1451.11 171.448,1458.49 179.608,1458.87 " />
<svg:polygon detid="478315434" count="1" value="24" id="805011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315434 " fill="rgb(255,208,0)" points="158.393,1451.58 160.392,1458.87 168.552,1458.49 " />
<svg:polygon detid="478282662" count="1" value="24" id="805012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282662 " fill="rgb(255,208,0)" points="145.66,1453.24 149.572,1460.26 157.532,1459.14 " />
<svg:polygon detid="478282666" count="1" value="24" id="805013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  2 forward    Id 478282666 " fill="rgb(255,208,0)" points="133.525,1456.06 139.256,1462.63 146.818,1460.79 " />
<svg:polygon detid="478282670" count="1" value="24" id="805014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  3 forward    Id 478282670 " fill="rgb(255,208,0)" points="122.289,1459.96 129.696,1465.92 136.676,1463.4 " />
<svg:polygon detid="478315686" count="1" value="24" id="805015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315686 " fill="rgb(255,208,0)" points="112.228,1464.84 121.129,1470.05 127.353,1466.92 " />
<svg:polygon detid="478315690" count="1" value="24" id="805016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315690 " fill="rgb(255,208,0)" points="103.589,1470.59 113.765,1474.91 119.081,1471.25 " />
<svg:polygon detid="478282918" count="1" value="24" id="805017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282918 " fill="rgb(255,208,0)" points="96.5852,1477.06 107.786,1480.4 112.063,1476.29 " />
<svg:polygon detid="478282922" count="1" value="24" id="805018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  2 forward    Id 478282922 " fill="rgb(255,208,0)" points="91.3893,1484.1 103.339,1486.36 106.472,1481.92 " />
<svg:polygon detid="478282926" count="1" value="24" id="805019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  3 forward    Id 478282926 " fill="rgb(255,208,0)" points="88.129,1491.53 100.533,1492.67 102.444,1487.98 " />
<svg:polygon detid="478315942" count="1" value="24" id="805020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478315942 " fill="rgb(255,208,0)" points="86.8848,1499.17 99.4383,1499.15 100.08,1494.35 " />
<svg:polygon detid="478315946" count="1" value="24" id="805021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478315946 " fill="rgb(255,208,0)" points="87.6871,1506.83 100.08,1505.65 99.4383,1500.85 " />
<svg:polygon detid="478283174" count="1" value="24" id="805022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283174 " fill="rgb(255,208,0)" points="90.5161,1514.32 102.444,1512.02 100.533,1507.33 " />
<svg:polygon detid="478283178" count="1" value="24" id="805023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  2 forward    Id 478283178 " fill="rgb(255,208,0)" points="95.3024,1521.46 106.472,1518.08 103.339,1513.64 " />
<svg:polygon detid="478283182" count="1" value="24" id="805024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  3 forward    Id 478283182 " fill="rgb(255,208,0)" points="101.928,1528.07 112.063,1523.71 107.786,1519.6 " />
<svg:polygon detid="478316198" count="1" value="24" id="805025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316198 " fill="rgb(255,208,0)" points="110.23,1533.98 119.081,1528.75 113.765,1525.09 " />
<svg:polygon detid="478316202" count="1" value="24" id="805026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316202 " fill="rgb(255,208,0)" points="120.003,1539.07 127.353,1533.08 121.129,1529.95 " />
<svg:polygon detid="478283430" count="1" value="24" id="805027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283430 " fill="rgb(255,208,0)" points="131.008,1543.19 136.676,1536.6 129.696,1534.08 " />
<svg:polygon detid="478283434" count="1" value="24" id="805028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  2 forward    Id 478283434 " fill="rgb(255,208,0)" points="142.972,1546.24 146.818,1539.21 139.256,1537.37 " />
<svg:polygon detid="478283438" count="1" value="24" id="805029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  3 forward    Id 478283438 " fill="rgb(255,208,0)" points="155.603,1548.16 157.532,1540.86 149.572,1539.74 " />
<svg:polygon detid="478316454" count="1" value="24" id="805030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316454 " fill="rgb(255,208,0)" points="168.587,1548.89 168.552,1541.51 160.392,1541.13 " />
<svg:polygon detid="478316458" count="1" value="24" id="805031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316458 " fill="rgb(255,208,0)" points="181.607,1548.42 179.608,1541.13 171.448,1541.51 " />
<svg:polygon detid="478283686" count="1" value="24" id="805032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283686 " fill="rgb(255,208,0)" points="194.34,1546.76 190.428,1539.74 182.468,1540.86 " />
<svg:polygon detid="478283690" count="1" value="24" id="805033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  2 forward    Id 478283690 " fill="rgb(255,208,0)" points="206.475,1543.94 200.744,1537.37 193.182,1539.21 " />
<svg:polygon detid="478283694" count="1" value="24" id="805034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  3 forward    Id 478283694 " fill="rgb(255,208,0)" points="217.711,1540.04 210.304,1534.08 203.324,1536.6 " />
<svg:polygon detid="478316710" count="1" value="24" id="805035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316710 " fill="rgb(255,208,0)" points="227.772,1535.16 218.871,1529.95 212.647,1533.08 " />
<svg:polygon detid="478316714" count="1" value="24" id="805036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316714 " fill="rgb(255,208,0)" points="236.411,1529.41 226.235,1525.09 220.919,1528.75 " />
<svg:polygon detid="478283942" count="1" value="24" id="805037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478283942 " fill="rgb(255,208,0)" points="243.415,1522.94 232.214,1519.6 227.937,1523.71 " />
<svg:polygon detid="478283946" count="1" value="24" id="805038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  2 forward    Id 478283946 " fill="rgb(255,208,0)" points="248.611,1515.9 236.661,1513.64 233.528,1518.08 " />
<svg:polygon detid="478283950" count="1" value="24" id="805039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  3 forward    Id 478283950 " fill="rgb(255,208,0)" points="251.871,1508.47 239.467,1507.33 237.556,1512.02 " />
<svg:polygon detid="478314922" count="1" value="24" id="805040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314922 " fill="rgb(255,208,0)" points="253.115,1500.83 240.562,1500.85 239.92,1505.65 " />
<svg:polygon detid="478314917" count="1" value="24" id="805101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward   stereo Id 478314917 " fill="rgb(255,208,0)" points="240.562,1499.15 253.115,1499.17 252.313,1493.17 " />
<svg:polygon detid="478282149" count="1" value="24" id="805102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward   stereo Id 478282149 " fill="rgb(255,208,0)" points="239.467,1492.67 251.871,1491.53 249.484,1485.68 " />
<svg:polygon detid="478282153" count="1" value="24" id="805103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  2 forward   stereo Id 478282153 " fill="rgb(255,208,0)" points="236.661,1486.36 248.611,1484.1 244.698,1478.54 " />
<svg:polygon detid="478282157" count="1" value="24" id="805104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  3 forward   stereo Id 478282157 " fill="rgb(255,208,0)" points="232.214,1480.4 243.415,1477.06 238.072,1471.93 " />
<svg:polygon detid="478315173" count="1" value="24" id="805105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward   stereo Id 478315173 " fill="rgb(255,208,0)" points="226.235,1474.91 236.411,1470.59 229.77,1466.02 " />
<svg:polygon detid="478315177" count="1" value="24" id="805106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward   stereo Id 478315177 " fill="rgb(255,208,0)" points="218.871,1470.05 227.772,1464.84 219.997,1460.93 " />
<svg:polygon detid="478282405" count="1" value="24" id="805107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward   stereo Id 478282405 " fill="rgb(255,208,0)" points="210.304,1465.92 217.711,1459.96 208.992,1456.81 " />
<svg:polygon detid="478282409" count="1" value="24" id="805108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  2 forward   stereo Id 478282409 " fill="rgb(255,208,0)" points="200.744,1462.63 206.475,1456.06 197.028,1453.76 " />
<svg:polygon detid="478282413" count="1" value="24" id="805109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  3 forward   stereo Id 478282413 " fill="rgb(255,208,0)" points="190.428,1460.26 194.34,1453.24 184.397,1451.84 " />
<svg:polygon detid="478315429" count="1" value="24" id="805110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward   stereo Id 478315429 " fill="rgb(255,208,0)" points="179.608,1458.87 181.607,1451.58 171.413,1451.11 " />
<svg:polygon detid="478315433" count="1" value="24" id="805111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward   stereo Id 478315433 " fill="rgb(255,208,0)" points="168.552,1458.49 168.587,1451.11 158.393,1451.58 " />
<svg:polygon detid="478282661" count="1" value="24" id="805112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward   stereo Id 478282661 " fill="rgb(255,208,0)" points="157.532,1459.14 155.603,1451.84 145.66,1453.24 " />
<svg:polygon detid="478282665" count="1" value="24" id="805113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  2 forward   stereo Id 478282665 " fill="rgb(255,208,0)" points="146.818,1460.79 142.972,1453.76 133.525,1456.06 " />
<svg:polygon detid="478282669" count="1" value="24" id="805114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  3 forward   stereo Id 478282669 " fill="rgb(255,208,0)" points="136.676,1463.4 131.008,1456.81 122.289,1459.96 " />
<svg:polygon detid="478315685" count="1" value="24" id="805115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward   stereo Id 478315685 " fill="rgb(255,208,0)" points="127.353,1466.92 120.003,1460.93 112.228,1464.84 " />
<svg:polygon detid="478315689" count="1" value="24" id="805116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward   stereo Id 478315689 " fill="rgb(255,208,0)" points="119.081,1471.25 110.23,1466.02 103.589,1470.59 " />
<svg:polygon detid="478282917" count="1" value="24" id="805117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward   stereo Id 478282917 " fill="rgb(255,208,0)" points="112.063,1476.29 101.928,1471.93 96.5852,1477.06 " />
<svg:polygon detid="478282921" count="1" value="24" id="805118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  2 forward   stereo Id 478282921 " fill="rgb(255,208,0)" points="106.472,1481.92 95.3024,1478.54 91.3893,1484.1 " />
<svg:polygon detid="478282925" count="1" value="24" id="805119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  3 forward   stereo Id 478282925 " fill="rgb(255,208,0)" points="102.444,1487.98 90.5161,1485.68 88.129,1491.53 " />
<svg:polygon detid="478315941" count="1" value="24" id="805120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward   stereo Id 478315941 " fill="rgb(255,208,0)" points="100.08,1494.35 87.6871,1493.17 86.8848,1499.17 " />
<svg:polygon detid="478315945" count="1" value="24" id="805121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward   stereo Id 478315945 " fill="rgb(255,208,0)" points="99.4383,1500.85 86.8848,1500.83 87.6871,1506.83 " />
<svg:polygon detid="478283173" count="1" value="24" id="805122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward   stereo Id 478283173 " fill="rgb(255,208,0)" points="100.533,1507.33 88.129,1508.47 90.5161,1514.32 " />
<svg:polygon detid="478283177" count="1" value="24" id="805123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  2 forward   stereo Id 478283177 " fill="rgb(255,208,0)" points="103.339,1513.64 91.3893,1515.9 95.3024,1521.46 " />
<svg:polygon detid="478283181" count="1" value="24" id="805124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  3 forward   stereo Id 478283181 " fill="rgb(255,208,0)" points="107.786,1519.6 96.5852,1522.94 101.928,1528.07 " />
<svg:polygon detid="478316197" count="1" value="24" id="805125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward   stereo Id 478316197 " fill="rgb(255,208,0)" points="113.765,1525.09 103.589,1529.41 110.23,1533.98 " />
<svg:polygon detid="478316201" count="1" value="24" id="805126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward   stereo Id 478316201 " fill="rgb(255,208,0)" points="121.129,1529.95 112.228,1535.16 120.003,1539.07 " />
<svg:polygon detid="478283429" count="1" value="24" id="805127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward   stereo Id 478283429 " fill="rgb(255,208,0)" points="129.696,1534.08 122.289,1540.04 131.008,1543.19 " />
<svg:polygon detid="478283433" count="1" value="24" id="805128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  2 forward   stereo Id 478283433 " fill="rgb(255,208,0)" points="139.256,1537.37 133.525,1543.94 142.972,1546.24 " />
<svg:polygon detid="478283437" count="1" value="24" id="805129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  3 forward   stereo Id 478283437 " fill="rgb(255,208,0)" points="149.572,1539.74 145.66,1546.76 155.603,1548.16 " />
<svg:polygon detid="478316453" count="1" value="24" id="805130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward   stereo Id 478316453 " fill="rgb(255,208,0)" points="160.392,1541.13 158.393,1548.42 168.587,1548.89 " />
<svg:polygon detid="478316457" count="1" value="24" id="805131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward   stereo Id 478316457 " fill="rgb(255,208,0)" points="171.448,1541.51 171.413,1548.89 181.607,1548.42 " />
<svg:polygon detid="478283685" count="1" value="24" id="805132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward   stereo Id 478283685 " fill="rgb(255,208,0)" points="182.468,1540.86 184.397,1548.16 194.34,1546.76 " />
<svg:polygon detid="478283689" count="1" value="24" id="805133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  2 forward   stereo Id 478283689 " fill="rgb(255,208,0)" points="193.182,1539.21 197.028,1546.24 206.475,1543.94 " />
<svg:polygon detid="478283693" count="1" value="24" id="805134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  3 forward   stereo Id 478283693 " fill="rgb(255,208,0)" points="203.324,1536.6 208.992,1543.19 217.711,1540.04 " />
<svg:polygon detid="478316709" count="1" value="24" id="805135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward   stereo Id 478316709 " fill="rgb(255,208,0)" points="212.647,1533.08 219.997,1539.07 227.772,1535.16 " />
<svg:polygon detid="478316713" count="1" value="24" id="805136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward   stereo Id 478316713 " fill="rgb(255,208,0)" points="220.919,1528.75 229.77,1533.98 236.411,1529.41 " />
<svg:polygon detid="478283941" count="1" value="24" id="805137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward   stereo Id 478283941 " fill="rgb(255,208,0)" points="227.937,1523.71 238.072,1528.07 243.415,1522.94 " />
<svg:polygon detid="478283945" count="1" value="24" id="805138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  2 forward   stereo Id 478283945 " fill="rgb(255,208,0)" points="233.528,1518.08 244.698,1521.46 248.611,1515.9 " />
<svg:polygon detid="478283949" count="1" value="24" id="805139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  3 forward   stereo Id 478283949 " fill="rgb(255,208,0)" points="237.556,1512.02 249.484,1514.32 251.871,1508.47 " />
<svg:polygon detid="478314921" count="1" value="24" id="805140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward   stereo Id 478314921 " fill="rgb(255,208,0)" points="239.92,1505.65 252.313,1506.83 253.115,1500.83 " />
<svg:polygon detid="478314948" count="1" value="24" id="806001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314948 " fill="rgb(255,208,0)" points="255.048,1499.28 270.706,1499.3 270.206,1494.06 254.65,1495.12 " />
<svg:polygon detid="478314956" count="1" value="24" id="806002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  3 forward    Id 478314956 " fill="rgb(255,208,0)" points="254.376,1493.68 269.939,1492.67 268.446,1487.5 253.188,1489.57 " />
<svg:polygon detid="478282180" count="1" value="24" id="806003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282180 " fill="rgb(255,208,0)" points="252.643,1488.16 267.916,1486.14 265.448,1481.1 250.68,1484.16 " />
<svg:polygon detid="478282184" count="1" value="24" id="806004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  2 forward    Id 478282184 " fill="rgb(255,208,0)" points="249.87,1482.8 264.662,1479.77 261.249,1474.93 247.157,1478.94 " />
<svg:polygon detid="478282188" count="1" value="24" id="806005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  3 forward    Id 478282188 " fill="rgb(255,208,0)" points="246.093,1477.64 260.216,1473.67 255.903,1469.08 242.664,1473.99 " />
<svg:polygon detid="478315204" count="1" value="24" id="806006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315204 " fill="rgb(255,208,0)" points="241.36,1472.77 254.637,1467.89 249.477,1463.61 237.257,1469.37 " />
<svg:polygon detid="478315208" count="1" value="24" id="806007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315208 " fill="rgb(255,208,0)" points="235.729,1468.24 247.993,1462.52 242.051,1458.61 231.005,1465.13 " />
<svg:polygon detid="478315212" count="1" value="24" id="806008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  3 forward    Id 478315212 " fill="rgb(255,208,0)" points="229.271,1464.11 240.368,1457.62 233.72,1454.12 223.985,1461.34 " />
<svg:polygon detid="478315216" count="1" value="24" id="806009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  0 backward    Id 478315216 " fill="rgb(255,208,0)" points="222.068,1460.44 231.859,1453.25 224.587,1450.21 216.286,1458.02 " />
<svg:polygon detid="478282436" count="1" value="24" id="806010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282436 " fill="rgb(255,208,0)" points="214.21,1457.26 222.571,1449.47 214.767,1446.93 208.006,1455.24 " />
<svg:polygon detid="478282440" count="1" value="24" id="806011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  2 forward    Id 478282440 " fill="rgb(255,208,0)" points="205.796,1454.61 212.622,1446.32 204.385,1444.32 199.247,1453.02 " />
<svg:polygon detid="478282444" count="1" value="24" id="806012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  3 forward    Id 478282444 " fill="rgb(255,208,0)" points="196.932,1452.54 202.138,1443.85 193.57,1442.4 190.12,1451.39 " />
<svg:polygon detid="478315460" count="1" value="24" id="806013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315460 " fill="rgb(255,208,0)" points="187.73,1451.07 191.249,1442.09 182.458,1441.21 180.741,1450.37 " />
<svg:polygon detid="478315464" count="1" value="24" id="806014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315464 " fill="rgb(255,208,0)" points="178.304,1450.21 180.093,1441.06 171.19,1440.76 171.226,1449.97 " />
<svg:polygon detid="478315468" count="1" value="24" id="806015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  3 forward    Id 478315468 " fill="rgb(255,208,0)" points="168.774,1449.97 168.81,1440.76 159.907,1441.06 161.696,1450.21 " />
<svg:polygon detid="478315472" count="1" value="24" id="806016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  0 backward    Id 478315472 " fill="rgb(255,208,0)" points="159.259,1450.37 157.542,1441.21 148.751,1442.09 152.27,1451.07 " />
<svg:polygon detid="478282692" count="1" value="24" id="806017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282692 " fill="rgb(255,208,0)" points="149.88,1451.39 146.43,1442.4 137.862,1443.85 143.068,1452.54 " />
<svg:polygon detid="478282696" count="1" value="24" id="806018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  2 forward    Id 478282696 " fill="rgb(255,208,0)" points="140.753,1453.02 135.615,1444.32 127.378,1446.32 134.204,1454.61 " />
<svg:polygon detid="478282700" count="1" value="24" id="806019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  3 forward    Id 478282700 " fill="rgb(255,208,0)" points="131.994,1455.24 125.233,1446.93 117.429,1449.47 125.79,1457.26 " />
<svg:polygon detid="478315716" count="1" value="24" id="806020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315716 " fill="rgb(255,208,0)" points="123.714,1458.02 115.413,1450.21 108.141,1453.25 117.932,1460.44 " />
<svg:polygon detid="478315720" count="1" value="24" id="806021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315720 " fill="rgb(255,208,0)" points="116.015,1461.34 106.28,1454.12 99.6318,1457.62 110.729,1464.11 " />
<svg:polygon detid="478315724" count="1" value="24" id="806022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  3 forward    Id 478315724 " fill="rgb(255,208,0)" points="108.995,1465.13 97.9486,1458.61 92.0071,1462.52 104.271,1468.24 " />
<svg:polygon detid="478315728" count="1" value="24" id="806023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  0 backward    Id 478315728 " fill="rgb(255,208,0)" points="102.743,1469.37 90.5229,1463.61 85.3632,1467.89 98.6404,1472.77 " />
<svg:polygon detid="478282948" count="1" value="24" id="806024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282948 " fill="rgb(255,208,0)" points="97.3356,1473.99 84.0966,1469.08 79.7835,1473.67 93.9066,1477.64 " />
<svg:polygon detid="478282952" count="1" value="24" id="806025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  2 forward    Id 478282952 " fill="rgb(255,208,0)" points="92.8426,1478.94 78.7507,1474.93 75.3385,1479.77 90.1298,1482.8 " />
<svg:polygon detid="478282956" count="1" value="24" id="806026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  3 forward    Id 478282956 " fill="rgb(255,208,0)" points="89.3198,1484.16 74.5522,1481.1 72.0838,1486.14 87.3574,1488.16 " />
<svg:polygon detid="478315972" count="1" value="24" id="806027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478315972 " fill="rgb(255,208,0)" points="86.8117,1489.57 71.5541,1487.5 70.0606,1492.67 85.6243,1493.68 " />
<svg:polygon detid="478315976" count="1" value="24" id="806028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478315976 " fill="rgb(255,208,0)" points="85.3497,1495.12 69.794,1494.06 69.2941,1499.3 84.9522,1499.28 " />
<svg:polygon detid="478315980" count="1" value="24" id="806029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  3 forward    Id 478315980 " fill="rgb(255,208,0)" points="84.9522,1500.72 69.2941,1500.7 69.794,1505.94 85.3497,1504.88 " />
<svg:polygon detid="478315984" count="1" value="24" id="806030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  0 backward    Id 478315984 " fill="rgb(255,208,0)" points="85.6243,1506.32 70.0606,1507.33 71.5541,1512.5 86.8117,1510.43 " />
<svg:polygon detid="478283204" count="1" value="24" id="806031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283204 " fill="rgb(255,208,0)" points="87.3574,1511.84 72.0838,1513.86 74.5522,1518.9 89.3198,1515.84 " />
<svg:polygon detid="478283208" count="1" value="24" id="806032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  2 forward    Id 478283208 " fill="rgb(255,208,0)" points="90.1298,1517.2 75.3385,1520.23 78.7507,1525.07 92.8426,1521.06 " />
<svg:polygon detid="478283212" count="1" value="24" id="806033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  3 forward    Id 478283212 " fill="rgb(255,208,0)" points="93.9066,1522.36 79.7835,1526.33 84.0966,1530.92 97.3356,1526.01 " />
<svg:polygon detid="478316228" count="1" value="24" id="806034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316228 " fill="rgb(255,208,0)" points="98.6404,1527.23 85.3632,1532.11 90.5229,1536.39 102.743,1530.63 " />
<svg:polygon detid="478316232" count="1" value="24" id="806035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316232 " fill="rgb(255,208,0)" points="104.271,1531.76 92.0071,1537.48 97.9486,1541.39 108.995,1534.87 " />
<svg:polygon detid="478316236" count="1" value="24" id="806036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  3 forward    Id 478316236 " fill="rgb(255,208,0)" points="110.729,1535.89 99.6318,1542.38 106.28,1545.88 116.015,1538.66 " />
<svg:polygon detid="478316240" count="1" value="24" id="806037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  0 backward    Id 478316240 " fill="rgb(255,208,0)" points="117.932,1539.56 108.141,1546.75 115.413,1549.79 123.714,1541.98 " />
<svg:polygon detid="478283460" count="1" value="24" id="806038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283460 " fill="rgb(255,208,0)" points="125.79,1542.74 117.429,1550.53 125.233,1553.07 131.994,1544.76 " />
<svg:polygon detid="478283464" count="1" value="24" id="806039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  2 forward    Id 478283464 " fill="rgb(255,208,0)" points="134.204,1545.39 127.378,1553.68 135.615,1555.68 140.753,1546.98 " />
<svg:polygon detid="478283468" count="1" value="24" id="806040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  3 forward    Id 478283468 " fill="rgb(255,208,0)" points="143.068,1547.46 137.862,1556.15 146.43,1557.6 149.88,1548.61 " />
<svg:polygon detid="478316484" count="1" value="24" id="806041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316484 " fill="rgb(255,208,0)" points="152.27,1548.93 148.751,1557.91 157.542,1558.79 159.259,1549.63 " />
<svg:polygon detid="478316488" count="1" value="24" id="806042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316488 " fill="rgb(255,208,0)" points="161.696,1549.79 159.907,1558.94 168.81,1559.24 168.774,1550.03 " />
<svg:polygon detid="478316492" count="1" value="24" id="806043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  3 forward    Id 478316492 " fill="rgb(255,208,0)" points="171.226,1550.03 171.19,1559.24 180.093,1558.94 178.304,1549.79 " />
<svg:polygon detid="478316496" count="1" value="24" id="806044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  0 backward    Id 478316496 " fill="rgb(255,208,0)" points="180.741,1549.63 182.458,1558.79 191.249,1557.91 187.73,1548.93 " />
<svg:polygon detid="478283716" count="1" value="24" id="806045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283716 " fill="rgb(255,208,0)" points="190.12,1548.61 193.57,1557.6 202.138,1556.15 196.932,1547.46 " />
<svg:polygon detid="478283720" count="1" value="24" id="806046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  2 forward    Id 478283720 " fill="rgb(255,208,0)" points="199.247,1546.98 204.385,1555.68 212.622,1553.68 205.796,1545.39 " />
<svg:polygon detid="478283724" count="1" value="24" id="806047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  3 forward    Id 478283724 " fill="rgb(255,208,0)" points="208.006,1544.76 214.767,1553.07 222.571,1550.53 214.21,1542.74 " />
<svg:polygon detid="478316740" count="1" value="24" id="806048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316740 " fill="rgb(255,208,0)" points="216.286,1541.98 224.587,1549.79 231.859,1546.75 222.068,1539.56 " />
<svg:polygon detid="478316744" count="1" value="24" id="806049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316744 " fill="rgb(255,208,0)" points="223.985,1538.66 233.72,1545.88 240.368,1542.38 229.271,1535.89 " />
<svg:polygon detid="478316748" count="1" value="24" id="806050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  3 forward    Id 478316748 " fill="rgb(255,208,0)" points="231.005,1534.87 242.051,1541.39 247.993,1537.48 235.729,1531.76 " />
<svg:polygon detid="478316752" count="1" value="24" id="806051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  0 backward    Id 478316752 " fill="rgb(255,208,0)" points="237.257,1530.63 249.477,1536.39 254.637,1532.11 241.36,1527.23 " />
<svg:polygon detid="478283972" count="1" value="24" id="806052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478283972 " fill="rgb(255,208,0)" points="242.664,1526.01 255.903,1530.92 260.216,1526.33 246.093,1522.36 " />
<svg:polygon detid="478283976" count="1" value="24" id="806053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  2 forward    Id 478283976 " fill="rgb(255,208,0)" points="247.157,1521.06 261.249,1525.07 264.662,1520.23 249.87,1517.2 " />
<svg:polygon detid="478283980" count="1" value="24" id="806054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  3 forward    Id 478283980 " fill="rgb(255,208,0)" points="250.68,1515.84 265.448,1518.9 267.916,1513.86 252.643,1511.84 " />
<svg:polygon detid="478314960" count="1" value="24" id="806055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  0 backward    Id 478314960 " fill="rgb(255,208,0)" points="253.188,1510.43 268.446,1512.5 269.939,1507.33 254.376,1506.32 " />
<svg:polygon detid="478314952" count="1" value="24" id="806056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314952 " fill="rgb(255,208,0)" points="254.65,1504.88 270.206,1505.94 270.706,1500.7 255.048,1500.72 " />
<svg:polygon detid="478314980" count="1" value="24" id="807001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 forward    Id 478314980 " fill="rgb(255,208,0)" points="273.723,1501.79 291.123,1502.21 291.123,1497.79 273.723,1498.21 " />
<svg:polygon detid="478314988" count="1" value="24" id="807002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  3 forward    Id 478314988 " fill="rgb(255,208,0)" points="273.642,1496.99 291.043,1496.61 290.455,1492.21 273.165,1493.43 " />
<svg:polygon detid="478314992" count="1" value="24" id="807003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  0 backward    Id 478314992 " fill="rgb(255,208,0)" points="272.921,1492.22 290.218,1491.03 289.045,1486.68 271.971,1488.69 " />
<svg:polygon detid="478282212" count="1" value="24" id="807004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 forward    Id 478282212 " fill="rgb(255,208,0)" points="271.567,1487.49 288.651,1485.51 286.901,1481.22 270.148,1484.02 " />
<svg:polygon detid="478282216" count="1" value="24" id="807005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  2 forward    Id 478282216 " fill="rgb(255,208,0)" points="269.586,1482.85 286.353,1480.08 284.036,1475.89 267.708,1479.45 " />
<svg:polygon detid="478282220" count="1" value="24" id="807006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  3 forward    Id 478282220 " fill="rgb(255,208,0)" points="266.99,1478.3 283.337,1474.77 280.468,1470.7 264.665,1475 " />
<svg:polygon detid="478282224" count="1" value="24" id="807007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  0 backward    Id 478282224 " fill="rgb(255,208,0)" points="263.797,1473.89 279.623,1469.62 276.219,1465.69 261.039,1470.71 " />
<svg:polygon detid="478282228" count="1" value="24" id="807008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 forward  module  1 backward    Id 478282228 " fill="rgb(255,208,0)" points="260.026,1469.64 275.233,1464.65 271.315,1460.89 256.851,1466.6 " />
<svg:polygon detid="478315236" count="1" value="24" id="807009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 forward    Id 478315236 " fill="rgb(255,208,0)" points="255.7,1465.58 270.194,1459.9 265.787,1456.34 252.128,1462.69 " />
<svg:polygon detid="478315240" count="1" value="24" id="807010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  2 forward    Id 478315240 " fill="rgb(255,208,0)" points="250.845,1461.73 264.537,1455.4 259.668,1452.05 246.899,1459.02 " />
<svg:polygon detid="478315244" count="1" value="24" id="807011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  3 forward    Id 478315244 " fill="rgb(255,208,0)" points="245.492,1458.12 258.297,1451.18 252.996,1448.06 241.195,1455.59 " />
<svg:polygon detid="478315248" count="1" value="24" id="807012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  0 backward    Id 478315248 " fill="rgb(255,208,0)" points="239.673,1454.77 251.513,1447.25 245.813,1444.39 235.052,1452.44 " />
<svg:polygon detid="478315252" count="1" value="24" id="807013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 backward  module  1 backward    Id 478315252 " fill="rgb(255,208,0)" points="233.425,1451.69 244.227,1443.65 238.162,1441.06 228.509,1449.59 " />
<svg:polygon detid="478282468" count="1" value="24" id="807014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 forward    Id 478282468 " fill="rgb(255,208,0)" points="226.786,1448.91 236.483,1440.4 230.09,1438.1 221.605,1447.04 " />
<svg:polygon detid="478282472" count="1" value="24" id="807015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  2 forward    Id 478282472 " fill="rgb(255,208,0)" points="219.797,1446.45 228.329,1437.52 221.649,1435.52 214.382,1444.83 " />
<svg:polygon detid="478282476" count="1" value="24" id="807016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  3 forward    Id 478282476 " fill="rgb(255,208,0)" points="212.5,1444.31 219.815,1435.02 212.888,1433.33 206.886,1442.95 " />
<svg:polygon detid="478282480" count="1" value="24" id="807017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  0 backward    Id 478282480 " fill="rgb(255,208,0)" points="204.942,1442.52 210.994,1432.92 203.864,1431.56 199.163,1441.42 " />
<svg:polygon detid="478282484" count="1" value="24" id="807018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 2 forward  module  1 backward    Id 478282484 " fill="rgb(255,208,0)" points="197.168,1441.09 201.92,1431.23 194.631,1430.21 191.259,1440.25 " />
<svg:polygon detid="478315492" count="1" value="24" id="807019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 forward    Id 478315492 " fill="rgb(255,208,0)" points="189.227,1440.02 192.65,1429.97 185.245,1429.28 183.225,1439.46 " />
<svg:polygon detid="478315496" count="1" value="24" id="807020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  2 forward    Id 478315496 " fill="rgb(255,208,0)" points="181.167,1439.31 183.24,1429.14 175.766,1428.8 175.109,1439.03 " />
<svg:polygon detid="478315500" count="1" value="24" id="807021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  3 forward    Id 478315500 " fill="rgb(255,208,0)" points="173.038,1438.99 173.749,1428.75 166.251,1428.75 166.962,1438.99 " />
<svg:polygon detid="478315504" count="1" value="24" id="807022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  0 backward    Id 478315504 " fill="rgb(255,208,0)" points="164.891,1439.03 164.234,1428.8 156.76,1429.14 158.833,1439.31 " />
<svg:polygon detid="478315508" count="1" value="24" id="807023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 backward  module  1 backward    Id 478315508 " fill="rgb(255,208,0)" points="156.775,1439.46 154.755,1429.28 147.35,1429.97 150.773,1440.02 " />
<svg:polygon detid="478282724" count="1" value="24" id="807024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 forward    Id 478282724 " fill="rgb(255,208,0)" points="148.741,1440.25 145.369,1430.21 138.08,1431.23 142.832,1441.09 " />
<svg:polygon detid="478282728" count="1" value="24" id="807025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  2 forward    Id 478282728 " fill="rgb(255,208,0)" points="140.837,1441.42 136.136,1431.56 129.006,1432.92 135.058,1442.52 " />
<svg:polygon detid="478282732" count="1" value="24" id="807026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  3 forward    Id 478282732 " fill="rgb(255,208,0)" points="133.114,1442.95 127.112,1433.33 120.185,1435.02 127.5,1444.31 " />
<svg:polygon detid="478282736" count="1" value="24" id="807027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  0 backward    Id 478282736 " fill="rgb(255,208,0)" points="125.618,1444.83 118.351,1435.52 111.671,1437.52 120.203,1446.45 " />
<svg:polygon detid="478282740" count="1" value="24" id="807028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 3 forward  module  1 backward    Id 478282740 " fill="rgb(255,208,0)" points="118.395,1447.04 109.91,1438.1 103.517,1440.4 113.214,1448.91 " />
<svg:polygon detid="478315748" count="1" value="24" id="807029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 forward    Id 478315748 " fill="rgb(255,208,0)" points="111.491,1449.59 101.838,1441.06 95.7732,1443.65 106.575,1451.69 " />
<svg:polygon detid="478315752" count="1" value="24" id="807030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  2 forward    Id 478315752 " fill="rgb(255,208,0)" points="104.948,1452.44 94.1875,1444.39 88.4867,1447.25 100.327,1454.77 " />
<svg:polygon detid="478315756" count="1" value="24" id="807031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  3 forward    Id 478315756 " fill="rgb(255,208,0)" points="98.805,1455.59 87.0039,1448.06 81.7027,1451.18 94.5082,1458.12 " />
<svg:polygon detid="478315760" count="1" value="24" id="807032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  0 backward    Id 478315760 " fill="rgb(255,208,0)" points="93.1015,1459.02 80.332,1452.05 75.4631,1455.4 89.155,1461.73 " />
<svg:polygon detid="478315764" count="1" value="24" id="807033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 backward  module  1 backward    Id 478315764 " fill="rgb(255,208,0)" points="87.8721,1462.69 74.213,1456.34 69.8064,1459.9 84.3003,1465.58 " />
<svg:polygon detid="478282980" count="1" value="24" id="807034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 forward    Id 478282980 " fill="rgb(255,208,0)" points="83.149,1466.6 68.6845,1460.89 64.7673,1464.65 79.9739,1469.64 " />
<svg:polygon detid="478282984" count="1" value="24" id="807035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  2 forward    Id 478282984 " fill="rgb(255,208,0)" points="78.9613,1470.71 63.7807,1465.69 60.3771,1469.62 76.2026,1473.89 " />
<svg:polygon detid="478282988" count="1" value="24" id="807036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  3 forward    Id 478282988 " fill="rgb(255,208,0)" points="75.335,1475 59.5317,1470.7 56.6627,1474.77 73.0096,1478.3 " />
<svg:polygon detid="478282992" count="1" value="24" id="807037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  0 backward    Id 478282992 " fill="rgb(255,208,0)" points="72.2923,1479.45 55.9638,1475.89 53.6471,1480.08 70.4145,1482.85 " />
<svg:polygon detid="478282996" count="1" value="24" id="807038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 4 forward  module  1 backward    Id 478282996 " fill="rgb(255,208,0)" points="69.852,1484.02 53.099,1481.22 51.3489,1485.51 68.4334,1487.49 " />
<svg:polygon detid="478316004" count="1" value="24" id="807039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 forward    Id 478316004 " fill="rgb(255,208,0)" points="68.0292,1488.69 50.955,1486.68 49.7822,1491.03 67.0786,1492.22 " />
<svg:polygon detid="478316008" count="1" value="24" id="807040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  2 forward    Id 478316008 " fill="rgb(255,208,0)" points="66.835,1493.43 49.5448,1492.21 48.9566,1496.61 66.3582,1496.99 " />
<svg:polygon detid="478316012" count="1" value="24" id="807041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  3 forward    Id 478316012 " fill="rgb(255,208,0)" points="66.2768,1498.21 48.8773,1497.79 48.8773,1502.21 66.2768,1501.79 " />
<svg:polygon detid="478316016" count="1" value="24" id="807042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  0 backward    Id 478316016 " fill="rgb(255,208,0)" points="66.3582,1503.01 48.9566,1503.39 49.5448,1507.79 66.835,1506.57 " />
<svg:polygon detid="478316020" count="1" value="24" id="807043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 backward  module  1 backward    Id 478316020 " fill="rgb(255,208,0)" points="67.0786,1507.78 49.7822,1508.97 50.955,1513.32 68.0292,1511.31 " />
<svg:polygon detid="478283236" count="1" value="24" id="807044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 forward    Id 478283236 " fill="rgb(255,208,0)" points="68.4334,1512.51 51.3489,1514.49 53.099,1518.78 69.852,1515.98 " />
<svg:polygon detid="478283240" count="1" value="24" id="807045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  2 forward    Id 478283240 " fill="rgb(255,208,0)" points="70.4145,1517.15 53.6471,1519.92 55.9638,1524.11 72.2923,1520.55 " />
<svg:polygon detid="478283244" count="1" value="24" id="807046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  3 forward    Id 478283244 " fill="rgb(255,208,0)" points="73.0096,1521.7 56.6627,1525.23 59.5317,1529.3 75.335,1525 " />
<svg:polygon detid="478283248" count="1" value="24" id="807047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  0 backward    Id 478283248 " fill="rgb(255,208,0)" points="76.2026,1526.11 60.3771,1530.38 63.7807,1534.31 78.9613,1529.29 " />
<svg:polygon detid="478283252" count="1" value="24" id="807048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 5 forward  module  1 backward    Id 478283252 " fill="rgb(255,208,0)" points="79.9739,1530.36 64.7673,1535.35 68.6845,1539.11 83.149,1533.4 " />
<svg:polygon detid="478316260" count="1" value="24" id="807049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 forward    Id 478316260 " fill="rgb(255,208,0)" points="84.3003,1534.42 69.8064,1540.1 74.213,1543.66 87.8721,1537.31 " />
<svg:polygon detid="478316264" count="1" value="24" id="807050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  2 forward    Id 478316264 " fill="rgb(255,208,0)" points="89.155,1538.27 75.4631,1544.6 80.332,1547.95 93.1015,1540.98 " />
<svg:polygon detid="478316268" count="1" value="24" id="807051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  3 forward    Id 478316268 " fill="rgb(255,208,0)" points="94.5082,1541.88 81.7027,1548.82 87.0039,1551.94 98.805,1544.41 " />
<svg:polygon detid="478316272" count="1" value="24" id="807052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  0 backward    Id 478316272 " fill="rgb(255,208,0)" points="100.327,1545.23 88.4867,1552.75 94.1875,1555.61 104.948,1547.56 " />
<svg:polygon detid="478316276" count="1" value="24" id="807053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 backward  module  1 backward    Id 478316276 " fill="rgb(255,208,0)" points="106.575,1548.31 95.7732,1556.35 101.838,1558.94 111.491,1550.41 " />
<svg:polygon detid="478283492" count="1" value="24" id="807054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 forward    Id 478283492 " fill="rgb(255,208,0)" points="113.214,1551.09 103.517,1559.6 109.91,1561.9 118.395,1552.96 " />
<svg:polygon detid="478283496" count="1" value="24" id="807055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  2 forward    Id 478283496 " fill="rgb(255,208,0)" points="120.203,1553.55 111.671,1562.48 118.351,1564.48 125.618,1555.17 " />
<svg:polygon detid="478283500" count="1" value="24" id="807056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  3 forward    Id 478283500 " fill="rgb(255,208,0)" points="127.5,1555.69 120.185,1564.98 127.112,1566.67 133.114,1557.05 " />
<svg:polygon detid="478283504" count="1" value="24" id="807057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  0 backward    Id 478283504 " fill="rgb(255,208,0)" points="135.058,1557.48 129.006,1567.08 136.136,1568.44 140.837,1558.58 " />
<svg:polygon detid="478283508" count="1" value="24" id="807058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 6 forward  module  1 backward    Id 478283508 " fill="rgb(255,208,0)" points="142.832,1558.91 138.08,1568.77 145.369,1569.79 148.741,1559.75 " />
<svg:polygon detid="478316516" count="1" value="24" id="807059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 forward    Id 478316516 " fill="rgb(255,208,0)" points="150.773,1559.98 147.35,1570.03 154.755,1570.72 156.775,1560.54 " />
<svg:polygon detid="478316520" count="1" value="24" id="807060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  2 forward    Id 478316520 " fill="rgb(255,208,0)" points="158.833,1560.69 156.76,1570.86 164.234,1571.2 164.891,1560.97 " />
<svg:polygon detid="478316524" count="1" value="24" id="807061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  3 forward    Id 478316524 " fill="rgb(255,208,0)" points="166.962,1561.01 166.251,1571.25 173.749,1571.25 173.038,1561.01 " />
<svg:polygon detid="478316528" count="1" value="24" id="807062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  0 backward    Id 478316528 " fill="rgb(255,208,0)" points="175.109,1560.97 175.766,1571.2 183.24,1570.86 181.167,1560.69 " />
<svg:polygon detid="478316532" count="1" value="24" id="807063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 backward  module  1 backward    Id 478316532 " fill="rgb(255,208,0)" points="183.225,1560.54 185.245,1570.72 192.65,1570.03 189.227,1559.98 " />
<svg:polygon detid="478283748" count="1" value="24" id="807064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 forward    Id 478283748 " fill="rgb(255,208,0)" points="191.259,1559.75 194.631,1569.79 201.92,1568.77 197.168,1558.91 " />
<svg:polygon detid="478283752" count="1" value="24" id="807065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  2 forward    Id 478283752 " fill="rgb(255,208,0)" points="199.163,1558.58 203.864,1568.44 210.994,1567.08 204.942,1557.48 " />
<svg:polygon detid="478283756" count="1" value="24" id="807066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  3 forward    Id 478283756 " fill="rgb(255,208,0)" points="206.886,1557.05 212.888,1566.67 219.815,1564.98 212.5,1555.69 " />
<svg:polygon detid="478283760" count="1" value="24" id="807067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  0 backward    Id 478283760 " fill="rgb(255,208,0)" points="214.382,1555.17 221.649,1564.48 228.329,1562.48 219.797,1553.55 " />
<svg:polygon detid="478283764" count="1" value="24" id="807068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 7 forward  module  1 backward    Id 478283764 " fill="rgb(255,208,0)" points="221.605,1552.96 230.09,1561.9 236.483,1559.6 226.786,1551.09 " />
<svg:polygon detid="478316772" count="1" value="24" id="807069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 forward    Id 478316772 " fill="rgb(255,208,0)" points="228.509,1550.41 238.162,1558.94 244.227,1556.35 233.425,1548.31 " />
<svg:polygon detid="478316776" count="1" value="24" id="807070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  2 forward    Id 478316776 " fill="rgb(255,208,0)" points="235.052,1547.56 245.813,1555.61 251.513,1552.75 239.673,1545.23 " />
<svg:polygon detid="478316780" count="1" value="24" id="807071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  3 forward    Id 478316780 " fill="rgb(255,208,0)" points="241.195,1544.41 252.996,1551.94 258.297,1548.82 245.492,1541.88 " />
<svg:polygon detid="478316784" count="1" value="24" id="807072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  0 backward    Id 478316784 " fill="rgb(255,208,0)" points="246.899,1540.98 259.668,1547.95 264.537,1544.6 250.845,1538.27 " />
<svg:polygon detid="478316788" count="1" value="24" id="807073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 backward  module  1 backward    Id 478316788 " fill="rgb(255,208,0)" points="252.128,1537.31 265.787,1543.66 270.194,1540.1 255.7,1534.42 " />
<svg:polygon detid="478284004" count="1" value="24" id="807074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 forward    Id 478284004 " fill="rgb(255,208,0)" points="256.851,1533.4 271.315,1539.11 275.233,1535.35 260.026,1530.36 " />
<svg:polygon detid="478284008" count="1" value="24" id="807075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  2 forward    Id 478284008 " fill="rgb(255,208,0)" points="261.039,1529.29 276.219,1534.31 279.623,1530.38 263.797,1526.11 " />
<svg:polygon detid="478284012" count="1" value="24" id="807076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  3 forward    Id 478284012 " fill="rgb(255,208,0)" points="264.665,1525 280.468,1529.3 283.337,1525.23 266.99,1521.7 " />
<svg:polygon detid="478284016" count="1" value="24" id="807077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  0 backward    Id 478284016 " fill="rgb(255,208,0)" points="267.708,1520.55 284.036,1524.11 286.353,1519.92 269.586,1517.15 " />
<svg:polygon detid="478284020" count="1" value="24" id="807078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 8 forward  module  1 backward    Id 478284020 " fill="rgb(255,208,0)" points="270.148,1515.98 286.901,1518.78 288.651,1514.49 271.567,1512.51 " />
<svg:polygon detid="478314996" count="1" value="24" id="807079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  1 backward    Id 478314996 " fill="rgb(255,208,0)" points="271.971,1511.31 289.045,1513.32 290.218,1508.97 272.921,1507.78 " />
<svg:polygon detid="478314984" count="1" value="24" id="807080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 2 ring 0 petal 1 backward  module  2 forward    Id 478314984 " fill="rgb(255,208,0)" points="273.165,1506.57 290.455,1507.79 291.043,1503.39 273.642,1503.01 " />
<svg:polygon detid="478249258" count="1" value="27" id="901001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249258 " fill="rgb(255,202,0)" points="204.311,1295.19 197.269,1296.32 197.958,1299.4 " />
<svg:polygon detid="478216486" count="1" value="27" id="901002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216486 " fill="rgb(255,202,0)" points="201.024,1290.13 194.722,1292.3 196.742,1295.16 " />
<svg:polygon detid="478249510" count="1" value="27" id="901003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249510 " fill="rgb(255,202,0)" points="195.623,1285.74 190.489,1288.79 193.703,1291.26 " />
<svg:polygon detid="478249514" count="1" value="27" id="901004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249514 " fill="rgb(255,202,0)" points="188.475,1282.33 184.861,1286.06 189.049,1287.95 " />
<svg:polygon detid="478216742" count="1" value="27" id="901005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216742 " fill="rgb(255,202,0)" points="180.069,1280.11 178.22,1284.27 183.097,1285.46 " />
<svg:polygon detid="478249766" count="1" value="27" id="901006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249766 " fill="rgb(255,202,0)" points="170.976,1279.26 171.019,1283.55 176.252,1283.96 " />
<svg:polygon detid="478249770" count="1" value="27" id="901007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249770 " fill="rgb(255,202,0)" points="161.817,1279.82 163.748,1283.96 168.981,1283.55 " />
<svg:polygon detid="478216998" count="1" value="27" id="901008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478216998 " fill="rgb(255,202,0)" points="153.216,1281.75 156.903,1285.46 161.78,1284.27 " />
<svg:polygon detid="478250022" count="1" value="27" id="901009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250022 " fill="rgb(255,202,0)" points="145.758,1284.93 150.951,1287.95 155.139,1286.06 " />
<svg:polygon detid="478250026" count="1" value="27" id="901010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250026 " fill="rgb(255,202,0)" points="139.953,1289.13 146.297,1291.26 149.511,1288.79 " />
<svg:polygon detid="478217254" count="1" value="27" id="901011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217254 " fill="rgb(255,202,0)" points="136.195,1294.08 143.258,1295.16 145.278,1292.3 " />
<svg:polygon detid="478250278" count="1" value="27" id="901012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250278 " fill="rgb(255,202,0)" points="134.741,1299.43 142.042,1299.4 142.731,1296.32 " />
<svg:polygon detid="478250282" count="1" value="27" id="901013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250282 " fill="rgb(255,202,0)" points="135.689,1304.81 142.731,1303.68 142.042,1300.6 " />
<svg:polygon detid="478217510" count="1" value="27" id="901014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217510 " fill="rgb(255,202,0)" points="138.976,1309.87 145.278,1307.7 143.258,1304.84 " />
<svg:polygon detid="478250534" count="1" value="27" id="901015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250534 " fill="rgb(255,202,0)" points="144.377,1314.26 149.511,1311.21 146.297,1308.74 " />
<svg:polygon detid="478250538" count="1" value="27" id="901016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250538 " fill="rgb(255,202,0)" points="151.525,1317.67 155.139,1313.94 150.951,1312.05 " />
<svg:polygon detid="478217766" count="1" value="27" id="901017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217766 " fill="rgb(255,202,0)" points="159.931,1319.89 161.78,1315.73 156.903,1314.54 " />
<svg:polygon detid="478250790" count="1" value="27" id="901018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250790 " fill="rgb(255,202,0)" points="169.024,1320.74 168.981,1316.45 163.748,1316.04 " />
<svg:polygon detid="478250794" count="1" value="27" id="901019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250794 " fill="rgb(255,202,0)" points="178.183,1320.18 176.252,1316.04 171.019,1316.45 " />
<svg:polygon detid="478218022" count="1" value="27" id="901020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218022 " fill="rgb(255,202,0)" points="186.784,1318.25 183.097,1314.54 178.22,1315.73 " />
<svg:polygon detid="478251046" count="1" value="27" id="901021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251046 " fill="rgb(255,202,0)" points="194.242,1315.07 189.049,1312.05 184.861,1313.94 " />
<svg:polygon detid="478251050" count="1" value="27" id="901022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251050 " fill="rgb(255,202,0)" points="200.047,1310.87 193.703,1308.74 190.489,1311.21 " />
<svg:polygon detid="478218278" count="1" value="27" id="901023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218278 " fill="rgb(255,202,0)" points="203.805,1305.92 196.742,1304.84 194.722,1307.7 " />
<svg:polygon detid="478249254" count="1" value="27" id="901024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249254 " fill="rgb(255,202,0)" points="205.259,1300.57 197.958,1300.6 197.269,1303.68 " />
<svg:polygon detid="478249257" count="1" value="27" id="901101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward   stereo Id 478249257 " fill="rgb(255,202,0)" points="197.958,1299.4 205.259,1299.43 204.311,1295.19 " />
<svg:polygon detid="478216485" count="1" value="27" id="901102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward   stereo Id 478216485 " fill="rgb(255,202,0)" points="196.742,1295.16 203.805,1294.08 201.024,1290.13 " />
<svg:polygon detid="478249509" count="1" value="27" id="901103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward   stereo Id 478249509 " fill="rgb(255,202,0)" points="193.703,1291.26 200.047,1289.13 195.623,1285.74 " />
<svg:polygon detid="478249513" count="1" value="27" id="901104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward   stereo Id 478249513 " fill="rgb(255,202,0)" points="189.049,1287.95 194.242,1284.93 188.475,1282.33 " />
<svg:polygon detid="478216741" count="1" value="27" id="901105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward   stereo Id 478216741 " fill="rgb(255,202,0)" points="183.097,1285.46 186.784,1281.75 180.069,1280.11 " />
<svg:polygon detid="478249765" count="1" value="27" id="901106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward   stereo Id 478249765 " fill="rgb(255,202,0)" points="176.252,1283.96 178.183,1279.82 170.976,1279.26 " />
<svg:polygon detid="478249769" count="1" value="27" id="901107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward   stereo Id 478249769 " fill="rgb(255,202,0)" points="168.981,1283.55 169.024,1279.26 161.817,1279.82 " />
<svg:polygon detid="478216997" count="1" value="27" id="901108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward   stereo Id 478216997 " fill="rgb(255,202,0)" points="161.78,1284.27 159.931,1280.11 153.216,1281.75 " />
<svg:polygon detid="478250021" count="1" value="27" id="901109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward   stereo Id 478250021 " fill="rgb(255,202,0)" points="155.139,1286.06 151.525,1282.33 145.758,1284.93 " />
<svg:polygon detid="478250025" count="1" value="27" id="901110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward   stereo Id 478250025 " fill="rgb(255,202,0)" points="149.511,1288.79 144.377,1285.74 139.953,1289.13 " />
<svg:polygon detid="478217253" count="1" value="27" id="901111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward   stereo Id 478217253 " fill="rgb(255,202,0)" points="145.278,1292.3 138.976,1290.13 136.195,1294.08 " />
<svg:polygon detid="478250277" count="1" value="27" id="901112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward   stereo Id 478250277 " fill="rgb(255,202,0)" points="142.731,1296.32 135.689,1295.19 134.741,1299.43 " />
<svg:polygon detid="478250281" count="1" value="27" id="901113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward   stereo Id 478250281 " fill="rgb(255,202,0)" points="142.042,1300.6 134.741,1300.57 135.689,1304.81 " />
<svg:polygon detid="478217509" count="1" value="27" id="901114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward   stereo Id 478217509 " fill="rgb(255,202,0)" points="143.258,1304.84 136.195,1305.92 138.976,1309.87 " />
<svg:polygon detid="478250533" count="1" value="27" id="901115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward   stereo Id 478250533 " fill="rgb(255,202,0)" points="146.297,1308.74 139.953,1310.87 144.377,1314.26 " />
<svg:polygon detid="478250537" count="1" value="27" id="901116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward   stereo Id 478250537 " fill="rgb(255,202,0)" points="150.951,1312.05 145.758,1315.07 151.525,1317.67 " />
<svg:polygon detid="478217765" count="1" value="27" id="901117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward   stereo Id 478217765 " fill="rgb(255,202,0)" points="156.903,1314.54 153.216,1318.25 159.931,1319.89 " />
<svg:polygon detid="478250789" count="1" value="27" id="901118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward   stereo Id 478250789 " fill="rgb(255,202,0)" points="163.748,1316.04 161.817,1320.18 169.024,1320.74 " />
<svg:polygon detid="478250793" count="1" value="27" id="901119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward   stereo Id 478250793 " fill="rgb(255,202,0)" points="171.019,1316.45 170.976,1320.74 178.183,1320.18 " />
<svg:polygon detid="478218021" count="1" value="27" id="901120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward   stereo Id 478218021 " fill="rgb(255,202,0)" points="178.22,1315.73 180.069,1319.89 186.784,1318.25 " />
<svg:polygon detid="478251045" count="1" value="27" id="901121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward   stereo Id 478251045 " fill="rgb(255,202,0)" points="184.861,1313.94 188.475,1317.67 194.242,1315.07 " />
<svg:polygon detid="478251049" count="1" value="27" id="901122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward   stereo Id 478251049 " fill="rgb(255,202,0)" points="190.489,1311.21 195.623,1314.26 200.047,1310.87 " />
<svg:polygon detid="478218277" count="1" value="27" id="901123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward   stereo Id 478218277 " fill="rgb(255,202,0)" points="194.722,1307.7 201.024,1309.87 203.805,1305.92 " />
<svg:polygon detid="478249253" count="1" value="27" id="901124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward   stereo Id 478249253 " fill="rgb(255,202,0)" points="197.269,1303.68 204.311,1304.81 205.259,1300.57 " />
<svg:polygon detid="478249290" count="1" value="27" id="902001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249290 " fill="rgb(255,202,0)" points="214.347,1293.78 207.056,1294.96 208.013,1299.23 " />
<svg:polygon detid="478216518" count="1" value="27" id="902002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216518 " fill="rgb(255,202,0)" points="210.1,1287.24 203.575,1289.49 206.379,1293.47 " />
<svg:polygon detid="478249542" count="1" value="27" id="902003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249542 " fill="rgb(255,202,0)" points="203.12,1281.57 197.805,1284.73 202.265,1288.15 " />
<svg:polygon detid="478249546" count="1" value="27" id="902004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249546 " fill="rgb(255,202,0)" points="193.883,1277.16 190.14,1281.02 195.953,1283.64 " />
<svg:polygon detid="478216774" count="1" value="27" id="902005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216774 " fill="rgb(255,202,0)" points="183.019,1274.3 181.103,1278.6 187.872,1280.25 " />
<svg:polygon detid="478249798" count="1" value="27" id="902006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249798 " fill="rgb(255,202,0)" points="171.267,1273.19 171.309,1277.64 178.574,1278.2 " />
<svg:polygon detid="478249802" count="1" value="27" id="902007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249802 " fill="rgb(255,202,0)" points="159.429,1273.91 161.426,1278.2 168.691,1277.64 " />
<svg:polygon detid="478217030" count="1" value="27" id="902008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478217030 " fill="rgb(255,202,0)" points="148.312,1276.41 152.128,1280.25 158.897,1278.6 " />
<svg:polygon detid="478250054" count="1" value="27" id="902009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250054 " fill="rgb(255,202,0)" points="138.672,1280.52 144.047,1283.64 149.86,1281.02 " />
<svg:polygon detid="478250058" count="1" value="27" id="902010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250058 " fill="rgb(255,202,0)" points="131.168,1285.95 137.735,1288.15 142.195,1284.73 " />
<svg:polygon detid="478217286" count="1" value="27" id="902011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217286 " fill="rgb(255,202,0)" points="126.309,1292.34 133.621,1293.47 136.425,1289.49 " />
<svg:polygon detid="478250310" count="1" value="27" id="902012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250310 " fill="rgb(255,202,0)" points="124.429,1299.25 131.987,1299.23 132.944,1294.96 " />
<svg:polygon detid="478250314" count="1" value="27" id="902013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250314 " fill="rgb(255,202,0)" points="125.653,1306.22 132.944,1305.04 131.987,1300.77 " />
<svg:polygon detid="478217542" count="1" value="27" id="902014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217542 " fill="rgb(255,202,0)" points="129.9,1312.76 136.425,1310.51 133.621,1306.53 " />
<svg:polygon detid="478250566" count="1" value="27" id="902015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250566 " fill="rgb(255,202,0)" points="136.88,1318.43 142.195,1315.27 137.735,1311.85 " />
<svg:polygon detid="478250570" count="1" value="27" id="902016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250570 " fill="rgb(255,202,0)" points="146.117,1322.84 149.86,1318.98 144.047,1316.36 " />
<svg:polygon detid="478217798" count="1" value="27" id="902017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217798 " fill="rgb(255,202,0)" points="156.981,1325.7 158.897,1321.4 152.128,1319.75 " />
<svg:polygon detid="478250822" count="1" value="27" id="902018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250822 " fill="rgb(255,202,0)" points="168.733,1326.81 168.691,1322.36 161.426,1321.8 " />
<svg:polygon detid="478250826" count="1" value="27" id="902019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250826 " fill="rgb(255,202,0)" points="180.571,1326.09 178.574,1321.8 171.309,1322.36 " />
<svg:polygon detid="478218054" count="1" value="27" id="902020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218054 " fill="rgb(255,202,0)" points="191.688,1323.59 187.872,1319.75 181.103,1321.4 " />
<svg:polygon detid="478251078" count="1" value="27" id="902021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251078 " fill="rgb(255,202,0)" points="201.328,1319.48 195.953,1316.36 190.14,1318.98 " />
<svg:polygon detid="478251082" count="1" value="27" id="902022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251082 " fill="rgb(255,202,0)" points="208.832,1314.05 202.265,1311.85 197.805,1315.27 " />
<svg:polygon detid="478218310" count="1" value="27" id="902023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218310 " fill="rgb(255,202,0)" points="213.691,1307.66 206.379,1306.53 203.575,1310.51 " />
<svg:polygon detid="478249286" count="1" value="27" id="902024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249286 " fill="rgb(255,202,0)" points="215.571,1300.75 208.013,1300.77 207.056,1305.04 " />
<svg:polygon detid="478249289" count="1" value="27" id="902101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward   stereo Id 478249289 " fill="rgb(255,202,0)" points="208.013,1299.23 215.571,1299.25 214.347,1293.78 " />
<svg:polygon detid="478216517" count="1" value="27" id="902102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward   stereo Id 478216517 " fill="rgb(255,202,0)" points="206.379,1293.47 213.691,1292.34 210.1,1287.24 " />
<svg:polygon detid="478249541" count="1" value="27" id="902103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward   stereo Id 478249541 " fill="rgb(255,202,0)" points="202.265,1288.15 208.832,1285.95 203.12,1281.57 " />
<svg:polygon detid="478249545" count="1" value="27" id="902104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward   stereo Id 478249545 " fill="rgb(255,202,0)" points="195.953,1283.64 201.328,1280.52 193.883,1277.16 " />
<svg:polygon detid="478216773" count="1" value="27" id="902105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward   stereo Id 478216773 " fill="rgb(255,202,0)" points="187.872,1280.25 191.688,1276.41 183.019,1274.3 " />
<svg:polygon detid="478249797" count="1" value="27" id="902106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward   stereo Id 478249797 " fill="rgb(255,202,0)" points="178.574,1278.2 180.571,1273.91 171.267,1273.19 " />
<svg:polygon detid="478249801" count="1" value="27" id="902107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward   stereo Id 478249801 " fill="rgb(255,202,0)" points="168.691,1277.64 168.733,1273.19 159.429,1273.91 " />
<svg:polygon detid="478217029" count="1" value="27" id="902108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward   stereo Id 478217029 " fill="rgb(255,202,0)" points="158.897,1278.6 156.981,1274.3 148.312,1276.41 " />
<svg:polygon detid="478250053" count="1" value="27" id="902109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward   stereo Id 478250053 " fill="rgb(255,202,0)" points="149.86,1281.02 146.117,1277.16 138.672,1280.52 " />
<svg:polygon detid="478250057" count="1" value="27" id="902110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward   stereo Id 478250057 " fill="rgb(255,202,0)" points="142.195,1284.73 136.88,1281.57 131.168,1285.95 " />
<svg:polygon detid="478217285" count="1" value="27" id="902111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward   stereo Id 478217285 " fill="rgb(255,202,0)" points="136.425,1289.49 129.9,1287.24 126.309,1292.34 " />
<svg:polygon detid="478250309" count="1" value="27" id="902112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward   stereo Id 478250309 " fill="rgb(255,202,0)" points="132.944,1294.96 125.653,1293.78 124.429,1299.25 " />
<svg:polygon detid="478250313" count="1" value="27" id="902113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward   stereo Id 478250313 " fill="rgb(255,202,0)" points="131.987,1300.77 124.429,1300.75 125.653,1306.22 " />
<svg:polygon detid="478217541" count="1" value="27" id="902114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward   stereo Id 478217541 " fill="rgb(255,202,0)" points="133.621,1306.53 126.309,1307.66 129.9,1312.76 " />
<svg:polygon detid="478250565" count="1" value="27" id="902115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward   stereo Id 478250565 " fill="rgb(255,202,0)" points="137.735,1311.85 131.168,1314.05 136.88,1318.43 " />
<svg:polygon detid="478250569" count="1" value="27" id="902116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward   stereo Id 478250569 " fill="rgb(255,202,0)" points="144.047,1316.36 138.672,1319.48 146.117,1322.84 " />
<svg:polygon detid="478217797" count="1" value="27" id="902117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward   stereo Id 478217797 " fill="rgb(255,202,0)" points="152.128,1319.75 148.312,1323.59 156.981,1325.7 " />
<svg:polygon detid="478250821" count="1" value="27" id="902118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward   stereo Id 478250821 " fill="rgb(255,202,0)" points="161.426,1321.8 159.429,1326.09 168.733,1326.81 " />
<svg:polygon detid="478250825" count="1" value="27" id="902119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward   stereo Id 478250825 " fill="rgb(255,202,0)" points="171.309,1322.36 171.267,1326.81 180.571,1326.09 " />
<svg:polygon detid="478218053" count="1" value="27" id="902120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward   stereo Id 478218053 " fill="rgb(255,202,0)" points="181.103,1321.4 183.019,1325.7 191.688,1323.59 " />
<svg:polygon detid="478251077" count="1" value="27" id="902121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward   stereo Id 478251077 " fill="rgb(255,202,0)" points="190.14,1318.98 193.883,1322.84 201.328,1319.48 " />
<svg:polygon detid="478251081" count="1" value="27" id="902122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward   stereo Id 478251081 " fill="rgb(255,202,0)" points="197.805,1315.27 203.12,1318.43 208.832,1314.05 " />
<svg:polygon detid="478218309" count="1" value="27" id="902123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward   stereo Id 478218309 " fill="rgb(255,202,0)" points="203.575,1310.51 210.1,1312.76 213.691,1307.66 " />
<svg:polygon detid="478249285" count="1" value="27" id="902124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward   stereo Id 478249285 " fill="rgb(255,202,0)" points="207.056,1305.04 214.347,1306.22 215.571,1300.75 " />
<svg:polygon detid="478249316" count="1" value="27" id="903001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249316 " fill="rgb(255,202,0)" points="216.008,1301.57 225.409,1302.03 225.409,1297.97 216.008,1298.43 " />
<svg:polygon detid="478249320" count="1" value="27" id="903002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249320 " fill="rgb(255,202,0)" points="215.861,1297.32 225.267,1296.91 224.187,1292.9 215.023,1294.21 " />
<svg:polygon detid="478216548" count="1" value="27" id="903003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216548 " fill="rgb(255,202,0)" points="214.584,1293.13 223.764,1291.86 221.631,1288 212.929,1290.14 " />
<svg:polygon detid="478216552" count="1" value="27" id="903004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  2 forward    Id 478216552 " fill="rgb(255,202,0)" points="212.209,1289.12 220.937,1287.01 217.803,1283.39 209.778,1286.31 " />
<svg:polygon detid="478249572" count="1" value="27" id="903005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249572 " fill="rgb(255,202,0)" points="208.795,1285.37 216.856,1282.48 212.799,1279.2 205.648,1282.82 " />
<svg:polygon detid="478249576" count="1" value="27" id="903006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249576 " fill="rgb(255,202,0)" points="204.426,1281.98 211.621,1278.39 206.74,1275.52 200.64,1279.75 " />
<svg:polygon detid="478249580" count="1" value="27" id="903007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  3 forward    Id 478249580 " fill="rgb(255,202,0)" points="199.209,1279.03 205.361,1274.82 199.777,1272.44 194.877,1277.18 " />
<svg:polygon detid="478216804" count="1" value="27" id="903008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216804 " fill="rgb(255,202,0)" points="193.273,1276.6 198.23,1271.88 192.081,1270.04 188.502,1275.17 " />
<svg:polygon detid="478216808" count="1" value="27" id="903009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  2 forward    Id 478216808 " fill="rgb(255,202,0)" points="186.764,1274.75 190.405,1269.63 183.84,1268.37 181.671,1273.77 " />
<svg:polygon detid="478249828" count="1" value="27" id="903010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249828 " fill="rgb(255,202,0)" points="179.842,1273.52 182.076,1268.13 175.259,1267.49 174.553,1273.02 " />
<svg:polygon detid="478249832" count="1" value="27" id="903011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249832 " fill="rgb(255,202,0)" points="172.677,1272.94 173.451,1267.41 166.549,1267.41 167.323,1272.94 " />
<svg:polygon detid="478249836" count="1" value="27" id="903012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  3 forward    Id 478249836 " fill="rgb(255,202,0)" points="165.447,1273.02 164.741,1267.49 157.924,1268.13 160.158,1273.52 " />
<svg:polygon detid="478217060" count="1" value="27" id="903013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478217060 " fill="rgb(255,202,0)" points="158.329,1273.77 156.16,1268.37 149.595,1269.63 153.236,1274.75 " />
<svg:polygon detid="478217064" count="1" value="27" id="903014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  2 forward    Id 478217064 " fill="rgb(255,202,0)" points="151.498,1275.17 147.919,1270.04 141.77,1271.88 146.727,1276.6 " />
<svg:polygon detid="478250084" count="1" value="27" id="903015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250084 " fill="rgb(255,202,0)" points="145.123,1277.18 140.223,1272.44 134.639,1274.82 140.791,1279.03 " />
<svg:polygon detid="478250088" count="1" value="27" id="903016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250088 " fill="rgb(255,202,0)" points="139.36,1279.75 133.26,1275.52 128.379,1278.39 135.574,1281.98 " />
<svg:polygon detid="478250092" count="1" value="27" id="903017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  3 forward    Id 478250092 " fill="rgb(255,202,0)" points="134.352,1282.82 127.201,1279.2 123.144,1282.48 131.205,1285.37 " />
<svg:polygon detid="478217316" count="1" value="27" id="903018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217316 " fill="rgb(255,202,0)" points="130.222,1286.31 122.197,1283.39 119.063,1287.01 127.791,1289.12 " />
<svg:polygon detid="478217320" count="1" value="27" id="903019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  2 forward    Id 478217320 " fill="rgb(255,202,0)" points="127.071,1290.14 118.369,1288 116.236,1291.86 125.416,1293.13 " />
<svg:polygon detid="478250340" count="1" value="27" id="903020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250340 " fill="rgb(255,202,0)" points="124.977,1294.21 115.813,1292.9 114.733,1296.91 124.139,1297.32 " />
<svg:polygon detid="478250344" count="1" value="27" id="903021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250344 " fill="rgb(255,202,0)" points="123.992,1298.43 114.591,1297.97 114.591,1302.03 123.992,1301.57 " />
<svg:polygon detid="478250348" count="1" value="27" id="903022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  3 forward    Id 478250348 " fill="rgb(255,202,0)" points="124.139,1302.68 114.733,1303.09 115.813,1307.1 124.977,1305.79 " />
<svg:polygon detid="478217572" count="1" value="27" id="903023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217572 " fill="rgb(255,202,0)" points="125.416,1306.87 116.236,1308.14 118.369,1312 127.071,1309.86 " />
<svg:polygon detid="478217576" count="1" value="27" id="903024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  2 forward    Id 478217576 " fill="rgb(255,202,0)" points="127.791,1310.88 119.063,1312.99 122.197,1316.61 130.222,1313.69 " />
<svg:polygon detid="478250596" count="1" value="27" id="903025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250596 " fill="rgb(255,202,0)" points="131.205,1314.63 123.144,1317.52 127.201,1320.8 134.352,1317.18 " />
<svg:polygon detid="478250600" count="1" value="27" id="903026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250600 " fill="rgb(255,202,0)" points="135.574,1318.02 128.379,1321.61 133.26,1324.48 139.36,1320.25 " />
<svg:polygon detid="478250604" count="1" value="27" id="903027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  3 forward    Id 478250604 " fill="rgb(255,202,0)" points="140.791,1320.97 134.639,1325.18 140.223,1327.56 145.123,1322.82 " />
<svg:polygon detid="478217828" count="1" value="27" id="903028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217828 " fill="rgb(255,202,0)" points="146.727,1323.4 141.77,1328.12 147.919,1329.96 151.498,1324.83 " />
<svg:polygon detid="478217832" count="1" value="27" id="903029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  2 forward    Id 478217832 " fill="rgb(255,202,0)" points="153.236,1325.25 149.595,1330.37 156.16,1331.63 158.329,1326.23 " />
<svg:polygon detid="478250852" count="1" value="27" id="903030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250852 " fill="rgb(255,202,0)" points="160.158,1326.48 157.924,1331.87 164.741,1332.51 165.447,1326.98 " />
<svg:polygon detid="478250856" count="1" value="27" id="903031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250856 " fill="rgb(255,202,0)" points="167.323,1327.06 166.549,1332.59 173.451,1332.59 172.677,1327.06 " />
<svg:polygon detid="478250860" count="1" value="27" id="903032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  3 forward    Id 478250860 " fill="rgb(255,202,0)" points="174.553,1326.98 175.259,1332.51 182.076,1331.87 179.842,1326.48 " />
<svg:polygon detid="478218084" count="1" value="27" id="903033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218084 " fill="rgb(255,202,0)" points="181.671,1326.23 183.84,1331.63 190.405,1330.37 186.764,1325.25 " />
<svg:polygon detid="478218088" count="1" value="27" id="903034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  2 forward    Id 478218088 " fill="rgb(255,202,0)" points="188.502,1324.83 192.081,1329.96 198.23,1328.12 193.273,1323.4 " />
<svg:polygon detid="478251108" count="1" value="27" id="903035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251108 " fill="rgb(255,202,0)" points="194.877,1322.82 199.777,1327.56 205.361,1325.18 199.209,1320.97 " />
<svg:polygon detid="478251112" count="1" value="27" id="903036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251112 " fill="rgb(255,202,0)" points="200.64,1320.25 206.74,1324.48 211.621,1321.61 204.426,1318.02 " />
<svg:polygon detid="478251116" count="1" value="27" id="903037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  3 forward    Id 478251116 " fill="rgb(255,202,0)" points="205.648,1317.18 212.799,1320.8 216.856,1317.52 208.795,1314.63 " />
<svg:polygon detid="478218340" count="1" value="27" id="903038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218340 " fill="rgb(255,202,0)" points="209.778,1313.69 217.803,1316.61 220.937,1312.99 212.209,1310.88 " />
<svg:polygon detid="478218344" count="1" value="27" id="903039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  2 forward    Id 478218344 " fill="rgb(255,202,0)" points="212.929,1309.86 221.631,1312 223.764,1308.14 214.584,1306.87 " />
<svg:polygon detid="478249324" count="1" value="27" id="903040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  3 forward    Id 478249324 " fill="rgb(255,202,0)" points="215.023,1305.79 224.187,1307.1 225.267,1303.09 215.861,1302.68 " />
<svg:polygon detid="478249348" count="1" value="27" id="904001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249348 " fill="rgb(255,202,0)" points="228.822,1299.51 238.623,1299.52 238.282,1295.96 228.546,1296.62 " />
<svg:polygon detid="478249356" count="1" value="27" id="904002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  3 forward    Id 478249356 " fill="rgb(255,202,0)" points="228.359,1295.64 238.1,1295 237.083,1291.48 227.534,1292.78 " />
<svg:polygon detid="478216580" count="1" value="27" id="904003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216580 " fill="rgb(255,202,0)" points="227.161,1291.82 236.721,1290.55 235.041,1287.12 225.798,1289.04 " />
<svg:polygon detid="478216584" count="1" value="27" id="904004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  2 forward    Id 478216584 " fill="rgb(255,202,0)" points="225.244,1288.11 234.503,1286.22 232.18,1282.92 223.361,1285.43 " />
<svg:polygon detid="478216588" count="1" value="27" id="904005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  3 forward    Id 478216588 " fill="rgb(255,202,0)" points="222.633,1284.54 231.473,1282.05 228.538,1278.93 220.253,1282.01 " />
<svg:polygon detid="478249604" count="1" value="27" id="904006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249604 " fill="rgb(255,202,0)" points="219.36,1281.17 227.671,1278.12 224.159,1275.21 216.512,1278.81 " />
<svg:polygon detid="478249608" count="1" value="27" id="904007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249608 " fill="rgb(255,202,0)" points="215.466,1278.04 223.143,1274.46 219.099,1271.8 212.187,1275.88 " />
<svg:polygon detid="478249612" count="1" value="27" id="904008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  3 forward    Id 478249612 " fill="rgb(255,202,0)" points="211.001,1275.18 217.948,1271.12 213.422,1268.74 207.331,1273.26 " />
<svg:polygon detid="478249616" count="1" value="27" id="904009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  0 backward    Id 478249616 " fill="rgb(255,202,0)" points="206.019,1272.64 212.149,1268.14 207.199,1266.08 202.006,1270.96 " />
<svg:polygon detid="478216836" count="1" value="27" id="904010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216836 " fill="rgb(255,202,0)" points="200.585,1270.44 205.82,1265.57 200.508,1263.84 196.278,1269.04 " />
<svg:polygon detid="478216840" count="1" value="27" id="904011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  2 forward    Id 478216840 " fill="rgb(255,202,0)" points="194.766,1268.61 199.04,1263.42 193.433,1262.06 190.219,1267.5 " />
<svg:polygon detid="478216844" count="1" value="27" id="904012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  3 forward    Id 478216844 " fill="rgb(255,202,0)" points="188.636,1267.18 191.896,1261.74 186.064,1260.75 183.907,1266.38 " />
<svg:polygon detid="478249860" count="1" value="27" id="904013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249860 " fill="rgb(255,202,0)" points="182.271,1266.16 184.476,1260.54 178.493,1259.94 177.419,1265.67 " />
<svg:polygon detid="478249864" count="1" value="27" id="904014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249864 " fill="rgb(255,202,0)" points="175.753,1265.56 176.874,1259.83 170.814,1259.63 170.839,1265.4 " />
<svg:polygon detid="478249868" count="1" value="27" id="904015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  3 forward    Id 478249868 " fill="rgb(255,202,0)" points="169.161,1265.4 169.186,1259.63 163.126,1259.83 164.247,1265.56 " />
<svg:polygon detid="478249872" count="1" value="27" id="904016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  0 backward    Id 478249872 " fill="rgb(255,202,0)" points="162.581,1265.67 161.507,1259.94 155.524,1260.54 157.729,1266.16 " />
<svg:polygon detid="478217092" count="1" value="27" id="904017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478217092 " fill="rgb(255,202,0)" points="156.093,1266.38 153.936,1260.75 148.104,1261.74 151.364,1267.18 " />
<svg:polygon detid="478217096" count="1" value="27" id="904018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  2 forward    Id 478217096 " fill="rgb(255,202,0)" points="149.781,1267.5 146.567,1262.06 140.96,1263.42 145.234,1268.61 " />
<svg:polygon detid="478217100" count="1" value="27" id="904019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  3 forward    Id 478217100 " fill="rgb(255,202,0)" points="143.722,1269.04 139.492,1263.84 134.18,1265.57 139.415,1270.44 " />
<svg:polygon detid="478250116" count="1" value="27" id="904020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250116 " fill="rgb(255,202,0)" points="137.994,1270.96 132.801,1266.08 127.851,1268.14 133.981,1272.64 " />
<svg:polygon detid="478250120" count="1" value="27" id="904021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250120 " fill="rgb(255,202,0)" points="132.669,1273.26 126.578,1268.74 122.052,1271.12 128.999,1275.18 " />
<svg:polygon detid="478250124" count="1" value="27" id="904022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  3 forward    Id 478250124 " fill="rgb(255,202,0)" points="127.813,1275.88 120.901,1271.8 116.857,1274.46 124.534,1278.04 " />
<svg:polygon detid="478250128" count="1" value="27" id="904023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  0 backward    Id 478250128 " fill="rgb(255,202,0)" points="123.488,1278.81 115.841,1275.21 112.329,1278.12 120.64,1281.17 " />
<svg:polygon detid="478217348" count="1" value="27" id="904024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217348 " fill="rgb(255,202,0)" points="119.747,1282.01 111.462,1278.93 108.527,1282.05 117.367,1284.54 " />
<svg:polygon detid="478217352" count="1" value="27" id="904025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  2 forward    Id 478217352 " fill="rgb(255,202,0)" points="116.639,1285.43 107.82,1282.92 105.497,1286.22 114.756,1288.11 " />
<svg:polygon detid="478217356" count="1" value="27" id="904026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  3 forward    Id 478217356 " fill="rgb(255,202,0)" points="114.202,1289.04 104.959,1287.12 103.279,1290.55 112.839,1291.82 " />
<svg:polygon detid="478250372" count="1" value="27" id="904027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250372 " fill="rgb(255,202,0)" points="112.466,1292.78 102.917,1291.48 101.9,1295 111.641,1295.64 " />
<svg:polygon detid="478250376" count="1" value="27" id="904028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250376 " fill="rgb(255,202,0)" points="111.454,1296.62 101.718,1295.96 101.377,1299.52 111.178,1299.51 " />
<svg:polygon detid="478250380" count="1" value="27" id="904029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  3 forward    Id 478250380 " fill="rgb(255,202,0)" points="111.178,1300.49 101.377,1300.48 101.718,1304.04 111.454,1303.38 " />
<svg:polygon detid="478250384" count="1" value="27" id="904030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  0 backward    Id 478250384 " fill="rgb(255,202,0)" points="111.641,1304.36 101.9,1305 102.917,1308.52 112.466,1307.22 " />
<svg:polygon detid="478217604" count="1" value="27" id="904031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217604 " fill="rgb(255,202,0)" points="112.839,1308.18 103.279,1309.45 104.959,1312.88 114.202,1310.96 " />
<svg:polygon detid="478217608" count="1" value="27" id="904032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  2 forward    Id 478217608 " fill="rgb(255,202,0)" points="114.756,1311.89 105.497,1313.78 107.82,1317.08 116.639,1314.57 " />
<svg:polygon detid="478217612" count="1" value="27" id="904033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  3 forward    Id 478217612 " fill="rgb(255,202,0)" points="117.367,1315.46 108.527,1317.95 111.462,1321.07 119.747,1317.99 " />
<svg:polygon detid="478250628" count="1" value="27" id="904034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250628 " fill="rgb(255,202,0)" points="120.64,1318.83 112.329,1321.88 115.841,1324.79 123.488,1321.19 " />
<svg:polygon detid="478250632" count="1" value="27" id="904035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250632 " fill="rgb(255,202,0)" points="124.534,1321.96 116.857,1325.54 120.901,1328.2 127.813,1324.12 " />
<svg:polygon detid="478250636" count="1" value="27" id="904036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  3 forward    Id 478250636 " fill="rgb(255,202,0)" points="128.999,1324.82 122.052,1328.88 126.578,1331.26 132.669,1326.74 " />
<svg:polygon detid="478250640" count="1" value="27" id="904037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  0 backward    Id 478250640 " fill="rgb(255,202,0)" points="133.981,1327.36 127.851,1331.86 132.801,1333.92 137.994,1329.04 " />
<svg:polygon detid="478217860" count="1" value="27" id="904038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217860 " fill="rgb(255,202,0)" points="139.415,1329.56 134.18,1334.43 139.492,1336.16 143.722,1330.96 " />
<svg:polygon detid="478217864" count="1" value="27" id="904039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  2 forward    Id 478217864 " fill="rgb(255,202,0)" points="145.234,1331.39 140.96,1336.58 146.567,1337.94 149.781,1332.5 " />
<svg:polygon detid="478217868" count="1" value="27" id="904040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  3 forward    Id 478217868 " fill="rgb(255,202,0)" points="151.364,1332.82 148.104,1338.26 153.936,1339.25 156.093,1333.62 " />
<svg:polygon detid="478250884" count="1" value="27" id="904041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250884 " fill="rgb(255,202,0)" points="157.729,1333.84 155.524,1339.46 161.507,1340.06 162.581,1334.33 " />
<svg:polygon detid="478250888" count="1" value="27" id="904042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250888 " fill="rgb(255,202,0)" points="164.247,1334.44 163.126,1340.17 169.186,1340.37 169.161,1334.6 " />
<svg:polygon detid="478250892" count="1" value="27" id="904043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  3 forward    Id 478250892 " fill="rgb(255,202,0)" points="170.839,1334.6 170.814,1340.37 176.874,1340.17 175.753,1334.44 " />
<svg:polygon detid="478250896" count="1" value="27" id="904044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  0 backward    Id 478250896 " fill="rgb(255,202,0)" points="177.419,1334.33 178.493,1340.06 184.476,1339.46 182.271,1333.84 " />
<svg:polygon detid="478218116" count="1" value="27" id="904045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218116 " fill="rgb(255,202,0)" points="183.907,1333.62 186.064,1339.25 191.896,1338.26 188.636,1332.82 " />
<svg:polygon detid="478218120" count="1" value="27" id="904046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  2 forward    Id 478218120 " fill="rgb(255,202,0)" points="190.219,1332.5 193.433,1337.94 199.04,1336.58 194.766,1331.39 " />
<svg:polygon detid="478218124" count="1" value="27" id="904047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  3 forward    Id 478218124 " fill="rgb(255,202,0)" points="196.278,1330.96 200.508,1336.16 205.82,1334.43 200.585,1329.56 " />
<svg:polygon detid="478251140" count="1" value="27" id="904048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251140 " fill="rgb(255,202,0)" points="202.006,1329.04 207.199,1333.92 212.149,1331.86 206.019,1327.36 " />
<svg:polygon detid="478251144" count="1" value="27" id="904049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251144 " fill="rgb(255,202,0)" points="207.331,1326.74 213.422,1331.26 217.948,1328.88 211.001,1324.82 " />
<svg:polygon detid="478251148" count="1" value="27" id="904050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  3 forward    Id 478251148 " fill="rgb(255,202,0)" points="212.187,1324.12 219.099,1328.2 223.143,1325.54 215.466,1321.96 " />
<svg:polygon detid="478251152" count="1" value="27" id="904051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  0 backward    Id 478251152 " fill="rgb(255,202,0)" points="216.512,1321.19 224.159,1324.79 227.671,1321.88 219.36,1318.83 " />
<svg:polygon detid="478218372" count="1" value="27" id="904052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218372 " fill="rgb(255,202,0)" points="220.253,1317.99 228.538,1321.07 231.473,1317.95 222.633,1315.46 " />
<svg:polygon detid="478218376" count="1" value="27" id="904053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  2 forward    Id 478218376 " fill="rgb(255,202,0)" points="223.361,1314.57 232.18,1317.08 234.503,1313.78 225.244,1311.89 " />
<svg:polygon detid="478218380" count="1" value="27" id="904054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  3 forward    Id 478218380 " fill="rgb(255,202,0)" points="225.798,1310.96 235.041,1312.88 236.721,1309.45 227.161,1308.18 " />
<svg:polygon detid="478249360" count="1" value="27" id="904055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  0 backward    Id 478249360 " fill="rgb(255,202,0)" points="227.534,1307.22 237.083,1308.52 238.1,1305 228.359,1304.36 " />
<svg:polygon detid="478249352" count="1" value="27" id="904056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249352 " fill="rgb(255,202,0)" points="228.546,1303.38 238.282,1304.04 238.623,1300.48 228.822,1300.49 " />
<svg:polygon detid="478249382" count="1" value="27" id="905001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249382 " fill="rgb(255,202,0)" points="252.313,1293.17 239.92,1294.35 240.562,1299.15 " />
<svg:polygon detid="478216614" count="1" value="27" id="905002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216614 " fill="rgb(255,202,0)" points="249.484,1285.68 237.556,1287.98 239.467,1292.67 " />
<svg:polygon detid="478216618" count="1" value="27" id="905003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  2 forward    Id 478216618 " fill="rgb(255,202,0)" points="244.698,1278.54 233.528,1281.92 236.661,1286.36 " />
<svg:polygon detid="478216622" count="1" value="27" id="905004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  3 forward    Id 478216622 " fill="rgb(255,202,0)" points="238.072,1271.93 227.937,1276.29 232.214,1280.4 " />
<svg:polygon detid="478249638" count="1" value="27" id="905005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249638 " fill="rgb(255,202,0)" points="229.77,1266.02 220.919,1271.25 226.235,1274.91 " />
<svg:polygon detid="478249642" count="1" value="27" id="905006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249642 " fill="rgb(255,202,0)" points="219.997,1260.93 212.647,1266.92 218.871,1270.05 " />
<svg:polygon detid="478216870" count="1" value="27" id="905007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216870 " fill="rgb(255,202,0)" points="208.992,1256.81 203.324,1263.4 210.304,1265.92 " />
<svg:polygon detid="478216874" count="1" value="27" id="905008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  2 forward    Id 478216874 " fill="rgb(255,202,0)" points="197.028,1253.76 193.182,1260.79 200.744,1262.63 " />
<svg:polygon detid="478216878" count="1" value="27" id="905009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  3 forward    Id 478216878 " fill="rgb(255,202,0)" points="184.397,1251.84 182.468,1259.14 190.428,1260.26 " />
<svg:polygon detid="478249894" count="1" value="27" id="905010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249894 " fill="rgb(255,202,0)" points="171.413,1251.11 171.448,1258.49 179.608,1258.87 " />
<svg:polygon detid="478249898" count="1" value="27" id="905011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249898 " fill="rgb(255,202,0)" points="158.393,1251.58 160.392,1258.87 168.552,1258.49 " />
<svg:polygon detid="478217126" count="1" value="27" id="905012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478217126 " fill="rgb(255,202,0)" points="145.66,1253.24 149.572,1260.26 157.532,1259.14 " />
<svg:polygon detid="478217130" count="1" value="27" id="905013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  2 forward    Id 478217130 " fill="rgb(255,202,0)" points="133.525,1256.06 139.256,1262.63 146.818,1260.79 " />
<svg:polygon detid="478217134" count="1" value="27" id="905014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  3 forward    Id 478217134 " fill="rgb(255,202,0)" points="122.289,1259.96 129.696,1265.92 136.676,1263.4 " />
<svg:polygon detid="478250150" count="1" value="27" id="905015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250150 " fill="rgb(255,202,0)" points="112.228,1264.84 121.129,1270.05 127.353,1266.92 " />
<svg:polygon detid="478250154" count="1" value="27" id="905016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250154 " fill="rgb(255,202,0)" points="103.589,1270.59 113.765,1274.91 119.081,1271.25 " />
<svg:polygon detid="478217382" count="1" value="27" id="905017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217382 " fill="rgb(255,202,0)" points="96.5852,1277.06 107.786,1280.4 112.063,1276.29 " />
<svg:polygon detid="478217386" count="1" value="27" id="905018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  2 forward    Id 478217386 " fill="rgb(255,202,0)" points="91.3893,1284.1 103.339,1286.36 106.472,1281.92 " />
<svg:polygon detid="478217390" count="1" value="27" id="905019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  3 forward    Id 478217390 " fill="rgb(255,202,0)" points="88.129,1291.53 100.533,1292.67 102.444,1287.98 " />
<svg:polygon detid="478250406" count="1" value="27" id="905020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250406 " fill="rgb(255,202,0)" points="86.8848,1299.17 99.4383,1299.15 100.08,1294.35 " />
<svg:polygon detid="478250410" count="1" value="27" id="905021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250410 " fill="rgb(255,202,0)" points="87.6871,1306.83 100.08,1305.65 99.4383,1300.85 " />
<svg:polygon detid="478217638" count="1" value="27" id="905022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217638 " fill="rgb(255,202,0)" points="90.5161,1314.32 102.444,1312.02 100.533,1307.33 " />
<svg:polygon detid="478217642" count="1" value="27" id="905023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  2 forward    Id 478217642 " fill="rgb(255,202,0)" points="95.3024,1321.46 106.472,1318.08 103.339,1313.64 " />
<svg:polygon detid="478217646" count="1" value="27" id="905024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  3 forward    Id 478217646 " fill="rgb(255,202,0)" points="101.928,1328.07 112.063,1323.71 107.786,1319.6 " />
<svg:polygon detid="478250662" count="1" value="27" id="905025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250662 " fill="rgb(255,202,0)" points="110.23,1333.98 119.081,1328.75 113.765,1325.09 " />
<svg:polygon detid="478250666" count="1" value="27" id="905026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250666 " fill="rgb(255,202,0)" points="120.003,1339.07 127.353,1333.08 121.129,1329.95 " />
<svg:polygon detid="478217894" count="1" value="27" id="905027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217894 " fill="rgb(255,202,0)" points="131.008,1343.19 136.676,1336.6 129.696,1334.08 " />
<svg:polygon detid="478217898" count="1" value="27" id="905028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  2 forward    Id 478217898 " fill="rgb(255,202,0)" points="142.972,1346.24 146.818,1339.21 139.256,1337.37 " />
<svg:polygon detid="478217902" count="1" value="27" id="905029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  3 forward    Id 478217902 " fill="rgb(255,202,0)" points="155.603,1348.16 157.532,1340.86 149.572,1339.74 " />
<svg:polygon detid="478250918" count="1" value="27" id="905030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250918 " fill="rgb(255,202,0)" points="168.587,1348.89 168.552,1341.51 160.392,1341.13 " />
<svg:polygon detid="478250922" count="1" value="27" id="905031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250922 " fill="rgb(255,202,0)" points="181.607,1348.42 179.608,1341.13 171.448,1341.51 " />
<svg:polygon detid="478218150" count="1" value="27" id="905032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218150 " fill="rgb(255,202,0)" points="194.34,1346.76 190.428,1339.74 182.468,1340.86 " />
<svg:polygon detid="478218154" count="1" value="27" id="905033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  2 forward    Id 478218154 " fill="rgb(255,202,0)" points="206.475,1343.94 200.744,1337.37 193.182,1339.21 " />
<svg:polygon detid="478218158" count="1" value="27" id="905034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  3 forward    Id 478218158 " fill="rgb(255,202,0)" points="217.711,1340.04 210.304,1334.08 203.324,1336.6 " />
<svg:polygon detid="478251174" count="1" value="27" id="905035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251174 " fill="rgb(255,202,0)" points="227.772,1335.16 218.871,1329.95 212.647,1333.08 " />
<svg:polygon detid="478251178" count="1" value="27" id="905036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251178 " fill="rgb(255,202,0)" points="236.411,1329.41 226.235,1325.09 220.919,1328.75 " />
<svg:polygon detid="478218406" count="1" value="27" id="905037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218406 " fill="rgb(255,202,0)" points="243.415,1322.94 232.214,1319.6 227.937,1323.71 " />
<svg:polygon detid="478218410" count="1" value="27" id="905038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  2 forward    Id 478218410 " fill="rgb(255,202,0)" points="248.611,1315.9 236.661,1313.64 233.528,1318.08 " />
<svg:polygon detid="478218414" count="1" value="27" id="905039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  3 forward    Id 478218414 " fill="rgb(255,202,0)" points="251.871,1308.47 239.467,1307.33 237.556,1312.02 " />
<svg:polygon detid="478249386" count="1" value="27" id="905040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249386 " fill="rgb(255,202,0)" points="253.115,1300.83 240.562,1300.85 239.92,1305.65 " />
<svg:polygon detid="478249381" count="1" value="27" id="905101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward   stereo Id 478249381 " fill="rgb(255,202,0)" points="240.562,1299.15 253.115,1299.17 252.313,1293.17 " />
<svg:polygon detid="478216613" count="1" value="27" id="905102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward   stereo Id 478216613 " fill="rgb(255,202,0)" points="239.467,1292.67 251.871,1291.53 249.484,1285.68 " />
<svg:polygon detid="478216617" count="1" value="27" id="905103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  2 forward   stereo Id 478216617 " fill="rgb(255,202,0)" points="236.661,1286.36 248.611,1284.1 244.698,1278.54 " />
<svg:polygon detid="478216621" count="1" value="27" id="905104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  3 forward   stereo Id 478216621 " fill="rgb(255,202,0)" points="232.214,1280.4 243.415,1277.06 238.072,1271.93 " />
<svg:polygon detid="478249637" count="1" value="27" id="905105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward   stereo Id 478249637 " fill="rgb(255,202,0)" points="226.235,1274.91 236.411,1270.59 229.77,1266.02 " />
<svg:polygon detid="478249641" count="1" value="27" id="905106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward   stereo Id 478249641 " fill="rgb(255,202,0)" points="218.871,1270.05 227.772,1264.84 219.997,1260.93 " />
<svg:polygon detid="478216869" count="1" value="27" id="905107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward   stereo Id 478216869 " fill="rgb(255,202,0)" points="210.304,1265.92 217.711,1259.96 208.992,1256.81 " />
<svg:polygon detid="478216873" count="1" value="27" id="905108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  2 forward   stereo Id 478216873 " fill="rgb(255,202,0)" points="200.744,1262.63 206.475,1256.06 197.028,1253.76 " />
<svg:polygon detid="478216877" count="1" value="27" id="905109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  3 forward   stereo Id 478216877 " fill="rgb(255,202,0)" points="190.428,1260.26 194.34,1253.24 184.397,1251.84 " />
<svg:polygon detid="478249893" count="1" value="27" id="905110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward   stereo Id 478249893 " fill="rgb(255,202,0)" points="179.608,1258.87 181.607,1251.58 171.413,1251.11 " />
<svg:polygon detid="478249897" count="1" value="27" id="905111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward   stereo Id 478249897 " fill="rgb(255,202,0)" points="168.552,1258.49 168.587,1251.11 158.393,1251.58 " />
<svg:polygon detid="478217125" count="1" value="27" id="905112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward   stereo Id 478217125 " fill="rgb(255,202,0)" points="157.532,1259.14 155.603,1251.84 145.66,1253.24 " />
<svg:polygon detid="478217129" count="1" value="27" id="905113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  2 forward   stereo Id 478217129 " fill="rgb(255,202,0)" points="146.818,1260.79 142.972,1253.76 133.525,1256.06 " />
<svg:polygon detid="478217133" count="1" value="27" id="905114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  3 forward   stereo Id 478217133 " fill="rgb(255,202,0)" points="136.676,1263.4 131.008,1256.81 122.289,1259.96 " />
<svg:polygon detid="478250149" count="1" value="27" id="905115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward   stereo Id 478250149 " fill="rgb(255,202,0)" points="127.353,1266.92 120.003,1260.93 112.228,1264.84 " />
<svg:polygon detid="478250153" count="1" value="27" id="905116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward   stereo Id 478250153 " fill="rgb(255,202,0)" points="119.081,1271.25 110.23,1266.02 103.589,1270.59 " />
<svg:polygon detid="478217381" count="1" value="27" id="905117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward   stereo Id 478217381 " fill="rgb(255,202,0)" points="112.063,1276.29 101.928,1271.93 96.5852,1277.06 " />
<svg:polygon detid="478217385" count="1" value="27" id="905118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  2 forward   stereo Id 478217385 " fill="rgb(255,202,0)" points="106.472,1281.92 95.3024,1278.54 91.3893,1284.1 " />
<svg:polygon detid="478217389" count="1" value="27" id="905119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  3 forward   stereo Id 478217389 " fill="rgb(255,202,0)" points="102.444,1287.98 90.5161,1285.68 88.129,1291.53 " />
<svg:polygon detid="478250405" count="1" value="27" id="905120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward   stereo Id 478250405 " fill="rgb(255,202,0)" points="100.08,1294.35 87.6871,1293.17 86.8848,1299.17 " />
<svg:polygon detid="478250409" count="1" value="27" id="905121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward   stereo Id 478250409 " fill="rgb(255,202,0)" points="99.4383,1300.85 86.8848,1300.83 87.6871,1306.83 " />
<svg:polygon detid="478217637" count="1" value="27" id="905122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward   stereo Id 478217637 " fill="rgb(255,202,0)" points="100.533,1307.33 88.129,1308.47 90.5161,1314.32 " />
<svg:polygon detid="478217641" count="1" value="27" id="905123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  2 forward   stereo Id 478217641 " fill="rgb(255,202,0)" points="103.339,1313.64 91.3893,1315.9 95.3024,1321.46 " />
<svg:polygon detid="478217645" count="1" value="27" id="905124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  3 forward   stereo Id 478217645 " fill="rgb(255,202,0)" points="107.786,1319.6 96.5852,1322.94 101.928,1328.07 " />
<svg:polygon detid="478250661" count="1" value="27" id="905125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward   stereo Id 478250661 " fill="rgb(255,202,0)" points="113.765,1325.09 103.589,1329.41 110.23,1333.98 " />
<svg:polygon detid="478250665" count="1" value="27" id="905126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward   stereo Id 478250665 " fill="rgb(255,202,0)" points="121.129,1329.95 112.228,1335.16 120.003,1339.07 " />
<svg:polygon detid="478217893" count="1" value="27" id="905127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward   stereo Id 478217893 " fill="rgb(255,202,0)" points="129.696,1334.08 122.289,1340.04 131.008,1343.19 " />
<svg:polygon detid="478217897" count="1" value="27" id="905128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  2 forward   stereo Id 478217897 " fill="rgb(255,202,0)" points="139.256,1337.37 133.525,1343.94 142.972,1346.24 " />
<svg:polygon detid="478217901" count="1" value="27" id="905129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  3 forward   stereo Id 478217901 " fill="rgb(255,202,0)" points="149.572,1339.74 145.66,1346.76 155.603,1348.16 " />
<svg:polygon detid="478250917" count="1" value="27" id="905130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward   stereo Id 478250917 " fill="rgb(255,202,0)" points="160.392,1341.13 158.393,1348.42 168.587,1348.89 " />
<svg:polygon detid="478250921" count="1" value="27" id="905131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward   stereo Id 478250921 " fill="rgb(255,202,0)" points="171.448,1341.51 171.413,1348.89 181.607,1348.42 " />
<svg:polygon detid="478218149" count="1" value="27" id="905132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward   stereo Id 478218149 " fill="rgb(255,202,0)" points="182.468,1340.86 184.397,1348.16 194.34,1346.76 " />
<svg:polygon detid="478218153" count="1" value="27" id="905133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  2 forward   stereo Id 478218153 " fill="rgb(255,202,0)" points="193.182,1339.21 197.028,1346.24 206.475,1343.94 " />
<svg:polygon detid="478218157" count="1" value="27" id="905134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  3 forward   stereo Id 478218157 " fill="rgb(255,202,0)" points="203.324,1336.6 208.992,1343.19 217.711,1340.04 " />
<svg:polygon detid="478251173" count="1" value="27" id="905135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward   stereo Id 478251173 " fill="rgb(255,202,0)" points="212.647,1333.08 219.997,1339.07 227.772,1335.16 " />
<svg:polygon detid="478251177" count="1" value="27" id="905136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward   stereo Id 478251177 " fill="rgb(255,202,0)" points="220.919,1328.75 229.77,1333.98 236.411,1329.41 " />
<svg:polygon detid="478218405" count="1" value="27" id="905137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward   stereo Id 478218405 " fill="rgb(255,202,0)" points="227.937,1323.71 238.072,1328.07 243.415,1322.94 " />
<svg:polygon detid="478218409" count="1" value="27" id="905138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  2 forward   stereo Id 478218409 " fill="rgb(255,202,0)" points="233.528,1318.08 244.698,1321.46 248.611,1315.9 " />
<svg:polygon detid="478218413" count="1" value="27" id="905139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  3 forward   stereo Id 478218413 " fill="rgb(255,202,0)" points="237.556,1312.02 249.484,1314.32 251.871,1308.47 " />
<svg:polygon detid="478249385" count="1" value="27" id="905140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward   stereo Id 478249385 " fill="rgb(255,202,0)" points="239.92,1305.65 252.313,1306.83 253.115,1300.83 " />
<svg:polygon detid="478249412" count="1" value="27" id="906001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249412 " fill="rgb(255,202,0)" points="255.048,1299.28 270.706,1299.3 270.206,1294.06 254.65,1295.12 " />
<svg:polygon detid="478249420" count="1" value="27" id="906002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  3 forward    Id 478249420 " fill="rgb(255,202,0)" points="254.376,1293.68 269.939,1292.67 268.446,1287.5 253.188,1289.57 " />
<svg:polygon detid="478216644" count="1" value="27" id="906003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216644 " fill="rgb(255,202,0)" points="252.643,1288.16 267.916,1286.14 265.448,1281.1 250.68,1284.16 " />
<svg:polygon detid="478216648" count="1" value="27" id="906004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  2 forward    Id 478216648 " fill="rgb(255,202,0)" points="249.87,1282.8 264.662,1279.77 261.249,1274.93 247.157,1278.94 " />
<svg:polygon detid="478216652" count="1" value="27" id="906005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  3 forward    Id 478216652 " fill="rgb(255,202,0)" points="246.093,1277.64 260.216,1273.67 255.903,1269.08 242.664,1273.99 " />
<svg:polygon detid="478249668" count="1" value="27" id="906006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249668 " fill="rgb(255,202,0)" points="241.36,1272.77 254.637,1267.89 249.477,1263.61 237.257,1269.37 " />
<svg:polygon detid="478249672" count="1" value="27" id="906007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249672 " fill="rgb(255,202,0)" points="235.729,1268.24 247.993,1262.52 242.051,1258.61 231.005,1265.13 " />
<svg:polygon detid="478249676" count="1" value="27" id="906008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  3 forward    Id 478249676 " fill="rgb(255,202,0)" points="229.271,1264.11 240.368,1257.62 233.72,1254.12 223.985,1261.34 " />
<svg:polygon detid="478249680" count="1" value="27" id="906009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  0 backward    Id 478249680 " fill="rgb(255,202,0)" points="222.068,1260.44 231.859,1253.25 224.587,1250.21 216.286,1258.02 " />
<svg:polygon detid="478216900" count="1" value="27" id="906010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216900 " fill="rgb(255,202,0)" points="214.21,1257.26 222.571,1249.47 214.767,1246.93 208.006,1255.24 " />
<svg:polygon detid="478216904" count="1" value="27" id="906011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  2 forward    Id 478216904 " fill="rgb(255,202,0)" points="205.796,1254.61 212.622,1246.32 204.385,1244.32 199.247,1253.02 " />
<svg:polygon detid="478216908" count="1" value="27" id="906012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  3 forward    Id 478216908 " fill="rgb(255,202,0)" points="196.932,1252.54 202.138,1243.85 193.57,1242.4 190.12,1251.39 " />
<svg:polygon detid="478249924" count="1" value="27" id="906013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249924 " fill="rgb(255,202,0)" points="187.73,1251.07 191.249,1242.09 182.458,1241.21 180.741,1250.37 " />
<svg:polygon detid="478249928" count="1" value="27" id="906014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249928 " fill="rgb(255,202,0)" points="178.304,1250.21 180.093,1241.06 171.19,1240.76 171.226,1249.97 " />
<svg:polygon detid="478249932" count="1" value="27" id="906015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  3 forward    Id 478249932 " fill="rgb(255,202,0)" points="168.774,1249.97 168.81,1240.76 159.907,1241.06 161.696,1250.21 " />
<svg:polygon detid="478249936" count="1" value="27" id="906016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  0 backward    Id 478249936 " fill="rgb(255,202,0)" points="159.259,1250.37 157.542,1241.21 148.751,1242.09 152.27,1251.07 " />
<svg:polygon detid="478217156" count="1" value="27" id="906017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478217156 " fill="rgb(255,202,0)" points="149.88,1251.39 146.43,1242.4 137.862,1243.85 143.068,1252.54 " />
<svg:polygon detid="478217160" count="1" value="27" id="906018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  2 forward    Id 478217160 " fill="rgb(255,202,0)" points="140.753,1253.02 135.615,1244.32 127.378,1246.32 134.204,1254.61 " />
<svg:polygon detid="478217164" count="1" value="27" id="906019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  3 forward    Id 478217164 " fill="rgb(255,202,0)" points="131.994,1255.24 125.233,1246.93 117.429,1249.47 125.79,1257.26 " />
<svg:polygon detid="478250180" count="1" value="27" id="906020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250180 " fill="rgb(255,202,0)" points="123.714,1258.02 115.413,1250.21 108.141,1253.25 117.932,1260.44 " />
<svg:polygon detid="478250184" count="1" value="27" id="906021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250184 " fill="rgb(255,202,0)" points="116.015,1261.34 106.28,1254.12 99.6318,1257.62 110.729,1264.11 " />
<svg:polygon detid="478250188" count="1" value="27" id="906022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  3 forward    Id 478250188 " fill="rgb(255,202,0)" points="108.995,1265.13 97.9486,1258.61 92.0071,1262.52 104.271,1268.24 " />
<svg:polygon detid="478250192" count="1" value="27" id="906023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  0 backward    Id 478250192 " fill="rgb(255,202,0)" points="102.743,1269.37 90.5229,1263.61 85.3632,1267.89 98.6404,1272.77 " />
<svg:polygon detid="478217412" count="1" value="27" id="906024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217412 " fill="rgb(255,202,0)" points="97.3356,1273.99 84.0966,1269.08 79.7835,1273.67 93.9066,1277.64 " />
<svg:polygon detid="478217416" count="1" value="27" id="906025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  2 forward    Id 478217416 " fill="rgb(255,202,0)" points="92.8426,1278.94 78.7507,1274.93 75.3385,1279.77 90.1298,1282.8 " />
<svg:polygon detid="478217420" count="1" value="27" id="906026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  3 forward    Id 478217420 " fill="rgb(255,202,0)" points="89.3198,1284.16 74.5522,1281.1 72.0838,1286.14 87.3574,1288.16 " />
<svg:polygon detid="478250436" count="1" value="27" id="906027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250436 " fill="rgb(255,202,0)" points="86.8117,1289.57 71.5541,1287.5 70.0606,1292.67 85.6243,1293.68 " />
<svg:polygon detid="478250440" count="1" value="27" id="906028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250440 " fill="rgb(255,202,0)" points="85.3497,1295.12 69.794,1294.06 69.2941,1299.3 84.9522,1299.28 " />
<svg:polygon detid="478250444" count="1" value="27" id="906029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  3 forward    Id 478250444 " fill="rgb(255,202,0)" points="84.9522,1300.72 69.2941,1300.7 69.794,1305.94 85.3497,1304.88 " />
<svg:polygon detid="478250448" count="1" value="27" id="906030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  0 backward    Id 478250448 " fill="rgb(255,202,0)" points="85.6243,1306.32 70.0606,1307.33 71.5541,1312.5 86.8117,1310.43 " />
<svg:polygon detid="478217668" count="1" value="27" id="906031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217668 " fill="rgb(255,202,0)" points="87.3574,1311.84 72.0838,1313.86 74.5522,1318.9 89.3198,1315.84 " />
<svg:polygon detid="478217672" count="1" value="27" id="906032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  2 forward    Id 478217672 " fill="rgb(255,202,0)" points="90.1298,1317.2 75.3385,1320.23 78.7507,1325.07 92.8426,1321.06 " />
<svg:polygon detid="478217676" count="1" value="27" id="906033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  3 forward    Id 478217676 " fill="rgb(255,202,0)" points="93.9066,1322.36 79.7835,1326.33 84.0966,1330.92 97.3356,1326.01 " />
<svg:polygon detid="478250692" count="1" value="27" id="906034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250692 " fill="rgb(255,202,0)" points="98.6404,1327.23 85.3632,1332.11 90.5229,1336.39 102.743,1330.63 " />
<svg:polygon detid="478250696" count="1" value="27" id="906035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250696 " fill="rgb(255,202,0)" points="104.271,1331.76 92.0071,1337.48 97.9486,1341.39 108.995,1334.87 " />
<svg:polygon detid="478250700" count="1" value="27" id="906036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  3 forward    Id 478250700 " fill="rgb(255,202,0)" points="110.729,1335.89 99.6318,1342.38 106.28,1345.88 116.015,1338.66 " />
<svg:polygon detid="478250704" count="1" value="27" id="906037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  0 backward    Id 478250704 " fill="rgb(255,202,0)" points="117.932,1339.56 108.141,1346.75 115.413,1349.79 123.714,1341.98 " />
<svg:polygon detid="478217924" count="1" value="27" id="906038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217924 " fill="rgb(255,202,0)" points="125.79,1342.74 117.429,1350.53 125.233,1353.07 131.994,1344.76 " />
<svg:polygon detid="478217928" count="1" value="27" id="906039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  2 forward    Id 478217928 " fill="rgb(255,202,0)" points="134.204,1345.39 127.378,1353.68 135.615,1355.68 140.753,1346.98 " />
<svg:polygon detid="478217932" count="1" value="27" id="906040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  3 forward    Id 478217932 " fill="rgb(255,202,0)" points="143.068,1347.46 137.862,1356.15 146.43,1357.6 149.88,1348.61 " />
<svg:polygon detid="478250948" count="1" value="27" id="906041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250948 " fill="rgb(255,202,0)" points="152.27,1348.93 148.751,1357.91 157.542,1358.79 159.259,1349.63 " />
<svg:polygon detid="478250952" count="1" value="27" id="906042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250952 " fill="rgb(255,202,0)" points="161.696,1349.79 159.907,1358.94 168.81,1359.24 168.774,1350.03 " />
<svg:polygon detid="478250956" count="1" value="27" id="906043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  3 forward    Id 478250956 " fill="rgb(255,202,0)" points="171.226,1350.03 171.19,1359.24 180.093,1358.94 178.304,1349.79 " />
<svg:polygon detid="478250960" count="1" value="27" id="906044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  0 backward    Id 478250960 " fill="rgb(255,202,0)" points="180.741,1349.63 182.458,1358.79 191.249,1357.91 187.73,1348.93 " />
<svg:polygon detid="478218180" count="1" value="27" id="906045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218180 " fill="rgb(255,202,0)" points="190.12,1348.61 193.57,1357.6 202.138,1356.15 196.932,1347.46 " />
<svg:polygon detid="478218184" count="1" value="27" id="906046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  2 forward    Id 478218184 " fill="rgb(255,202,0)" points="199.247,1346.98 204.385,1355.68 212.622,1353.68 205.796,1345.39 " />
<svg:polygon detid="478218188" count="1" value="27" id="906047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  3 forward    Id 478218188 " fill="rgb(255,202,0)" points="208.006,1344.76 214.767,1353.07 222.571,1350.53 214.21,1342.74 " />
<svg:polygon detid="478251204" count="1" value="27" id="906048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251204 " fill="rgb(255,202,0)" points="216.286,1341.98 224.587,1349.79 231.859,1346.75 222.068,1339.56 " />
<svg:polygon detid="478251208" count="1" value="27" id="906049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251208 " fill="rgb(255,202,0)" points="223.985,1338.66 233.72,1345.88 240.368,1342.38 229.271,1335.89 " />
<svg:polygon detid="478251212" count="1" value="27" id="906050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  3 forward    Id 478251212 " fill="rgb(255,202,0)" points="231.005,1334.87 242.051,1341.39 247.993,1337.48 235.729,1331.76 " />
<svg:polygon detid="478251216" count="1" value="27" id="906051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  0 backward    Id 478251216 " fill="rgb(255,202,0)" points="237.257,1330.63 249.477,1336.39 254.637,1332.11 241.36,1327.23 " />
<svg:polygon detid="478218436" count="1" value="27" id="906052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218436 " fill="rgb(255,202,0)" points="242.664,1326.01 255.903,1330.92 260.216,1326.33 246.093,1322.36 " />
<svg:polygon detid="478218440" count="1" value="27" id="906053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  2 forward    Id 478218440 " fill="rgb(255,202,0)" points="247.157,1321.06 261.249,1325.07 264.662,1320.23 249.87,1317.2 " />
<svg:polygon detid="478218444" count="1" value="27" id="906054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  3 forward    Id 478218444 " fill="rgb(255,202,0)" points="250.68,1315.84 265.448,1318.9 267.916,1313.86 252.643,1311.84 " />
<svg:polygon detid="478249424" count="1" value="27" id="906055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  0 backward    Id 478249424 " fill="rgb(255,202,0)" points="253.188,1310.43 268.446,1312.5 269.939,1307.33 254.376,1306.32 " />
<svg:polygon detid="478249416" count="1" value="27" id="906056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249416 " fill="rgb(255,202,0)" points="254.65,1304.88 270.206,1305.94 270.706,1300.7 255.048,1300.72 " />
<svg:polygon detid="478249444" count="1" value="27" id="907001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 forward    Id 478249444 " fill="rgb(255,202,0)" points="273.723,1301.79 291.123,1302.21 291.123,1297.79 273.723,1298.21 " />
<svg:polygon detid="478249452" count="1" value="27" id="907002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  3 forward    Id 478249452 " fill="rgb(255,202,0)" points="273.642,1296.99 291.043,1296.61 290.455,1292.21 273.165,1293.43 " />
<svg:polygon detid="478249456" count="1" value="27" id="907003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  0 backward    Id 478249456 " fill="rgb(255,202,0)" points="272.921,1292.22 290.218,1291.03 289.045,1286.68 271.971,1288.69 " />
<svg:polygon detid="478216676" count="1" value="27" id="907004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 forward    Id 478216676 " fill="rgb(255,202,0)" points="271.567,1287.49 288.651,1285.51 286.901,1281.22 270.148,1284.02 " />
<svg:polygon detid="478216680" count="1" value="27" id="907005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  2 forward    Id 478216680 " fill="rgb(255,202,0)" points="269.586,1282.85 286.353,1280.08 284.036,1275.89 267.708,1279.45 " />
<svg:polygon detid="478216684" count="1" value="27" id="907006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  3 forward    Id 478216684 " fill="rgb(255,202,0)" points="266.99,1278.3 283.337,1274.77 280.468,1270.7 264.665,1275 " />
<svg:polygon detid="478216688" count="1" value="27" id="907007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  0 backward    Id 478216688 " fill="rgb(255,202,0)" points="263.797,1273.89 279.623,1269.62 276.219,1265.69 261.039,1270.71 " />
<svg:polygon detid="478216692" count="1" value="27" id="907008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 forward  module  1 backward    Id 478216692 " fill="rgb(255,202,0)" points="260.026,1269.64 275.233,1264.65 271.315,1260.89 256.851,1266.6 " />
<svg:polygon detid="478249700" count="1" value="27" id="907009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 forward    Id 478249700 " fill="rgb(255,202,0)" points="255.7,1265.58 270.194,1259.9 265.787,1256.34 252.128,1262.69 " />
<svg:polygon detid="478249704" count="1" value="27" id="907010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  2 forward    Id 478249704 " fill="rgb(255,202,0)" points="250.845,1261.73 264.537,1255.4 259.668,1252.05 246.899,1259.02 " />
<svg:polygon detid="478249708" count="1" value="27" id="907011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  3 forward    Id 478249708 " fill="rgb(255,202,0)" points="245.492,1258.12 258.297,1251.18 252.996,1248.06 241.195,1255.59 " />
<svg:polygon detid="478249712" count="1" value="27" id="907012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  0 backward    Id 478249712 " fill="rgb(255,202,0)" points="239.673,1254.77 251.513,1247.25 245.813,1244.39 235.052,1252.44 " />
<svg:polygon detid="478249716" count="1" value="27" id="907013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 backward  module  1 backward    Id 478249716 " fill="rgb(255,202,0)" points="233.425,1251.69 244.227,1243.65 238.162,1241.06 228.509,1249.59 " />
<svg:polygon detid="478216932" count="1" value="27" id="907014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 forward    Id 478216932 " fill="rgb(255,202,0)" points="226.786,1248.91 236.483,1240.4 230.09,1238.1 221.605,1247.04 " />
<svg:polygon detid="478216936" count="1" value="27" id="907015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  2 forward    Id 478216936 " fill="rgb(255,202,0)" points="219.797,1246.45 228.329,1237.52 221.649,1235.52 214.382,1244.83 " />
<svg:polygon detid="478216940" count="1" value="27" id="907016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  3 forward    Id 478216940 " fill="rgb(255,202,0)" points="212.5,1244.31 219.815,1235.02 212.888,1233.33 206.886,1242.95 " />
<svg:polygon detid="478216944" count="1" value="27" id="907017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  0 backward    Id 478216944 " fill="rgb(255,202,0)" points="204.942,1242.52 210.994,1232.92 203.864,1231.56 199.163,1241.42 " />
<svg:polygon detid="478216948" count="1" value="27" id="907018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 2 forward  module  1 backward    Id 478216948 " fill="rgb(255,202,0)" points="197.168,1241.09 201.92,1231.23 194.631,1230.21 191.259,1240.25 " />
<svg:polygon detid="478249956" count="1" value="27" id="907019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 forward    Id 478249956 " fill="rgb(255,202,0)" points="189.227,1240.02 192.65,1229.97 185.245,1229.28 183.225,1239.46 " />
<svg:polygon detid="478249960" count="1" value="27" id="907020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  2 forward    Id 478249960 " fill="rgb(255,202,0)" points="181.167,1239.31 183.24,1229.14 175.766,1228.8 175.109,1239.03 " />
<svg:polygon detid="478249964" count="1" value="27" id="907021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  3 forward    Id 478249964 " fill="rgb(255,202,0)" points="173.038,1238.99 173.749,1228.75 166.251,1228.75 166.962,1238.99 " />
<svg:polygon detid="478249968" count="1" value="27" id="907022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  0 backward    Id 478249968 " fill="rgb(255,202,0)" points="164.891,1239.03 164.234,1228.8 156.76,1229.14 158.833,1239.31 " />
<svg:polygon detid="478249972" count="1" value="27" id="907023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 backward  module  1 backward    Id 478249972 " fill="rgb(255,202,0)" points="156.775,1239.46 154.755,1229.28 147.35,1229.97 150.773,1240.02 " />
<svg:polygon detid="478217188" count="1" value="27" id="907024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 forward    Id 478217188 " fill="rgb(255,202,0)" points="148.741,1240.25 145.369,1230.21 138.08,1231.23 142.832,1241.09 " />
<svg:polygon detid="478217192" count="1" value="27" id="907025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  2 forward    Id 478217192 " fill="rgb(255,202,0)" points="140.837,1241.42 136.136,1231.56 129.006,1232.92 135.058,1242.52 " />
<svg:polygon detid="478217196" count="1" value="27" id="907026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  3 forward    Id 478217196 " fill="rgb(255,202,0)" points="133.114,1242.95 127.112,1233.33 120.185,1235.02 127.5,1244.31 " />
<svg:polygon detid="478217200" count="1" value="27" id="907027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  0 backward    Id 478217200 " fill="rgb(255,202,0)" points="125.618,1244.83 118.351,1235.52 111.671,1237.52 120.203,1246.45 " />
<svg:polygon detid="478217204" count="1" value="27" id="907028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 3 forward  module  1 backward    Id 478217204 " fill="rgb(255,202,0)" points="118.395,1247.04 109.91,1238.1 103.517,1240.4 113.214,1248.91 " />
<svg:polygon detid="478250212" count="1" value="27" id="907029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 forward    Id 478250212 " fill="rgb(255,202,0)" points="111.491,1249.59 101.838,1241.06 95.7732,1243.65 106.575,1251.69 " />
<svg:polygon detid="478250216" count="1" value="27" id="907030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  2 forward    Id 478250216 " fill="rgb(255,202,0)" points="104.948,1252.44 94.1875,1244.39 88.4867,1247.25 100.327,1254.77 " />
<svg:polygon detid="478250220" count="1" value="27" id="907031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  3 forward    Id 478250220 " fill="rgb(255,202,0)" points="98.805,1255.59 87.0039,1248.06 81.7027,1251.18 94.5082,1258.12 " />
<svg:polygon detid="478250224" count="1" value="27" id="907032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  0 backward    Id 478250224 " fill="rgb(255,202,0)" points="93.1015,1259.02 80.332,1252.05 75.4631,1255.4 89.155,1261.73 " />
<svg:polygon detid="478250228" count="1" value="27" id="907033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 backward  module  1 backward    Id 478250228 " fill="rgb(255,202,0)" points="87.8721,1262.69 74.213,1256.34 69.8064,1259.9 84.3003,1265.58 " />
<svg:polygon detid="478217444" count="1" value="27" id="907034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 forward    Id 478217444 " fill="rgb(255,202,0)" points="83.149,1266.6 68.6845,1260.89 64.7673,1264.65 79.9739,1269.64 " />
<svg:polygon detid="478217448" count="1" value="27" id="907035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  2 forward    Id 478217448 " fill="rgb(255,202,0)" points="78.9613,1270.71 63.7807,1265.69 60.3771,1269.62 76.2026,1273.89 " />
<svg:polygon detid="478217452" count="1" value="27" id="907036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  3 forward    Id 478217452 " fill="rgb(255,202,0)" points="75.335,1275 59.5317,1270.7 56.6627,1274.77 73.0096,1278.3 " />
<svg:polygon detid="478217456" count="1" value="27" id="907037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  0 backward    Id 478217456 " fill="rgb(255,202,0)" points="72.2923,1279.45 55.9638,1275.89 53.6471,1280.08 70.4145,1282.85 " />
<svg:polygon detid="478217460" count="1" value="27" id="907038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 4 forward  module  1 backward    Id 478217460 " fill="rgb(255,202,0)" points="69.852,1284.02 53.099,1281.22 51.3489,1285.51 68.4334,1287.49 " />
<svg:polygon detid="478250468" count="1" value="27" id="907039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 forward    Id 478250468 " fill="rgb(255,202,0)" points="68.0292,1288.69 50.955,1286.68 49.7822,1291.03 67.0786,1292.22 " />
<svg:polygon detid="478250472" count="1" value="27" id="907040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  2 forward    Id 478250472 " fill="rgb(255,202,0)" points="66.835,1293.43 49.5448,1292.21 48.9566,1296.61 66.3582,1296.99 " />
<svg:polygon detid="478250476" count="1" value="27" id="907041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  3 forward    Id 478250476 " fill="rgb(255,202,0)" points="66.2768,1298.21 48.8773,1297.79 48.8773,1302.21 66.2768,1301.79 " />
<svg:polygon detid="478250480" count="1" value="27" id="907042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  0 backward    Id 478250480 " fill="rgb(255,202,0)" points="66.3582,1303.01 48.9566,1303.39 49.5448,1307.79 66.835,1306.57 " />
<svg:polygon detid="478250484" count="1" value="27" id="907043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 backward  module  1 backward    Id 478250484 " fill="rgb(255,202,0)" points="67.0786,1307.78 49.7822,1308.97 50.955,1313.32 68.0292,1311.31 " />
<svg:polygon detid="478217700" count="1" value="27" id="907044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 forward    Id 478217700 " fill="rgb(255,202,0)" points="68.4334,1312.51 51.3489,1314.49 53.099,1318.78 69.852,1315.98 " />
<svg:polygon detid="478217704" count="1" value="27" id="907045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  2 forward    Id 478217704 " fill="rgb(255,202,0)" points="70.4145,1317.15 53.6471,1319.92 55.9638,1324.11 72.2923,1320.55 " />
<svg:polygon detid="478217708" count="1" value="27" id="907046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  3 forward    Id 478217708 " fill="rgb(255,202,0)" points="73.0096,1321.7 56.6627,1325.23 59.5317,1329.3 75.335,1325 " />
<svg:polygon detid="478217712" count="1" value="27" id="907047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  0 backward    Id 478217712 " fill="rgb(255,202,0)" points="76.2026,1326.11 60.3771,1330.38 63.7807,1334.31 78.9613,1329.29 " />
<svg:polygon detid="478217716" count="1" value="27" id="907048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 5 forward  module  1 backward    Id 478217716 " fill="rgb(255,202,0)" points="79.9739,1330.36 64.7673,1335.35 68.6845,1339.11 83.149,1333.4 " />
<svg:polygon detid="478250724" count="1" value="27" id="907049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 forward    Id 478250724 " fill="rgb(255,202,0)" points="84.3003,1334.42 69.8064,1340.1 74.213,1343.66 87.8721,1337.31 " />
<svg:polygon detid="478250728" count="1" value="27" id="907050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  2 forward    Id 478250728 " fill="rgb(255,202,0)" points="89.155,1338.27 75.4631,1344.6 80.332,1347.95 93.1015,1340.98 " />
<svg:polygon detid="478250732" count="1" value="27" id="907051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  3 forward    Id 478250732 " fill="rgb(255,202,0)" points="94.5082,1341.88 81.7027,1348.82 87.0039,1351.94 98.805,1344.41 " />
<svg:polygon detid="478250736" count="1" value="27" id="907052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  0 backward    Id 478250736 " fill="rgb(255,202,0)" points="100.327,1345.23 88.4867,1352.75 94.1875,1355.61 104.948,1347.56 " />
<svg:polygon detid="478250740" count="1" value="27" id="907053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 backward  module  1 backward    Id 478250740 " fill="rgb(255,202,0)" points="106.575,1348.31 95.7732,1356.35 101.838,1358.94 111.491,1350.41 " />
<svg:polygon detid="478217956" count="1" value="27" id="907054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 forward    Id 478217956 " fill="rgb(255,202,0)" points="113.214,1351.09 103.517,1359.6 109.91,1361.9 118.395,1352.96 " />
<svg:polygon detid="478217960" count="1" value="27" id="907055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  2 forward    Id 478217960 " fill="rgb(255,202,0)" points="120.203,1353.55 111.671,1362.48 118.351,1364.48 125.618,1355.17 " />
<svg:polygon detid="478217964" count="1" value="27" id="907056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  3 forward    Id 478217964 " fill="rgb(255,202,0)" points="127.5,1355.69 120.185,1364.98 127.112,1366.67 133.114,1357.05 " />
<svg:polygon detid="478217968" count="1" value="27" id="907057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  0 backward    Id 478217968 " fill="rgb(255,202,0)" points="135.058,1357.48 129.006,1367.08 136.136,1368.44 140.837,1358.58 " />
<svg:polygon detid="478217972" count="1" value="27" id="907058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 6 forward  module  1 backward    Id 478217972 " fill="rgb(255,202,0)" points="142.832,1358.91 138.08,1368.77 145.369,1369.79 148.741,1359.75 " />
<svg:polygon detid="478250980" count="1" value="27" id="907059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 forward    Id 478250980 " fill="rgb(255,202,0)" points="150.773,1359.98 147.35,1370.03 154.755,1370.72 156.775,1360.54 " />
<svg:polygon detid="478250984" count="1" value="27" id="907060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  2 forward    Id 478250984 " fill="rgb(255,202,0)" points="158.833,1360.69 156.76,1370.86 164.234,1371.2 164.891,1360.97 " />
<svg:polygon detid="478250988" count="1" value="27" id="907061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  3 forward    Id 478250988 " fill="rgb(255,202,0)" points="166.962,1361.01 166.251,1371.25 173.749,1371.25 173.038,1361.01 " />
<svg:polygon detid="478250992" count="1" value="27" id="907062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  0 backward    Id 478250992 " fill="rgb(255,202,0)" points="175.109,1360.97 175.766,1371.2 183.24,1370.86 181.167,1360.69 " />
<svg:polygon detid="478250996" count="1" value="27" id="907063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 backward  module  1 backward    Id 478250996 " fill="rgb(255,202,0)" points="183.225,1360.54 185.245,1370.72 192.65,1370.03 189.227,1359.98 " />
<svg:polygon detid="478218212" count="1" value="27" id="907064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 forward    Id 478218212 " fill="rgb(255,202,0)" points="191.259,1359.75 194.631,1369.79 201.92,1368.77 197.168,1358.91 " />
<svg:polygon detid="478218216" count="1" value="27" id="907065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  2 forward    Id 478218216 " fill="rgb(255,202,0)" points="199.163,1358.58 203.864,1368.44 210.994,1367.08 204.942,1357.48 " />
<svg:polygon detid="478218220" count="1" value="27" id="907066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  3 forward    Id 478218220 " fill="rgb(255,202,0)" points="206.886,1357.05 212.888,1366.67 219.815,1364.98 212.5,1355.69 " />
<svg:polygon detid="478218224" count="1" value="27" id="907067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  0 backward    Id 478218224 " fill="rgb(255,202,0)" points="214.382,1355.17 221.649,1364.48 228.329,1362.48 219.797,1353.55 " />
<svg:polygon detid="478218228" count="1" value="27" id="907068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 7 forward  module  1 backward    Id 478218228 " fill="rgb(255,202,0)" points="221.605,1352.96 230.09,1361.9 236.483,1359.6 226.786,1351.09 " />
<svg:polygon detid="478251236" count="1" value="27" id="907069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 forward    Id 478251236 " fill="rgb(255,202,0)" points="228.509,1350.41 238.162,1358.94 244.227,1356.35 233.425,1348.31 " />
<svg:polygon detid="478251240" count="1" value="27" id="907070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  2 forward    Id 478251240 " fill="rgb(255,202,0)" points="235.052,1347.56 245.813,1355.61 251.513,1352.75 239.673,1345.23 " />
<svg:polygon detid="478251244" count="1" value="27" id="907071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  3 forward    Id 478251244 " fill="rgb(255,202,0)" points="241.195,1344.41 252.996,1351.94 258.297,1348.82 245.492,1341.88 " />
<svg:polygon detid="478251248" count="1" value="27" id="907072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  0 backward    Id 478251248 " fill="rgb(255,202,0)" points="246.899,1340.98 259.668,1347.95 264.537,1344.6 250.845,1338.27 " />
<svg:polygon detid="478251252" count="1" value="27" id="907073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 backward  module  1 backward    Id 478251252 " fill="rgb(255,202,0)" points="252.128,1337.31 265.787,1343.66 270.194,1340.1 255.7,1334.42 " />
<svg:polygon detid="478218468" count="1" value="27" id="907074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 forward    Id 478218468 " fill="rgb(255,202,0)" points="256.851,1333.4 271.315,1339.11 275.233,1335.35 260.026,1330.36 " />
<svg:polygon detid="478218472" count="1" value="27" id="907075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  2 forward    Id 478218472 " fill="rgb(255,202,0)" points="261.039,1329.29 276.219,1334.31 279.623,1330.38 263.797,1326.11 " />
<svg:polygon detid="478218476" count="1" value="27" id="907076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  3 forward    Id 478218476 " fill="rgb(255,202,0)" points="264.665,1325 280.468,1329.3 283.337,1325.23 266.99,1321.7 " />
<svg:polygon detid="478218480" count="1" value="27" id="907077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  0 backward    Id 478218480 " fill="rgb(255,202,0)" points="267.708,1320.55 284.036,1324.11 286.353,1319.92 269.586,1317.15 " />
<svg:polygon detid="478218484" count="1" value="27" id="907078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 8 forward  module  1 backward    Id 478218484 " fill="rgb(255,202,0)" points="270.148,1315.98 286.901,1318.78 288.651,1314.49 271.567,1312.51 " />
<svg:polygon detid="478249460" count="1" value="27" id="907079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  1 backward    Id 478249460 " fill="rgb(255,202,0)" points="271.971,1311.31 289.045,1313.32 290.218,1308.97 272.921,1307.78 " />
<svg:polygon detid="478249448" count="1" value="27" id="907080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC -z layer 1 ring 0 petal 1 backward  module  2 forward    Id 478249448 " fill="rgb(255,202,0)" points="273.165,1306.57 290.455,1307.79 291.043,1303.39 273.642,1303.01 " />
<svg:polygon detid="411238790" count="1" value="30" id="1001001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  1   Id 411238790 " fill="rgb(255,196,0)" points="207.203,1097.7 197.794,1098.46 197.794,1101.54 " />
<svg:polygon detid="411238662" count="1" value="30" id="1001002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  1   Id 411238662 " fill="rgb(255,196,0)" points="204.925,1092.12 196.167,1094.28 197.526,1097.26 " />
<svg:polygon detid="411238794" count="1" value="30" id="1001003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  2   Id 411238794 " fill="rgb(255,196,0)" points="200.266,1087.07 192.757,1090.49 195.383,1093.16 " />
<svg:polygon detid="411238666" count="1" value="30" id="1001004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  2   Id 411238666 " fill="rgb(255,196,0)" points="193.545,1082.9 187.796,1087.35 191.51,1089.53 " />
<svg:polygon detid="411238798" count="1" value="30" id="1001005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  3   Id 411238798 " fill="rgb(255,196,0)" points="185.219,1079.9 181.622,1085.07 186.171,1086.61 " />
<svg:polygon detid="411238670" count="1" value="30" id="1001006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  3   Id 411238670 " fill="rgb(255,196,0)" points="175.856,1078.27 174.657,1083.81 179.731,1084.61 " />
<svg:polygon detid="411238802" count="1" value="30" id="1001007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  4   Id 411238802 " fill="rgb(255,196,0)" points="166.094,1078.12 167.374,1083.65 172.626,1083.65 " />
<svg:polygon detid="411238674" count="1" value="30" id="1001008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  4   Id 411238674 " fill="rgb(255,196,0)" points="156.598,1079.46 160.269,1084.61 165.343,1083.81 " />
<svg:polygon detid="411238806" count="1" value="30" id="1001009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  5   Id 411238806 " fill="rgb(255,196,0)" points="148.016,1082.2 153.829,1086.61 158.378,1085.07 " />
<svg:polygon detid="411238678" count="1" value="30" id="1001010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  5   Id 411238678 " fill="rgb(255,196,0)" points="140.932,1086.15 148.49,1089.53 152.204,1087.35 " />
<svg:polygon detid="411238810" count="1" value="30" id="1001011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  6   Id 411238810 " fill="rgb(255,196,0)" points="135.828,1091.05 144.617,1093.16 147.243,1090.49 " />
<svg:polygon detid="411238682" count="1" value="30" id="1001012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  6   Id 411238682 " fill="rgb(255,196,0)" points="133.054,1096.56 142.474,1097.26 143.833,1094.28 " />
<svg:polygon detid="411238814" count="1" value="30" id="1001013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  7   Id 411238814 " fill="rgb(255,196,0)" points="132.797,1102.3 142.206,1101.54 142.206,1098.46 " />
<svg:polygon detid="411238686" count="1" value="30" id="1001014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  7   Id 411238686 " fill="rgb(255,196,0)" points="135.075,1107.88 143.833,1105.72 142.474,1102.74 " />
<svg:polygon detid="411238818" count="1" value="30" id="1001015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  8   Id 411238818 " fill="rgb(255,196,0)" points="139.734,1112.93 147.243,1109.51 144.617,1106.84 " />
<svg:polygon detid="411238690" count="1" value="30" id="1001016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  8   Id 411238690 " fill="rgb(255,196,0)" points="146.455,1117.1 152.204,1112.65 148.49,1110.47 " />
<svg:polygon detid="411238822" count="1" value="30" id="1001017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  9   Id 411238822 " fill="rgb(255,196,0)" points="154.781,1120.1 158.378,1114.93 153.829,1113.39 " />
<svg:polygon detid="411238694" count="1" value="30" id="1001018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  9   Id 411238694 " fill="rgb(255,196,0)" points="164.144,1121.73 165.343,1116.19 160.269,1115.39 " />
<svg:polygon detid="411238826" count="1" value="30" id="1001019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  10   Id 411238826 " fill="rgb(255,196,0)" points="173.906,1121.88 172.626,1116.35 167.374,1116.35 " />
<svg:polygon detid="411238698" count="1" value="30" id="1001020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  10   Id 411238698 " fill="rgb(255,196,0)" points="183.402,1120.54 179.731,1115.39 174.657,1116.19 " />
<svg:polygon detid="411238830" count="1" value="30" id="1001021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  11   Id 411238830 " fill="rgb(255,196,0)" points="191.984,1117.8 186.171,1113.39 181.622,1114.93 " />
<svg:polygon detid="411238702" count="1" value="30" id="1001022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  11   Id 411238702 " fill="rgb(255,196,0)" points="199.068,1113.85 191.51,1110.47 187.796,1112.65 " />
<svg:polygon detid="411238834" count="1" value="30" id="1001023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  12   Id 411238834 " fill="rgb(255,196,0)" points="204.172,1108.95 195.383,1106.84 192.757,1109.51 " />
<svg:polygon detid="411238706" count="1" value="30" id="1001024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  12   Id 411238706 " fill="rgb(255,196,0)" points="206.946,1103.44 197.526,1102.74 196.167,1105.72 " />
<svg:polygon detid="411238789" count="1" value="30" id="1001101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  1  stereo Id 411238789 " fill="rgb(255,196,0)" points="197.794,1101.54 207.203,1102.3 207.203,1097.7 " />
<svg:polygon detid="411238661" count="1" value="30" id="1001102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  1  stereo Id 411238661 " fill="rgb(255,196,0)" points="197.526,1097.26 206.946,1096.56 204.925,1092.12 " />
<svg:polygon detid="411238793" count="1" value="30" id="1001103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  2  stereo Id 411238793 " fill="rgb(255,196,0)" points="195.383,1093.16 204.172,1091.05 200.266,1087.07 " />
<svg:polygon detid="411238665" count="1" value="30" id="1001104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  2  stereo Id 411238665 " fill="rgb(255,196,0)" points="191.51,1089.53 199.068,1086.15 193.545,1082.9 " />
<svg:polygon detid="411238797" count="1" value="30" id="1001105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  3  stereo Id 411238797 " fill="rgb(255,196,0)" points="186.171,1086.61 191.984,1082.2 185.219,1079.9 " />
<svg:polygon detid="411238669" count="1" value="30" id="1001106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  3  stereo Id 411238669 " fill="rgb(255,196,0)" points="179.731,1084.61 183.402,1079.46 175.856,1078.27 " />
<svg:polygon detid="411238801" count="1" value="30" id="1001107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  4  stereo Id 411238801 " fill="rgb(255,196,0)" points="172.626,1083.65 173.906,1078.12 166.094,1078.12 " />
<svg:polygon detid="411238673" count="1" value="30" id="1001108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  4  stereo Id 411238673 " fill="rgb(255,196,0)" points="165.343,1083.81 164.144,1078.27 156.598,1079.46 " />
<svg:polygon detid="411238805" count="1" value="30" id="1001109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  5  stereo Id 411238805 " fill="rgb(255,196,0)" points="158.378,1085.07 154.781,1079.9 148.016,1082.2 " />
<svg:polygon detid="411238677" count="1" value="30" id="1001110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  5  stereo Id 411238677 " fill="rgb(255,196,0)" points="152.204,1087.35 146.455,1082.9 140.932,1086.15 " />
<svg:polygon detid="411238809" count="1" value="30" id="1001111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  6  stereo Id 411238809 " fill="rgb(255,196,0)" points="147.243,1090.49 139.734,1087.07 135.828,1091.05 " />
<svg:polygon detid="411238681" count="1" value="30" id="1001112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  6  stereo Id 411238681 " fill="rgb(255,196,0)" points="143.833,1094.28 135.075,1092.12 133.054,1096.56 " />
<svg:polygon detid="411238813" count="1" value="30" id="1001113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  7  stereo Id 411238813 " fill="rgb(255,196,0)" points="142.206,1098.46 132.797,1097.7 132.797,1102.3 " />
<svg:polygon detid="411238685" count="1" value="30" id="1001114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  7  stereo Id 411238685 " fill="rgb(255,196,0)" points="142.474,1102.74 133.054,1103.44 135.075,1107.88 " />
<svg:polygon detid="411238817" count="1" value="30" id="1001115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  8  stereo Id 411238817 " fill="rgb(255,196,0)" points="144.617,1106.84 135.828,1108.95 139.734,1112.93 " />
<svg:polygon detid="411238689" count="1" value="30" id="1001116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  8  stereo Id 411238689 " fill="rgb(255,196,0)" points="148.49,1110.47 140.932,1113.85 146.455,1117.1 " />
<svg:polygon detid="411238821" count="1" value="30" id="1001117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  9  stereo Id 411238821 " fill="rgb(255,196,0)" points="153.829,1113.39 148.016,1117.8 154.781,1120.1 " />
<svg:polygon detid="411238693" count="1" value="30" id="1001118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  9  stereo Id 411238693 " fill="rgb(255,196,0)" points="160.269,1115.39 156.598,1120.54 164.144,1121.73 " />
<svg:polygon detid="411238825" count="1" value="30" id="1001119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  10  stereo Id 411238825 " fill="rgb(255,196,0)" points="167.374,1116.35 166.094,1121.88 173.906,1121.88 " />
<svg:polygon detid="411238697" count="1" value="30" id="1001120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  10  stereo Id 411238697 " fill="rgb(255,196,0)" points="174.657,1116.19 175.856,1121.73 183.402,1120.54 " />
<svg:polygon detid="411238829" count="1" value="30" id="1001121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  11  stereo Id 411238829 " fill="rgb(255,196,0)" points="181.622,1114.93 185.219,1120.1 191.984,1117.8 " />
<svg:polygon detid="411238701" count="1" value="30" id="1001122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  11  stereo Id 411238701 " fill="rgb(255,196,0)" points="187.796,1112.65 193.545,1117.1 199.068,1113.85 " />
<svg:polygon detid="411238833" count="1" value="30" id="1001123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  backward  module  12  stereo Id 411238833 " fill="rgb(255,196,0)" points="192.757,1109.51 200.266,1112.93 204.172,1108.95 " />
<svg:polygon detid="411238705" count="1" value="30" id="1001124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 1  forward  module  12  stereo Id 411238705 " fill="rgb(255,196,0)" points="196.167,1105.72 204.925,1107.88 206.946,1103.44 " />
<svg:polygon detid="411239046" count="1" value="30" id="1002001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  1   Id 411239046 " fill="rgb(255,196,0)" points="215.343,1097.24 207.855,1097.84 207.855,1102.16 " />
<svg:polygon detid="411238918" count="1" value="30" id="1002002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  1   Id 411238918 " fill="rgb(255,196,0)" points="212.584,1090.43 205.617,1092.16 207.513,1096.32 " />
<svg:polygon detid="411239050" count="1" value="30" id="1002003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  2   Id 411239050 " fill="rgb(255,196,0)" points="206.922,1084.27 200.951,1087 204.615,1090.73 " />
<svg:polygon detid="411238922" count="1" value="30" id="1002004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  2   Id 411238922 " fill="rgb(255,196,0)" points="198.745,1079.19 194.177,1082.73 199.358,1085.78 " />
<svg:polygon detid="411239054" count="1" value="30" id="1002005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  3   Id 411239054 " fill="rgb(255,196,0)" points="188.608,1075.52 185.755,1079.64 192.1,1081.79 " />
<svg:polygon detid="411238926" count="1" value="30" id="1002006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  3   Id 411238926 " fill="rgb(255,196,0)" points="177.204,1073.52 176.259,1077.93 183.336,1079.05 " />
<svg:polygon detid="411239058" count="1" value="30" id="1002007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  4   Id 411239058 " fill="rgb(255,196,0)" points="165.308,1073.33 166.336,1077.73 173.664,1077.73 " />
<svg:polygon detid="411238930" count="1" value="30" id="1002008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  4   Id 411238930 " fill="rgb(255,196,0)" points="153.732,1074.95 156.664,1079.05 163.741,1077.93 " />
<svg:polygon detid="411239062" count="1" value="30" id="1002009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  5   Id 411239062 " fill="rgb(255,196,0)" points="143.265,1078.28 147.9,1081.79 154.245,1079.64 " />
<svg:polygon detid="411238934" count="1" value="30" id="1002010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  5   Id 411238934 " fill="rgb(255,196,0)" points="134.62,1083.09 140.642,1085.78 145.823,1082.73 " />
<svg:polygon detid="411239066" count="1" value="30" id="1002011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  6   Id 411239066 " fill="rgb(255,196,0)" points="128.386,1089.05 135.385,1090.73 139.049,1087 " />
<svg:polygon detid="411238938" count="1" value="30" id="1002012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  6   Id 411238938 " fill="rgb(255,196,0)" points="124.987,1095.76 132.487,1096.32 134.383,1092.16 " />
<svg:polygon detid="411239070" count="1" value="30" id="1002013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  7   Id 411239070 " fill="rgb(255,196,0)" points="124.657,1102.76 132.145,1102.16 132.145,1097.84 " />
<svg:polygon detid="411238942" count="1" value="30" id="1002014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  7   Id 411238942 " fill="rgb(255,196,0)" points="127.416,1109.57 134.383,1107.84 132.487,1103.68 " />
<svg:polygon detid="411239074" count="1" value="30" id="1002015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  8   Id 411239074 " fill="rgb(255,196,0)" points="133.078,1115.73 139.049,1113 135.385,1109.27 " />
<svg:polygon detid="411238946" count="1" value="30" id="1002016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  8   Id 411238946 " fill="rgb(255,196,0)" points="141.255,1120.81 145.823,1117.27 140.642,1114.22 " />
<svg:polygon detid="411239078" count="1" value="30" id="1002017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  9   Id 411239078 " fill="rgb(255,196,0)" points="151.392,1124.48 154.245,1120.36 147.9,1118.21 " />
<svg:polygon detid="411238950" count="1" value="30" id="1002018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  9   Id 411238950 " fill="rgb(255,196,0)" points="162.796,1126.48 163.741,1122.07 156.664,1120.95 " />
<svg:polygon detid="411239082" count="1" value="30" id="1002019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  10   Id 411239082 " fill="rgb(255,196,0)" points="174.692,1126.67 173.664,1122.27 166.336,1122.27 " />
<svg:polygon detid="411238954" count="1" value="30" id="1002020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  10   Id 411238954 " fill="rgb(255,196,0)" points="186.268,1125.05 183.336,1120.95 176.259,1122.07 " />
<svg:polygon detid="411239086" count="1" value="30" id="1002021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  11   Id 411239086 " fill="rgb(255,196,0)" points="196.735,1121.72 192.1,1118.21 185.755,1120.36 " />
<svg:polygon detid="411238958" count="1" value="30" id="1002022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  11   Id 411238958 " fill="rgb(255,196,0)" points="205.38,1116.91 199.358,1114.22 194.177,1117.27 " />
<svg:polygon detid="411239090" count="1" value="30" id="1002023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  12   Id 411239090 " fill="rgb(255,196,0)" points="211.614,1110.95 204.615,1109.27 200.951,1113 " />
<svg:polygon detid="411238962" count="1" value="30" id="1002024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  12   Id 411238962 " fill="rgb(255,196,0)" points="215.013,1104.24 207.513,1103.68 205.617,1107.84 " />
<svg:polygon detid="411239045" count="1" value="30" id="1002101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  1  stereo Id 411239045 " fill="rgb(255,196,0)" points="207.855,1102.16 215.343,1102.76 215.343,1097.24 " />
<svg:polygon detid="411238917" count="1" value="30" id="1002102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  1  stereo Id 411238917 " fill="rgb(255,196,0)" points="207.513,1096.32 215.013,1095.76 212.584,1090.43 " />
<svg:polygon detid="411239049" count="1" value="30" id="1002103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  2  stereo Id 411239049 " fill="rgb(255,196,0)" points="204.615,1090.73 211.614,1089.05 206.922,1084.27 " />
<svg:polygon detid="411238921" count="1" value="30" id="1002104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  2  stereo Id 411238921 " fill="rgb(255,196,0)" points="199.358,1085.78 205.38,1083.09 198.745,1079.19 " />
<svg:polygon detid="411239053" count="1" value="30" id="1002105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  3  stereo Id 411239053 " fill="rgb(255,196,0)" points="192.1,1081.79 196.735,1078.28 188.608,1075.52 " />
<svg:polygon detid="411238925" count="1" value="30" id="1002106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  3  stereo Id 411238925 " fill="rgb(255,196,0)" points="183.336,1079.05 186.268,1074.95 177.204,1073.52 " />
<svg:polygon detid="411239057" count="1" value="30" id="1002107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  4  stereo Id 411239057 " fill="rgb(255,196,0)" points="173.664,1077.73 174.692,1073.33 165.308,1073.33 " />
<svg:polygon detid="411238929" count="1" value="30" id="1002108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  4  stereo Id 411238929 " fill="rgb(255,196,0)" points="163.741,1077.93 162.796,1073.52 153.732,1074.95 " />
<svg:polygon detid="411239061" count="1" value="30" id="1002109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  5  stereo Id 411239061 " fill="rgb(255,196,0)" points="154.245,1079.64 151.392,1075.52 143.265,1078.28 " />
<svg:polygon detid="411238933" count="1" value="30" id="1002110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  5  stereo Id 411238933 " fill="rgb(255,196,0)" points="145.823,1082.73 141.255,1079.19 134.62,1083.09 " />
<svg:polygon detid="411239065" count="1" value="30" id="1002111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  6  stereo Id 411239065 " fill="rgb(255,196,0)" points="139.049,1087 133.078,1084.27 128.386,1089.05 " />
<svg:polygon detid="411238937" count="1" value="30" id="1002112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  6  stereo Id 411238937 " fill="rgb(255,196,0)" points="134.383,1092.16 127.416,1090.43 124.987,1095.76 " />
<svg:polygon detid="411239069" count="1" value="30" id="1002113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  7  stereo Id 411239069 " fill="rgb(255,196,0)" points="132.145,1097.84 124.657,1097.24 124.657,1102.76 " />
<svg:polygon detid="411238941" count="1" value="30" id="1002114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  7  stereo Id 411238941 " fill="rgb(255,196,0)" points="132.487,1103.68 124.987,1104.24 127.416,1109.57 " />
<svg:polygon detid="411239073" count="1" value="30" id="1002115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  8  stereo Id 411239073 " fill="rgb(255,196,0)" points="135.385,1109.27 128.386,1110.95 133.078,1115.73 " />
<svg:polygon detid="411238945" count="1" value="30" id="1002116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  8  stereo Id 411238945 " fill="rgb(255,196,0)" points="140.642,1114.22 134.62,1116.91 141.255,1120.81 " />
<svg:polygon detid="411239077" count="1" value="30" id="1002117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  9  stereo Id 411239077 " fill="rgb(255,196,0)" points="147.9,1118.21 143.265,1121.72 151.392,1124.48 " />
<svg:polygon detid="411238949" count="1" value="30" id="1002118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  9  stereo Id 411238949 " fill="rgb(255,196,0)" points="156.664,1120.95 153.732,1125.05 162.796,1126.48 " />
<svg:polygon detid="411239081" count="1" value="30" id="1002119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  10  stereo Id 411239081 " fill="rgb(255,196,0)" points="166.336,1122.27 165.308,1126.67 174.692,1126.67 " />
<svg:polygon detid="411238953" count="1" value="30" id="1002120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  10  stereo Id 411238953 " fill="rgb(255,196,0)" points="176.259,1122.07 177.204,1126.48 186.268,1125.05 " />
<svg:polygon detid="411239085" count="1" value="30" id="1002121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  11  stereo Id 411239085 " fill="rgb(255,196,0)" points="185.755,1120.36 188.608,1124.48 196.735,1121.72 " />
<svg:polygon detid="411238957" count="1" value="30" id="1002122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  11  stereo Id 411238957 " fill="rgb(255,196,0)" points="194.177,1117.27 198.745,1120.81 205.38,1116.91 " />
<svg:polygon detid="411239089" count="1" value="30" id="1002123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  backward  module  12  stereo Id 411239089 " fill="rgb(255,196,0)" points="200.951,1113 206.922,1115.73 211.614,1110.95 " />
<svg:polygon detid="411238961" count="1" value="30" id="1002124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 2  forward  module  12  stereo Id 411238961 " fill="rgb(255,196,0)" points="205.617,1107.84 212.584,1109.57 215.013,1104.24 " />
<svg:polygon detid="411239300" count="1" value="30" id="1003001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  1   Id 411239300 " fill="rgb(255,196,0)" points="216.005,1101.57 225.406,1102.03 225.406,1097.97 216.005,1098.43 " />
<svg:polygon detid="411239172" count="1" value="30" id="1003002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  1   Id 411239172 " fill="rgb(255,196,0)" points="215.857,1097.32 225.264,1096.91 224.184,1092.9 215.02,1094.21 " />
<svg:polygon detid="411239304" count="1" value="30" id="1003003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  2   Id 411239304 " fill="rgb(255,196,0)" points="214.581,1093.14 223.761,1091.86 221.628,1088 212.926,1090.14 " />
<svg:polygon detid="411239176" count="1" value="30" id="1003004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  2   Id 411239176 " fill="rgb(255,196,0)" points="212.206,1089.12 220.934,1087.01 217.8,1083.39 209.775,1086.31 " />
<svg:polygon detid="411239308" count="1" value="30" id="1003005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  3   Id 411239308 " fill="rgb(255,196,0)" points="208.792,1085.37 216.853,1082.49 212.796,1079.2 205.645,1082.82 " />
<svg:polygon detid="411239180" count="1" value="30" id="1003006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  3   Id 411239180 " fill="rgb(255,196,0)" points="204.424,1081.98 211.618,1078.39 206.738,1075.52 200.637,1079.75 " />
<svg:polygon detid="411239312" count="1" value="30" id="1003007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  4   Id 411239312 " fill="rgb(255,196,0)" points="199.207,1079.03 205.359,1074.83 199.775,1072.44 194.875,1077.18 " />
<svg:polygon detid="411239184" count="1" value="30" id="1003008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  4   Id 411239184 " fill="rgb(255,196,0)" points="193.271,1076.6 198.229,1071.88 192.079,1070.04 188.5,1075.17 " />
<svg:polygon detid="411239316" count="1" value="30" id="1003009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  5   Id 411239316 " fill="rgb(255,196,0)" points="186.763,1074.75 190.403,1069.63 183.839,1068.38 181.67,1073.78 " />
<svg:polygon detid="411239188" count="1" value="30" id="1003010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  5   Id 411239188 " fill="rgb(255,196,0)" points="179.841,1073.52 182.076,1068.13 175.259,1067.49 174.552,1073.03 " />
<svg:polygon detid="411239320" count="1" value="30" id="1003011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  6   Id 411239320 " fill="rgb(255,196,0)" points="172.677,1072.94 173.451,1067.41 166.549,1067.41 167.323,1072.94 " />
<svg:polygon detid="411239192" count="1" value="30" id="1003012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  6   Id 411239192 " fill="rgb(255,196,0)" points="165.448,1073.03 164.741,1067.49 157.924,1068.13 160.159,1073.52 " />
<svg:polygon detid="411239324" count="1" value="30" id="1003013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  7   Id 411239324 " fill="rgb(255,196,0)" points="158.33,1073.78 156.161,1068.38 149.597,1069.63 153.237,1074.75 " />
<svg:polygon detid="411239196" count="1" value="30" id="1003014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  7   Id 411239196 " fill="rgb(255,196,0)" points="151.5,1075.17 147.921,1070.04 141.771,1071.88 146.729,1076.6 " />
<svg:polygon detid="411239328" count="1" value="30" id="1003015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  8   Id 411239328 " fill="rgb(255,196,0)" points="145.125,1077.18 140.225,1072.44 134.641,1074.83 140.793,1079.03 " />
<svg:polygon detid="411239200" count="1" value="30" id="1003016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  8   Id 411239200 " fill="rgb(255,196,0)" points="139.363,1079.75 133.262,1075.52 128.382,1078.39 135.576,1081.98 " />
<svg:polygon detid="411239332" count="1" value="30" id="1003017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  9   Id 411239332 " fill="rgb(255,196,0)" points="134.355,1082.82 127.204,1079.2 123.147,1082.49 131.208,1085.37 " />
<svg:polygon detid="411239204" count="1" value="30" id="1003018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  9   Id 411239204 " fill="rgb(255,196,0)" points="130.225,1086.31 122.2,1083.39 119.066,1087.01 127.794,1089.12 " />
<svg:polygon detid="411239336" count="1" value="30" id="1003019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  10   Id 411239336 " fill="rgb(255,196,0)" points="127.074,1090.14 118.372,1088 116.239,1091.86 125.419,1093.14 " />
<svg:polygon detid="411239208" count="1" value="30" id="1003020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  10   Id 411239208 " fill="rgb(255,196,0)" points="124.98,1094.21 115.816,1092.9 114.736,1096.91 124.143,1097.32 " />
<svg:polygon detid="411239340" count="1" value="30" id="1003021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  11   Id 411239340 " fill="rgb(255,196,0)" points="123.995,1098.43 114.594,1097.97 114.594,1102.03 123.995,1101.57 " />
<svg:polygon detid="411239212" count="1" value="30" id="1003022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  11   Id 411239212 " fill="rgb(255,196,0)" points="124.143,1102.68 114.736,1103.09 115.816,1107.1 124.98,1105.79 " />
<svg:polygon detid="411239344" count="1" value="30" id="1003023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  12   Id 411239344 " fill="rgb(255,196,0)" points="125.419,1106.86 116.239,1108.14 118.372,1112 127.074,1109.86 " />
<svg:polygon detid="411239216" count="1" value="30" id="1003024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  12   Id 411239216 " fill="rgb(255,196,0)" points="127.794,1110.88 119.066,1112.99 122.2,1116.61 130.225,1113.69 " />
<svg:polygon detid="411239348" count="1" value="30" id="1003025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  13   Id 411239348 " fill="rgb(255,196,0)" points="131.208,1114.63 123.147,1117.51 127.204,1120.8 134.355,1117.18 " />
<svg:polygon detid="411239220" count="1" value="30" id="1003026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  13   Id 411239220 " fill="rgb(255,196,0)" points="135.576,1118.02 128.382,1121.61 133.262,1124.48 139.363,1120.25 " />
<svg:polygon detid="411239352" count="1" value="30" id="1003027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  14   Id 411239352 " fill="rgb(255,196,0)" points="140.793,1120.97 134.641,1125.17 140.225,1127.56 145.125,1122.82 " />
<svg:polygon detid="411239224" count="1" value="30" id="1003028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  14   Id 411239224 " fill="rgb(255,196,0)" points="146.729,1123.4 141.771,1128.12 147.921,1129.96 151.5,1124.83 " />
<svg:polygon detid="411239356" count="1" value="30" id="1003029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  15   Id 411239356 " fill="rgb(255,196,0)" points="153.237,1125.25 149.597,1130.37 156.161,1131.62 158.33,1126.22 " />
<svg:polygon detid="411239228" count="1" value="30" id="1003030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  15   Id 411239228 " fill="rgb(255,196,0)" points="160.159,1126.48 157.924,1131.87 164.741,1132.51 165.448,1126.97 " />
<svg:polygon detid="411239360" count="1" value="30" id="1003031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  16   Id 411239360 " fill="rgb(255,196,0)" points="167.323,1127.06 166.549,1132.59 173.451,1132.59 172.677,1127.06 " />
<svg:polygon detid="411239232" count="1" value="30" id="1003032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  16   Id 411239232 " fill="rgb(255,196,0)" points="174.552,1126.97 175.259,1132.51 182.076,1131.87 179.841,1126.48 " />
<svg:polygon detid="411239364" count="1" value="30" id="1003033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  17   Id 411239364 " fill="rgb(255,196,0)" points="181.67,1126.22 183.839,1131.62 190.403,1130.37 186.763,1125.25 " />
<svg:polygon detid="411239236" count="1" value="30" id="1003034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  17   Id 411239236 " fill="rgb(255,196,0)" points="188.5,1124.83 192.079,1129.96 198.229,1128.12 193.271,1123.4 " />
<svg:polygon detid="411239368" count="1" value="30" id="1003035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  18   Id 411239368 " fill="rgb(255,196,0)" points="194.875,1122.82 199.775,1127.56 205.359,1125.17 199.207,1120.97 " />
<svg:polygon detid="411239240" count="1" value="30" id="1003036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  18   Id 411239240 " fill="rgb(255,196,0)" points="200.637,1120.25 206.738,1124.48 211.618,1121.61 204.424,1118.02 " />
<svg:polygon detid="411239372" count="1" value="30" id="1003037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  19   Id 411239372 " fill="rgb(255,196,0)" points="205.645,1117.18 212.796,1120.8 216.853,1117.51 208.792,1114.63 " />
<svg:polygon detid="411239244" count="1" value="30" id="1003038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  19   Id 411239244 " fill="rgb(255,196,0)" points="209.775,1113.69 217.8,1116.61 220.934,1112.99 212.206,1110.88 " />
<svg:polygon detid="411239376" count="1" value="30" id="1003039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  backward  module  20   Id 411239376 " fill="rgb(255,196,0)" points="212.926,1109.86 221.628,1112 223.761,1108.14 214.581,1106.86 " />
<svg:polygon detid="411239248" count="1" value="30" id="1003040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 3 ring 3  forward  module  20   Id 411239248 " fill="rgb(255,196,0)" points="215.02,1105.79 224.184,1107.1 225.264,1103.09 215.857,1102.68 " />
<svg:polygon detid="411173254" count="1" value="33" id="1101001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  1   Id 411173254 " fill="rgb(255,190,0)" points="207.203,897.703 197.794,898.455 197.794,901.545 " />
<svg:polygon detid="411173126" count="1" value="33" id="1101002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  1   Id 411173126 " fill="rgb(255,190,0)" points="204.925,892.117 196.167,894.276 197.526,897.261 " />
<svg:polygon detid="411173258" count="1" value="33" id="1101003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  2   Id 411173258 " fill="rgb(255,190,0)" points="200.266,887.068 192.757,890.487 195.383,893.163 " />
<svg:polygon detid="411173130" count="1" value="33" id="1101004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  2   Id 411173130 " fill="rgb(255,190,0)" points="193.545,882.901 187.796,887.347 191.51,889.532 " />
<svg:polygon detid="411173262" count="1" value="33" id="1101005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  3   Id 411173262 " fill="rgb(255,190,0)" points="185.219,879.899 181.622,885.069 186.171,886.614 " />
<svg:polygon detid="411173134" count="1" value="33" id="1101006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  3   Id 411173134 " fill="rgb(255,190,0)" points="175.856,878.267 174.657,883.808 179.731,884.608 " />
<svg:polygon detid="411173266" count="1" value="33" id="1101007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  4   Id 411173266 " fill="rgb(255,190,0)" points="166.094,878.116 167.374,883.651 172.626,883.651 " />
<svg:polygon detid="411173138" count="1" value="33" id="1101008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  4   Id 411173138 " fill="rgb(255,190,0)" points="156.598,879.456 160.269,884.608 165.343,883.808 " />
<svg:polygon detid="411173270" count="1" value="33" id="1101009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  5   Id 411173270 " fill="rgb(255,190,0)" points="148.016,882.196 153.829,886.614 158.378,885.069 " />
<svg:polygon detid="411173142" count="1" value="33" id="1101010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  5   Id 411173142 " fill="rgb(255,190,0)" points="140.932,886.15 148.49,889.532 152.204,887.347 " />
<svg:polygon detid="411173274" count="1" value="33" id="1101011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  6   Id 411173274 " fill="rgb(255,190,0)" points="135.828,891.048 144.617,893.163 147.243,890.487 " />
<svg:polygon detid="411173146" count="1" value="33" id="1101012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  6   Id 411173146 " fill="rgb(255,190,0)" points="133.054,896.555 142.474,897.261 143.833,894.276 " />
<svg:polygon detid="411173278" count="1" value="33" id="1101013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  7   Id 411173278 " fill="rgb(255,190,0)" points="132.797,902.297 142.206,901.545 142.206,898.455 " />
<svg:polygon detid="411173150" count="1" value="33" id="1101014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  7   Id 411173150 " fill="rgb(255,190,0)" points="135.075,907.883 143.833,905.724 142.474,902.739 " />
<svg:polygon detid="411173282" count="1" value="33" id="1101015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  8   Id 411173282 " fill="rgb(255,190,0)" points="139.734,912.932 147.243,909.513 144.617,906.837 " />
<svg:polygon detid="411173154" count="1" value="33" id="1101016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  8   Id 411173154 " fill="rgb(255,190,0)" points="146.455,917.099 152.204,912.653 148.49,910.468 " />
<svg:polygon detid="411173286" count="1" value="33" id="1101017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  9   Id 411173286 " fill="rgb(255,190,0)" points="154.781,920.101 158.378,914.931 153.829,913.386 " />
<svg:polygon detid="411173158" count="1" value="33" id="1101018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  9   Id 411173158 " fill="rgb(255,190,0)" points="164.144,921.733 165.343,916.192 160.269,915.392 " />
<svg:polygon detid="411173290" count="1" value="33" id="1101019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  10   Id 411173290 " fill="rgb(255,190,0)" points="173.906,921.884 172.626,916.349 167.374,916.349 " />
<svg:polygon detid="411173162" count="1" value="33" id="1101020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  10   Id 411173162 " fill="rgb(255,190,0)" points="183.402,920.544 179.731,915.392 174.657,916.192 " />
<svg:polygon detid="411173294" count="1" value="33" id="1101021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  11   Id 411173294 " fill="rgb(255,190,0)" points="191.984,917.804 186.171,913.386 181.622,914.931 " />
<svg:polygon detid="411173166" count="1" value="33" id="1101022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  11   Id 411173166 " fill="rgb(255,190,0)" points="199.068,913.85 191.51,910.468 187.796,912.653 " />
<svg:polygon detid="411173298" count="1" value="33" id="1101023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  12   Id 411173298 " fill="rgb(255,190,0)" points="204.172,908.952 195.383,906.837 192.757,909.513 " />
<svg:polygon detid="411173170" count="1" value="33" id="1101024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  12   Id 411173170 " fill="rgb(255,190,0)" points="206.946,903.445 197.526,902.739 196.167,905.724 " />
<svg:polygon detid="411173253" count="1" value="33" id="1101101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  1  stereo Id 411173253 " fill="rgb(255,190,0)" points="197.794,901.545 207.203,902.297 207.203,897.703 " />
<svg:polygon detid="411173125" count="1" value="33" id="1101102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  1  stereo Id 411173125 " fill="rgb(255,190,0)" points="197.526,897.261 206.946,896.555 204.925,892.117 " />
<svg:polygon detid="411173257" count="1" value="33" id="1101103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  2  stereo Id 411173257 " fill="rgb(255,190,0)" points="195.383,893.163 204.172,891.048 200.266,887.068 " />
<svg:polygon detid="411173129" count="1" value="33" id="1101104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  2  stereo Id 411173129 " fill="rgb(255,190,0)" points="191.51,889.532 199.068,886.15 193.545,882.901 " />
<svg:polygon detid="411173261" count="1" value="33" id="1101105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  3  stereo Id 411173261 " fill="rgb(255,190,0)" points="186.171,886.614 191.984,882.196 185.219,879.899 " />
<svg:polygon detid="411173133" count="1" value="33" id="1101106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  3  stereo Id 411173133 " fill="rgb(255,190,0)" points="179.731,884.608 183.402,879.456 175.856,878.267 " />
<svg:polygon detid="411173265" count="1" value="33" id="1101107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  4  stereo Id 411173265 " fill="rgb(255,190,0)" points="172.626,883.651 173.906,878.116 166.094,878.116 " />
<svg:polygon detid="411173137" count="1" value="33" id="1101108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  4  stereo Id 411173137 " fill="rgb(255,190,0)" points="165.343,883.808 164.144,878.267 156.598,879.456 " />
<svg:polygon detid="411173269" count="1" value="33" id="1101109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  5  stereo Id 411173269 " fill="rgb(255,190,0)" points="158.378,885.069 154.781,879.899 148.016,882.196 " />
<svg:polygon detid="411173141" count="1" value="33" id="1101110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  5  stereo Id 411173141 " fill="rgb(255,190,0)" points="152.204,887.347 146.455,882.901 140.932,886.15 " />
<svg:polygon detid="411173273" count="1" value="33" id="1101111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  6  stereo Id 411173273 " fill="rgb(255,190,0)" points="147.243,890.487 139.734,887.068 135.828,891.048 " />
<svg:polygon detid="411173145" count="1" value="33" id="1101112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  6  stereo Id 411173145 " fill="rgb(255,190,0)" points="143.833,894.276 135.075,892.117 133.054,896.555 " />
<svg:polygon detid="411173277" count="1" value="33" id="1101113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  7  stereo Id 411173277 " fill="rgb(255,190,0)" points="142.206,898.455 132.797,897.703 132.797,902.297 " />
<svg:polygon detid="411173149" count="1" value="33" id="1101114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  7  stereo Id 411173149 " fill="rgb(255,190,0)" points="142.474,902.739 133.054,903.445 135.075,907.883 " />
<svg:polygon detid="411173281" count="1" value="33" id="1101115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  8  stereo Id 411173281 " fill="rgb(255,190,0)" points="144.617,906.837 135.828,908.952 139.734,912.932 " />
<svg:polygon detid="411173153" count="1" value="33" id="1101116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  8  stereo Id 411173153 " fill="rgb(255,190,0)" points="148.49,910.468 140.932,913.85 146.455,917.099 " />
<svg:polygon detid="411173285" count="1" value="33" id="1101117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  9  stereo Id 411173285 " fill="rgb(255,190,0)" points="153.829,913.386 148.016,917.804 154.781,920.101 " />
<svg:polygon detid="411173157" count="1" value="33" id="1101118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  9  stereo Id 411173157 " fill="rgb(255,190,0)" points="160.269,915.392 156.598,920.544 164.144,921.733 " />
<svg:polygon detid="411173289" count="1" value="33" id="1101119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  10  stereo Id 411173289 " fill="rgb(255,190,0)" points="167.374,916.349 166.094,921.884 173.906,921.884 " />
<svg:polygon detid="411173161" count="1" value="33" id="1101120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  10  stereo Id 411173161 " fill="rgb(255,190,0)" points="174.657,916.192 175.856,921.733 183.402,920.544 " />
<svg:polygon detid="411173293" count="1" value="33" id="1101121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  11  stereo Id 411173293 " fill="rgb(255,190,0)" points="181.622,914.931 185.219,920.101 191.984,917.804 " />
<svg:polygon detid="411173165" count="1" value="33" id="1101122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  11  stereo Id 411173165 " fill="rgb(255,190,0)" points="187.796,912.653 193.545,917.099 199.068,913.85 " />
<svg:polygon detid="411173297" count="1" value="33" id="1101123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  backward  module  12  stereo Id 411173297 " fill="rgb(255,190,0)" points="192.757,909.513 200.266,912.932 204.172,908.952 " />
<svg:polygon detid="411173169" count="1" value="33" id="1101124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 1  forward  module  12  stereo Id 411173169 " fill="rgb(255,190,0)" points="196.167,905.724 204.925,907.883 206.946,903.445 " />
<svg:polygon detid="411173510" count="1" value="33" id="1102001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  1   Id 411173510 " fill="rgb(255,190,0)" points="215.343,897.24 207.855,897.845 207.855,902.155 " />
<svg:polygon detid="411173382" count="1" value="33" id="1102002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  1   Id 411173382 " fill="rgb(255,190,0)" points="212.584,890.431 205.617,892.155 207.513,896.318 " />
<svg:polygon detid="411173514" count="1" value="33" id="1102003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  2   Id 411173514 " fill="rgb(255,190,0)" points="206.922,884.274 200.951,887 204.615,890.733 " />
<svg:polygon detid="411173386" count="1" value="33" id="1102004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  2   Id 411173386 " fill="rgb(255,190,0)" points="198.745,879.188 194.177,882.731 199.358,885.778 " />
<svg:polygon detid="411173518" count="1" value="33" id="1102005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  3   Id 411173518 " fill="rgb(255,190,0)" points="188.608,875.521 185.755,879.638 192.1,881.793 " />
<svg:polygon detid="411173390" count="1" value="33" id="1102006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  3   Id 411173390 " fill="rgb(255,190,0)" points="177.204,873.522 176.259,877.933 183.336,879.049 " />
<svg:polygon detid="411173522" count="1" value="33" id="1102007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  4   Id 411173522 " fill="rgb(255,190,0)" points="165.308,873.328 166.336,877.733 173.664,877.733 " />
<svg:polygon detid="411173394" count="1" value="33" id="1102008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  4   Id 411173394 " fill="rgb(255,190,0)" points="153.732,874.951 156.664,879.049 163.741,877.933 " />
<svg:polygon detid="411173526" count="1" value="33" id="1102009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  5   Id 411173526 " fill="rgb(255,190,0)" points="143.265,878.281 147.9,881.793 154.245,879.638 " />
<svg:polygon detid="411173398" count="1" value="33" id="1102010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  5   Id 411173398 " fill="rgb(255,190,0)" points="134.62,883.091 140.642,885.778 145.823,882.731 " />
<svg:polygon detid="411173530" count="1" value="33" id="1102011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  6   Id 411173530 " fill="rgb(255,190,0)" points="128.386,889.054 135.385,890.733 139.049,887 " />
<svg:polygon detid="411173402" count="1" value="33" id="1102012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  6   Id 411173402 " fill="rgb(255,190,0)" points="124.987,895.763 132.487,896.318 134.383,892.155 " />
<svg:polygon detid="411173534" count="1" value="33" id="1102013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  7   Id 411173534 " fill="rgb(255,190,0)" points="124.657,902.76 132.145,902.155 132.145,897.845 " />
<svg:polygon detid="411173406" count="1" value="33" id="1102014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  7   Id 411173406 " fill="rgb(255,190,0)" points="127.416,909.569 134.383,907.845 132.487,903.682 " />
<svg:polygon detid="411173538" count="1" value="33" id="1102015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  8   Id 411173538 " fill="rgb(255,190,0)" points="133.078,915.726 139.049,913 135.385,909.267 " />
<svg:polygon detid="411173410" count="1" value="33" id="1102016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  8   Id 411173410 " fill="rgb(255,190,0)" points="141.255,920.812 145.823,917.269 140.642,914.222 " />
<svg:polygon detid="411173542" count="1" value="33" id="1102017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  9   Id 411173542 " fill="rgb(255,190,0)" points="151.392,924.479 154.245,920.362 147.9,918.207 " />
<svg:polygon detid="411173414" count="1" value="33" id="1102018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  9   Id 411173414 " fill="rgb(255,190,0)" points="162.796,926.478 163.741,922.067 156.664,920.951 " />
<svg:polygon detid="411173546" count="1" value="33" id="1102019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  10   Id 411173546 " fill="rgb(255,190,0)" points="174.692,926.672 173.664,922.267 166.336,922.267 " />
<svg:polygon detid="411173418" count="1" value="33" id="1102020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  10   Id 411173418 " fill="rgb(255,190,0)" points="186.268,925.049 183.336,920.951 176.259,922.067 " />
<svg:polygon detid="411173550" count="1" value="33" id="1102021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  11   Id 411173550 " fill="rgb(255,190,0)" points="196.735,921.719 192.1,918.207 185.755,920.362 " />
<svg:polygon detid="411173422" count="1" value="33" id="1102022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  11   Id 411173422 " fill="rgb(255,190,0)" points="205.38,916.909 199.358,914.222 194.177,917.269 " />
<svg:polygon detid="411173554" count="1" value="33" id="1102023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  12   Id 411173554 " fill="rgb(255,190,0)" points="211.614,910.946 204.615,909.267 200.951,913 " />
<svg:polygon detid="411173426" count="1" value="33" id="1102024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  12   Id 411173426 " fill="rgb(255,190,0)" points="215.013,904.237 207.513,903.682 205.617,907.845 " />
<svg:polygon detid="411173509" count="1" value="33" id="1102101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  1  stereo Id 411173509 " fill="rgb(255,190,0)" points="207.855,902.155 215.343,902.76 215.343,897.24 " />
<svg:polygon detid="411173381" count="1" value="33" id="1102102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  1  stereo Id 411173381 " fill="rgb(255,190,0)" points="207.513,896.318 215.013,895.763 212.584,890.431 " />
<svg:polygon detid="411173513" count="1" value="33" id="1102103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  2  stereo Id 411173513 " fill="rgb(255,190,0)" points="204.615,890.733 211.614,889.054 206.922,884.274 " />
<svg:polygon detid="411173385" count="1" value="33" id="1102104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  2  stereo Id 411173385 " fill="rgb(255,190,0)" points="199.358,885.778 205.38,883.091 198.745,879.188 " />
<svg:polygon detid="411173517" count="1" value="33" id="1102105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  3  stereo Id 411173517 " fill="rgb(255,190,0)" points="192.1,881.793 196.735,878.281 188.608,875.521 " />
<svg:polygon detid="411173389" count="1" value="33" id="1102106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  3  stereo Id 411173389 " fill="rgb(255,190,0)" points="183.336,879.049 186.268,874.951 177.204,873.522 " />
<svg:polygon detid="411173521" count="1" value="33" id="1102107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  4  stereo Id 411173521 " fill="rgb(255,190,0)" points="173.664,877.733 174.692,873.328 165.308,873.328 " />
<svg:polygon detid="411173393" count="1" value="33" id="1102108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  4  stereo Id 411173393 " fill="rgb(255,190,0)" points="163.741,877.933 162.796,873.522 153.732,874.951 " />
<svg:polygon detid="411173525" count="1" value="33" id="1102109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  5  stereo Id 411173525 " fill="rgb(255,190,0)" points="154.245,879.638 151.392,875.521 143.265,878.281 " />
<svg:polygon detid="411173397" count="1" value="33" id="1102110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  5  stereo Id 411173397 " fill="rgb(255,190,0)" points="145.823,882.731 141.255,879.188 134.62,883.091 " />
<svg:polygon detid="411173529" count="1" value="33" id="1102111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  6  stereo Id 411173529 " fill="rgb(255,190,0)" points="139.049,887 133.078,884.274 128.386,889.054 " />
<svg:polygon detid="411173401" count="1" value="33" id="1102112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  6  stereo Id 411173401 " fill="rgb(255,190,0)" points="134.383,892.155 127.416,890.431 124.987,895.763 " />
<svg:polygon detid="411173533" count="1" value="33" id="1102113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  7  stereo Id 411173533 " fill="rgb(255,190,0)" points="132.145,897.845 124.657,897.24 124.657,902.76 " />
<svg:polygon detid="411173405" count="1" value="33" id="1102114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  7  stereo Id 411173405 " fill="rgb(255,190,0)" points="132.487,903.682 124.987,904.237 127.416,909.569 " />
<svg:polygon detid="411173537" count="1" value="33" id="1102115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  8  stereo Id 411173537 " fill="rgb(255,190,0)" points="135.385,909.267 128.386,910.946 133.078,915.726 " />
<svg:polygon detid="411173409" count="1" value="33" id="1102116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  8  stereo Id 411173409 " fill="rgb(255,190,0)" points="140.642,914.222 134.62,916.909 141.255,920.812 " />
<svg:polygon detid="411173541" count="1" value="33" id="1102117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  9  stereo Id 411173541 " fill="rgb(255,190,0)" points="147.9,918.207 143.265,921.719 151.392,924.479 " />
<svg:polygon detid="411173413" count="1" value="33" id="1102118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  9  stereo Id 411173413 " fill="rgb(255,190,0)" points="156.664,920.951 153.732,925.049 162.796,926.478 " />
<svg:polygon detid="411173545" count="1" value="33" id="1102119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  10  stereo Id 411173545 " fill="rgb(255,190,0)" points="166.336,922.267 165.308,926.672 174.692,926.672 " />
<svg:polygon detid="411173417" count="1" value="33" id="1102120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  10  stereo Id 411173417 " fill="rgb(255,190,0)" points="176.259,922.067 177.204,926.478 186.268,925.049 " />
<svg:polygon detid="411173549" count="1" value="33" id="1102121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  11  stereo Id 411173549 " fill="rgb(255,190,0)" points="185.755,920.362 188.608,924.479 196.735,921.719 " />
<svg:polygon detid="411173421" count="1" value="33" id="1102122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  11  stereo Id 411173421 " fill="rgb(255,190,0)" points="194.177,917.269 198.745,920.812 205.38,916.909 " />
<svg:polygon detid="411173553" count="1" value="33" id="1102123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  backward  module  12  stereo Id 411173553 " fill="rgb(255,190,0)" points="200.951,913 206.922,915.726 211.614,910.946 " />
<svg:polygon detid="411173425" count="1" value="33" id="1102124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 2  forward  module  12  stereo Id 411173425 " fill="rgb(255,190,0)" points="205.617,907.845 212.584,909.569 215.013,904.237 " />
<svg:polygon detid="411173764" count="1" value="33" id="1103001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  1   Id 411173764 " fill="rgb(255,190,0)" points="216.005,901.575 225.406,902.03 225.406,897.97 216.005,898.425 " />
<svg:polygon detid="411173636" count="1" value="33" id="1103002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  1   Id 411173636 " fill="rgb(255,190,0)" points="215.857,897.322 225.264,896.907 224.184,892.897 215.02,894.211 " />
<svg:polygon detid="411173768" count="1" value="33" id="1103003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  2   Id 411173768 " fill="rgb(255,190,0)" points="214.581,893.135 223.761,891.859 221.628,887.998 212.926,890.14 " />
<svg:polygon detid="411173640" count="1" value="33" id="1103004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  2   Id 411173640 " fill="rgb(255,190,0)" points="212.206,889.118 220.934,887.012 217.8,883.395 209.775,886.311 " />
<svg:polygon detid="411173772" count="1" value="33" id="1103005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  3   Id 411173772 " fill="rgb(255,190,0)" points="208.792,885.368 216.853,882.485 212.796,879.201 205.645,882.819 " />
<svg:polygon detid="411173644" count="1" value="33" id="1103006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  3   Id 411173644 " fill="rgb(255,190,0)" points="204.424,881.978 211.618,878.39 206.738,875.519 200.637,879.751 " />
<svg:polygon detid="411173776" count="1" value="33" id="1103007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  4   Id 411173776 " fill="rgb(255,190,0)" points="199.207,879.032 205.359,874.826 199.775,872.44 194.875,877.181 " />
<svg:polygon detid="411173648" count="1" value="33" id="1103008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  4   Id 411173648 " fill="rgb(255,190,0)" points="193.271,876.603 198.229,871.882 192.079,870.039 188.5,875.173 " />
<svg:polygon detid="411173780" count="1" value="33" id="1103009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  5   Id 411173780 " fill="rgb(255,190,0)" points="186.763,874.75 190.403,869.631 183.839,868.376 181.67,873.776 " />
<svg:polygon detid="411173652" count="1" value="33" id="1103010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  5   Id 411173652 " fill="rgb(255,190,0)" points="179.841,873.518 182.076,868.127 175.259,867.492 174.552,873.025 " />
<svg:polygon detid="411173784" count="1" value="33" id="1103011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  6   Id 411173784 " fill="rgb(255,190,0)" points="172.677,872.938 173.451,867.408 166.549,867.408 167.323,872.938 " />
<svg:polygon detid="411173656" count="1" value="33" id="1103012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  6   Id 411173656 " fill="rgb(255,190,0)" points="165.448,873.025 164.741,867.492 157.924,868.127 160.159,873.518 " />
<svg:polygon detid="411173788" count="1" value="33" id="1103013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  7   Id 411173788 " fill="rgb(255,190,0)" points="158.33,873.776 156.161,868.376 149.597,869.631 153.237,874.75 " />
<svg:polygon detid="411173660" count="1" value="33" id="1103014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  7   Id 411173660 " fill="rgb(255,190,0)" points="151.5,875.173 147.921,870.039 141.771,871.882 146.729,876.603 " />
<svg:polygon detid="411173792" count="1" value="33" id="1103015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  8   Id 411173792 " fill="rgb(255,190,0)" points="145.125,877.181 140.225,872.44 134.641,874.826 140.793,879.032 " />
<svg:polygon detid="411173664" count="1" value="33" id="1103016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  8   Id 411173664 " fill="rgb(255,190,0)" points="139.363,879.751 133.262,875.519 128.382,878.39 135.576,881.978 " />
<svg:polygon detid="411173796" count="1" value="33" id="1103017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  9   Id 411173796 " fill="rgb(255,190,0)" points="134.355,882.819 127.204,879.201 123.147,882.485 131.208,885.368 " />
<svg:polygon detid="411173668" count="1" value="33" id="1103018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  9   Id 411173668 " fill="rgb(255,190,0)" points="130.225,886.311 122.2,883.395 119.066,887.012 127.794,889.118 " />
<svg:polygon detid="411173800" count="1" value="33" id="1103019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  10   Id 411173800 " fill="rgb(255,190,0)" points="127.074,890.14 118.372,887.998 116.239,891.859 125.419,893.135 " />
<svg:polygon detid="411173672" count="1" value="33" id="1103020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  10   Id 411173672 " fill="rgb(255,190,0)" points="124.98,894.211 115.816,892.897 114.736,896.907 124.143,897.322 " />
<svg:polygon detid="411173804" count="1" value="33" id="1103021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  11   Id 411173804 " fill="rgb(255,190,0)" points="123.995,898.425 114.594,897.97 114.594,902.03 123.995,901.575 " />
<svg:polygon detid="411173676" count="1" value="33" id="1103022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  11   Id 411173676 " fill="rgb(255,190,0)" points="124.143,902.678 114.736,903.093 115.816,907.103 124.98,905.789 " />
<svg:polygon detid="411173808" count="1" value="33" id="1103023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  12   Id 411173808 " fill="rgb(255,190,0)" points="125.419,906.865 116.239,908.141 118.372,912.002 127.074,909.86 " />
<svg:polygon detid="411173680" count="1" value="33" id="1103024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  12   Id 411173680 " fill="rgb(255,190,0)" points="127.794,910.882 119.066,912.988 122.2,916.605 130.225,913.689 " />
<svg:polygon detid="411173812" count="1" value="33" id="1103025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  13   Id 411173812 " fill="rgb(255,190,0)" points="131.208,914.632 123.147,917.515 127.204,920.799 134.355,917.181 " />
<svg:polygon detid="411173684" count="1" value="33" id="1103026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  13   Id 411173684 " fill="rgb(255,190,0)" points="135.576,918.022 128.382,921.61 133.262,924.481 139.363,920.249 " />
<svg:polygon detid="411173816" count="1" value="33" id="1103027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  14   Id 411173816 " fill="rgb(255,190,0)" points="140.793,920.968 134.641,925.174 140.225,927.56 145.125,922.819 " />
<svg:polygon detid="411173688" count="1" value="33" id="1103028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  14   Id 411173688 " fill="rgb(255,190,0)" points="146.729,923.397 141.771,928.118 147.921,929.961 151.5,924.827 " />
<svg:polygon detid="411173820" count="1" value="33" id="1103029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  15   Id 411173820 " fill="rgb(255,190,0)" points="153.237,925.25 149.597,930.369 156.161,931.624 158.33,926.224 " />
<svg:polygon detid="411173692" count="1" value="33" id="1103030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  15   Id 411173692 " fill="rgb(255,190,0)" points="160.159,926.482 157.924,931.873 164.741,932.508 165.448,926.975 " />
<svg:polygon detid="411173824" count="1" value="33" id="1103031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  16   Id 411173824 " fill="rgb(255,190,0)" points="167.323,927.062 166.549,932.592 173.451,932.592 172.677,927.062 " />
<svg:polygon detid="411173696" count="1" value="33" id="1103032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  16   Id 411173696 " fill="rgb(255,190,0)" points="174.552,926.975 175.259,932.508 182.076,931.873 179.841,926.482 " />
<svg:polygon detid="411173828" count="1" value="33" id="1103033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  17   Id 411173828 " fill="rgb(255,190,0)" points="181.67,926.224 183.839,931.624 190.403,930.369 186.763,925.25 " />
<svg:polygon detid="411173700" count="1" value="33" id="1103034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  17   Id 411173700 " fill="rgb(255,190,0)" points="188.5,924.827 192.079,929.961 198.229,928.118 193.271,923.397 " />
<svg:polygon detid="411173832" count="1" value="33" id="1103035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  18   Id 411173832 " fill="rgb(255,190,0)" points="194.875,922.819 199.775,927.56 205.359,925.174 199.207,920.968 " />
<svg:polygon detid="411173704" count="1" value="33" id="1103036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  18   Id 411173704 " fill="rgb(255,190,0)" points="200.637,920.249 206.738,924.481 211.618,921.61 204.424,918.022 " />
<svg:polygon detid="411173836" count="1" value="33" id="1103037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  19   Id 411173836 " fill="rgb(255,190,0)" points="205.645,917.181 212.796,920.799 216.853,917.515 208.792,914.632 " />
<svg:polygon detid="411173708" count="1" value="33" id="1103038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  19   Id 411173708 " fill="rgb(255,190,0)" points="209.775,913.689 217.8,916.605 220.934,912.988 212.206,910.882 " />
<svg:polygon detid="411173840" count="1" value="33" id="1103039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  backward  module  20   Id 411173840 " fill="rgb(255,190,0)" points="212.926,909.86 221.628,912.002 223.761,908.141 214.581,906.865 " />
<svg:polygon detid="411173712" count="1" value="33" id="1103040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 2 ring 3  forward  module  20   Id 411173712 " fill="rgb(255,190,0)" points="215.02,905.789 224.184,907.103 225.264,903.093 215.857,902.678 " />
<svg:polygon detid="411107718" count="1" value="36" id="1201001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  1   Id 411107718 " fill="rgb(255,184,0)" points="207.203,697.703 197.794,698.455 197.794,701.545 " />
<svg:polygon detid="411107590" count="1" value="36" id="1201002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  1   Id 411107590 " fill="rgb(255,184,0)" points="204.925,692.117 196.167,694.276 197.526,697.261 " />
<svg:polygon detid="411107722" count="1" value="36" id="1201003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  2   Id 411107722 " fill="rgb(255,184,0)" points="200.266,687.068 192.757,690.487 195.383,693.163 " />
<svg:polygon detid="411107594" count="1" value="36" id="1201004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  2   Id 411107594 " fill="rgb(255,184,0)" points="193.545,682.901 187.796,687.347 191.51,689.532 " />
<svg:polygon detid="411107726" count="1" value="36" id="1201005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  3   Id 411107726 " fill="rgb(255,184,0)" points="185.219,679.899 181.622,685.069 186.171,686.614 " />
<svg:polygon detid="411107598" count="1" value="36" id="1201006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  3   Id 411107598 " fill="rgb(255,184,0)" points="175.856,678.267 174.657,683.808 179.731,684.608 " />
<svg:polygon detid="411107730" count="1" value="36" id="1201007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  4   Id 411107730 " fill="rgb(255,184,0)" points="166.094,678.116 167.374,683.651 172.626,683.651 " />
<svg:polygon detid="411107602" count="1" value="36" id="1201008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  4   Id 411107602 " fill="rgb(255,184,0)" points="156.598,679.456 160.269,684.608 165.343,683.808 " />
<svg:polygon detid="411107734" count="1" value="36" id="1201009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  5   Id 411107734 " fill="rgb(255,184,0)" points="148.016,682.196 153.829,686.614 158.378,685.069 " />
<svg:polygon detid="411107606" count="1" value="36" id="1201010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  5   Id 411107606 " fill="rgb(255,184,0)" points="140.932,686.15 148.49,689.532 152.204,687.347 " />
<svg:polygon detid="411107738" count="1" value="36" id="1201011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  6   Id 411107738 " fill="rgb(255,184,0)" points="135.828,691.048 144.617,693.163 147.243,690.487 " />
<svg:polygon detid="411107610" count="1" value="36" id="1201012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  6   Id 411107610 " fill="rgb(255,184,0)" points="133.054,696.555 142.474,697.261 143.833,694.276 " />
<svg:polygon detid="411107742" count="1" value="36" id="1201013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  7   Id 411107742 " fill="rgb(255,184,0)" points="132.797,702.297 142.206,701.545 142.206,698.455 " />
<svg:polygon detid="411107614" count="1" value="36" id="1201014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  7   Id 411107614 " fill="rgb(255,184,0)" points="135.075,707.883 143.833,705.724 142.474,702.739 " />
<svg:polygon detid="411107746" count="1" value="36" id="1201015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  8   Id 411107746 " fill="rgb(255,184,0)" points="139.734,712.932 147.243,709.513 144.617,706.837 " />
<svg:polygon detid="411107618" count="1" value="36" id="1201016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  8   Id 411107618 " fill="rgb(255,184,0)" points="146.455,717.099 152.204,712.653 148.49,710.468 " />
<svg:polygon detid="411107750" count="1" value="36" id="1201017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  9   Id 411107750 " fill="rgb(255,184,0)" points="154.781,720.101 158.378,714.931 153.829,713.386 " />
<svg:polygon detid="411107622" count="1" value="36" id="1201018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  9   Id 411107622 " fill="rgb(255,184,0)" points="164.144,721.733 165.343,716.192 160.269,715.392 " />
<svg:polygon detid="411107754" count="1" value="36" id="1201019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  10   Id 411107754 " fill="rgb(255,184,0)" points="173.906,721.884 172.626,716.349 167.374,716.349 " />
<svg:polygon detid="411107626" count="1" value="36" id="1201020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  10   Id 411107626 " fill="rgb(255,184,0)" points="183.402,720.544 179.731,715.392 174.657,716.192 " />
<svg:polygon detid="411107758" count="1" value="36" id="1201021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  11   Id 411107758 " fill="rgb(255,184,0)" points="191.984,717.804 186.171,713.386 181.622,714.931 " />
<svg:polygon detid="411107630" count="1" value="36" id="1201022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  11   Id 411107630 " fill="rgb(255,184,0)" points="199.068,713.85 191.51,710.468 187.796,712.653 " />
<svg:polygon detid="411107762" count="1" value="36" id="1201023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  12   Id 411107762 " fill="rgb(255,184,0)" points="204.172,708.952 195.383,706.837 192.757,709.513 " />
<svg:polygon detid="411107634" count="1" value="36" id="1201024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  12   Id 411107634 " fill="rgb(255,184,0)" points="206.946,703.445 197.526,702.739 196.167,705.724 " />
<svg:polygon detid="411107717" count="1" value="36" id="1201101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  1  stereo Id 411107717 " fill="rgb(255,184,0)" points="197.794,701.545 207.203,702.297 207.203,697.703 " />
<svg:polygon detid="411107589" count="1" value="36" id="1201102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  1  stereo Id 411107589 " fill="rgb(255,184,0)" points="197.526,697.261 206.946,696.555 204.925,692.117 " />
<svg:polygon detid="411107721" count="1" value="36" id="1201103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  2  stereo Id 411107721 " fill="rgb(255,184,0)" points="195.383,693.163 204.172,691.048 200.266,687.068 " />
<svg:polygon detid="411107593" count="1" value="36" id="1201104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  2  stereo Id 411107593 " fill="rgb(255,184,0)" points="191.51,689.532 199.068,686.15 193.545,682.901 " />
<svg:polygon detid="411107725" count="1" value="36" id="1201105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  3  stereo Id 411107725 " fill="rgb(255,184,0)" points="186.171,686.614 191.984,682.196 185.219,679.899 " />
<svg:polygon detid="411107597" count="1" value="36" id="1201106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  3  stereo Id 411107597 " fill="rgb(255,184,0)" points="179.731,684.608 183.402,679.456 175.856,678.267 " />
<svg:polygon detid="411107729" count="1" value="36" id="1201107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  4  stereo Id 411107729 " fill="rgb(255,184,0)" points="172.626,683.651 173.906,678.116 166.094,678.116 " />
<svg:polygon detid="411107601" count="1" value="36" id="1201108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  4  stereo Id 411107601 " fill="rgb(255,184,0)" points="165.343,683.808 164.144,678.267 156.598,679.456 " />
<svg:polygon detid="411107733" count="1" value="36" id="1201109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  5  stereo Id 411107733 " fill="rgb(255,184,0)" points="158.378,685.069 154.781,679.899 148.016,682.196 " />
<svg:polygon detid="411107605" count="1" value="36" id="1201110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  5  stereo Id 411107605 " fill="rgb(255,184,0)" points="152.204,687.347 146.455,682.901 140.932,686.15 " />
<svg:polygon detid="411107737" count="1" value="36" id="1201111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  6  stereo Id 411107737 " fill="rgb(255,184,0)" points="147.243,690.487 139.734,687.068 135.828,691.048 " />
<svg:polygon detid="411107609" count="1" value="36" id="1201112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  6  stereo Id 411107609 " fill="rgb(255,184,0)" points="143.833,694.276 135.075,692.117 133.054,696.555 " />
<svg:polygon detid="411107741" count="1" value="36" id="1201113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  7  stereo Id 411107741 " fill="rgb(255,184,0)" points="142.206,698.455 132.797,697.703 132.797,702.297 " />
<svg:polygon detid="411107613" count="1" value="36" id="1201114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  7  stereo Id 411107613 " fill="rgb(255,184,0)" points="142.474,702.739 133.054,703.445 135.075,707.883 " />
<svg:polygon detid="411107745" count="1" value="36" id="1201115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  8  stereo Id 411107745 " fill="rgb(255,184,0)" points="144.617,706.837 135.828,708.952 139.734,712.932 " />
<svg:polygon detid="411107617" count="1" value="36" id="1201116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  8  stereo Id 411107617 " fill="rgb(255,184,0)" points="148.49,710.468 140.932,713.85 146.455,717.099 " />
<svg:polygon detid="411107749" count="1" value="36" id="1201117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  9  stereo Id 411107749 " fill="rgb(255,184,0)" points="153.829,713.386 148.016,717.804 154.781,720.101 " />
<svg:polygon detid="411107621" count="1" value="36" id="1201118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  9  stereo Id 411107621 " fill="rgb(255,184,0)" points="160.269,715.392 156.598,720.544 164.144,721.733 " />
<svg:polygon detid="411107753" count="1" value="36" id="1201119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  10  stereo Id 411107753 " fill="rgb(255,184,0)" points="167.374,716.349 166.094,721.884 173.906,721.884 " />
<svg:polygon detid="411107625" count="1" value="36" id="1201120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  10  stereo Id 411107625 " fill="rgb(255,184,0)" points="174.657,716.192 175.856,721.733 183.402,720.544 " />
<svg:polygon detid="411107757" count="1" value="36" id="1201121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  11  stereo Id 411107757 " fill="rgb(255,184,0)" points="181.622,714.931 185.219,720.101 191.984,717.804 " />
<svg:polygon detid="411107629" count="1" value="36" id="1201122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  11  stereo Id 411107629 " fill="rgb(255,184,0)" points="187.796,712.653 193.545,717.099 199.068,713.85 " />
<svg:polygon detid="411107761" count="1" value="36" id="1201123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  backward  module  12  stereo Id 411107761 " fill="rgb(255,184,0)" points="192.757,709.513 200.266,712.932 204.172,708.952 " />
<svg:polygon detid="411107633" count="1" value="36" id="1201124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 1  forward  module  12  stereo Id 411107633 " fill="rgb(255,184,0)" points="196.167,705.724 204.925,707.883 206.946,703.445 " />
<svg:polygon detid="411107974" count="1" value="36" id="1202001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  1   Id 411107974 " fill="rgb(255,184,0)" points="215.343,697.24 207.855,697.845 207.855,702.155 " />
<svg:polygon detid="411107846" count="1" value="36" id="1202002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  1   Id 411107846 " fill="rgb(255,184,0)" points="212.584,690.431 205.617,692.155 207.513,696.318 " />
<svg:polygon detid="411107978" count="1" value="36" id="1202003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  2   Id 411107978 " fill="rgb(255,184,0)" points="206.922,684.274 200.951,687 204.615,690.733 " />
<svg:polygon detid="411107850" count="1" value="36" id="1202004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  2   Id 411107850 " fill="rgb(255,184,0)" points="198.745,679.188 194.177,682.731 199.358,685.778 " />
<svg:polygon detid="411107982" count="1" value="36" id="1202005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  3   Id 411107982 " fill="rgb(255,184,0)" points="188.608,675.521 185.755,679.638 192.1,681.793 " />
<svg:polygon detid="411107854" count="1" value="36" id="1202006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  3   Id 411107854 " fill="rgb(255,184,0)" points="177.204,673.522 176.259,677.933 183.336,679.049 " />
<svg:polygon detid="411107986" count="1" value="36" id="1202007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  4   Id 411107986 " fill="rgb(255,184,0)" points="165.308,673.328 166.336,677.733 173.664,677.733 " />
<svg:polygon detid="411107858" count="1" value="36" id="1202008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  4   Id 411107858 " fill="rgb(255,184,0)" points="153.732,674.951 156.664,679.049 163.741,677.933 " />
<svg:polygon detid="411107990" count="1" value="36" id="1202009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  5   Id 411107990 " fill="rgb(255,184,0)" points="143.265,678.281 147.9,681.793 154.245,679.638 " />
<svg:polygon detid="411107862" count="1" value="36" id="1202010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  5   Id 411107862 " fill="rgb(255,184,0)" points="134.62,683.091 140.642,685.778 145.823,682.731 " />
<svg:polygon detid="411107994" count="1" value="36" id="1202011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  6   Id 411107994 " fill="rgb(255,184,0)" points="128.386,689.054 135.385,690.733 139.049,687 " />
<svg:polygon detid="411107866" count="1" value="36" id="1202012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  6   Id 411107866 " fill="rgb(255,184,0)" points="124.987,695.763 132.487,696.318 134.383,692.155 " />
<svg:polygon detid="411107998" count="1" value="36" id="1202013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  7   Id 411107998 " fill="rgb(255,184,0)" points="124.657,702.76 132.145,702.155 132.145,697.845 " />
<svg:polygon detid="411107870" count="1" value="36" id="1202014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  7   Id 411107870 " fill="rgb(255,184,0)" points="127.416,709.569 134.383,707.845 132.487,703.682 " />
<svg:polygon detid="411108002" count="1" value="36" id="1202015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  8   Id 411108002 " fill="rgb(255,184,0)" points="133.078,715.726 139.049,713 135.385,709.267 " />
<svg:polygon detid="411107874" count="1" value="36" id="1202016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  8   Id 411107874 " fill="rgb(255,184,0)" points="141.255,720.812 145.823,717.269 140.642,714.222 " />
<svg:polygon detid="411108006" count="1" value="36" id="1202017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  9   Id 411108006 " fill="rgb(255,184,0)" points="151.392,724.479 154.245,720.362 147.9,718.207 " />
<svg:polygon detid="411107878" count="1" value="36" id="1202018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  9   Id 411107878 " fill="rgb(255,184,0)" points="162.796,726.478 163.741,722.067 156.664,720.951 " />
<svg:polygon detid="411108010" count="1" value="36" id="1202019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  10   Id 411108010 " fill="rgb(255,184,0)" points="174.692,726.672 173.664,722.267 166.336,722.267 " />
<svg:polygon detid="411107882" count="1" value="36" id="1202020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  10   Id 411107882 " fill="rgb(255,184,0)" points="186.268,725.049 183.336,720.951 176.259,722.067 " />
<svg:polygon detid="411108014" count="1" value="36" id="1202021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  11   Id 411108014 " fill="rgb(255,184,0)" points="196.735,721.719 192.1,718.207 185.755,720.362 " />
<svg:polygon detid="411107886" count="1" value="36" id="1202022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  11   Id 411107886 " fill="rgb(255,184,0)" points="205.38,716.909 199.358,714.222 194.177,717.269 " />
<svg:polygon detid="411108018" count="1" value="36" id="1202023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  12   Id 411108018 " fill="rgb(255,184,0)" points="211.614,710.946 204.615,709.267 200.951,713 " />
<svg:polygon detid="411107890" count="1" value="36" id="1202024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  12   Id 411107890 " fill="rgb(255,184,0)" points="215.013,704.237 207.513,703.682 205.617,707.845 " />
<svg:polygon detid="411107973" count="1" value="36" id="1202101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  1  stereo Id 411107973 " fill="rgb(255,184,0)" points="207.855,702.155 215.343,702.76 215.343,697.24 " />
<svg:polygon detid="411107845" count="1" value="36" id="1202102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  1  stereo Id 411107845 " fill="rgb(255,184,0)" points="207.513,696.318 215.013,695.763 212.584,690.431 " />
<svg:polygon detid="411107977" count="1" value="36" id="1202103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  2  stereo Id 411107977 " fill="rgb(255,184,0)" points="204.615,690.733 211.614,689.054 206.922,684.274 " />
<svg:polygon detid="411107849" count="1" value="36" id="1202104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  2  stereo Id 411107849 " fill="rgb(255,184,0)" points="199.358,685.778 205.38,683.091 198.745,679.188 " />
<svg:polygon detid="411107981" count="1" value="36" id="1202105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  3  stereo Id 411107981 " fill="rgb(255,184,0)" points="192.1,681.793 196.735,678.281 188.608,675.521 " />
<svg:polygon detid="411107853" count="1" value="36" id="1202106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  3  stereo Id 411107853 " fill="rgb(255,184,0)" points="183.336,679.049 186.268,674.951 177.204,673.522 " />
<svg:polygon detid="411107985" count="1" value="36" id="1202107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  4  stereo Id 411107985 " fill="rgb(255,184,0)" points="173.664,677.733 174.692,673.328 165.308,673.328 " />
<svg:polygon detid="411107857" count="1" value="36" id="1202108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  4  stereo Id 411107857 " fill="rgb(255,184,0)" points="163.741,677.933 162.796,673.522 153.732,674.951 " />
<svg:polygon detid="411107989" count="1" value="36" id="1202109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  5  stereo Id 411107989 " fill="rgb(255,184,0)" points="154.245,679.638 151.392,675.521 143.265,678.281 " />
<svg:polygon detid="411107861" count="1" value="36" id="1202110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  5  stereo Id 411107861 " fill="rgb(255,184,0)" points="145.823,682.731 141.255,679.188 134.62,683.091 " />
<svg:polygon detid="411107993" count="1" value="36" id="1202111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  6  stereo Id 411107993 " fill="rgb(255,184,0)" points="139.049,687 133.078,684.274 128.386,689.054 " />
<svg:polygon detid="411107865" count="1" value="36" id="1202112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  6  stereo Id 411107865 " fill="rgb(255,184,0)" points="134.383,692.155 127.416,690.431 124.987,695.763 " />
<svg:polygon detid="411107997" count="1" value="36" id="1202113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  7  stereo Id 411107997 " fill="rgb(255,184,0)" points="132.145,697.845 124.657,697.24 124.657,702.76 " />
<svg:polygon detid="411107869" count="1" value="36" id="1202114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  7  stereo Id 411107869 " fill="rgb(255,184,0)" points="132.487,703.682 124.987,704.237 127.416,709.569 " />
<svg:polygon detid="411108001" count="1" value="36" id="1202115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  8  stereo Id 411108001 " fill="rgb(255,184,0)" points="135.385,709.267 128.386,710.946 133.078,715.726 " />
<svg:polygon detid="411107873" count="1" value="36" id="1202116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  8  stereo Id 411107873 " fill="rgb(255,184,0)" points="140.642,714.222 134.62,716.909 141.255,720.812 " />
<svg:polygon detid="411108005" count="1" value="36" id="1202117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  9  stereo Id 411108005 " fill="rgb(255,184,0)" points="147.9,718.207 143.265,721.719 151.392,724.479 " />
<svg:polygon detid="411107877" count="1" value="36" id="1202118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  9  stereo Id 411107877 " fill="rgb(255,184,0)" points="156.664,720.951 153.732,725.049 162.796,726.478 " />
<svg:polygon detid="411108009" count="1" value="36" id="1202119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  10  stereo Id 411108009 " fill="rgb(255,184,0)" points="166.336,722.267 165.308,726.672 174.692,726.672 " />
<svg:polygon detid="411107881" count="1" value="36" id="1202120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  10  stereo Id 411107881 " fill="rgb(255,184,0)" points="176.259,722.067 177.204,726.478 186.268,725.049 " />
<svg:polygon detid="411108013" count="1" value="36" id="1202121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  11  stereo Id 411108013 " fill="rgb(255,184,0)" points="185.755,720.362 188.608,724.479 196.735,721.719 " />
<svg:polygon detid="411107885" count="1" value="36" id="1202122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  11  stereo Id 411107885 " fill="rgb(255,184,0)" points="194.177,717.269 198.745,720.812 205.38,716.909 " />
<svg:polygon detid="411108017" count="1" value="36" id="1202123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  backward  module  12  stereo Id 411108017 " fill="rgb(255,184,0)" points="200.951,713 206.922,715.726 211.614,710.946 " />
<svg:polygon detid="411107889" count="1" value="36" id="1202124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 2  forward  module  12  stereo Id 411107889 " fill="rgb(255,184,0)" points="205.617,707.845 212.584,709.569 215.013,704.237 " />
<svg:polygon detid="411108228" count="1" value="36" id="1203001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  1   Id 411108228 " fill="rgb(255,184,0)" points="216.005,701.575 225.406,702.03 225.406,697.97 216.005,698.425 " />
<svg:polygon detid="411108100" count="1" value="36" id="1203002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  1   Id 411108100 " fill="rgb(255,184,0)" points="215.857,697.322 225.264,696.907 224.184,692.897 215.02,694.211 " />
<svg:polygon detid="411108232" count="1" value="36" id="1203003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  2   Id 411108232 " fill="rgb(255,184,0)" points="214.581,693.135 223.761,691.859 221.628,687.998 212.926,690.14 " />
<svg:polygon detid="411108104" count="1" value="36" id="1203004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  2   Id 411108104 " fill="rgb(255,184,0)" points="212.206,689.118 220.934,687.012 217.8,683.395 209.775,686.311 " />
<svg:polygon detid="411108236" count="1" value="36" id="1203005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  3   Id 411108236 " fill="rgb(255,184,0)" points="208.792,685.368 216.853,682.485 212.796,679.201 205.645,682.819 " />
<svg:polygon detid="411108108" count="1" value="36" id="1203006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  3   Id 411108108 " fill="rgb(255,184,0)" points="204.424,681.978 211.618,678.39 206.738,675.519 200.637,679.751 " />
<svg:polygon detid="411108240" count="1" value="36" id="1203007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  4   Id 411108240 " fill="rgb(255,184,0)" points="199.207,679.032 205.359,674.826 199.775,672.44 194.875,677.181 " />
<svg:polygon detid="411108112" count="1" value="36" id="1203008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  4   Id 411108112 " fill="rgb(255,184,0)" points="193.271,676.603 198.229,671.882 192.079,670.039 188.5,675.173 " />
<svg:polygon detid="411108244" count="1" value="36" id="1203009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  5   Id 411108244 " fill="rgb(255,184,0)" points="186.763,674.75 190.403,669.631 183.839,668.376 181.67,673.776 " />
<svg:polygon detid="411108116" count="1" value="36" id="1203010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  5   Id 411108116 " fill="rgb(255,184,0)" points="179.841,673.518 182.076,668.127 175.259,667.492 174.552,673.025 " />
<svg:polygon detid="411108248" count="1" value="36" id="1203011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  6   Id 411108248 " fill="rgb(255,184,0)" points="172.677,672.938 173.451,667.408 166.549,667.408 167.323,672.938 " />
<svg:polygon detid="411108120" count="1" value="36" id="1203012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  6   Id 411108120 " fill="rgb(255,184,0)" points="165.448,673.025 164.741,667.492 157.924,668.127 160.159,673.518 " />
<svg:polygon detid="411108252" count="1" value="36" id="1203013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  7   Id 411108252 " fill="rgb(255,184,0)" points="158.33,673.776 156.161,668.376 149.597,669.631 153.237,674.75 " />
<svg:polygon detid="411108124" count="1" value="36" id="1203014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  7   Id 411108124 " fill="rgb(255,184,0)" points="151.5,675.173 147.921,670.039 141.771,671.882 146.729,676.603 " />
<svg:polygon detid="411108256" count="1" value="36" id="1203015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  8   Id 411108256 " fill="rgb(255,184,0)" points="145.125,677.181 140.225,672.44 134.641,674.826 140.793,679.032 " />
<svg:polygon detid="411108128" count="1" value="36" id="1203016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  8   Id 411108128 " fill="rgb(255,184,0)" points="139.363,679.751 133.262,675.519 128.382,678.39 135.576,681.978 " />
<svg:polygon detid="411108260" count="1" value="36" id="1203017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  9   Id 411108260 " fill="rgb(255,184,0)" points="134.355,682.819 127.204,679.201 123.147,682.485 131.208,685.368 " />
<svg:polygon detid="411108132" count="1" value="36" id="1203018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  9   Id 411108132 " fill="rgb(255,184,0)" points="130.225,686.311 122.2,683.395 119.066,687.012 127.794,689.118 " />
<svg:polygon detid="411108264" count="1" value="36" id="1203019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  10   Id 411108264 " fill="rgb(255,184,0)" points="127.074,690.14 118.372,687.998 116.239,691.859 125.419,693.135 " />
<svg:polygon detid="411108136" count="1" value="36" id="1203020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  10   Id 411108136 " fill="rgb(255,184,0)" points="124.98,694.211 115.816,692.897 114.736,696.907 124.143,697.322 " />
<svg:polygon detid="411108268" count="1" value="36" id="1203021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  11   Id 411108268 " fill="rgb(255,184,0)" points="123.995,698.425 114.594,697.97 114.594,702.03 123.995,701.575 " />
<svg:polygon detid="411108140" count="1" value="36" id="1203022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  11   Id 411108140 " fill="rgb(255,184,0)" points="124.143,702.678 114.736,703.093 115.816,707.103 124.98,705.789 " />
<svg:polygon detid="411108272" count="1" value="36" id="1203023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  12   Id 411108272 " fill="rgb(255,184,0)" points="125.419,706.865 116.239,708.141 118.372,712.002 127.074,709.86 " />
<svg:polygon detid="411108144" count="1" value="36" id="1203024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  12   Id 411108144 " fill="rgb(255,184,0)" points="127.794,710.882 119.066,712.988 122.2,716.605 130.225,713.689 " />
<svg:polygon detid="411108276" count="1" value="36" id="1203025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  13   Id 411108276 " fill="rgb(255,184,0)" points="131.208,714.632 123.147,717.515 127.204,720.799 134.355,717.181 " />
<svg:polygon detid="411108148" count="1" value="36" id="1203026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  13   Id 411108148 " fill="rgb(255,184,0)" points="135.576,718.022 128.382,721.61 133.262,724.481 139.363,720.249 " />
<svg:polygon detid="411108280" count="1" value="36" id="1203027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  14   Id 411108280 " fill="rgb(255,184,0)" points="140.793,720.968 134.641,725.174 140.225,727.56 145.125,722.819 " />
<svg:polygon detid="411108152" count="1" value="36" id="1203028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  14   Id 411108152 " fill="rgb(255,184,0)" points="146.729,723.397 141.771,728.118 147.921,729.961 151.5,724.827 " />
<svg:polygon detid="411108284" count="1" value="36" id="1203029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  15   Id 411108284 " fill="rgb(255,184,0)" points="153.237,725.25 149.597,730.369 156.161,731.624 158.33,726.224 " />
<svg:polygon detid="411108156" count="1" value="36" id="1203030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  15   Id 411108156 " fill="rgb(255,184,0)" points="160.159,726.482 157.924,731.873 164.741,732.508 165.448,726.975 " />
<svg:polygon detid="411108288" count="1" value="36" id="1203031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  16   Id 411108288 " fill="rgb(255,184,0)" points="167.323,727.062 166.549,732.592 173.451,732.592 172.677,727.062 " />
<svg:polygon detid="411108160" count="1" value="36" id="1203032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  16   Id 411108160 " fill="rgb(255,184,0)" points="174.552,726.975 175.259,732.508 182.076,731.873 179.841,726.482 " />
<svg:polygon detid="411108292" count="1" value="36" id="1203033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  17   Id 411108292 " fill="rgb(255,184,0)" points="181.67,726.224 183.839,731.624 190.403,730.369 186.763,725.25 " />
<svg:polygon detid="411108164" count="1" value="36" id="1203034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  17   Id 411108164 " fill="rgb(255,184,0)" points="188.5,724.827 192.079,729.961 198.229,728.118 193.271,723.397 " />
<svg:polygon detid="411108296" count="1" value="36" id="1203035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  18   Id 411108296 " fill="rgb(255,184,0)" points="194.875,722.819 199.775,727.56 205.359,725.174 199.207,720.968 " />
<svg:polygon detid="411108168" count="1" value="36" id="1203036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  18   Id 411108168 " fill="rgb(255,184,0)" points="200.637,720.249 206.738,724.481 211.618,721.61 204.424,718.022 " />
<svg:polygon detid="411108300" count="1" value="36" id="1203037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  19   Id 411108300 " fill="rgb(255,184,0)" points="205.645,717.181 212.796,720.799 216.853,717.515 208.792,714.632 " />
<svg:polygon detid="411108172" count="1" value="36" id="1203038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  19   Id 411108172 " fill="rgb(255,184,0)" points="209.775,713.689 217.8,716.605 220.934,712.988 212.206,710.882 " />
<svg:polygon detid="411108304" count="1" value="36" id="1203039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  backward  module  20   Id 411108304 " fill="rgb(255,184,0)" points="212.926,709.86 221.628,712.002 223.761,708.141 214.581,706.865 " />
<svg:polygon detid="411108176" count="1" value="36" id="1203040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID -z layer 1 ring 3  forward  module  20   Id 411108176 " fill="rgb(255,184,0)" points="215.02,705.789 224.184,707.103 225.264,703.093 215.857,702.678 " />
<svg:polygon detid="344065284" count="0" value="0" id="1401001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 5 plaquette  1 left  Id 344065284 " fill="white" points="221.307,298.685 224.729,298.461 223.969,294.436 220.547,294.66 " />
<svg:polygon detid="344066308" count="0" value="0" id="1401002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 9 plaquette  1 left  Id 344066308 " fill="white" points="218.98,290.918 222.187,290.181 219.681,286.409 216.475,287.146 " />
<svg:polygon detid="344067332" count="0" value="0" id="1401003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 13 plaquette  1 left  Id 344067332 " fill="white" points="213.315,283.771 216.088,282.571 212.009,279.308 209.236,280.508 " />
<svg:polygon detid="344068356" count="0" value="0" id="1401004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 17 plaquette  1 left  Id 344068356 " fill="white" points="204.699,277.729 206.849,276.148 201.473,273.618 199.323,275.199 " />
<svg:polygon detid="344069380" count="0" value="0" id="1401005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 21 plaquette  1 left  Id 344069380 " fill="white" points="193.717,273.205 195.099,271.35 188.793,269.725 187.411,271.58 " />
<svg:polygon detid="344070404" count="0" value="0" id="1401006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 25 plaquette  1 left  Id 344070404 " fill="white" points="181.12,270.507 181.638,268.505 174.832,267.895 174.313,269.897 " />
<svg:polygon detid="344071428" count="0" value="0" id="1401007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 29 plaquette  1 left  Id 344071428 " fill="white" points="167.764,269.819 167.384,267.807 160.541,268.254 160.921,270.266 " />
<svg:polygon detid="344072452" count="0" value="0" id="1401008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 33 plaquette  1 left  Id 344072452 " fill="white" points="154.561,271.188 153.308,269.302 146.895,270.776 148.148,272.662 " />
<svg:polygon detid="344073476" count="0" value="0" id="1401009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 37 plaquette  1 left  Id 344073476 " fill="white" points="142.41,274.52 140.37,272.889 134.824,275.289 136.864,276.92 " />
<svg:polygon detid="344074500" count="0" value="0" id="1401010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 41 plaquette  1 left  Id 344074500 " fill="white" points="132.139,279.589 129.451,278.324 125.15,281.486 127.838,282.751 " />
<svg:polygon detid="344075524" count="0" value="0" id="1401011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 45 plaquette  1 left  Id 344075524 " fill="white" points="124.449,286.049 121.296,285.236 118.533,288.945 121.686,289.758 " />
<svg:polygon detid="344076548" count="0" value="0" id="1401012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 49 plaquette  1 left  Id 344076548 " fill="white" points="119.862,293.459 116.459,293.154 115.422,297.158 118.826,297.463 " />
<svg:polygon detid="344077572" count="0" value="0" id="1401013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 53 plaquette  1 left  Id 344077572 " fill="white" points="118.693,301.315 115.271,301.539 116.031,305.564 119.453,305.34 " />
<svg:polygon detid="344078596" count="0" value="0" id="1401014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 57 plaquette  1 left  Id 344078596 " fill="white" points="121.02,309.082 117.813,309.819 120.319,313.591 123.525,312.854 " />
<svg:polygon detid="344079620" count="0" value="0" id="1401015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 61 plaquette  1 left  Id 344079620 " fill="white" points="126.685,316.229 123.912,317.429 127.991,320.692 130.764,319.492 " />
<svg:polygon detid="344080644" count="0" value="0" id="1401016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 1 plaquette  1 right  Id 344080644 " fill="white" points="135.301,322.271 133.151,323.852 138.527,326.382 140.677,324.801 " />
<svg:polygon detid="344081668" count="0" value="0" id="1401017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 5 plaquette  1 right  Id 344081668 " fill="white" points="146.283,326.795 144.901,328.65 151.207,330.275 152.589,328.42 " />
<svg:polygon detid="344082692" count="0" value="0" id="1401018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 9 plaquette  1 right  Id 344082692 " fill="white" points="158.88,329.493 158.362,331.495 165.168,332.105 165.687,330.103 " />
<svg:polygon detid="344083716" count="0" value="0" id="1401019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 13 plaquette  1 right  Id 344083716 " fill="white" points="172.236,330.181 172.616,332.193 179.459,331.746 179.079,329.734 " />
<svg:polygon detid="344084740" count="0" value="0" id="1401020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 17 plaquette  1 right  Id 344084740 " fill="white" points="185.439,328.812 186.692,330.698 193.105,329.224 191.852,327.338 " />
<svg:polygon detid="344085764" count="0" value="0" id="1401021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 21 plaquette  1 right  Id 344085764 " fill="white" points="197.59,325.48 199.63,327.111 205.176,324.711 203.136,323.08 " />
<svg:polygon detid="344086788" count="0" value="0" id="1401022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 25 plaquette  1 right  Id 344086788 " fill="white" points="207.861,320.411 210.549,321.676 214.85,318.514 212.162,317.249 " />
<svg:polygon detid="344087812" count="0" value="0" id="1401023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 29 plaquette  1 right  Id 344087812 " fill="white" points="215.551,313.951 218.704,314.764 221.467,311.055 218.314,310.242 " />
<svg:polygon detid="344088836" count="0" value="0" id="1401024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 1 blade 33 plaquette  1 right  Id 344088836 " fill="white" points="220.138,306.541 223.541,306.846 224.578,302.842 221.174,302.537 " />
<svg:polygon detid="344065540" count="0" value="0" id="1402001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 6 plaquette  1 left  Id 344065540 " fill="white" points="229.662,297.841 236.472,297.244 234.95,291.235 228.14,291.832 " />
<svg:polygon detid="344066564" count="0" value="0" id="1402002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 10 plaquette  1 left  Id 344066564 " fill="white" points="226.679,288.831 232.994,287.218 228.88,281.645 222.565,283.259 " />
<svg:polygon detid="344067588" count="0" value="0" id="1402003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 14 plaquette  1 left  Id 344067588 " fill="white" points="219.834,280.582 225.224,278.063 218.798,273.307 213.408,275.826 " />
<svg:polygon detid="344068612" count="0" value="0" id="1402004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 18 plaquette  1 left  Id 344068612 " fill="white" points="209.592,273.657 213.69,270.402 205.39,266.787 201.293,270.041 " />
<svg:polygon detid="344069636" count="0" value="0" id="1402005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 22 plaquette  1 left  Id 344069636 " fill="white" points="196.652,268.527 199.178,264.759 189.571,262.53 187.045,266.298 " />
<svg:polygon detid="344070660" count="0" value="0" id="1402006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 26 plaquette  1 left  Id 344070660 " fill="white" points="181.896,265.542 182.678,261.518 172.418,260.828 171.636,264.851 " />
<svg:polygon detid="344071684" count="0" value="0" id="1402007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 30 plaquette  1 left  Id 344071684 " fill="white" points="166.329,264.905 165.315,260.899 155.1,261.794 156.115,265.8 " />
<svg:polygon detid="344072708" count="0" value="0" id="1402008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 34 plaquette  1 left  Id 344072708 " fill="white" points="151.013,266.659 148.27,262.944 138.797,265.365 141.54,269.079 " />
<svg:polygon detid="344073732" count="0" value="0" id="1402009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 38 plaquette  1 left  Id 344073732 " fill="white" points="136.99,270.686 132.706,267.515 124.621,271.295 128.905,274.466 " />
<svg:polygon detid="344074756" count="0" value="0" id="1402010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 42 plaquette  1 left  Id 344074756 " fill="white" points="125.217,276.711 119.684,274.3 113.538,279.182 119.07,281.592 " />
<svg:polygon detid="344075780" count="0" value="0" id="1402011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 46 plaquette  1 left  Id 344075780 " fill="white" points="116.496,284.322 110.091,282.836 106.302,288.488 112.707,289.974 " />
<svg:polygon detid="344076804" count="0" value="0" id="1402012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 50 plaquette  1 left  Id 344076804 " fill="white" points="111.421,293.002 104.58,292.542 103.407,298.578 110.247,299.038 " />
<svg:polygon detid="344077828" count="0" value="0" id="1402013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 54 plaquette  1 left  Id 344077828 " fill="white" points="110.338,302.159 103.528,302.756 105.05,308.765 111.86,308.168 " />
<svg:polygon detid="344078852" count="0" value="0" id="1402014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 58 plaquette  1 left  Id 344078852 " fill="white" points="113.321,311.169 107.006,312.782 111.12,318.355 117.435,316.741 " />
<svg:polygon detid="344079876" count="0" value="0" id="1402015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 62 plaquette  1 left  Id 344079876 " fill="white" points="120.166,319.418 114.776,321.937 121.202,326.693 126.592,324.174 " />
<svg:polygon detid="344080900" count="0" value="0" id="1402016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 2 plaquette  1 right  Id 344080900 " fill="white" points="130.408,326.343 126.31,329.598 134.61,333.213 138.707,329.959 " />
<svg:polygon detid="344081924" count="0" value="0" id="1402017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 6 plaquette  1 right  Id 344081924 " fill="white" points="143.348,331.473 140.822,335.241 150.429,337.47 152.955,333.702 " />
<svg:polygon detid="344082948" count="0" value="0" id="1402018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 10 plaquette  1 right  Id 344082948 " fill="white" points="158.104,334.458 157.322,338.482 167.582,339.172 168.364,335.149 " />
<svg:polygon detid="344083972" count="0" value="0" id="1402019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 14 plaquette  1 right  Id 344083972 " fill="white" points="173.671,335.095 174.685,339.101 184.9,338.206 183.885,334.2 " />
<svg:polygon detid="344084996" count="0" value="0" id="1402020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 18 plaquette  1 right  Id 344084996 " fill="white" points="188.987,333.341 191.73,337.056 201.203,334.635 198.46,330.921 " />
<svg:polygon detid="344086020" count="0" value="0" id="1402021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 22 plaquette  1 right  Id 344086020 " fill="white" points="203.01,329.314 207.294,332.485 215.379,328.705 211.095,325.534 " />
<svg:polygon detid="344087044" count="0" value="0" id="1402022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 26 plaquette  1 right  Id 344087044 " fill="white" points="214.783,323.289 220.316,325.7 226.462,320.818 220.93,318.408 " />
<svg:polygon detid="344088068" count="0" value="0" id="1402023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 30 plaquette  1 right  Id 344088068 " fill="white" points="223.504,315.678 229.909,317.164 233.698,311.512 227.293,310.026 " />
<svg:polygon detid="344089092" count="0" value="0" id="1402024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 2 blade 34 plaquette  1 right  Id 344089092 " fill="white" points="228.579,306.998 235.42,307.458 236.593,301.422 229.753,300.962 " />
<svg:polygon detid="344065288" count="0" value="0" id="1403001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 5 plaquette  2 left  Id 344065288 " fill="white" points="240.659,298.199 247.497,297.728 246.298,291.694 239.46,292.165 " />
<svg:polygon detid="344066312" count="0" value="0" id="1403002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 9 plaquette  2 left  Id 344066312 " fill="white" points="237.459,287.502 243.857,286.007 240.044,280.361 233.645,281.857 " />
<svg:polygon detid="344067336" count="0" value="0" id="1403003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 13 plaquette  2 left  Id 344067336 " fill="white" points="229.661,277.658 235.184,275.239 229.016,270.366 223.494,272.785 " />
<svg:polygon detid="344068360" count="0" value="0" id="1403004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 17 plaquette  2 left  Id 344068360 " fill="white" points="217.798,269.336 222.068,266.159 213.967,262.391 209.697,265.568 " />
<svg:polygon detid="344069384" count="0" value="0" id="1403005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 21 plaquette  2 left  Id 344069384 " fill="white" points="202.677,263.104 205.404,259.385 195.921,256.979 193.194,260.698 " />
<svg:polygon detid="344070408" count="0" value="0" id="1403006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 25 plaquette  2 left  Id 344070408 " fill="white" points="185.33,259.386 186.327,255.379 176.109,254.498 175.111,258.506 " />
<svg:polygon detid="344071432" count="0" value="0" id="1403007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 29 plaquette  2 left  Id 344071432 " fill="white" points="166.938,258.436 166.138,254.413 155.88,255.119 156.68,259.141 " />
<svg:polygon detid="344072456" count="0" value="0" id="1403008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 33 plaquette  2 left  Id 344072456 " fill="white" points="148.754,260.318 146.212,256.555 136.614,258.798 139.156,262.562 " />
<svg:polygon detid="344073480" count="0" value="0" id="1403009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 37 plaquette  2 left  Id 344073480 " fill="white" points="132.018,264.905 127.907,261.657 119.623,265.285 123.735,268.533 " />
<svg:polygon detid="344074504" count="0" value="0" id="1403010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 41 plaquette  2 left  Id 344074504 " fill="white" points="117.871,271.884 112.47,269.372 106.065,274.137 111.466,276.649 " />
<svg:polygon detid="344075528" count="0" value="0" id="1403011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 45 plaquette  2 left  Id 344075528 " fill="white" points="107.276,280.778 100.954,279.174 96.8641,284.752 103.186,286.356 " />
<svg:polygon detid="344076552" count="0" value="0" id="1403012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 49 plaquette  2 left  Id 344076552 " fill="white" points="100.956,290.982 94.1437,290.396 92.6473,296.407 99.4596,296.993 " />
<svg:polygon detid="344077576" count="0" value="0" id="1403013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 53 plaquette  2 left  Id 344077576 " fill="white" points="99.341,301.801 92.5026,302.272 93.7019,308.306 100.54,307.835 " />
<svg:polygon detid="344078600" count="0" value="0" id="1403014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 57 plaquette  2 left  Id 344078600 " fill="white" points="102.541,312.498 96.1429,313.993 99.9562,319.639 106.355,318.143 " />
<svg:polygon detid="344079624" count="0" value="0" id="1403015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 61 plaquette  2 left  Id 344079624 " fill="white" points="110.339,322.342 104.816,324.761 110.984,329.634 116.506,327.215 " />
<svg:polygon detid="344080648" count="0" value="0" id="1403016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 1 plaquette  2 right  Id 344080648 " fill="white" points="122.202,330.664 117.932,333.841 126.033,337.609 130.303,334.432 " />
<svg:polygon detid="344081672" count="0" value="0" id="1403017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 5 plaquette  2 right  Id 344081672 " fill="white" points="137.323,336.896 134.596,340.615 144.079,343.021 146.806,339.302 " />
<svg:polygon detid="344082696" count="0" value="0" id="1403018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 9 plaquette  2 right  Id 344082696 " fill="white" points="154.67,340.614 153.673,344.621 163.891,345.502 164.889,341.494 " />
<svg:polygon detid="344083720" count="0" value="0" id="1403019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 13 plaquette  2 right  Id 344083720 " fill="white" points="173.062,341.564 173.862,345.587 184.12,344.881 183.32,340.859 " />
<svg:polygon detid="344084744" count="0" value="0" id="1403020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 17 plaquette  2 right  Id 344084744 " fill="white" points="191.246,339.682 193.788,343.445 203.386,341.202 200.844,337.438 " />
<svg:polygon detid="344085768" count="0" value="0" id="1403021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 21 plaquette  2 right  Id 344085768 " fill="white" points="207.982,335.095 212.093,338.343 220.377,334.715 216.265,331.467 " />
<svg:polygon detid="344086792" count="0" value="0" id="1403022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 25 plaquette  2 right  Id 344086792 " fill="white" points="222.129,328.116 227.53,330.628 233.935,325.863 228.534,323.351 " />
<svg:polygon detid="344087816" count="0" value="0" id="1403023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 29 plaquette  2 right  Id 344087816 " fill="white" points="232.724,319.222 239.046,320.826 243.136,315.248 236.814,313.644 " />
<svg:polygon detid="344088840" count="0" value="0" id="1403024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 3 blade 33 plaquette  2 right  Id 344088840 " fill="white" points="239.044,309.018 245.856,309.604 247.353,303.593 240.54,303.007 " />
<svg:polygon detid="344065544" count="0" value="0" id="1404001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 6 plaquette  2 left  Id 344065544 " fill="white" points="254.58,296.923 261.394,296.345 259.431,288.328 252.616,288.906 " />
<svg:polygon detid="344066568" count="0" value="0" id="1404002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 10 plaquette  2 left  Id 344066568 " fill="white" points="250.343,284.151 256.672,282.555 251.247,275.11 244.919,276.706 " />
<svg:polygon detid="344067592" count="0" value="0" id="1404003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 14 plaquette  2 left  Id 344067592 " fill="white" points="240.632,272.459 246.043,269.954 237.527,263.589 232.117,266.093 " />
<svg:polygon detid="344068616" count="0" value="0" id="1404004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 18 plaquette  2 left  Id 344068616 " fill="white" points="226.108,262.644 230.232,259.401 219.206,254.549 215.081,257.792 " />
<svg:polygon detid="344069640" count="0" value="0" id="1404005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 22 plaquette  2 left  Id 344069640 " fill="white" points="207.759,255.374 210.316,251.614 197.531,248.606 194.974,252.366 " />
<svg:polygon detid="344070664" count="0" value="0" id="1404006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 26 plaquette  2 left  Id 344070664 " fill="white" points="186.838,251.146 187.653,247.125 173.98,246.166 173.164,250.187 " />
<svg:polygon detid="344071688" count="0" value="0" id="1404007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 30 plaquette  2 left  Id 344071688 " fill="white" points="164.769,250.247 163.787,246.239 150.157,247.394 151.139,251.402 " />
<svg:polygon detid="344072712" count="0" value="0" id="1404008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 34 plaquette  2 left  Id 344072712 " fill="white" points="143.056,252.739 140.344,249.017 127.687,252.208 130.4,255.93 " />
<svg:polygon detid="344073736" count="0" value="0" id="1404009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 38 plaquette  2 left  Id 344073736 " fill="white" points="123.18,258.452 118.922,255.269 108.101,260.278 112.358,263.461 " />
<svg:polygon detid="344074760" count="0" value="0" id="1404010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 42 plaquette  2 left  Id 344074760 " fill="white" points="106.494,266.996 100.981,264.57 92.7326,271.055 98.2456,273.481 " />
<svg:polygon detid="344075784" count="0" value="0" id="1404011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 46 plaquette  2 left  Id 344075784 " fill="white" points="94.1364,277.789 87.7438,276.285 82.63,283.805 89.0226,285.309 " />
<svg:polygon detid="344076808" count="0" value="0" id="1404012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 50 plaquette  2 left  Id 344076808 " fill="white" points="86.9487,290.096 80.1122,289.616 78.4817,297.659 85.3182,298.139 " />
<svg:polygon detid="344077832" count="0" value="0" id="1404013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 54 plaquette  2 left  Id 344077832 " fill="white" points="85.4202,303.077 78.6056,303.655 80.5695,311.672 87.3841,311.094 " />
<svg:polygon detid="344078856" count="0" value="0" id="1404014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 58 plaquette  2 left  Id 344078856 " fill="white" points="89.6566,315.849 83.3283,317.445 88.7528,324.89 95.0811,323.294 " />
<svg:polygon detid="344079880" count="0" value="0" id="1404015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 62 plaquette  2 left  Id 344079880 " fill="white" points="99.3678,327.541 93.9571,330.046 102.473,336.411 107.883,333.907 " />
<svg:polygon detid="344080904" count="0" value="0" id="1404016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 2 plaquette  2 right  Id 344080904 " fill="white" points="113.892,337.356 109.768,340.599 120.794,345.451 124.919,342.208 " />
<svg:polygon detid="344081928" count="0" value="0" id="1404017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 6 plaquette  2 right  Id 344081928 " fill="white" points="132.241,344.626 129.684,348.386 142.469,351.394 145.026,347.634 " />
<svg:polygon detid="344082952" count="0" value="0" id="1404018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 10 plaquette  2 right  Id 344082952 " fill="white" points="153.162,348.854 152.347,352.875 166.02,353.834 166.836,349.813 " />
<svg:polygon detid="344083976" count="0" value="0" id="1404019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 14 plaquette  2 right  Id 344083976 " fill="white" points="175.231,349.753 176.213,353.761 189.843,352.606 188.861,348.598 " />
<svg:polygon detid="344085000" count="0" value="0" id="1404020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 18 plaquette  2 right  Id 344085000 " fill="white" points="196.944,347.261 199.656,350.983 212.313,347.792 209.6,344.07 " />
<svg:polygon detid="344086024" count="0" value="0" id="1404021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 22 plaquette  2 right  Id 344086024 " fill="white" points="216.82,341.548 221.078,344.731 231.899,339.722 227.642,336.539 " />
<svg:polygon detid="344087048" count="0" value="0" id="1404022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 26 plaquette  2 right  Id 344087048 " fill="white" points="233.506,333.004 239.019,335.43 247.267,328.945 241.754,326.519 " />
<svg:polygon detid="344088072" count="0" value="0" id="1404023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 30 plaquette  2 right  Id 344088072 " fill="white" points="245.864,322.211 252.256,323.715 257.37,316.195 250.977,314.691 " />
<svg:polygon detid="344089096" count="0" value="0" id="1404024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 4 blade 34 plaquette  2 right  Id 344089096 " fill="white" points="253.051,309.904 259.888,310.384 261.518,302.341 254.682,301.861 " />
<svg:polygon detid="344065292" count="0" value="0" id="1405001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 5 plaquette  3 left  Id 344065292 " fill="white" points="265.099,297.334 271.935,296.85 270.287,288.808 263.451,289.293 " />
<svg:polygon detid="344066316" count="0" value="0" id="1405002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 9 plaquette  3 left  Id 344066316 " fill="white" points="260.687,282.947 267.076,281.438 261.946,273.921 255.556,275.43 " />
<svg:polygon detid="344067340" count="0" value="0" id="1405003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 13 plaquette  3 left  Id 344067340 " fill="white" points="250.093,269.721 255.601,267.291 247.338,260.811 241.83,263.241 " />
<svg:polygon detid="344068364" count="0" value="0" id="1405004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 17 plaquette  3 left  Id 344068364 " fill="white" points="234.042,258.559 238.292,255.373 227.46,250.372 223.209,253.558 " />
<svg:polygon detid="344069388" count="0" value="0" id="1405005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 21 plaquette  3 left  Id 344069388 " fill="white" points="213.626,250.221 216.33,246.496 203.666,243.315 200.962,247.04 " />
<svg:polygon detid="344070412" count="0" value="0" id="1405006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 25 plaquette  3 left  Id 344070412 " fill="white" points="190.237,245.275 191.21,241.266 177.578,240.121 176.605,244.13 " />
<svg:polygon detid="344071436" count="0" value="0" id="1405007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 29 plaquette  3 left  Id 344071436 " fill="white" points="165.469,244.059 164.644,240.038 150.973,241.008 151.798,245.029 " />
<svg:polygon detid="344072460" count="0" value="0" id="1405008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 33 plaquette  3 left  Id 344072460 " fill="white" points="141.009,246.655 138.444,242.896 125.666,245.914 128.231,249.673 " />
<svg:polygon detid="344073484" count="0" value="0" id="1405009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 37 plaquette  3 left  Id 344073484 " fill="white" points="118.526,252.886 114.394,249.647 103.379,254.507 107.51,257.747 " />
<svg:polygon detid="344074508" count="0" value="0" id="1405010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 41 plaquette  3 left  Id 344074508 " fill="white" points="99.55,262.328 94.1338,259.828 85.6325,266.2 91.0487,268.7 " />
<svg:polygon detid="344075532" count="0" value="0" id="1405011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 45 plaquette  3 left  Id 344075532 " fill="white" points="85.3755,274.338 79.0437,272.747 73.6357,280.196 79.9675,281.787 " />
<svg:polygon detid="344076556" count="0" value="0" id="1405012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 49 plaquette  3 left  Id 344076556 " fill="white" points="76.9676,288.096 70.1517,287.524 68.2056,295.542 75.0215,296.115 " />
<svg:polygon detid="344077580" count="0" value="0" id="1405013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 53 plaquette  3 left  Id 344077580 " fill="white" points="74.9005,302.666 68.065,303.15 69.7134,311.192 76.5489,310.707 " />
<svg:polygon detid="344078604" count="0" value="0" id="1405014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 57 plaquette  3 left  Id 344078604 " fill="white" points="79.3131,317.053 72.9238,318.562 78.0542,326.079 84.4435,324.57 " />
<svg:polygon detid="344079628" count="0" value="0" id="1405015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 61 plaquette  3 left  Id 344079628 " fill="white" points="89.9068,330.279 84.3992,332.709 92.6622,339.189 98.1698,336.759 " />
<svg:polygon detid="344080652" count="0" value="0" id="1405016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 1 plaquette  3 right  Id 344080652 " fill="white" points="105.958,341.441 101.708,344.627 112.54,349.628 116.791,346.442 " />
<svg:polygon detid="344081676" count="0" value="0" id="1405017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 5 plaquette  3 right  Id 344081676 " fill="white" points="126.374,349.779 123.67,353.504 136.334,356.685 139.038,352.96 " />
<svg:polygon detid="344082700" count="0" value="0" id="1405018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 9 plaquette  3 right  Id 344082700 " fill="white" points="149.763,354.725 148.79,358.734 162.422,359.879 163.395,355.87 " />
<svg:polygon detid="344083724" count="0" value="0" id="1405019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 13 plaquette  3 right  Id 344083724 " fill="white" points="174.531,355.941 175.356,359.962 189.027,358.992 188.202,354.971 " />
<svg:polygon detid="344084748" count="0" value="0" id="1405020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 17 plaquette  3 right  Id 344084748 " fill="white" points="198.991,353.345 201.556,357.104 214.334,354.086 211.769,350.327 " />
<svg:polygon detid="344085772" count="0" value="0" id="1405021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 21 plaquette  3 right  Id 344085772 " fill="white" points="221.474,347.114 225.606,350.353 236.621,345.493 232.49,342.253 " />
<svg:polygon detid="344086796" count="0" value="0" id="1405022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 25 plaquette  3 right  Id 344086796 " fill="white" points="240.45,337.672 245.866,340.172 254.367,333.8 248.951,331.3 " />
<svg:polygon detid="344087820" count="0" value="0" id="1405023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 29 plaquette  3 right  Id 344087820 " fill="white" points="254.624,325.662 260.956,327.253 266.364,319.804 260.033,318.213 " />
<svg:polygon detid="344088844" count="0" value="0" id="1405024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 5 blade 33 plaquette  3 right  Id 344088844 " fill="white" points="263.032,311.904 269.848,312.476 271.794,304.458 264.979,303.885 " />
<svg:polygon detid="344065548" count="0" value="0" id="1406001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 6 plaquette  3 left  Id 344065548 " fill="white" points="279.505,296.008 286.322,295.441 283.913,285.416 277.096,285.983 " />
<svg:polygon detid="344066572" count="0" value="0" id="1406002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 10 plaquette  3 left  Id 344066572 " fill="white" points="274.017,279.473 280.352,277.887 273.614,268.57 267.279,270.156 " />
<svg:polygon detid="344067596" count="0" value="0" id="1406003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 14 plaquette  3 left  Id 344067596 " fill="white" points="261.441,264.336 266.863,261.84 256.255,253.866 250.833,256.362 " />
<svg:polygon detid="344068620" count="0" value="0" id="1406004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 18 plaquette  3 left  Id 344068620 " fill="white" points="242.633,251.63 246.772,248.393 233.017,242.306 228.878,245.543 " />
<svg:polygon detid="344069644" count="0" value="0" id="1406005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 22 plaquette  3 left  Id 344069644 " fill="white" points="218.875,242.22 221.449,238.464 205.485,234.678 202.911,238.434 " />
<svg:polygon detid="344070668" count="0" value="0" id="1406006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 26 plaquette  3 left  Id 344070668 " fill="white" points="191.787,236.748 192.621,232.727 175.535,231.501 174.701,235.522 " />
<svg:polygon detid="344071692" count="0" value="0" id="1406007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 30 plaquette  3 left  Id 344071692 " fill="white" points="163.214,235.586 162.251,231.575 145.207,232.992 146.171,237.003 " />
<svg:polygon detid="344072716" count="0" value="0" id="1406008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 34 plaquette  3 left  Id 344072716 " fill="white" points="135.103,238.814 132.408,235.087 116.569,239.05 119.265,242.777 " />
<svg:polygon detid="344073740" count="0" value="0" id="1406009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 38 plaquette  3 left  Id 344073740 " fill="white" points="109.371,246.211 105.128,243.022 91.5727,249.262 95.8158,252.451 " />
<svg:polygon detid="344074764" count="0" value="0" id="1406010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 42 plaquette  3 left  Id 344074764 " fill="white" points="87.7705,257.275 82.2686,254.84 71.9207,262.931 77.4226,265.366 " />
<svg:polygon detid="344075788" count="0" value="0" id="1406011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 46 plaquette  3 left  Id 344075788 " fill="white" points="71.7738,271.25 65.3881,269.736 58.9528,279.126 65.3385,280.641 " />
<svg:polygon detid="344076812" count="0" value="0" id="1406012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 50 plaquette  3 left  Id 344076812 " fill="white" points="62.4709,287.184 55.6366,286.694 53.5524,296.744 60.3867,297.235 " />
<svg:polygon detid="344077836" count="0" value="0" id="1406013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 54 plaquette  3 left  Id 344077836 " fill="white" points="60.4955,303.992 53.6782,304.559 56.0871,314.584 62.9044,314.017 " />
<svg:polygon detid="344078860" count="0" value="0" id="1406014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 58 plaquette  3 left  Id 344078860 " fill="white" points="65.9832,320.527 59.6477,322.113 66.3856,331.43 72.7211,329.844 " />
<svg:polygon detid="344079884" count="0" value="0" id="1406015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 62 plaquette  3 left  Id 344079884 " fill="white" points="78.5592,335.664 73.1371,338.16 83.7449,346.134 89.167,343.638 " />
<svg:polygon detid="344080908" count="0" value="0" id="1406016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 2 plaquette  3 right  Id 344080908 " fill="white" points="97.3672,348.37 93.228,351.607 106.983,357.694 111.122,354.457 " />
<svg:polygon detid="344081932" count="0" value="0" id="1406017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 6 plaquette  3 right  Id 344081932 " fill="white" points="121.125,357.78 118.551,361.536 134.515,365.322 137.089,361.566 " />
<svg:polygon detid="344082956" count="0" value="0" id="1406018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 10 plaquette  3 right  Id 344082956 " fill="white" points="148.213,363.252 147.379,367.273 164.465,368.499 165.299,364.478 " />
<svg:polygon detid="344083980" count="0" value="0" id="1406019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 14 plaquette  3 right  Id 344083980 " fill="white" points="176.786,364.414 177.749,368.425 194.793,367.008 193.829,362.997 " />
<svg:polygon detid="344085004" count="0" value="0" id="1406020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 18 plaquette  3 right  Id 344085004 " fill="white" points="204.897,361.186 207.592,364.913 223.431,360.95 220.735,357.223 " />
<svg:polygon detid="344086028" count="0" value="0" id="1406021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 22 plaquette  3 right  Id 344086028 " fill="white" points="230.629,353.789 234.872,356.978 248.427,350.738 244.184,347.549 " />
<svg:polygon detid="344087052" count="0" value="0" id="1406022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 26 plaquette  3 right  Id 344087052 " fill="white" points="252.23,342.725 257.731,345.16 268.079,337.069 262.577,334.634 " />
<svg:polygon detid="344088076" count="0" value="0" id="1406023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 30 plaquette  3 right  Id 344088076 " fill="white" points="268.226,328.75 274.612,330.264 281.047,320.874 274.662,319.359 " />
<svg:polygon detid="344089100" count="0" value="0" id="1406024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 6 blade 34 plaquette  3 right  Id 344089100 " fill="white" points="277.529,312.816 284.363,313.306 286.448,303.256 279.613,302.765 " />
<svg:polygon detid="344065296" count="0" value="0" id="1407001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 5 plaquette  4 left  Id 344065296 " fill="white" points="287.882,296.605 291.299,296.358 289.205,286.308 285.788,286.555 " />
<svg:polygon detid="344066320" count="0" value="0" id="1407002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 9 plaquette  4 left  Id 344066320 " fill="white" points="282.371,278.773 285.563,278.015 279.119,268.626 275.927,269.384 " />
<svg:polygon detid="344067344" count="0" value="0" id="1407003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 13 plaquette  4 left  Id 344067344 " fill="white" points="269.202,262.388 271.952,261.17 261.597,253.082 258.847,254.301 " />
<svg:polygon detid="344068368" count="0" value="0" id="1407004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 17 plaquette  4 left  Id 344068368 " fill="white" points="249.273,248.567 251.393,246.972 237.833,240.736 235.712,242.331 " />
<svg:polygon detid="344069392" count="0" value="0" id="1407005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 21 plaquette  4 left  Id 344069392 " fill="white" points="223.942,238.25 225.288,236.386 209.445,232.428 208.099,234.292 " />
<svg:polygon detid="344070416" count="0" value="0" id="1407006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 25 plaquette  4 left  Id 344070416 " fill="white" points="194.934,232.142 195.414,230.137 178.37,228.725 177.89,230.73 " />
<svg:polygon detid="344071440" count="0" value="0" id="1407007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 29 plaquette  4 left  Id 344071440 " fill="white" points="164.228,230.658 163.809,228.648 146.724,229.879 147.143,231.889 " />
<svg:polygon detid="344072464" count="0" value="0" id="1407008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 33 plaquette  4 left  Id 344072464 " fill="white" points="133.914,233.9 132.626,232.022 116.665,235.812 117.954,237.69 " />
<svg:polygon detid="344073488" count="0" value="0" id="1407009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 37 plaquette  4 left  Id 344073488 " fill="white" points="106.06,241.646 103.989,240.028 90.2401,246.119 92.3111,247.737 " />
<svg:polygon detid="344074512" count="0" value="0" id="1407010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 41 plaquette  4 left  Id 344074512 " fill="white" points="82.564,253.369 79.8518,252.122 69.2511,260.099 71.9633,261.346 " />
<svg:polygon detid="344075536" count="0" value="0" id="1407011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 45 plaquette  4 left  Id 344075536 " fill="white" points="65.0253,268.27 61.8568,267.478 55.1273,276.797 58.2957,277.589 " />
<svg:polygon detid="344076560" count="0" value="0" id="1407012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 49 plaquette  4 left  Id 344076560 " fill="white" points="54.6414,285.333 51.2325,285.05 48.8325,295.076 52.2414,295.359 " />
<svg:polygon detid="344077584" count="0" value="0" id="1407013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 53 plaquette  4 left  Id 344077584 " fill="white" points="52.1183,303.395 48.7014,303.642 50.7946,313.692 54.2115,313.445 " />
<svg:polygon detid="344078608" count="0" value="0" id="1407014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 57 plaquette  4 left  Id 344078608 " fill="white" points="57.6294,321.227 54.4372,321.985 60.881,331.374 64.0732,330.616 " />
<svg:polygon detid="344079632" count="0" value="0" id="1407015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 61 plaquette  4 left  Id 344079632 " fill="white" points="70.7976,337.612 68.0478,338.83 78.4029,346.918 81.1527,345.699 " />
<svg:polygon detid="344080656" count="0" value="0" id="1407016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 1 plaquette  4 right  Id 344080656 " fill="white" points="90.7268,351.433 88.6066,353.028 102.167,359.264 104.288,357.669 " />
<svg:polygon detid="344081680" count="0" value="0" id="1407017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 5 plaquette  4 right  Id 344081680 " fill="white" points="116.058,361.75 114.712,363.614 130.555,367.572 131.901,365.708 " />
<svg:polygon detid="344082704" count="0" value="0" id="1407018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 9 plaquette  4 right  Id 344082704 " fill="white" points="145.066,367.858 144.586,369.863 161.63,371.275 162.11,369.27 " />
<svg:polygon detid="344083728" count="0" value="0" id="1407019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 13 plaquette  4 right  Id 344083728 " fill="white" points="175.772,369.342 176.191,371.352 193.276,370.121 192.857,368.111 " />
<svg:polygon detid="344084752" count="0" value="0" id="1407020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 17 plaquette  4 right  Id 344084752 " fill="white" points="206.086,366.1 207.374,367.978 223.335,364.188 222.046,362.31 " />
<svg:polygon detid="344085776" count="0" value="0" id="1407021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 21 plaquette  4 right  Id 344085776 " fill="white" points="233.94,358.354 236.011,359.972 249.76,353.881 247.689,352.263 " />
<svg:polygon detid="344086800" count="0" value="0" id="1407022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 25 plaquette  4 right  Id 344086800 " fill="white" points="257.436,346.631 260.148,347.878 270.749,339.901 268.037,338.654 " />
<svg:polygon detid="344087824" count="0" value="0" id="1407023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 29 plaquette  4 right  Id 344087824 " fill="white" points="274.975,331.73 278.143,332.522 284.873,323.203 281.704,322.411 " />
<svg:polygon detid="344088848" count="0" value="0" id="1407024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 2 ring 7 blade 33 plaquette  4 right  Id 344088848 " fill="white" points="285.359,314.667 288.768,314.95 291.167,304.924 287.759,304.641 " />
<svg:polygon detid="343999748" count="0" value="0" id="1501001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 5 plaquette  1 left  Id 343999748 " fill="white" points="221.307,98.6848 224.729,98.4612 223.969,94.436 220.547,94.6596 " />
<svg:polygon detid="344000772" count="0" value="0" id="1501002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 9 plaquette  1 left  Id 344000772 " fill="white" points="218.98,90.9183 222.187,90.1814 219.681,86.4091 216.475,87.146 " />
<svg:polygon detid="344001796" count="0" value="0" id="1501003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 13 plaquette  1 left  Id 344001796 " fill="white" points="213.315,83.7707 216.088,82.5707 212.009,79.3083 209.236,80.5083 " />
<svg:polygon detid="344002820" count="0" value="0" id="1501004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 17 plaquette  1 left  Id 344002820 " fill="white" points="204.699,77.7291 206.849,76.1478 201.473,73.6177 199.323,75.199 " />
<svg:polygon detid="344003844" count="0" value="0" id="1501005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 21 plaquette  1 left  Id 344003844 " fill="white" points="193.717,73.2052 195.099,71.3504 188.793,69.725 187.411,71.5798 " />
<svg:polygon detid="344004868" count="0" value="0" id="1501006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 25 plaquette  1 left  Id 344004868 " fill="white" points="181.12,70.5073 181.638,68.5054 174.832,67.8955 174.313,69.8974 " />
<svg:polygon detid="344005892" count="0" value="0" id="1501007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 29 plaquette  1 left  Id 344005892 " fill="white" points="167.764,69.8193 167.384,67.8067 160.541,68.2538 160.921,70.2664 " />
<svg:polygon detid="344006916" count="0" value="0" id="1501008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 33 plaquette  1 left  Id 344006916 " fill="white" points="154.561,71.1881 153.308,69.3019 146.895,70.7756 148.148,72.6618 " />
<svg:polygon detid="344007940" count="0" value="0" id="1501009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 37 plaquette  1 left  Id 344007940 " fill="white" points="142.41,74.5203 140.37,72.8891 134.824,75.289 136.864,76.9202 " />
<svg:polygon detid="344008964" count="0" value="0" id="1501010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 41 plaquette  1 left  Id 344008964 " fill="white" points="132.139,79.589 129.451,78.3239 125.15,81.4864 127.838,82.7515 " />
<svg:polygon detid="344009988" count="0" value="0" id="1501011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 45 plaquette  1 left  Id 344009988 " fill="white" points="124.449,86.0486 121.296,85.2359 118.533,88.9455 121.686,89.7582 " />
<svg:polygon detid="344011012" count="0" value="0" id="1501012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 49 plaquette  1 left  Id 344011012 " fill="white" points="119.862,93.459 116.459,93.1541 115.422,97.1579 118.826,97.4629 " />
<svg:polygon detid="344012036" count="0" value="0" id="1501013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 53 plaquette  1 left  Id 344012036 " fill="white" points="118.693,101.315 115.271,101.539 116.031,105.564 119.453,105.34 " />
<svg:polygon detid="344013060" count="0" value="0" id="1501014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 57 plaquette  1 left  Id 344013060 " fill="white" points="121.02,109.082 117.813,109.819 120.319,113.591 123.525,112.854 " />
<svg:polygon detid="344014084" count="0" value="0" id="1501015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 61 plaquette  1 left  Id 344014084 " fill="white" points="126.685,116.229 123.912,117.429 127.991,120.692 130.764,119.492 " />
<svg:polygon detid="344015108" count="0" value="0" id="1501016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 1 plaquette  1 right  Id 344015108 " fill="white" points="135.301,122.271 133.151,123.852 138.527,126.382 140.677,124.801 " />
<svg:polygon detid="344016132" count="0" value="0" id="1501017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 5 plaquette  1 right  Id 344016132 " fill="white" points="146.283,126.795 144.901,128.65 151.207,130.275 152.589,128.42 " />
<svg:polygon detid="344017156" count="0" value="0" id="1501018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 9 plaquette  1 right  Id 344017156 " fill="white" points="158.88,129.493 158.362,131.495 165.168,132.105 165.687,130.103 " />
<svg:polygon detid="344018180" count="0" value="0" id="1501019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 13 plaquette  1 right  Id 344018180 " fill="white" points="172.236,130.181 172.616,132.193 179.459,131.746 179.079,129.734 " />
<svg:polygon detid="344019204" count="0" value="0" id="1501020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 17 plaquette  1 right  Id 344019204 " fill="white" points="185.439,128.812 186.692,130.698 193.105,129.224 191.852,127.338 " />
<svg:polygon detid="344020228" count="0" value="0" id="1501021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 21 plaquette  1 right  Id 344020228 " fill="white" points="197.59,125.48 199.63,127.111 205.176,124.711 203.136,123.08 " />
<svg:polygon detid="344021252" count="0" value="0" id="1501022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 25 plaquette  1 right  Id 344021252 " fill="white" points="207.861,120.411 210.549,121.676 214.85,118.514 212.162,117.249 " />
<svg:polygon detid="344022276" count="0" value="0" id="1501023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 29 plaquette  1 right  Id 344022276 " fill="white" points="215.551,113.951 218.704,114.764 221.467,111.055 218.314,110.242 " />
<svg:polygon detid="344023300" count="0" value="0" id="1501024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 1 blade 33 plaquette  1 right  Id 344023300 " fill="white" points="220.138,106.541 223.541,106.846 224.578,102.842 221.174,102.537 " />
<svg:polygon detid="344000004" count="0" value="0" id="1502001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 6 plaquette  1 left  Id 344000004 " fill="white" points="229.662,97.8409 236.472,97.2439 234.95,91.2352 228.14,91.8322 " />
<svg:polygon detid="344001028" count="0" value="0" id="1502002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 10 plaquette  1 left  Id 344001028 " fill="white" points="226.679,88.831 232.994,87.2176 228.88,81.6455 222.565,83.2589 " />
<svg:polygon detid="344002052" count="0" value="0" id="1502003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 14 plaquette  1 left  Id 344002052 " fill="white" points="219.834,80.5824 225.224,78.0625 218.798,73.3066 213.408,75.8265 " />
<svg:polygon detid="344003076" count="0" value="0" id="1502004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 18 plaquette  1 left  Id 344003076 " fill="white" points="209.592,73.657 213.69,70.4024 205.39,66.7868 201.293,70.0414 " />
<svg:polygon detid="344004100" count="0" value="0" id="1502005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 22 plaquette  1 left  Id 344004100 " fill="white" points="196.652,68.5269 199.178,64.7593 189.571,62.5304 187.045,66.298 " />
<svg:polygon detid="344005124" count="0" value="0" id="1502006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 26 plaquette  1 left  Id 344005124 " fill="white" points="181.896,65.5415 182.678,61.5178 172.418,60.8276 171.636,64.8513 " />
<svg:polygon detid="344006148" count="0" value="0" id="1502007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 30 plaquette  1 left  Id 344006148 " fill="white" points="166.329,64.9046 165.315,60.8988 155.1,61.7942 156.115,65.8 " />
<svg:polygon detid="344007172" count="0" value="0" id="1502008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 34 plaquette  1 left  Id 344007172 " fill="white" points="151.013,66.6592 148.27,62.9445 138.797,65.3646 141.54,69.0793 " />
<svg:polygon detid="344008196" count="0" value="0" id="1502009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 38 plaquette  1 left  Id 344008196 " fill="white" points="136.99,70.686 132.706,67.5154 124.621,71.2952 128.905,74.4658 " />
<svg:polygon detid="344009220" count="0" value="0" id="1502010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 42 plaquette  1 left  Id 344009220 " fill="white" points="125.217,76.7105 119.684,74.3001 113.538,79.1821 119.07,81.5925 " />
<svg:polygon detid="344010244" count="0" value="0" id="1502011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 46 plaquette  1 left  Id 344010244 " fill="white" points="116.496,84.3222 110.091,82.8363 106.302,88.4876 112.707,89.9735 " />
<svg:polygon detid="344011268" count="0" value="0" id="1502012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 50 plaquette  1 left  Id 344011268 " fill="white" points="111.421,93.0022 104.58,92.5421 103.407,98.5777 110.247,99.0379 " />
<svg:polygon detid="344012292" count="0" value="0" id="1502013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 54 plaquette  1 left  Id 344012292 " fill="white" points="110.338,102.159 103.528,102.756 105.05,108.765 111.86,108.168 " />
<svg:polygon detid="344013316" count="0" value="0" id="1502014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 58 plaquette  1 left  Id 344013316 " fill="white" points="113.321,111.169 107.006,112.782 111.12,118.355 117.435,116.741 " />
<svg:polygon detid="344014340" count="0" value="0" id="1502015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 62 plaquette  1 left  Id 344014340 " fill="white" points="120.166,119.418 114.776,121.937 121.202,126.693 126.592,124.174 " />
<svg:polygon detid="344015364" count="0" value="0" id="1502016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 2 plaquette  1 right  Id 344015364 " fill="white" points="130.408,126.343 126.31,129.598 134.61,133.213 138.707,129.959 " />
<svg:polygon detid="344016388" count="0" value="0" id="1502017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 6 plaquette  1 right  Id 344016388 " fill="white" points="143.348,131.473 140.822,135.241 150.429,137.47 152.955,133.702 " />
<svg:polygon detid="344017412" count="0" value="0" id="1502018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 10 plaquette  1 right  Id 344017412 " fill="white" points="158.104,134.458 157.322,138.482 167.582,139.172 168.364,135.149 " />
<svg:polygon detid="344018436" count="0" value="0" id="1502019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 14 plaquette  1 right  Id 344018436 " fill="white" points="173.671,135.095 174.685,139.101 184.9,138.206 183.885,134.2 " />
<svg:polygon detid="344019460" count="0" value="0" id="1502020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 18 plaquette  1 right  Id 344019460 " fill="white" points="188.987,133.341 191.73,137.056 201.203,134.635 198.46,130.921 " />
<svg:polygon detid="344020484" count="0" value="0" id="1502021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 22 plaquette  1 right  Id 344020484 " fill="white" points="203.01,129.314 207.294,132.485 215.379,128.705 211.095,125.534 " />
<svg:polygon detid="344021508" count="0" value="0" id="1502022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 26 plaquette  1 right  Id 344021508 " fill="white" points="214.783,123.289 220.316,125.7 226.462,120.818 220.93,118.408 " />
<svg:polygon detid="344022532" count="0" value="0" id="1502023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 30 plaquette  1 right  Id 344022532 " fill="white" points="223.504,115.678 229.909,117.164 233.698,111.512 227.293,110.026 " />
<svg:polygon detid="344023556" count="0" value="0" id="1502024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 2 blade 34 plaquette  1 right  Id 344023556 " fill="white" points="228.579,106.998 235.42,107.458 236.593,101.422 229.753,100.962 " />
<svg:polygon detid="343999752" count="0" value="0" id="1503001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 5 plaquette  2 left  Id 343999752 " fill="white" points="240.659,98.1986 247.497,97.7282 246.298,91.6943 239.46,92.1647 " />
<svg:polygon detid="344000776" count="0" value="0" id="1503002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 9 plaquette  2 left  Id 344000776 " fill="white" points="237.459,87.5024 243.857,86.0069 240.044,80.3612 233.645,81.8567 " />
<svg:polygon detid="344001800" count="0" value="0" id="1503003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 13 plaquette  2 left  Id 344001800 " fill="white" points="229.661,77.6578 235.184,75.2392 229.016,70.3665 223.494,72.7851 " />
<svg:polygon detid="344002824" count="0" value="0" id="1503004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 17 plaquette  2 left  Id 344002824 " fill="white" points="217.798,69.3359 222.068,66.1589 213.967,62.3912 209.697,65.5682 " />
<svg:polygon detid="344003848" count="0" value="0" id="1503005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 21 plaquette  2 left  Id 344003848 " fill="white" points="202.677,63.1037 205.404,59.3849 195.921,56.9789 193.194,60.6977 " />
<svg:polygon detid="344004872" count="0" value="0" id="1503006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 25 plaquette  2 left  Id 344004872 " fill="white" points="185.33,59.3859 186.327,55.3786 176.109,54.4984 175.111,58.5057 " />
<svg:polygon detid="344005896" count="0" value="0" id="1503007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 29 plaquette  2 left  Id 344005896 " fill="white" points="166.938,58.4359 166.138,54.4133 155.88,55.1188 156.68,59.1414 " />
<svg:polygon detid="344006920" count="0" value="0" id="1503008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 33 plaquette  2 left  Id 344006920 " fill="white" points="148.754,60.3184 146.212,56.5546 136.614,58.7978 139.156,62.5616 " />
<svg:polygon detid="344007944" count="0" value="0" id="1503009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 37 plaquette  2 left  Id 344007944 " fill="white" points="132.018,64.9052 127.907,61.6566 119.623,65.2845 123.735,68.5331 " />
<svg:polygon detid="344008968" count="0" value="0" id="1503010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 41 plaquette  2 left  Id 344008968 " fill="white" points="117.871,71.8835 112.47,69.3717 106.065,74.1372 111.466,76.649 " />
<svg:polygon detid="344009992" count="0" value="0" id="1503011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 45 plaquette  2 left  Id 344009992 " fill="white" points="107.276,80.7781 100.954,79.1741 96.8641,84.7523 103.186,86.3563 " />
<svg:polygon detid="344011016" count="0" value="0" id="1503012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 49 plaquette  2 left  Id 344011016 " fill="white" points="100.956,90.9825 94.1437,90.3956 92.6473,96.4065 99.4596,96.9934 " />
<svg:polygon detid="344012040" count="0" value="0" id="1503013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 53 plaquette  2 left  Id 344012040 " fill="white" points="99.341,101.801 92.5026,102.272 93.7019,108.306 100.54,107.835 " />
<svg:polygon detid="344013064" count="0" value="0" id="1503014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 57 plaquette  2 left  Id 344013064 " fill="white" points="102.541,112.498 96.1429,113.993 99.9562,119.639 106.355,118.143 " />
<svg:polygon detid="344014088" count="0" value="0" id="1503015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 61 plaquette  2 left  Id 344014088 " fill="white" points="110.339,122.342 104.816,124.761 110.984,129.634 116.506,127.215 " />
<svg:polygon detid="344015112" count="0" value="0" id="1503016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 1 plaquette  2 right  Id 344015112 " fill="white" points="122.202,130.664 117.932,133.841 126.033,137.609 130.303,134.432 " />
<svg:polygon detid="344016136" count="0" value="0" id="1503017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 5 plaquette  2 right  Id 344016136 " fill="white" points="137.323,136.896 134.596,140.615 144.079,143.021 146.806,139.302 " />
<svg:polygon detid="344017160" count="0" value="0" id="1503018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 9 plaquette  2 right  Id 344017160 " fill="white" points="154.67,140.614 153.673,144.621 163.891,145.502 164.889,141.494 " />
<svg:polygon detid="344018184" count="0" value="0" id="1503019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 13 plaquette  2 right  Id 344018184 " fill="white" points="173.062,141.564 173.862,145.587 184.12,144.881 183.32,140.859 " />
<svg:polygon detid="344019208" count="0" value="0" id="1503020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 17 plaquette  2 right  Id 344019208 " fill="white" points="191.246,139.682 193.788,143.445 203.386,141.202 200.844,137.438 " />
<svg:polygon detid="344020232" count="0" value="0" id="1503021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 21 plaquette  2 right  Id 344020232 " fill="white" points="207.982,135.095 212.093,138.343 220.377,134.715 216.265,131.467 " />
<svg:polygon detid="344021256" count="0" value="0" id="1503022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 25 plaquette  2 right  Id 344021256 " fill="white" points="222.129,128.116 227.53,130.628 233.935,125.863 228.534,123.351 " />
<svg:polygon detid="344022280" count="0" value="0" id="1503023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 29 plaquette  2 right  Id 344022280 " fill="white" points="232.724,119.222 239.046,120.826 243.136,115.248 236.814,113.644 " />
<svg:polygon detid="344023304" count="0" value="0" id="1503024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 3 blade 33 plaquette  2 right  Id 344023304 " fill="white" points="239.044,109.018 245.856,109.604 247.353,103.593 240.54,103.007 " />
<svg:polygon detid="344000008" count="0" value="0" id="1504001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 6 plaquette  2 left  Id 344000008 " fill="white" points="254.58,96.9227 261.394,96.3451 259.431,88.3279 252.616,88.9055 " />
<svg:polygon detid="344001032" count="0" value="0" id="1504002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 10 plaquette  2 left  Id 344001032 " fill="white" points="250.343,84.1507 256.672,82.5552 251.247,75.1102 244.919,76.7057 " />
<svg:polygon detid="344002056" count="0" value="0" id="1504003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 14 plaquette  2 left  Id 344002056 " fill="white" points="240.632,72.4587 246.043,69.9542 237.527,63.5887 232.117,66.0932 " />
<svg:polygon detid="344003080" count="0" value="0" id="1504004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 18 plaquette  2 left  Id 344003080 " fill="white" points="226.108,62.6436 230.232,59.4007 219.206,54.5486 215.081,57.7915 " />
<svg:polygon detid="344004104" count="0" value="0" id="1504005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 22 plaquette  2 left  Id 344004104 " fill="white" points="207.759,55.3743 210.316,51.614 197.531,48.6059 194.974,52.3662 " />
<svg:polygon detid="344005128" count="0" value="0" id="1504006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 26 plaquette  2 left  Id 344005128 " fill="white" points="186.838,51.1463 187.653,47.1248 173.98,46.1657 173.164,50.1872 " />
<svg:polygon detid="344006152" count="0" value="0" id="1504007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 30 plaquette  2 left  Id 344006152 " fill="white" points="164.769,50.2472 163.787,46.2386 150.157,47.3938 151.139,51.4024 " />
<svg:polygon detid="344007176" count="0" value="0" id="1504008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 34 plaquette  2 left  Id 344007176 " fill="white" points="143.056,52.7392 140.344,49.0167 127.687,52.2075 130.4,55.93 " />
<svg:polygon detid="344008200" count="0" value="0" id="1504009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 38 plaquette  2 left  Id 344008200 " fill="white" points="123.18,58.4516 118.922,55.2689 108.101,60.278 112.358,63.4607 " />
<svg:polygon detid="344009224" count="0" value="0" id="1504010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 42 plaquette  2 left  Id 344009224 " fill="white" points="106.494,66.9956 100.981,64.5695 92.7326,71.0554 98.2456,73.4815 " />
<svg:polygon detid="344010248" count="0" value="0" id="1504011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 46 plaquette  2 left  Id 344010248 " fill="white" points="94.1364,77.7887 87.7438,76.2847 82.63,83.8054 89.0226,85.3094 " />
<svg:polygon detid="344011272" count="0" value="0" id="1504012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 50 plaquette  2 left  Id 344011272 " fill="white" points="86.9487,90.0955 80.1122,89.616 78.4817,97.659 85.3182,98.1385 " />
<svg:polygon detid="344012296" count="0" value="0" id="1504013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 54 plaquette  2 left  Id 344012296 " fill="white" points="85.4202,103.077 78.6056,103.655 80.5695,111.672 87.3841,111.094 " />
<svg:polygon detid="344013320" count="0" value="0" id="1504014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 58 plaquette  2 left  Id 344013320 " fill="white" points="89.6566,115.849 83.3283,117.445 88.7528,124.89 95.0811,123.294 " />
<svg:polygon detid="344014344" count="0" value="0" id="1504015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 62 plaquette  2 left  Id 344014344 " fill="white" points="99.3678,127.541 93.9571,130.046 102.473,136.411 107.883,133.907 " />
<svg:polygon detid="344015368" count="0" value="0" id="1504016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 2 plaquette  2 right  Id 344015368 " fill="white" points="113.892,137.356 109.768,140.599 120.794,145.451 124.919,142.208 " />
<svg:polygon detid="344016392" count="0" value="0" id="1504017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 6 plaquette  2 right  Id 344016392 " fill="white" points="132.241,144.626 129.684,148.386 142.469,151.394 145.026,147.634 " />
<svg:polygon detid="344017416" count="0" value="0" id="1504018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 10 plaquette  2 right  Id 344017416 " fill="white" points="153.162,148.854 152.347,152.875 166.02,153.834 166.836,149.813 " />
<svg:polygon detid="344018440" count="0" value="0" id="1504019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 14 plaquette  2 right  Id 344018440 " fill="white" points="175.231,149.753 176.213,153.761 189.843,152.606 188.861,148.598 " />
<svg:polygon detid="344019464" count="0" value="0" id="1504020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 18 plaquette  2 right  Id 344019464 " fill="white" points="196.944,147.261 199.656,150.983 212.313,147.792 209.6,144.07 " />
<svg:polygon detid="344020488" count="0" value="0" id="1504021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 22 plaquette  2 right  Id 344020488 " fill="white" points="216.82,141.548 221.078,144.731 231.899,139.722 227.642,136.539 " />
<svg:polygon detid="344021512" count="0" value="0" id="1504022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 26 plaquette  2 right  Id 344021512 " fill="white" points="233.506,133.004 239.019,135.43 247.267,128.945 241.754,126.519 " />
<svg:polygon detid="344022536" count="0" value="0" id="1504023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 30 plaquette  2 right  Id 344022536 " fill="white" points="245.864,122.211 252.256,123.715 257.37,116.195 250.977,114.691 " />
<svg:polygon detid="344023560" count="0" value="0" id="1504024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 4 blade 34 plaquette  2 right  Id 344023560 " fill="white" points="253.051,109.904 259.888,110.384 261.518,102.341 254.682,101.861 " />
<svg:polygon detid="343999756" count="0" value="0" id="1505001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 5 plaquette  3 left  Id 343999756 " fill="white" points="265.099,97.3345 271.935,96.8497 270.287,88.8079 263.451,89.2927 " />
<svg:polygon detid="344000780" count="0" value="0" id="1505002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 9 plaquette  3 left  Id 344000780 " fill="white" points="260.687,82.9467 267.076,81.4377 261.946,73.9209 255.556,75.4299 " />
<svg:polygon detid="344001804" count="0" value="0" id="1505003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 13 plaquette  3 left  Id 344001804 " fill="white" points="250.093,69.721 255.601,67.2907 247.338,60.8112 241.83,63.2415 " />
<svg:polygon detid="344002828" count="0" value="0" id="1505004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 17 plaquette  3 left  Id 344002828 " fill="white" points="234.042,58.5588 238.292,55.3728 227.46,50.3721 223.209,53.5581 " />
<svg:polygon detid="344003852" count="0" value="0" id="1505005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 21 plaquette  3 left  Id 344003852 " fill="white" points="213.626,50.2209 216.33,46.4963 203.666,43.3151 200.962,47.0397 " />
<svg:polygon detid="344004876" count="0" value="0" id="1505006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 25 plaquette  3 left  Id 344004876 " fill="white" points="190.237,45.2751 191.21,41.2657 177.578,40.1209 176.605,44.1303 " />
<svg:polygon detid="344005900" count="0" value="0" id="1505007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 29 plaquette  3 left  Id 344005900 " fill="white" points="165.469,44.0591 164.644,40.0383 150.973,41.0079 151.798,45.0287 " />
<svg:polygon detid="344006924" count="0" value="0" id="1505008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 33 plaquette  3 left  Id 344006924 " fill="white" points="141.009,46.6547 138.444,42.8963 125.666,45.9143 128.231,49.6727 " />
<svg:polygon detid="344007948" count="0" value="0" id="1505009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 37 plaquette  3 left  Id 344007948 " fill="white" points="118.526,52.8864 114.394,49.6466 103.379,54.5071 107.51,57.7469 " />
<svg:polygon detid="344008972" count="0" value="0" id="1505010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 41 plaquette  3 left  Id 344008972 " fill="white" points="99.55,62.3285 94.1338,59.8281 85.6325,66.2001 91.0487,68.7005 " />
<svg:polygon detid="344009996" count="0" value="0" id="1505011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 45 plaquette  3 left  Id 344009996 " fill="white" points="85.3755,74.3379 79.0437,72.7473 73.6357,80.1964 79.9675,81.787 " />
<svg:polygon detid="344011020" count="0" value="0" id="1505012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 49 plaquette  3 left  Id 344011020 " fill="white" points="76.9676,88.0961 70.1517,87.5237 68.2056,95.5424 75.0215,96.1148 " />
<svg:polygon detid="344012044" count="0" value="0" id="1505013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 53 plaquette  3 left  Id 344012044 " fill="white" points="74.9005,102.666 68.065,103.15 69.7134,111.192 76.5489,110.707 " />
<svg:polygon detid="344013068" count="0" value="0" id="1505014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 57 plaquette  3 left  Id 344013068 " fill="white" points="79.3131,117.053 72.9238,118.562 78.0542,126.079 84.4435,124.57 " />
<svg:polygon detid="344014092" count="0" value="0" id="1505015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 61 plaquette  3 left  Id 344014092 " fill="white" points="89.9068,130.279 84.3992,132.709 92.6622,139.189 98.1698,136.759 " />
<svg:polygon detid="344015116" count="0" value="0" id="1505016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 1 plaquette  3 right  Id 344015116 " fill="white" points="105.958,141.441 101.708,144.627 112.54,149.628 116.791,146.442 " />
<svg:polygon detid="344016140" count="0" value="0" id="1505017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 5 plaquette  3 right  Id 344016140 " fill="white" points="126.374,149.779 123.67,153.504 136.334,156.685 139.038,152.96 " />
<svg:polygon detid="344017164" count="0" value="0" id="1505018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 9 plaquette  3 right  Id 344017164 " fill="white" points="149.763,154.725 148.79,158.734 162.422,159.879 163.395,155.87 " />
<svg:polygon detid="344018188" count="0" value="0" id="1505019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 13 plaquette  3 right  Id 344018188 " fill="white" points="174.531,155.941 175.356,159.962 189.027,158.992 188.202,154.971 " />
<svg:polygon detid="344019212" count="0" value="0" id="1505020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 17 plaquette  3 right  Id 344019212 " fill="white" points="198.991,153.345 201.556,157.104 214.334,154.086 211.769,150.327 " />
<svg:polygon detid="344020236" count="0" value="0" id="1505021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 21 plaquette  3 right  Id 344020236 " fill="white" points="221.474,147.114 225.606,150.353 236.621,145.493 232.49,142.253 " />
<svg:polygon detid="344021260" count="0" value="0" id="1505022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 25 plaquette  3 right  Id 344021260 " fill="white" points="240.45,137.672 245.866,140.172 254.367,133.8 248.951,131.3 " />
<svg:polygon detid="344022284" count="0" value="0" id="1505023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 29 plaquette  3 right  Id 344022284 " fill="white" points="254.624,125.662 260.956,127.253 266.364,119.804 260.033,118.213 " />
<svg:polygon detid="344023308" count="0" value="0" id="1505024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 5 blade 33 plaquette  3 right  Id 344023308 " fill="white" points="263.032,111.904 269.848,112.476 271.794,104.458 264.979,103.885 " />
<svg:polygon detid="344000012" count="0" value="0" id="1506001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 6 plaquette  3 left  Id 344000012 " fill="white" points="279.505,96.0083 286.322,95.4415 283.913,85.4161 277.096,85.9829 " />
<svg:polygon detid="344001036" count="0" value="0" id="1506002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 10 plaquette  3 left  Id 344001036 " fill="white" points="274.017,79.4726 280.352,77.8873 273.614,68.5703 267.279,70.1556 " />
<svg:polygon detid="344002060" count="0" value="0" id="1506003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 14 plaquette  3 left  Id 344002060 " fill="white" points="261.441,64.3359 266.863,61.84 256.255,53.8663 250.833,56.3622 " />
<svg:polygon detid="344003084" count="0" value="0" id="1506004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 18 plaquette  3 left  Id 344003084 " fill="white" points="242.633,51.6297 246.772,48.3933 233.017,42.3063 228.878,45.5427 " />
<svg:polygon detid="344004108" count="0" value="0" id="1506005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 22 plaquette  3 left  Id 344004108 " fill="white" points="218.875,42.2199 221.449,38.4636 205.485,34.6781 202.911,38.4344 " />
<svg:polygon detid="344005132" count="0" value="0" id="1506006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 26 plaquette  3 left  Id 344005132 " fill="white" points="191.787,36.7476 192.621,32.7274 175.535,31.5014 174.701,35.5216 " />
<svg:polygon detid="344006156" count="0" value="0" id="1506007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 30 plaquette  3 left  Id 344006156 " fill="white" points="163.214,35.5856 162.251,31.5754 145.207,32.9924 146.171,37.0026 " />
<svg:polygon detid="344007180" count="0" value="0" id="1506008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 34 plaquette  3 left  Id 344007180 " fill="white" points="135.103,38.8137 132.408,35.0869 116.569,39.0503 119.265,42.7771 " />
<svg:polygon detid="344008204" count="0" value="0" id="1506009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 38 plaquette  3 left  Id 344008204 " fill="white" points="109.371,46.2113 105.128,43.0218 91.5727,49.2617 95.8158,52.4512 " />
<svg:polygon detid="344009228" count="0" value="0" id="1506010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 42 plaquette  3 left  Id 344009228 " fill="white" points="87.7705,57.2748 82.2686,54.84 71.9207,62.931 77.4226,65.3658 " />
<svg:polygon detid="344010252" count="0" value="0" id="1506011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 46 plaquette  3 left  Id 344010252 " fill="white" points="71.7738,71.2498 65.3881,69.7356 58.9528,79.1263 65.3385,80.6405 " />
<svg:polygon detid="344011276" count="0" value="0" id="1506012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 50 plaquette  3 left  Id 344011276 " fill="white" points="62.4709,87.1841 55.6366,86.6936 53.5524,96.7441 60.3867,97.2346 " />
<svg:polygon detid="344012300" count="0" value="0" id="1506013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 54 plaquette  3 left  Id 344012300 " fill="white" points="60.4955,103.992 53.6782,104.559 56.0871,114.584 62.9044,114.017 " />
<svg:polygon detid="344013324" count="0" value="0" id="1506014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 58 plaquette  3 left  Id 344013324 " fill="white" points="65.9832,120.527 59.6477,122.113 66.3856,131.43 72.7211,129.844 " />
<svg:polygon detid="344014348" count="0" value="0" id="1506015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 62 plaquette  3 left  Id 344014348 " fill="white" points="78.5592,135.664 73.1371,138.16 83.7449,146.134 89.167,143.638 " />
<svg:polygon detid="344015372" count="0" value="0" id="1506016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 2 plaquette  3 right  Id 344015372 " fill="white" points="97.3672,148.37 93.228,151.607 106.983,157.694 111.122,154.457 " />
<svg:polygon detid="344016396" count="0" value="0" id="1506017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 6 plaquette  3 right  Id 344016396 " fill="white" points="121.125,157.78 118.551,161.536 134.515,165.322 137.089,161.566 " />
<svg:polygon detid="344017420" count="0" value="0" id="1506018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 10 plaquette  3 right  Id 344017420 " fill="white" points="148.213,163.252 147.379,167.273 164.465,168.499 165.299,164.478 " />
<svg:polygon detid="344018444" count="0" value="0" id="1506019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 14 plaquette  3 right  Id 344018444 " fill="white" points="176.786,164.414 177.749,168.425 194.793,167.008 193.829,162.997 " />
<svg:polygon detid="344019468" count="0" value="0" id="1506020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 18 plaquette  3 right  Id 344019468 " fill="white" points="204.897,161.186 207.592,164.913 223.431,160.95 220.735,157.223 " />
<svg:polygon detid="344020492" count="0" value="0" id="1506021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 22 plaquette  3 right  Id 344020492 " fill="white" points="230.629,153.789 234.872,156.978 248.427,150.738 244.184,147.549 " />
<svg:polygon detid="344021516" count="0" value="0" id="1506022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 26 plaquette  3 right  Id 344021516 " fill="white" points="252.23,142.725 257.731,145.16 268.079,137.069 262.577,134.634 " />
<svg:polygon detid="344022540" count="0" value="0" id="1506023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 30 plaquette  3 right  Id 344022540 " fill="white" points="268.226,128.75 274.612,130.264 281.047,120.874 274.662,119.359 " />
<svg:polygon detid="344023564" count="0" value="0" id="1506024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 6 blade 34 plaquette  3 right  Id 344023564 " fill="white" points="277.529,112.816 284.363,113.306 286.448,103.256 279.613,102.765 " />
<svg:polygon detid="343999760" count="0" value="0" id="1507001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 5 plaquette  4 left  Id 343999760 " fill="white" points="287.882,96.6046 291.299,96.3583 289.205,86.3084 285.788,86.5547 " />
<svg:polygon detid="344000784" count="0" value="0" id="1507002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 9 plaquette  4 left  Id 344000784 " fill="white" points="282.371,78.7732 285.563,78.0151 279.119,68.6264 275.927,69.3845 " />
<svg:polygon detid="344001808" count="0" value="0" id="1507003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 13 plaquette  4 left  Id 344001808 " fill="white" points="269.202,62.3884 271.952,61.1702 261.597,53.0824 258.847,54.3006 " />
<svg:polygon detid="344002832" count="0" value="0" id="1507004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 17 plaquette  4 left  Id 344002832 " fill="white" points="249.273,48.567 251.393,46.9716 237.833,40.736 235.712,42.3314 " />
<svg:polygon detid="344003856" count="0" value="0" id="1507005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 21 plaquette  4 left  Id 344003856 " fill="white" points="223.942,38.2502 225.288,36.3864 209.445,32.4278 208.099,34.2916 " />
<svg:polygon detid="344004880" count="0" value="0" id="1507006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 25 plaquette  4 left  Id 344004880 " fill="white" points="194.934,32.142 195.414,30.1368 178.37,28.725 177.89,30.7302 " />
<svg:polygon detid="344005904" count="0" value="0" id="1507007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 29 plaquette  4 left  Id 344005904 " fill="white" points="164.228,30.6578 163.809,28.6479 146.724,29.8792 147.143,31.8891 " />
<svg:polygon detid="344006928" count="0" value="0" id="1507008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 33 plaquette  4 left  Id 344006928 " fill="white" points="133.914,33.8996 132.626,32.0219 116.665,35.8124 117.954,37.6901 " />
<svg:polygon detid="344007952" count="0" value="0" id="1507009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 37 plaquette  4 left  Id 344007952 " fill="white" points="106.06,41.6456 103.989,40.0281 90.2401,46.1194 92.3111,47.7369 " />
<svg:polygon detid="344008976" count="0" value="0" id="1507010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 41 plaquette  4 left  Id 344008976 " fill="white" points="82.564,53.3687 79.8518,52.1215 69.2511,60.0985 71.9633,61.3457 " />
<svg:polygon detid="344010000" count="0" value="0" id="1507011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 45 plaquette  4 left  Id 344010000 " fill="white" points="65.0253,68.2695 61.8568,67.4778 55.1273,76.7969 58.2957,77.5886 " />
<svg:polygon detid="344011024" count="0" value="0" id="1507012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 49 plaquette  4 left  Id 344011024 " fill="white" points="54.6414,85.3327 51.2325,85.0503 48.8325,95.0764 52.2414,95.3588 " />
<svg:polygon detid="344012048" count="0" value="0" id="1507013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 53 plaquette  4 left  Id 344012048 " fill="white" points="52.1183,103.395 48.7014,103.642 50.7946,113.692 54.2115,113.445 " />
<svg:polygon detid="344013072" count="0" value="0" id="1507014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 57 plaquette  4 left  Id 344013072 " fill="white" points="57.6294,121.227 54.4372,121.985 60.881,131.374 64.0732,130.616 " />
<svg:polygon detid="344014096" count="0" value="0" id="1507015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 61 plaquette  4 left  Id 344014096 " fill="white" points="70.7976,137.612 68.0478,138.83 78.4029,146.918 81.1527,145.699 " />
<svg:polygon detid="344015120" count="0" value="0" id="1507016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 1 plaquette  4 right  Id 344015120 " fill="white" points="90.7268,151.433 88.6066,153.028 102.167,159.264 104.288,157.669 " />
<svg:polygon detid="344016144" count="0" value="0" id="1507017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 5 plaquette  4 right  Id 344016144 " fill="white" points="116.058,161.75 114.712,163.614 130.555,167.572 131.901,165.708 " />
<svg:polygon detid="344017168" count="0" value="0" id="1507018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 9 plaquette  4 right  Id 344017168 " fill="white" points="145.066,167.858 144.586,169.863 161.63,171.275 162.11,169.27 " />
<svg:polygon detid="344018192" count="0" value="0" id="1507019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 13 plaquette  4 right  Id 344018192 " fill="white" points="175.772,169.342 176.191,171.352 193.276,170.121 192.857,168.111 " />
<svg:polygon detid="344019216" count="0" value="0" id="1507020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 17 plaquette  4 right  Id 344019216 " fill="white" points="206.086,166.1 207.374,167.978 223.335,164.188 222.046,162.31 " />
<svg:polygon detid="344020240" count="0" value="0" id="1507021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 21 plaquette  4 right  Id 344020240 " fill="white" points="233.94,158.354 236.011,159.972 249.76,153.881 247.689,152.263 " />
<svg:polygon detid="344021264" count="0" value="0" id="1507022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 25 plaquette  4 right  Id 344021264 " fill="white" points="257.436,146.631 260.148,147.878 270.749,139.901 268.037,138.654 " />
<svg:polygon detid="344022288" count="0" value="0" id="1507023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 29 plaquette  4 right  Id 344022288 " fill="white" points="274.975,131.73 278.143,132.522 284.873,123.203 281.704,122.411 " />
<svg:polygon detid="344023312" count="0" value="0" id="1507024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX -z disc 1 ring 7 blade 33 plaquette  4 right  Id 344023312 " fill="white" points="285.359,114.667 288.768,114.95 291.167,104.924 287.759,104.641 " />
<svg:polygon detid="352388356" count="0" value="0" id="1601001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 5 plaquette  1 left  Id 352388356 " fill="white" points="1241.31,98.6848 1244.73,98.4612 1243.97,94.436 1240.55,94.6596 " />
<svg:polygon detid="352389380" count="0" value="0" id="1601002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 9 plaquette  1 left  Id 352389380 " fill="white" points="1238.98,90.9183 1242.19,90.1814 1239.68,86.4091 1236.47,87.146 " />
<svg:polygon detid="352390404" count="0" value="0" id="1601003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 13 plaquette  1 left  Id 352390404 " fill="white" points="1233.32,83.7707 1236.09,82.5707 1232.01,79.3083 1229.24,80.5083 " />
<svg:polygon detid="352391428" count="0" value="0" id="1601004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 17 plaquette  1 left  Id 352391428 " fill="white" points="1224.7,77.7291 1226.85,76.1478 1221.47,73.6177 1219.32,75.199 " />
<svg:polygon detid="352392452" count="0" value="0" id="1601005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 21 plaquette  1 left  Id 352392452 " fill="white" points="1213.72,73.2052 1215.1,71.3504 1208.79,69.725 1207.41,71.5798 " />
<svg:polygon detid="352393476" count="0" value="0" id="1601006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 25 plaquette  1 left  Id 352393476 " fill="white" points="1201.12,70.5073 1201.64,68.5054 1194.83,67.8955 1194.31,69.8974 " />
<svg:polygon detid="352394500" count="0" value="0" id="1601007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 29 plaquette  1 left  Id 352394500 " fill="white" points="1187.76,69.8193 1187.38,67.8067 1180.54,68.2538 1180.92,70.2664 " />
<svg:polygon detid="352395524" count="0" value="0" id="1601008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 33 plaquette  1 left  Id 352395524 " fill="white" points="1174.56,71.1881 1173.31,69.3019 1166.9,70.7756 1168.15,72.6618 " />
<svg:polygon detid="352396548" count="0" value="0" id="1601009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 37 plaquette  1 left  Id 352396548 " fill="white" points="1162.41,74.5203 1160.37,72.8891 1154.82,75.289 1156.86,76.9202 " />
<svg:polygon detid="352397572" count="0" value="0" id="1601010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 41 plaquette  1 left  Id 352397572 " fill="white" points="1152.14,79.589 1149.45,78.3239 1145.15,81.4864 1147.84,82.7515 " />
<svg:polygon detid="352398596" count="0" value="0" id="1601011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 45 plaquette  1 left  Id 352398596 " fill="white" points="1144.45,86.0486 1141.3,85.2359 1138.53,88.9455 1141.69,89.7582 " />
<svg:polygon detid="352399620" count="0" value="0" id="1601012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 49 plaquette  1 left  Id 352399620 " fill="white" points="1139.86,93.459 1136.46,93.1541 1135.42,97.1579 1138.83,97.4629 " />
<svg:polygon detid="352400644" count="0" value="0" id="1601013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 53 plaquette  1 left  Id 352400644 " fill="white" points="1138.69,101.315 1135.27,101.539 1136.03,105.564 1139.45,105.34 " />
<svg:polygon detid="352401668" count="0" value="0" id="1601014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 57 plaquette  1 left  Id 352401668 " fill="white" points="1141.02,109.082 1137.81,109.819 1140.32,113.591 1143.53,112.854 " />
<svg:polygon detid="352402692" count="0" value="0" id="1601015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 61 plaquette  1 left  Id 352402692 " fill="white" points="1146.68,116.229 1143.91,117.429 1147.99,120.692 1150.76,119.492 " />
<svg:polygon detid="352403716" count="0" value="0" id="1601016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 1 plaquette  1 right  Id 352403716 " fill="white" points="1155.3,122.271 1153.15,123.852 1158.53,126.382 1160.68,124.801 " />
<svg:polygon detid="352404740" count="0" value="0" id="1601017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 5 plaquette  1 right  Id 352404740 " fill="white" points="1166.28,126.795 1164.9,128.65 1171.21,130.275 1172.59,128.42 " />
<svg:polygon detid="352405764" count="0" value="0" id="1601018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 9 plaquette  1 right  Id 352405764 " fill="white" points="1178.88,129.493 1178.36,131.495 1185.17,132.105 1185.69,130.103 " />
<svg:polygon detid="352406788" count="0" value="0" id="1601019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 13 plaquette  1 right  Id 352406788 " fill="white" points="1192.24,130.181 1192.62,132.193 1199.46,131.746 1199.08,129.734 " />
<svg:polygon detid="352407812" count="0" value="0" id="1601020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 17 plaquette  1 right  Id 352407812 " fill="white" points="1205.44,128.812 1206.69,130.698 1213.1,129.224 1211.85,127.338 " />
<svg:polygon detid="352408836" count="0" value="0" id="1601021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 21 plaquette  1 right  Id 352408836 " fill="white" points="1217.59,125.48 1219.63,127.111 1225.18,124.711 1223.14,123.08 " />
<svg:polygon detid="352409860" count="0" value="0" id="1601022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 25 plaquette  1 right  Id 352409860 " fill="white" points="1227.86,120.411 1230.55,121.676 1234.85,118.514 1232.16,117.249 " />
<svg:polygon detid="352410884" count="0" value="0" id="1601023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 29 plaquette  1 right  Id 352410884 " fill="white" points="1235.55,113.951 1238.7,114.764 1241.47,111.055 1238.31,110.242 " />
<svg:polygon detid="352411908" count="0" value="0" id="1601024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 1 blade 33 plaquette  1 right  Id 352411908 " fill="white" points="1240.14,106.541 1243.54,106.846 1244.58,102.842 1241.17,102.537 " />
<svg:polygon detid="352388612" count="0" value="0" id="1602001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 6 plaquette  1 left  Id 352388612 " fill="white" points="1249.66,97.8409 1256.47,97.2439 1254.95,91.2352 1248.14,91.8322 " />
<svg:polygon detid="352389636" count="0" value="0" id="1602002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 10 plaquette  1 left  Id 352389636 " fill="white" points="1246.68,88.831 1252.99,87.2176 1248.88,81.6455 1242.57,83.2589 " />
<svg:polygon detid="352390660" count="0" value="0" id="1602003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 14 plaquette  1 left  Id 352390660 " fill="white" points="1239.83,80.5824 1245.22,78.0625 1238.8,73.3066 1233.41,75.8265 " />
<svg:polygon detid="352391684" count="0" value="0" id="1602004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 18 plaquette  1 left  Id 352391684 " fill="white" points="1229.59,73.657 1233.69,70.4024 1225.39,66.7868 1221.29,70.0414 " />
<svg:polygon detid="352392708" count="0" value="0" id="1602005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 22 plaquette  1 left  Id 352392708 " fill="white" points="1216.65,68.5269 1219.18,64.7593 1209.57,62.5304 1207.05,66.298 " />
<svg:polygon detid="352393732" count="0" value="0" id="1602006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 26 plaquette  1 left  Id 352393732 " fill="white" points="1201.9,65.5415 1202.68,61.5178 1192.42,60.8276 1191.64,64.8513 " />
<svg:polygon detid="352394756" count="0" value="0" id="1602007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 30 plaquette  1 left  Id 352394756 " fill="white" points="1186.33,64.9046 1185.31,60.8988 1175.1,61.7942 1176.11,65.8 " />
<svg:polygon detid="352395780" count="0" value="0" id="1602008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 34 plaquette  1 left  Id 352395780 " fill="white" points="1171.01,66.6592 1168.27,62.9445 1158.8,65.3646 1161.54,69.0793 " />
<svg:polygon detid="352396804" count="0" value="0" id="1602009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 38 plaquette  1 left  Id 352396804 " fill="white" points="1156.99,70.686 1152.71,67.5154 1144.62,71.2952 1148.91,74.4658 " />
<svg:polygon detid="352397828" count="0" value="0" id="1602010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 42 plaquette  1 left  Id 352397828 " fill="white" points="1145.22,76.7105 1139.68,74.3001 1133.54,79.1821 1139.07,81.5925 " />
<svg:polygon detid="352398852" count="0" value="0" id="1602011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 46 plaquette  1 left  Id 352398852 " fill="white" points="1136.5,84.3222 1130.09,82.8363 1126.3,88.4876 1132.71,89.9735 " />
<svg:polygon detid="352399876" count="0" value="0" id="1602012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 50 plaquette  1 left  Id 352399876 " fill="white" points="1131.42,93.0022 1124.58,92.5421 1123.41,98.5777 1130.25,99.0379 " />
<svg:polygon detid="352400900" count="0" value="0" id="1602013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 54 plaquette  1 left  Id 352400900 " fill="white" points="1130.34,102.159 1123.53,102.756 1125.05,108.765 1131.86,108.168 " />
<svg:polygon detid="352401924" count="0" value="0" id="1602014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 58 plaquette  1 left  Id 352401924 " fill="white" points="1133.32,111.169 1127.01,112.782 1131.12,118.355 1137.43,116.741 " />
<svg:polygon detid="352402948" count="0" value="0" id="1602015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 62 plaquette  1 left  Id 352402948 " fill="white" points="1140.17,119.418 1134.78,121.937 1141.2,126.693 1146.59,124.174 " />
<svg:polygon detid="352403972" count="0" value="0" id="1602016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 2 plaquette  1 right  Id 352403972 " fill="white" points="1150.41,126.343 1146.31,129.598 1154.61,133.213 1158.71,129.959 " />
<svg:polygon detid="352404996" count="0" value="0" id="1602017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 6 plaquette  1 right  Id 352404996 " fill="white" points="1163.35,131.473 1160.82,135.241 1170.43,137.47 1172.95,133.702 " />
<svg:polygon detid="352406020" count="0" value="0" id="1602018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 10 plaquette  1 right  Id 352406020 " fill="white" points="1178.1,134.458 1177.32,138.482 1187.58,139.172 1188.36,135.149 " />
<svg:polygon detid="352407044" count="0" value="0" id="1602019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 14 plaquette  1 right  Id 352407044 " fill="white" points="1193.67,135.095 1194.69,139.101 1204.9,138.206 1203.89,134.2 " />
<svg:polygon detid="352408068" count="0" value="0" id="1602020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 18 plaquette  1 right  Id 352408068 " fill="white" points="1208.99,133.341 1211.73,137.056 1221.2,134.635 1218.46,130.921 " />
<svg:polygon detid="352409092" count="0" value="0" id="1602021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 22 plaquette  1 right  Id 352409092 " fill="white" points="1223.01,129.314 1227.29,132.485 1235.38,128.705 1231.09,125.534 " />
<svg:polygon detid="352410116" count="0" value="0" id="1602022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 26 plaquette  1 right  Id 352410116 " fill="white" points="1234.78,123.289 1240.32,125.7 1246.46,120.818 1240.93,118.408 " />
<svg:polygon detid="352411140" count="0" value="0" id="1602023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 30 plaquette  1 right  Id 352411140 " fill="white" points="1243.5,115.678 1249.91,117.164 1253.7,111.512 1247.29,110.026 " />
<svg:polygon detid="352412164" count="0" value="0" id="1602024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 2 blade 34 plaquette  1 right  Id 352412164 " fill="white" points="1248.58,106.998 1255.42,107.458 1256.59,101.422 1249.75,100.962 " />
<svg:polygon detid="352388360" count="0" value="0" id="1603001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 5 plaquette  2 left  Id 352388360 " fill="white" points="1260.66,98.1986 1267.5,97.7282 1266.3,91.6943 1259.46,92.1647 " />
<svg:polygon detid="352389384" count="0" value="0" id="1603002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 9 plaquette  2 left  Id 352389384 " fill="white" points="1257.46,87.5024 1263.86,86.0069 1260.04,80.3612 1253.65,81.8567 " />
<svg:polygon detid="352390408" count="0" value="0" id="1603003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 13 plaquette  2 left  Id 352390408 " fill="white" points="1249.66,77.6578 1255.18,75.2392 1249.02,70.3665 1243.49,72.7851 " />
<svg:polygon detid="352391432" count="0" value="0" id="1603004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 17 plaquette  2 left  Id 352391432 " fill="white" points="1237.8,69.3359 1242.07,66.1589 1233.97,62.3912 1229.7,65.5682 " />
<svg:polygon detid="352392456" count="0" value="0" id="1603005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 21 plaquette  2 left  Id 352392456 " fill="white" points="1222.68,63.1037 1225.4,59.3849 1215.92,56.9789 1213.19,60.6977 " />
<svg:polygon detid="352393480" count="0" value="0" id="1603006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 25 plaquette  2 left  Id 352393480 " fill="white" points="1205.33,59.3859 1206.33,55.3786 1196.11,54.4984 1195.11,58.5057 " />
<svg:polygon detid="352394504" count="0" value="0" id="1603007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 29 plaquette  2 left  Id 352394504 " fill="white" points="1186.94,58.4359 1186.14,54.4133 1175.88,55.1188 1176.68,59.1414 " />
<svg:polygon detid="352395528" count="0" value="0" id="1603008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 33 plaquette  2 left  Id 352395528 " fill="white" points="1168.75,60.3184 1166.21,56.5546 1156.61,58.7978 1159.16,62.5616 " />
<svg:polygon detid="352396552" count="0" value="0" id="1603009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 37 plaquette  2 left  Id 352396552 " fill="white" points="1152.02,64.9052 1147.91,61.6566 1139.62,65.2845 1143.73,68.5331 " />
<svg:polygon detid="352397576" count="0" value="0" id="1603010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 41 plaquette  2 left  Id 352397576 " fill="white" points="1137.87,71.8835 1132.47,69.3717 1126.07,74.1372 1131.47,76.649 " />
<svg:polygon detid="352398600" count="0" value="0" id="1603011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 45 plaquette  2 left  Id 352398600 " fill="white" points="1127.28,80.7781 1120.95,79.1741 1116.86,84.7523 1123.19,86.3563 " />
<svg:polygon detid="352399624" count="0" value="0" id="1603012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 49 plaquette  2 left  Id 352399624 " fill="white" points="1120.96,90.9825 1114.14,90.3956 1112.65,96.4065 1119.46,96.9934 " />
<svg:polygon detid="352400648" count="0" value="0" id="1603013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 53 plaquette  2 left  Id 352400648 " fill="white" points="1119.34,101.801 1112.5,102.272 1113.7,108.306 1120.54,107.835 " />
<svg:polygon detid="352401672" count="0" value="0" id="1603014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 57 plaquette  2 left  Id 352401672 " fill="white" points="1122.54,112.498 1116.14,113.993 1119.96,119.639 1126.35,118.143 " />
<svg:polygon detid="352402696" count="0" value="0" id="1603015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 61 plaquette  2 left  Id 352402696 " fill="white" points="1130.34,122.342 1124.82,124.761 1130.98,129.634 1136.51,127.215 " />
<svg:polygon detid="352403720" count="0" value="0" id="1603016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 1 plaquette  2 right  Id 352403720 " fill="white" points="1142.2,130.664 1137.93,133.841 1146.03,137.609 1150.3,134.432 " />
<svg:polygon detid="352404744" count="0" value="0" id="1603017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 5 plaquette  2 right  Id 352404744 " fill="white" points="1157.32,136.896 1154.6,140.615 1164.08,143.021 1166.81,139.302 " />
<svg:polygon detid="352405768" count="0" value="0" id="1603018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 9 plaquette  2 right  Id 352405768 " fill="white" points="1174.67,140.614 1173.67,144.621 1183.89,145.502 1184.89,141.494 " />
<svg:polygon detid="352406792" count="0" value="0" id="1603019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 13 plaquette  2 right  Id 352406792 " fill="white" points="1193.06,141.564 1193.86,145.587 1204.12,144.881 1203.32,140.859 " />
<svg:polygon detid="352407816" count="0" value="0" id="1603020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 17 plaquette  2 right  Id 352407816 " fill="white" points="1211.25,139.682 1213.79,143.445 1223.39,141.202 1220.84,137.438 " />
<svg:polygon detid="352408840" count="0" value="0" id="1603021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 21 plaquette  2 right  Id 352408840 " fill="white" points="1227.98,135.095 1232.09,138.343 1240.38,134.715 1236.27,131.467 " />
<svg:polygon detid="352409864" count="0" value="0" id="1603022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 25 plaquette  2 right  Id 352409864 " fill="white" points="1242.13,128.116 1247.53,130.628 1253.93,125.863 1248.53,123.351 " />
<svg:polygon detid="352410888" count="0" value="0" id="1603023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 29 plaquette  2 right  Id 352410888 " fill="white" points="1252.72,119.222 1259.05,120.826 1263.14,115.248 1256.81,113.644 " />
<svg:polygon detid="352411912" count="0" value="0" id="1603024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 3 blade 33 plaquette  2 right  Id 352411912 " fill="white" points="1259.04,109.018 1265.86,109.604 1267.35,103.593 1260.54,103.007 " />
<svg:polygon detid="352388616" count="0" value="0" id="1604001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 6 plaquette  2 left  Id 352388616 " fill="white" points="1274.58,96.9227 1281.39,96.3451 1279.43,88.3279 1272.62,88.9055 " />
<svg:polygon detid="352389640" count="0" value="0" id="1604002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 10 plaquette  2 left  Id 352389640 " fill="white" points="1270.34,84.1507 1276.67,82.5552 1271.25,75.1102 1264.92,76.7057 " />
<svg:polygon detid="352390664" count="0" value="0" id="1604003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 14 plaquette  2 left  Id 352390664 " fill="white" points="1260.63,72.4587 1266.04,69.9542 1257.53,63.5887 1252.12,66.0932 " />
<svg:polygon detid="352391688" count="0" value="0" id="1604004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 18 plaquette  2 left  Id 352391688 " fill="white" points="1246.11,62.6436 1250.23,59.4007 1239.21,54.5486 1235.08,57.7915 " />
<svg:polygon detid="352392712" count="0" value="0" id="1604005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 22 plaquette  2 left  Id 352392712 " fill="white" points="1227.76,55.3743 1230.32,51.614 1217.53,48.6059 1214.97,52.3662 " />
<svg:polygon detid="352393736" count="0" value="0" id="1604006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 26 plaquette  2 left  Id 352393736 " fill="white" points="1206.84,51.1463 1207.65,47.1248 1193.98,46.1657 1193.16,50.1872 " />
<svg:polygon detid="352394760" count="0" value="0" id="1604007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 30 plaquette  2 left  Id 352394760 " fill="white" points="1184.77,50.2472 1183.79,46.2386 1170.16,47.3938 1171.14,51.4024 " />
<svg:polygon detid="352395784" count="0" value="0" id="1604008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 34 plaquette  2 left  Id 352395784 " fill="white" points="1163.06,52.7392 1160.34,49.0167 1147.69,52.2075 1150.4,55.93 " />
<svg:polygon detid="352396808" count="0" value="0" id="1604009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 38 plaquette  2 left  Id 352396808 " fill="white" points="1143.18,58.4516 1138.92,55.2689 1128.1,60.278 1132.36,63.4607 " />
<svg:polygon detid="352397832" count="0" value="0" id="1604010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 42 plaquette  2 left  Id 352397832 " fill="white" points="1126.49,66.9956 1120.98,64.5695 1112.73,71.0554 1118.25,73.4815 " />
<svg:polygon detid="352398856" count="0" value="0" id="1604011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 46 plaquette  2 left  Id 352398856 " fill="white" points="1114.14,77.7887 1107.74,76.2847 1102.63,83.8054 1109.02,85.3094 " />
<svg:polygon detid="352399880" count="0" value="0" id="1604012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 50 plaquette  2 left  Id 352399880 " fill="white" points="1106.95,90.0955 1100.11,89.616 1098.48,97.659 1105.32,98.1385 " />
<svg:polygon detid="352400904" count="0" value="0" id="1604013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 54 plaquette  2 left  Id 352400904 " fill="white" points="1105.42,103.077 1098.61,103.655 1100.57,111.672 1107.38,111.094 " />
<svg:polygon detid="352401928" count="0" value="0" id="1604014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 58 plaquette  2 left  Id 352401928 " fill="white" points="1109.66,115.849 1103.33,117.445 1108.75,124.89 1115.08,123.294 " />
<svg:polygon detid="352402952" count="0" value="0" id="1604015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 62 plaquette  2 left  Id 352402952 " fill="white" points="1119.37,127.541 1113.96,130.046 1122.47,136.411 1127.88,133.907 " />
<svg:polygon detid="352403976" count="0" value="0" id="1604016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 2 plaquette  2 right  Id 352403976 " fill="white" points="1133.89,137.356 1129.77,140.599 1140.79,145.451 1144.92,142.208 " />
<svg:polygon detid="352405000" count="0" value="0" id="1604017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 6 plaquette  2 right  Id 352405000 " fill="white" points="1152.24,144.626 1149.68,148.386 1162.47,151.394 1165.03,147.634 " />
<svg:polygon detid="352406024" count="0" value="0" id="1604018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 10 plaquette  2 right  Id 352406024 " fill="white" points="1173.16,148.854 1172.35,152.875 1186.02,153.834 1186.84,149.813 " />
<svg:polygon detid="352407048" count="0" value="0" id="1604019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 14 plaquette  2 right  Id 352407048 " fill="white" points="1195.23,149.753 1196.21,153.761 1209.84,152.606 1208.86,148.598 " />
<svg:polygon detid="352408072" count="0" value="0" id="1604020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 18 plaquette  2 right  Id 352408072 " fill="white" points="1216.94,147.261 1219.66,150.983 1232.31,147.792 1229.6,144.07 " />
<svg:polygon detid="352409096" count="0" value="0" id="1604021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 22 plaquette  2 right  Id 352409096 " fill="white" points="1236.82,141.548 1241.08,144.731 1251.9,139.722 1247.64,136.539 " />
<svg:polygon detid="352410120" count="0" value="0" id="1604022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 26 plaquette  2 right  Id 352410120 " fill="white" points="1253.51,133.004 1259.02,135.43 1267.27,128.945 1261.75,126.519 " />
<svg:polygon detid="352411144" count="0" value="0" id="1604023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 30 plaquette  2 right  Id 352411144 " fill="white" points="1265.86,122.211 1272.26,123.715 1277.37,116.195 1270.98,114.691 " />
<svg:polygon detid="352412168" count="0" value="0" id="1604024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 4 blade 34 plaquette  2 right  Id 352412168 " fill="white" points="1273.05,109.904 1279.89,110.384 1281.52,102.341 1274.68,101.861 " />
<svg:polygon detid="352388364" count="0" value="0" id="1605001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 5 plaquette  3 left  Id 352388364 " fill="white" points="1285.1,97.3345 1291.93,96.8497 1290.29,88.8079 1283.45,89.2927 " />
<svg:polygon detid="352389388" count="0" value="0" id="1605002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 9 plaquette  3 left  Id 352389388 " fill="white" points="1280.69,82.9467 1287.08,81.4377 1281.95,73.9209 1275.56,75.4299 " />
<svg:polygon detid="352390412" count="0" value="0" id="1605003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 13 plaquette  3 left  Id 352390412 " fill="white" points="1270.09,69.721 1275.6,67.2907 1267.34,60.8112 1261.83,63.2415 " />
<svg:polygon detid="352391436" count="0" value="0" id="1605004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 17 plaquette  3 left  Id 352391436 " fill="white" points="1254.04,58.5588 1258.29,55.3728 1247.46,50.3721 1243.21,53.5581 " />
<svg:polygon detid="352392460" count="0" value="0" id="1605005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 21 plaquette  3 left  Id 352392460 " fill="white" points="1233.63,50.2209 1236.33,46.4963 1223.67,43.3151 1220.96,47.0397 " />
<svg:polygon detid="352393484" count="0" value="0" id="1605006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 25 plaquette  3 left  Id 352393484 " fill="white" points="1210.24,45.2751 1211.21,41.2657 1197.58,40.1209 1196.6,44.1303 " />
<svg:polygon detid="352394508" count="0" value="0" id="1605007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 29 plaquette  3 left  Id 352394508 " fill="white" points="1185.47,44.0591 1184.64,40.0383 1170.97,41.0079 1171.8,45.0287 " />
<svg:polygon detid="352395532" count="0" value="0" id="1605008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 33 plaquette  3 left  Id 352395532 " fill="white" points="1161.01,46.6547 1158.44,42.8963 1145.67,45.9143 1148.23,49.6727 " />
<svg:polygon detid="352396556" count="0" value="0" id="1605009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 37 plaquette  3 left  Id 352396556 " fill="white" points="1138.53,52.8864 1134.39,49.6466 1123.38,54.5071 1127.51,57.7469 " />
<svg:polygon detid="352397580" count="0" value="0" id="1605010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 41 plaquette  3 left  Id 352397580 " fill="white" points="1119.55,62.3285 1114.13,59.8281 1105.63,66.2001 1111.05,68.7005 " />
<svg:polygon detid="352398604" count="0" value="0" id="1605011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 45 plaquette  3 left  Id 352398604 " fill="white" points="1105.38,74.3379 1099.04,72.7473 1093.64,80.1964 1099.97,81.787 " />
<svg:polygon detid="352399628" count="0" value="0" id="1605012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 49 plaquette  3 left  Id 352399628 " fill="white" points="1096.97,88.0961 1090.15,87.5237 1088.21,95.5424 1095.02,96.1148 " />
<svg:polygon detid="352400652" count="0" value="0" id="1605013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 53 plaquette  3 left  Id 352400652 " fill="white" points="1094.9,102.666 1088.07,103.15 1089.71,111.192 1096.55,110.707 " />
<svg:polygon detid="352401676" count="0" value="0" id="1605014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 57 plaquette  3 left  Id 352401676 " fill="white" points="1099.31,117.053 1092.92,118.562 1098.05,126.079 1104.44,124.57 " />
<svg:polygon detid="352402700" count="0" value="0" id="1605015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 61 plaquette  3 left  Id 352402700 " fill="white" points="1109.91,130.279 1104.4,132.709 1112.66,139.189 1118.17,136.759 " />
<svg:polygon detid="352403724" count="0" value="0" id="1605016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 1 plaquette  3 right  Id 352403724 " fill="white" points="1125.96,141.441 1121.71,144.627 1132.54,149.628 1136.79,146.442 " />
<svg:polygon detid="352404748" count="0" value="0" id="1605017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 5 plaquette  3 right  Id 352404748 " fill="white" points="1146.37,149.779 1143.67,153.504 1156.33,156.685 1159.04,152.96 " />
<svg:polygon detid="352405772" count="0" value="0" id="1605018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 9 plaquette  3 right  Id 352405772 " fill="white" points="1169.76,154.725 1168.79,158.734 1182.42,159.879 1183.4,155.87 " />
<svg:polygon detid="352406796" count="0" value="0" id="1605019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 13 plaquette  3 right  Id 352406796 " fill="white" points="1194.53,155.941 1195.36,159.962 1209.03,158.992 1208.2,154.971 " />
<svg:polygon detid="352407820" count="0" value="0" id="1605020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 17 plaquette  3 right  Id 352407820 " fill="white" points="1218.99,153.345 1221.56,157.104 1234.33,154.086 1231.77,150.327 " />
<svg:polygon detid="352408844" count="0" value="0" id="1605021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 21 plaquette  3 right  Id 352408844 " fill="white" points="1241.47,147.114 1245.61,150.353 1256.62,145.493 1252.49,142.253 " />
<svg:polygon detid="352409868" count="0" value="0" id="1605022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 25 plaquette  3 right  Id 352409868 " fill="white" points="1260.45,137.672 1265.87,140.172 1274.37,133.8 1268.95,131.3 " />
<svg:polygon detid="352410892" count="0" value="0" id="1605023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 29 plaquette  3 right  Id 352410892 " fill="white" points="1274.62,125.662 1280.96,127.253 1286.36,119.804 1280.03,118.213 " />
<svg:polygon detid="352411916" count="0" value="0" id="1605024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 5 blade 33 plaquette  3 right  Id 352411916 " fill="white" points="1283.03,111.904 1289.85,112.476 1291.79,104.458 1284.98,103.885 " />
<svg:polygon detid="352388620" count="0" value="0" id="1606001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 6 plaquette  3 left  Id 352388620 " fill="white" points="1299.5,96.0083 1306.32,95.4415 1303.91,85.4161 1297.1,85.9829 " />
<svg:polygon detid="352389644" count="0" value="0" id="1606002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 10 plaquette  3 left  Id 352389644 " fill="white" points="1294.02,79.4726 1300.35,77.8873 1293.61,68.5703 1287.28,70.1556 " />
<svg:polygon detid="352390668" count="0" value="0" id="1606003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 14 plaquette  3 left  Id 352390668 " fill="white" points="1281.44,64.3359 1286.86,61.84 1276.26,53.8663 1270.83,56.3622 " />
<svg:polygon detid="352391692" count="0" value="0" id="1606004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 18 plaquette  3 left  Id 352391692 " fill="white" points="1262.63,51.6297 1266.77,48.3933 1253.02,42.3063 1248.88,45.5427 " />
<svg:polygon detid="352392716" count="0" value="0" id="1606005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 22 plaquette  3 left  Id 352392716 " fill="white" points="1238.88,42.2199 1241.45,38.4636 1225.49,34.6781 1222.91,38.4344 " />
<svg:polygon detid="352393740" count="0" value="0" id="1606006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 26 plaquette  3 left  Id 352393740 " fill="white" points="1211.79,36.7476 1212.62,32.7274 1195.53,31.5014 1194.7,35.5216 " />
<svg:polygon detid="352394764" count="0" value="0" id="1606007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 30 plaquette  3 left  Id 352394764 " fill="white" points="1183.21,35.5856 1182.25,31.5754 1165.21,32.9924 1166.17,37.0026 " />
<svg:polygon detid="352395788" count="0" value="0" id="1606008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 34 plaquette  3 left  Id 352395788 " fill="white" points="1155.1,38.8137 1152.41,35.0869 1136.57,39.0503 1139.26,42.7771 " />
<svg:polygon detid="352396812" count="0" value="0" id="1606009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 38 plaquette  3 left  Id 352396812 " fill="white" points="1129.37,46.2113 1125.13,43.0218 1111.57,49.2617 1115.82,52.4512 " />
<svg:polygon detid="352397836" count="0" value="0" id="1606010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 42 plaquette  3 left  Id 352397836 " fill="white" points="1107.77,57.2748 1102.27,54.84 1091.92,62.931 1097.42,65.3658 " />
<svg:polygon detid="352398860" count="0" value="0" id="1606011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 46 plaquette  3 left  Id 352398860 " fill="white" points="1091.77,71.2498 1085.39,69.7356 1078.95,79.1263 1085.34,80.6405 " />
<svg:polygon detid="352399884" count="0" value="0" id="1606012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 50 plaquette  3 left  Id 352399884 " fill="white" points="1082.47,87.1841 1075.64,86.6936 1073.55,96.7441 1080.39,97.2346 " />
<svg:polygon detid="352400908" count="0" value="0" id="1606013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 54 plaquette  3 left  Id 352400908 " fill="white" points="1080.5,103.992 1073.68,104.559 1076.09,114.584 1082.9,114.017 " />
<svg:polygon detid="352401932" count="0" value="0" id="1606014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 58 plaquette  3 left  Id 352401932 " fill="white" points="1085.98,120.527 1079.65,122.113 1086.39,131.43 1092.72,129.844 " />
<svg:polygon detid="352402956" count="0" value="0" id="1606015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 62 plaquette  3 left  Id 352402956 " fill="white" points="1098.56,135.664 1093.14,138.16 1103.74,146.134 1109.17,143.638 " />
<svg:polygon detid="352403980" count="0" value="0" id="1606016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 2 plaquette  3 right  Id 352403980 " fill="white" points="1117.37,148.37 1113.23,151.607 1126.98,157.694 1131.12,154.457 " />
<svg:polygon detid="352405004" count="0" value="0" id="1606017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 6 plaquette  3 right  Id 352405004 " fill="white" points="1141.12,157.78 1138.55,161.536 1154.51,165.322 1157.09,161.566 " />
<svg:polygon detid="352406028" count="0" value="0" id="1606018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 10 plaquette  3 right  Id 352406028 " fill="white" points="1168.21,163.252 1167.38,167.273 1184.47,168.499 1185.3,164.478 " />
<svg:polygon detid="352407052" count="0" value="0" id="1606019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 14 plaquette  3 right  Id 352407052 " fill="white" points="1196.79,164.414 1197.75,168.425 1214.79,167.008 1213.83,162.997 " />
<svg:polygon detid="352408076" count="0" value="0" id="1606020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 18 plaquette  3 right  Id 352408076 " fill="white" points="1224.9,161.186 1227.59,164.913 1243.43,160.95 1240.74,157.223 " />
<svg:polygon detid="352409100" count="0" value="0" id="1606021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 22 plaquette  3 right  Id 352409100 " fill="white" points="1250.63,153.789 1254.87,156.978 1268.43,150.738 1264.18,147.549 " />
<svg:polygon detid="352410124" count="0" value="0" id="1606022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 26 plaquette  3 right  Id 352410124 " fill="white" points="1272.23,142.725 1277.73,145.16 1288.08,137.069 1282.58,134.634 " />
<svg:polygon detid="352411148" count="0" value="0" id="1606023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 30 plaquette  3 right  Id 352411148 " fill="white" points="1288.23,128.75 1294.61,130.264 1301.05,120.874 1294.66,119.359 " />
<svg:polygon detid="352412172" count="0" value="0" id="1606024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 6 blade 34 plaquette  3 right  Id 352412172 " fill="white" points="1297.53,112.816 1304.36,113.306 1306.45,103.256 1299.61,102.765 " />
<svg:polygon detid="352388368" count="0" value="0" id="1607001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 5 plaquette  4 left  Id 352388368 " fill="white" points="1307.88,96.6046 1311.3,96.3583 1309.21,86.3084 1305.79,86.5547 " />
<svg:polygon detid="352389392" count="0" value="0" id="1607002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 9 plaquette  4 left  Id 352389392 " fill="white" points="1302.37,78.7732 1305.56,78.0151 1299.12,68.6264 1295.93,69.3845 " />
<svg:polygon detid="352390416" count="0" value="0" id="1607003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 13 plaquette  4 left  Id 352390416 " fill="white" points="1289.2,62.3884 1291.95,61.1702 1281.6,53.0824 1278.85,54.3006 " />
<svg:polygon detid="352391440" count="0" value="0" id="1607004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 17 plaquette  4 left  Id 352391440 " fill="white" points="1269.27,48.567 1271.39,46.9716 1257.83,40.736 1255.71,42.3314 " />
<svg:polygon detid="352392464" count="0" value="0" id="1607005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 21 plaquette  4 left  Id 352392464 " fill="white" points="1243.94,38.2502 1245.29,36.3864 1229.45,32.4278 1228.1,34.2916 " />
<svg:polygon detid="352393488" count="0" value="0" id="1607006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 25 plaquette  4 left  Id 352393488 " fill="white" points="1214.93,32.142 1215.41,30.1368 1198.37,28.725 1197.89,30.7302 " />
<svg:polygon detid="352394512" count="0" value="0" id="1607007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 29 plaquette  4 left  Id 352394512 " fill="white" points="1184.23,30.6578 1183.81,28.6479 1166.72,29.8792 1167.14,31.8891 " />
<svg:polygon detid="352395536" count="0" value="0" id="1607008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 33 plaquette  4 left  Id 352395536 " fill="white" points="1153.91,33.8996 1152.63,32.0219 1136.66,35.8124 1137.95,37.6901 " />
<svg:polygon detid="352396560" count="0" value="0" id="1607009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 37 plaquette  4 left  Id 352396560 " fill="white" points="1126.06,41.6456 1123.99,40.0281 1110.24,46.1194 1112.31,47.7369 " />
<svg:polygon detid="352397584" count="0" value="0" id="1607010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 41 plaquette  4 left  Id 352397584 " fill="white" points="1102.56,53.3687 1099.85,52.1215 1089.25,60.0985 1091.96,61.3457 " />
<svg:polygon detid="352398608" count="0" value="0" id="1607011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 45 plaquette  4 left  Id 352398608 " fill="white" points="1085.03,68.2695 1081.86,67.4778 1075.13,76.7969 1078.3,77.5886 " />
<svg:polygon detid="352399632" count="0" value="0" id="1607012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 49 plaquette  4 left  Id 352399632 " fill="white" points="1074.64,85.3327 1071.23,85.0503 1068.83,95.0764 1072.24,95.3588 " />
<svg:polygon detid="352400656" count="0" value="0" id="1607013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 53 plaquette  4 left  Id 352400656 " fill="white" points="1072.12,103.395 1068.7,103.642 1070.79,113.692 1074.21,113.445 " />
<svg:polygon detid="352401680" count="0" value="0" id="1607014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 57 plaquette  4 left  Id 352401680 " fill="white" points="1077.63,121.227 1074.44,121.985 1080.88,131.374 1084.07,130.616 " />
<svg:polygon detid="352402704" count="0" value="0" id="1607015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 61 plaquette  4 left  Id 352402704 " fill="white" points="1090.8,137.612 1088.05,138.83 1098.4,146.918 1101.15,145.699 " />
<svg:polygon detid="352403728" count="0" value="0" id="1607016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 1 plaquette  4 right  Id 352403728 " fill="white" points="1110.73,151.433 1108.61,153.028 1122.17,159.264 1124.29,157.669 " />
<svg:polygon detid="352404752" count="0" value="0" id="1607017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 5 plaquette  4 right  Id 352404752 " fill="white" points="1136.06,161.75 1134.71,163.614 1150.55,167.572 1151.9,165.708 " />
<svg:polygon detid="352405776" count="0" value="0" id="1607018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 9 plaquette  4 right  Id 352405776 " fill="white" points="1165.07,167.858 1164.59,169.863 1181.63,171.275 1182.11,169.27 " />
<svg:polygon detid="352406800" count="0" value="0" id="1607019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 13 plaquette  4 right  Id 352406800 " fill="white" points="1195.77,169.342 1196.19,171.352 1213.28,170.121 1212.86,168.111 " />
<svg:polygon detid="352407824" count="0" value="0" id="1607020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 17 plaquette  4 right  Id 352407824 " fill="white" points="1226.09,166.1 1227.37,167.978 1243.34,164.188 1242.05,162.31 " />
<svg:polygon detid="352408848" count="0" value="0" id="1607021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 21 plaquette  4 right  Id 352408848 " fill="white" points="1253.94,158.354 1256.01,159.972 1269.76,153.881 1267.69,152.263 " />
<svg:polygon detid="352409872" count="0" value="0" id="1607022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 25 plaquette  4 right  Id 352409872 " fill="white" points="1277.44,146.631 1280.15,147.878 1290.75,139.901 1288.04,138.654 " />
<svg:polygon detid="352410896" count="0" value="0" id="1607023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 29 plaquette  4 right  Id 352410896 " fill="white" points="1294.97,131.73 1298.14,132.522 1304.87,123.203 1301.7,122.411 " />
<svg:polygon detid="352411920" count="0" value="0" id="1607024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 1 ring 7 blade 33 plaquette  4 right  Id 352411920 " fill="white" points="1305.36,114.667 1308.77,114.95 1311.17,104.924 1307.76,104.641 " />
<svg:polygon detid="352453892" count="0" value="0" id="1701001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 5 plaquette  1 left  Id 352453892 " fill="white" points="1241.31,298.685 1244.73,298.461 1243.97,294.436 1240.55,294.66 " />
<svg:polygon detid="352454916" count="0" value="0" id="1701002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 9 plaquette  1 left  Id 352454916 " fill="white" points="1238.98,290.918 1242.19,290.181 1239.68,286.409 1236.47,287.146 " />
<svg:polygon detid="352455940" count="0" value="0" id="1701003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 13 plaquette  1 left  Id 352455940 " fill="white" points="1233.32,283.771 1236.09,282.571 1232.01,279.308 1229.24,280.508 " />
<svg:polygon detid="352456964" count="0" value="0" id="1701004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 17 plaquette  1 left  Id 352456964 " fill="white" points="1224.7,277.729 1226.85,276.148 1221.47,273.618 1219.32,275.199 " />
<svg:polygon detid="352457988" count="0" value="0" id="1701005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 21 plaquette  1 left  Id 352457988 " fill="white" points="1213.72,273.205 1215.1,271.35 1208.79,269.725 1207.41,271.58 " />
<svg:polygon detid="352459012" count="0" value="0" id="1701006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 25 plaquette  1 left  Id 352459012 " fill="white" points="1201.12,270.507 1201.64,268.505 1194.83,267.895 1194.31,269.897 " />
<svg:polygon detid="352460036" count="0" value="0" id="1701007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 29 plaquette  1 left  Id 352460036 " fill="white" points="1187.76,269.819 1187.38,267.807 1180.54,268.254 1180.92,270.266 " />
<svg:polygon detid="352461060" count="0" value="0" id="1701008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 33 plaquette  1 left  Id 352461060 " fill="white" points="1174.56,271.188 1173.31,269.302 1166.9,270.776 1168.15,272.662 " />
<svg:polygon detid="352462084" count="0" value="0" id="1701009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 37 plaquette  1 left  Id 352462084 " fill="white" points="1162.41,274.52 1160.37,272.889 1154.82,275.289 1156.86,276.92 " />
<svg:polygon detid="352463108" count="0" value="0" id="1701010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 41 plaquette  1 left  Id 352463108 " fill="white" points="1152.14,279.589 1149.45,278.324 1145.15,281.486 1147.84,282.751 " />
<svg:polygon detid="352464132" count="0" value="0" id="1701011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 45 plaquette  1 left  Id 352464132 " fill="white" points="1144.45,286.049 1141.3,285.236 1138.53,288.945 1141.69,289.758 " />
<svg:polygon detid="352465156" count="0" value="0" id="1701012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 49 plaquette  1 left  Id 352465156 " fill="white" points="1139.86,293.459 1136.46,293.154 1135.42,297.158 1138.83,297.463 " />
<svg:polygon detid="352466180" count="0" value="0" id="1701013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 53 plaquette  1 left  Id 352466180 " fill="white" points="1138.69,301.315 1135.27,301.539 1136.03,305.564 1139.45,305.34 " />
<svg:polygon detid="352467204" count="0" value="0" id="1701014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 57 plaquette  1 left  Id 352467204 " fill="white" points="1141.02,309.082 1137.81,309.819 1140.32,313.591 1143.53,312.854 " />
<svg:polygon detid="352468228" count="0" value="0" id="1701015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 61 plaquette  1 left  Id 352468228 " fill="white" points="1146.68,316.229 1143.91,317.429 1147.99,320.692 1150.76,319.492 " />
<svg:polygon detid="352469252" count="0" value="0" id="1701016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 1 plaquette  1 right  Id 352469252 " fill="white" points="1155.3,322.271 1153.15,323.852 1158.53,326.382 1160.68,324.801 " />
<svg:polygon detid="352470276" count="0" value="0" id="1701017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 5 plaquette  1 right  Id 352470276 " fill="white" points="1166.28,326.795 1164.9,328.65 1171.21,330.275 1172.59,328.42 " />
<svg:polygon detid="352471300" count="0" value="0" id="1701018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 9 plaquette  1 right  Id 352471300 " fill="white" points="1178.88,329.493 1178.36,331.495 1185.17,332.105 1185.69,330.103 " />
<svg:polygon detid="352472324" count="0" value="0" id="1701019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 13 plaquette  1 right  Id 352472324 " fill="white" points="1192.24,330.181 1192.62,332.193 1199.46,331.746 1199.08,329.734 " />
<svg:polygon detid="352473348" count="0" value="0" id="1701020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 17 plaquette  1 right  Id 352473348 " fill="white" points="1205.44,328.812 1206.69,330.698 1213.1,329.224 1211.85,327.338 " />
<svg:polygon detid="352474372" count="0" value="0" id="1701021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 21 plaquette  1 right  Id 352474372 " fill="white" points="1217.59,325.48 1219.63,327.111 1225.18,324.711 1223.14,323.08 " />
<svg:polygon detid="352475396" count="0" value="0" id="1701022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 25 plaquette  1 right  Id 352475396 " fill="white" points="1227.86,320.411 1230.55,321.676 1234.85,318.514 1232.16,317.249 " />
<svg:polygon detid="352476420" count="0" value="0" id="1701023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 29 plaquette  1 right  Id 352476420 " fill="white" points="1235.55,313.951 1238.7,314.764 1241.47,311.055 1238.31,310.242 " />
<svg:polygon detid="352477444" count="0" value="0" id="1701024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 1 blade 33 plaquette  1 right  Id 352477444 " fill="white" points="1240.14,306.541 1243.54,306.846 1244.58,302.842 1241.17,302.537 " />
<svg:polygon detid="352454148" count="0" value="0" id="1702001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 6 plaquette  1 left  Id 352454148 " fill="white" points="1249.66,297.841 1256.47,297.244 1254.95,291.235 1248.14,291.832 " />
<svg:polygon detid="352455172" count="0" value="0" id="1702002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 10 plaquette  1 left  Id 352455172 " fill="white" points="1246.68,288.831 1252.99,287.218 1248.88,281.645 1242.57,283.259 " />
<svg:polygon detid="352456196" count="0" value="0" id="1702003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 14 plaquette  1 left  Id 352456196 " fill="white" points="1239.83,280.582 1245.22,278.063 1238.8,273.307 1233.41,275.826 " />
<svg:polygon detid="352457220" count="0" value="0" id="1702004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 18 plaquette  1 left  Id 352457220 " fill="white" points="1229.59,273.657 1233.69,270.402 1225.39,266.787 1221.29,270.041 " />
<svg:polygon detid="352458244" count="0" value="0" id="1702005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 22 plaquette  1 left  Id 352458244 " fill="white" points="1216.65,268.527 1219.18,264.759 1209.57,262.53 1207.05,266.298 " />
<svg:polygon detid="352459268" count="0" value="0" id="1702006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 26 plaquette  1 left  Id 352459268 " fill="white" points="1201.9,265.542 1202.68,261.518 1192.42,260.828 1191.64,264.851 " />
<svg:polygon detid="352460292" count="0" value="0" id="1702007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 30 plaquette  1 left  Id 352460292 " fill="white" points="1186.33,264.905 1185.31,260.899 1175.1,261.794 1176.11,265.8 " />
<svg:polygon detid="352461316" count="0" value="0" id="1702008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 34 plaquette  1 left  Id 352461316 " fill="white" points="1171.01,266.659 1168.27,262.944 1158.8,265.365 1161.54,269.079 " />
<svg:polygon detid="352462340" count="0" value="0" id="1702009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 38 plaquette  1 left  Id 352462340 " fill="white" points="1156.99,270.686 1152.71,267.515 1144.62,271.295 1148.91,274.466 " />
<svg:polygon detid="352463364" count="0" value="0" id="1702010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 42 plaquette  1 left  Id 352463364 " fill="white" points="1145.22,276.711 1139.68,274.3 1133.54,279.182 1139.07,281.592 " />
<svg:polygon detid="352464388" count="0" value="0" id="1702011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 46 plaquette  1 left  Id 352464388 " fill="white" points="1136.5,284.322 1130.09,282.836 1126.3,288.488 1132.71,289.974 " />
<svg:polygon detid="352465412" count="0" value="0" id="1702012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 50 plaquette  1 left  Id 352465412 " fill="white" points="1131.42,293.002 1124.58,292.542 1123.41,298.578 1130.25,299.038 " />
<svg:polygon detid="352466436" count="0" value="0" id="1702013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 54 plaquette  1 left  Id 352466436 " fill="white" points="1130.34,302.159 1123.53,302.756 1125.05,308.765 1131.86,308.168 " />
<svg:polygon detid="352467460" count="0" value="0" id="1702014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 58 plaquette  1 left  Id 352467460 " fill="white" points="1133.32,311.169 1127.01,312.782 1131.12,318.355 1137.43,316.741 " />
<svg:polygon detid="352468484" count="0" value="0" id="1702015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 62 plaquette  1 left  Id 352468484 " fill="white" points="1140.17,319.418 1134.78,321.937 1141.2,326.693 1146.59,324.174 " />
<svg:polygon detid="352469508" count="0" value="0" id="1702016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 2 plaquette  1 right  Id 352469508 " fill="white" points="1150.41,326.343 1146.31,329.598 1154.61,333.213 1158.71,329.959 " />
<svg:polygon detid="352470532" count="0" value="0" id="1702017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 6 plaquette  1 right  Id 352470532 " fill="white" points="1163.35,331.473 1160.82,335.241 1170.43,337.47 1172.95,333.702 " />
<svg:polygon detid="352471556" count="0" value="0" id="1702018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 10 plaquette  1 right  Id 352471556 " fill="white" points="1178.1,334.458 1177.32,338.482 1187.58,339.172 1188.36,335.149 " />
<svg:polygon detid="352472580" count="0" value="0" id="1702019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 14 plaquette  1 right  Id 352472580 " fill="white" points="1193.67,335.095 1194.69,339.101 1204.9,338.206 1203.89,334.2 " />
<svg:polygon detid="352473604" count="0" value="0" id="1702020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 18 plaquette  1 right  Id 352473604 " fill="white" points="1208.99,333.341 1211.73,337.056 1221.2,334.635 1218.46,330.921 " />
<svg:polygon detid="352474628" count="0" value="0" id="1702021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 22 plaquette  1 right  Id 352474628 " fill="white" points="1223.01,329.314 1227.29,332.485 1235.38,328.705 1231.09,325.534 " />
<svg:polygon detid="352475652" count="0" value="0" id="1702022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 26 plaquette  1 right  Id 352475652 " fill="white" points="1234.78,323.289 1240.32,325.7 1246.46,320.818 1240.93,318.408 " />
<svg:polygon detid="352476676" count="0" value="0" id="1702023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 30 plaquette  1 right  Id 352476676 " fill="white" points="1243.5,315.678 1249.91,317.164 1253.7,311.512 1247.29,310.026 " />
<svg:polygon detid="352477700" count="0" value="0" id="1702024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 2 blade 34 plaquette  1 right  Id 352477700 " fill="white" points="1248.58,306.998 1255.42,307.458 1256.59,301.422 1249.75,300.962 " />
<svg:polygon detid="352453896" count="0" value="0" id="1703001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 5 plaquette  2 left  Id 352453896 " fill="white" points="1260.66,298.199 1267.5,297.728 1266.3,291.694 1259.46,292.165 " />
<svg:polygon detid="352454920" count="0" value="0" id="1703002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 9 plaquette  2 left  Id 352454920 " fill="white" points="1257.46,287.502 1263.86,286.007 1260.04,280.361 1253.65,281.857 " />
<svg:polygon detid="352455944" count="0" value="0" id="1703003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 13 plaquette  2 left  Id 352455944 " fill="white" points="1249.66,277.658 1255.18,275.239 1249.02,270.366 1243.49,272.785 " />
<svg:polygon detid="352456968" count="0" value="0" id="1703004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 17 plaquette  2 left  Id 352456968 " fill="white" points="1237.8,269.336 1242.07,266.159 1233.97,262.391 1229.7,265.568 " />
<svg:polygon detid="352457992" count="0" value="0" id="1703005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 21 plaquette  2 left  Id 352457992 " fill="white" points="1222.68,263.104 1225.4,259.385 1215.92,256.979 1213.19,260.698 " />
<svg:polygon detid="352459016" count="0" value="0" id="1703006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 25 plaquette  2 left  Id 352459016 " fill="white" points="1205.33,259.386 1206.33,255.379 1196.11,254.498 1195.11,258.506 " />
<svg:polygon detid="352460040" count="0" value="0" id="1703007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 29 plaquette  2 left  Id 352460040 " fill="white" points="1186.94,258.436 1186.14,254.413 1175.88,255.119 1176.68,259.141 " />
<svg:polygon detid="352461064" count="0" value="0" id="1703008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 33 plaquette  2 left  Id 352461064 " fill="white" points="1168.75,260.318 1166.21,256.555 1156.61,258.798 1159.16,262.562 " />
<svg:polygon detid="352462088" count="0" value="0" id="1703009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 37 plaquette  2 left  Id 352462088 " fill="white" points="1152.02,264.905 1147.91,261.657 1139.62,265.285 1143.73,268.533 " />
<svg:polygon detid="352463112" count="0" value="0" id="1703010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 41 plaquette  2 left  Id 352463112 " fill="white" points="1137.87,271.884 1132.47,269.372 1126.07,274.137 1131.47,276.649 " />
<svg:polygon detid="352464136" count="0" value="0" id="1703011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 45 plaquette  2 left  Id 352464136 " fill="white" points="1127.28,280.778 1120.95,279.174 1116.86,284.752 1123.19,286.356 " />
<svg:polygon detid="352465160" count="0" value="0" id="1703012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 49 plaquette  2 left  Id 352465160 " fill="white" points="1120.96,290.982 1114.14,290.396 1112.65,296.407 1119.46,296.993 " />
<svg:polygon detid="352466184" count="0" value="0" id="1703013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 53 plaquette  2 left  Id 352466184 " fill="white" points="1119.34,301.801 1112.5,302.272 1113.7,308.306 1120.54,307.835 " />
<svg:polygon detid="352467208" count="0" value="0" id="1703014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 57 plaquette  2 left  Id 352467208 " fill="white" points="1122.54,312.498 1116.14,313.993 1119.96,319.639 1126.35,318.143 " />
<svg:polygon detid="352468232" count="0" value="0" id="1703015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 61 plaquette  2 left  Id 352468232 " fill="white" points="1130.34,322.342 1124.82,324.761 1130.98,329.634 1136.51,327.215 " />
<svg:polygon detid="352469256" count="0" value="0" id="1703016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 1 plaquette  2 right  Id 352469256 " fill="white" points="1142.2,330.664 1137.93,333.841 1146.03,337.609 1150.3,334.432 " />
<svg:polygon detid="352470280" count="0" value="0" id="1703017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 5 plaquette  2 right  Id 352470280 " fill="white" points="1157.32,336.896 1154.6,340.615 1164.08,343.021 1166.81,339.302 " />
<svg:polygon detid="352471304" count="0" value="0" id="1703018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 9 plaquette  2 right  Id 352471304 " fill="white" points="1174.67,340.614 1173.67,344.621 1183.89,345.502 1184.89,341.494 " />
<svg:polygon detid="352472328" count="0" value="0" id="1703019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 13 plaquette  2 right  Id 352472328 " fill="white" points="1193.06,341.564 1193.86,345.587 1204.12,344.881 1203.32,340.859 " />
<svg:polygon detid="352473352" count="0" value="0" id="1703020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 17 plaquette  2 right  Id 352473352 " fill="white" points="1211.25,339.682 1213.79,343.445 1223.39,341.202 1220.84,337.438 " />
<svg:polygon detid="352474376" count="0" value="0" id="1703021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 21 plaquette  2 right  Id 352474376 " fill="white" points="1227.98,335.095 1232.09,338.343 1240.38,334.715 1236.27,331.467 " />
<svg:polygon detid="352475400" count="0" value="0" id="1703022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 25 plaquette  2 right  Id 352475400 " fill="white" points="1242.13,328.116 1247.53,330.628 1253.93,325.863 1248.53,323.351 " />
<svg:polygon detid="352476424" count="0" value="0" id="1703023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 29 plaquette  2 right  Id 352476424 " fill="white" points="1252.72,319.222 1259.05,320.826 1263.14,315.248 1256.81,313.644 " />
<svg:polygon detid="352477448" count="0" value="0" id="1703024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 3 blade 33 plaquette  2 right  Id 352477448 " fill="white" points="1259.04,309.018 1265.86,309.604 1267.35,303.593 1260.54,303.007 " />
<svg:polygon detid="352454152" count="0" value="0" id="1704001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 6 plaquette  2 left  Id 352454152 " fill="white" points="1274.58,296.923 1281.39,296.345 1279.43,288.328 1272.62,288.906 " />
<svg:polygon detid="352455176" count="0" value="0" id="1704002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 10 plaquette  2 left  Id 352455176 " fill="white" points="1270.34,284.151 1276.67,282.555 1271.25,275.11 1264.92,276.706 " />
<svg:polygon detid="352456200" count="0" value="0" id="1704003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 14 plaquette  2 left  Id 352456200 " fill="white" points="1260.63,272.459 1266.04,269.954 1257.53,263.589 1252.12,266.093 " />
<svg:polygon detid="352457224" count="0" value="0" id="1704004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 18 plaquette  2 left  Id 352457224 " fill="white" points="1246.11,262.644 1250.23,259.401 1239.21,254.549 1235.08,257.792 " />
<svg:polygon detid="352458248" count="0" value="0" id="1704005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 22 plaquette  2 left  Id 352458248 " fill="white" points="1227.76,255.374 1230.32,251.614 1217.53,248.606 1214.97,252.366 " />
<svg:polygon detid="352459272" count="0" value="0" id="1704006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 26 plaquette  2 left  Id 352459272 " fill="white" points="1206.84,251.146 1207.65,247.125 1193.98,246.166 1193.16,250.187 " />
<svg:polygon detid="352460296" count="0" value="0" id="1704007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 30 plaquette  2 left  Id 352460296 " fill="white" points="1184.77,250.247 1183.79,246.239 1170.16,247.394 1171.14,251.402 " />
<svg:polygon detid="352461320" count="0" value="0" id="1704008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 34 plaquette  2 left  Id 352461320 " fill="white" points="1163.06,252.739 1160.34,249.017 1147.69,252.208 1150.4,255.93 " />
<svg:polygon detid="352462344" count="0" value="0" id="1704009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 38 plaquette  2 left  Id 352462344 " fill="white" points="1143.18,258.452 1138.92,255.269 1128.1,260.278 1132.36,263.461 " />
<svg:polygon detid="352463368" count="0" value="0" id="1704010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 42 plaquette  2 left  Id 352463368 " fill="white" points="1126.49,266.996 1120.98,264.57 1112.73,271.055 1118.25,273.481 " />
<svg:polygon detid="352464392" count="0" value="0" id="1704011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 46 plaquette  2 left  Id 352464392 " fill="white" points="1114.14,277.789 1107.74,276.285 1102.63,283.805 1109.02,285.309 " />
<svg:polygon detid="352465416" count="0" value="0" id="1704012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 50 plaquette  2 left  Id 352465416 " fill="white" points="1106.95,290.096 1100.11,289.616 1098.48,297.659 1105.32,298.139 " />
<svg:polygon detid="352466440" count="0" value="0" id="1704013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 54 plaquette  2 left  Id 352466440 " fill="white" points="1105.42,303.077 1098.61,303.655 1100.57,311.672 1107.38,311.094 " />
<svg:polygon detid="352467464" count="0" value="0" id="1704014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 58 plaquette  2 left  Id 352467464 " fill="white" points="1109.66,315.849 1103.33,317.445 1108.75,324.89 1115.08,323.294 " />
<svg:polygon detid="352468488" count="0" value="0" id="1704015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 62 plaquette  2 left  Id 352468488 " fill="white" points="1119.37,327.541 1113.96,330.046 1122.47,336.411 1127.88,333.907 " />
<svg:polygon detid="352469512" count="0" value="0" id="1704016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 2 plaquette  2 right  Id 352469512 " fill="white" points="1133.89,337.356 1129.77,340.599 1140.79,345.451 1144.92,342.208 " />
<svg:polygon detid="352470536" count="0" value="0" id="1704017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 6 plaquette  2 right  Id 352470536 " fill="white" points="1152.24,344.626 1149.68,348.386 1162.47,351.394 1165.03,347.634 " />
<svg:polygon detid="352471560" count="0" value="0" id="1704018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 10 plaquette  2 right  Id 352471560 " fill="white" points="1173.16,348.854 1172.35,352.875 1186.02,353.834 1186.84,349.813 " />
<svg:polygon detid="352472584" count="0" value="0" id="1704019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 14 plaquette  2 right  Id 352472584 " fill="white" points="1195.23,349.753 1196.21,353.761 1209.84,352.606 1208.86,348.598 " />
<svg:polygon detid="352473608" count="0" value="0" id="1704020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 18 plaquette  2 right  Id 352473608 " fill="white" points="1216.94,347.261 1219.66,350.983 1232.31,347.792 1229.6,344.07 " />
<svg:polygon detid="352474632" count="0" value="0" id="1704021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 22 plaquette  2 right  Id 352474632 " fill="white" points="1236.82,341.548 1241.08,344.731 1251.9,339.722 1247.64,336.539 " />
<svg:polygon detid="352475656" count="0" value="0" id="1704022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 26 plaquette  2 right  Id 352475656 " fill="white" points="1253.51,333.004 1259.02,335.43 1267.27,328.945 1261.75,326.519 " />
<svg:polygon detid="352476680" count="0" value="0" id="1704023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 30 plaquette  2 right  Id 352476680 " fill="white" points="1265.86,322.211 1272.26,323.715 1277.37,316.195 1270.98,314.691 " />
<svg:polygon detid="352477704" count="0" value="0" id="1704024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 4 blade 34 plaquette  2 right  Id 352477704 " fill="white" points="1273.05,309.904 1279.89,310.384 1281.52,302.341 1274.68,301.861 " />
<svg:polygon detid="352453900" count="0" value="0" id="1705001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 5 plaquette  3 left  Id 352453900 " fill="white" points="1285.1,297.334 1291.93,296.85 1290.29,288.808 1283.45,289.293 " />
<svg:polygon detid="352454924" count="0" value="0" id="1705002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 9 plaquette  3 left  Id 352454924 " fill="white" points="1280.69,282.947 1287.08,281.438 1281.95,273.921 1275.56,275.43 " />
<svg:polygon detid="352455948" count="0" value="0" id="1705003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 13 plaquette  3 left  Id 352455948 " fill="white" points="1270.09,269.721 1275.6,267.291 1267.34,260.811 1261.83,263.241 " />
<svg:polygon detid="352456972" count="0" value="0" id="1705004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 17 plaquette  3 left  Id 352456972 " fill="white" points="1254.04,258.559 1258.29,255.373 1247.46,250.372 1243.21,253.558 " />
<svg:polygon detid="352457996" count="0" value="0" id="1705005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 21 plaquette  3 left  Id 352457996 " fill="white" points="1233.63,250.221 1236.33,246.496 1223.67,243.315 1220.96,247.04 " />
<svg:polygon detid="352459020" count="0" value="0" id="1705006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 25 plaquette  3 left  Id 352459020 " fill="white" points="1210.24,245.275 1211.21,241.266 1197.58,240.121 1196.6,244.13 " />
<svg:polygon detid="352460044" count="0" value="0" id="1705007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 29 plaquette  3 left  Id 352460044 " fill="white" points="1185.47,244.059 1184.64,240.038 1170.97,241.008 1171.8,245.029 " />
<svg:polygon detid="352461068" count="0" value="0" id="1705008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 33 plaquette  3 left  Id 352461068 " fill="white" points="1161.01,246.655 1158.44,242.896 1145.67,245.914 1148.23,249.673 " />
<svg:polygon detid="352462092" count="0" value="0" id="1705009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 37 plaquette  3 left  Id 352462092 " fill="white" points="1138.53,252.886 1134.39,249.647 1123.38,254.507 1127.51,257.747 " />
<svg:polygon detid="352463116" count="0" value="0" id="1705010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 41 plaquette  3 left  Id 352463116 " fill="white" points="1119.55,262.328 1114.13,259.828 1105.63,266.2 1111.05,268.7 " />
<svg:polygon detid="352464140" count="0" value="0" id="1705011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 45 plaquette  3 left  Id 352464140 " fill="white" points="1105.38,274.338 1099.04,272.747 1093.64,280.196 1099.97,281.787 " />
<svg:polygon detid="352465164" count="0" value="0" id="1705012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 49 plaquette  3 left  Id 352465164 " fill="white" points="1096.97,288.096 1090.15,287.524 1088.21,295.542 1095.02,296.115 " />
<svg:polygon detid="352466188" count="0" value="0" id="1705013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 53 plaquette  3 left  Id 352466188 " fill="white" points="1094.9,302.666 1088.07,303.15 1089.71,311.192 1096.55,310.707 " />
<svg:polygon detid="352467212" count="0" value="0" id="1705014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 57 plaquette  3 left  Id 352467212 " fill="white" points="1099.31,317.053 1092.92,318.562 1098.05,326.079 1104.44,324.57 " />
<svg:polygon detid="352468236" count="0" value="0" id="1705015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 61 plaquette  3 left  Id 352468236 " fill="white" points="1109.91,330.279 1104.4,332.709 1112.66,339.189 1118.17,336.759 " />
<svg:polygon detid="352469260" count="0" value="0" id="1705016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 1 plaquette  3 right  Id 352469260 " fill="white" points="1125.96,341.441 1121.71,344.627 1132.54,349.628 1136.79,346.442 " />
<svg:polygon detid="352470284" count="0" value="0" id="1705017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 5 plaquette  3 right  Id 352470284 " fill="white" points="1146.37,349.779 1143.67,353.504 1156.33,356.685 1159.04,352.96 " />
<svg:polygon detid="352471308" count="0" value="0" id="1705018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 9 plaquette  3 right  Id 352471308 " fill="white" points="1169.76,354.725 1168.79,358.734 1182.42,359.879 1183.4,355.87 " />
<svg:polygon detid="352472332" count="0" value="0" id="1705019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 13 plaquette  3 right  Id 352472332 " fill="white" points="1194.53,355.941 1195.36,359.962 1209.03,358.992 1208.2,354.971 " />
<svg:polygon detid="352473356" count="0" value="0" id="1705020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 17 plaquette  3 right  Id 352473356 " fill="white" points="1218.99,353.345 1221.56,357.104 1234.33,354.086 1231.77,350.327 " />
<svg:polygon detid="352474380" count="0" value="0" id="1705021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 21 plaquette  3 right  Id 352474380 " fill="white" points="1241.47,347.114 1245.61,350.353 1256.62,345.493 1252.49,342.253 " />
<svg:polygon detid="352475404" count="0" value="0" id="1705022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 25 plaquette  3 right  Id 352475404 " fill="white" points="1260.45,337.672 1265.87,340.172 1274.37,333.8 1268.95,331.3 " />
<svg:polygon detid="352476428" count="0" value="0" id="1705023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 29 plaquette  3 right  Id 352476428 " fill="white" points="1274.62,325.662 1280.96,327.253 1286.36,319.804 1280.03,318.213 " />
<svg:polygon detid="352477452" count="0" value="0" id="1705024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 5 blade 33 plaquette  3 right  Id 352477452 " fill="white" points="1283.03,311.904 1289.85,312.476 1291.79,304.458 1284.98,303.885 " />
<svg:polygon detid="352454156" count="0" value="0" id="1706001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 6 plaquette  3 left  Id 352454156 " fill="white" points="1299.5,296.008 1306.32,295.441 1303.91,285.416 1297.1,285.983 " />
<svg:polygon detid="352455180" count="0" value="0" id="1706002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 10 plaquette  3 left  Id 352455180 " fill="white" points="1294.02,279.473 1300.35,277.887 1293.61,268.57 1287.28,270.156 " />
<svg:polygon detid="352456204" count="0" value="0" id="1706003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 14 plaquette  3 left  Id 352456204 " fill="white" points="1281.44,264.336 1286.86,261.84 1276.26,253.866 1270.83,256.362 " />
<svg:polygon detid="352457228" count="0" value="0" id="1706004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 18 plaquette  3 left  Id 352457228 " fill="white" points="1262.63,251.63 1266.77,248.393 1253.02,242.306 1248.88,245.543 " />
<svg:polygon detid="352458252" count="0" value="0" id="1706005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 22 plaquette  3 left  Id 352458252 " fill="white" points="1238.88,242.22 1241.45,238.464 1225.49,234.678 1222.91,238.434 " />
<svg:polygon detid="352459276" count="0" value="0" id="1706006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 26 plaquette  3 left  Id 352459276 " fill="white" points="1211.79,236.748 1212.62,232.727 1195.53,231.501 1194.7,235.522 " />
<svg:polygon detid="352460300" count="0" value="0" id="1706007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 30 plaquette  3 left  Id 352460300 " fill="white" points="1183.21,235.586 1182.25,231.575 1165.21,232.992 1166.17,237.003 " />
<svg:polygon detid="352461324" count="0" value="0" id="1706008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 34 plaquette  3 left  Id 352461324 " fill="white" points="1155.1,238.814 1152.41,235.087 1136.57,239.05 1139.26,242.777 " />
<svg:polygon detid="352462348" count="0" value="0" id="1706009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 38 plaquette  3 left  Id 352462348 " fill="white" points="1129.37,246.211 1125.13,243.022 1111.57,249.262 1115.82,252.451 " />
<svg:polygon detid="352463372" count="0" value="0" id="1706010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 42 plaquette  3 left  Id 352463372 " fill="white" points="1107.77,257.275 1102.27,254.84 1091.92,262.931 1097.42,265.366 " />
<svg:polygon detid="352464396" count="0" value="0" id="1706011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 46 plaquette  3 left  Id 352464396 " fill="white" points="1091.77,271.25 1085.39,269.736 1078.95,279.126 1085.34,280.641 " />
<svg:polygon detid="352465420" count="0" value="0" id="1706012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 50 plaquette  3 left  Id 352465420 " fill="white" points="1082.47,287.184 1075.64,286.694 1073.55,296.744 1080.39,297.235 " />
<svg:polygon detid="352466444" count="0" value="0" id="1706013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 54 plaquette  3 left  Id 352466444 " fill="white" points="1080.5,303.992 1073.68,304.559 1076.09,314.584 1082.9,314.017 " />
<svg:polygon detid="352467468" count="0" value="0" id="1706014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 58 plaquette  3 left  Id 352467468 " fill="white" points="1085.98,320.527 1079.65,322.113 1086.39,331.43 1092.72,329.844 " />
<svg:polygon detid="352468492" count="0" value="0" id="1706015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 62 plaquette  3 left  Id 352468492 " fill="white" points="1098.56,335.664 1093.14,338.16 1103.74,346.134 1109.17,343.638 " />
<svg:polygon detid="352469516" count="0" value="0" id="1706016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 2 plaquette  3 right  Id 352469516 " fill="white" points="1117.37,348.37 1113.23,351.607 1126.98,357.694 1131.12,354.457 " />
<svg:polygon detid="352470540" count="0" value="0" id="1706017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 6 plaquette  3 right  Id 352470540 " fill="white" points="1141.12,357.78 1138.55,361.536 1154.51,365.322 1157.09,361.566 " />
<svg:polygon detid="352471564" count="0" value="0" id="1706018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 10 plaquette  3 right  Id 352471564 " fill="white" points="1168.21,363.252 1167.38,367.273 1184.47,368.499 1185.3,364.478 " />
<svg:polygon detid="352472588" count="0" value="0" id="1706019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 14 plaquette  3 right  Id 352472588 " fill="white" points="1196.79,364.414 1197.75,368.425 1214.79,367.008 1213.83,362.997 " />
<svg:polygon detid="352473612" count="0" value="0" id="1706020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 18 plaquette  3 right  Id 352473612 " fill="white" points="1224.9,361.186 1227.59,364.913 1243.43,360.95 1240.74,357.223 " />
<svg:polygon detid="352474636" count="0" value="0" id="1706021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 22 plaquette  3 right  Id 352474636 " fill="white" points="1250.63,353.789 1254.87,356.978 1268.43,350.738 1264.18,347.549 " />
<svg:polygon detid="352475660" count="0" value="0" id="1706022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 26 plaquette  3 right  Id 352475660 " fill="white" points="1272.23,342.725 1277.73,345.16 1288.08,337.069 1282.58,334.634 " />
<svg:polygon detid="352476684" count="0" value="0" id="1706023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 30 plaquette  3 right  Id 352476684 " fill="white" points="1288.23,328.75 1294.61,330.264 1301.05,320.874 1294.66,319.359 " />
<svg:polygon detid="352477708" count="0" value="0" id="1706024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 6 blade 34 plaquette  3 right  Id 352477708 " fill="white" points="1297.53,312.816 1304.36,313.306 1306.45,303.256 1299.61,302.765 " />
<svg:polygon detid="352453904" count="0" value="0" id="1707001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 5 plaquette  4 left  Id 352453904 " fill="white" points="1307.88,296.605 1311.3,296.358 1309.21,286.308 1305.79,286.555 " />
<svg:polygon detid="352454928" count="0" value="0" id="1707002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 9 plaquette  4 left  Id 352454928 " fill="white" points="1302.37,278.773 1305.56,278.015 1299.12,268.626 1295.93,269.384 " />
<svg:polygon detid="352455952" count="0" value="0" id="1707003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 13 plaquette  4 left  Id 352455952 " fill="white" points="1289.2,262.388 1291.95,261.17 1281.6,253.082 1278.85,254.301 " />
<svg:polygon detid="352456976" count="0" value="0" id="1707004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 17 plaquette  4 left  Id 352456976 " fill="white" points="1269.27,248.567 1271.39,246.972 1257.83,240.736 1255.71,242.331 " />
<svg:polygon detid="352458000" count="0" value="0" id="1707005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 21 plaquette  4 left  Id 352458000 " fill="white" points="1243.94,238.25 1245.29,236.386 1229.45,232.428 1228.1,234.292 " />
<svg:polygon detid="352459024" count="0" value="0" id="1707006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 25 plaquette  4 left  Id 352459024 " fill="white" points="1214.93,232.142 1215.41,230.137 1198.37,228.725 1197.89,230.73 " />
<svg:polygon detid="352460048" count="0" value="0" id="1707007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 29 plaquette  4 left  Id 352460048 " fill="white" points="1184.23,230.658 1183.81,228.648 1166.72,229.879 1167.14,231.889 " />
<svg:polygon detid="352461072" count="0" value="0" id="1707008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 33 plaquette  4 left  Id 352461072 " fill="white" points="1153.91,233.9 1152.63,232.022 1136.66,235.812 1137.95,237.69 " />
<svg:polygon detid="352462096" count="0" value="0" id="1707009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 37 plaquette  4 left  Id 352462096 " fill="white" points="1126.06,241.646 1123.99,240.028 1110.24,246.119 1112.31,247.737 " />
<svg:polygon detid="352463120" count="0" value="0" id="1707010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 41 plaquette  4 left  Id 352463120 " fill="white" points="1102.56,253.369 1099.85,252.122 1089.25,260.099 1091.96,261.346 " />
<svg:polygon detid="352464144" count="0" value="0" id="1707011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 45 plaquette  4 left  Id 352464144 " fill="white" points="1085.03,268.27 1081.86,267.478 1075.13,276.797 1078.3,277.589 " />
<svg:polygon detid="352465168" count="0" value="0" id="1707012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 49 plaquette  4 left  Id 352465168 " fill="white" points="1074.64,285.333 1071.23,285.05 1068.83,295.076 1072.24,295.359 " />
<svg:polygon detid="352466192" count="0" value="0" id="1707013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 53 plaquette  4 left  Id 352466192 " fill="white" points="1072.12,303.395 1068.7,303.642 1070.79,313.692 1074.21,313.445 " />
<svg:polygon detid="352467216" count="0" value="0" id="1707014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 57 plaquette  4 left  Id 352467216 " fill="white" points="1077.63,321.227 1074.44,321.985 1080.88,331.374 1084.07,330.616 " />
<svg:polygon detid="352468240" count="0" value="0" id="1707015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 61 plaquette  4 left  Id 352468240 " fill="white" points="1090.8,337.612 1088.05,338.83 1098.4,346.918 1101.15,345.699 " />
<svg:polygon detid="352469264" count="0" value="0" id="1707016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 1 plaquette  4 right  Id 352469264 " fill="white" points="1110.73,351.433 1108.61,353.028 1122.17,359.264 1124.29,357.669 " />
<svg:polygon detid="352470288" count="0" value="0" id="1707017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 5 plaquette  4 right  Id 352470288 " fill="white" points="1136.06,361.75 1134.71,363.614 1150.55,367.572 1151.9,365.708 " />
<svg:polygon detid="352471312" count="0" value="0" id="1707018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 9 plaquette  4 right  Id 352471312 " fill="white" points="1165.07,367.858 1164.59,369.863 1181.63,371.275 1182.11,369.27 " />
<svg:polygon detid="352472336" count="0" value="0" id="1707019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 13 plaquette  4 right  Id 352472336 " fill="white" points="1195.77,369.342 1196.19,371.352 1213.28,370.121 1212.86,368.111 " />
<svg:polygon detid="352473360" count="0" value="0" id="1707020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 17 plaquette  4 right  Id 352473360 " fill="white" points="1226.09,366.1 1227.37,367.978 1243.34,364.188 1242.05,362.31 " />
<svg:polygon detid="352474384" count="0" value="0" id="1707021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 21 plaquette  4 right  Id 352474384 " fill="white" points="1253.94,358.354 1256.01,359.972 1269.76,353.881 1267.69,352.263 " />
<svg:polygon detid="352475408" count="0" value="0" id="1707022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 25 plaquette  4 right  Id 352475408 " fill="white" points="1277.44,346.631 1280.15,347.878 1290.75,339.901 1288.04,338.654 " />
<svg:polygon detid="352476432" count="0" value="0" id="1707023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 29 plaquette  4 right  Id 352476432 " fill="white" points="1294.97,331.73 1298.14,332.522 1304.87,323.203 1301.7,322.411 " />
<svg:polygon detid="352477456" count="0" value="0" id="1707024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="FPIX +z disc 2 ring 7 blade 33 plaquette  4 right  Id 352477456 " fill="white" points="1305.36,314.667 1308.77,314.95 1311.17,304.924 1307.76,304.641 " />
<svg:polygon detid="419496326" count="1" value="57" id="1901001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  1   Id 419496326 " fill="rgb(255,142,0)" points="1227.2,697.703 1217.79,698.455 1217.79,701.545 " />
<svg:polygon detid="419496198" count="1" value="57" id="1901002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  1   Id 419496198 " fill="rgb(255,142,0)" points="1224.92,692.117 1216.17,694.276 1217.53,697.261 " />
<svg:polygon detid="419496330" count="1" value="57" id="1901003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  2   Id 419496330 " fill="rgb(255,142,0)" points="1220.27,687.068 1212.76,690.487 1215.38,693.163 " />
<svg:polygon detid="419496202" count="1" value="57" id="1901004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  2   Id 419496202 " fill="rgb(255,142,0)" points="1213.54,682.901 1207.8,687.347 1211.51,689.532 " />
<svg:polygon detid="419496334" count="1" value="57" id="1901005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  3   Id 419496334 " fill="rgb(255,142,0)" points="1205.22,679.899 1201.62,685.069 1206.17,686.614 " />
<svg:polygon detid="419496206" count="1" value="57" id="1901006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  3   Id 419496206 " fill="rgb(255,142,0)" points="1195.86,678.267 1194.66,683.808 1199.73,684.608 " />
<svg:polygon detid="419496338" count="1" value="57" id="1901007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  4   Id 419496338 " fill="rgb(255,142,0)" points="1186.09,678.116 1187.37,683.651 1192.63,683.651 " />
<svg:polygon detid="419496210" count="1" value="57" id="1901008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  4   Id 419496210 " fill="rgb(255,142,0)" points="1176.6,679.456 1180.27,684.608 1185.34,683.808 " />
<svg:polygon detid="419496342" count="1" value="57" id="1901009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  5   Id 419496342 " fill="rgb(255,142,0)" points="1168.02,682.196 1173.83,686.614 1178.38,685.069 " />
<svg:polygon detid="419496214" count="1" value="57" id="1901010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  5   Id 419496214 " fill="rgb(255,142,0)" points="1160.93,686.15 1168.49,689.532 1172.2,687.347 " />
<svg:polygon detid="419496346" count="1" value="57" id="1901011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  6   Id 419496346 " fill="rgb(255,142,0)" points="1155.83,691.048 1164.62,693.163 1167.24,690.487 " />
<svg:polygon detid="419496218" count="1" value="57" id="1901012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  6   Id 419496218 " fill="rgb(255,142,0)" points="1153.05,696.555 1162.47,697.261 1163.83,694.276 " />
<svg:polygon detid="419496350" count="1" value="57" id="1901013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  7   Id 419496350 " fill="rgb(255,142,0)" points="1152.8,702.297 1162.21,701.545 1162.21,698.455 " />
<svg:polygon detid="419496222" count="1" value="57" id="1901014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  7   Id 419496222 " fill="rgb(255,142,0)" points="1155.08,707.883 1163.83,705.724 1162.47,702.739 " />
<svg:polygon detid="419496354" count="1" value="57" id="1901015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  8   Id 419496354 " fill="rgb(255,142,0)" points="1159.73,712.932 1167.24,709.513 1164.62,706.837 " />
<svg:polygon detid="419496226" count="1" value="57" id="1901016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  8   Id 419496226 " fill="rgb(255,142,0)" points="1166.46,717.099 1172.2,712.653 1168.49,710.468 " />
<svg:polygon detid="419496358" count="1" value="57" id="1901017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  9   Id 419496358 " fill="rgb(255,142,0)" points="1174.78,720.101 1178.38,714.931 1173.83,713.386 " />
<svg:polygon detid="419496230" count="1" value="57" id="1901018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  9   Id 419496230 " fill="rgb(255,142,0)" points="1184.14,721.733 1185.34,716.192 1180.27,715.392 " />
<svg:polygon detid="419496362" count="1" value="57" id="1901019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  10   Id 419496362 " fill="rgb(255,142,0)" points="1193.91,721.884 1192.63,716.349 1187.37,716.349 " />
<svg:polygon detid="419496234" count="1" value="57" id="1901020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  10   Id 419496234 " fill="rgb(255,142,0)" points="1203.4,720.544 1199.73,715.392 1194.66,716.192 " />
<svg:polygon detid="419496366" count="1" value="57" id="1901021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  11   Id 419496366 " fill="rgb(255,142,0)" points="1211.98,717.804 1206.17,713.386 1201.62,714.931 " />
<svg:polygon detid="419496238" count="1" value="57" id="1901022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  11   Id 419496238 " fill="rgb(255,142,0)" points="1219.07,713.85 1211.51,710.468 1207.8,712.653 " />
<svg:polygon detid="419496370" count="1" value="57" id="1901023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  12   Id 419496370 " fill="rgb(255,142,0)" points="1224.17,708.952 1215.38,706.837 1212.76,709.513 " />
<svg:polygon detid="419496242" count="1" value="57" id="1901024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  12   Id 419496242 " fill="rgb(255,142,0)" points="1226.95,703.445 1217.53,702.739 1216.17,705.724 " />
<svg:polygon detid="419496325" count="1" value="57" id="1901101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  1  stereo Id 419496325 " fill="rgb(255,142,0)" points="1217.79,701.545 1227.2,702.297 1227.2,697.703 " />
<svg:polygon detid="419496197" count="1" value="57" id="1901102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  1  stereo Id 419496197 " fill="rgb(255,142,0)" points="1217.53,697.261 1226.95,696.555 1224.92,692.117 " />
<svg:polygon detid="419496329" count="1" value="57" id="1901103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  2  stereo Id 419496329 " fill="rgb(255,142,0)" points="1215.38,693.163 1224.17,691.048 1220.27,687.068 " />
<svg:polygon detid="419496201" count="1" value="57" id="1901104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  2  stereo Id 419496201 " fill="rgb(255,142,0)" points="1211.51,689.532 1219.07,686.15 1213.54,682.901 " />
<svg:polygon detid="419496333" count="1" value="57" id="1901105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  3  stereo Id 419496333 " fill="rgb(255,142,0)" points="1206.17,686.614 1211.98,682.196 1205.22,679.899 " />
<svg:polygon detid="419496205" count="1" value="57" id="1901106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  3  stereo Id 419496205 " fill="rgb(255,142,0)" points="1199.73,684.608 1203.4,679.456 1195.86,678.267 " />
<svg:polygon detid="419496337" count="1" value="57" id="1901107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  4  stereo Id 419496337 " fill="rgb(255,142,0)" points="1192.63,683.651 1193.91,678.116 1186.09,678.116 " />
<svg:polygon detid="419496209" count="1" value="57" id="1901108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  4  stereo Id 419496209 " fill="rgb(255,142,0)" points="1185.34,683.808 1184.14,678.267 1176.6,679.456 " />
<svg:polygon detid="419496341" count="1" value="57" id="1901109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  5  stereo Id 419496341 " fill="rgb(255,142,0)" points="1178.38,685.069 1174.78,679.899 1168.02,682.196 " />
<svg:polygon detid="419496213" count="1" value="57" id="1901110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  5  stereo Id 419496213 " fill="rgb(255,142,0)" points="1172.2,687.347 1166.46,682.901 1160.93,686.15 " />
<svg:polygon detid="419496345" count="1" value="57" id="1901111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  6  stereo Id 419496345 " fill="rgb(255,142,0)" points="1167.24,690.487 1159.73,687.068 1155.83,691.048 " />
<svg:polygon detid="419496217" count="1" value="57" id="1901112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  6  stereo Id 419496217 " fill="rgb(255,142,0)" points="1163.83,694.276 1155.08,692.117 1153.05,696.555 " />
<svg:polygon detid="419496349" count="1" value="57" id="1901113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  7  stereo Id 419496349 " fill="rgb(255,142,0)" points="1162.21,698.455 1152.8,697.703 1152.8,702.297 " />
<svg:polygon detid="419496221" count="1" value="57" id="1901114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  7  stereo Id 419496221 " fill="rgb(255,142,0)" points="1162.47,702.739 1153.05,703.445 1155.08,707.883 " />
<svg:polygon detid="419496353" count="1" value="57" id="1901115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  8  stereo Id 419496353 " fill="rgb(255,142,0)" points="1164.62,706.837 1155.83,708.952 1159.73,712.932 " />
<svg:polygon detid="419496225" count="1" value="57" id="1901116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  8  stereo Id 419496225 " fill="rgb(255,142,0)" points="1168.49,710.468 1160.93,713.85 1166.46,717.099 " />
<svg:polygon detid="419496357" count="1" value="57" id="1901117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  9  stereo Id 419496357 " fill="rgb(255,142,0)" points="1173.83,713.386 1168.02,717.804 1174.78,720.101 " />
<svg:polygon detid="419496229" count="1" value="57" id="1901118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  9  stereo Id 419496229 " fill="rgb(255,142,0)" points="1180.27,715.392 1176.6,720.544 1184.14,721.733 " />
<svg:polygon detid="419496361" count="1" value="57" id="1901119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  10  stereo Id 419496361 " fill="rgb(255,142,0)" points="1187.37,716.349 1186.09,721.884 1193.91,721.884 " />
<svg:polygon detid="419496233" count="1" value="57" id="1901120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  10  stereo Id 419496233 " fill="rgb(255,142,0)" points="1194.66,716.192 1195.86,721.733 1203.4,720.544 " />
<svg:polygon detid="419496365" count="1" value="57" id="1901121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  11  stereo Id 419496365 " fill="rgb(255,142,0)" points="1201.62,714.931 1205.22,720.101 1211.98,717.804 " />
<svg:polygon detid="419496237" count="1" value="57" id="1901122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  11  stereo Id 419496237 " fill="rgb(255,142,0)" points="1207.8,712.653 1213.54,717.099 1219.07,713.85 " />
<svg:polygon detid="419496369" count="1" value="57" id="1901123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  backward  module  12  stereo Id 419496369 " fill="rgb(255,142,0)" points="1212.76,709.513 1220.27,712.932 1224.17,708.952 " />
<svg:polygon detid="419496241" count="1" value="57" id="1901124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 1  forward  module  12  stereo Id 419496241 " fill="rgb(255,142,0)" points="1216.17,705.724 1224.92,707.883 1226.95,703.445 " />
<svg:polygon detid="419496582" count="1" value="57" id="1902001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  1   Id 419496582 " fill="rgb(255,142,0)" points="1235.34,697.24 1227.85,697.845 1227.85,702.155 " />
<svg:polygon detid="419496454" count="1" value="57" id="1902002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  1   Id 419496454 " fill="rgb(255,142,0)" points="1232.58,690.431 1225.62,692.155 1227.51,696.318 " />
<svg:polygon detid="419496586" count="1" value="57" id="1902003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  2   Id 419496586 " fill="rgb(255,142,0)" points="1226.92,684.274 1220.95,687 1224.61,690.733 " />
<svg:polygon detid="419496458" count="1" value="57" id="1902004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  2   Id 419496458 " fill="rgb(255,142,0)" points="1218.74,679.188 1214.18,682.731 1219.36,685.778 " />
<svg:polygon detid="419496590" count="1" value="57" id="1902005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  3   Id 419496590 " fill="rgb(255,142,0)" points="1208.61,675.521 1205.75,679.638 1212.1,681.793 " />
<svg:polygon detid="419496462" count="1" value="57" id="1902006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  3   Id 419496462 " fill="rgb(255,142,0)" points="1197.2,673.522 1196.26,677.933 1203.34,679.049 " />
<svg:polygon detid="419496594" count="1" value="57" id="1902007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  4   Id 419496594 " fill="rgb(255,142,0)" points="1185.31,673.328 1186.34,677.733 1193.66,677.733 " />
<svg:polygon detid="419496466" count="1" value="57" id="1902008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  4   Id 419496466 " fill="rgb(255,142,0)" points="1173.73,674.951 1176.66,679.049 1183.74,677.933 " />
<svg:polygon detid="419496598" count="1" value="57" id="1902009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  5   Id 419496598 " fill="rgb(255,142,0)" points="1163.26,678.281 1167.9,681.793 1174.25,679.638 " />
<svg:polygon detid="419496470" count="1" value="57" id="1902010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  5   Id 419496470 " fill="rgb(255,142,0)" points="1154.62,683.091 1160.64,685.778 1165.82,682.731 " />
<svg:polygon detid="419496602" count="1" value="57" id="1902011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  6   Id 419496602 " fill="rgb(255,142,0)" points="1148.39,689.054 1155.39,690.733 1159.05,687 " />
<svg:polygon detid="419496474" count="1" value="57" id="1902012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  6   Id 419496474 " fill="rgb(255,142,0)" points="1144.99,695.763 1152.49,696.318 1154.38,692.155 " />
<svg:polygon detid="419496606" count="1" value="57" id="1902013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  7   Id 419496606 " fill="rgb(255,142,0)" points="1144.66,702.76 1152.15,702.155 1152.15,697.845 " />
<svg:polygon detid="419496478" count="1" value="57" id="1902014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  7   Id 419496478 " fill="rgb(255,142,0)" points="1147.42,709.569 1154.38,707.845 1152.49,703.682 " />
<svg:polygon detid="419496610" count="1" value="57" id="1902015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  8   Id 419496610 " fill="rgb(255,142,0)" points="1153.08,715.726 1159.05,713 1155.39,709.267 " />
<svg:polygon detid="419496482" count="1" value="57" id="1902016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  8   Id 419496482 " fill="rgb(255,142,0)" points="1161.26,720.812 1165.82,717.269 1160.64,714.222 " />
<svg:polygon detid="419496614" count="1" value="57" id="1902017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  9   Id 419496614 " fill="rgb(255,142,0)" points="1171.39,724.479 1174.25,720.362 1167.9,718.207 " />
<svg:polygon detid="419496486" count="1" value="57" id="1902018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  9   Id 419496486 " fill="rgb(255,142,0)" points="1182.8,726.478 1183.74,722.067 1176.66,720.951 " />
<svg:polygon detid="419496618" count="1" value="57" id="1902019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  10   Id 419496618 " fill="rgb(255,142,0)" points="1194.69,726.672 1193.66,722.267 1186.34,722.267 " />
<svg:polygon detid="419496490" count="1" value="57" id="1902020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  10   Id 419496490 " fill="rgb(255,142,0)" points="1206.27,725.049 1203.34,720.951 1196.26,722.067 " />
<svg:polygon detid="419496622" count="1" value="57" id="1902021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  11   Id 419496622 " fill="rgb(255,142,0)" points="1216.74,721.719 1212.1,718.207 1205.75,720.362 " />
<svg:polygon detid="419496494" count="1" value="57" id="1902022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  11   Id 419496494 " fill="rgb(255,142,0)" points="1225.38,716.909 1219.36,714.222 1214.18,717.269 " />
<svg:polygon detid="419496626" count="1" value="57" id="1902023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  12   Id 419496626 " fill="rgb(255,142,0)" points="1231.61,710.946 1224.61,709.267 1220.95,713 " />
<svg:polygon detid="419496498" count="1" value="57" id="1902024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  12   Id 419496498 " fill="rgb(255,142,0)" points="1235.01,704.237 1227.51,703.682 1225.62,707.845 " />
<svg:polygon detid="419496581" count="1" value="57" id="1902101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  1  stereo Id 419496581 " fill="rgb(255,142,0)" points="1227.85,702.155 1235.34,702.76 1235.34,697.24 " />
<svg:polygon detid="419496453" count="1" value="57" id="1902102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  1  stereo Id 419496453 " fill="rgb(255,142,0)" points="1227.51,696.318 1235.01,695.763 1232.58,690.431 " />
<svg:polygon detid="419496585" count="1" value="57" id="1902103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  2  stereo Id 419496585 " fill="rgb(255,142,0)" points="1224.61,690.733 1231.61,689.054 1226.92,684.274 " />
<svg:polygon detid="419496457" count="1" value="57" id="1902104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  2  stereo Id 419496457 " fill="rgb(255,142,0)" points="1219.36,685.778 1225.38,683.091 1218.74,679.188 " />
<svg:polygon detid="419496589" count="1" value="57" id="1902105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  3  stereo Id 419496589 " fill="rgb(255,142,0)" points="1212.1,681.793 1216.74,678.281 1208.61,675.521 " />
<svg:polygon detid="419496461" count="1" value="57" id="1902106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  3  stereo Id 419496461 " fill="rgb(255,142,0)" points="1203.34,679.049 1206.27,674.951 1197.2,673.522 " />
<svg:polygon detid="419496593" count="1" value="57" id="1902107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  4  stereo Id 419496593 " fill="rgb(255,142,0)" points="1193.66,677.733 1194.69,673.328 1185.31,673.328 " />
<svg:polygon detid="419496465" count="1" value="57" id="1902108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  4  stereo Id 419496465 " fill="rgb(255,142,0)" points="1183.74,677.933 1182.8,673.522 1173.73,674.951 " />
<svg:polygon detid="419496597" count="1" value="57" id="1902109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  5  stereo Id 419496597 " fill="rgb(255,142,0)" points="1174.25,679.638 1171.39,675.521 1163.26,678.281 " />
<svg:polygon detid="419496469" count="1" value="57" id="1902110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  5  stereo Id 419496469 " fill="rgb(255,142,0)" points="1165.82,682.731 1161.26,679.188 1154.62,683.091 " />
<svg:polygon detid="419496601" count="1" value="57" id="1902111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  6  stereo Id 419496601 " fill="rgb(255,142,0)" points="1159.05,687 1153.08,684.274 1148.39,689.054 " />
<svg:polygon detid="419496473" count="1" value="57" id="1902112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  6  stereo Id 419496473 " fill="rgb(255,142,0)" points="1154.38,692.155 1147.42,690.431 1144.99,695.763 " />
<svg:polygon detid="419496605" count="1" value="57" id="1902113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  7  stereo Id 419496605 " fill="rgb(255,142,0)" points="1152.15,697.845 1144.66,697.24 1144.66,702.76 " />
<svg:polygon detid="419496477" count="1" value="57" id="1902114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  7  stereo Id 419496477 " fill="rgb(255,142,0)" points="1152.49,703.682 1144.99,704.237 1147.42,709.569 " />
<svg:polygon detid="419496609" count="1" value="57" id="1902115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  8  stereo Id 419496609 " fill="rgb(255,142,0)" points="1155.39,709.267 1148.39,710.946 1153.08,715.726 " />
<svg:polygon detid="419496481" count="1" value="57" id="1902116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  8  stereo Id 419496481 " fill="rgb(255,142,0)" points="1160.64,714.222 1154.62,716.909 1161.26,720.812 " />
<svg:polygon detid="419496613" count="1" value="57" id="1902117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  9  stereo Id 419496613 " fill="rgb(255,142,0)" points="1167.9,718.207 1163.26,721.719 1171.39,724.479 " />
<svg:polygon detid="419496485" count="1" value="57" id="1902118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  9  stereo Id 419496485 " fill="rgb(255,142,0)" points="1176.66,720.951 1173.73,725.049 1182.8,726.478 " />
<svg:polygon detid="419496617" count="1" value="57" id="1902119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  10  stereo Id 419496617 " fill="rgb(255,142,0)" points="1186.34,722.267 1185.31,726.672 1194.69,726.672 " />
<svg:polygon detid="419496489" count="1" value="57" id="1902120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  10  stereo Id 419496489 " fill="rgb(255,142,0)" points="1196.26,722.067 1197.2,726.478 1206.27,725.049 " />
<svg:polygon detid="419496621" count="1" value="57" id="1902121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  11  stereo Id 419496621 " fill="rgb(255,142,0)" points="1205.75,720.362 1208.61,724.479 1216.74,721.719 " />
<svg:polygon detid="419496493" count="1" value="57" id="1902122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  11  stereo Id 419496493 " fill="rgb(255,142,0)" points="1214.18,717.269 1218.74,720.812 1225.38,716.909 " />
<svg:polygon detid="419496625" count="1" value="57" id="1902123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  backward  module  12  stereo Id 419496625 " fill="rgb(255,142,0)" points="1220.95,713 1226.92,715.726 1231.61,710.946 " />
<svg:polygon detid="419496497" count="1" value="57" id="1902124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 2  forward  module  12  stereo Id 419496497 " fill="rgb(255,142,0)" points="1225.62,707.845 1232.58,709.569 1235.01,704.237 " />
<svg:polygon detid="419496836" count="1" value="57" id="1903001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  1   Id 419496836 " fill="rgb(255,142,0)" points="1236,701.575 1245.41,702.03 1245.41,697.97 1236,698.425 " />
<svg:polygon detid="419496708" count="1" value="57" id="1903002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  1   Id 419496708 " fill="rgb(255,142,0)" points="1235.86,697.322 1245.26,696.907 1244.18,692.897 1235.02,694.211 " />
<svg:polygon detid="419496840" count="1" value="57" id="1903003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  2   Id 419496840 " fill="rgb(255,142,0)" points="1234.58,693.135 1243.76,691.859 1241.63,687.998 1232.93,690.14 " />
<svg:polygon detid="419496712" count="1" value="57" id="1903004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  2   Id 419496712 " fill="rgb(255,142,0)" points="1232.21,689.118 1240.93,687.012 1237.8,683.395 1229.78,686.311 " />
<svg:polygon detid="419496844" count="1" value="57" id="1903005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  3   Id 419496844 " fill="rgb(255,142,0)" points="1228.79,685.368 1236.85,682.485 1232.8,679.201 1225.64,682.819 " />
<svg:polygon detid="419496716" count="1" value="57" id="1903006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  3   Id 419496716 " fill="rgb(255,142,0)" points="1224.42,681.978 1231.62,678.39 1226.74,675.519 1220.64,679.751 " />
<svg:polygon detid="419496848" count="1" value="57" id="1903007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  4   Id 419496848 " fill="rgb(255,142,0)" points="1219.21,679.032 1225.36,674.826 1219.77,672.44 1214.87,677.181 " />
<svg:polygon detid="419496720" count="1" value="57" id="1903008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  4   Id 419496720 " fill="rgb(255,142,0)" points="1213.27,676.603 1218.23,671.882 1212.08,670.039 1208.5,675.173 " />
<svg:polygon detid="419496852" count="1" value="57" id="1903009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  5   Id 419496852 " fill="rgb(255,142,0)" points="1206.76,674.75 1210.4,669.631 1203.84,668.376 1201.67,673.776 " />
<svg:polygon detid="419496724" count="1" value="57" id="1903010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  5   Id 419496724 " fill="rgb(255,142,0)" points="1199.84,673.518 1202.08,668.127 1195.26,667.492 1194.55,673.025 " />
<svg:polygon detid="419496856" count="1" value="57" id="1903011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  6   Id 419496856 " fill="rgb(255,142,0)" points="1192.68,672.938 1193.45,667.408 1186.55,667.408 1187.32,672.938 " />
<svg:polygon detid="419496728" count="1" value="57" id="1903012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  6   Id 419496728 " fill="rgb(255,142,0)" points="1185.45,673.025 1184.74,667.492 1177.92,668.127 1180.16,673.518 " />
<svg:polygon detid="419496860" count="1" value="57" id="1903013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  7   Id 419496860 " fill="rgb(255,142,0)" points="1178.33,673.776 1176.16,668.376 1169.6,669.631 1173.24,674.75 " />
<svg:polygon detid="419496732" count="1" value="57" id="1903014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  7   Id 419496732 " fill="rgb(255,142,0)" points="1171.5,675.173 1167.92,670.039 1161.77,671.882 1166.73,676.603 " />
<svg:polygon detid="419496864" count="1" value="57" id="1903015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  8   Id 419496864 " fill="rgb(255,142,0)" points="1165.13,677.181 1160.23,672.44 1154.64,674.826 1160.79,679.032 " />
<svg:polygon detid="419496736" count="1" value="57" id="1903016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  8   Id 419496736 " fill="rgb(255,142,0)" points="1159.36,679.751 1153.26,675.519 1148.38,678.39 1155.58,681.978 " />
<svg:polygon detid="419496868" count="1" value="57" id="1903017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  9   Id 419496868 " fill="rgb(255,142,0)" points="1154.36,682.819 1147.2,679.201 1143.15,682.485 1151.21,685.368 " />
<svg:polygon detid="419496740" count="1" value="57" id="1903018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  9   Id 419496740 " fill="rgb(255,142,0)" points="1150.22,686.311 1142.2,683.395 1139.07,687.012 1147.79,689.118 " />
<svg:polygon detid="419496872" count="1" value="57" id="1903019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  10   Id 419496872 " fill="rgb(255,142,0)" points="1147.07,690.14 1138.37,687.998 1136.24,691.859 1145.42,693.135 " />
<svg:polygon detid="419496744" count="1" value="57" id="1903020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  10   Id 419496744 " fill="rgb(255,142,0)" points="1144.98,694.211 1135.82,692.897 1134.74,696.907 1144.14,697.322 " />
<svg:polygon detid="419496876" count="1" value="57" id="1903021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  11   Id 419496876 " fill="rgb(255,142,0)" points="1144,698.425 1134.59,697.97 1134.59,702.03 1144,701.575 " />
<svg:polygon detid="419496748" count="1" value="57" id="1903022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  11   Id 419496748 " fill="rgb(255,142,0)" points="1144.14,702.678 1134.74,703.093 1135.82,707.103 1144.98,705.789 " />
<svg:polygon detid="419496880" count="1" value="57" id="1903023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  12   Id 419496880 " fill="rgb(255,142,0)" points="1145.42,706.865 1136.24,708.141 1138.37,712.002 1147.07,709.86 " />
<svg:polygon detid="419496752" count="1" value="57" id="1903024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  12   Id 419496752 " fill="rgb(255,142,0)" points="1147.79,710.882 1139.07,712.988 1142.2,716.605 1150.22,713.689 " />
<svg:polygon detid="419496884" count="1" value="57" id="1903025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  13   Id 419496884 " fill="rgb(255,142,0)" points="1151.21,714.632 1143.15,717.515 1147.2,720.799 1154.36,717.181 " />
<svg:polygon detid="419496756" count="1" value="57" id="1903026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  13   Id 419496756 " fill="rgb(255,142,0)" points="1155.58,718.022 1148.38,721.61 1153.26,724.481 1159.36,720.249 " />
<svg:polygon detid="419496888" count="1" value="57" id="1903027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  14   Id 419496888 " fill="rgb(255,142,0)" points="1160.79,720.968 1154.64,725.174 1160.23,727.56 1165.13,722.819 " />
<svg:polygon detid="419496760" count="1" value="57" id="1903028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  14   Id 419496760 " fill="rgb(255,142,0)" points="1166.73,723.397 1161.77,728.118 1167.92,729.961 1171.5,724.827 " />
<svg:polygon detid="419496892" count="1" value="57" id="1903029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  15   Id 419496892 " fill="rgb(255,142,0)" points="1173.24,725.25 1169.6,730.369 1176.16,731.624 1178.33,726.224 " />
<svg:polygon detid="419496764" count="1" value="57" id="1903030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  15   Id 419496764 " fill="rgb(255,142,0)" points="1180.16,726.482 1177.92,731.873 1184.74,732.508 1185.45,726.975 " />
<svg:polygon detid="419496896" count="1" value="57" id="1903031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  16   Id 419496896 " fill="rgb(255,142,0)" points="1187.32,727.062 1186.55,732.592 1193.45,732.592 1192.68,727.062 " />
<svg:polygon detid="419496768" count="1" value="57" id="1903032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  16   Id 419496768 " fill="rgb(255,142,0)" points="1194.55,726.975 1195.26,732.508 1202.08,731.873 1199.84,726.482 " />
<svg:polygon detid="419496900" count="1" value="57" id="1903033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  17   Id 419496900 " fill="rgb(255,142,0)" points="1201.67,726.224 1203.84,731.624 1210.4,730.369 1206.76,725.25 " />
<svg:polygon detid="419496772" count="1" value="57" id="1903034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  17   Id 419496772 " fill="rgb(255,142,0)" points="1208.5,724.827 1212.08,729.961 1218.23,728.118 1213.27,723.397 " />
<svg:polygon detid="419496904" count="1" value="57" id="1903035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  18   Id 419496904 " fill="rgb(255,142,0)" points="1214.87,722.819 1219.77,727.56 1225.36,725.174 1219.21,720.968 " />
<svg:polygon detid="419496776" count="1" value="57" id="1903036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  18   Id 419496776 " fill="rgb(255,142,0)" points="1220.64,720.249 1226.74,724.481 1231.62,721.61 1224.42,718.022 " />
<svg:polygon detid="419496908" count="1" value="57" id="1903037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  19   Id 419496908 " fill="rgb(255,142,0)" points="1225.64,717.181 1232.8,720.799 1236.85,717.515 1228.79,714.632 " />
<svg:polygon detid="419496780" count="1" value="57" id="1903038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  19   Id 419496780 " fill="rgb(255,142,0)" points="1229.78,713.689 1237.8,716.605 1240.93,712.988 1232.21,710.882 " />
<svg:polygon detid="419496912" count="1" value="57" id="1903039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  backward  module  20   Id 419496912 " fill="rgb(255,142,0)" points="1232.93,709.86 1241.63,712.002 1243.76,708.141 1234.58,706.865 " />
<svg:polygon detid="419496784" count="1" value="57" id="1903040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 1 ring 3  forward  module  20   Id 419496784 " fill="rgb(255,142,0)" points="1235.02,705.789 1244.18,707.103 1245.26,703.093 1235.86,702.678 " />
<svg:polygon detid="419561862" count="1" value="60" id="2001001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  1   Id 419561862 " fill="rgb(255,136,0)" points="1227.2,897.703 1217.79,898.455 1217.79,901.545 " />
<svg:polygon detid="419561734" count="1" value="60" id="2001002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  1   Id 419561734 " fill="rgb(255,136,0)" points="1224.92,892.117 1216.17,894.276 1217.53,897.261 " />
<svg:polygon detid="419561866" count="1" value="60" id="2001003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  2   Id 419561866 " fill="rgb(255,136,0)" points="1220.27,887.068 1212.76,890.487 1215.38,893.163 " />
<svg:polygon detid="419561738" count="1" value="60" id="2001004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  2   Id 419561738 " fill="rgb(255,136,0)" points="1213.54,882.901 1207.8,887.347 1211.51,889.532 " />
<svg:polygon detid="419561870" count="1" value="60" id="2001005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  3   Id 419561870 " fill="rgb(255,136,0)" points="1205.22,879.899 1201.62,885.069 1206.17,886.614 " />
<svg:polygon detid="419561742" count="1" value="60" id="2001006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  3   Id 419561742 " fill="rgb(255,136,0)" points="1195.86,878.267 1194.66,883.808 1199.73,884.608 " />
<svg:polygon detid="419561874" count="1" value="60" id="2001007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  4   Id 419561874 " fill="rgb(255,136,0)" points="1186.09,878.116 1187.37,883.651 1192.63,883.651 " />
<svg:polygon detid="419561746" count="1" value="60" id="2001008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  4   Id 419561746 " fill="rgb(255,136,0)" points="1176.6,879.456 1180.27,884.608 1185.34,883.808 " />
<svg:polygon detid="419561878" count="1" value="60" id="2001009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  5   Id 419561878 " fill="rgb(255,136,0)" points="1168.02,882.196 1173.83,886.614 1178.38,885.069 " />
<svg:polygon detid="419561750" count="1" value="60" id="2001010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  5   Id 419561750 " fill="rgb(255,136,0)" points="1160.93,886.15 1168.49,889.532 1172.2,887.347 " />
<svg:polygon detid="419561882" count="1" value="60" id="2001011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  6   Id 419561882 " fill="rgb(255,136,0)" points="1155.83,891.048 1164.62,893.163 1167.24,890.487 " />
<svg:polygon detid="419561754" count="1" value="60" id="2001012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  6   Id 419561754 " fill="rgb(255,136,0)" points="1153.05,896.555 1162.47,897.261 1163.83,894.276 " />
<svg:polygon detid="419561886" count="1" value="60" id="2001013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  7   Id 419561886 " fill="rgb(255,136,0)" points="1152.8,902.297 1162.21,901.545 1162.21,898.455 " />
<svg:polygon detid="419561758" count="1" value="60" id="2001014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  7   Id 419561758 " fill="rgb(255,136,0)" points="1155.08,907.883 1163.83,905.724 1162.47,902.739 " />
<svg:polygon detid="419561890" count="1" value="60" id="2001015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  8   Id 419561890 " fill="rgb(255,136,0)" points="1159.73,912.932 1167.24,909.513 1164.62,906.837 " />
<svg:polygon detid="419561762" count="1" value="60" id="2001016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  8   Id 419561762 " fill="rgb(255,136,0)" points="1166.46,917.099 1172.2,912.653 1168.49,910.468 " />
<svg:polygon detid="419561894" count="1" value="60" id="2001017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  9   Id 419561894 " fill="rgb(255,136,0)" points="1174.78,920.101 1178.38,914.931 1173.83,913.386 " />
<svg:polygon detid="419561766" count="1" value="60" id="2001018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  9   Id 419561766 " fill="rgb(255,136,0)" points="1184.14,921.733 1185.34,916.192 1180.27,915.392 " />
<svg:polygon detid="419561898" count="1" value="60" id="2001019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  10   Id 419561898 " fill="rgb(255,136,0)" points="1193.91,921.884 1192.63,916.349 1187.37,916.349 " />
<svg:polygon detid="419561770" count="1" value="60" id="2001020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  10   Id 419561770 " fill="rgb(255,136,0)" points="1203.4,920.544 1199.73,915.392 1194.66,916.192 " />
<svg:polygon detid="419561902" count="1" value="60" id="2001021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  11   Id 419561902 " fill="rgb(255,136,0)" points="1211.98,917.804 1206.17,913.386 1201.62,914.931 " />
<svg:polygon detid="419561774" count="1" value="60" id="2001022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  11   Id 419561774 " fill="rgb(255,136,0)" points="1219.07,913.85 1211.51,910.468 1207.8,912.653 " />
<svg:polygon detid="419561906" count="1" value="60" id="2001023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  12   Id 419561906 " fill="rgb(255,136,0)" points="1224.17,908.952 1215.38,906.837 1212.76,909.513 " />
<svg:polygon detid="419561778" count="1" value="60" id="2001024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  12   Id 419561778 " fill="rgb(255,136,0)" points="1226.95,903.445 1217.53,902.739 1216.17,905.724 " />
<svg:polygon detid="419561861" count="1" value="60" id="2001101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  1  stereo Id 419561861 " fill="rgb(255,136,0)" points="1217.79,901.545 1227.2,902.297 1227.2,897.703 " />
<svg:polygon detid="419561733" count="1" value="60" id="2001102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  1  stereo Id 419561733 " fill="rgb(255,136,0)" points="1217.53,897.261 1226.95,896.555 1224.92,892.117 " />
<svg:polygon detid="419561865" count="1" value="60" id="2001103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  2  stereo Id 419561865 " fill="rgb(255,136,0)" points="1215.38,893.163 1224.17,891.048 1220.27,887.068 " />
<svg:polygon detid="419561737" count="1" value="60" id="2001104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  2  stereo Id 419561737 " fill="rgb(255,136,0)" points="1211.51,889.532 1219.07,886.15 1213.54,882.901 " />
<svg:polygon detid="419561869" count="1" value="60" id="2001105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  3  stereo Id 419561869 " fill="rgb(255,136,0)" points="1206.17,886.614 1211.98,882.196 1205.22,879.899 " />
<svg:polygon detid="419561741" count="1" value="60" id="2001106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  3  stereo Id 419561741 " fill="rgb(255,136,0)" points="1199.73,884.608 1203.4,879.456 1195.86,878.267 " />
<svg:polygon detid="419561873" count="1" value="60" id="2001107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  4  stereo Id 419561873 " fill="rgb(255,136,0)" points="1192.63,883.651 1193.91,878.116 1186.09,878.116 " />
<svg:polygon detid="419561745" count="1" value="60" id="2001108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  4  stereo Id 419561745 " fill="rgb(255,136,0)" points="1185.34,883.808 1184.14,878.267 1176.6,879.456 " />
<svg:polygon detid="419561877" count="1" value="60" id="2001109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  5  stereo Id 419561877 " fill="rgb(255,136,0)" points="1178.38,885.069 1174.78,879.899 1168.02,882.196 " />
<svg:polygon detid="419561749" count="1" value="60" id="2001110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  5  stereo Id 419561749 " fill="rgb(255,136,0)" points="1172.2,887.347 1166.46,882.901 1160.93,886.15 " />
<svg:polygon detid="419561881" count="1" value="60" id="2001111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  6  stereo Id 419561881 " fill="rgb(255,136,0)" points="1167.24,890.487 1159.73,887.068 1155.83,891.048 " />
<svg:polygon detid="419561753" count="1" value="60" id="2001112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  6  stereo Id 419561753 " fill="rgb(255,136,0)" points="1163.83,894.276 1155.08,892.117 1153.05,896.555 " />
<svg:polygon detid="419561885" count="1" value="60" id="2001113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  7  stereo Id 419561885 " fill="rgb(255,136,0)" points="1162.21,898.455 1152.8,897.703 1152.8,902.297 " />
<svg:polygon detid="419561757" count="1" value="60" id="2001114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  7  stereo Id 419561757 " fill="rgb(255,136,0)" points="1162.47,902.739 1153.05,903.445 1155.08,907.883 " />
<svg:polygon detid="419561889" count="1" value="60" id="2001115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  8  stereo Id 419561889 " fill="rgb(255,136,0)" points="1164.62,906.837 1155.83,908.952 1159.73,912.932 " />
<svg:polygon detid="419561761" count="1" value="60" id="2001116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  8  stereo Id 419561761 " fill="rgb(255,136,0)" points="1168.49,910.468 1160.93,913.85 1166.46,917.099 " />
<svg:polygon detid="419561893" count="1" value="60" id="2001117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  9  stereo Id 419561893 " fill="rgb(255,136,0)" points="1173.83,913.386 1168.02,917.804 1174.78,920.101 " />
<svg:polygon detid="419561765" count="1" value="60" id="2001118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  9  stereo Id 419561765 " fill="rgb(255,136,0)" points="1180.27,915.392 1176.6,920.544 1184.14,921.733 " />
<svg:polygon detid="419561897" count="1" value="60" id="2001119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  10  stereo Id 419561897 " fill="rgb(255,136,0)" points="1187.37,916.349 1186.09,921.884 1193.91,921.884 " />
<svg:polygon detid="419561769" count="1" value="60" id="2001120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  10  stereo Id 419561769 " fill="rgb(255,136,0)" points="1194.66,916.192 1195.86,921.733 1203.4,920.544 " />
<svg:polygon detid="419561901" count="1" value="60" id="2001121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  11  stereo Id 419561901 " fill="rgb(255,136,0)" points="1201.62,914.931 1205.22,920.101 1211.98,917.804 " />
<svg:polygon detid="419561773" count="1" value="60" id="2001122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  11  stereo Id 419561773 " fill="rgb(255,136,0)" points="1207.8,912.653 1213.54,917.099 1219.07,913.85 " />
<svg:polygon detid="419561905" count="1" value="60" id="2001123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  backward  module  12  stereo Id 419561905 " fill="rgb(255,136,0)" points="1212.76,909.513 1220.27,912.932 1224.17,908.952 " />
<svg:polygon detid="419561777" count="1" value="60" id="2001124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 1  forward  module  12  stereo Id 419561777 " fill="rgb(255,136,0)" points="1216.17,905.724 1224.92,907.883 1226.95,903.445 " />
<svg:polygon detid="419562118" count="1" value="60" id="2002001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  1   Id 419562118 " fill="rgb(255,136,0)" points="1235.34,897.24 1227.85,897.845 1227.85,902.155 " />
<svg:polygon detid="419561990" count="1" value="60" id="2002002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  1   Id 419561990 " fill="rgb(255,136,0)" points="1232.58,890.431 1225.62,892.155 1227.51,896.318 " />
<svg:polygon detid="419562122" count="1" value="60" id="2002003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  2   Id 419562122 " fill="rgb(255,136,0)" points="1226.92,884.274 1220.95,887 1224.61,890.733 " />
<svg:polygon detid="419561994" count="1" value="60" id="2002004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  2   Id 419561994 " fill="rgb(255,136,0)" points="1218.74,879.188 1214.18,882.731 1219.36,885.778 " />
<svg:polygon detid="419562126" count="1" value="60" id="2002005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  3   Id 419562126 " fill="rgb(255,136,0)" points="1208.61,875.521 1205.75,879.638 1212.1,881.793 " />
<svg:polygon detid="419561998" count="1" value="60" id="2002006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  3   Id 419561998 " fill="rgb(255,136,0)" points="1197.2,873.522 1196.26,877.933 1203.34,879.049 " />
<svg:polygon detid="419562130" count="1" value="60" id="2002007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  4   Id 419562130 " fill="rgb(255,136,0)" points="1185.31,873.328 1186.34,877.733 1193.66,877.733 " />
<svg:polygon detid="419562002" count="1" value="60" id="2002008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  4   Id 419562002 " fill="rgb(255,136,0)" points="1173.73,874.951 1176.66,879.049 1183.74,877.933 " />
<svg:polygon detid="419562134" count="1" value="60" id="2002009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  5   Id 419562134 " fill="rgb(255,136,0)" points="1163.26,878.281 1167.9,881.793 1174.25,879.638 " />
<svg:polygon detid="419562006" count="1" value="60" id="2002010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  5   Id 419562006 " fill="rgb(255,136,0)" points="1154.62,883.091 1160.64,885.778 1165.82,882.731 " />
<svg:polygon detid="419562138" count="1" value="60" id="2002011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  6   Id 419562138 " fill="rgb(255,136,0)" points="1148.39,889.054 1155.39,890.733 1159.05,887 " />
<svg:polygon detid="419562010" count="1" value="60" id="2002012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  6   Id 419562010 " fill="rgb(255,136,0)" points="1144.99,895.763 1152.49,896.318 1154.38,892.155 " />
<svg:polygon detid="419562142" count="1" value="60" id="2002013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  7   Id 419562142 " fill="rgb(255,136,0)" points="1144.66,902.76 1152.15,902.155 1152.15,897.845 " />
<svg:polygon detid="419562014" count="1" value="60" id="2002014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  7   Id 419562014 " fill="rgb(255,136,0)" points="1147.42,909.569 1154.38,907.845 1152.49,903.682 " />
<svg:polygon detid="419562146" count="1" value="60" id="2002015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  8   Id 419562146 " fill="rgb(255,136,0)" points="1153.08,915.726 1159.05,913 1155.39,909.267 " />
<svg:polygon detid="419562018" count="1" value="60" id="2002016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  8   Id 419562018 " fill="rgb(255,136,0)" points="1161.26,920.812 1165.82,917.269 1160.64,914.222 " />
<svg:polygon detid="419562150" count="1" value="60" id="2002017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  9   Id 419562150 " fill="rgb(255,136,0)" points="1171.39,924.479 1174.25,920.362 1167.9,918.207 " />
<svg:polygon detid="419562022" count="1" value="60" id="2002018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  9   Id 419562022 " fill="rgb(255,136,0)" points="1182.8,926.478 1183.74,922.067 1176.66,920.951 " />
<svg:polygon detid="419562154" count="1" value="60" id="2002019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  10   Id 419562154 " fill="rgb(255,136,0)" points="1194.69,926.672 1193.66,922.267 1186.34,922.267 " />
<svg:polygon detid="419562026" count="1" value="60" id="2002020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  10   Id 419562026 " fill="rgb(255,136,0)" points="1206.27,925.049 1203.34,920.951 1196.26,922.067 " />
<svg:polygon detid="419562158" count="1" value="60" id="2002021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  11   Id 419562158 " fill="rgb(255,136,0)" points="1216.74,921.719 1212.1,918.207 1205.75,920.362 " />
<svg:polygon detid="419562030" count="1" value="60" id="2002022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  11   Id 419562030 " fill="rgb(255,136,0)" points="1225.38,916.909 1219.36,914.222 1214.18,917.269 " />
<svg:polygon detid="419562162" count="1" value="60" id="2002023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  12   Id 419562162 " fill="rgb(255,136,0)" points="1231.61,910.946 1224.61,909.267 1220.95,913 " />
<svg:polygon detid="419562034" count="1" value="60" id="2002024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  12   Id 419562034 " fill="rgb(255,136,0)" points="1235.01,904.237 1227.51,903.682 1225.62,907.845 " />
<svg:polygon detid="419562117" count="1" value="60" id="2002101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  1  stereo Id 419562117 " fill="rgb(255,136,0)" points="1227.85,902.155 1235.34,902.76 1235.34,897.24 " />
<svg:polygon detid="419561989" count="1" value="60" id="2002102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  1  stereo Id 419561989 " fill="rgb(255,136,0)" points="1227.51,896.318 1235.01,895.763 1232.58,890.431 " />
<svg:polygon detid="419562121" count="1" value="60" id="2002103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  2  stereo Id 419562121 " fill="rgb(255,136,0)" points="1224.61,890.733 1231.61,889.054 1226.92,884.274 " />
<svg:polygon detid="419561993" count="1" value="60" id="2002104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  2  stereo Id 419561993 " fill="rgb(255,136,0)" points="1219.36,885.778 1225.38,883.091 1218.74,879.188 " />
<svg:polygon detid="419562125" count="1" value="60" id="2002105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  3  stereo Id 419562125 " fill="rgb(255,136,0)" points="1212.1,881.793 1216.74,878.281 1208.61,875.521 " />
<svg:polygon detid="419561997" count="1" value="60" id="2002106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  3  stereo Id 419561997 " fill="rgb(255,136,0)" points="1203.34,879.049 1206.27,874.951 1197.2,873.522 " />
<svg:polygon detid="419562129" count="1" value="60" id="2002107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  4  stereo Id 419562129 " fill="rgb(255,136,0)" points="1193.66,877.733 1194.69,873.328 1185.31,873.328 " />
<svg:polygon detid="419562001" count="1" value="60" id="2002108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  4  stereo Id 419562001 " fill="rgb(255,136,0)" points="1183.74,877.933 1182.8,873.522 1173.73,874.951 " />
<svg:polygon detid="419562133" count="1" value="60" id="2002109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  5  stereo Id 419562133 " fill="rgb(255,136,0)" points="1174.25,879.638 1171.39,875.521 1163.26,878.281 " />
<svg:polygon detid="419562005" count="1" value="60" id="2002110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  5  stereo Id 419562005 " fill="rgb(255,136,0)" points="1165.82,882.731 1161.26,879.188 1154.62,883.091 " />
<svg:polygon detid="419562137" count="1" value="60" id="2002111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  6  stereo Id 419562137 " fill="rgb(255,136,0)" points="1159.05,887 1153.08,884.274 1148.39,889.054 " />
<svg:polygon detid="419562009" count="1" value="60" id="2002112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  6  stereo Id 419562009 " fill="rgb(255,136,0)" points="1154.38,892.155 1147.42,890.431 1144.99,895.763 " />
<svg:polygon detid="419562141" count="1" value="60" id="2002113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  7  stereo Id 419562141 " fill="rgb(255,136,0)" points="1152.15,897.845 1144.66,897.24 1144.66,902.76 " />
<svg:polygon detid="419562013" count="1" value="60" id="2002114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  7  stereo Id 419562013 " fill="rgb(255,136,0)" points="1152.49,903.682 1144.99,904.237 1147.42,909.569 " />
<svg:polygon detid="419562145" count="1" value="60" id="2002115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  8  stereo Id 419562145 " fill="rgb(255,136,0)" points="1155.39,909.267 1148.39,910.946 1153.08,915.726 " />
<svg:polygon detid="419562017" count="1" value="60" id="2002116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  8  stereo Id 419562017 " fill="rgb(255,136,0)" points="1160.64,914.222 1154.62,916.909 1161.26,920.812 " />
<svg:polygon detid="419562149" count="1" value="60" id="2002117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  9  stereo Id 419562149 " fill="rgb(255,136,0)" points="1167.9,918.207 1163.26,921.719 1171.39,924.479 " />
<svg:polygon detid="419562021" count="1" value="60" id="2002118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  9  stereo Id 419562021 " fill="rgb(255,136,0)" points="1176.66,920.951 1173.73,925.049 1182.8,926.478 " />
<svg:polygon detid="419562153" count="1" value="60" id="2002119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  10  stereo Id 419562153 " fill="rgb(255,136,0)" points="1186.34,922.267 1185.31,926.672 1194.69,926.672 " />
<svg:polygon detid="419562025" count="1" value="60" id="2002120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  10  stereo Id 419562025 " fill="rgb(255,136,0)" points="1196.26,922.067 1197.2,926.478 1206.27,925.049 " />
<svg:polygon detid="419562157" count="1" value="60" id="2002121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  11  stereo Id 419562157 " fill="rgb(255,136,0)" points="1205.75,920.362 1208.61,924.479 1216.74,921.719 " />
<svg:polygon detid="419562029" count="1" value="60" id="2002122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  11  stereo Id 419562029 " fill="rgb(255,136,0)" points="1214.18,917.269 1218.74,920.812 1225.38,916.909 " />
<svg:polygon detid="419562161" count="1" value="60" id="2002123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  backward  module  12  stereo Id 419562161 " fill="rgb(255,136,0)" points="1220.95,913 1226.92,915.726 1231.61,910.946 " />
<svg:polygon detid="419562033" count="1" value="60" id="2002124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 2  forward  module  12  stereo Id 419562033 " fill="rgb(255,136,0)" points="1225.62,907.845 1232.58,909.569 1235.01,904.237 " />
<svg:polygon detid="419562372" count="1" value="60" id="2003001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  1   Id 419562372 " fill="rgb(255,136,0)" points="1236,901.575 1245.41,902.03 1245.41,897.97 1236,898.425 " />
<svg:polygon detid="419562244" count="1" value="60" id="2003002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  1   Id 419562244 " fill="rgb(255,136,0)" points="1235.86,897.322 1245.26,896.907 1244.18,892.897 1235.02,894.211 " />
<svg:polygon detid="419562376" count="1" value="60" id="2003003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  2   Id 419562376 " fill="rgb(255,136,0)" points="1234.58,893.135 1243.76,891.859 1241.63,887.998 1232.93,890.14 " />
<svg:polygon detid="419562248" count="1" value="60" id="2003004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  2   Id 419562248 " fill="rgb(255,136,0)" points="1232.21,889.118 1240.93,887.012 1237.8,883.395 1229.78,886.311 " />
<svg:polygon detid="419562380" count="1" value="60" id="2003005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  3   Id 419562380 " fill="rgb(255,136,0)" points="1228.79,885.368 1236.85,882.485 1232.8,879.201 1225.64,882.819 " />
<svg:polygon detid="419562252" count="1" value="60" id="2003006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  3   Id 419562252 " fill="rgb(255,136,0)" points="1224.42,881.978 1231.62,878.39 1226.74,875.519 1220.64,879.751 " />
<svg:polygon detid="419562384" count="1" value="60" id="2003007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  4   Id 419562384 " fill="rgb(255,136,0)" points="1219.21,879.032 1225.36,874.826 1219.77,872.44 1214.87,877.181 " />
<svg:polygon detid="419562256" count="1" value="60" id="2003008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  4   Id 419562256 " fill="rgb(255,136,0)" points="1213.27,876.603 1218.23,871.882 1212.08,870.039 1208.5,875.173 " />
<svg:polygon detid="419562388" count="1" value="60" id="2003009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  5   Id 419562388 " fill="rgb(255,136,0)" points="1206.76,874.75 1210.4,869.631 1203.84,868.376 1201.67,873.776 " />
<svg:polygon detid="419562260" count="1" value="60" id="2003010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  5   Id 419562260 " fill="rgb(255,136,0)" points="1199.84,873.518 1202.08,868.127 1195.26,867.492 1194.55,873.025 " />
<svg:polygon detid="419562392" count="1" value="60" id="2003011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  6   Id 419562392 " fill="rgb(255,136,0)" points="1192.68,872.938 1193.45,867.408 1186.55,867.408 1187.32,872.938 " />
<svg:polygon detid="419562264" count="1" value="60" id="2003012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  6   Id 419562264 " fill="rgb(255,136,0)" points="1185.45,873.025 1184.74,867.492 1177.92,868.127 1180.16,873.518 " />
<svg:polygon detid="419562396" count="1" value="60" id="2003013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  7   Id 419562396 " fill="rgb(255,136,0)" points="1178.33,873.776 1176.16,868.376 1169.6,869.631 1173.24,874.75 " />
<svg:polygon detid="419562268" count="1" value="60" id="2003014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  7   Id 419562268 " fill="rgb(255,136,0)" points="1171.5,875.173 1167.92,870.039 1161.77,871.882 1166.73,876.603 " />
<svg:polygon detid="419562400" count="1" value="60" id="2003015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  8   Id 419562400 " fill="rgb(255,136,0)" points="1165.13,877.181 1160.23,872.44 1154.64,874.826 1160.79,879.032 " />
<svg:polygon detid="419562272" count="1" value="60" id="2003016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  8   Id 419562272 " fill="rgb(255,136,0)" points="1159.36,879.751 1153.26,875.519 1148.38,878.39 1155.58,881.978 " />
<svg:polygon detid="419562404" count="1" value="60" id="2003017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  9   Id 419562404 " fill="rgb(255,136,0)" points="1154.36,882.819 1147.2,879.201 1143.15,882.485 1151.21,885.368 " />
<svg:polygon detid="419562276" count="1" value="60" id="2003018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  9   Id 419562276 " fill="rgb(255,136,0)" points="1150.22,886.311 1142.2,883.395 1139.07,887.012 1147.79,889.118 " />
<svg:polygon detid="419562408" count="1" value="60" id="2003019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  10   Id 419562408 " fill="rgb(255,136,0)" points="1147.07,890.14 1138.37,887.998 1136.24,891.859 1145.42,893.135 " />
<svg:polygon detid="419562280" count="1" value="60" id="2003020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  10   Id 419562280 " fill="rgb(255,136,0)" points="1144.98,894.211 1135.82,892.897 1134.74,896.907 1144.14,897.322 " />
<svg:polygon detid="419562412" count="1" value="60" id="2003021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  11   Id 419562412 " fill="rgb(255,136,0)" points="1144,898.425 1134.59,897.97 1134.59,902.03 1144,901.575 " />
<svg:polygon detid="419562284" count="1" value="60" id="2003022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  11   Id 419562284 " fill="rgb(255,136,0)" points="1144.14,902.678 1134.74,903.093 1135.82,907.103 1144.98,905.789 " />
<svg:polygon detid="419562416" count="1" value="60" id="2003023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  12   Id 419562416 " fill="rgb(255,136,0)" points="1145.42,906.865 1136.24,908.141 1138.37,912.002 1147.07,909.86 " />
<svg:polygon detid="419562288" count="1" value="60" id="2003024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  12   Id 419562288 " fill="rgb(255,136,0)" points="1147.79,910.882 1139.07,912.988 1142.2,916.605 1150.22,913.689 " />
<svg:polygon detid="419562420" count="1" value="60" id="2003025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  13   Id 419562420 " fill="rgb(255,136,0)" points="1151.21,914.632 1143.15,917.515 1147.2,920.799 1154.36,917.181 " />
<svg:polygon detid="419562292" count="1" value="60" id="2003026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  13   Id 419562292 " fill="rgb(255,136,0)" points="1155.58,918.022 1148.38,921.61 1153.26,924.481 1159.36,920.249 " />
<svg:polygon detid="419562424" count="1" value="60" id="2003027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  14   Id 419562424 " fill="rgb(255,136,0)" points="1160.79,920.968 1154.64,925.174 1160.23,927.56 1165.13,922.819 " />
<svg:polygon detid="419562296" count="1" value="60" id="2003028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  14   Id 419562296 " fill="rgb(255,136,0)" points="1166.73,923.397 1161.77,928.118 1167.92,929.961 1171.5,924.827 " />
<svg:polygon detid="419562428" count="1" value="60" id="2003029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  15   Id 419562428 " fill="rgb(255,136,0)" points="1173.24,925.25 1169.6,930.369 1176.16,931.624 1178.33,926.224 " />
<svg:polygon detid="419562300" count="1" value="60" id="2003030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  15   Id 419562300 " fill="rgb(255,136,0)" points="1180.16,926.482 1177.92,931.873 1184.74,932.508 1185.45,926.975 " />
<svg:polygon detid="419562432" count="1" value="60" id="2003031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  16   Id 419562432 " fill="rgb(255,136,0)" points="1187.32,927.062 1186.55,932.592 1193.45,932.592 1192.68,927.062 " />
<svg:polygon detid="419562304" count="1" value="60" id="2003032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  16   Id 419562304 " fill="rgb(255,136,0)" points="1194.55,926.975 1195.26,932.508 1202.08,931.873 1199.84,926.482 " />
<svg:polygon detid="419562436" count="1" value="60" id="2003033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  17   Id 419562436 " fill="rgb(255,136,0)" points="1201.67,926.224 1203.84,931.624 1210.4,930.369 1206.76,925.25 " />
<svg:polygon detid="419562308" count="1" value="60" id="2003034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  17   Id 419562308 " fill="rgb(255,136,0)" points="1208.5,924.827 1212.08,929.961 1218.23,928.118 1213.27,923.397 " />
<svg:polygon detid="419562440" count="1" value="60" id="2003035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  18   Id 419562440 " fill="rgb(255,136,0)" points="1214.87,922.819 1219.77,927.56 1225.36,925.174 1219.21,920.968 " />
<svg:polygon detid="419562312" count="1" value="60" id="2003036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  18   Id 419562312 " fill="rgb(255,136,0)" points="1220.64,920.249 1226.74,924.481 1231.62,921.61 1224.42,918.022 " />
<svg:polygon detid="419562444" count="1" value="60" id="2003037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  19   Id 419562444 " fill="rgb(255,136,0)" points="1225.64,917.181 1232.8,920.799 1236.85,917.515 1228.79,914.632 " />
<svg:polygon detid="419562316" count="1" value="60" id="2003038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  19   Id 419562316 " fill="rgb(255,136,0)" points="1229.78,913.689 1237.8,916.605 1240.93,912.988 1232.21,910.882 " />
<svg:polygon detid="419562448" count="1" value="60" id="2003039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  backward  module  20   Id 419562448 " fill="rgb(255,136,0)" points="1232.93,909.86 1241.63,912.002 1243.76,908.141 1234.58,906.865 " />
<svg:polygon detid="419562320" count="1" value="60" id="2003040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 2 ring 3  forward  module  20   Id 419562320 " fill="rgb(255,136,0)" points="1235.02,905.789 1244.18,907.103 1245.26,903.093 1235.86,902.678 " />
<svg:polygon detid="419627398" count="1" value="63" id="2101001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  1   Id 419627398 " fill="rgb(255,130,0)" points="1227.2,1097.7 1217.79,1098.46 1217.79,1101.54 " />
<svg:polygon detid="419627270" count="1" value="63" id="2101002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  1   Id 419627270 " fill="rgb(255,130,0)" points="1224.92,1092.12 1216.17,1094.28 1217.53,1097.26 " />
<svg:polygon detid="419627402" count="1" value="63" id="2101003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  2   Id 419627402 " fill="rgb(255,130,0)" points="1220.27,1087.07 1212.76,1090.49 1215.38,1093.16 " />
<svg:polygon detid="419627274" count="1" value="63" id="2101004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  2   Id 419627274 " fill="rgb(255,130,0)" points="1213.54,1082.9 1207.8,1087.35 1211.51,1089.53 " />
<svg:polygon detid="419627406" count="1" value="63" id="2101005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  3   Id 419627406 " fill="rgb(255,130,0)" points="1205.22,1079.9 1201.62,1085.07 1206.17,1086.61 " />
<svg:polygon detid="419627278" count="1" value="63" id="2101006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  3   Id 419627278 " fill="rgb(255,130,0)" points="1195.86,1078.27 1194.66,1083.81 1199.73,1084.61 " />
<svg:polygon detid="419627410" count="1" value="63" id="2101007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  4   Id 419627410 " fill="rgb(255,130,0)" points="1186.09,1078.12 1187.37,1083.65 1192.63,1083.65 " />
<svg:polygon detid="419627282" count="1" value="63" id="2101008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  4   Id 419627282 " fill="rgb(255,130,0)" points="1176.6,1079.46 1180.27,1084.61 1185.34,1083.81 " />
<svg:polygon detid="419627414" count="1" value="63" id="2101009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  5   Id 419627414 " fill="rgb(255,130,0)" points="1168.02,1082.2 1173.83,1086.61 1178.38,1085.07 " />
<svg:polygon detid="419627286" count="1" value="63" id="2101010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  5   Id 419627286 " fill="rgb(255,130,0)" points="1160.93,1086.15 1168.49,1089.53 1172.2,1087.35 " />
<svg:polygon detid="419627418" count="1" value="63" id="2101011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  6   Id 419627418 " fill="rgb(255,130,0)" points="1155.83,1091.05 1164.62,1093.16 1167.24,1090.49 " />
<svg:polygon detid="419627290" count="1" value="63" id="2101012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  6   Id 419627290 " fill="rgb(255,130,0)" points="1153.05,1096.56 1162.47,1097.26 1163.83,1094.28 " />
<svg:polygon detid="419627422" count="1" value="63" id="2101013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  7   Id 419627422 " fill="rgb(255,130,0)" points="1152.8,1102.3 1162.21,1101.54 1162.21,1098.46 " />
<svg:polygon detid="419627294" count="1" value="63" id="2101014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  7   Id 419627294 " fill="rgb(255,130,0)" points="1155.08,1107.88 1163.83,1105.72 1162.47,1102.74 " />
<svg:polygon detid="419627426" count="1" value="63" id="2101015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  8   Id 419627426 " fill="rgb(255,130,0)" points="1159.73,1112.93 1167.24,1109.51 1164.62,1106.84 " />
<svg:polygon detid="419627298" count="1" value="63" id="2101016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  8   Id 419627298 " fill="rgb(255,130,0)" points="1166.46,1117.1 1172.2,1112.65 1168.49,1110.47 " />
<svg:polygon detid="419627430" count="1" value="63" id="2101017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  9   Id 419627430 " fill="rgb(255,130,0)" points="1174.78,1120.1 1178.38,1114.93 1173.83,1113.39 " />
<svg:polygon detid="419627302" count="1" value="63" id="2101018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  9   Id 419627302 " fill="rgb(255,130,0)" points="1184.14,1121.73 1185.34,1116.19 1180.27,1115.39 " />
<svg:polygon detid="419627434" count="1" value="63" id="2101019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  10   Id 419627434 " fill="rgb(255,130,0)" points="1193.91,1121.88 1192.63,1116.35 1187.37,1116.35 " />
<svg:polygon detid="419627306" count="1" value="63" id="2101020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  10   Id 419627306 " fill="rgb(255,130,0)" points="1203.4,1120.54 1199.73,1115.39 1194.66,1116.19 " />
<svg:polygon detid="419627438" count="1" value="63" id="2101021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  11   Id 419627438 " fill="rgb(255,130,0)" points="1211.98,1117.8 1206.17,1113.39 1201.62,1114.93 " />
<svg:polygon detid="419627310" count="1" value="63" id="2101022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  11   Id 419627310 " fill="rgb(255,130,0)" points="1219.07,1113.85 1211.51,1110.47 1207.8,1112.65 " />
<svg:polygon detid="419627442" count="1" value="63" id="2101023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  12   Id 419627442 " fill="rgb(255,130,0)" points="1224.17,1108.95 1215.38,1106.84 1212.76,1109.51 " />
<svg:polygon detid="419627314" count="1" value="63" id="2101024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  12   Id 419627314 " fill="rgb(255,130,0)" points="1226.95,1103.44 1217.53,1102.74 1216.17,1105.72 " />
<svg:polygon detid="419627397" count="1" value="63" id="2101101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  1  stereo Id 419627397 " fill="rgb(255,130,0)" points="1217.79,1101.54 1227.2,1102.3 1227.2,1097.7 " />
<svg:polygon detid="419627269" count="1" value="63" id="2101102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  1  stereo Id 419627269 " fill="rgb(255,130,0)" points="1217.53,1097.26 1226.95,1096.56 1224.92,1092.12 " />
<svg:polygon detid="419627401" count="1" value="63" id="2101103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  2  stereo Id 419627401 " fill="rgb(255,130,0)" points="1215.38,1093.16 1224.17,1091.05 1220.27,1087.07 " />
<svg:polygon detid="419627273" count="1" value="63" id="2101104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  2  stereo Id 419627273 " fill="rgb(255,130,0)" points="1211.51,1089.53 1219.07,1086.15 1213.54,1082.9 " />
<svg:polygon detid="419627405" count="1" value="63" id="2101105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  3  stereo Id 419627405 " fill="rgb(255,130,0)" points="1206.17,1086.61 1211.98,1082.2 1205.22,1079.9 " />
<svg:polygon detid="419627277" count="1" value="63" id="2101106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  3  stereo Id 419627277 " fill="rgb(255,130,0)" points="1199.73,1084.61 1203.4,1079.46 1195.86,1078.27 " />
<svg:polygon detid="419627409" count="1" value="63" id="2101107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  4  stereo Id 419627409 " fill="rgb(255,130,0)" points="1192.63,1083.65 1193.91,1078.12 1186.09,1078.12 " />
<svg:polygon detid="419627281" count="1" value="63" id="2101108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  4  stereo Id 419627281 " fill="rgb(255,130,0)" points="1185.34,1083.81 1184.14,1078.27 1176.6,1079.46 " />
<svg:polygon detid="419627413" count="1" value="63" id="2101109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  5  stereo Id 419627413 " fill="rgb(255,130,0)" points="1178.38,1085.07 1174.78,1079.9 1168.02,1082.2 " />
<svg:polygon detid="419627285" count="1" value="63" id="2101110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  5  stereo Id 419627285 " fill="rgb(255,130,0)" points="1172.2,1087.35 1166.46,1082.9 1160.93,1086.15 " />
<svg:polygon detid="419627417" count="1" value="63" id="2101111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  6  stereo Id 419627417 " fill="rgb(255,130,0)" points="1167.24,1090.49 1159.73,1087.07 1155.83,1091.05 " />
<svg:polygon detid="419627289" count="1" value="63" id="2101112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  6  stereo Id 419627289 " fill="rgb(255,130,0)" points="1163.83,1094.28 1155.08,1092.12 1153.05,1096.56 " />
<svg:polygon detid="419627421" count="1" value="63" id="2101113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  7  stereo Id 419627421 " fill="rgb(255,130,0)" points="1162.21,1098.46 1152.8,1097.7 1152.8,1102.3 " />
<svg:polygon detid="419627293" count="1" value="63" id="2101114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  7  stereo Id 419627293 " fill="rgb(255,130,0)" points="1162.47,1102.74 1153.05,1103.44 1155.08,1107.88 " />
<svg:polygon detid="419627425" count="1" value="63" id="2101115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  8  stereo Id 419627425 " fill="rgb(255,130,0)" points="1164.62,1106.84 1155.83,1108.95 1159.73,1112.93 " />
<svg:polygon detid="419627297" count="1" value="63" id="2101116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  8  stereo Id 419627297 " fill="rgb(255,130,0)" points="1168.49,1110.47 1160.93,1113.85 1166.46,1117.1 " />
<svg:polygon detid="419627429" count="1" value="63" id="2101117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  9  stereo Id 419627429 " fill="rgb(255,130,0)" points="1173.83,1113.39 1168.02,1117.8 1174.78,1120.1 " />
<svg:polygon detid="419627301" count="1" value="63" id="2101118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  9  stereo Id 419627301 " fill="rgb(255,130,0)" points="1180.27,1115.39 1176.6,1120.54 1184.14,1121.73 " />
<svg:polygon detid="419627433" count="1" value="63" id="2101119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  10  stereo Id 419627433 " fill="rgb(255,130,0)" points="1187.37,1116.35 1186.09,1121.88 1193.91,1121.88 " />
<svg:polygon detid="419627305" count="1" value="63" id="2101120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  10  stereo Id 419627305 " fill="rgb(255,130,0)" points="1194.66,1116.19 1195.86,1121.73 1203.4,1120.54 " />
<svg:polygon detid="419627437" count="1" value="63" id="2101121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  11  stereo Id 419627437 " fill="rgb(255,130,0)" points="1201.62,1114.93 1205.22,1120.1 1211.98,1117.8 " />
<svg:polygon detid="419627309" count="1" value="63" id="2101122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  11  stereo Id 419627309 " fill="rgb(255,130,0)" points="1207.8,1112.65 1213.54,1117.1 1219.07,1113.85 " />
<svg:polygon detid="419627441" count="1" value="63" id="2101123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  backward  module  12  stereo Id 419627441 " fill="rgb(255,130,0)" points="1212.76,1109.51 1220.27,1112.93 1224.17,1108.95 " />
<svg:polygon detid="419627313" count="1" value="63" id="2101124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 1  forward  module  12  stereo Id 419627313 " fill="rgb(255,130,0)" points="1216.17,1105.72 1224.92,1107.88 1226.95,1103.44 " />
<svg:polygon detid="419627654" count="1" value="63" id="2102001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  1   Id 419627654 " fill="rgb(255,130,0)" points="1235.34,1097.24 1227.85,1097.84 1227.85,1102.16 " />
<svg:polygon detid="419627526" count="1" value="63" id="2102002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  1   Id 419627526 " fill="rgb(255,130,0)" points="1232.58,1090.43 1225.62,1092.16 1227.51,1096.32 " />
<svg:polygon detid="419627658" count="1" value="63" id="2102003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  2   Id 419627658 " fill="rgb(255,130,0)" points="1226.92,1084.27 1220.95,1087 1224.61,1090.73 " />
<svg:polygon detid="419627530" count="1" value="63" id="2102004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  2   Id 419627530 " fill="rgb(255,130,0)" points="1218.74,1079.19 1214.18,1082.73 1219.36,1085.78 " />
<svg:polygon detid="419627662" count="1" value="63" id="2102005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  3   Id 419627662 " fill="rgb(255,130,0)" points="1208.61,1075.52 1205.75,1079.64 1212.1,1081.79 " />
<svg:polygon detid="419627534" count="1" value="63" id="2102006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  3   Id 419627534 " fill="rgb(255,130,0)" points="1197.2,1073.52 1196.26,1077.93 1203.34,1079.05 " />
<svg:polygon detid="419627666" count="1" value="63" id="2102007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  4   Id 419627666 " fill="rgb(255,130,0)" points="1185.31,1073.33 1186.34,1077.73 1193.66,1077.73 " />
<svg:polygon detid="419627538" count="1" value="63" id="2102008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  4   Id 419627538 " fill="rgb(255,130,0)" points="1173.73,1074.95 1176.66,1079.05 1183.74,1077.93 " />
<svg:polygon detid="419627670" count="1" value="63" id="2102009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  5   Id 419627670 " fill="rgb(255,130,0)" points="1163.26,1078.28 1167.9,1081.79 1174.25,1079.64 " />
<svg:polygon detid="419627542" count="1" value="63" id="2102010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  5   Id 419627542 " fill="rgb(255,130,0)" points="1154.62,1083.09 1160.64,1085.78 1165.82,1082.73 " />
<svg:polygon detid="419627674" count="1" value="63" id="2102011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  6   Id 419627674 " fill="rgb(255,130,0)" points="1148.39,1089.05 1155.39,1090.73 1159.05,1087 " />
<svg:polygon detid="419627546" count="1" value="63" id="2102012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  6   Id 419627546 " fill="rgb(255,130,0)" points="1144.99,1095.76 1152.49,1096.32 1154.38,1092.16 " />
<svg:polygon detid="419627678" count="1" value="63" id="2102013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  7   Id 419627678 " fill="rgb(255,130,0)" points="1144.66,1102.76 1152.15,1102.16 1152.15,1097.84 " />
<svg:polygon detid="419627550" count="1" value="63" id="2102014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  7   Id 419627550 " fill="rgb(255,130,0)" points="1147.42,1109.57 1154.38,1107.84 1152.49,1103.68 " />
<svg:polygon detid="419627682" count="1" value="63" id="2102015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  8   Id 419627682 " fill="rgb(255,130,0)" points="1153.08,1115.73 1159.05,1113 1155.39,1109.27 " />
<svg:polygon detid="419627554" count="1" value="63" id="2102016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  8   Id 419627554 " fill="rgb(255,130,0)" points="1161.26,1120.81 1165.82,1117.27 1160.64,1114.22 " />
<svg:polygon detid="419627686" count="1" value="63" id="2102017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  9   Id 419627686 " fill="rgb(255,130,0)" points="1171.39,1124.48 1174.25,1120.36 1167.9,1118.21 " />
<svg:polygon detid="419627558" count="1" value="63" id="2102018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  9   Id 419627558 " fill="rgb(255,130,0)" points="1182.8,1126.48 1183.74,1122.07 1176.66,1120.95 " />
<svg:polygon detid="419627690" count="1" value="63" id="2102019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  10   Id 419627690 " fill="rgb(255,130,0)" points="1194.69,1126.67 1193.66,1122.27 1186.34,1122.27 " />
<svg:polygon detid="419627562" count="1" value="63" id="2102020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  10   Id 419627562 " fill="rgb(255,130,0)" points="1206.27,1125.05 1203.34,1120.95 1196.26,1122.07 " />
<svg:polygon detid="419627694" count="1" value="63" id="2102021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  11   Id 419627694 " fill="rgb(255,130,0)" points="1216.74,1121.72 1212.1,1118.21 1205.75,1120.36 " />
<svg:polygon detid="419627566" count="1" value="63" id="2102022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  11   Id 419627566 " fill="rgb(255,130,0)" points="1225.38,1116.91 1219.36,1114.22 1214.18,1117.27 " />
<svg:polygon detid="419627698" count="1" value="63" id="2102023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  12   Id 419627698 " fill="rgb(255,130,0)" points="1231.61,1110.95 1224.61,1109.27 1220.95,1113 " />
<svg:polygon detid="419627570" count="1" value="63" id="2102024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  12   Id 419627570 " fill="rgb(255,130,0)" points="1235.01,1104.24 1227.51,1103.68 1225.62,1107.84 " />
<svg:polygon detid="419627653" count="1" value="63" id="2102101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  1  stereo Id 419627653 " fill="rgb(255,130,0)" points="1227.85,1102.16 1235.34,1102.76 1235.34,1097.24 " />
<svg:polygon detid="419627525" count="1" value="63" id="2102102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  1  stereo Id 419627525 " fill="rgb(255,130,0)" points="1227.51,1096.32 1235.01,1095.76 1232.58,1090.43 " />
<svg:polygon detid="419627657" count="1" value="63" id="2102103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  2  stereo Id 419627657 " fill="rgb(255,130,0)" points="1224.61,1090.73 1231.61,1089.05 1226.92,1084.27 " />
<svg:polygon detid="419627529" count="1" value="63" id="2102104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  2  stereo Id 419627529 " fill="rgb(255,130,0)" points="1219.36,1085.78 1225.38,1083.09 1218.74,1079.19 " />
<svg:polygon detid="419627661" count="1" value="63" id="2102105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  3  stereo Id 419627661 " fill="rgb(255,130,0)" points="1212.1,1081.79 1216.74,1078.28 1208.61,1075.52 " />
<svg:polygon detid="419627533" count="1" value="63" id="2102106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  3  stereo Id 419627533 " fill="rgb(255,130,0)" points="1203.34,1079.05 1206.27,1074.95 1197.2,1073.52 " />
<svg:polygon detid="419627665" count="1" value="63" id="2102107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  4  stereo Id 419627665 " fill="rgb(255,130,0)" points="1193.66,1077.73 1194.69,1073.33 1185.31,1073.33 " />
<svg:polygon detid="419627537" count="1" value="63" id="2102108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  4  stereo Id 419627537 " fill="rgb(255,130,0)" points="1183.74,1077.93 1182.8,1073.52 1173.73,1074.95 " />
<svg:polygon detid="419627669" count="1" value="63" id="2102109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  5  stereo Id 419627669 " fill="rgb(255,130,0)" points="1174.25,1079.64 1171.39,1075.52 1163.26,1078.28 " />
<svg:polygon detid="419627541" count="1" value="63" id="2102110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  5  stereo Id 419627541 " fill="rgb(255,130,0)" points="1165.82,1082.73 1161.26,1079.19 1154.62,1083.09 " />
<svg:polygon detid="419627673" count="1" value="63" id="2102111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  6  stereo Id 419627673 " fill="rgb(255,130,0)" points="1159.05,1087 1153.08,1084.27 1148.39,1089.05 " />
<svg:polygon detid="419627545" count="1" value="63" id="2102112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  6  stereo Id 419627545 " fill="rgb(255,130,0)" points="1154.38,1092.16 1147.42,1090.43 1144.99,1095.76 " />
<svg:polygon detid="419627677" count="1" value="63" id="2102113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  7  stereo Id 419627677 " fill="rgb(255,130,0)" points="1152.15,1097.84 1144.66,1097.24 1144.66,1102.76 " />
<svg:polygon detid="419627549" count="1" value="63" id="2102114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  7  stereo Id 419627549 " fill="rgb(255,130,0)" points="1152.49,1103.68 1144.99,1104.24 1147.42,1109.57 " />
<svg:polygon detid="419627681" count="1" value="63" id="2102115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  8  stereo Id 419627681 " fill="rgb(255,130,0)" points="1155.39,1109.27 1148.39,1110.95 1153.08,1115.73 " />
<svg:polygon detid="419627553" count="1" value="63" id="2102116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  8  stereo Id 419627553 " fill="rgb(255,130,0)" points="1160.64,1114.22 1154.62,1116.91 1161.26,1120.81 " />
<svg:polygon detid="419627685" count="1" value="63" id="2102117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  9  stereo Id 419627685 " fill="rgb(255,130,0)" points="1167.9,1118.21 1163.26,1121.72 1171.39,1124.48 " />
<svg:polygon detid="419627557" count="1" value="63" id="2102118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  9  stereo Id 419627557 " fill="rgb(255,130,0)" points="1176.66,1120.95 1173.73,1125.05 1182.8,1126.48 " />
<svg:polygon detid="419627689" count="1" value="63" id="2102119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  10  stereo Id 419627689 " fill="rgb(255,130,0)" points="1186.34,1122.27 1185.31,1126.67 1194.69,1126.67 " />
<svg:polygon detid="419627561" count="1" value="63" id="2102120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  10  stereo Id 419627561 " fill="rgb(255,130,0)" points="1196.26,1122.07 1197.2,1126.48 1206.27,1125.05 " />
<svg:polygon detid="419627693" count="1" value="63" id="2102121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  11  stereo Id 419627693 " fill="rgb(255,130,0)" points="1205.75,1120.36 1208.61,1124.48 1216.74,1121.72 " />
<svg:polygon detid="419627565" count="1" value="63" id="2102122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  11  stereo Id 419627565 " fill="rgb(255,130,0)" points="1214.18,1117.27 1218.74,1120.81 1225.38,1116.91 " />
<svg:polygon detid="419627697" count="1" value="63" id="2102123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  backward  module  12  stereo Id 419627697 " fill="rgb(255,130,0)" points="1220.95,1113 1226.92,1115.73 1231.61,1110.95 " />
<svg:polygon detid="419627569" count="1" value="63" id="2102124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 2  forward  module  12  stereo Id 419627569 " fill="rgb(255,130,0)" points="1225.62,1107.84 1232.58,1109.57 1235.01,1104.24 " />
<svg:polygon detid="419627908" count="1" value="63" id="2103001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  1   Id 419627908 " fill="rgb(255,130,0)" points="1236,1101.57 1245.41,1102.03 1245.41,1097.97 1236,1098.43 " />
<svg:polygon detid="419627780" count="1" value="63" id="2103002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  1   Id 419627780 " fill="rgb(255,130,0)" points="1235.86,1097.32 1245.26,1096.91 1244.18,1092.9 1235.02,1094.21 " />
<svg:polygon detid="419627912" count="1" value="63" id="2103003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  2   Id 419627912 " fill="rgb(255,130,0)" points="1234.58,1093.14 1243.76,1091.86 1241.63,1088 1232.93,1090.14 " />
<svg:polygon detid="419627784" count="1" value="63" id="2103004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  2   Id 419627784 " fill="rgb(255,130,0)" points="1232.21,1089.12 1240.93,1087.01 1237.8,1083.39 1229.78,1086.31 " />
<svg:polygon detid="419627916" count="1" value="63" id="2103005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  3   Id 419627916 " fill="rgb(255,130,0)" points="1228.79,1085.37 1236.85,1082.49 1232.8,1079.2 1225.64,1082.82 " />
<svg:polygon detid="419627788" count="1" value="63" id="2103006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  3   Id 419627788 " fill="rgb(255,130,0)" points="1224.42,1081.98 1231.62,1078.39 1226.74,1075.52 1220.64,1079.75 " />
<svg:polygon detid="419627920" count="1" value="63" id="2103007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  4   Id 419627920 " fill="rgb(255,130,0)" points="1219.21,1079.03 1225.36,1074.83 1219.77,1072.44 1214.87,1077.18 " />
<svg:polygon detid="419627792" count="1" value="63" id="2103008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  4   Id 419627792 " fill="rgb(255,130,0)" points="1213.27,1076.6 1218.23,1071.88 1212.08,1070.04 1208.5,1075.17 " />
<svg:polygon detid="419627924" count="1" value="63" id="2103009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  5   Id 419627924 " fill="rgb(255,130,0)" points="1206.76,1074.75 1210.4,1069.63 1203.84,1068.38 1201.67,1073.78 " />
<svg:polygon detid="419627796" count="1" value="63" id="2103010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  5   Id 419627796 " fill="rgb(255,130,0)" points="1199.84,1073.52 1202.08,1068.13 1195.26,1067.49 1194.55,1073.03 " />
<svg:polygon detid="419627928" count="1" value="63" id="2103011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  6   Id 419627928 " fill="rgb(255,130,0)" points="1192.68,1072.94 1193.45,1067.41 1186.55,1067.41 1187.32,1072.94 " />
<svg:polygon detid="419627800" count="1" value="63" id="2103012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  6   Id 419627800 " fill="rgb(255,130,0)" points="1185.45,1073.03 1184.74,1067.49 1177.92,1068.13 1180.16,1073.52 " />
<svg:polygon detid="419627932" count="1" value="63" id="2103013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  7   Id 419627932 " fill="rgb(255,130,0)" points="1178.33,1073.78 1176.16,1068.38 1169.6,1069.63 1173.24,1074.75 " />
<svg:polygon detid="419627804" count="1" value="63" id="2103014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  7   Id 419627804 " fill="rgb(255,130,0)" points="1171.5,1075.17 1167.92,1070.04 1161.77,1071.88 1166.73,1076.6 " />
<svg:polygon detid="419627936" count="1" value="63" id="2103015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  8   Id 419627936 " fill="rgb(255,130,0)" points="1165.13,1077.18 1160.23,1072.44 1154.64,1074.83 1160.79,1079.03 " />
<svg:polygon detid="419627808" count="1" value="63" id="2103016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  8   Id 419627808 " fill="rgb(255,130,0)" points="1159.36,1079.75 1153.26,1075.52 1148.38,1078.39 1155.58,1081.98 " />
<svg:polygon detid="419627940" count="1" value="63" id="2103017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  9   Id 419627940 " fill="rgb(255,130,0)" points="1154.36,1082.82 1147.2,1079.2 1143.15,1082.49 1151.21,1085.37 " />
<svg:polygon detid="419627812" count="1" value="63" id="2103018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  9   Id 419627812 " fill="rgb(255,130,0)" points="1150.22,1086.31 1142.2,1083.39 1139.07,1087.01 1147.79,1089.12 " />
<svg:polygon detid="419627944" count="1" value="63" id="2103019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  10   Id 419627944 " fill="rgb(255,130,0)" points="1147.07,1090.14 1138.37,1088 1136.24,1091.86 1145.42,1093.14 " />
<svg:polygon detid="419627816" count="1" value="63" id="2103020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  10   Id 419627816 " fill="rgb(255,130,0)" points="1144.98,1094.21 1135.82,1092.9 1134.74,1096.91 1144.14,1097.32 " />
<svg:polygon detid="419627948" count="1" value="63" id="2103021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  11   Id 419627948 " fill="rgb(255,130,0)" points="1144,1098.43 1134.59,1097.97 1134.59,1102.03 1144,1101.57 " />
<svg:polygon detid="419627820" count="1" value="63" id="2103022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  11   Id 419627820 " fill="rgb(255,130,0)" points="1144.14,1102.68 1134.74,1103.09 1135.82,1107.1 1144.98,1105.79 " />
<svg:polygon detid="419627952" count="1" value="63" id="2103023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  12   Id 419627952 " fill="rgb(255,130,0)" points="1145.42,1106.86 1136.24,1108.14 1138.37,1112 1147.07,1109.86 " />
<svg:polygon detid="419627824" count="1" value="63" id="2103024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  12   Id 419627824 " fill="rgb(255,130,0)" points="1147.79,1110.88 1139.07,1112.99 1142.2,1116.61 1150.22,1113.69 " />
<svg:polygon detid="419627956" count="1" value="63" id="2103025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  13   Id 419627956 " fill="rgb(255,130,0)" points="1151.21,1114.63 1143.15,1117.51 1147.2,1120.8 1154.36,1117.18 " />
<svg:polygon detid="419627828" count="1" value="63" id="2103026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  13   Id 419627828 " fill="rgb(255,130,0)" points="1155.58,1118.02 1148.38,1121.61 1153.26,1124.48 1159.36,1120.25 " />
<svg:polygon detid="419627960" count="1" value="63" id="2103027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  14   Id 419627960 " fill="rgb(255,130,0)" points="1160.79,1120.97 1154.64,1125.17 1160.23,1127.56 1165.13,1122.82 " />
<svg:polygon detid="419627832" count="1" value="63" id="2103028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  14   Id 419627832 " fill="rgb(255,130,0)" points="1166.73,1123.4 1161.77,1128.12 1167.92,1129.96 1171.5,1124.83 " />
<svg:polygon detid="419627964" count="1" value="63" id="2103029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  15   Id 419627964 " fill="rgb(255,130,0)" points="1173.24,1125.25 1169.6,1130.37 1176.16,1131.62 1178.33,1126.22 " />
<svg:polygon detid="419627836" count="1" value="63" id="2103030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  15   Id 419627836 " fill="rgb(255,130,0)" points="1180.16,1126.48 1177.92,1131.87 1184.74,1132.51 1185.45,1126.97 " />
<svg:polygon detid="419627968" count="1" value="63" id="2103031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  16   Id 419627968 " fill="rgb(255,130,0)" points="1187.32,1127.06 1186.55,1132.59 1193.45,1132.59 1192.68,1127.06 " />
<svg:polygon detid="419627840" count="1" value="63" id="2103032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  16   Id 419627840 " fill="rgb(255,130,0)" points="1194.55,1126.97 1195.26,1132.51 1202.08,1131.87 1199.84,1126.48 " />
<svg:polygon detid="419627972" count="1" value="63" id="2103033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  17   Id 419627972 " fill="rgb(255,130,0)" points="1201.67,1126.22 1203.84,1131.62 1210.4,1130.37 1206.76,1125.25 " />
<svg:polygon detid="419627844" count="1" value="63" id="2103034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  17   Id 419627844 " fill="rgb(255,130,0)" points="1208.5,1124.83 1212.08,1129.96 1218.23,1128.12 1213.27,1123.4 " />
<svg:polygon detid="419627976" count="1" value="63" id="2103035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  18   Id 419627976 " fill="rgb(255,130,0)" points="1214.87,1122.82 1219.77,1127.56 1225.36,1125.17 1219.21,1120.97 " />
<svg:polygon detid="419627848" count="1" value="63" id="2103036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  18   Id 419627848 " fill="rgb(255,130,0)" points="1220.64,1120.25 1226.74,1124.48 1231.62,1121.61 1224.42,1118.02 " />
<svg:polygon detid="419627980" count="1" value="63" id="2103037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  19   Id 419627980 " fill="rgb(255,130,0)" points="1225.64,1117.18 1232.8,1120.8 1236.85,1117.51 1228.79,1114.63 " />
<svg:polygon detid="419627852" count="1" value="63" id="2103038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  19   Id 419627852 " fill="rgb(255,130,0)" points="1229.78,1113.69 1237.8,1116.61 1240.93,1112.99 1232.21,1110.88 " />
<svg:polygon detid="419627984" count="1" value="63" id="2103039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  backward  module  20   Id 419627984 " fill="rgb(255,130,0)" points="1232.93,1109.86 1241.63,1112 1243.76,1108.14 1234.58,1106.86 " />
<svg:polygon detid="419627856" count="1" value="63" id="2103040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TID +z layer 3 ring 3  forward  module  20   Id 419627856 " fill="rgb(255,130,0)" points="1235.02,1105.79 1244.18,1107.1 1245.26,1103.09 1235.86,1102.68 " />
<svg:polygon detid="486637866" count="1" value="66" id="2201001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486637866 " fill="rgb(255,125,0)" points="1224.31,1295.19 1217.27,1296.32 1217.96,1299.4 " />
<svg:polygon detid="486605094" count="1" value="66" id="2201002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605094 " fill="rgb(255,125,0)" points="1221.02,1290.13 1214.72,1292.3 1216.74,1295.16 " />
<svg:polygon detid="486638118" count="1" value="66" id="2201003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638118 " fill="rgb(255,125,0)" points="1215.62,1285.74 1210.49,1288.79 1213.7,1291.26 " />
<svg:polygon detid="486638122" count="1" value="66" id="2201004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638122 " fill="rgb(255,125,0)" points="1208.48,1282.33 1204.86,1286.06 1209.05,1287.95 " />
<svg:polygon detid="486605350" count="1" value="66" id="2201005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605350 " fill="rgb(255,125,0)" points="1200.07,1280.11 1198.22,1284.27 1203.1,1285.46 " />
<svg:polygon detid="486638374" count="1" value="66" id="2201006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638374 " fill="rgb(255,125,0)" points="1190.98,1279.26 1191.02,1283.55 1196.25,1283.96 " />
<svg:polygon detid="486638378" count="1" value="66" id="2201007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638378 " fill="rgb(255,125,0)" points="1181.82,1279.82 1183.75,1283.96 1188.98,1283.55 " />
<svg:polygon detid="486605606" count="1" value="66" id="2201008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605606 " fill="rgb(255,125,0)" points="1173.22,1281.75 1176.9,1285.46 1181.78,1284.27 " />
<svg:polygon detid="486638630" count="1" value="66" id="2201009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638630 " fill="rgb(255,125,0)" points="1165.76,1284.93 1170.95,1287.95 1175.14,1286.06 " />
<svg:polygon detid="486638634" count="1" value="66" id="2201010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638634 " fill="rgb(255,125,0)" points="1159.95,1289.13 1166.3,1291.26 1169.51,1288.79 " />
<svg:polygon detid="486605862" count="1" value="66" id="2201011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486605862 " fill="rgb(255,125,0)" points="1156.19,1294.08 1163.26,1295.16 1165.28,1292.3 " />
<svg:polygon detid="486638886" count="1" value="66" id="2201012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486638886 " fill="rgb(255,125,0)" points="1154.74,1299.43 1162.04,1299.4 1162.73,1296.32 " />
<svg:polygon detid="486638890" count="1" value="66" id="2201013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486638890 " fill="rgb(255,125,0)" points="1155.69,1304.81 1162.73,1303.68 1162.04,1300.6 " />
<svg:polygon detid="486606118" count="1" value="66" id="2201014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606118 " fill="rgb(255,125,0)" points="1158.98,1309.87 1165.28,1307.7 1163.26,1304.84 " />
<svg:polygon detid="486639142" count="1" value="66" id="2201015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639142 " fill="rgb(255,125,0)" points="1164.38,1314.26 1169.51,1311.21 1166.3,1308.74 " />
<svg:polygon detid="486639146" count="1" value="66" id="2201016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639146 " fill="rgb(255,125,0)" points="1171.52,1317.67 1175.14,1313.94 1170.95,1312.05 " />
<svg:polygon detid="486606374" count="1" value="66" id="2201017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606374 " fill="rgb(255,125,0)" points="1179.93,1319.89 1181.78,1315.73 1176.9,1314.54 " />
<svg:polygon detid="486639398" count="1" value="66" id="2201018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639398 " fill="rgb(255,125,0)" points="1189.02,1320.74 1188.98,1316.45 1183.75,1316.04 " />
<svg:polygon detid="486639402" count="1" value="66" id="2201019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639402 " fill="rgb(255,125,0)" points="1198.18,1320.18 1196.25,1316.04 1191.02,1316.45 " />
<svg:polygon detid="486606630" count="1" value="66" id="2201020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606630 " fill="rgb(255,125,0)" points="1206.78,1318.25 1203.1,1314.54 1198.22,1315.73 " />
<svg:polygon detid="486639654" count="1" value="66" id="2201021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639654 " fill="rgb(255,125,0)" points="1214.24,1315.07 1209.05,1312.05 1204.86,1313.94 " />
<svg:polygon detid="486639658" count="1" value="66" id="2201022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639658 " fill="rgb(255,125,0)" points="1220.05,1310.87 1213.7,1308.74 1210.49,1311.21 " />
<svg:polygon detid="486606886" count="1" value="66" id="2201023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486606886 " fill="rgb(255,125,0)" points="1223.81,1305.92 1216.74,1304.84 1214.72,1307.7 " />
<svg:polygon detid="486637862" count="1" value="66" id="2201024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486637862 " fill="rgb(255,125,0)" points="1225.26,1300.57 1217.96,1300.6 1217.27,1303.68 " />
<svg:polygon detid="486637865" count="1" value="66" id="2201101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward   stereo Id 486637865 " fill="rgb(255,125,0)" points="1217.96,1299.4 1225.26,1299.43 1224.31,1295.19 " />
<svg:polygon detid="486605093" count="1" value="66" id="2201102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward   stereo Id 486605093 " fill="rgb(255,125,0)" points="1216.74,1295.16 1223.81,1294.08 1221.02,1290.13 " />
<svg:polygon detid="486638117" count="1" value="66" id="2201103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward   stereo Id 486638117 " fill="rgb(255,125,0)" points="1213.7,1291.26 1220.05,1289.13 1215.62,1285.74 " />
<svg:polygon detid="486638121" count="1" value="66" id="2201104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward   stereo Id 486638121 " fill="rgb(255,125,0)" points="1209.05,1287.95 1214.24,1284.93 1208.48,1282.33 " />
<svg:polygon detid="486605349" count="1" value="66" id="2201105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward   stereo Id 486605349 " fill="rgb(255,125,0)" points="1203.1,1285.46 1206.78,1281.75 1200.07,1280.11 " />
<svg:polygon detid="486638373" count="1" value="66" id="2201106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward   stereo Id 486638373 " fill="rgb(255,125,0)" points="1196.25,1283.96 1198.18,1279.82 1190.98,1279.26 " />
<svg:polygon detid="486638377" count="1" value="66" id="2201107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward   stereo Id 486638377 " fill="rgb(255,125,0)" points="1188.98,1283.55 1189.02,1279.26 1181.82,1279.82 " />
<svg:polygon detid="486605605" count="1" value="66" id="2201108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward   stereo Id 486605605 " fill="rgb(255,125,0)" points="1181.78,1284.27 1179.93,1280.11 1173.22,1281.75 " />
<svg:polygon detid="486638629" count="1" value="66" id="2201109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward   stereo Id 486638629 " fill="rgb(255,125,0)" points="1175.14,1286.06 1171.52,1282.33 1165.76,1284.93 " />
<svg:polygon detid="486638633" count="1" value="66" id="2201110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward   stereo Id 486638633 " fill="rgb(255,125,0)" points="1169.51,1288.79 1164.38,1285.74 1159.95,1289.13 " />
<svg:polygon detid="486605861" count="1" value="66" id="2201111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward   stereo Id 486605861 " fill="rgb(255,125,0)" points="1165.28,1292.3 1158.98,1290.13 1156.19,1294.08 " />
<svg:polygon detid="486638885" count="1" value="66" id="2201112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward   stereo Id 486638885 " fill="rgb(255,125,0)" points="1162.73,1296.32 1155.69,1295.19 1154.74,1299.43 " />
<svg:polygon detid="486638889" count="1" value="66" id="2201113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward   stereo Id 486638889 " fill="rgb(255,125,0)" points="1162.04,1300.6 1154.74,1300.57 1155.69,1304.81 " />
<svg:polygon detid="486606117" count="1" value="66" id="2201114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward   stereo Id 486606117 " fill="rgb(255,125,0)" points="1163.26,1304.84 1156.19,1305.92 1158.98,1309.87 " />
<svg:polygon detid="486639141" count="1" value="66" id="2201115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward   stereo Id 486639141 " fill="rgb(255,125,0)" points="1166.3,1308.74 1159.95,1310.87 1164.38,1314.26 " />
<svg:polygon detid="486639145" count="1" value="66" id="2201116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward   stereo Id 486639145 " fill="rgb(255,125,0)" points="1170.95,1312.05 1165.76,1315.07 1171.52,1317.67 " />
<svg:polygon detid="486606373" count="1" value="66" id="2201117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward   stereo Id 486606373 " fill="rgb(255,125,0)" points="1176.9,1314.54 1173.22,1318.25 1179.93,1319.89 " />
<svg:polygon detid="486639397" count="1" value="66" id="2201118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward   stereo Id 486639397 " fill="rgb(255,125,0)" points="1183.75,1316.04 1181.82,1320.18 1189.02,1320.74 " />
<svg:polygon detid="486639401" count="1" value="66" id="2201119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward   stereo Id 486639401 " fill="rgb(255,125,0)" points="1191.02,1316.45 1190.98,1320.74 1198.18,1320.18 " />
<svg:polygon detid="486606629" count="1" value="66" id="2201120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward   stereo Id 486606629 " fill="rgb(255,125,0)" points="1198.22,1315.73 1200.07,1319.89 1206.78,1318.25 " />
<svg:polygon detid="486639653" count="1" value="66" id="2201121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward   stereo Id 486639653 " fill="rgb(255,125,0)" points="1204.86,1313.94 1208.48,1317.67 1214.24,1315.07 " />
<svg:polygon detid="486639657" count="1" value="66" id="2201122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward   stereo Id 486639657 " fill="rgb(255,125,0)" points="1210.49,1311.21 1215.62,1314.26 1220.05,1310.87 " />
<svg:polygon detid="486606885" count="1" value="66" id="2201123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward   stereo Id 486606885 " fill="rgb(255,125,0)" points="1214.72,1307.7 1221.02,1309.87 1223.81,1305.92 " />
<svg:polygon detid="486637861" count="1" value="66" id="2201124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward   stereo Id 486637861 " fill="rgb(255,125,0)" points="1217.27,1303.68 1224.31,1304.81 1225.26,1300.57 " />
<svg:polygon detid="486637898" count="1" value="66" id="2202001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486637898 " fill="rgb(255,125,0)" points="1234.35,1293.78 1227.06,1294.96 1228.01,1299.23 " />
<svg:polygon detid="486605126" count="1" value="66" id="2202002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605126 " fill="rgb(255,125,0)" points="1230.1,1287.24 1223.57,1289.49 1226.38,1293.47 " />
<svg:polygon detid="486638150" count="1" value="66" id="2202003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638150 " fill="rgb(255,125,0)" points="1223.12,1281.57 1217.8,1284.73 1222.27,1288.15 " />
<svg:polygon detid="486638154" count="1" value="66" id="2202004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638154 " fill="rgb(255,125,0)" points="1213.88,1277.16 1210.14,1281.02 1215.95,1283.64 " />
<svg:polygon detid="486605382" count="1" value="66" id="2202005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605382 " fill="rgb(255,125,0)" points="1203.02,1274.3 1201.1,1278.6 1207.87,1280.25 " />
<svg:polygon detid="486638406" count="1" value="66" id="2202006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638406 " fill="rgb(255,125,0)" points="1191.27,1273.19 1191.31,1277.64 1198.57,1278.2 " />
<svg:polygon detid="486638410" count="1" value="66" id="2202007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638410 " fill="rgb(255,125,0)" points="1179.43,1273.91 1181.43,1278.2 1188.69,1277.64 " />
<svg:polygon detid="486605638" count="1" value="66" id="2202008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605638 " fill="rgb(255,125,0)" points="1168.31,1276.41 1172.13,1280.25 1178.9,1278.6 " />
<svg:polygon detid="486638662" count="1" value="66" id="2202009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638662 " fill="rgb(255,125,0)" points="1158.67,1280.52 1164.05,1283.64 1169.86,1281.02 " />
<svg:polygon detid="486638666" count="1" value="66" id="2202010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638666 " fill="rgb(255,125,0)" points="1151.17,1285.95 1157.73,1288.15 1162.2,1284.73 " />
<svg:polygon detid="486605894" count="1" value="66" id="2202011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486605894 " fill="rgb(255,125,0)" points="1146.31,1292.34 1153.62,1293.47 1156.43,1289.49 " />
<svg:polygon detid="486638918" count="1" value="66" id="2202012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486638918 " fill="rgb(255,125,0)" points="1144.43,1299.25 1151.99,1299.23 1152.94,1294.96 " />
<svg:polygon detid="486638922" count="1" value="66" id="2202013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486638922 " fill="rgb(255,125,0)" points="1145.65,1306.22 1152.94,1305.04 1151.99,1300.77 " />
<svg:polygon detid="486606150" count="1" value="66" id="2202014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606150 " fill="rgb(255,125,0)" points="1149.9,1312.76 1156.43,1310.51 1153.62,1306.53 " />
<svg:polygon detid="486639174" count="1" value="66" id="2202015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639174 " fill="rgb(255,125,0)" points="1156.88,1318.43 1162.2,1315.27 1157.73,1311.85 " />
<svg:polygon detid="486639178" count="1" value="66" id="2202016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639178 " fill="rgb(255,125,0)" points="1166.12,1322.84 1169.86,1318.98 1164.05,1316.36 " />
<svg:polygon detid="486606406" count="1" value="66" id="2202017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606406 " fill="rgb(255,125,0)" points="1176.98,1325.7 1178.9,1321.4 1172.13,1319.75 " />
<svg:polygon detid="486639430" count="1" value="66" id="2202018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639430 " fill="rgb(255,125,0)" points="1188.73,1326.81 1188.69,1322.36 1181.43,1321.8 " />
<svg:polygon detid="486639434" count="1" value="66" id="2202019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639434 " fill="rgb(255,125,0)" points="1200.57,1326.09 1198.57,1321.8 1191.31,1322.36 " />
<svg:polygon detid="486606662" count="1" value="66" id="2202020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606662 " fill="rgb(255,125,0)" points="1211.69,1323.59 1207.87,1319.75 1201.1,1321.4 " />
<svg:polygon detid="486639686" count="1" value="66" id="2202021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639686 " fill="rgb(255,125,0)" points="1221.33,1319.48 1215.95,1316.36 1210.14,1318.98 " />
<svg:polygon detid="486639690" count="1" value="66" id="2202022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639690 " fill="rgb(255,125,0)" points="1228.83,1314.05 1222.27,1311.85 1217.8,1315.27 " />
<svg:polygon detid="486606918" count="1" value="66" id="2202023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486606918 " fill="rgb(255,125,0)" points="1233.69,1307.66 1226.38,1306.53 1223.57,1310.51 " />
<svg:polygon detid="486637894" count="1" value="66" id="2202024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486637894 " fill="rgb(255,125,0)" points="1235.57,1300.75 1228.01,1300.77 1227.06,1305.04 " />
<svg:polygon detid="486637897" count="1" value="66" id="2202101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward   stereo Id 486637897 " fill="rgb(255,125,0)" points="1228.01,1299.23 1235.57,1299.25 1234.35,1293.78 " />
<svg:polygon detid="486605125" count="1" value="66" id="2202102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward   stereo Id 486605125 " fill="rgb(255,125,0)" points="1226.38,1293.47 1233.69,1292.34 1230.1,1287.24 " />
<svg:polygon detid="486638149" count="1" value="66" id="2202103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward   stereo Id 486638149 " fill="rgb(255,125,0)" points="1222.27,1288.15 1228.83,1285.95 1223.12,1281.57 " />
<svg:polygon detid="486638153" count="1" value="66" id="2202104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward   stereo Id 486638153 " fill="rgb(255,125,0)" points="1215.95,1283.64 1221.33,1280.52 1213.88,1277.16 " />
<svg:polygon detid="486605381" count="1" value="66" id="2202105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward   stereo Id 486605381 " fill="rgb(255,125,0)" points="1207.87,1280.25 1211.69,1276.41 1203.02,1274.3 " />
<svg:polygon detid="486638405" count="1" value="66" id="2202106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward   stereo Id 486638405 " fill="rgb(255,125,0)" points="1198.57,1278.2 1200.57,1273.91 1191.27,1273.19 " />
<svg:polygon detid="486638409" count="1" value="66" id="2202107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward   stereo Id 486638409 " fill="rgb(255,125,0)" points="1188.69,1277.64 1188.73,1273.19 1179.43,1273.91 " />
<svg:polygon detid="486605637" count="1" value="66" id="2202108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward   stereo Id 486605637 " fill="rgb(255,125,0)" points="1178.9,1278.6 1176.98,1274.3 1168.31,1276.41 " />
<svg:polygon detid="486638661" count="1" value="66" id="2202109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward   stereo Id 486638661 " fill="rgb(255,125,0)" points="1169.86,1281.02 1166.12,1277.16 1158.67,1280.52 " />
<svg:polygon detid="486638665" count="1" value="66" id="2202110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward   stereo Id 486638665 " fill="rgb(255,125,0)" points="1162.2,1284.73 1156.88,1281.57 1151.17,1285.95 " />
<svg:polygon detid="486605893" count="1" value="66" id="2202111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward   stereo Id 486605893 " fill="rgb(255,125,0)" points="1156.43,1289.49 1149.9,1287.24 1146.31,1292.34 " />
<svg:polygon detid="486638917" count="1" value="66" id="2202112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward   stereo Id 486638917 " fill="rgb(255,125,0)" points="1152.94,1294.96 1145.65,1293.78 1144.43,1299.25 " />
<svg:polygon detid="486638921" count="1" value="66" id="2202113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward   stereo Id 486638921 " fill="rgb(255,125,0)" points="1151.99,1300.77 1144.43,1300.75 1145.65,1306.22 " />
<svg:polygon detid="486606149" count="1" value="66" id="2202114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward   stereo Id 486606149 " fill="rgb(255,125,0)" points="1153.62,1306.53 1146.31,1307.66 1149.9,1312.76 " />
<svg:polygon detid="486639173" count="1" value="66" id="2202115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward   stereo Id 486639173 " fill="rgb(255,125,0)" points="1157.73,1311.85 1151.17,1314.05 1156.88,1318.43 " />
<svg:polygon detid="486639177" count="1" value="66" id="2202116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward   stereo Id 486639177 " fill="rgb(255,125,0)" points="1164.05,1316.36 1158.67,1319.48 1166.12,1322.84 " />
<svg:polygon detid="486606405" count="1" value="66" id="2202117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward   stereo Id 486606405 " fill="rgb(255,125,0)" points="1172.13,1319.75 1168.31,1323.59 1176.98,1325.7 " />
<svg:polygon detid="486639429" count="1" value="66" id="2202118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward   stereo Id 486639429 " fill="rgb(255,125,0)" points="1181.43,1321.8 1179.43,1326.09 1188.73,1326.81 " />
<svg:polygon detid="486639433" count="1" value="66" id="2202119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward   stereo Id 486639433 " fill="rgb(255,125,0)" points="1191.31,1322.36 1191.27,1326.81 1200.57,1326.09 " />
<svg:polygon detid="486606661" count="1" value="66" id="2202120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward   stereo Id 486606661 " fill="rgb(255,125,0)" points="1201.1,1321.4 1203.02,1325.7 1211.69,1323.59 " />
<svg:polygon detid="486639685" count="1" value="66" id="2202121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward   stereo Id 486639685 " fill="rgb(255,125,0)" points="1210.14,1318.98 1213.88,1322.84 1221.33,1319.48 " />
<svg:polygon detid="486639689" count="1" value="66" id="2202122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward   stereo Id 486639689 " fill="rgb(255,125,0)" points="1217.8,1315.27 1223.12,1318.43 1228.83,1314.05 " />
<svg:polygon detid="486606917" count="1" value="66" id="2202123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward   stereo Id 486606917 " fill="rgb(255,125,0)" points="1223.57,1310.51 1230.1,1312.76 1233.69,1307.66 " />
<svg:polygon detid="486637893" count="1" value="66" id="2202124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward   stereo Id 486637893 " fill="rgb(255,125,0)" points="1227.06,1305.04 1234.35,1306.22 1235.57,1300.75 " />
<svg:polygon detid="486637924" count="1" value="66" id="2203001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486637924 " fill="rgb(255,125,0)" points="1236.01,1301.57 1245.41,1302.03 1245.41,1297.97 1236.01,1298.43 " />
<svg:polygon detid="486637928" count="1" value="66" id="2203002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486637928 " fill="rgb(255,125,0)" points="1235.86,1297.32 1245.27,1296.91 1244.19,1292.9 1235.02,1294.21 " />
<svg:polygon detid="486605156" count="1" value="66" id="2203003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605156 " fill="rgb(255,125,0)" points="1234.58,1293.13 1243.76,1291.86 1241.63,1288 1232.93,1290.14 " />
<svg:polygon detid="486605160" count="1" value="66" id="2203004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  2 forward    Id 486605160 " fill="rgb(255,125,0)" points="1232.21,1289.12 1240.94,1287.01 1237.8,1283.39 1229.78,1286.31 " />
<svg:polygon detid="486638180" count="1" value="66" id="2203005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638180 " fill="rgb(255,125,0)" points="1228.8,1285.37 1236.86,1282.48 1232.8,1279.2 1225.65,1282.82 " />
<svg:polygon detid="486638184" count="1" value="66" id="2203006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638184 " fill="rgb(255,125,0)" points="1224.43,1281.98 1231.62,1278.39 1226.74,1275.52 1220.64,1279.75 " />
<svg:polygon detid="486638188" count="1" value="66" id="2203007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  3 forward    Id 486638188 " fill="rgb(255,125,0)" points="1219.21,1279.03 1225.36,1274.82 1219.78,1272.44 1214.88,1277.18 " />
<svg:polygon detid="486605412" count="1" value="66" id="2203008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605412 " fill="rgb(255,125,0)" points="1213.27,1276.6 1218.23,1271.88 1212.08,1270.04 1208.5,1275.17 " />
<svg:polygon detid="486605416" count="1" value="66" id="2203009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  2 forward    Id 486605416 " fill="rgb(255,125,0)" points="1206.76,1274.75 1210.4,1269.63 1203.84,1268.37 1201.67,1273.77 " />
<svg:polygon detid="486638436" count="1" value="66" id="2203010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638436 " fill="rgb(255,125,0)" points="1199.84,1273.52 1202.08,1268.13 1195.26,1267.49 1194.55,1273.02 " />
<svg:polygon detid="486638440" count="1" value="66" id="2203011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638440 " fill="rgb(255,125,0)" points="1192.68,1272.94 1193.45,1267.41 1186.55,1267.41 1187.32,1272.94 " />
<svg:polygon detid="486638444" count="1" value="66" id="2203012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  3 forward    Id 486638444 " fill="rgb(255,125,0)" points="1185.45,1273.02 1184.74,1267.49 1177.92,1268.13 1180.16,1273.52 " />
<svg:polygon detid="486605668" count="1" value="66" id="2203013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605668 " fill="rgb(255,125,0)" points="1178.33,1273.77 1176.16,1268.37 1169.6,1269.63 1173.24,1274.75 " />
<svg:polygon detid="486605672" count="1" value="66" id="2203014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  2 forward    Id 486605672 " fill="rgb(255,125,0)" points="1171.5,1275.17 1167.92,1270.04 1161.77,1271.88 1166.73,1276.6 " />
<svg:polygon detid="486638692" count="1" value="66" id="2203015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638692 " fill="rgb(255,125,0)" points="1165.12,1277.18 1160.22,1272.44 1154.64,1274.82 1160.79,1279.03 " />
<svg:polygon detid="486638696" count="1" value="66" id="2203016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638696 " fill="rgb(255,125,0)" points="1159.36,1279.75 1153.26,1275.52 1148.38,1278.39 1155.57,1281.98 " />
<svg:polygon detid="486638700" count="1" value="66" id="2203017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  3 forward    Id 486638700 " fill="rgb(255,125,0)" points="1154.35,1282.82 1147.2,1279.2 1143.14,1282.48 1151.2,1285.37 " />
<svg:polygon detid="486605924" count="1" value="66" id="2203018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486605924 " fill="rgb(255,125,0)" points="1150.22,1286.31 1142.2,1283.39 1139.06,1287.01 1147.79,1289.12 " />
<svg:polygon detid="486605928" count="1" value="66" id="2203019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  2 forward    Id 486605928 " fill="rgb(255,125,0)" points="1147.07,1290.14 1138.37,1288 1136.24,1291.86 1145.42,1293.13 " />
<svg:polygon detid="486638948" count="1" value="66" id="2203020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486638948 " fill="rgb(255,125,0)" points="1144.98,1294.21 1135.81,1292.9 1134.73,1296.91 1144.14,1297.32 " />
<svg:polygon detid="486638952" count="1" value="66" id="2203021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486638952 " fill="rgb(255,125,0)" points="1143.99,1298.43 1134.59,1297.97 1134.59,1302.03 1143.99,1301.57 " />
<svg:polygon detid="486638956" count="1" value="66" id="2203022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  3 forward    Id 486638956 " fill="rgb(255,125,0)" points="1144.14,1302.68 1134.73,1303.09 1135.81,1307.1 1144.98,1305.79 " />
<svg:polygon detid="486606180" count="1" value="66" id="2203023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606180 " fill="rgb(255,125,0)" points="1145.42,1306.87 1136.24,1308.14 1138.37,1312 1147.07,1309.86 " />
<svg:polygon detid="486606184" count="1" value="66" id="2203024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  2 forward    Id 486606184 " fill="rgb(255,125,0)" points="1147.79,1310.88 1139.06,1312.99 1142.2,1316.61 1150.22,1313.69 " />
<svg:polygon detid="486639204" count="1" value="66" id="2203025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639204 " fill="rgb(255,125,0)" points="1151.2,1314.63 1143.14,1317.52 1147.2,1320.8 1154.35,1317.18 " />
<svg:polygon detid="486639208" count="1" value="66" id="2203026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639208 " fill="rgb(255,125,0)" points="1155.57,1318.02 1148.38,1321.61 1153.26,1324.48 1159.36,1320.25 " />
<svg:polygon detid="486639212" count="1" value="66" id="2203027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  3 forward    Id 486639212 " fill="rgb(255,125,0)" points="1160.79,1320.97 1154.64,1325.18 1160.22,1327.56 1165.12,1322.82 " />
<svg:polygon detid="486606436" count="1" value="66" id="2203028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606436 " fill="rgb(255,125,0)" points="1166.73,1323.4 1161.77,1328.12 1167.92,1329.96 1171.5,1324.83 " />
<svg:polygon detid="486606440" count="1" value="66" id="2203029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  2 forward    Id 486606440 " fill="rgb(255,125,0)" points="1173.24,1325.25 1169.6,1330.37 1176.16,1331.63 1178.33,1326.23 " />
<svg:polygon detid="486639460" count="1" value="66" id="2203030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639460 " fill="rgb(255,125,0)" points="1180.16,1326.48 1177.92,1331.87 1184.74,1332.51 1185.45,1326.98 " />
<svg:polygon detid="486639464" count="1" value="66" id="2203031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639464 " fill="rgb(255,125,0)" points="1187.32,1327.06 1186.55,1332.59 1193.45,1332.59 1192.68,1327.06 " />
<svg:polygon detid="486639468" count="1" value="66" id="2203032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  3 forward    Id 486639468 " fill="rgb(255,125,0)" points="1194.55,1326.98 1195.26,1332.51 1202.08,1331.87 1199.84,1326.48 " />
<svg:polygon detid="486606692" count="1" value="66" id="2203033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606692 " fill="rgb(255,125,0)" points="1201.67,1326.23 1203.84,1331.63 1210.4,1330.37 1206.76,1325.25 " />
<svg:polygon detid="486606696" count="1" value="66" id="2203034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  2 forward    Id 486606696 " fill="rgb(255,125,0)" points="1208.5,1324.83 1212.08,1329.96 1218.23,1328.12 1213.27,1323.4 " />
<svg:polygon detid="486639716" count="1" value="66" id="2203035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639716 " fill="rgb(255,125,0)" points="1214.88,1322.82 1219.78,1327.56 1225.36,1325.18 1219.21,1320.97 " />
<svg:polygon detid="486639720" count="1" value="66" id="2203036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639720 " fill="rgb(255,125,0)" points="1220.64,1320.25 1226.74,1324.48 1231.62,1321.61 1224.43,1318.02 " />
<svg:polygon detid="486639724" count="1" value="66" id="2203037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  3 forward    Id 486639724 " fill="rgb(255,125,0)" points="1225.65,1317.18 1232.8,1320.8 1236.86,1317.52 1228.8,1314.63 " />
<svg:polygon detid="486606948" count="1" value="66" id="2203038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486606948 " fill="rgb(255,125,0)" points="1229.78,1313.69 1237.8,1316.61 1240.94,1312.99 1232.21,1310.88 " />
<svg:polygon detid="486606952" count="1" value="66" id="2203039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  2 forward    Id 486606952 " fill="rgb(255,125,0)" points="1232.93,1309.86 1241.63,1312 1243.76,1308.14 1234.58,1306.87 " />
<svg:polygon detid="486637932" count="1" value="66" id="2203040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  3 forward    Id 486637932 " fill="rgb(255,125,0)" points="1235.02,1305.79 1244.19,1307.1 1245.27,1303.09 1235.86,1302.68 " />
<svg:polygon detid="486637960" count="1" value="66" id="2204001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486637960 " fill="rgb(255,125,0)" points="1248.82,1299.51 1258.62,1299.52 1258.28,1295.96 1248.55,1296.62 " />
<svg:polygon detid="486637964" count="1" value="66" id="2204002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  3 forward    Id 486637964 " fill="rgb(255,125,0)" points="1248.36,1295.64 1258.1,1295 1257.08,1291.48 1247.53,1292.78 " />
<svg:polygon detid="486605188" count="1" value="66" id="2204003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605188 " fill="rgb(255,125,0)" points="1247.16,1291.82 1256.72,1290.55 1255.04,1287.12 1245.8,1289.04 " />
<svg:polygon detid="486605192" count="1" value="66" id="2204004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  2 forward    Id 486605192 " fill="rgb(255,125,0)" points="1245.24,1288.11 1254.5,1286.22 1252.18,1282.92 1243.36,1285.43 " />
<svg:polygon detid="486605196" count="1" value="66" id="2204005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  3 forward    Id 486605196 " fill="rgb(255,125,0)" points="1242.63,1284.54 1251.47,1282.05 1248.54,1278.93 1240.25,1282.01 " />
<svg:polygon detid="486638212" count="1" value="66" id="2204006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638212 " fill="rgb(255,125,0)" points="1239.36,1281.17 1247.67,1278.12 1244.16,1275.21 1236.51,1278.81 " />
<svg:polygon detid="486638216" count="1" value="66" id="2204007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638216 " fill="rgb(255,125,0)" points="1235.47,1278.04 1243.14,1274.46 1239.1,1271.8 1232.19,1275.88 " />
<svg:polygon detid="486638220" count="1" value="66" id="2204008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  3 forward    Id 486638220 " fill="rgb(255,125,0)" points="1231,1275.18 1237.95,1271.12 1233.42,1268.74 1227.33,1273.26 " />
<svg:polygon detid="486638224" count="1" value="66" id="2204009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  0 backward    Id 486638224 " fill="rgb(255,125,0)" points="1226.02,1272.64 1232.15,1268.14 1227.2,1266.08 1222.01,1270.96 " />
<svg:polygon detid="486605444" count="1" value="66" id="2204010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605444 " fill="rgb(255,125,0)" points="1220.59,1270.44 1225.82,1265.57 1220.51,1263.84 1216.28,1269.04 " />
<svg:polygon detid="486605448" count="1" value="66" id="2204011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  2 forward    Id 486605448 " fill="rgb(255,125,0)" points="1214.77,1268.61 1219.04,1263.42 1213.43,1262.06 1210.22,1267.5 " />
<svg:polygon detid="486605452" count="1" value="66" id="2204012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  3 forward    Id 486605452 " fill="rgb(255,125,0)" points="1208.64,1267.18 1211.9,1261.74 1206.06,1260.75 1203.91,1266.38 " />
<svg:polygon detid="486638468" count="1" value="66" id="2204013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638468 " fill="rgb(255,125,0)" points="1202.27,1266.16 1204.48,1260.54 1198.49,1259.94 1197.42,1265.67 " />
<svg:polygon detid="486638472" count="1" value="66" id="2204014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638472 " fill="rgb(255,125,0)" points="1195.75,1265.56 1196.87,1259.83 1190.81,1259.63 1190.84,1265.4 " />
<svg:polygon detid="486638476" count="1" value="66" id="2204015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  3 forward    Id 486638476 " fill="rgb(255,125,0)" points="1189.16,1265.4 1189.19,1259.63 1183.13,1259.83 1184.25,1265.56 " />
<svg:polygon detid="486638480" count="1" value="66" id="2204016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  0 backward    Id 486638480 " fill="rgb(255,125,0)" points="1182.58,1265.67 1181.51,1259.94 1175.52,1260.54 1177.73,1266.16 " />
<svg:polygon detid="486605700" count="1" value="66" id="2204017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605700 " fill="rgb(255,125,0)" points="1176.09,1266.38 1173.94,1260.75 1168.1,1261.74 1171.36,1267.18 " />
<svg:polygon detid="486605704" count="1" value="66" id="2204018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  2 forward    Id 486605704 " fill="rgb(255,125,0)" points="1169.78,1267.5 1166.57,1262.06 1160.96,1263.42 1165.23,1268.61 " />
<svg:polygon detid="486605708" count="1" value="66" id="2204019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  3 forward    Id 486605708 " fill="rgb(255,125,0)" points="1163.72,1269.04 1159.49,1263.84 1154.18,1265.57 1159.41,1270.44 " />
<svg:polygon detid="486638724" count="1" value="66" id="2204020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638724 " fill="rgb(255,125,0)" points="1157.99,1270.96 1152.8,1266.08 1147.85,1268.14 1153.98,1272.64 " />
<svg:polygon detid="486638728" count="1" value="66" id="2204021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638728 " fill="rgb(255,125,0)" points="1152.67,1273.26 1146.58,1268.74 1142.05,1271.12 1149,1275.18 " />
<svg:polygon detid="486638732" count="1" value="66" id="2204022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  3 forward    Id 486638732 " fill="rgb(255,125,0)" points="1147.81,1275.88 1140.9,1271.8 1136.86,1274.46 1144.53,1278.04 " />
<svg:polygon detid="486638736" count="1" value="66" id="2204023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  0 backward    Id 486638736 " fill="rgb(255,125,0)" points="1143.49,1278.81 1135.84,1275.21 1132.33,1278.12 1140.64,1281.17 " />
<svg:polygon detid="486605956" count="1" value="66" id="2204024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486605956 " fill="rgb(255,125,0)" points="1139.75,1282.01 1131.46,1278.93 1128.53,1282.05 1137.37,1284.54 " />
<svg:polygon detid="486605960" count="1" value="66" id="2204025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  2 forward    Id 486605960 " fill="rgb(255,125,0)" points="1136.64,1285.43 1127.82,1282.92 1125.5,1286.22 1134.76,1288.11 " />
<svg:polygon detid="486605964" count="1" value="66" id="2204026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  3 forward    Id 486605964 " fill="rgb(255,125,0)" points="1134.2,1289.04 1124.96,1287.12 1123.28,1290.55 1132.84,1291.82 " />
<svg:polygon detid="486638980" count="1" value="66" id="2204027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486638980 " fill="rgb(255,125,0)" points="1132.47,1292.78 1122.92,1291.48 1121.9,1295 1131.64,1295.64 " />
<svg:polygon detid="486638984" count="1" value="66" id="2204028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486638984 " fill="rgb(255,125,0)" points="1131.45,1296.62 1121.72,1295.96 1121.38,1299.52 1131.18,1299.51 " />
<svg:polygon detid="486638988" count="1" value="66" id="2204029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  3 forward    Id 486638988 " fill="rgb(255,125,0)" points="1131.18,1300.49 1121.38,1300.48 1121.72,1304.04 1131.45,1303.38 " />
<svg:polygon detid="486638992" count="1" value="66" id="2204030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  0 backward    Id 486638992 " fill="rgb(255,125,0)" points="1131.64,1304.36 1121.9,1305 1122.92,1308.52 1132.47,1307.22 " />
<svg:polygon detid="486606212" count="1" value="66" id="2204031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606212 " fill="rgb(255,125,0)" points="1132.84,1308.18 1123.28,1309.45 1124.96,1312.88 1134.2,1310.96 " />
<svg:polygon detid="486606216" count="1" value="66" id="2204032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  2 forward    Id 486606216 " fill="rgb(255,125,0)" points="1134.76,1311.89 1125.5,1313.78 1127.82,1317.08 1136.64,1314.57 " />
<svg:polygon detid="486606220" count="1" value="66" id="2204033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  3 forward    Id 486606220 " fill="rgb(255,125,0)" points="1137.37,1315.46 1128.53,1317.95 1131.46,1321.07 1139.75,1317.99 " />
<svg:polygon detid="486639236" count="1" value="66" id="2204034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639236 " fill="rgb(255,125,0)" points="1140.64,1318.83 1132.33,1321.88 1135.84,1324.79 1143.49,1321.19 " />
<svg:polygon detid="486639240" count="1" value="66" id="2204035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639240 " fill="rgb(255,125,0)" points="1144.53,1321.96 1136.86,1325.54 1140.9,1328.2 1147.81,1324.12 " />
<svg:polygon detid="486639244" count="1" value="66" id="2204036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  3 forward    Id 486639244 " fill="rgb(255,125,0)" points="1149,1324.82 1142.05,1328.88 1146.58,1331.26 1152.67,1326.74 " />
<svg:polygon detid="486639248" count="1" value="66" id="2204037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  0 backward    Id 486639248 " fill="rgb(255,125,0)" points="1153.98,1327.36 1147.85,1331.86 1152.8,1333.92 1157.99,1329.04 " />
<svg:polygon detid="486606468" count="1" value="66" id="2204038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606468 " fill="rgb(255,125,0)" points="1159.41,1329.56 1154.18,1334.43 1159.49,1336.16 1163.72,1330.96 " />
<svg:polygon detid="486606472" count="1" value="66" id="2204039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  2 forward    Id 486606472 " fill="rgb(255,125,0)" points="1165.23,1331.39 1160.96,1336.58 1166.57,1337.94 1169.78,1332.5 " />
<svg:polygon detid="486606476" count="1" value="66" id="2204040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  3 forward    Id 486606476 " fill="rgb(255,125,0)" points="1171.36,1332.82 1168.1,1338.26 1173.94,1339.25 1176.09,1333.62 " />
<svg:polygon detid="486639492" count="1" value="66" id="2204041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639492 " fill="rgb(255,125,0)" points="1177.73,1333.84 1175.52,1339.46 1181.51,1340.06 1182.58,1334.33 " />
<svg:polygon detid="486639496" count="1" value="66" id="2204042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639496 " fill="rgb(255,125,0)" points="1184.25,1334.44 1183.13,1340.17 1189.19,1340.37 1189.16,1334.6 " />
<svg:polygon detid="486639500" count="1" value="66" id="2204043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  3 forward    Id 486639500 " fill="rgb(255,125,0)" points="1190.84,1334.6 1190.81,1340.37 1196.87,1340.17 1195.75,1334.44 " />
<svg:polygon detid="486639504" count="1" value="66" id="2204044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  0 backward    Id 486639504 " fill="rgb(255,125,0)" points="1197.42,1334.33 1198.49,1340.06 1204.48,1339.46 1202.27,1333.84 " />
<svg:polygon detid="486606724" count="1" value="66" id="2204045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606724 " fill="rgb(255,125,0)" points="1203.91,1333.62 1206.06,1339.25 1211.9,1338.26 1208.64,1332.82 " />
<svg:polygon detid="486606728" count="1" value="66" id="2204046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  2 forward    Id 486606728 " fill="rgb(255,125,0)" points="1210.22,1332.5 1213.43,1337.94 1219.04,1336.58 1214.77,1331.39 " />
<svg:polygon detid="486606732" count="1" value="66" id="2204047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  3 forward    Id 486606732 " fill="rgb(255,125,0)" points="1216.28,1330.96 1220.51,1336.16 1225.82,1334.43 1220.59,1329.56 " />
<svg:polygon detid="486639748" count="1" value="66" id="2204048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639748 " fill="rgb(255,125,0)" points="1222.01,1329.04 1227.2,1333.92 1232.15,1331.86 1226.02,1327.36 " />
<svg:polygon detid="486639752" count="1" value="66" id="2204049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639752 " fill="rgb(255,125,0)" points="1227.33,1326.74 1233.42,1331.26 1237.95,1328.88 1231,1324.82 " />
<svg:polygon detid="486639756" count="1" value="66" id="2204050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  3 forward    Id 486639756 " fill="rgb(255,125,0)" points="1232.19,1324.12 1239.1,1328.2 1243.14,1325.54 1235.47,1321.96 " />
<svg:polygon detid="486639760" count="1" value="66" id="2204051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  0 backward    Id 486639760 " fill="rgb(255,125,0)" points="1236.51,1321.19 1244.16,1324.79 1247.67,1321.88 1239.36,1318.83 " />
<svg:polygon detid="486606980" count="1" value="66" id="2204052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486606980 " fill="rgb(255,125,0)" points="1240.25,1317.99 1248.54,1321.07 1251.47,1317.95 1242.63,1315.46 " />
<svg:polygon detid="486606984" count="1" value="66" id="2204053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  2 forward    Id 486606984 " fill="rgb(255,125,0)" points="1243.36,1314.57 1252.18,1317.08 1254.5,1313.78 1245.24,1311.89 " />
<svg:polygon detid="486606988" count="1" value="66" id="2204054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  3 forward    Id 486606988 " fill="rgb(255,125,0)" points="1245.8,1310.96 1255.04,1312.88 1256.72,1309.45 1247.16,1308.18 " />
<svg:polygon detid="486637968" count="1" value="66" id="2204055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  0 backward    Id 486637968 " fill="rgb(255,125,0)" points="1247.53,1307.22 1257.08,1308.52 1258.1,1305 1248.36,1304.36 " />
<svg:polygon detid="486637956" count="1" value="66" id="2204056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486637956 " fill="rgb(255,125,0)" points="1248.55,1303.38 1258.28,1304.04 1258.62,1300.48 1248.82,1300.49 " />
<svg:polygon detid="486637994" count="1" value="66" id="2205001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486637994 " fill="rgb(255,125,0)" points="1272.31,1293.17 1259.92,1294.35 1260.56,1299.15 " />
<svg:polygon detid="486605222" count="1" value="66" id="2205002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605222 " fill="rgb(255,125,0)" points="1269.48,1285.68 1257.56,1287.98 1259.47,1292.67 " />
<svg:polygon detid="486605226" count="1" value="66" id="2205003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  2 forward    Id 486605226 " fill="rgb(255,125,0)" points="1264.7,1278.54 1253.53,1281.92 1256.66,1286.36 " />
<svg:polygon detid="486605230" count="1" value="66" id="2205004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  3 forward    Id 486605230 " fill="rgb(255,125,0)" points="1258.07,1271.93 1247.94,1276.29 1252.21,1280.4 " />
<svg:polygon detid="486638246" count="1" value="66" id="2205005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638246 " fill="rgb(255,125,0)" points="1249.77,1266.02 1240.92,1271.25 1246.23,1274.91 " />
<svg:polygon detid="486638250" count="1" value="66" id="2205006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638250 " fill="rgb(255,125,0)" points="1240,1260.93 1232.65,1266.92 1238.87,1270.05 " />
<svg:polygon detid="486605478" count="1" value="66" id="2205007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605478 " fill="rgb(255,125,0)" points="1228.99,1256.81 1223.32,1263.4 1230.3,1265.92 " />
<svg:polygon detid="486605482" count="1" value="66" id="2205008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  2 forward    Id 486605482 " fill="rgb(255,125,0)" points="1217.03,1253.76 1213.18,1260.79 1220.74,1262.63 " />
<svg:polygon detid="486605486" count="1" value="66" id="2205009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  3 forward    Id 486605486 " fill="rgb(255,125,0)" points="1204.4,1251.84 1202.47,1259.14 1210.43,1260.26 " />
<svg:polygon detid="486638502" count="1" value="66" id="2205010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638502 " fill="rgb(255,125,0)" points="1191.41,1251.11 1191.45,1258.49 1199.61,1258.87 " />
<svg:polygon detid="486638506" count="1" value="66" id="2205011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638506 " fill="rgb(255,125,0)" points="1178.39,1251.58 1180.39,1258.87 1188.55,1258.49 " />
<svg:polygon detid="486605734" count="1" value="66" id="2205012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605734 " fill="rgb(255,125,0)" points="1165.66,1253.24 1169.57,1260.26 1177.53,1259.14 " />
<svg:polygon detid="486605738" count="1" value="66" id="2205013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  2 forward    Id 486605738 " fill="rgb(255,125,0)" points="1153.53,1256.06 1159.26,1262.63 1166.82,1260.79 " />
<svg:polygon detid="486605742" count="1" value="66" id="2205014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  3 forward    Id 486605742 " fill="rgb(255,125,0)" points="1142.29,1259.96 1149.7,1265.92 1156.68,1263.4 " />
<svg:polygon detid="486638758" count="1" value="66" id="2205015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638758 " fill="rgb(255,125,0)" points="1132.23,1264.84 1141.13,1270.05 1147.35,1266.92 " />
<svg:polygon detid="486638762" count="1" value="66" id="2205016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638762 " fill="rgb(255,125,0)" points="1123.59,1270.59 1133.77,1274.91 1139.08,1271.25 " />
<svg:polygon detid="486605990" count="1" value="66" id="2205017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486605990 " fill="rgb(255,125,0)" points="1116.59,1277.06 1127.79,1280.4 1132.06,1276.29 " />
<svg:polygon detid="486605994" count="1" value="66" id="2205018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  2 forward    Id 486605994 " fill="rgb(255,125,0)" points="1111.39,1284.1 1123.34,1286.36 1126.47,1281.92 " />
<svg:polygon detid="486605998" count="1" value="66" id="2205019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  3 forward    Id 486605998 " fill="rgb(255,125,0)" points="1108.13,1291.53 1120.53,1292.67 1122.44,1287.98 " />
<svg:polygon detid="486639014" count="1" value="66" id="2205020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486639014 " fill="rgb(255,125,0)" points="1106.88,1299.17 1119.44,1299.15 1120.08,1294.35 " />
<svg:polygon detid="486639018" count="1" value="66" id="2205021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486639018 " fill="rgb(255,125,0)" points="1107.69,1306.83 1120.08,1305.65 1119.44,1300.85 " />
<svg:polygon detid="486606246" count="1" value="66" id="2205022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606246 " fill="rgb(255,125,0)" points="1110.52,1314.32 1122.44,1312.02 1120.53,1307.33 " />
<svg:polygon detid="486606250" count="1" value="66" id="2205023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  2 forward    Id 486606250 " fill="rgb(255,125,0)" points="1115.3,1321.46 1126.47,1318.08 1123.34,1313.64 " />
<svg:polygon detid="486606254" count="1" value="66" id="2205024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  3 forward    Id 486606254 " fill="rgb(255,125,0)" points="1121.93,1328.07 1132.06,1323.71 1127.79,1319.6 " />
<svg:polygon detid="486639270" count="1" value="66" id="2205025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639270 " fill="rgb(255,125,0)" points="1130.23,1333.98 1139.08,1328.75 1133.77,1325.09 " />
<svg:polygon detid="486639274" count="1" value="66" id="2205026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639274 " fill="rgb(255,125,0)" points="1140,1339.07 1147.35,1333.08 1141.13,1329.95 " />
<svg:polygon detid="486606502" count="1" value="66" id="2205027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606502 " fill="rgb(255,125,0)" points="1151.01,1343.19 1156.68,1336.6 1149.7,1334.08 " />
<svg:polygon detid="486606506" count="1" value="66" id="2205028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  2 forward    Id 486606506 " fill="rgb(255,125,0)" points="1162.97,1346.24 1166.82,1339.21 1159.26,1337.37 " />
<svg:polygon detid="486606510" count="1" value="66" id="2205029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  3 forward    Id 486606510 " fill="rgb(255,125,0)" points="1175.6,1348.16 1177.53,1340.86 1169.57,1339.74 " />
<svg:polygon detid="486639526" count="1" value="66" id="2205030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639526 " fill="rgb(255,125,0)" points="1188.59,1348.89 1188.55,1341.51 1180.39,1341.13 " />
<svg:polygon detid="486639530" count="1" value="66" id="2205031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639530 " fill="rgb(255,125,0)" points="1201.61,1348.42 1199.61,1341.13 1191.45,1341.51 " />
<svg:polygon detid="486606758" count="1" value="66" id="2205032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606758 " fill="rgb(255,125,0)" points="1214.34,1346.76 1210.43,1339.74 1202.47,1340.86 " />
<svg:polygon detid="486606762" count="1" value="66" id="2205033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  2 forward    Id 486606762 " fill="rgb(255,125,0)" points="1226.47,1343.94 1220.74,1337.37 1213.18,1339.21 " />
<svg:polygon detid="486606766" count="1" value="66" id="2205034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  3 forward    Id 486606766 " fill="rgb(255,125,0)" points="1237.71,1340.04 1230.3,1334.08 1223.32,1336.6 " />
<svg:polygon detid="486639782" count="1" value="66" id="2205035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639782 " fill="rgb(255,125,0)" points="1247.77,1335.16 1238.87,1329.95 1232.65,1333.08 " />
<svg:polygon detid="486639786" count="1" value="66" id="2205036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639786 " fill="rgb(255,125,0)" points="1256.41,1329.41 1246.23,1325.09 1240.92,1328.75 " />
<svg:polygon detid="486607014" count="1" value="66" id="2205037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486607014 " fill="rgb(255,125,0)" points="1263.41,1322.94 1252.21,1319.6 1247.94,1323.71 " />
<svg:polygon detid="486607018" count="1" value="66" id="2205038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  2 forward    Id 486607018 " fill="rgb(255,125,0)" points="1268.61,1315.9 1256.66,1313.64 1253.53,1318.08 " />
<svg:polygon detid="486607022" count="1" value="66" id="2205039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  3 forward    Id 486607022 " fill="rgb(255,125,0)" points="1271.87,1308.47 1259.47,1307.33 1257.56,1312.02 " />
<svg:polygon detid="486637990" count="1" value="66" id="2205040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486637990 " fill="rgb(255,125,0)" points="1273.12,1300.83 1260.56,1300.85 1259.92,1305.65 " />
<svg:polygon detid="486637993" count="1" value="66" id="2205101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward   stereo Id 486637993 " fill="rgb(255,125,0)" points="1260.56,1299.15 1273.12,1299.17 1272.31,1293.17 " />
<svg:polygon detid="486605221" count="1" value="66" id="2205102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward   stereo Id 486605221 " fill="rgb(255,125,0)" points="1259.47,1292.67 1271.87,1291.53 1269.48,1285.68 " />
<svg:polygon detid="486605225" count="1" value="66" id="2205103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  2 forward   stereo Id 486605225 " fill="rgb(255,125,0)" points="1256.66,1286.36 1268.61,1284.1 1264.7,1278.54 " />
<svg:polygon detid="486605229" count="1" value="66" id="2205104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  3 forward   stereo Id 486605229 " fill="rgb(255,125,0)" points="1252.21,1280.4 1263.41,1277.06 1258.07,1271.93 " />
<svg:polygon detid="486638245" count="1" value="66" id="2205105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward   stereo Id 486638245 " fill="rgb(255,125,0)" points="1246.23,1274.91 1256.41,1270.59 1249.77,1266.02 " />
<svg:polygon detid="486638249" count="1" value="66" id="2205106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward   stereo Id 486638249 " fill="rgb(255,125,0)" points="1238.87,1270.05 1247.77,1264.84 1240,1260.93 " />
<svg:polygon detid="486605477" count="1" value="66" id="2205107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward   stereo Id 486605477 " fill="rgb(255,125,0)" points="1230.3,1265.92 1237.71,1259.96 1228.99,1256.81 " />
<svg:polygon detid="486605481" count="1" value="66" id="2205108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  2 forward   stereo Id 486605481 " fill="rgb(255,125,0)" points="1220.74,1262.63 1226.47,1256.06 1217.03,1253.76 " />
<svg:polygon detid="486605485" count="1" value="66" id="2205109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  3 forward   stereo Id 486605485 " fill="rgb(255,125,0)" points="1210.43,1260.26 1214.34,1253.24 1204.4,1251.84 " />
<svg:polygon detid="486638501" count="1" value="66" id="2205110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward   stereo Id 486638501 " fill="rgb(255,125,0)" points="1199.61,1258.87 1201.61,1251.58 1191.41,1251.11 " />
<svg:polygon detid="486638505" count="1" value="66" id="2205111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward   stereo Id 486638505 " fill="rgb(255,125,0)" points="1188.55,1258.49 1188.59,1251.11 1178.39,1251.58 " />
<svg:polygon detid="486605733" count="1" value="66" id="2205112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward   stereo Id 486605733 " fill="rgb(255,125,0)" points="1177.53,1259.14 1175.6,1251.84 1165.66,1253.24 " />
<svg:polygon detid="486605737" count="1" value="66" id="2205113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  2 forward   stereo Id 486605737 " fill="rgb(255,125,0)" points="1166.82,1260.79 1162.97,1253.76 1153.53,1256.06 " />
<svg:polygon detid="486605741" count="1" value="66" id="2205114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  3 forward   stereo Id 486605741 " fill="rgb(255,125,0)" points="1156.68,1263.4 1151.01,1256.81 1142.29,1259.96 " />
<svg:polygon detid="486638757" count="1" value="66" id="2205115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward   stereo Id 486638757 " fill="rgb(255,125,0)" points="1147.35,1266.92 1140,1260.93 1132.23,1264.84 " />
<svg:polygon detid="486638761" count="1" value="66" id="2205116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward   stereo Id 486638761 " fill="rgb(255,125,0)" points="1139.08,1271.25 1130.23,1266.02 1123.59,1270.59 " />
<svg:polygon detid="486605989" count="1" value="66" id="2205117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward   stereo Id 486605989 " fill="rgb(255,125,0)" points="1132.06,1276.29 1121.93,1271.93 1116.59,1277.06 " />
<svg:polygon detid="486605993" count="1" value="66" id="2205118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  2 forward   stereo Id 486605993 " fill="rgb(255,125,0)" points="1126.47,1281.92 1115.3,1278.54 1111.39,1284.1 " />
<svg:polygon detid="486605997" count="1" value="66" id="2205119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  3 forward   stereo Id 486605997 " fill="rgb(255,125,0)" points="1122.44,1287.98 1110.52,1285.68 1108.13,1291.53 " />
<svg:polygon detid="486639013" count="1" value="66" id="2205120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward   stereo Id 486639013 " fill="rgb(255,125,0)" points="1120.08,1294.35 1107.69,1293.17 1106.88,1299.17 " />
<svg:polygon detid="486639017" count="1" value="66" id="2205121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward   stereo Id 486639017 " fill="rgb(255,125,0)" points="1119.44,1300.85 1106.88,1300.83 1107.69,1306.83 " />
<svg:polygon detid="486606245" count="1" value="66" id="2205122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward   stereo Id 486606245 " fill="rgb(255,125,0)" points="1120.53,1307.33 1108.13,1308.47 1110.52,1314.32 " />
<svg:polygon detid="486606249" count="1" value="66" id="2205123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  2 forward   stereo Id 486606249 " fill="rgb(255,125,0)" points="1123.34,1313.64 1111.39,1315.9 1115.3,1321.46 " />
<svg:polygon detid="486606253" count="1" value="66" id="2205124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  3 forward   stereo Id 486606253 " fill="rgb(255,125,0)" points="1127.79,1319.6 1116.59,1322.94 1121.93,1328.07 " />
<svg:polygon detid="486639269" count="1" value="66" id="2205125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward   stereo Id 486639269 " fill="rgb(255,125,0)" points="1133.77,1325.09 1123.59,1329.41 1130.23,1333.98 " />
<svg:polygon detid="486639273" count="1" value="66" id="2205126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward   stereo Id 486639273 " fill="rgb(255,125,0)" points="1141.13,1329.95 1132.23,1335.16 1140,1339.07 " />
<svg:polygon detid="486606501" count="1" value="66" id="2205127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward   stereo Id 486606501 " fill="rgb(255,125,0)" points="1149.7,1334.08 1142.29,1340.04 1151.01,1343.19 " />
<svg:polygon detid="486606505" count="1" value="66" id="2205128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  2 forward   stereo Id 486606505 " fill="rgb(255,125,0)" points="1159.26,1337.37 1153.53,1343.94 1162.97,1346.24 " />
<svg:polygon detid="486606509" count="1" value="66" id="2205129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  3 forward   stereo Id 486606509 " fill="rgb(255,125,0)" points="1169.57,1339.74 1165.66,1346.76 1175.6,1348.16 " />
<svg:polygon detid="486639525" count="1" value="66" id="2205130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward   stereo Id 486639525 " fill="rgb(255,125,0)" points="1180.39,1341.13 1178.39,1348.42 1188.59,1348.89 " />
<svg:polygon detid="486639529" count="1" value="66" id="2205131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward   stereo Id 486639529 " fill="rgb(255,125,0)" points="1191.45,1341.51 1191.41,1348.89 1201.61,1348.42 " />
<svg:polygon detid="486606757" count="1" value="66" id="2205132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward   stereo Id 486606757 " fill="rgb(255,125,0)" points="1202.47,1340.86 1204.4,1348.16 1214.34,1346.76 " />
<svg:polygon detid="486606761" count="1" value="66" id="2205133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  2 forward   stereo Id 486606761 " fill="rgb(255,125,0)" points="1213.18,1339.21 1217.03,1346.24 1226.47,1343.94 " />
<svg:polygon detid="486606765" count="1" value="66" id="2205134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  3 forward   stereo Id 486606765 " fill="rgb(255,125,0)" points="1223.32,1336.6 1228.99,1343.19 1237.71,1340.04 " />
<svg:polygon detid="486639781" count="1" value="66" id="2205135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward   stereo Id 486639781 " fill="rgb(255,125,0)" points="1232.65,1333.08 1240,1339.07 1247.77,1335.16 " />
<svg:polygon detid="486639785" count="1" value="66" id="2205136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward   stereo Id 486639785 " fill="rgb(255,125,0)" points="1240.92,1328.75 1249.77,1333.98 1256.41,1329.41 " />
<svg:polygon detid="486607013" count="1" value="66" id="2205137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward   stereo Id 486607013 " fill="rgb(255,125,0)" points="1247.94,1323.71 1258.07,1328.07 1263.41,1322.94 " />
<svg:polygon detid="486607017" count="1" value="66" id="2205138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  2 forward   stereo Id 486607017 " fill="rgb(255,125,0)" points="1253.53,1318.08 1264.7,1321.46 1268.61,1315.9 " />
<svg:polygon detid="486607021" count="1" value="66" id="2205139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  3 forward   stereo Id 486607021 " fill="rgb(255,125,0)" points="1257.56,1312.02 1269.48,1314.32 1271.87,1308.47 " />
<svg:polygon detid="486637989" count="1" value="66" id="2205140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward   stereo Id 486637989 " fill="rgb(255,125,0)" points="1259.92,1305.65 1272.31,1306.83 1273.12,1300.83 " />
<svg:polygon detid="486638020" count="1" value="66" id="2206001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486638020 " fill="rgb(255,125,0)" points="1275.05,1299.28 1290.71,1299.3 1290.21,1294.06 1274.65,1295.12 " />
<svg:polygon detid="486638028" count="1" value="66" id="2206002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  3 forward    Id 486638028 " fill="rgb(255,125,0)" points="1274.38,1293.68 1289.94,1292.67 1288.45,1287.5 1273.19,1289.57 " />
<svg:polygon detid="486605252" count="1" value="66" id="2206003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605252 " fill="rgb(255,125,0)" points="1272.64,1288.16 1287.92,1286.14 1285.45,1281.1 1270.68,1284.16 " />
<svg:polygon detid="486605256" count="1" value="66" id="2206004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  2 forward    Id 486605256 " fill="rgb(255,125,0)" points="1269.87,1282.8 1284.66,1279.77 1281.25,1274.93 1267.16,1278.94 " />
<svg:polygon detid="486605260" count="1" value="66" id="2206005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  3 forward    Id 486605260 " fill="rgb(255,125,0)" points="1266.09,1277.64 1280.22,1273.67 1275.9,1269.08 1262.66,1273.99 " />
<svg:polygon detid="486638276" count="1" value="66" id="2206006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638276 " fill="rgb(255,125,0)" points="1261.36,1272.77 1274.64,1267.89 1269.48,1263.61 1257.26,1269.37 " />
<svg:polygon detid="486638280" count="1" value="66" id="2206007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638280 " fill="rgb(255,125,0)" points="1255.73,1268.24 1267.99,1262.52 1262.05,1258.61 1251,1265.13 " />
<svg:polygon detid="486638284" count="1" value="66" id="2206008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  3 forward    Id 486638284 " fill="rgb(255,125,0)" points="1249.27,1264.11 1260.37,1257.62 1253.72,1254.12 1243.98,1261.34 " />
<svg:polygon detid="486638288" count="1" value="66" id="2206009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  0 backward    Id 486638288 " fill="rgb(255,125,0)" points="1242.07,1260.44 1251.86,1253.25 1244.59,1250.21 1236.29,1258.02 " />
<svg:polygon detid="486605508" count="1" value="66" id="2206010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605508 " fill="rgb(255,125,0)" points="1234.21,1257.26 1242.57,1249.47 1234.77,1246.93 1228.01,1255.24 " />
<svg:polygon detid="486605512" count="1" value="66" id="2206011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  2 forward    Id 486605512 " fill="rgb(255,125,0)" points="1225.8,1254.61 1232.62,1246.32 1224.38,1244.32 1219.25,1253.02 " />
<svg:polygon detid="486605516" count="1" value="66" id="2206012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  3 forward    Id 486605516 " fill="rgb(255,125,0)" points="1216.93,1252.54 1222.14,1243.85 1213.57,1242.4 1210.12,1251.39 " />
<svg:polygon detid="486638532" count="1" value="66" id="2206013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638532 " fill="rgb(255,125,0)" points="1207.73,1251.07 1211.25,1242.09 1202.46,1241.21 1200.74,1250.37 " />
<svg:polygon detid="486638536" count="1" value="66" id="2206014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638536 " fill="rgb(255,125,0)" points="1198.3,1250.21 1200.09,1241.06 1191.19,1240.76 1191.23,1249.97 " />
<svg:polygon detid="486638540" count="1" value="66" id="2206015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  3 forward    Id 486638540 " fill="rgb(255,125,0)" points="1188.77,1249.97 1188.81,1240.76 1179.91,1241.06 1181.7,1250.21 " />
<svg:polygon detid="486638544" count="1" value="66" id="2206016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  0 backward    Id 486638544 " fill="rgb(255,125,0)" points="1179.26,1250.37 1177.54,1241.21 1168.75,1242.09 1172.27,1251.07 " />
<svg:polygon detid="486605764" count="1" value="66" id="2206017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605764 " fill="rgb(255,125,0)" points="1169.88,1251.39 1166.43,1242.4 1157.86,1243.85 1163.07,1252.54 " />
<svg:polygon detid="486605768" count="1" value="66" id="2206018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  2 forward    Id 486605768 " fill="rgb(255,125,0)" points="1160.75,1253.02 1155.62,1244.32 1147.38,1246.32 1154.2,1254.61 " />
<svg:polygon detid="486605772" count="1" value="66" id="2206019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  3 forward    Id 486605772 " fill="rgb(255,125,0)" points="1151.99,1255.24 1145.23,1246.93 1137.43,1249.47 1145.79,1257.26 " />
<svg:polygon detid="486638788" count="1" value="66" id="2206020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638788 " fill="rgb(255,125,0)" points="1143.71,1258.02 1135.41,1250.21 1128.14,1253.25 1137.93,1260.44 " />
<svg:polygon detid="486638792" count="1" value="66" id="2206021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638792 " fill="rgb(255,125,0)" points="1136.02,1261.34 1126.28,1254.12 1119.63,1257.62 1130.73,1264.11 " />
<svg:polygon detid="486638796" count="1" value="66" id="2206022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  3 forward    Id 486638796 " fill="rgb(255,125,0)" points="1129,1265.13 1117.95,1258.61 1112.01,1262.52 1124.27,1268.24 " />
<svg:polygon detid="486638800" count="1" value="66" id="2206023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  0 backward    Id 486638800 " fill="rgb(255,125,0)" points="1122.74,1269.37 1110.52,1263.61 1105.36,1267.89 1118.64,1272.77 " />
<svg:polygon detid="486606020" count="1" value="66" id="2206024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486606020 " fill="rgb(255,125,0)" points="1117.34,1273.99 1104.1,1269.08 1099.78,1273.67 1113.91,1277.64 " />
<svg:polygon detid="486606024" count="1" value="66" id="2206025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  2 forward    Id 486606024 " fill="rgb(255,125,0)" points="1112.84,1278.94 1098.75,1274.93 1095.34,1279.77 1110.13,1282.8 " />
<svg:polygon detid="486606028" count="1" value="66" id="2206026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  3 forward    Id 486606028 " fill="rgb(255,125,0)" points="1109.32,1284.16 1094.55,1281.1 1092.08,1286.14 1107.36,1288.16 " />
<svg:polygon detid="486639044" count="1" value="66" id="2206027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486639044 " fill="rgb(255,125,0)" points="1106.81,1289.57 1091.55,1287.5 1090.06,1292.67 1105.62,1293.68 " />
<svg:polygon detid="486639048" count="1" value="66" id="2206028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486639048 " fill="rgb(255,125,0)" points="1105.35,1295.12 1089.79,1294.06 1089.29,1299.3 1104.95,1299.28 " />
<svg:polygon detid="486639052" count="1" value="66" id="2206029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  3 forward    Id 486639052 " fill="rgb(255,125,0)" points="1104.95,1300.72 1089.29,1300.7 1089.79,1305.94 1105.35,1304.88 " />
<svg:polygon detid="486639056" count="1" value="66" id="2206030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  0 backward    Id 486639056 " fill="rgb(255,125,0)" points="1105.62,1306.32 1090.06,1307.33 1091.55,1312.5 1106.81,1310.43 " />
<svg:polygon detid="486606276" count="1" value="66" id="2206031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606276 " fill="rgb(255,125,0)" points="1107.36,1311.84 1092.08,1313.86 1094.55,1318.9 1109.32,1315.84 " />
<svg:polygon detid="486606280" count="1" value="66" id="2206032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  2 forward    Id 486606280 " fill="rgb(255,125,0)" points="1110.13,1317.2 1095.34,1320.23 1098.75,1325.07 1112.84,1321.06 " />
<svg:polygon detid="486606284" count="1" value="66" id="2206033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  3 forward    Id 486606284 " fill="rgb(255,125,0)" points="1113.91,1322.36 1099.78,1326.33 1104.1,1330.92 1117.34,1326.01 " />
<svg:polygon detid="486639300" count="1" value="66" id="2206034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639300 " fill="rgb(255,125,0)" points="1118.64,1327.23 1105.36,1332.11 1110.52,1336.39 1122.74,1330.63 " />
<svg:polygon detid="486639304" count="1" value="66" id="2206035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639304 " fill="rgb(255,125,0)" points="1124.27,1331.76 1112.01,1337.48 1117.95,1341.39 1129,1334.87 " />
<svg:polygon detid="486639308" count="1" value="66" id="2206036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  3 forward    Id 486639308 " fill="rgb(255,125,0)" points="1130.73,1335.89 1119.63,1342.38 1126.28,1345.88 1136.02,1338.66 " />
<svg:polygon detid="486639312" count="1" value="66" id="2206037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  0 backward    Id 486639312 " fill="rgb(255,125,0)" points="1137.93,1339.56 1128.14,1346.75 1135.41,1349.79 1143.71,1341.98 " />
<svg:polygon detid="486606532" count="1" value="66" id="2206038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606532 " fill="rgb(255,125,0)" points="1145.79,1342.74 1137.43,1350.53 1145.23,1353.07 1151.99,1344.76 " />
<svg:polygon detid="486606536" count="1" value="66" id="2206039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  2 forward    Id 486606536 " fill="rgb(255,125,0)" points="1154.2,1345.39 1147.38,1353.68 1155.62,1355.68 1160.75,1346.98 " />
<svg:polygon detid="486606540" count="1" value="66" id="2206040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  3 forward    Id 486606540 " fill="rgb(255,125,0)" points="1163.07,1347.46 1157.86,1356.15 1166.43,1357.6 1169.88,1348.61 " />
<svg:polygon detid="486639556" count="1" value="66" id="2206041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639556 " fill="rgb(255,125,0)" points="1172.27,1348.93 1168.75,1357.91 1177.54,1358.79 1179.26,1349.63 " />
<svg:polygon detid="486639560" count="1" value="66" id="2206042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639560 " fill="rgb(255,125,0)" points="1181.7,1349.79 1179.91,1358.94 1188.81,1359.24 1188.77,1350.03 " />
<svg:polygon detid="486639564" count="1" value="66" id="2206043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  3 forward    Id 486639564 " fill="rgb(255,125,0)" points="1191.23,1350.03 1191.19,1359.24 1200.09,1358.94 1198.3,1349.79 " />
<svg:polygon detid="486639568" count="1" value="66" id="2206044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  0 backward    Id 486639568 " fill="rgb(255,125,0)" points="1200.74,1349.63 1202.46,1358.79 1211.25,1357.91 1207.73,1348.93 " />
<svg:polygon detid="486606788" count="1" value="66" id="2206045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606788 " fill="rgb(255,125,0)" points="1210.12,1348.61 1213.57,1357.6 1222.14,1356.15 1216.93,1347.46 " />
<svg:polygon detid="486606792" count="1" value="66" id="2206046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  2 forward    Id 486606792 " fill="rgb(255,125,0)" points="1219.25,1346.98 1224.38,1355.68 1232.62,1353.68 1225.8,1345.39 " />
<svg:polygon detid="486606796" count="1" value="66" id="2206047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  3 forward    Id 486606796 " fill="rgb(255,125,0)" points="1228.01,1344.76 1234.77,1353.07 1242.57,1350.53 1234.21,1342.74 " />
<svg:polygon detid="486639812" count="1" value="66" id="2206048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639812 " fill="rgb(255,125,0)" points="1236.29,1341.98 1244.59,1349.79 1251.86,1346.75 1242.07,1339.56 " />
<svg:polygon detid="486639816" count="1" value="66" id="2206049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639816 " fill="rgb(255,125,0)" points="1243.98,1338.66 1253.72,1345.88 1260.37,1342.38 1249.27,1335.89 " />
<svg:polygon detid="486639820" count="1" value="66" id="2206050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  3 forward    Id 486639820 " fill="rgb(255,125,0)" points="1251,1334.87 1262.05,1341.39 1267.99,1337.48 1255.73,1331.76 " />
<svg:polygon detid="486639824" count="1" value="66" id="2206051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  0 backward    Id 486639824 " fill="rgb(255,125,0)" points="1257.26,1330.63 1269.48,1336.39 1274.64,1332.11 1261.36,1327.23 " />
<svg:polygon detid="486607044" count="1" value="66" id="2206052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486607044 " fill="rgb(255,125,0)" points="1262.66,1326.01 1275.9,1330.92 1280.22,1326.33 1266.09,1322.36 " />
<svg:polygon detid="486607048" count="1" value="66" id="2206053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  2 forward    Id 486607048 " fill="rgb(255,125,0)" points="1267.16,1321.06 1281.25,1325.07 1284.66,1320.23 1269.87,1317.2 " />
<svg:polygon detid="486607052" count="1" value="66" id="2206054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  3 forward    Id 486607052 " fill="rgb(255,125,0)" points="1270.68,1315.84 1285.45,1318.9 1287.92,1313.86 1272.64,1311.84 " />
<svg:polygon detid="486638032" count="1" value="66" id="2206055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  0 backward    Id 486638032 " fill="rgb(255,125,0)" points="1273.19,1310.43 1288.45,1312.5 1289.94,1307.33 1274.38,1306.32 " />
<svg:polygon detid="486638024" count="1" value="66" id="2206056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486638024 " fill="rgb(255,125,0)" points="1274.65,1304.88 1290.21,1305.94 1290.71,1300.7 1275.05,1300.72 " />
<svg:polygon detid="486638052" count="1" value="66" id="2207001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 forward    Id 486638052 " fill="rgb(255,125,0)" points="1293.72,1301.79 1311.12,1302.21 1311.12,1297.79 1293.72,1298.21 " />
<svg:polygon detid="486638060" count="1" value="66" id="2207002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  3 forward    Id 486638060 " fill="rgb(255,125,0)" points="1293.64,1296.99 1311.04,1296.61 1310.46,1292.21 1293.17,1293.43 " />
<svg:polygon detid="486638064" count="1" value="66" id="2207003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  0 backward    Id 486638064 " fill="rgb(255,125,0)" points="1292.92,1292.22 1310.22,1291.03 1309.05,1286.68 1291.97,1288.69 " />
<svg:polygon detid="486605284" count="1" value="66" id="2207004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 forward    Id 486605284 " fill="rgb(255,125,0)" points="1291.57,1287.49 1308.65,1285.51 1306.9,1281.22 1290.15,1284.02 " />
<svg:polygon detid="486605288" count="1" value="66" id="2207005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  2 forward    Id 486605288 " fill="rgb(255,125,0)" points="1289.59,1282.85 1306.35,1280.08 1304.04,1275.89 1287.71,1279.45 " />
<svg:polygon detid="486605292" count="1" value="66" id="2207006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  3 forward    Id 486605292 " fill="rgb(255,125,0)" points="1286.99,1278.3 1303.34,1274.77 1300.47,1270.7 1284.67,1275 " />
<svg:polygon detid="486605296" count="1" value="66" id="2207007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  0 backward    Id 486605296 " fill="rgb(255,125,0)" points="1283.8,1273.89 1299.62,1269.62 1296.22,1265.69 1281.04,1270.71 " />
<svg:polygon detid="486605300" count="1" value="66" id="2207008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 forward  module  1 backward    Id 486605300 " fill="rgb(255,125,0)" points="1280.03,1269.64 1295.23,1264.65 1291.32,1260.89 1276.85,1266.6 " />
<svg:polygon detid="486638308" count="1" value="66" id="2207009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 forward    Id 486638308 " fill="rgb(255,125,0)" points="1275.7,1265.58 1290.19,1259.9 1285.79,1256.34 1272.13,1262.69 " />
<svg:polygon detid="486638312" count="1" value="66" id="2207010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  2 forward    Id 486638312 " fill="rgb(255,125,0)" points="1270.84,1261.73 1284.54,1255.4 1279.67,1252.05 1266.9,1259.02 " />
<svg:polygon detid="486638316" count="1" value="66" id="2207011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  3 forward    Id 486638316 " fill="rgb(255,125,0)" points="1265.49,1258.12 1278.3,1251.18 1273,1248.06 1261.19,1255.59 " />
<svg:polygon detid="486638320" count="1" value="66" id="2207012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  0 backward    Id 486638320 " fill="rgb(255,125,0)" points="1259.67,1254.77 1271.51,1247.25 1265.81,1244.39 1255.05,1252.44 " />
<svg:polygon detid="486638324" count="1" value="66" id="2207013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 backward  module  1 backward    Id 486638324 " fill="rgb(255,125,0)" points="1253.43,1251.69 1264.23,1243.65 1258.16,1241.06 1248.51,1249.59 " />
<svg:polygon detid="486605540" count="1" value="66" id="2207014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 forward    Id 486605540 " fill="rgb(255,125,0)" points="1246.79,1248.91 1256.48,1240.4 1250.09,1238.1 1241.6,1247.04 " />
<svg:polygon detid="486605544" count="1" value="66" id="2207015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  2 forward    Id 486605544 " fill="rgb(255,125,0)" points="1239.8,1246.45 1248.33,1237.52 1241.65,1235.52 1234.38,1244.83 " />
<svg:polygon detid="486605548" count="1" value="66" id="2207016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  3 forward    Id 486605548 " fill="rgb(255,125,0)" points="1232.5,1244.31 1239.81,1235.02 1232.89,1233.33 1226.89,1242.95 " />
<svg:polygon detid="486605552" count="1" value="66" id="2207017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  0 backward    Id 486605552 " fill="rgb(255,125,0)" points="1224.94,1242.52 1230.99,1232.92 1223.86,1231.56 1219.16,1241.42 " />
<svg:polygon detid="486605556" count="1" value="66" id="2207018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 2 forward  module  1 backward    Id 486605556 " fill="rgb(255,125,0)" points="1217.17,1241.09 1221.92,1231.23 1214.63,1230.21 1211.26,1240.25 " />
<svg:polygon detid="486638564" count="1" value="66" id="2207019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 forward    Id 486638564 " fill="rgb(255,125,0)" points="1209.23,1240.02 1212.65,1229.97 1205.25,1229.28 1203.22,1239.46 " />
<svg:polygon detid="486638568" count="1" value="66" id="2207020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  2 forward    Id 486638568 " fill="rgb(255,125,0)" points="1201.17,1239.31 1203.24,1229.14 1195.77,1228.8 1195.11,1239.03 " />
<svg:polygon detid="486638572" count="1" value="66" id="2207021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  3 forward    Id 486638572 " fill="rgb(255,125,0)" points="1193.04,1238.99 1193.75,1228.75 1186.25,1228.75 1186.96,1238.99 " />
<svg:polygon detid="486638576" count="1" value="66" id="2207022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  0 backward    Id 486638576 " fill="rgb(255,125,0)" points="1184.89,1239.03 1184.23,1228.8 1176.76,1229.14 1178.83,1239.31 " />
<svg:polygon detid="486638580" count="1" value="66" id="2207023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 backward  module  1 backward    Id 486638580 " fill="rgb(255,125,0)" points="1176.78,1239.46 1174.75,1229.28 1167.35,1229.97 1170.77,1240.02 " />
<svg:polygon detid="486605796" count="1" value="66" id="2207024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 forward    Id 486605796 " fill="rgb(255,125,0)" points="1168.74,1240.25 1165.37,1230.21 1158.08,1231.23 1162.83,1241.09 " />
<svg:polygon detid="486605800" count="1" value="66" id="2207025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  2 forward    Id 486605800 " fill="rgb(255,125,0)" points="1160.84,1241.42 1156.14,1231.56 1149.01,1232.92 1155.06,1242.52 " />
<svg:polygon detid="486605804" count="1" value="66" id="2207026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  3 forward    Id 486605804 " fill="rgb(255,125,0)" points="1153.11,1242.95 1147.11,1233.33 1140.19,1235.02 1147.5,1244.31 " />
<svg:polygon detid="486605808" count="1" value="66" id="2207027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  0 backward    Id 486605808 " fill="rgb(255,125,0)" points="1145.62,1244.83 1138.35,1235.52 1131.67,1237.52 1140.2,1246.45 " />
<svg:polygon detid="486605812" count="1" value="66" id="2207028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 3 forward  module  1 backward    Id 486605812 " fill="rgb(255,125,0)" points="1138.4,1247.04 1129.91,1238.1 1123.52,1240.4 1133.21,1248.91 " />
<svg:polygon detid="486638820" count="1" value="66" id="2207029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 forward    Id 486638820 " fill="rgb(255,125,0)" points="1131.49,1249.59 1121.84,1241.06 1115.77,1243.65 1126.57,1251.69 " />
<svg:polygon detid="486638824" count="1" value="66" id="2207030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  2 forward    Id 486638824 " fill="rgb(255,125,0)" points="1124.95,1252.44 1114.19,1244.39 1108.49,1247.25 1120.33,1254.77 " />
<svg:polygon detid="486638828" count="1" value="66" id="2207031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  3 forward    Id 486638828 " fill="rgb(255,125,0)" points="1118.81,1255.59 1107,1248.06 1101.7,1251.18 1114.51,1258.12 " />
<svg:polygon detid="486638832" count="1" value="66" id="2207032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  0 backward    Id 486638832 " fill="rgb(255,125,0)" points="1113.1,1259.02 1100.33,1252.05 1095.46,1255.4 1109.16,1261.73 " />
<svg:polygon detid="486638836" count="1" value="66" id="2207033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 backward  module  1 backward    Id 486638836 " fill="rgb(255,125,0)" points="1107.87,1262.69 1094.21,1256.34 1089.81,1259.9 1104.3,1265.58 " />
<svg:polygon detid="486606052" count="1" value="66" id="2207034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 forward    Id 486606052 " fill="rgb(255,125,0)" points="1103.15,1266.6 1088.68,1260.89 1084.77,1264.65 1099.97,1269.64 " />
<svg:polygon detid="486606056" count="1" value="66" id="2207035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  2 forward    Id 486606056 " fill="rgb(255,125,0)" points="1098.96,1270.71 1083.78,1265.69 1080.38,1269.62 1096.2,1273.89 " />
<svg:polygon detid="486606060" count="1" value="66" id="2207036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  3 forward    Id 486606060 " fill="rgb(255,125,0)" points="1095.33,1275 1079.53,1270.7 1076.66,1274.77 1093.01,1278.3 " />
<svg:polygon detid="486606064" count="1" value="66" id="2207037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  0 backward    Id 486606064 " fill="rgb(255,125,0)" points="1092.29,1279.45 1075.96,1275.89 1073.65,1280.08 1090.41,1282.85 " />
<svg:polygon detid="486606068" count="1" value="66" id="2207038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 4 forward  module  1 backward    Id 486606068 " fill="rgb(255,125,0)" points="1089.85,1284.02 1073.1,1281.22 1071.35,1285.51 1088.43,1287.49 " />
<svg:polygon detid="486639076" count="1" value="66" id="2207039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 forward    Id 486639076 " fill="rgb(255,125,0)" points="1088.03,1288.69 1070.95,1286.68 1069.78,1291.03 1087.08,1292.22 " />
<svg:polygon detid="486639080" count="1" value="66" id="2207040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  2 forward    Id 486639080 " fill="rgb(255,125,0)" points="1086.83,1293.43 1069.54,1292.21 1068.96,1296.61 1086.36,1296.99 " />
<svg:polygon detid="486639084" count="1" value="66" id="2207041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  3 forward    Id 486639084 " fill="rgb(255,125,0)" points="1086.28,1298.21 1068.88,1297.79 1068.88,1302.21 1086.28,1301.79 " />
<svg:polygon detid="486639088" count="1" value="66" id="2207042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  0 backward    Id 486639088 " fill="rgb(255,125,0)" points="1086.36,1303.01 1068.96,1303.39 1069.54,1307.79 1086.83,1306.57 " />
<svg:polygon detid="486639092" count="1" value="66" id="2207043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 backward  module  1 backward    Id 486639092 " fill="rgb(255,125,0)" points="1087.08,1307.78 1069.78,1308.97 1070.95,1313.32 1088.03,1311.31 " />
<svg:polygon detid="486606308" count="1" value="66" id="2207044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 forward    Id 486606308 " fill="rgb(255,125,0)" points="1088.43,1312.51 1071.35,1314.49 1073.1,1318.78 1089.85,1315.98 " />
<svg:polygon detid="486606312" count="1" value="66" id="2207045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  2 forward    Id 486606312 " fill="rgb(255,125,0)" points="1090.41,1317.15 1073.65,1319.92 1075.96,1324.11 1092.29,1320.55 " />
<svg:polygon detid="486606316" count="1" value="66" id="2207046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  3 forward    Id 486606316 " fill="rgb(255,125,0)" points="1093.01,1321.7 1076.66,1325.23 1079.53,1329.3 1095.33,1325 " />
<svg:polygon detid="486606320" count="1" value="66" id="2207047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  0 backward    Id 486606320 " fill="rgb(255,125,0)" points="1096.2,1326.11 1080.38,1330.38 1083.78,1334.31 1098.96,1329.29 " />
<svg:polygon detid="486606324" count="1" value="66" id="2207048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 5 forward  module  1 backward    Id 486606324 " fill="rgb(255,125,0)" points="1099.97,1330.36 1084.77,1335.35 1088.68,1339.11 1103.15,1333.4 " />
<svg:polygon detid="486639332" count="1" value="66" id="2207049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 forward    Id 486639332 " fill="rgb(255,125,0)" points="1104.3,1334.42 1089.81,1340.1 1094.21,1343.66 1107.87,1337.31 " />
<svg:polygon detid="486639336" count="1" value="66" id="2207050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  2 forward    Id 486639336 " fill="rgb(255,125,0)" points="1109.16,1338.27 1095.46,1344.6 1100.33,1347.95 1113.1,1340.98 " />
<svg:polygon detid="486639340" count="1" value="66" id="2207051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  3 forward    Id 486639340 " fill="rgb(255,125,0)" points="1114.51,1341.88 1101.7,1348.82 1107,1351.94 1118.81,1344.41 " />
<svg:polygon detid="486639344" count="1" value="66" id="2207052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  0 backward    Id 486639344 " fill="rgb(255,125,0)" points="1120.33,1345.23 1108.49,1352.75 1114.19,1355.61 1124.95,1347.56 " />
<svg:polygon detid="486639348" count="1" value="66" id="2207053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 backward  module  1 backward    Id 486639348 " fill="rgb(255,125,0)" points="1126.57,1348.31 1115.77,1356.35 1121.84,1358.94 1131.49,1350.41 " />
<svg:polygon detid="486606564" count="1" value="66" id="2207054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 forward    Id 486606564 " fill="rgb(255,125,0)" points="1133.21,1351.09 1123.52,1359.6 1129.91,1361.9 1138.4,1352.96 " />
<svg:polygon detid="486606568" count="1" value="66" id="2207055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  2 forward    Id 486606568 " fill="rgb(255,125,0)" points="1140.2,1353.55 1131.67,1362.48 1138.35,1364.48 1145.62,1355.17 " />
<svg:polygon detid="486606572" count="1" value="66" id="2207056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  3 forward    Id 486606572 " fill="rgb(255,125,0)" points="1147.5,1355.69 1140.19,1364.98 1147.11,1366.67 1153.11,1357.05 " />
<svg:polygon detid="486606576" count="1" value="66" id="2207057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  0 backward    Id 486606576 " fill="rgb(255,125,0)" points="1155.06,1357.48 1149.01,1367.08 1156.14,1368.44 1160.84,1358.58 " />
<svg:polygon detid="486606580" count="1" value="66" id="2207058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 6 forward  module  1 backward    Id 486606580 " fill="rgb(255,125,0)" points="1162.83,1358.91 1158.08,1368.77 1165.37,1369.79 1168.74,1359.75 " />
<svg:polygon detid="486639588" count="1" value="66" id="2207059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 forward    Id 486639588 " fill="rgb(255,125,0)" points="1170.77,1359.98 1167.35,1370.03 1174.75,1370.72 1176.78,1360.54 " />
<svg:polygon detid="486639592" count="1" value="66" id="2207060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  2 forward    Id 486639592 " fill="rgb(255,125,0)" points="1178.83,1360.69 1176.76,1370.86 1184.23,1371.2 1184.89,1360.97 " />
<svg:polygon detid="486639596" count="1" value="66" id="2207061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  3 forward    Id 486639596 " fill="rgb(255,125,0)" points="1186.96,1361.01 1186.25,1371.25 1193.75,1371.25 1193.04,1361.01 " />
<svg:polygon detid="486639600" count="1" value="66" id="2207062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  0 backward    Id 486639600 " fill="rgb(255,125,0)" points="1195.11,1360.97 1195.77,1371.2 1203.24,1370.86 1201.17,1360.69 " />
<svg:polygon detid="486639604" count="1" value="66" id="2207063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 backward  module  1 backward    Id 486639604 " fill="rgb(255,125,0)" points="1203.22,1360.54 1205.25,1370.72 1212.65,1370.03 1209.23,1359.98 " />
<svg:polygon detid="486606820" count="1" value="66" id="2207064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 forward    Id 486606820 " fill="rgb(255,125,0)" points="1211.26,1359.75 1214.63,1369.79 1221.92,1368.77 1217.17,1358.91 " />
<svg:polygon detid="486606824" count="1" value="66" id="2207065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  2 forward    Id 486606824 " fill="rgb(255,125,0)" points="1219.16,1358.58 1223.86,1368.44 1230.99,1367.08 1224.94,1357.48 " />
<svg:polygon detid="486606828" count="1" value="66" id="2207066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  3 forward    Id 486606828 " fill="rgb(255,125,0)" points="1226.89,1357.05 1232.89,1366.67 1239.81,1364.98 1232.5,1355.69 " />
<svg:polygon detid="486606832" count="1" value="66" id="2207067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  0 backward    Id 486606832 " fill="rgb(255,125,0)" points="1234.38,1355.17 1241.65,1364.48 1248.33,1362.48 1239.8,1353.55 " />
<svg:polygon detid="486606836" count="1" value="66" id="2207068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 7 forward  module  1 backward    Id 486606836 " fill="rgb(255,125,0)" points="1241.6,1352.96 1250.09,1361.9 1256.48,1359.6 1246.79,1351.09 " />
<svg:polygon detid="486639844" count="1" value="66" id="2207069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 forward    Id 486639844 " fill="rgb(255,125,0)" points="1248.51,1350.41 1258.16,1358.94 1264.23,1356.35 1253.43,1348.31 " />
<svg:polygon detid="486639848" count="1" value="66" id="2207070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  2 forward    Id 486639848 " fill="rgb(255,125,0)" points="1255.05,1347.56 1265.81,1355.61 1271.51,1352.75 1259.67,1345.23 " />
<svg:polygon detid="486639852" count="1" value="66" id="2207071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  3 forward    Id 486639852 " fill="rgb(255,125,0)" points="1261.19,1344.41 1273,1351.94 1278.3,1348.82 1265.49,1341.88 " />
<svg:polygon detid="486639856" count="1" value="66" id="2207072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  0 backward    Id 486639856 " fill="rgb(255,125,0)" points="1266.9,1340.98 1279.67,1347.95 1284.54,1344.6 1270.84,1338.27 " />
<svg:polygon detid="486639860" count="1" value="66" id="2207073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 backward  module  1 backward    Id 486639860 " fill="rgb(255,125,0)" points="1272.13,1337.31 1285.79,1343.66 1290.19,1340.1 1275.7,1334.42 " />
<svg:polygon detid="486607076" count="1" value="66" id="2207074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 forward    Id 486607076 " fill="rgb(255,125,0)" points="1276.85,1333.4 1291.32,1339.11 1295.23,1335.35 1280.03,1330.36 " />
<svg:polygon detid="486607080" count="1" value="66" id="2207075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  2 forward    Id 486607080 " fill="rgb(255,125,0)" points="1281.04,1329.29 1296.22,1334.31 1299.62,1330.38 1283.8,1326.11 " />
<svg:polygon detid="486607084" count="1" value="66" id="2207076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  3 forward    Id 486607084 " fill="rgb(255,125,0)" points="1284.67,1325 1300.47,1329.3 1303.34,1325.23 1286.99,1321.7 " />
<svg:polygon detid="486607088" count="1" value="66" id="2207077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  0 backward    Id 486607088 " fill="rgb(255,125,0)" points="1287.71,1320.55 1304.04,1324.11 1306.35,1319.92 1289.59,1317.15 " />
<svg:polygon detid="486607092" count="1" value="66" id="2207078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 8 forward  module  1 backward    Id 486607092 " fill="rgb(255,125,0)" points="1290.15,1315.98 1306.9,1318.78 1308.65,1314.49 1291.57,1312.51 " />
<svg:polygon detid="486638068" count="1" value="66" id="2207079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  1 backward    Id 486638068 " fill="rgb(255,125,0)" points="1291.97,1311.31 1309.05,1313.32 1310.22,1308.97 1292.92,1307.78 " />
<svg:polygon detid="486638056" count="1" value="66" id="2207080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 1 ring 0 petal 1 backward  module  2 forward    Id 486638056 " fill="rgb(255,125,0)" points="1293.17,1306.57 1310.46,1307.79 1311.04,1303.39 1293.64,1303.01 " />
<svg:polygon detid="486703402" count="1" value="69" id="2301001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703402 " fill="rgb(255,119,0)" points="1224.31,1495.19 1217.27,1496.32 1217.96,1499.4 " />
<svg:polygon detid="486670630" count="1" value="69" id="2301002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670630 " fill="rgb(255,119,0)" points="1221.02,1490.13 1214.72,1492.3 1216.74,1495.16 " />
<svg:polygon detid="486703654" count="1" value="69" id="2301003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703654 " fill="rgb(255,119,0)" points="1215.62,1485.74 1210.49,1488.79 1213.7,1491.26 " />
<svg:polygon detid="486703658" count="1" value="69" id="2301004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703658 " fill="rgb(255,119,0)" points="1208.48,1482.33 1204.86,1486.06 1209.05,1487.95 " />
<svg:polygon detid="486670886" count="1" value="69" id="2301005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486670886 " fill="rgb(255,119,0)" points="1200.07,1480.11 1198.22,1484.27 1203.1,1485.46 " />
<svg:polygon detid="486703910" count="1" value="69" id="2301006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486703910 " fill="rgb(255,119,0)" points="1190.98,1479.26 1191.02,1483.55 1196.25,1483.96 " />
<svg:polygon detid="486703914" count="1" value="69" id="2301007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486703914 " fill="rgb(255,119,0)" points="1181.82,1479.82 1183.75,1483.96 1188.98,1483.55 " />
<svg:polygon detid="486671142" count="1" value="69" id="2301008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671142 " fill="rgb(255,119,0)" points="1173.22,1481.75 1176.9,1485.46 1181.78,1484.27 " />
<svg:polygon detid="486704166" count="1" value="69" id="2301009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704166 " fill="rgb(255,119,0)" points="1165.76,1484.93 1170.95,1487.95 1175.14,1486.06 " />
<svg:polygon detid="486704170" count="1" value="69" id="2301010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704170 " fill="rgb(255,119,0)" points="1159.95,1489.13 1166.3,1491.26 1169.51,1488.79 " />
<svg:polygon detid="486671398" count="1" value="69" id="2301011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671398 " fill="rgb(255,119,0)" points="1156.19,1494.08 1163.26,1495.16 1165.28,1492.3 " />
<svg:polygon detid="486704422" count="1" value="69" id="2301012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704422 " fill="rgb(255,119,0)" points="1154.74,1499.43 1162.04,1499.4 1162.73,1496.32 " />
<svg:polygon detid="486704426" count="1" value="69" id="2301013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704426 " fill="rgb(255,119,0)" points="1155.69,1504.81 1162.73,1503.68 1162.04,1500.6 " />
<svg:polygon detid="486671654" count="1" value="69" id="2301014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671654 " fill="rgb(255,119,0)" points="1158.98,1509.87 1165.28,1507.7 1163.26,1504.84 " />
<svg:polygon detid="486704678" count="1" value="69" id="2301015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704678 " fill="rgb(255,119,0)" points="1164.38,1514.26 1169.51,1511.21 1166.3,1508.74 " />
<svg:polygon detid="486704682" count="1" value="69" id="2301016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704682 " fill="rgb(255,119,0)" points="1171.52,1517.67 1175.14,1513.94 1170.95,1512.05 " />
<svg:polygon detid="486671910" count="1" value="69" id="2301017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486671910 " fill="rgb(255,119,0)" points="1179.93,1519.89 1181.78,1515.73 1176.9,1514.54 " />
<svg:polygon detid="486704934" count="1" value="69" id="2301018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486704934 " fill="rgb(255,119,0)" points="1189.02,1520.74 1188.98,1516.45 1183.75,1516.04 " />
<svg:polygon detid="486704938" count="1" value="69" id="2301019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486704938 " fill="rgb(255,119,0)" points="1198.18,1520.18 1196.25,1516.04 1191.02,1516.45 " />
<svg:polygon detid="486672166" count="1" value="69" id="2301020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672166 " fill="rgb(255,119,0)" points="1206.78,1518.25 1203.1,1514.54 1198.22,1515.73 " />
<svg:polygon detid="486705190" count="1" value="69" id="2301021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705190 " fill="rgb(255,119,0)" points="1214.24,1515.07 1209.05,1512.05 1204.86,1513.94 " />
<svg:polygon detid="486705194" count="1" value="69" id="2301022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705194 " fill="rgb(255,119,0)" points="1220.05,1510.87 1213.7,1508.74 1210.49,1511.21 " />
<svg:polygon detid="486672422" count="1" value="69" id="2301023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672422 " fill="rgb(255,119,0)" points="1223.81,1505.92 1216.74,1504.84 1214.72,1507.7 " />
<svg:polygon detid="486703398" count="1" value="69" id="2301024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703398 " fill="rgb(255,119,0)" points="1225.26,1500.57 1217.96,1500.6 1217.27,1503.68 " />
<svg:polygon detid="486703401" count="1" value="69" id="2301101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward   stereo Id 486703401 " fill="rgb(255,119,0)" points="1217.96,1499.4 1225.26,1499.43 1224.31,1495.19 " />
<svg:polygon detid="486670629" count="1" value="69" id="2301102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward   stereo Id 486670629 " fill="rgb(255,119,0)" points="1216.74,1495.16 1223.81,1494.08 1221.02,1490.13 " />
<svg:polygon detid="486703653" count="1" value="69" id="2301103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward   stereo Id 486703653 " fill="rgb(255,119,0)" points="1213.7,1491.26 1220.05,1489.13 1215.62,1485.74 " />
<svg:polygon detid="486703657" count="1" value="69" id="2301104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward   stereo Id 486703657 " fill="rgb(255,119,0)" points="1209.05,1487.95 1214.24,1484.93 1208.48,1482.33 " />
<svg:polygon detid="486670885" count="1" value="69" id="2301105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward   stereo Id 486670885 " fill="rgb(255,119,0)" points="1203.1,1485.46 1206.78,1481.75 1200.07,1480.11 " />
<svg:polygon detid="486703909" count="1" value="69" id="2301106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward   stereo Id 486703909 " fill="rgb(255,119,0)" points="1196.25,1483.96 1198.18,1479.82 1190.98,1479.26 " />
<svg:polygon detid="486703913" count="1" value="69" id="2301107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward   stereo Id 486703913 " fill="rgb(255,119,0)" points="1188.98,1483.55 1189.02,1479.26 1181.82,1479.82 " />
<svg:polygon detid="486671141" count="1" value="69" id="2301108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward   stereo Id 486671141 " fill="rgb(255,119,0)" points="1181.78,1484.27 1179.93,1480.11 1173.22,1481.75 " />
<svg:polygon detid="486704165" count="1" value="69" id="2301109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward   stereo Id 486704165 " fill="rgb(255,119,0)" points="1175.14,1486.06 1171.52,1482.33 1165.76,1484.93 " />
<svg:polygon detid="486704169" count="1" value="69" id="2301110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward   stereo Id 486704169 " fill="rgb(255,119,0)" points="1169.51,1488.79 1164.38,1485.74 1159.95,1489.13 " />
<svg:polygon detid="486671397" count="1" value="69" id="2301111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward   stereo Id 486671397 " fill="rgb(255,119,0)" points="1165.28,1492.3 1158.98,1490.13 1156.19,1494.08 " />
<svg:polygon detid="486704421" count="1" value="69" id="2301112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward   stereo Id 486704421 " fill="rgb(255,119,0)" points="1162.73,1496.32 1155.69,1495.19 1154.74,1499.43 " />
<svg:polygon detid="486704425" count="1" value="69" id="2301113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward   stereo Id 486704425 " fill="rgb(255,119,0)" points="1162.04,1500.6 1154.74,1500.57 1155.69,1504.81 " />
<svg:polygon detid="486671653" count="1" value="69" id="2301114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward   stereo Id 486671653 " fill="rgb(255,119,0)" points="1163.26,1504.84 1156.19,1505.92 1158.98,1509.87 " />
<svg:polygon detid="486704677" count="1" value="69" id="2301115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward   stereo Id 486704677 " fill="rgb(255,119,0)" points="1166.3,1508.74 1159.95,1510.87 1164.38,1514.26 " />
<svg:polygon detid="486704681" count="1" value="69" id="2301116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward   stereo Id 486704681 " fill="rgb(255,119,0)" points="1170.95,1512.05 1165.76,1515.07 1171.52,1517.67 " />
<svg:polygon detid="486671909" count="1" value="69" id="2301117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward   stereo Id 486671909 " fill="rgb(255,119,0)" points="1176.9,1514.54 1173.22,1518.25 1179.93,1519.89 " />
<svg:polygon detid="486704933" count="1" value="69" id="2301118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward   stereo Id 486704933 " fill="rgb(255,119,0)" points="1183.75,1516.04 1181.82,1520.18 1189.02,1520.74 " />
<svg:polygon detid="486704937" count="1" value="69" id="2301119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward   stereo Id 486704937 " fill="rgb(255,119,0)" points="1191.02,1516.45 1190.98,1520.74 1198.18,1520.18 " />
<svg:polygon detid="486672165" count="1" value="69" id="2301120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward   stereo Id 486672165 " fill="rgb(255,119,0)" points="1198.22,1515.73 1200.07,1519.89 1206.78,1518.25 " />
<svg:polygon detid="486705189" count="1" value="69" id="2301121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward   stereo Id 486705189 " fill="rgb(255,119,0)" points="1204.86,1513.94 1208.48,1517.67 1214.24,1515.07 " />
<svg:polygon detid="486705193" count="1" value="69" id="2301122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward   stereo Id 486705193 " fill="rgb(255,119,0)" points="1210.49,1511.21 1215.62,1514.26 1220.05,1510.87 " />
<svg:polygon detid="486672421" count="1" value="69" id="2301123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward   stereo Id 486672421 " fill="rgb(255,119,0)" points="1214.72,1507.7 1221.02,1509.87 1223.81,1505.92 " />
<svg:polygon detid="486703397" count="1" value="69" id="2301124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward   stereo Id 486703397 " fill="rgb(255,119,0)" points="1217.27,1503.68 1224.31,1504.81 1225.26,1500.57 " />
<svg:polygon detid="486703434" count="1" value="69" id="2302001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703434 " fill="rgb(255,119,0)" points="1234.35,1493.78 1227.06,1494.96 1228.01,1499.23 " />
<svg:polygon detid="486670662" count="1" value="69" id="2302002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670662 " fill="rgb(255,119,0)" points="1230.1,1487.24 1223.57,1489.49 1226.38,1493.47 " />
<svg:polygon detid="486703686" count="1" value="69" id="2302003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703686 " fill="rgb(255,119,0)" points="1223.12,1481.57 1217.8,1484.73 1222.27,1488.15 " />
<svg:polygon detid="486703690" count="1" value="69" id="2302004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703690 " fill="rgb(255,119,0)" points="1213.88,1477.16 1210.14,1481.02 1215.95,1483.64 " />
<svg:polygon detid="486670918" count="1" value="69" id="2302005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486670918 " fill="rgb(255,119,0)" points="1203.02,1474.3 1201.1,1478.6 1207.87,1480.25 " />
<svg:polygon detid="486703942" count="1" value="69" id="2302006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486703942 " fill="rgb(255,119,0)" points="1191.27,1473.19 1191.31,1477.64 1198.57,1478.2 " />
<svg:polygon detid="486703946" count="1" value="69" id="2302007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486703946 " fill="rgb(255,119,0)" points="1179.43,1473.91 1181.43,1478.2 1188.69,1477.64 " />
<svg:polygon detid="486671174" count="1" value="69" id="2302008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671174 " fill="rgb(255,119,0)" points="1168.31,1476.41 1172.13,1480.25 1178.9,1478.6 " />
<svg:polygon detid="486704198" count="1" value="69" id="2302009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704198 " fill="rgb(255,119,0)" points="1158.67,1480.52 1164.05,1483.64 1169.86,1481.02 " />
<svg:polygon detid="486704202" count="1" value="69" id="2302010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704202 " fill="rgb(255,119,0)" points="1151.17,1485.95 1157.73,1488.15 1162.2,1484.73 " />
<svg:polygon detid="486671430" count="1" value="69" id="2302011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671430 " fill="rgb(255,119,0)" points="1146.31,1492.34 1153.62,1493.47 1156.43,1489.49 " />
<svg:polygon detid="486704454" count="1" value="69" id="2302012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704454 " fill="rgb(255,119,0)" points="1144.43,1499.25 1151.99,1499.23 1152.94,1494.96 " />
<svg:polygon detid="486704458" count="1" value="69" id="2302013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704458 " fill="rgb(255,119,0)" points="1145.65,1506.22 1152.94,1505.04 1151.99,1500.77 " />
<svg:polygon detid="486671686" count="1" value="69" id="2302014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671686 " fill="rgb(255,119,0)" points="1149.9,1512.76 1156.43,1510.51 1153.62,1506.53 " />
<svg:polygon detid="486704710" count="1" value="69" id="2302015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704710 " fill="rgb(255,119,0)" points="1156.88,1518.43 1162.2,1515.27 1157.73,1511.85 " />
<svg:polygon detid="486704714" count="1" value="69" id="2302016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704714 " fill="rgb(255,119,0)" points="1166.12,1522.84 1169.86,1518.98 1164.05,1516.36 " />
<svg:polygon detid="486671942" count="1" value="69" id="2302017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486671942 " fill="rgb(255,119,0)" points="1176.98,1525.7 1178.9,1521.4 1172.13,1519.75 " />
<svg:polygon detid="486704966" count="1" value="69" id="2302018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486704966 " fill="rgb(255,119,0)" points="1188.73,1526.81 1188.69,1522.36 1181.43,1521.8 " />
<svg:polygon detid="486704970" count="1" value="69" id="2302019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486704970 " fill="rgb(255,119,0)" points="1200.57,1526.09 1198.57,1521.8 1191.31,1522.36 " />
<svg:polygon detid="486672198" count="1" value="69" id="2302020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672198 " fill="rgb(255,119,0)" points="1211.69,1523.59 1207.87,1519.75 1201.1,1521.4 " />
<svg:polygon detid="486705222" count="1" value="69" id="2302021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705222 " fill="rgb(255,119,0)" points="1221.33,1519.48 1215.95,1516.36 1210.14,1518.98 " />
<svg:polygon detid="486705226" count="1" value="69" id="2302022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705226 " fill="rgb(255,119,0)" points="1228.83,1514.05 1222.27,1511.85 1217.8,1515.27 " />
<svg:polygon detid="486672454" count="1" value="69" id="2302023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672454 " fill="rgb(255,119,0)" points="1233.69,1507.66 1226.38,1506.53 1223.57,1510.51 " />
<svg:polygon detid="486703430" count="1" value="69" id="2302024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703430 " fill="rgb(255,119,0)" points="1235.57,1500.75 1228.01,1500.77 1227.06,1505.04 " />
<svg:polygon detid="486703433" count="1" value="69" id="2302101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward   stereo Id 486703433 " fill="rgb(255,119,0)" points="1228.01,1499.23 1235.57,1499.25 1234.35,1493.78 " />
<svg:polygon detid="486670661" count="1" value="69" id="2302102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward   stereo Id 486670661 " fill="rgb(255,119,0)" points="1226.38,1493.47 1233.69,1492.34 1230.1,1487.24 " />
<svg:polygon detid="486703685" count="1" value="69" id="2302103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward   stereo Id 486703685 " fill="rgb(255,119,0)" points="1222.27,1488.15 1228.83,1485.95 1223.12,1481.57 " />
<svg:polygon detid="486703689" count="1" value="69" id="2302104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward   stereo Id 486703689 " fill="rgb(255,119,0)" points="1215.95,1483.64 1221.33,1480.52 1213.88,1477.16 " />
<svg:polygon detid="486670917" count="1" value="69" id="2302105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward   stereo Id 486670917 " fill="rgb(255,119,0)" points="1207.87,1480.25 1211.69,1476.41 1203.02,1474.3 " />
<svg:polygon detid="486703941" count="1" value="69" id="2302106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward   stereo Id 486703941 " fill="rgb(255,119,0)" points="1198.57,1478.2 1200.57,1473.91 1191.27,1473.19 " />
<svg:polygon detid="486703945" count="1" value="69" id="2302107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward   stereo Id 486703945 " fill="rgb(255,119,0)" points="1188.69,1477.64 1188.73,1473.19 1179.43,1473.91 " />
<svg:polygon detid="486671173" count="1" value="69" id="2302108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward   stereo Id 486671173 " fill="rgb(255,119,0)" points="1178.9,1478.6 1176.98,1474.3 1168.31,1476.41 " />
<svg:polygon detid="486704197" count="1" value="69" id="2302109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward   stereo Id 486704197 " fill="rgb(255,119,0)" points="1169.86,1481.02 1166.12,1477.16 1158.67,1480.52 " />
<svg:polygon detid="486704201" count="1" value="69" id="2302110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward   stereo Id 486704201 " fill="rgb(255,119,0)" points="1162.2,1484.73 1156.88,1481.57 1151.17,1485.95 " />
<svg:polygon detid="486671429" count="1" value="69" id="2302111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward   stereo Id 486671429 " fill="rgb(255,119,0)" points="1156.43,1489.49 1149.9,1487.24 1146.31,1492.34 " />
<svg:polygon detid="486704453" count="1" value="69" id="2302112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward   stereo Id 486704453 " fill="rgb(255,119,0)" points="1152.94,1494.96 1145.65,1493.78 1144.43,1499.25 " />
<svg:polygon detid="486704457" count="1" value="69" id="2302113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward   stereo Id 486704457 " fill="rgb(255,119,0)" points="1151.99,1500.77 1144.43,1500.75 1145.65,1506.22 " />
<svg:polygon detid="486671685" count="1" value="69" id="2302114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward   stereo Id 486671685 " fill="rgb(255,119,0)" points="1153.62,1506.53 1146.31,1507.66 1149.9,1512.76 " />
<svg:polygon detid="486704709" count="1" value="69" id="2302115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward   stereo Id 486704709 " fill="rgb(255,119,0)" points="1157.73,1511.85 1151.17,1514.05 1156.88,1518.43 " />
<svg:polygon detid="486704713" count="1" value="69" id="2302116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward   stereo Id 486704713 " fill="rgb(255,119,0)" points="1164.05,1516.36 1158.67,1519.48 1166.12,1522.84 " />
<svg:polygon detid="486671941" count="1" value="69" id="2302117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward   stereo Id 486671941 " fill="rgb(255,119,0)" points="1172.13,1519.75 1168.31,1523.59 1176.98,1525.7 " />
<svg:polygon detid="486704965" count="1" value="69" id="2302118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward   stereo Id 486704965 " fill="rgb(255,119,0)" points="1181.43,1521.8 1179.43,1526.09 1188.73,1526.81 " />
<svg:polygon detid="486704969" count="1" value="69" id="2302119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward   stereo Id 486704969 " fill="rgb(255,119,0)" points="1191.31,1522.36 1191.27,1526.81 1200.57,1526.09 " />
<svg:polygon detid="486672197" count="1" value="69" id="2302120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward   stereo Id 486672197 " fill="rgb(255,119,0)" points="1201.1,1521.4 1203.02,1525.7 1211.69,1523.59 " />
<svg:polygon detid="486705221" count="1" value="69" id="2302121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward   stereo Id 486705221 " fill="rgb(255,119,0)" points="1210.14,1518.98 1213.88,1522.84 1221.33,1519.48 " />
<svg:polygon detid="486705225" count="1" value="69" id="2302122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward   stereo Id 486705225 " fill="rgb(255,119,0)" points="1217.8,1515.27 1223.12,1518.43 1228.83,1514.05 " />
<svg:polygon detid="486672453" count="1" value="69" id="2302123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward   stereo Id 486672453 " fill="rgb(255,119,0)" points="1223.57,1510.51 1230.1,1512.76 1233.69,1507.66 " />
<svg:polygon detid="486703429" count="1" value="69" id="2302124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward   stereo Id 486703429 " fill="rgb(255,119,0)" points="1227.06,1505.04 1234.35,1506.22 1235.57,1500.75 " />
<svg:polygon detid="486703460" count="1" value="69" id="2303001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703460 " fill="rgb(255,119,0)" points="1236.01,1501.57 1245.41,1502.03 1245.41,1497.97 1236.01,1498.43 " />
<svg:polygon detid="486703464" count="1" value="69" id="2303002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703464 " fill="rgb(255,119,0)" points="1235.86,1497.32 1245.27,1496.91 1244.19,1492.9 1235.02,1494.21 " />
<svg:polygon detid="486670692" count="1" value="69" id="2303003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670692 " fill="rgb(255,119,0)" points="1234.58,1493.13 1243.76,1491.86 1241.63,1488 1232.93,1490.14 " />
<svg:polygon detid="486670696" count="1" value="69" id="2303004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  2 forward    Id 486670696 " fill="rgb(255,119,0)" points="1232.21,1489.12 1240.94,1487.01 1237.8,1483.39 1229.78,1486.31 " />
<svg:polygon detid="486703716" count="1" value="69" id="2303005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703716 " fill="rgb(255,119,0)" points="1228.8,1485.37 1236.86,1482.48 1232.8,1479.2 1225.65,1482.82 " />
<svg:polygon detid="486703720" count="1" value="69" id="2303006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703720 " fill="rgb(255,119,0)" points="1224.43,1481.98 1231.62,1478.39 1226.74,1475.52 1220.64,1479.75 " />
<svg:polygon detid="486703724" count="1" value="69" id="2303007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  3 forward    Id 486703724 " fill="rgb(255,119,0)" points="1219.21,1479.03 1225.36,1474.82 1219.78,1472.44 1214.88,1477.18 " />
<svg:polygon detid="486670948" count="1" value="69" id="2303008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486670948 " fill="rgb(255,119,0)" points="1213.27,1476.6 1218.23,1471.88 1212.08,1470.04 1208.5,1475.17 " />
<svg:polygon detid="486670952" count="1" value="69" id="2303009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  2 forward    Id 486670952 " fill="rgb(255,119,0)" points="1206.76,1474.75 1210.4,1469.63 1203.84,1468.37 1201.67,1473.77 " />
<svg:polygon detid="486703972" count="1" value="69" id="2303010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486703972 " fill="rgb(255,119,0)" points="1199.84,1473.52 1202.08,1468.13 1195.26,1467.49 1194.55,1473.02 " />
<svg:polygon detid="486703976" count="1" value="69" id="2303011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486703976 " fill="rgb(255,119,0)" points="1192.68,1472.94 1193.45,1467.41 1186.55,1467.41 1187.32,1472.94 " />
<svg:polygon detid="486703980" count="1" value="69" id="2303012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  3 forward    Id 486703980 " fill="rgb(255,119,0)" points="1185.45,1473.02 1184.74,1467.49 1177.92,1468.13 1180.16,1473.52 " />
<svg:polygon detid="486671204" count="1" value="69" id="2303013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671204 " fill="rgb(255,119,0)" points="1178.33,1473.77 1176.16,1468.37 1169.6,1469.63 1173.24,1474.75 " />
<svg:polygon detid="486671208" count="1" value="69" id="2303014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  2 forward    Id 486671208 " fill="rgb(255,119,0)" points="1171.5,1475.17 1167.92,1470.04 1161.77,1471.88 1166.73,1476.6 " />
<svg:polygon detid="486704228" count="1" value="69" id="2303015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704228 " fill="rgb(255,119,0)" points="1165.12,1477.18 1160.22,1472.44 1154.64,1474.82 1160.79,1479.03 " />
<svg:polygon detid="486704232" count="1" value="69" id="2303016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704232 " fill="rgb(255,119,0)" points="1159.36,1479.75 1153.26,1475.52 1148.38,1478.39 1155.57,1481.98 " />
<svg:polygon detid="486704236" count="1" value="69" id="2303017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  3 forward    Id 486704236 " fill="rgb(255,119,0)" points="1154.35,1482.82 1147.2,1479.2 1143.14,1482.48 1151.2,1485.37 " />
<svg:polygon detid="486671460" count="1" value="69" id="2303018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671460 " fill="rgb(255,119,0)" points="1150.22,1486.31 1142.2,1483.39 1139.06,1487.01 1147.79,1489.12 " />
<svg:polygon detid="486671464" count="1" value="69" id="2303019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  2 forward    Id 486671464 " fill="rgb(255,119,0)" points="1147.07,1490.14 1138.37,1488 1136.24,1491.86 1145.42,1493.13 " />
<svg:polygon detid="486704484" count="1" value="69" id="2303020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704484 " fill="rgb(255,119,0)" points="1144.98,1494.21 1135.81,1492.9 1134.73,1496.91 1144.14,1497.32 " />
<svg:polygon detid="486704488" count="1" value="69" id="2303021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704488 " fill="rgb(255,119,0)" points="1143.99,1498.43 1134.59,1497.97 1134.59,1502.03 1143.99,1501.57 " />
<svg:polygon detid="486704492" count="1" value="69" id="2303022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  3 forward    Id 486704492 " fill="rgb(255,119,0)" points="1144.14,1502.68 1134.73,1503.09 1135.81,1507.1 1144.98,1505.79 " />
<svg:polygon detid="486671716" count="1" value="69" id="2303023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671716 " fill="rgb(255,119,0)" points="1145.42,1506.87 1136.24,1508.14 1138.37,1512 1147.07,1509.86 " />
<svg:polygon detid="486671720" count="1" value="69" id="2303024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  2 forward    Id 486671720 " fill="rgb(255,119,0)" points="1147.79,1510.88 1139.06,1512.99 1142.2,1516.61 1150.22,1513.69 " />
<svg:polygon detid="486704740" count="1" value="69" id="2303025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704740 " fill="rgb(255,119,0)" points="1151.2,1514.63 1143.14,1517.52 1147.2,1520.8 1154.35,1517.18 " />
<svg:polygon detid="486704744" count="1" value="69" id="2303026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704744 " fill="rgb(255,119,0)" points="1155.57,1518.02 1148.38,1521.61 1153.26,1524.48 1159.36,1520.25 " />
<svg:polygon detid="486704748" count="1" value="69" id="2303027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  3 forward    Id 486704748 " fill="rgb(255,119,0)" points="1160.79,1520.97 1154.64,1525.18 1160.22,1527.56 1165.12,1522.82 " />
<svg:polygon detid="486671972" count="1" value="69" id="2303028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486671972 " fill="rgb(255,119,0)" points="1166.73,1523.4 1161.77,1528.12 1167.92,1529.96 1171.5,1524.83 " />
<svg:polygon detid="486671976" count="1" value="69" id="2303029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  2 forward    Id 486671976 " fill="rgb(255,119,0)" points="1173.24,1525.25 1169.6,1530.37 1176.16,1531.63 1178.33,1526.23 " />
<svg:polygon detid="486704996" count="1" value="69" id="2303030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486704996 " fill="rgb(255,119,0)" points="1180.16,1526.48 1177.92,1531.87 1184.74,1532.51 1185.45,1526.98 " />
<svg:polygon detid="486705000" count="1" value="69" id="2303031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486705000 " fill="rgb(255,119,0)" points="1187.32,1527.06 1186.55,1532.59 1193.45,1532.59 1192.68,1527.06 " />
<svg:polygon detid="486705004" count="1" value="69" id="2303032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  3 forward    Id 486705004 " fill="rgb(255,119,0)" points="1194.55,1526.98 1195.26,1532.51 1202.08,1531.87 1199.84,1526.48 " />
<svg:polygon detid="486672228" count="1" value="69" id="2303033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672228 " fill="rgb(255,119,0)" points="1201.67,1526.23 1203.84,1531.63 1210.4,1530.37 1206.76,1525.25 " />
<svg:polygon detid="486672232" count="1" value="69" id="2303034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  2 forward    Id 486672232 " fill="rgb(255,119,0)" points="1208.5,1524.83 1212.08,1529.96 1218.23,1528.12 1213.27,1523.4 " />
<svg:polygon detid="486705252" count="1" value="69" id="2303035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705252 " fill="rgb(255,119,0)" points="1214.88,1522.82 1219.78,1527.56 1225.36,1525.18 1219.21,1520.97 " />
<svg:polygon detid="486705256" count="1" value="69" id="2303036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705256 " fill="rgb(255,119,0)" points="1220.64,1520.25 1226.74,1524.48 1231.62,1521.61 1224.43,1518.02 " />
<svg:polygon detid="486705260" count="1" value="69" id="2303037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  3 forward    Id 486705260 " fill="rgb(255,119,0)" points="1225.65,1517.18 1232.8,1520.8 1236.86,1517.52 1228.8,1514.63 " />
<svg:polygon detid="486672484" count="1" value="69" id="2303038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672484 " fill="rgb(255,119,0)" points="1229.78,1513.69 1237.8,1516.61 1240.94,1512.99 1232.21,1510.88 " />
<svg:polygon detid="486672488" count="1" value="69" id="2303039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  2 forward    Id 486672488 " fill="rgb(255,119,0)" points="1232.93,1509.86 1241.63,1512 1243.76,1508.14 1234.58,1506.87 " />
<svg:polygon detid="486703468" count="1" value="69" id="2303040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  3 forward    Id 486703468 " fill="rgb(255,119,0)" points="1235.02,1505.79 1244.19,1507.1 1245.27,1503.09 1235.86,1502.68 " />
<svg:polygon detid="486703496" count="1" value="69" id="2304001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703496 " fill="rgb(255,119,0)" points="1248.82,1499.51 1258.62,1499.52 1258.28,1495.96 1248.55,1496.62 " />
<svg:polygon detid="486703500" count="1" value="69" id="2304002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  3 forward    Id 486703500 " fill="rgb(255,119,0)" points="1248.36,1495.64 1258.1,1495 1257.08,1491.48 1247.53,1492.78 " />
<svg:polygon detid="486670724" count="1" value="69" id="2304003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670724 " fill="rgb(255,119,0)" points="1247.16,1491.82 1256.72,1490.55 1255.04,1487.12 1245.8,1489.04 " />
<svg:polygon detid="486670728" count="1" value="69" id="2304004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  2 forward    Id 486670728 " fill="rgb(255,119,0)" points="1245.24,1488.11 1254.5,1486.22 1252.18,1482.92 1243.36,1485.43 " />
<svg:polygon detid="486670732" count="1" value="69" id="2304005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  3 forward    Id 486670732 " fill="rgb(255,119,0)" points="1242.63,1484.54 1251.47,1482.05 1248.54,1478.93 1240.25,1482.01 " />
<svg:polygon detid="486703748" count="1" value="69" id="2304006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703748 " fill="rgb(255,119,0)" points="1239.36,1481.17 1247.67,1478.12 1244.16,1475.21 1236.51,1478.81 " />
<svg:polygon detid="486703752" count="1" value="69" id="2304007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703752 " fill="rgb(255,119,0)" points="1235.47,1478.04 1243.14,1474.46 1239.1,1471.8 1232.19,1475.88 " />
<svg:polygon detid="486703756" count="1" value="69" id="2304008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  3 forward    Id 486703756 " fill="rgb(255,119,0)" points="1231,1475.18 1237.95,1471.12 1233.42,1468.74 1227.33,1473.26 " />
<svg:polygon detid="486703760" count="1" value="69" id="2304009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  0 backward    Id 486703760 " fill="rgb(255,119,0)" points="1226.02,1472.64 1232.15,1468.14 1227.2,1466.08 1222.01,1470.96 " />
<svg:polygon detid="486670980" count="1" value="69" id="2304010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486670980 " fill="rgb(255,119,0)" points="1220.59,1470.44 1225.82,1465.57 1220.51,1463.84 1216.28,1469.04 " />
<svg:polygon detid="486670984" count="1" value="69" id="2304011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  2 forward    Id 486670984 " fill="rgb(255,119,0)" points="1214.77,1468.61 1219.04,1463.42 1213.43,1462.06 1210.22,1467.5 " />
<svg:polygon detid="486670988" count="1" value="69" id="2304012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  3 forward    Id 486670988 " fill="rgb(255,119,0)" points="1208.64,1467.18 1211.9,1461.74 1206.06,1460.75 1203.91,1466.38 " />
<svg:polygon detid="486704004" count="1" value="69" id="2304013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486704004 " fill="rgb(255,119,0)" points="1202.27,1466.16 1204.48,1460.54 1198.49,1459.94 1197.42,1465.67 " />
<svg:polygon detid="486704008" count="1" value="69" id="2304014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486704008 " fill="rgb(255,119,0)" points="1195.75,1465.56 1196.87,1459.83 1190.81,1459.63 1190.84,1465.4 " />
<svg:polygon detid="486704012" count="1" value="69" id="2304015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  3 forward    Id 486704012 " fill="rgb(255,119,0)" points="1189.16,1465.4 1189.19,1459.63 1183.13,1459.83 1184.25,1465.56 " />
<svg:polygon detid="486704016" count="1" value="69" id="2304016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  0 backward    Id 486704016 " fill="rgb(255,119,0)" points="1182.58,1465.67 1181.51,1459.94 1175.52,1460.54 1177.73,1466.16 " />
<svg:polygon detid="486671236" count="1" value="69" id="2304017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671236 " fill="rgb(255,119,0)" points="1176.09,1466.38 1173.94,1460.75 1168.1,1461.74 1171.36,1467.18 " />
<svg:polygon detid="486671240" count="1" value="69" id="2304018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  2 forward    Id 486671240 " fill="rgb(255,119,0)" points="1169.78,1467.5 1166.57,1462.06 1160.96,1463.42 1165.23,1468.61 " />
<svg:polygon detid="486671244" count="1" value="69" id="2304019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  3 forward    Id 486671244 " fill="rgb(255,119,0)" points="1163.72,1469.04 1159.49,1463.84 1154.18,1465.57 1159.41,1470.44 " />
<svg:polygon detid="486704260" count="1" value="69" id="2304020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704260 " fill="rgb(255,119,0)" points="1157.99,1470.96 1152.8,1466.08 1147.85,1468.14 1153.98,1472.64 " />
<svg:polygon detid="486704264" count="1" value="69" id="2304021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704264 " fill="rgb(255,119,0)" points="1152.67,1473.26 1146.58,1468.74 1142.05,1471.12 1149,1475.18 " />
<svg:polygon detid="486704268" count="1" value="69" id="2304022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  3 forward    Id 486704268 " fill="rgb(255,119,0)" points="1147.81,1475.88 1140.9,1471.8 1136.86,1474.46 1144.53,1478.04 " />
<svg:polygon detid="486704272" count="1" value="69" id="2304023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  0 backward    Id 486704272 " fill="rgb(255,119,0)" points="1143.49,1478.81 1135.84,1475.21 1132.33,1478.12 1140.64,1481.17 " />
<svg:polygon detid="486671492" count="1" value="69" id="2304024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671492 " fill="rgb(255,119,0)" points="1139.75,1482.01 1131.46,1478.93 1128.53,1482.05 1137.37,1484.54 " />
<svg:polygon detid="486671496" count="1" value="69" id="2304025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  2 forward    Id 486671496 " fill="rgb(255,119,0)" points="1136.64,1485.43 1127.82,1482.92 1125.5,1486.22 1134.76,1488.11 " />
<svg:polygon detid="486671500" count="1" value="69" id="2304026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  3 forward    Id 486671500 " fill="rgb(255,119,0)" points="1134.2,1489.04 1124.96,1487.12 1123.28,1490.55 1132.84,1491.82 " />
<svg:polygon detid="486704516" count="1" value="69" id="2304027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704516 " fill="rgb(255,119,0)" points="1132.47,1492.78 1122.92,1491.48 1121.9,1495 1131.64,1495.64 " />
<svg:polygon detid="486704520" count="1" value="69" id="2304028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704520 " fill="rgb(255,119,0)" points="1131.45,1496.62 1121.72,1495.96 1121.38,1499.52 1131.18,1499.51 " />
<svg:polygon detid="486704524" count="1" value="69" id="2304029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  3 forward    Id 486704524 " fill="rgb(255,119,0)" points="1131.18,1500.49 1121.38,1500.48 1121.72,1504.04 1131.45,1503.38 " />
<svg:polygon detid="486704528" count="1" value="69" id="2304030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  0 backward    Id 486704528 " fill="rgb(255,119,0)" points="1131.64,1504.36 1121.9,1505 1122.92,1508.52 1132.47,1507.22 " />
<svg:polygon detid="486671748" count="1" value="69" id="2304031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671748 " fill="rgb(255,119,0)" points="1132.84,1508.18 1123.28,1509.45 1124.96,1512.88 1134.2,1510.96 " />
<svg:polygon detid="486671752" count="1" value="69" id="2304032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  2 forward    Id 486671752 " fill="rgb(255,119,0)" points="1134.76,1511.89 1125.5,1513.78 1127.82,1517.08 1136.64,1514.57 " />
<svg:polygon detid="486671756" count="1" value="69" id="2304033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  3 forward    Id 486671756 " fill="rgb(255,119,0)" points="1137.37,1515.46 1128.53,1517.95 1131.46,1521.07 1139.75,1517.99 " />
<svg:polygon detid="486704772" count="1" value="69" id="2304034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704772 " fill="rgb(255,119,0)" points="1140.64,1518.83 1132.33,1521.88 1135.84,1524.79 1143.49,1521.19 " />
<svg:polygon detid="486704776" count="1" value="69" id="2304035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704776 " fill="rgb(255,119,0)" points="1144.53,1521.96 1136.86,1525.54 1140.9,1528.2 1147.81,1524.12 " />
<svg:polygon detid="486704780" count="1" value="69" id="2304036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  3 forward    Id 486704780 " fill="rgb(255,119,0)" points="1149,1524.82 1142.05,1528.88 1146.58,1531.26 1152.67,1526.74 " />
<svg:polygon detid="486704784" count="1" value="69" id="2304037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  0 backward    Id 486704784 " fill="rgb(255,119,0)" points="1153.98,1527.36 1147.85,1531.86 1152.8,1533.92 1157.99,1529.04 " />
<svg:polygon detid="486672004" count="1" value="69" id="2304038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486672004 " fill="rgb(255,119,0)" points="1159.41,1529.56 1154.18,1534.43 1159.49,1536.16 1163.72,1530.96 " />
<svg:polygon detid="486672008" count="1" value="69" id="2304039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  2 forward    Id 486672008 " fill="rgb(255,119,0)" points="1165.23,1531.39 1160.96,1536.58 1166.57,1537.94 1169.78,1532.5 " />
<svg:polygon detid="486672012" count="1" value="69" id="2304040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  3 forward    Id 486672012 " fill="rgb(255,119,0)" points="1171.36,1532.82 1168.1,1538.26 1173.94,1539.25 1176.09,1533.62 " />
<svg:polygon detid="486705028" count="1" value="69" id="2304041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486705028 " fill="rgb(255,119,0)" points="1177.73,1533.84 1175.52,1539.46 1181.51,1540.06 1182.58,1534.33 " />
<svg:polygon detid="486705032" count="1" value="69" id="2304042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486705032 " fill="rgb(255,119,0)" points="1184.25,1534.44 1183.13,1540.17 1189.19,1540.37 1189.16,1534.6 " />
<svg:polygon detid="486705036" count="1" value="69" id="2304043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  3 forward    Id 486705036 " fill="rgb(255,119,0)" points="1190.84,1534.6 1190.81,1540.37 1196.87,1540.17 1195.75,1534.44 " />
<svg:polygon detid="486705040" count="1" value="69" id="2304044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  0 backward    Id 486705040 " fill="rgb(255,119,0)" points="1197.42,1534.33 1198.49,1540.06 1204.48,1539.46 1202.27,1533.84 " />
<svg:polygon detid="486672260" count="1" value="69" id="2304045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672260 " fill="rgb(255,119,0)" points="1203.91,1533.62 1206.06,1539.25 1211.9,1538.26 1208.64,1532.82 " />
<svg:polygon detid="486672264" count="1" value="69" id="2304046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  2 forward    Id 486672264 " fill="rgb(255,119,0)" points="1210.22,1532.5 1213.43,1537.94 1219.04,1536.58 1214.77,1531.39 " />
<svg:polygon detid="486672268" count="1" value="69" id="2304047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  3 forward    Id 486672268 " fill="rgb(255,119,0)" points="1216.28,1530.96 1220.51,1536.16 1225.82,1534.43 1220.59,1529.56 " />
<svg:polygon detid="486705284" count="1" value="69" id="2304048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705284 " fill="rgb(255,119,0)" points="1222.01,1529.04 1227.2,1533.92 1232.15,1531.86 1226.02,1527.36 " />
<svg:polygon detid="486705288" count="1" value="69" id="2304049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705288 " fill="rgb(255,119,0)" points="1227.33,1526.74 1233.42,1531.26 1237.95,1528.88 1231,1524.82 " />
<svg:polygon detid="486705292" count="1" value="69" id="2304050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  3 forward    Id 486705292 " fill="rgb(255,119,0)" points="1232.19,1524.12 1239.1,1528.2 1243.14,1525.54 1235.47,1521.96 " />
<svg:polygon detid="486705296" count="1" value="69" id="2304051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  0 backward    Id 486705296 " fill="rgb(255,119,0)" points="1236.51,1521.19 1244.16,1524.79 1247.67,1521.88 1239.36,1518.83 " />
<svg:polygon detid="486672516" count="1" value="69" id="2304052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672516 " fill="rgb(255,119,0)" points="1240.25,1517.99 1248.54,1521.07 1251.47,1517.95 1242.63,1515.46 " />
<svg:polygon detid="486672520" count="1" value="69" id="2304053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  2 forward    Id 486672520 " fill="rgb(255,119,0)" points="1243.36,1514.57 1252.18,1517.08 1254.5,1513.78 1245.24,1511.89 " />
<svg:polygon detid="486672524" count="1" value="69" id="2304054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  3 forward    Id 486672524 " fill="rgb(255,119,0)" points="1245.8,1510.96 1255.04,1512.88 1256.72,1509.45 1247.16,1508.18 " />
<svg:polygon detid="486703504" count="1" value="69" id="2304055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  0 backward    Id 486703504 " fill="rgb(255,119,0)" points="1247.53,1507.22 1257.08,1508.52 1258.1,1505 1248.36,1504.36 " />
<svg:polygon detid="486703492" count="1" value="69" id="2304056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703492 " fill="rgb(255,119,0)" points="1248.55,1503.38 1258.28,1504.04 1258.62,1500.48 1248.82,1500.49 " />
<svg:polygon detid="486703530" count="1" value="69" id="2305001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703530 " fill="rgb(255,119,0)" points="1272.31,1493.17 1259.92,1494.35 1260.56,1499.15 " />
<svg:polygon detid="486670758" count="1" value="69" id="2305002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670758 " fill="rgb(255,119,0)" points="1269.48,1485.68 1257.56,1487.98 1259.47,1492.67 " />
<svg:polygon detid="486670762" count="1" value="69" id="2305003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  2 forward    Id 486670762 " fill="rgb(255,119,0)" points="1264.7,1478.54 1253.53,1481.92 1256.66,1486.36 " />
<svg:polygon detid="486670766" count="1" value="69" id="2305004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  3 forward    Id 486670766 " fill="rgb(255,119,0)" points="1258.07,1471.93 1247.94,1476.29 1252.21,1480.4 " />
<svg:polygon detid="486703782" count="1" value="69" id="2305005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703782 " fill="rgb(255,119,0)" points="1249.77,1466.02 1240.92,1471.25 1246.23,1474.91 " />
<svg:polygon detid="486703786" count="1" value="69" id="2305006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703786 " fill="rgb(255,119,0)" points="1240,1460.93 1232.65,1466.92 1238.87,1470.05 " />
<svg:polygon detid="486671014" count="1" value="69" id="2305007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486671014 " fill="rgb(255,119,0)" points="1228.99,1456.81 1223.32,1463.4 1230.3,1465.92 " />
<svg:polygon detid="486671018" count="1" value="69" id="2305008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  2 forward    Id 486671018 " fill="rgb(255,119,0)" points="1217.03,1453.76 1213.18,1460.79 1220.74,1462.63 " />
<svg:polygon detid="486671022" count="1" value="69" id="2305009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  3 forward    Id 486671022 " fill="rgb(255,119,0)" points="1204.4,1451.84 1202.47,1459.14 1210.43,1460.26 " />
<svg:polygon detid="486704038" count="1" value="69" id="2305010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486704038 " fill="rgb(255,119,0)" points="1191.41,1451.11 1191.45,1458.49 1199.61,1458.87 " />
<svg:polygon detid="486704042" count="1" value="69" id="2305011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486704042 " fill="rgb(255,119,0)" points="1178.39,1451.58 1180.39,1458.87 1188.55,1458.49 " />
<svg:polygon detid="486671270" count="1" value="69" id="2305012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671270 " fill="rgb(255,119,0)" points="1165.66,1453.24 1169.57,1460.26 1177.53,1459.14 " />
<svg:polygon detid="486671274" count="1" value="69" id="2305013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  2 forward    Id 486671274 " fill="rgb(255,119,0)" points="1153.53,1456.06 1159.26,1462.63 1166.82,1460.79 " />
<svg:polygon detid="486671278" count="1" value="69" id="2305014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  3 forward    Id 486671278 " fill="rgb(255,119,0)" points="1142.29,1459.96 1149.7,1465.92 1156.68,1463.4 " />
<svg:polygon detid="486704294" count="1" value="69" id="2305015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704294 " fill="rgb(255,119,0)" points="1132.23,1464.84 1141.13,1470.05 1147.35,1466.92 " />
<svg:polygon detid="486704298" count="1" value="69" id="2305016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704298 " fill="rgb(255,119,0)" points="1123.59,1470.59 1133.77,1474.91 1139.08,1471.25 " />
<svg:polygon detid="486671526" count="1" value="69" id="2305017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671526 " fill="rgb(255,119,0)" points="1116.59,1477.06 1127.79,1480.4 1132.06,1476.29 " />
<svg:polygon detid="486671530" count="1" value="69" id="2305018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  2 forward    Id 486671530 " fill="rgb(255,119,0)" points="1111.39,1484.1 1123.34,1486.36 1126.47,1481.92 " />
<svg:polygon detid="486671534" count="1" value="69" id="2305019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  3 forward    Id 486671534 " fill="rgb(255,119,0)" points="1108.13,1491.53 1120.53,1492.67 1122.44,1487.98 " />
<svg:polygon detid="486704550" count="1" value="69" id="2305020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704550 " fill="rgb(255,119,0)" points="1106.88,1499.17 1119.44,1499.15 1120.08,1494.35 " />
<svg:polygon detid="486704554" count="1" value="69" id="2305021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704554 " fill="rgb(255,119,0)" points="1107.69,1506.83 1120.08,1505.65 1119.44,1500.85 " />
<svg:polygon detid="486671782" count="1" value="69" id="2305022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671782 " fill="rgb(255,119,0)" points="1110.52,1514.32 1122.44,1512.02 1120.53,1507.33 " />
<svg:polygon detid="486671786" count="1" value="69" id="2305023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  2 forward    Id 486671786 " fill="rgb(255,119,0)" points="1115.3,1521.46 1126.47,1518.08 1123.34,1513.64 " />
<svg:polygon detid="486671790" count="1" value="69" id="2305024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  3 forward    Id 486671790 " fill="rgb(255,119,0)" points="1121.93,1528.07 1132.06,1523.71 1127.79,1519.6 " />
<svg:polygon detid="486704806" count="1" value="69" id="2305025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704806 " fill="rgb(255,119,0)" points="1130.23,1533.98 1139.08,1528.75 1133.77,1525.09 " />
<svg:polygon detid="486704810" count="1" value="69" id="2305026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704810 " fill="rgb(255,119,0)" points="1140,1539.07 1147.35,1533.08 1141.13,1529.95 " />
<svg:polygon detid="486672038" count="1" value="69" id="2305027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486672038 " fill="rgb(255,119,0)" points="1151.01,1543.19 1156.68,1536.6 1149.7,1534.08 " />
<svg:polygon detid="486672042" count="1" value="69" id="2305028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  2 forward    Id 486672042 " fill="rgb(255,119,0)" points="1162.97,1546.24 1166.82,1539.21 1159.26,1537.37 " />
<svg:polygon detid="486672046" count="1" value="69" id="2305029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  3 forward    Id 486672046 " fill="rgb(255,119,0)" points="1175.6,1548.16 1177.53,1540.86 1169.57,1539.74 " />
<svg:polygon detid="486705062" count="1" value="69" id="2305030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486705062 " fill="rgb(255,119,0)" points="1188.59,1548.89 1188.55,1541.51 1180.39,1541.13 " />
<svg:polygon detid="486705066" count="1" value="69" id="2305031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486705066 " fill="rgb(255,119,0)" points="1201.61,1548.42 1199.61,1541.13 1191.45,1541.51 " />
<svg:polygon detid="486672294" count="1" value="69" id="2305032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672294 " fill="rgb(255,119,0)" points="1214.34,1546.76 1210.43,1539.74 1202.47,1540.86 " />
<svg:polygon detid="486672298" count="1" value="69" id="2305033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  2 forward    Id 486672298 " fill="rgb(255,119,0)" points="1226.47,1543.94 1220.74,1537.37 1213.18,1539.21 " />
<svg:polygon detid="486672302" count="1" value="69" id="2305034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  3 forward    Id 486672302 " fill="rgb(255,119,0)" points="1237.71,1540.04 1230.3,1534.08 1223.32,1536.6 " />
<svg:polygon detid="486705318" count="1" value="69" id="2305035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705318 " fill="rgb(255,119,0)" points="1247.77,1535.16 1238.87,1529.95 1232.65,1533.08 " />
<svg:polygon detid="486705322" count="1" value="69" id="2305036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705322 " fill="rgb(255,119,0)" points="1256.41,1529.41 1246.23,1525.09 1240.92,1528.75 " />
<svg:polygon detid="486672550" count="1" value="69" id="2305037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672550 " fill="rgb(255,119,0)" points="1263.41,1522.94 1252.21,1519.6 1247.94,1523.71 " />
<svg:polygon detid="486672554" count="1" value="69" id="2305038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  2 forward    Id 486672554 " fill="rgb(255,119,0)" points="1268.61,1515.9 1256.66,1513.64 1253.53,1518.08 " />
<svg:polygon detid="486672558" count="1" value="69" id="2305039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  3 forward    Id 486672558 " fill="rgb(255,119,0)" points="1271.87,1508.47 1259.47,1507.33 1257.56,1512.02 " />
<svg:polygon detid="486703526" count="1" value="69" id="2305040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703526 " fill="rgb(255,119,0)" points="1273.12,1500.83 1260.56,1500.85 1259.92,1505.65 " />
<svg:polygon detid="486703529" count="1" value="69" id="2305101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward   stereo Id 486703529 " fill="rgb(255,119,0)" points="1260.56,1499.15 1273.12,1499.17 1272.31,1493.17 " />
<svg:polygon detid="486670757" count="1" value="69" id="2305102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward   stereo Id 486670757 " fill="rgb(255,119,0)" points="1259.47,1492.67 1271.87,1491.53 1269.48,1485.68 " />
<svg:polygon detid="486670761" count="1" value="69" id="2305103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  2 forward   stereo Id 486670761 " fill="rgb(255,119,0)" points="1256.66,1486.36 1268.61,1484.1 1264.7,1478.54 " />
<svg:polygon detid="486670765" count="1" value="69" id="2305104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  3 forward   stereo Id 486670765 " fill="rgb(255,119,0)" points="1252.21,1480.4 1263.41,1477.06 1258.07,1471.93 " />
<svg:polygon detid="486703781" count="1" value="69" id="2305105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward   stereo Id 486703781 " fill="rgb(255,119,0)" points="1246.23,1474.91 1256.41,1470.59 1249.77,1466.02 " />
<svg:polygon detid="486703785" count="1" value="69" id="2305106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward   stereo Id 486703785 " fill="rgb(255,119,0)" points="1238.87,1470.05 1247.77,1464.84 1240,1460.93 " />
<svg:polygon detid="486671013" count="1" value="69" id="2305107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward   stereo Id 486671013 " fill="rgb(255,119,0)" points="1230.3,1465.92 1237.71,1459.96 1228.99,1456.81 " />
<svg:polygon detid="486671017" count="1" value="69" id="2305108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  2 forward   stereo Id 486671017 " fill="rgb(255,119,0)" points="1220.74,1462.63 1226.47,1456.06 1217.03,1453.76 " />
<svg:polygon detid="486671021" count="1" value="69" id="2305109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  3 forward   stereo Id 486671021 " fill="rgb(255,119,0)" points="1210.43,1460.26 1214.34,1453.24 1204.4,1451.84 " />
<svg:polygon detid="486704037" count="1" value="69" id="2305110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward   stereo Id 486704037 " fill="rgb(255,119,0)" points="1199.61,1458.87 1201.61,1451.58 1191.41,1451.11 " />
<svg:polygon detid="486704041" count="1" value="69" id="2305111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward   stereo Id 486704041 " fill="rgb(255,119,0)" points="1188.55,1458.49 1188.59,1451.11 1178.39,1451.58 " />
<svg:polygon detid="486671269" count="1" value="69" id="2305112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward   stereo Id 486671269 " fill="rgb(255,119,0)" points="1177.53,1459.14 1175.6,1451.84 1165.66,1453.24 " />
<svg:polygon detid="486671273" count="1" value="69" id="2305113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  2 forward   stereo Id 486671273 " fill="rgb(255,119,0)" points="1166.82,1460.79 1162.97,1453.76 1153.53,1456.06 " />
<svg:polygon detid="486671277" count="1" value="69" id="2305114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  3 forward   stereo Id 486671277 " fill="rgb(255,119,0)" points="1156.68,1463.4 1151.01,1456.81 1142.29,1459.96 " />
<svg:polygon detid="486704293" count="1" value="69" id="2305115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward   stereo Id 486704293 " fill="rgb(255,119,0)" points="1147.35,1466.92 1140,1460.93 1132.23,1464.84 " />
<svg:polygon detid="486704297" count="1" value="69" id="2305116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward   stereo Id 486704297 " fill="rgb(255,119,0)" points="1139.08,1471.25 1130.23,1466.02 1123.59,1470.59 " />
<svg:polygon detid="486671525" count="1" value="69" id="2305117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward   stereo Id 486671525 " fill="rgb(255,119,0)" points="1132.06,1476.29 1121.93,1471.93 1116.59,1477.06 " />
<svg:polygon detid="486671529" count="1" value="69" id="2305118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  2 forward   stereo Id 486671529 " fill="rgb(255,119,0)" points="1126.47,1481.92 1115.3,1478.54 1111.39,1484.1 " />
<svg:polygon detid="486671533" count="1" value="69" id="2305119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  3 forward   stereo Id 486671533 " fill="rgb(255,119,0)" points="1122.44,1487.98 1110.52,1485.68 1108.13,1491.53 " />
<svg:polygon detid="486704549" count="1" value="69" id="2305120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward   stereo Id 486704549 " fill="rgb(255,119,0)" points="1120.08,1494.35 1107.69,1493.17 1106.88,1499.17 " />
<svg:polygon detid="486704553" count="1" value="69" id="2305121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward   stereo Id 486704553 " fill="rgb(255,119,0)" points="1119.44,1500.85 1106.88,1500.83 1107.69,1506.83 " />
<svg:polygon detid="486671781" count="1" value="69" id="2305122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward   stereo Id 486671781 " fill="rgb(255,119,0)" points="1120.53,1507.33 1108.13,1508.47 1110.52,1514.32 " />
<svg:polygon detid="486671785" count="1" value="69" id="2305123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  2 forward   stereo Id 486671785 " fill="rgb(255,119,0)" points="1123.34,1513.64 1111.39,1515.9 1115.3,1521.46 " />
<svg:polygon detid="486671789" count="1" value="69" id="2305124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  3 forward   stereo Id 486671789 " fill="rgb(255,119,0)" points="1127.79,1519.6 1116.59,1522.94 1121.93,1528.07 " />
<svg:polygon detid="486704805" count="1" value="69" id="2305125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward   stereo Id 486704805 " fill="rgb(255,119,0)" points="1133.77,1525.09 1123.59,1529.41 1130.23,1533.98 " />
<svg:polygon detid="486704809" count="1" value="69" id="2305126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward   stereo Id 486704809 " fill="rgb(255,119,0)" points="1141.13,1529.95 1132.23,1535.16 1140,1539.07 " />
<svg:polygon detid="486672037" count="1" value="69" id="2305127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward   stereo Id 486672037 " fill="rgb(255,119,0)" points="1149.7,1534.08 1142.29,1540.04 1151.01,1543.19 " />
<svg:polygon detid="486672041" count="1" value="69" id="2305128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  2 forward   stereo Id 486672041 " fill="rgb(255,119,0)" points="1159.26,1537.37 1153.53,1543.94 1162.97,1546.24 " />
<svg:polygon detid="486672045" count="1" value="69" id="2305129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  3 forward   stereo Id 486672045 " fill="rgb(255,119,0)" points="1169.57,1539.74 1165.66,1546.76 1175.6,1548.16 " />
<svg:polygon detid="486705061" count="1" value="69" id="2305130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward   stereo Id 486705061 " fill="rgb(255,119,0)" points="1180.39,1541.13 1178.39,1548.42 1188.59,1548.89 " />
<svg:polygon detid="486705065" count="1" value="69" id="2305131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward   stereo Id 486705065 " fill="rgb(255,119,0)" points="1191.45,1541.51 1191.41,1548.89 1201.61,1548.42 " />
<svg:polygon detid="486672293" count="1" value="69" id="2305132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward   stereo Id 486672293 " fill="rgb(255,119,0)" points="1202.47,1540.86 1204.4,1548.16 1214.34,1546.76 " />
<svg:polygon detid="486672297" count="1" value="69" id="2305133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  2 forward   stereo Id 486672297 " fill="rgb(255,119,0)" points="1213.18,1539.21 1217.03,1546.24 1226.47,1543.94 " />
<svg:polygon detid="486672301" count="1" value="69" id="2305134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  3 forward   stereo Id 486672301 " fill="rgb(255,119,0)" points="1223.32,1536.6 1228.99,1543.19 1237.71,1540.04 " />
<svg:polygon detid="486705317" count="1" value="69" id="2305135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward   stereo Id 486705317 " fill="rgb(255,119,0)" points="1232.65,1533.08 1240,1539.07 1247.77,1535.16 " />
<svg:polygon detid="486705321" count="1" value="69" id="2305136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward   stereo Id 486705321 " fill="rgb(255,119,0)" points="1240.92,1528.75 1249.77,1533.98 1256.41,1529.41 " />
<svg:polygon detid="486672549" count="1" value="69" id="2305137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward   stereo Id 486672549 " fill="rgb(255,119,0)" points="1247.94,1523.71 1258.07,1528.07 1263.41,1522.94 " />
<svg:polygon detid="486672553" count="1" value="69" id="2305138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  2 forward   stereo Id 486672553 " fill="rgb(255,119,0)" points="1253.53,1518.08 1264.7,1521.46 1268.61,1515.9 " />
<svg:polygon detid="486672557" count="1" value="69" id="2305139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  3 forward   stereo Id 486672557 " fill="rgb(255,119,0)" points="1257.56,1512.02 1269.48,1514.32 1271.87,1508.47 " />
<svg:polygon detid="486703525" count="1" value="69" id="2305140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward   stereo Id 486703525 " fill="rgb(255,119,0)" points="1259.92,1505.65 1272.31,1506.83 1273.12,1500.83 " />
<svg:polygon detid="486703556" count="1" value="69" id="2306001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703556 " fill="rgb(255,119,0)" points="1275.05,1499.28 1290.71,1499.3 1290.21,1494.06 1274.65,1495.12 " />
<svg:polygon detid="486703564" count="1" value="69" id="2306002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  3 forward    Id 486703564 " fill="rgb(255,119,0)" points="1274.38,1493.68 1289.94,1492.67 1288.45,1487.5 1273.19,1489.57 " />
<svg:polygon detid="486670788" count="1" value="69" id="2306003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670788 " fill="rgb(255,119,0)" points="1272.64,1488.16 1287.92,1486.14 1285.45,1481.1 1270.68,1484.16 " />
<svg:polygon detid="486670792" count="1" value="69" id="2306004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  2 forward    Id 486670792 " fill="rgb(255,119,0)" points="1269.87,1482.8 1284.66,1479.77 1281.25,1474.93 1267.16,1478.94 " />
<svg:polygon detid="486670796" count="1" value="69" id="2306005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  3 forward    Id 486670796 " fill="rgb(255,119,0)" points="1266.09,1477.64 1280.22,1473.67 1275.9,1469.08 1262.66,1473.99 " />
<svg:polygon detid="486703812" count="1" value="69" id="2306006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703812 " fill="rgb(255,119,0)" points="1261.36,1472.77 1274.64,1467.89 1269.48,1463.61 1257.26,1469.37 " />
<svg:polygon detid="486703816" count="1" value="69" id="2306007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703816 " fill="rgb(255,119,0)" points="1255.73,1468.24 1267.99,1462.52 1262.05,1458.61 1251,1465.13 " />
<svg:polygon detid="486703820" count="1" value="69" id="2306008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  3 forward    Id 486703820 " fill="rgb(255,119,0)" points="1249.27,1464.11 1260.37,1457.62 1253.72,1454.12 1243.98,1461.34 " />
<svg:polygon detid="486703824" count="1" value="69" id="2306009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  0 backward    Id 486703824 " fill="rgb(255,119,0)" points="1242.07,1460.44 1251.86,1453.25 1244.59,1450.21 1236.29,1458.02 " />
<svg:polygon detid="486671044" count="1" value="69" id="2306010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486671044 " fill="rgb(255,119,0)" points="1234.21,1457.26 1242.57,1449.47 1234.77,1446.93 1228.01,1455.24 " />
<svg:polygon detid="486671048" count="1" value="69" id="2306011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  2 forward    Id 486671048 " fill="rgb(255,119,0)" points="1225.8,1454.61 1232.62,1446.32 1224.38,1444.32 1219.25,1453.02 " />
<svg:polygon detid="486671052" count="1" value="69" id="2306012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  3 forward    Id 486671052 " fill="rgb(255,119,0)" points="1216.93,1452.54 1222.14,1443.85 1213.57,1442.4 1210.12,1451.39 " />
<svg:polygon detid="486704068" count="1" value="69" id="2306013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486704068 " fill="rgb(255,119,0)" points="1207.73,1451.07 1211.25,1442.09 1202.46,1441.21 1200.74,1450.37 " />
<svg:polygon detid="486704072" count="1" value="69" id="2306014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486704072 " fill="rgb(255,119,0)" points="1198.3,1450.21 1200.09,1441.06 1191.19,1440.76 1191.23,1449.97 " />
<svg:polygon detid="486704076" count="1" value="69" id="2306015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  3 forward    Id 486704076 " fill="rgb(255,119,0)" points="1188.77,1449.97 1188.81,1440.76 1179.91,1441.06 1181.7,1450.21 " />
<svg:polygon detid="486704080" count="1" value="69" id="2306016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  0 backward    Id 486704080 " fill="rgb(255,119,0)" points="1179.26,1450.37 1177.54,1441.21 1168.75,1442.09 1172.27,1451.07 " />
<svg:polygon detid="486671300" count="1" value="69" id="2306017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671300 " fill="rgb(255,119,0)" points="1169.88,1451.39 1166.43,1442.4 1157.86,1443.85 1163.07,1452.54 " />
<svg:polygon detid="486671304" count="1" value="69" id="2306018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  2 forward    Id 486671304 " fill="rgb(255,119,0)" points="1160.75,1453.02 1155.62,1444.32 1147.38,1446.32 1154.2,1454.61 " />
<svg:polygon detid="486671308" count="1" value="69" id="2306019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  3 forward    Id 486671308 " fill="rgb(255,119,0)" points="1151.99,1455.24 1145.23,1446.93 1137.43,1449.47 1145.79,1457.26 " />
<svg:polygon detid="486704324" count="1" value="69" id="2306020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704324 " fill="rgb(255,119,0)" points="1143.71,1458.02 1135.41,1450.21 1128.14,1453.25 1137.93,1460.44 " />
<svg:polygon detid="486704328" count="1" value="69" id="2306021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704328 " fill="rgb(255,119,0)" points="1136.02,1461.34 1126.28,1454.12 1119.63,1457.62 1130.73,1464.11 " />
<svg:polygon detid="486704332" count="1" value="69" id="2306022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  3 forward    Id 486704332 " fill="rgb(255,119,0)" points="1129,1465.13 1117.95,1458.61 1112.01,1462.52 1124.27,1468.24 " />
<svg:polygon detid="486704336" count="1" value="69" id="2306023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  0 backward    Id 486704336 " fill="rgb(255,119,0)" points="1122.74,1469.37 1110.52,1463.61 1105.36,1467.89 1118.64,1472.77 " />
<svg:polygon detid="486671556" count="1" value="69" id="2306024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671556 " fill="rgb(255,119,0)" points="1117.34,1473.99 1104.1,1469.08 1099.78,1473.67 1113.91,1477.64 " />
<svg:polygon detid="486671560" count="1" value="69" id="2306025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  2 forward    Id 486671560 " fill="rgb(255,119,0)" points="1112.84,1478.94 1098.75,1474.93 1095.34,1479.77 1110.13,1482.8 " />
<svg:polygon detid="486671564" count="1" value="69" id="2306026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  3 forward    Id 486671564 " fill="rgb(255,119,0)" points="1109.32,1484.16 1094.55,1481.1 1092.08,1486.14 1107.36,1488.16 " />
<svg:polygon detid="486704580" count="1" value="69" id="2306027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704580 " fill="rgb(255,119,0)" points="1106.81,1489.57 1091.55,1487.5 1090.06,1492.67 1105.62,1493.68 " />
<svg:polygon detid="486704584" count="1" value="69" id="2306028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704584 " fill="rgb(255,119,0)" points="1105.35,1495.12 1089.79,1494.06 1089.29,1499.3 1104.95,1499.28 " />
<svg:polygon detid="486704588" count="1" value="69" id="2306029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  3 forward    Id 486704588 " fill="rgb(255,119,0)" points="1104.95,1500.72 1089.29,1500.7 1089.79,1505.94 1105.35,1504.88 " />
<svg:polygon detid="486704592" count="1" value="69" id="2306030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  0 backward    Id 486704592 " fill="rgb(255,119,0)" points="1105.62,1506.32 1090.06,1507.33 1091.55,1512.5 1106.81,1510.43 " />
<svg:polygon detid="486671812" count="1" value="69" id="2306031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671812 " fill="rgb(255,119,0)" points="1107.36,1511.84 1092.08,1513.86 1094.55,1518.9 1109.32,1515.84 " />
<svg:polygon detid="486671816" count="1" value="69" id="2306032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  2 forward    Id 486671816 " fill="rgb(255,119,0)" points="1110.13,1517.2 1095.34,1520.23 1098.75,1525.07 1112.84,1521.06 " />
<svg:polygon detid="486671820" count="1" value="69" id="2306033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  3 forward    Id 486671820 " fill="rgb(255,119,0)" points="1113.91,1522.36 1099.78,1526.33 1104.1,1530.92 1117.34,1526.01 " />
<svg:polygon detid="486704836" count="1" value="69" id="2306034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704836 " fill="rgb(255,119,0)" points="1118.64,1527.23 1105.36,1532.11 1110.52,1536.39 1122.74,1530.63 " />
<svg:polygon detid="486704840" count="1" value="69" id="2306035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704840 " fill="rgb(255,119,0)" points="1124.27,1531.76 1112.01,1537.48 1117.95,1541.39 1129,1534.87 " />
<svg:polygon detid="486704844" count="1" value="69" id="2306036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  3 forward    Id 486704844 " fill="rgb(255,119,0)" points="1130.73,1535.89 1119.63,1542.38 1126.28,1545.88 1136.02,1538.66 " />
<svg:polygon detid="486704848" count="1" value="69" id="2306037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  0 backward    Id 486704848 " fill="rgb(255,119,0)" points="1137.93,1539.56 1128.14,1546.75 1135.41,1549.79 1143.71,1541.98 " />
<svg:polygon detid="486672068" count="1" value="69" id="2306038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486672068 " fill="rgb(255,119,0)" points="1145.79,1542.74 1137.43,1550.53 1145.23,1553.07 1151.99,1544.76 " />
<svg:polygon detid="486672072" count="1" value="69" id="2306039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  2 forward    Id 486672072 " fill="rgb(255,119,0)" points="1154.2,1545.39 1147.38,1553.68 1155.62,1555.68 1160.75,1546.98 " />
<svg:polygon detid="486672076" count="1" value="69" id="2306040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  3 forward    Id 486672076 " fill="rgb(255,119,0)" points="1163.07,1547.46 1157.86,1556.15 1166.43,1557.6 1169.88,1548.61 " />
<svg:polygon detid="486705092" count="1" value="69" id="2306041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486705092 " fill="rgb(255,119,0)" points="1172.27,1548.93 1168.75,1557.91 1177.54,1558.79 1179.26,1549.63 " />
<svg:polygon detid="486705096" count="1" value="69" id="2306042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486705096 " fill="rgb(255,119,0)" points="1181.7,1549.79 1179.91,1558.94 1188.81,1559.24 1188.77,1550.03 " />
<svg:polygon detid="486705100" count="1" value="69" id="2306043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  3 forward    Id 486705100 " fill="rgb(255,119,0)" points="1191.23,1550.03 1191.19,1559.24 1200.09,1558.94 1198.3,1549.79 " />
<svg:polygon detid="486705104" count="1" value="69" id="2306044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  0 backward    Id 486705104 " fill="rgb(255,119,0)" points="1200.74,1549.63 1202.46,1558.79 1211.25,1557.91 1207.73,1548.93 " />
<svg:polygon detid="486672324" count="1" value="69" id="2306045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672324 " fill="rgb(255,119,0)" points="1210.12,1548.61 1213.57,1557.6 1222.14,1556.15 1216.93,1547.46 " />
<svg:polygon detid="486672328" count="1" value="69" id="2306046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  2 forward    Id 486672328 " fill="rgb(255,119,0)" points="1219.25,1546.98 1224.38,1555.68 1232.62,1553.68 1225.8,1545.39 " />
<svg:polygon detid="486672332" count="1" value="69" id="2306047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  3 forward    Id 486672332 " fill="rgb(255,119,0)" points="1228.01,1544.76 1234.77,1553.07 1242.57,1550.53 1234.21,1542.74 " />
<svg:polygon detid="486705348" count="1" value="69" id="2306048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705348 " fill="rgb(255,119,0)" points="1236.29,1541.98 1244.59,1549.79 1251.86,1546.75 1242.07,1539.56 " />
<svg:polygon detid="486705352" count="1" value="69" id="2306049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705352 " fill="rgb(255,119,0)" points="1243.98,1538.66 1253.72,1545.88 1260.37,1542.38 1249.27,1535.89 " />
<svg:polygon detid="486705356" count="1" value="69" id="2306050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  3 forward    Id 486705356 " fill="rgb(255,119,0)" points="1251,1534.87 1262.05,1541.39 1267.99,1537.48 1255.73,1531.76 " />
<svg:polygon detid="486705360" count="1" value="69" id="2306051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  0 backward    Id 486705360 " fill="rgb(255,119,0)" points="1257.26,1530.63 1269.48,1536.39 1274.64,1532.11 1261.36,1527.23 " />
<svg:polygon detid="486672580" count="1" value="69" id="2306052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672580 " fill="rgb(255,119,0)" points="1262.66,1526.01 1275.9,1530.92 1280.22,1526.33 1266.09,1522.36 " />
<svg:polygon detid="486672584" count="1" value="69" id="2306053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  2 forward    Id 486672584 " fill="rgb(255,119,0)" points="1267.16,1521.06 1281.25,1525.07 1284.66,1520.23 1269.87,1517.2 " />
<svg:polygon detid="486672588" count="1" value="69" id="2306054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  3 forward    Id 486672588 " fill="rgb(255,119,0)" points="1270.68,1515.84 1285.45,1518.9 1287.92,1513.86 1272.64,1511.84 " />
<svg:polygon detid="486703568" count="1" value="69" id="2306055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  0 backward    Id 486703568 " fill="rgb(255,119,0)" points="1273.19,1510.43 1288.45,1512.5 1289.94,1507.33 1274.38,1506.32 " />
<svg:polygon detid="486703560" count="1" value="69" id="2306056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703560 " fill="rgb(255,119,0)" points="1274.65,1504.88 1290.21,1505.94 1290.71,1500.7 1275.05,1500.72 " />
<svg:polygon detid="486703588" count="1" value="69" id="2307001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 forward    Id 486703588 " fill="rgb(255,119,0)" points="1293.72,1501.79 1311.12,1502.21 1311.12,1497.79 1293.72,1498.21 " />
<svg:polygon detid="486703596" count="1" value="69" id="2307002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  3 forward    Id 486703596 " fill="rgb(255,119,0)" points="1293.64,1496.99 1311.04,1496.61 1310.46,1492.21 1293.17,1493.43 " />
<svg:polygon detid="486703600" count="1" value="69" id="2307003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  0 backward    Id 486703600 " fill="rgb(255,119,0)" points="1292.92,1492.22 1310.22,1491.03 1309.05,1486.68 1291.97,1488.69 " />
<svg:polygon detid="486670820" count="1" value="69" id="2307004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 forward    Id 486670820 " fill="rgb(255,119,0)" points="1291.57,1487.49 1308.65,1485.51 1306.9,1481.22 1290.15,1484.02 " />
<svg:polygon detid="486670824" count="1" value="69" id="2307005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  2 forward    Id 486670824 " fill="rgb(255,119,0)" points="1289.59,1482.85 1306.35,1480.08 1304.04,1475.89 1287.71,1479.45 " />
<svg:polygon detid="486670828" count="1" value="69" id="2307006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  3 forward    Id 486670828 " fill="rgb(255,119,0)" points="1286.99,1478.3 1303.34,1474.77 1300.47,1470.7 1284.67,1475 " />
<svg:polygon detid="486670832" count="1" value="69" id="2307007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  0 backward    Id 486670832 " fill="rgb(255,119,0)" points="1283.8,1473.89 1299.62,1469.62 1296.22,1465.69 1281.04,1470.71 " />
<svg:polygon detid="486670836" count="1" value="69" id="2307008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 forward  module  1 backward    Id 486670836 " fill="rgb(255,119,0)" points="1280.03,1469.64 1295.23,1464.65 1291.32,1460.89 1276.85,1466.6 " />
<svg:polygon detid="486703844" count="1" value="69" id="2307009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 forward    Id 486703844 " fill="rgb(255,119,0)" points="1275.7,1465.58 1290.19,1459.9 1285.79,1456.34 1272.13,1462.69 " />
<svg:polygon detid="486703848" count="1" value="69" id="2307010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  2 forward    Id 486703848 " fill="rgb(255,119,0)" points="1270.84,1461.73 1284.54,1455.4 1279.67,1452.05 1266.9,1459.02 " />
<svg:polygon detid="486703852" count="1" value="69" id="2307011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  3 forward    Id 486703852 " fill="rgb(255,119,0)" points="1265.49,1458.12 1278.3,1451.18 1273,1448.06 1261.19,1455.59 " />
<svg:polygon detid="486703856" count="1" value="69" id="2307012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  0 backward    Id 486703856 " fill="rgb(255,119,0)" points="1259.67,1454.77 1271.51,1447.25 1265.81,1444.39 1255.05,1452.44 " />
<svg:polygon detid="486703860" count="1" value="69" id="2307013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 backward  module  1 backward    Id 486703860 " fill="rgb(255,119,0)" points="1253.43,1451.69 1264.23,1443.65 1258.16,1441.06 1248.51,1449.59 " />
<svg:polygon detid="486671076" count="1" value="69" id="2307014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 forward    Id 486671076 " fill="rgb(255,119,0)" points="1246.79,1448.91 1256.48,1440.4 1250.09,1438.1 1241.6,1447.04 " />
<svg:polygon detid="486671080" count="1" value="69" id="2307015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  2 forward    Id 486671080 " fill="rgb(255,119,0)" points="1239.8,1446.45 1248.33,1437.52 1241.65,1435.52 1234.38,1444.83 " />
<svg:polygon detid="486671084" count="1" value="69" id="2307016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  3 forward    Id 486671084 " fill="rgb(255,119,0)" points="1232.5,1444.31 1239.81,1435.02 1232.89,1433.33 1226.89,1442.95 " />
<svg:polygon detid="486671088" count="1" value="69" id="2307017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  0 backward    Id 486671088 " fill="rgb(255,119,0)" points="1224.94,1442.52 1230.99,1432.92 1223.86,1431.56 1219.16,1441.42 " />
<svg:polygon detid="486671092" count="1" value="69" id="2307018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 2 forward  module  1 backward    Id 486671092 " fill="rgb(255,119,0)" points="1217.17,1441.09 1221.92,1431.23 1214.63,1430.21 1211.26,1440.25 " />
<svg:polygon detid="486704100" count="1" value="69" id="2307019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 forward    Id 486704100 " fill="rgb(255,119,0)" points="1209.23,1440.02 1212.65,1429.97 1205.25,1429.28 1203.22,1439.46 " />
<svg:polygon detid="486704104" count="1" value="69" id="2307020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  2 forward    Id 486704104 " fill="rgb(255,119,0)" points="1201.17,1439.31 1203.24,1429.14 1195.77,1428.8 1195.11,1439.03 " />
<svg:polygon detid="486704108" count="1" value="69" id="2307021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  3 forward    Id 486704108 " fill="rgb(255,119,0)" points="1193.04,1438.99 1193.75,1428.75 1186.25,1428.75 1186.96,1438.99 " />
<svg:polygon detid="486704112" count="1" value="69" id="2307022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  0 backward    Id 486704112 " fill="rgb(255,119,0)" points="1184.89,1439.03 1184.23,1428.8 1176.76,1429.14 1178.83,1439.31 " />
<svg:polygon detid="486704116" count="1" value="69" id="2307023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 backward  module  1 backward    Id 486704116 " fill="rgb(255,119,0)" points="1176.78,1439.46 1174.75,1429.28 1167.35,1429.97 1170.77,1440.02 " />
<svg:polygon detid="486671332" count="1" value="69" id="2307024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 forward    Id 486671332 " fill="rgb(255,119,0)" points="1168.74,1440.25 1165.37,1430.21 1158.08,1431.23 1162.83,1441.09 " />
<svg:polygon detid="486671336" count="1" value="69" id="2307025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  2 forward    Id 486671336 " fill="rgb(255,119,0)" points="1160.84,1441.42 1156.14,1431.56 1149.01,1432.92 1155.06,1442.52 " />
<svg:polygon detid="486671340" count="1" value="69" id="2307026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  3 forward    Id 486671340 " fill="rgb(255,119,0)" points="1153.11,1442.95 1147.11,1433.33 1140.19,1435.02 1147.5,1444.31 " />
<svg:polygon detid="486671344" count="1" value="69" id="2307027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  0 backward    Id 486671344 " fill="rgb(255,119,0)" points="1145.62,1444.83 1138.35,1435.52 1131.67,1437.52 1140.2,1446.45 " />
<svg:polygon detid="486671348" count="1" value="69" id="2307028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 3 forward  module  1 backward    Id 486671348 " fill="rgb(255,119,0)" points="1138.4,1447.04 1129.91,1438.1 1123.52,1440.4 1133.21,1448.91 " />
<svg:polygon detid="486704356" count="1" value="69" id="2307029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 forward    Id 486704356 " fill="rgb(255,119,0)" points="1131.49,1449.59 1121.84,1441.06 1115.77,1443.65 1126.57,1451.69 " />
<svg:polygon detid="486704360" count="1" value="69" id="2307030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  2 forward    Id 486704360 " fill="rgb(255,119,0)" points="1124.95,1452.44 1114.19,1444.39 1108.49,1447.25 1120.33,1454.77 " />
<svg:polygon detid="486704364" count="1" value="69" id="2307031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  3 forward    Id 486704364 " fill="rgb(255,119,0)" points="1118.81,1455.59 1107,1448.06 1101.7,1451.18 1114.51,1458.12 " />
<svg:polygon detid="486704368" count="1" value="69" id="2307032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  0 backward    Id 486704368 " fill="rgb(255,119,0)" points="1113.1,1459.02 1100.33,1452.05 1095.46,1455.4 1109.16,1461.73 " />
<svg:polygon detid="486704372" count="1" value="69" id="2307033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 backward  module  1 backward    Id 486704372 " fill="rgb(255,119,0)" points="1107.87,1462.69 1094.21,1456.34 1089.81,1459.9 1104.3,1465.58 " />
<svg:polygon detid="486671588" count="1" value="69" id="2307034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 forward    Id 486671588 " fill="rgb(255,119,0)" points="1103.15,1466.6 1088.68,1460.89 1084.77,1464.65 1099.97,1469.64 " />
<svg:polygon detid="486671592" count="1" value="69" id="2307035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  2 forward    Id 486671592 " fill="rgb(255,119,0)" points="1098.96,1470.71 1083.78,1465.69 1080.38,1469.62 1096.2,1473.89 " />
<svg:polygon detid="486671596" count="1" value="69" id="2307036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  3 forward    Id 486671596 " fill="rgb(255,119,0)" points="1095.33,1475 1079.53,1470.7 1076.66,1474.77 1093.01,1478.3 " />
<svg:polygon detid="486671600" count="1" value="69" id="2307037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  0 backward    Id 486671600 " fill="rgb(255,119,0)" points="1092.29,1479.45 1075.96,1475.89 1073.65,1480.08 1090.41,1482.85 " />
<svg:polygon detid="486671604" count="1" value="69" id="2307038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 4 forward  module  1 backward    Id 486671604 " fill="rgb(255,119,0)" points="1089.85,1484.02 1073.1,1481.22 1071.35,1485.51 1088.43,1487.49 " />
<svg:polygon detid="486704612" count="1" value="69" id="2307039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 forward    Id 486704612 " fill="rgb(255,119,0)" points="1088.03,1488.69 1070.95,1486.68 1069.78,1491.03 1087.08,1492.22 " />
<svg:polygon detid="486704616" count="1" value="69" id="2307040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  2 forward    Id 486704616 " fill="rgb(255,119,0)" points="1086.83,1493.43 1069.54,1492.21 1068.96,1496.61 1086.36,1496.99 " />
<svg:polygon detid="486704620" count="1" value="69" id="2307041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  3 forward    Id 486704620 " fill="rgb(255,119,0)" points="1086.28,1498.21 1068.88,1497.79 1068.88,1502.21 1086.28,1501.79 " />
<svg:polygon detid="486704624" count="1" value="69" id="2307042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  0 backward    Id 486704624 " fill="rgb(255,119,0)" points="1086.36,1503.01 1068.96,1503.39 1069.54,1507.79 1086.83,1506.57 " />
<svg:polygon detid="486704628" count="1" value="69" id="2307043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 backward  module  1 backward    Id 486704628 " fill="rgb(255,119,0)" points="1087.08,1507.78 1069.78,1508.97 1070.95,1513.32 1088.03,1511.31 " />
<svg:polygon detid="486671844" count="1" value="69" id="2307044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 forward    Id 486671844 " fill="rgb(255,119,0)" points="1088.43,1512.51 1071.35,1514.49 1073.1,1518.78 1089.85,1515.98 " />
<svg:polygon detid="486671848" count="1" value="69" id="2307045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  2 forward    Id 486671848 " fill="rgb(255,119,0)" points="1090.41,1517.15 1073.65,1519.92 1075.96,1524.11 1092.29,1520.55 " />
<svg:polygon detid="486671852" count="1" value="69" id="2307046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  3 forward    Id 486671852 " fill="rgb(255,119,0)" points="1093.01,1521.7 1076.66,1525.23 1079.53,1529.3 1095.33,1525 " />
<svg:polygon detid="486671856" count="1" value="69" id="2307047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  0 backward    Id 486671856 " fill="rgb(255,119,0)" points="1096.2,1526.11 1080.38,1530.38 1083.78,1534.31 1098.96,1529.29 " />
<svg:polygon detid="486671860" count="1" value="69" id="2307048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 5 forward  module  1 backward    Id 486671860 " fill="rgb(255,119,0)" points="1099.97,1530.36 1084.77,1535.35 1088.68,1539.11 1103.15,1533.4 " />
<svg:polygon detid="486704868" count="1" value="69" id="2307049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 forward    Id 486704868 " fill="rgb(255,119,0)" points="1104.3,1534.42 1089.81,1540.1 1094.21,1543.66 1107.87,1537.31 " />
<svg:polygon detid="486704872" count="1" value="69" id="2307050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  2 forward    Id 486704872 " fill="rgb(255,119,0)" points="1109.16,1538.27 1095.46,1544.6 1100.33,1547.95 1113.1,1540.98 " />
<svg:polygon detid="486704876" count="1" value="69" id="2307051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  3 forward    Id 486704876 " fill="rgb(255,119,0)" points="1114.51,1541.88 1101.7,1548.82 1107,1551.94 1118.81,1544.41 " />
<svg:polygon detid="486704880" count="1" value="69" id="2307052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  0 backward    Id 486704880 " fill="rgb(255,119,0)" points="1120.33,1545.23 1108.49,1552.75 1114.19,1555.61 1124.95,1547.56 " />
<svg:polygon detid="486704884" count="1" value="69" id="2307053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 backward  module  1 backward    Id 486704884 " fill="rgb(255,119,0)" points="1126.57,1548.31 1115.77,1556.35 1121.84,1558.94 1131.49,1550.41 " />
<svg:polygon detid="486672100" count="1" value="69" id="2307054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 forward    Id 486672100 " fill="rgb(255,119,0)" points="1133.21,1551.09 1123.52,1559.6 1129.91,1561.9 1138.4,1552.96 " />
<svg:polygon detid="486672104" count="1" value="69" id="2307055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  2 forward    Id 486672104 " fill="rgb(255,119,0)" points="1140.2,1553.55 1131.67,1562.48 1138.35,1564.48 1145.62,1555.17 " />
<svg:polygon detid="486672108" count="1" value="69" id="2307056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  3 forward    Id 486672108 " fill="rgb(255,119,0)" points="1147.5,1555.69 1140.19,1564.98 1147.11,1566.67 1153.11,1557.05 " />
<svg:polygon detid="486672112" count="1" value="69" id="2307057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  0 backward    Id 486672112 " fill="rgb(255,119,0)" points="1155.06,1557.48 1149.01,1567.08 1156.14,1568.44 1160.84,1558.58 " />
<svg:polygon detid="486672116" count="1" value="69" id="2307058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 6 forward  module  1 backward    Id 486672116 " fill="rgb(255,119,0)" points="1162.83,1558.91 1158.08,1568.77 1165.37,1569.79 1168.74,1559.75 " />
<svg:polygon detid="486705124" count="1" value="69" id="2307059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 forward    Id 486705124 " fill="rgb(255,119,0)" points="1170.77,1559.98 1167.35,1570.03 1174.75,1570.72 1176.78,1560.54 " />
<svg:polygon detid="486705128" count="1" value="69" id="2307060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  2 forward    Id 486705128 " fill="rgb(255,119,0)" points="1178.83,1560.69 1176.76,1570.86 1184.23,1571.2 1184.89,1560.97 " />
<svg:polygon detid="486705132" count="1" value="69" id="2307061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  3 forward    Id 486705132 " fill="rgb(255,119,0)" points="1186.96,1561.01 1186.25,1571.25 1193.75,1571.25 1193.04,1561.01 " />
<svg:polygon detid="486705136" count="1" value="69" id="2307062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  0 backward    Id 486705136 " fill="rgb(255,119,0)" points="1195.11,1560.97 1195.77,1571.2 1203.24,1570.86 1201.17,1560.69 " />
<svg:polygon detid="486705140" count="1" value="69" id="2307063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 backward  module  1 backward    Id 486705140 " fill="rgb(255,119,0)" points="1203.22,1560.54 1205.25,1570.72 1212.65,1570.03 1209.23,1559.98 " />
<svg:polygon detid="486672356" count="1" value="69" id="2307064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 forward    Id 486672356 " fill="rgb(255,119,0)" points="1211.26,1559.75 1214.63,1569.79 1221.92,1568.77 1217.17,1558.91 " />
<svg:polygon detid="486672360" count="1" value="69" id="2307065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  2 forward    Id 486672360 " fill="rgb(255,119,0)" points="1219.16,1558.58 1223.86,1568.44 1230.99,1567.08 1224.94,1557.48 " />
<svg:polygon detid="486672364" count="1" value="69" id="2307066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  3 forward    Id 486672364 " fill="rgb(255,119,0)" points="1226.89,1557.05 1232.89,1566.67 1239.81,1564.98 1232.5,1555.69 " />
<svg:polygon detid="486672368" count="1" value="69" id="2307067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  0 backward    Id 486672368 " fill="rgb(255,119,0)" points="1234.38,1555.17 1241.65,1564.48 1248.33,1562.48 1239.8,1553.55 " />
<svg:polygon detid="486672372" count="1" value="69" id="2307068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 7 forward  module  1 backward    Id 486672372 " fill="rgb(255,119,0)" points="1241.6,1552.96 1250.09,1561.9 1256.48,1559.6 1246.79,1551.09 " />
<svg:polygon detid="486705380" count="1" value="69" id="2307069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 forward    Id 486705380 " fill="rgb(255,119,0)" points="1248.51,1550.41 1258.16,1558.94 1264.23,1556.35 1253.43,1548.31 " />
<svg:polygon detid="486705384" count="1" value="69" id="2307070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  2 forward    Id 486705384 " fill="rgb(255,119,0)" points="1255.05,1547.56 1265.81,1555.61 1271.51,1552.75 1259.67,1545.23 " />
<svg:polygon detid="486705388" count="1" value="69" id="2307071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  3 forward    Id 486705388 " fill="rgb(255,119,0)" points="1261.19,1544.41 1273,1551.94 1278.3,1548.82 1265.49,1541.88 " />
<svg:polygon detid="486705392" count="1" value="69" id="2307072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  0 backward    Id 486705392 " fill="rgb(255,119,0)" points="1266.9,1540.98 1279.67,1547.95 1284.54,1544.6 1270.84,1538.27 " />
<svg:polygon detid="486705396" count="1" value="69" id="2307073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 backward  module  1 backward    Id 486705396 " fill="rgb(255,119,0)" points="1272.13,1537.31 1285.79,1543.66 1290.19,1540.1 1275.7,1534.42 " />
<svg:polygon detid="486672612" count="1" value="69" id="2307074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 forward    Id 486672612 " fill="rgb(255,119,0)" points="1276.85,1533.4 1291.32,1539.11 1295.23,1535.35 1280.03,1530.36 " />
<svg:polygon detid="486672616" count="1" value="69" id="2307075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  2 forward    Id 486672616 " fill="rgb(255,119,0)" points="1281.04,1529.29 1296.22,1534.31 1299.62,1530.38 1283.8,1526.11 " />
<svg:polygon detid="486672620" count="1" value="69" id="2307076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  3 forward    Id 486672620 " fill="rgb(255,119,0)" points="1284.67,1525 1300.47,1529.3 1303.34,1525.23 1286.99,1521.7 " />
<svg:polygon detid="486672624" count="1" value="69" id="2307077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  0 backward    Id 486672624 " fill="rgb(255,119,0)" points="1287.71,1520.55 1304.04,1524.11 1306.35,1519.92 1289.59,1517.15 " />
<svg:polygon detid="486672628" count="1" value="69" id="2307078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 8 forward  module  1 backward    Id 486672628 " fill="rgb(255,119,0)" points="1290.15,1515.98 1306.9,1518.78 1308.65,1514.49 1291.57,1512.51 " />
<svg:polygon detid="486703604" count="1" value="69" id="2307079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  1 backward    Id 486703604 " fill="rgb(255,119,0)" points="1291.97,1511.31 1309.05,1513.32 1310.22,1508.97 1292.92,1507.78 " />
<svg:polygon detid="486703592" count="1" value="69" id="2307080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 2 ring 0 petal 1 backward  module  2 forward    Id 486703592 " fill="rgb(255,119,0)" points="1293.17,1506.57 1310.46,1507.79 1311.04,1503.39 1293.64,1503.01 " />
<svg:polygon detid="486768938" count="1" value="72" id="2401001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486768938 " fill="rgb(255,113,0)" points="1224.31,1695.19 1217.27,1696.32 1217.96,1699.4 " />
<svg:polygon detid="486736166" count="1" value="72" id="2401002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736166 " fill="rgb(255,113,0)" points="1221.02,1690.13 1214.72,1692.3 1216.74,1695.16 " />
<svg:polygon detid="486769190" count="1" value="72" id="2401003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769190 " fill="rgb(255,113,0)" points="1215.62,1685.74 1210.49,1688.79 1213.7,1691.26 " />
<svg:polygon detid="486769194" count="1" value="72" id="2401004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769194 " fill="rgb(255,113,0)" points="1208.48,1682.33 1204.86,1686.06 1209.05,1687.95 " />
<svg:polygon detid="486736422" count="1" value="72" id="2401005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736422 " fill="rgb(255,113,0)" points="1200.07,1680.11 1198.22,1684.27 1203.1,1685.46 " />
<svg:polygon detid="486769446" count="1" value="72" id="2401006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769446 " fill="rgb(255,113,0)" points="1190.98,1679.26 1191.02,1683.55 1196.25,1683.96 " />
<svg:polygon detid="486769450" count="1" value="72" id="2401007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769450 " fill="rgb(255,113,0)" points="1181.82,1679.82 1183.75,1683.96 1188.98,1683.55 " />
<svg:polygon detid="486736678" count="1" value="72" id="2401008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736678 " fill="rgb(255,113,0)" points="1173.22,1681.75 1176.9,1685.46 1181.78,1684.27 " />
<svg:polygon detid="486769702" count="1" value="72" id="2401009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769702 " fill="rgb(255,113,0)" points="1165.76,1684.93 1170.95,1687.95 1175.14,1686.06 " />
<svg:polygon detid="486769706" count="1" value="72" id="2401010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769706 " fill="rgb(255,113,0)" points="1159.95,1689.13 1166.3,1691.26 1169.51,1688.79 " />
<svg:polygon detid="486736934" count="1" value="72" id="2401011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486736934 " fill="rgb(255,113,0)" points="1156.19,1694.08 1163.26,1695.16 1165.28,1692.3 " />
<svg:polygon detid="486769958" count="1" value="72" id="2401012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486769958 " fill="rgb(255,113,0)" points="1154.74,1699.43 1162.04,1699.4 1162.73,1696.32 " />
<svg:polygon detid="486769962" count="1" value="72" id="2401013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486769962 " fill="rgb(255,113,0)" points="1155.69,1704.81 1162.73,1703.68 1162.04,1700.6 " />
<svg:polygon detid="486737190" count="1" value="72" id="2401014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737190 " fill="rgb(255,113,0)" points="1158.98,1709.87 1165.28,1707.7 1163.26,1704.84 " />
<svg:polygon detid="486770214" count="1" value="72" id="2401015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770214 " fill="rgb(255,113,0)" points="1164.38,1714.26 1169.51,1711.21 1166.3,1708.74 " />
<svg:polygon detid="486770218" count="1" value="72" id="2401016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770218 " fill="rgb(255,113,0)" points="1171.52,1717.67 1175.14,1713.94 1170.95,1712.05 " />
<svg:polygon detid="486737446" count="1" value="72" id="2401017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737446 " fill="rgb(255,113,0)" points="1179.93,1719.89 1181.78,1715.73 1176.9,1714.54 " />
<svg:polygon detid="486770470" count="1" value="72" id="2401018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770470 " fill="rgb(255,113,0)" points="1189.02,1720.74 1188.98,1716.45 1183.75,1716.04 " />
<svg:polygon detid="486770474" count="1" value="72" id="2401019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770474 " fill="rgb(255,113,0)" points="1198.18,1720.18 1196.25,1716.04 1191.02,1716.45 " />
<svg:polygon detid="486737702" count="1" value="72" id="2401020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737702 " fill="rgb(255,113,0)" points="1206.78,1718.25 1203.1,1714.54 1198.22,1715.73 " />
<svg:polygon detid="486770726" count="1" value="72" id="2401021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770726 " fill="rgb(255,113,0)" points="1214.24,1715.07 1209.05,1712.05 1204.86,1713.94 " />
<svg:polygon detid="486770730" count="1" value="72" id="2401022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770730 " fill="rgb(255,113,0)" points="1220.05,1710.87 1213.7,1708.74 1210.49,1711.21 " />
<svg:polygon detid="486737958" count="1" value="72" id="2401023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486737958 " fill="rgb(255,113,0)" points="1223.81,1705.92 1216.74,1704.84 1214.72,1707.7 " />
<svg:polygon detid="486768934" count="1" value="72" id="2401024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486768934 " fill="rgb(255,113,0)" points="1225.26,1700.57 1217.96,1700.6 1217.27,1703.68 " />
<svg:polygon detid="486768937" count="1" value="72" id="2401101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward   stereo Id 486768937 " fill="rgb(255,113,0)" points="1217.96,1699.4 1225.26,1699.43 1224.31,1695.19 " />
<svg:polygon detid="486736165" count="1" value="72" id="2401102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward   stereo Id 486736165 " fill="rgb(255,113,0)" points="1216.74,1695.16 1223.81,1694.08 1221.02,1690.13 " />
<svg:polygon detid="486769189" count="1" value="72" id="2401103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward   stereo Id 486769189 " fill="rgb(255,113,0)" points="1213.7,1691.26 1220.05,1689.13 1215.62,1685.74 " />
<svg:polygon detid="486769193" count="1" value="72" id="2401104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward   stereo Id 486769193 " fill="rgb(255,113,0)" points="1209.05,1687.95 1214.24,1684.93 1208.48,1682.33 " />
<svg:polygon detid="486736421" count="1" value="72" id="2401105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward   stereo Id 486736421 " fill="rgb(255,113,0)" points="1203.1,1685.46 1206.78,1681.75 1200.07,1680.11 " />
<svg:polygon detid="486769445" count="1" value="72" id="2401106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward   stereo Id 486769445 " fill="rgb(255,113,0)" points="1196.25,1683.96 1198.18,1679.82 1190.98,1679.26 " />
<svg:polygon detid="486769449" count="1" value="72" id="2401107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward   stereo Id 486769449 " fill="rgb(255,113,0)" points="1188.98,1683.55 1189.02,1679.26 1181.82,1679.82 " />
<svg:polygon detid="486736677" count="1" value="72" id="2401108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward   stereo Id 486736677 " fill="rgb(255,113,0)" points="1181.78,1684.27 1179.93,1680.11 1173.22,1681.75 " />
<svg:polygon detid="486769701" count="1" value="72" id="2401109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward   stereo Id 486769701 " fill="rgb(255,113,0)" points="1175.14,1686.06 1171.52,1682.33 1165.76,1684.93 " />
<svg:polygon detid="486769705" count="1" value="72" id="2401110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward   stereo Id 486769705 " fill="rgb(255,113,0)" points="1169.51,1688.79 1164.38,1685.74 1159.95,1689.13 " />
<svg:polygon detid="486736933" count="1" value="72" id="2401111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward   stereo Id 486736933 " fill="rgb(255,113,0)" points="1165.28,1692.3 1158.98,1690.13 1156.19,1694.08 " />
<svg:polygon detid="486769957" count="1" value="72" id="2401112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward   stereo Id 486769957 " fill="rgb(255,113,0)" points="1162.73,1696.32 1155.69,1695.19 1154.74,1699.43 " />
<svg:polygon detid="486769961" count="1" value="72" id="2401113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward   stereo Id 486769961 " fill="rgb(255,113,0)" points="1162.04,1700.6 1154.74,1700.57 1155.69,1704.81 " />
<svg:polygon detid="486737189" count="1" value="72" id="2401114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward   stereo Id 486737189 " fill="rgb(255,113,0)" points="1163.26,1704.84 1156.19,1705.92 1158.98,1709.87 " />
<svg:polygon detid="486770213" count="1" value="72" id="2401115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward   stereo Id 486770213 " fill="rgb(255,113,0)" points="1166.3,1708.74 1159.95,1710.87 1164.38,1714.26 " />
<svg:polygon detid="486770217" count="1" value="72" id="2401116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward   stereo Id 486770217 " fill="rgb(255,113,0)" points="1170.95,1712.05 1165.76,1715.07 1171.52,1717.67 " />
<svg:polygon detid="486737445" count="1" value="72" id="2401117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward   stereo Id 486737445 " fill="rgb(255,113,0)" points="1176.9,1714.54 1173.22,1718.25 1179.93,1719.89 " />
<svg:polygon detid="486770469" count="1" value="72" id="2401118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward   stereo Id 486770469 " fill="rgb(255,113,0)" points="1183.75,1716.04 1181.82,1720.18 1189.02,1720.74 " />
<svg:polygon detid="486770473" count="1" value="72" id="2401119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward   stereo Id 486770473 " fill="rgb(255,113,0)" points="1191.02,1716.45 1190.98,1720.74 1198.18,1720.18 " />
<svg:polygon detid="486737701" count="1" value="72" id="2401120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward   stereo Id 486737701 " fill="rgb(255,113,0)" points="1198.22,1715.73 1200.07,1719.89 1206.78,1718.25 " />
<svg:polygon detid="486770725" count="1" value="72" id="2401121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward   stereo Id 486770725 " fill="rgb(255,113,0)" points="1204.86,1713.94 1208.48,1717.67 1214.24,1715.07 " />
<svg:polygon detid="486770729" count="1" value="72" id="2401122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward   stereo Id 486770729 " fill="rgb(255,113,0)" points="1210.49,1711.21 1215.62,1714.26 1220.05,1710.87 " />
<svg:polygon detid="486737957" count="1" value="72" id="2401123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward   stereo Id 486737957 " fill="rgb(255,113,0)" points="1214.72,1707.7 1221.02,1709.87 1223.81,1705.92 " />
<svg:polygon detid="486768933" count="1" value="72" id="2401124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward   stereo Id 486768933 " fill="rgb(255,113,0)" points="1217.27,1703.68 1224.31,1704.81 1225.26,1700.57 " />
<svg:polygon detid="486768970" count="1" value="72" id="2402001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486768970 " fill="rgb(255,113,0)" points="1234.35,1693.78 1227.06,1694.96 1228.01,1699.23 " />
<svg:polygon detid="486736198" count="1" value="72" id="2402002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736198 " fill="rgb(255,113,0)" points="1230.1,1687.24 1223.57,1689.49 1226.38,1693.47 " />
<svg:polygon detid="486769222" count="1" value="72" id="2402003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769222 " fill="rgb(255,113,0)" points="1223.12,1681.57 1217.8,1684.73 1222.27,1688.15 " />
<svg:polygon detid="486769226" count="1" value="72" id="2402004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769226 " fill="rgb(255,113,0)" points="1213.88,1677.16 1210.14,1681.02 1215.95,1683.64 " />
<svg:polygon detid="486736454" count="1" value="72" id="2402005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736454 " fill="rgb(255,113,0)" points="1203.02,1674.3 1201.1,1678.6 1207.87,1680.25 " />
<svg:polygon detid="486769478" count="1" value="72" id="2402006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769478 " fill="rgb(255,113,0)" points="1191.27,1673.19 1191.31,1677.64 1198.57,1678.2 " />
<svg:polygon detid="486769482" count="1" value="72" id="2402007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769482 " fill="rgb(255,113,0)" points="1179.43,1673.91 1181.43,1678.2 1188.69,1677.64 " />
<svg:polygon detid="486736710" count="1" value="72" id="2402008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736710 " fill="rgb(255,113,0)" points="1168.31,1676.41 1172.13,1680.25 1178.9,1678.6 " />
<svg:polygon detid="486769734" count="1" value="72" id="2402009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769734 " fill="rgb(255,113,0)" points="1158.67,1680.52 1164.05,1683.64 1169.86,1681.02 " />
<svg:polygon detid="486769738" count="1" value="72" id="2402010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769738 " fill="rgb(255,113,0)" points="1151.17,1685.95 1157.73,1688.15 1162.2,1684.73 " />
<svg:polygon detid="486736966" count="1" value="72" id="2402011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486736966 " fill="rgb(255,113,0)" points="1146.31,1692.34 1153.62,1693.47 1156.43,1689.49 " />
<svg:polygon detid="486769990" count="1" value="72" id="2402012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486769990 " fill="rgb(255,113,0)" points="1144.43,1699.25 1151.99,1699.23 1152.94,1694.96 " />
<svg:polygon detid="486769994" count="1" value="72" id="2402013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486769994 " fill="rgb(255,113,0)" points="1145.65,1706.22 1152.94,1705.04 1151.99,1700.77 " />
<svg:polygon detid="486737222" count="1" value="72" id="2402014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737222 " fill="rgb(255,113,0)" points="1149.9,1712.76 1156.43,1710.51 1153.62,1706.53 " />
<svg:polygon detid="486770246" count="1" value="72" id="2402015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770246 " fill="rgb(255,113,0)" points="1156.88,1718.43 1162.2,1715.27 1157.73,1711.85 " />
<svg:polygon detid="486770250" count="1" value="72" id="2402016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770250 " fill="rgb(255,113,0)" points="1166.12,1722.84 1169.86,1718.98 1164.05,1716.36 " />
<svg:polygon detid="486737478" count="1" value="72" id="2402017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737478 " fill="rgb(255,113,0)" points="1176.98,1725.7 1178.9,1721.4 1172.13,1719.75 " />
<svg:polygon detid="486770502" count="1" value="72" id="2402018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770502 " fill="rgb(255,113,0)" points="1188.73,1726.81 1188.69,1722.36 1181.43,1721.8 " />
<svg:polygon detid="486770506" count="1" value="72" id="2402019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770506 " fill="rgb(255,113,0)" points="1200.57,1726.09 1198.57,1721.8 1191.31,1722.36 " />
<svg:polygon detid="486737734" count="1" value="72" id="2402020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737734 " fill="rgb(255,113,0)" points="1211.69,1723.59 1207.87,1719.75 1201.1,1721.4 " />
<svg:polygon detid="486770758" count="1" value="72" id="2402021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770758 " fill="rgb(255,113,0)" points="1221.33,1719.48 1215.95,1716.36 1210.14,1718.98 " />
<svg:polygon detid="486770762" count="1" value="72" id="2402022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770762 " fill="rgb(255,113,0)" points="1228.83,1714.05 1222.27,1711.85 1217.8,1715.27 " />
<svg:polygon detid="486737990" count="1" value="72" id="2402023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486737990 " fill="rgb(255,113,0)" points="1233.69,1707.66 1226.38,1706.53 1223.57,1710.51 " />
<svg:polygon detid="486768966" count="1" value="72" id="2402024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486768966 " fill="rgb(255,113,0)" points="1235.57,1700.75 1228.01,1700.77 1227.06,1705.04 " />
<svg:polygon detid="486768969" count="1" value="72" id="2402101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward   stereo Id 486768969 " fill="rgb(255,113,0)" points="1228.01,1699.23 1235.57,1699.25 1234.35,1693.78 " />
<svg:polygon detid="486736197" count="1" value="72" id="2402102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward   stereo Id 486736197 " fill="rgb(255,113,0)" points="1226.38,1693.47 1233.69,1692.34 1230.1,1687.24 " />
<svg:polygon detid="486769221" count="1" value="72" id="2402103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward   stereo Id 486769221 " fill="rgb(255,113,0)" points="1222.27,1688.15 1228.83,1685.95 1223.12,1681.57 " />
<svg:polygon detid="486769225" count="1" value="72" id="2402104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward   stereo Id 486769225 " fill="rgb(255,113,0)" points="1215.95,1683.64 1221.33,1680.52 1213.88,1677.16 " />
<svg:polygon detid="486736453" count="1" value="72" id="2402105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward   stereo Id 486736453 " fill="rgb(255,113,0)" points="1207.87,1680.25 1211.69,1676.41 1203.02,1674.3 " />
<svg:polygon detid="486769477" count="1" value="72" id="2402106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward   stereo Id 486769477 " fill="rgb(255,113,0)" points="1198.57,1678.2 1200.57,1673.91 1191.27,1673.19 " />
<svg:polygon detid="486769481" count="1" value="72" id="2402107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward   stereo Id 486769481 " fill="rgb(255,113,0)" points="1188.69,1677.64 1188.73,1673.19 1179.43,1673.91 " />
<svg:polygon detid="486736709" count="1" value="72" id="2402108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward   stereo Id 486736709 " fill="rgb(255,113,0)" points="1178.9,1678.6 1176.98,1674.3 1168.31,1676.41 " />
<svg:polygon detid="486769733" count="1" value="72" id="2402109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward   stereo Id 486769733 " fill="rgb(255,113,0)" points="1169.86,1681.02 1166.12,1677.16 1158.67,1680.52 " />
<svg:polygon detid="486769737" count="1" value="72" id="2402110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward   stereo Id 486769737 " fill="rgb(255,113,0)" points="1162.2,1684.73 1156.88,1681.57 1151.17,1685.95 " />
<svg:polygon detid="486736965" count="1" value="72" id="2402111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward   stereo Id 486736965 " fill="rgb(255,113,0)" points="1156.43,1689.49 1149.9,1687.24 1146.31,1692.34 " />
<svg:polygon detid="486769989" count="1" value="72" id="2402112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward   stereo Id 486769989 " fill="rgb(255,113,0)" points="1152.94,1694.96 1145.65,1693.78 1144.43,1699.25 " />
<svg:polygon detid="486769993" count="1" value="72" id="2402113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward   stereo Id 486769993 " fill="rgb(255,113,0)" points="1151.99,1700.77 1144.43,1700.75 1145.65,1706.22 " />
<svg:polygon detid="486737221" count="1" value="72" id="2402114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward   stereo Id 486737221 " fill="rgb(255,113,0)" points="1153.62,1706.53 1146.31,1707.66 1149.9,1712.76 " />
<svg:polygon detid="486770245" count="1" value="72" id="2402115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward   stereo Id 486770245 " fill="rgb(255,113,0)" points="1157.73,1711.85 1151.17,1714.05 1156.88,1718.43 " />
<svg:polygon detid="486770249" count="1" value="72" id="2402116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward   stereo Id 486770249 " fill="rgb(255,113,0)" points="1164.05,1716.36 1158.67,1719.48 1166.12,1722.84 " />
<svg:polygon detid="486737477" count="1" value="72" id="2402117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward   stereo Id 486737477 " fill="rgb(255,113,0)" points="1172.13,1719.75 1168.31,1723.59 1176.98,1725.7 " />
<svg:polygon detid="486770501" count="1" value="72" id="2402118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward   stereo Id 486770501 " fill="rgb(255,113,0)" points="1181.43,1721.8 1179.43,1726.09 1188.73,1726.81 " />
<svg:polygon detid="486770505" count="1" value="72" id="2402119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward   stereo Id 486770505 " fill="rgb(255,113,0)" points="1191.31,1722.36 1191.27,1726.81 1200.57,1726.09 " />
<svg:polygon detid="486737733" count="1" value="72" id="2402120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward   stereo Id 486737733 " fill="rgb(255,113,0)" points="1201.1,1721.4 1203.02,1725.7 1211.69,1723.59 " />
<svg:polygon detid="486770757" count="1" value="72" id="2402121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward   stereo Id 486770757 " fill="rgb(255,113,0)" points="1210.14,1718.98 1213.88,1722.84 1221.33,1719.48 " />
<svg:polygon detid="486770761" count="1" value="72" id="2402122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward   stereo Id 486770761 " fill="rgb(255,113,0)" points="1217.8,1715.27 1223.12,1718.43 1228.83,1714.05 " />
<svg:polygon detid="486737989" count="1" value="72" id="2402123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward   stereo Id 486737989 " fill="rgb(255,113,0)" points="1223.57,1710.51 1230.1,1712.76 1233.69,1707.66 " />
<svg:polygon detid="486768965" count="1" value="72" id="2402124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward   stereo Id 486768965 " fill="rgb(255,113,0)" points="1227.06,1705.04 1234.35,1706.22 1235.57,1700.75 " />
<svg:polygon detid="486768996" count="1" value="72" id="2403001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486768996 " fill="rgb(255,113,0)" points="1236.01,1701.57 1245.41,1702.03 1245.41,1697.97 1236.01,1698.43 " />
<svg:polygon detid="486769000" count="1" value="72" id="2403002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486769000 " fill="rgb(255,113,0)" points="1235.86,1697.32 1245.27,1696.91 1244.19,1692.9 1235.02,1694.21 " />
<svg:polygon detid="486736228" count="1" value="72" id="2403003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736228 " fill="rgb(255,113,0)" points="1234.58,1693.13 1243.76,1691.86 1241.63,1688 1232.93,1690.14 " />
<svg:polygon detid="486736232" count="1" value="72" id="2403004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  2 forward    Id 486736232 " fill="rgb(255,113,0)" points="1232.21,1689.12 1240.94,1687.01 1237.8,1683.39 1229.78,1686.31 " />
<svg:polygon detid="486769252" count="1" value="72" id="2403005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769252 " fill="rgb(255,113,0)" points="1228.8,1685.37 1236.86,1682.48 1232.8,1679.2 1225.65,1682.82 " />
<svg:polygon detid="486769256" count="1" value="72" id="2403006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769256 " fill="rgb(255,113,0)" points="1224.43,1681.98 1231.62,1678.39 1226.74,1675.52 1220.64,1679.75 " />
<svg:polygon detid="486769260" count="1" value="72" id="2403007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  3 forward    Id 486769260 " fill="rgb(255,113,0)" points="1219.21,1679.03 1225.36,1674.82 1219.78,1672.44 1214.88,1677.18 " />
<svg:polygon detid="486736484" count="1" value="72" id="2403008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736484 " fill="rgb(255,113,0)" points="1213.27,1676.6 1218.23,1671.88 1212.08,1670.04 1208.5,1675.17 " />
<svg:polygon detid="486736488" count="1" value="72" id="2403009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  2 forward    Id 486736488 " fill="rgb(255,113,0)" points="1206.76,1674.75 1210.4,1669.63 1203.84,1668.37 1201.67,1673.77 " />
<svg:polygon detid="486769508" count="1" value="72" id="2403010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769508 " fill="rgb(255,113,0)" points="1199.84,1673.52 1202.08,1668.13 1195.26,1667.49 1194.55,1673.02 " />
<svg:polygon detid="486769512" count="1" value="72" id="2403011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769512 " fill="rgb(255,113,0)" points="1192.68,1672.94 1193.45,1667.41 1186.55,1667.41 1187.32,1672.94 " />
<svg:polygon detid="486769516" count="1" value="72" id="2403012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  3 forward    Id 486769516 " fill="rgb(255,113,0)" points="1185.45,1673.02 1184.74,1667.49 1177.92,1668.13 1180.16,1673.52 " />
<svg:polygon detid="486736740" count="1" value="72" id="2403013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736740 " fill="rgb(255,113,0)" points="1178.33,1673.77 1176.16,1668.37 1169.6,1669.63 1173.24,1674.75 " />
<svg:polygon detid="486736744" count="1" value="72" id="2403014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  2 forward    Id 486736744 " fill="rgb(255,113,0)" points="1171.5,1675.17 1167.92,1670.04 1161.77,1671.88 1166.73,1676.6 " />
<svg:polygon detid="486769764" count="1" value="72" id="2403015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769764 " fill="rgb(255,113,0)" points="1165.12,1677.18 1160.22,1672.44 1154.64,1674.82 1160.79,1679.03 " />
<svg:polygon detid="486769768" count="1" value="72" id="2403016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769768 " fill="rgb(255,113,0)" points="1159.36,1679.75 1153.26,1675.52 1148.38,1678.39 1155.57,1681.98 " />
<svg:polygon detid="486769772" count="1" value="72" id="2403017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  3 forward    Id 486769772 " fill="rgb(255,113,0)" points="1154.35,1682.82 1147.2,1679.2 1143.14,1682.48 1151.2,1685.37 " />
<svg:polygon detid="486736996" count="1" value="72" id="2403018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486736996 " fill="rgb(255,113,0)" points="1150.22,1686.31 1142.2,1683.39 1139.06,1687.01 1147.79,1689.12 " />
<svg:polygon detid="486737000" count="1" value="72" id="2403019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  2 forward    Id 486737000 " fill="rgb(255,113,0)" points="1147.07,1690.14 1138.37,1688 1136.24,1691.86 1145.42,1693.13 " />
<svg:polygon detid="486770020" count="1" value="72" id="2403020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486770020 " fill="rgb(255,113,0)" points="1144.98,1694.21 1135.81,1692.9 1134.73,1696.91 1144.14,1697.32 " />
<svg:polygon detid="486770024" count="1" value="72" id="2403021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486770024 " fill="rgb(255,113,0)" points="1143.99,1698.43 1134.59,1697.97 1134.59,1702.03 1143.99,1701.57 " />
<svg:polygon detid="486770028" count="1" value="72" id="2403022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  3 forward    Id 486770028 " fill="rgb(255,113,0)" points="1144.14,1702.68 1134.73,1703.09 1135.81,1707.1 1144.98,1705.79 " />
<svg:polygon detid="486737252" count="1" value="72" id="2403023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737252 " fill="rgb(255,113,0)" points="1145.42,1706.87 1136.24,1708.14 1138.37,1712 1147.07,1709.86 " />
<svg:polygon detid="486737256" count="1" value="72" id="2403024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  2 forward    Id 486737256 " fill="rgb(255,113,0)" points="1147.79,1710.88 1139.06,1712.99 1142.2,1716.61 1150.22,1713.69 " />
<svg:polygon detid="486770276" count="1" value="72" id="2403025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770276 " fill="rgb(255,113,0)" points="1151.2,1714.63 1143.14,1717.52 1147.2,1720.8 1154.35,1717.18 " />
<svg:polygon detid="486770280" count="1" value="72" id="2403026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770280 " fill="rgb(255,113,0)" points="1155.57,1718.02 1148.38,1721.61 1153.26,1724.48 1159.36,1720.25 " />
<svg:polygon detid="486770284" count="1" value="72" id="2403027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  3 forward    Id 486770284 " fill="rgb(255,113,0)" points="1160.79,1720.97 1154.64,1725.18 1160.22,1727.56 1165.12,1722.82 " />
<svg:polygon detid="486737508" count="1" value="72" id="2403028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737508 " fill="rgb(255,113,0)" points="1166.73,1723.4 1161.77,1728.12 1167.92,1729.96 1171.5,1724.83 " />
<svg:polygon detid="486737512" count="1" value="72" id="2403029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  2 forward    Id 486737512 " fill="rgb(255,113,0)" points="1173.24,1725.25 1169.6,1730.37 1176.16,1731.63 1178.33,1726.23 " />
<svg:polygon detid="486770532" count="1" value="72" id="2403030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770532 " fill="rgb(255,113,0)" points="1180.16,1726.48 1177.92,1731.87 1184.74,1732.51 1185.45,1726.98 " />
<svg:polygon detid="486770536" count="1" value="72" id="2403031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770536 " fill="rgb(255,113,0)" points="1187.32,1727.06 1186.55,1732.59 1193.45,1732.59 1192.68,1727.06 " />
<svg:polygon detid="486770540" count="1" value="72" id="2403032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  3 forward    Id 486770540 " fill="rgb(255,113,0)" points="1194.55,1726.98 1195.26,1732.51 1202.08,1731.87 1199.84,1726.48 " />
<svg:polygon detid="486737764" count="1" value="72" id="2403033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737764 " fill="rgb(255,113,0)" points="1201.67,1726.23 1203.84,1731.63 1210.4,1730.37 1206.76,1725.25 " />
<svg:polygon detid="486737768" count="1" value="72" id="2403034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  2 forward    Id 486737768 " fill="rgb(255,113,0)" points="1208.5,1724.83 1212.08,1729.96 1218.23,1728.12 1213.27,1723.4 " />
<svg:polygon detid="486770788" count="1" value="72" id="2403035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770788 " fill="rgb(255,113,0)" points="1214.88,1722.82 1219.78,1727.56 1225.36,1725.18 1219.21,1720.97 " />
<svg:polygon detid="486770792" count="1" value="72" id="2403036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770792 " fill="rgb(255,113,0)" points="1220.64,1720.25 1226.74,1724.48 1231.62,1721.61 1224.43,1718.02 " />
<svg:polygon detid="486770796" count="1" value="72" id="2403037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  3 forward    Id 486770796 " fill="rgb(255,113,0)" points="1225.65,1717.18 1232.8,1720.8 1236.86,1717.52 1228.8,1714.63 " />
<svg:polygon detid="486738020" count="1" value="72" id="2403038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486738020 " fill="rgb(255,113,0)" points="1229.78,1713.69 1237.8,1716.61 1240.94,1712.99 1232.21,1710.88 " />
<svg:polygon detid="486738024" count="1" value="72" id="2403039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  2 forward    Id 486738024 " fill="rgb(255,113,0)" points="1232.93,1709.86 1241.63,1712 1243.76,1708.14 1234.58,1706.87 " />
<svg:polygon detid="486769004" count="1" value="72" id="2403040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  3 forward    Id 486769004 " fill="rgb(255,113,0)" points="1235.02,1705.79 1244.19,1707.1 1245.27,1703.09 1235.86,1702.68 " />
<svg:polygon detid="486769032" count="1" value="72" id="2404001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486769032 " fill="rgb(255,113,0)" points="1248.82,1699.51 1258.62,1699.52 1258.28,1695.96 1248.55,1696.62 " />
<svg:polygon detid="486769036" count="1" value="72" id="2404002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  3 forward    Id 486769036 " fill="rgb(255,113,0)" points="1248.36,1695.64 1258.1,1695 1257.08,1691.48 1247.53,1692.78 " />
<svg:polygon detid="486736260" count="1" value="72" id="2404003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736260 " fill="rgb(255,113,0)" points="1247.16,1691.82 1256.72,1690.55 1255.04,1687.12 1245.8,1689.04 " />
<svg:polygon detid="486736264" count="1" value="72" id="2404004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  2 forward    Id 486736264 " fill="rgb(255,113,0)" points="1245.24,1688.11 1254.5,1686.22 1252.18,1682.92 1243.36,1685.43 " />
<svg:polygon detid="486736268" count="1" value="72" id="2404005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  3 forward    Id 486736268 " fill="rgb(255,113,0)" points="1242.63,1684.54 1251.47,1682.05 1248.54,1678.93 1240.25,1682.01 " />
<svg:polygon detid="486769284" count="1" value="72" id="2404006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769284 " fill="rgb(255,113,0)" points="1239.36,1681.17 1247.67,1678.12 1244.16,1675.21 1236.51,1678.81 " />
<svg:polygon detid="486769288" count="1" value="72" id="2404007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769288 " fill="rgb(255,113,0)" points="1235.47,1678.04 1243.14,1674.46 1239.1,1671.8 1232.19,1675.88 " />
<svg:polygon detid="486769292" count="1" value="72" id="2404008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  3 forward    Id 486769292 " fill="rgb(255,113,0)" points="1231,1675.18 1237.95,1671.12 1233.42,1668.74 1227.33,1673.26 " />
<svg:polygon detid="486769296" count="1" value="72" id="2404009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  0 backward    Id 486769296 " fill="rgb(255,113,0)" points="1226.02,1672.64 1232.15,1668.14 1227.2,1666.08 1222.01,1670.96 " />
<svg:polygon detid="486736516" count="1" value="72" id="2404010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736516 " fill="rgb(255,113,0)" points="1220.59,1670.44 1225.82,1665.57 1220.51,1663.84 1216.28,1669.04 " />
<svg:polygon detid="486736520" count="1" value="72" id="2404011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  2 forward    Id 486736520 " fill="rgb(255,113,0)" points="1214.77,1668.61 1219.04,1663.42 1213.43,1662.06 1210.22,1667.5 " />
<svg:polygon detid="486736524" count="1" value="72" id="2404012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  3 forward    Id 486736524 " fill="rgb(255,113,0)" points="1208.64,1667.18 1211.9,1661.74 1206.06,1660.75 1203.91,1666.38 " />
<svg:polygon detid="486769540" count="1" value="72" id="2404013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769540 " fill="rgb(255,113,0)" points="1202.27,1666.16 1204.48,1660.54 1198.49,1659.94 1197.42,1665.67 " />
<svg:polygon detid="486769544" count="1" value="72" id="2404014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769544 " fill="rgb(255,113,0)" points="1195.75,1665.56 1196.87,1659.83 1190.81,1659.63 1190.84,1665.4 " />
<svg:polygon detid="486769548" count="1" value="72" id="2404015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  3 forward    Id 486769548 " fill="rgb(255,113,0)" points="1189.16,1665.4 1189.19,1659.63 1183.13,1659.83 1184.25,1665.56 " />
<svg:polygon detid="486769552" count="1" value="72" id="2404016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  0 backward    Id 486769552 " fill="rgb(255,113,0)" points="1182.58,1665.67 1181.51,1659.94 1175.52,1660.54 1177.73,1666.16 " />
<svg:polygon detid="486736772" count="1" value="72" id="2404017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736772 " fill="rgb(255,113,0)" points="1176.09,1666.38 1173.94,1660.75 1168.1,1661.74 1171.36,1667.18 " />
<svg:polygon detid="486736776" count="1" value="72" id="2404018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  2 forward    Id 486736776 " fill="rgb(255,113,0)" points="1169.78,1667.5 1166.57,1662.06 1160.96,1663.42 1165.23,1668.61 " />
<svg:polygon detid="486736780" count="1" value="72" id="2404019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  3 forward    Id 486736780 " fill="rgb(255,113,0)" points="1163.72,1669.04 1159.49,1663.84 1154.18,1665.57 1159.41,1670.44 " />
<svg:polygon detid="486769796" count="1" value="72" id="2404020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769796 " fill="rgb(255,113,0)" points="1157.99,1670.96 1152.8,1666.08 1147.85,1668.14 1153.98,1672.64 " />
<svg:polygon detid="486769800" count="1" value="72" id="2404021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769800 " fill="rgb(255,113,0)" points="1152.67,1673.26 1146.58,1668.74 1142.05,1671.12 1149,1675.18 " />
<svg:polygon detid="486769804" count="1" value="72" id="2404022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  3 forward    Id 486769804 " fill="rgb(255,113,0)" points="1147.81,1675.88 1140.9,1671.8 1136.86,1674.46 1144.53,1678.04 " />
<svg:polygon detid="486769808" count="1" value="72" id="2404023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  0 backward    Id 486769808 " fill="rgb(255,113,0)" points="1143.49,1678.81 1135.84,1675.21 1132.33,1678.12 1140.64,1681.17 " />
<svg:polygon detid="486737028" count="1" value="72" id="2404024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486737028 " fill="rgb(255,113,0)" points="1139.75,1682.01 1131.46,1678.93 1128.53,1682.05 1137.37,1684.54 " />
<svg:polygon detid="486737032" count="1" value="72" id="2404025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  2 forward    Id 486737032 " fill="rgb(255,113,0)" points="1136.64,1685.43 1127.82,1682.92 1125.5,1686.22 1134.76,1688.11 " />
<svg:polygon detid="486737036" count="1" value="72" id="2404026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  3 forward    Id 486737036 " fill="rgb(255,113,0)" points="1134.2,1689.04 1124.96,1687.12 1123.28,1690.55 1132.84,1691.82 " />
<svg:polygon detid="486770052" count="1" value="72" id="2404027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486770052 " fill="rgb(255,113,0)" points="1132.47,1692.78 1122.92,1691.48 1121.9,1695 1131.64,1695.64 " />
<svg:polygon detid="486770056" count="1" value="72" id="2404028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486770056 " fill="rgb(255,113,0)" points="1131.45,1696.62 1121.72,1695.96 1121.38,1699.52 1131.18,1699.51 " />
<svg:polygon detid="486770060" count="1" value="72" id="2404029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  3 forward    Id 486770060 " fill="rgb(255,113,0)" points="1131.18,1700.49 1121.38,1700.48 1121.72,1704.04 1131.45,1703.38 " />
<svg:polygon detid="486770064" count="1" value="72" id="2404030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  0 backward    Id 486770064 " fill="rgb(255,113,0)" points="1131.64,1704.36 1121.9,1705 1122.92,1708.52 1132.47,1707.22 " />
<svg:polygon detid="486737284" count="1" value="72" id="2404031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737284 " fill="rgb(255,113,0)" points="1132.84,1708.18 1123.28,1709.45 1124.96,1712.88 1134.2,1710.96 " />
<svg:polygon detid="486737288" count="1" value="72" id="2404032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  2 forward    Id 486737288 " fill="rgb(255,113,0)" points="1134.76,1711.89 1125.5,1713.78 1127.82,1717.08 1136.64,1714.57 " />
<svg:polygon detid="486737292" count="1" value="72" id="2404033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  3 forward    Id 486737292 " fill="rgb(255,113,0)" points="1137.37,1715.46 1128.53,1717.95 1131.46,1721.07 1139.75,1717.99 " />
<svg:polygon detid="486770308" count="1" value="72" id="2404034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770308 " fill="rgb(255,113,0)" points="1140.64,1718.83 1132.33,1721.88 1135.84,1724.79 1143.49,1721.19 " />
<svg:polygon detid="486770312" count="1" value="72" id="2404035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770312 " fill="rgb(255,113,0)" points="1144.53,1721.96 1136.86,1725.54 1140.9,1728.2 1147.81,1724.12 " />
<svg:polygon detid="486770316" count="1" value="72" id="2404036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  3 forward    Id 486770316 " fill="rgb(255,113,0)" points="1149,1724.82 1142.05,1728.88 1146.58,1731.26 1152.67,1726.74 " />
<svg:polygon detid="486770320" count="1" value="72" id="2404037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  0 backward    Id 486770320 " fill="rgb(255,113,0)" points="1153.98,1727.36 1147.85,1731.86 1152.8,1733.92 1157.99,1729.04 " />
<svg:polygon detid="486737540" count="1" value="72" id="2404038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737540 " fill="rgb(255,113,0)" points="1159.41,1729.56 1154.18,1734.43 1159.49,1736.16 1163.72,1730.96 " />
<svg:polygon detid="486737544" count="1" value="72" id="2404039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  2 forward    Id 486737544 " fill="rgb(255,113,0)" points="1165.23,1731.39 1160.96,1736.58 1166.57,1737.94 1169.78,1732.5 " />
<svg:polygon detid="486737548" count="1" value="72" id="2404040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  3 forward    Id 486737548 " fill="rgb(255,113,0)" points="1171.36,1732.82 1168.1,1738.26 1173.94,1739.25 1176.09,1733.62 " />
<svg:polygon detid="486770564" count="1" value="72" id="2404041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770564 " fill="rgb(255,113,0)" points="1177.73,1733.84 1175.52,1739.46 1181.51,1740.06 1182.58,1734.33 " />
<svg:polygon detid="486770568" count="1" value="72" id="2404042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770568 " fill="rgb(255,113,0)" points="1184.25,1734.44 1183.13,1740.17 1189.19,1740.37 1189.16,1734.6 " />
<svg:polygon detid="486770572" count="1" value="72" id="2404043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  3 forward    Id 486770572 " fill="rgb(255,113,0)" points="1190.84,1734.6 1190.81,1740.37 1196.87,1740.17 1195.75,1734.44 " />
<svg:polygon detid="486770576" count="1" value="72" id="2404044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  0 backward    Id 486770576 " fill="rgb(255,113,0)" points="1197.42,1734.33 1198.49,1740.06 1204.48,1739.46 1202.27,1733.84 " />
<svg:polygon detid="486737796" count="1" value="72" id="2404045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737796 " fill="rgb(255,113,0)" points="1203.91,1733.62 1206.06,1739.25 1211.9,1738.26 1208.64,1732.82 " />
<svg:polygon detid="486737800" count="1" value="72" id="2404046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  2 forward    Id 486737800 " fill="rgb(255,113,0)" points="1210.22,1732.5 1213.43,1737.94 1219.04,1736.58 1214.77,1731.39 " />
<svg:polygon detid="486737804" count="1" value="72" id="2404047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  3 forward    Id 486737804 " fill="rgb(255,113,0)" points="1216.28,1730.96 1220.51,1736.16 1225.82,1734.43 1220.59,1729.56 " />
<svg:polygon detid="486770820" count="1" value="72" id="2404048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770820 " fill="rgb(255,113,0)" points="1222.01,1729.04 1227.2,1733.92 1232.15,1731.86 1226.02,1727.36 " />
<svg:polygon detid="486770824" count="1" value="72" id="2404049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770824 " fill="rgb(255,113,0)" points="1227.33,1726.74 1233.42,1731.26 1237.95,1728.88 1231,1724.82 " />
<svg:polygon detid="486770828" count="1" value="72" id="2404050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  3 forward    Id 486770828 " fill="rgb(255,113,0)" points="1232.19,1724.12 1239.1,1728.2 1243.14,1725.54 1235.47,1721.96 " />
<svg:polygon detid="486770832" count="1" value="72" id="2404051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  0 backward    Id 486770832 " fill="rgb(255,113,0)" points="1236.51,1721.19 1244.16,1724.79 1247.67,1721.88 1239.36,1718.83 " />
<svg:polygon detid="486738052" count="1" value="72" id="2404052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486738052 " fill="rgb(255,113,0)" points="1240.25,1717.99 1248.54,1721.07 1251.47,1717.95 1242.63,1715.46 " />
<svg:polygon detid="486738056" count="1" value="72" id="2404053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  2 forward    Id 486738056 " fill="rgb(255,113,0)" points="1243.36,1714.57 1252.18,1717.08 1254.5,1713.78 1245.24,1711.89 " />
<svg:polygon detid="486738060" count="1" value="72" id="2404054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  3 forward    Id 486738060 " fill="rgb(255,113,0)" points="1245.8,1710.96 1255.04,1712.88 1256.72,1709.45 1247.16,1708.18 " />
<svg:polygon detid="486769040" count="1" value="72" id="2404055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  0 backward    Id 486769040 " fill="rgb(255,113,0)" points="1247.53,1707.22 1257.08,1708.52 1258.1,1705 1248.36,1704.36 " />
<svg:polygon detid="486769028" count="1" value="72" id="2404056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486769028 " fill="rgb(255,113,0)" points="1248.55,1703.38 1258.28,1704.04 1258.62,1700.48 1248.82,1700.49 " />
<svg:polygon detid="486769066" count="1" value="72" id="2405001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486769066 " fill="rgb(255,113,0)" points="1272.31,1693.17 1259.92,1694.35 1260.56,1699.15 " />
<svg:polygon detid="486736294" count="1" value="72" id="2405002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736294 " fill="rgb(255,113,0)" points="1269.48,1685.68 1257.56,1687.98 1259.47,1692.67 " />
<svg:polygon detid="486736298" count="1" value="72" id="2405003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  2 forward    Id 486736298 " fill="rgb(255,113,0)" points="1264.7,1678.54 1253.53,1681.92 1256.66,1686.36 " />
<svg:polygon detid="486736302" count="1" value="72" id="2405004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  3 forward    Id 486736302 " fill="rgb(255,113,0)" points="1258.07,1671.93 1247.94,1676.29 1252.21,1680.4 " />
<svg:polygon detid="486769318" count="1" value="72" id="2405005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769318 " fill="rgb(255,113,0)" points="1249.77,1666.02 1240.92,1671.25 1246.23,1674.91 " />
<svg:polygon detid="486769322" count="1" value="72" id="2405006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769322 " fill="rgb(255,113,0)" points="1240,1660.93 1232.65,1666.92 1238.87,1670.05 " />
<svg:polygon detid="486736550" count="1" value="72" id="2405007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736550 " fill="rgb(255,113,0)" points="1228.99,1656.81 1223.32,1663.4 1230.3,1665.92 " />
<svg:polygon detid="486736554" count="1" value="72" id="2405008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  2 forward    Id 486736554 " fill="rgb(255,113,0)" points="1217.03,1653.76 1213.18,1660.79 1220.74,1662.63 " />
<svg:polygon detid="486736558" count="1" value="72" id="2405009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  3 forward    Id 486736558 " fill="rgb(255,113,0)" points="1204.4,1651.84 1202.47,1659.14 1210.43,1660.26 " />
<svg:polygon detid="486769574" count="1" value="72" id="2405010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769574 " fill="rgb(255,113,0)" points="1191.41,1651.11 1191.45,1658.49 1199.61,1658.87 " />
<svg:polygon detid="486769578" count="1" value="72" id="2405011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769578 " fill="rgb(255,113,0)" points="1178.39,1651.58 1180.39,1658.87 1188.55,1658.49 " />
<svg:polygon detid="486736806" count="1" value="72" id="2405012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736806 " fill="rgb(255,113,0)" points="1165.66,1653.24 1169.57,1660.26 1177.53,1659.14 " />
<svg:polygon detid="486736810" count="1" value="72" id="2405013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  2 forward    Id 486736810 " fill="rgb(255,113,0)" points="1153.53,1656.06 1159.26,1662.63 1166.82,1660.79 " />
<svg:polygon detid="486736814" count="1" value="72" id="2405014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  3 forward    Id 486736814 " fill="rgb(255,113,0)" points="1142.29,1659.96 1149.7,1665.92 1156.68,1663.4 " />
<svg:polygon detid="486769830" count="1" value="72" id="2405015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769830 " fill="rgb(255,113,0)" points="1132.23,1664.84 1141.13,1670.05 1147.35,1666.92 " />
<svg:polygon detid="486769834" count="1" value="72" id="2405016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769834 " fill="rgb(255,113,0)" points="1123.59,1670.59 1133.77,1674.91 1139.08,1671.25 " />
<svg:polygon detid="486737062" count="1" value="72" id="2405017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486737062 " fill="rgb(255,113,0)" points="1116.59,1677.06 1127.79,1680.4 1132.06,1676.29 " />
<svg:polygon detid="486737066" count="1" value="72" id="2405018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  2 forward    Id 486737066 " fill="rgb(255,113,0)" points="1111.39,1684.1 1123.34,1686.36 1126.47,1681.92 " />
<svg:polygon detid="486737070" count="1" value="72" id="2405019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  3 forward    Id 486737070 " fill="rgb(255,113,0)" points="1108.13,1691.53 1120.53,1692.67 1122.44,1687.98 " />
<svg:polygon detid="486770086" count="1" value="72" id="2405020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486770086 " fill="rgb(255,113,0)" points="1106.88,1699.17 1119.44,1699.15 1120.08,1694.35 " />
<svg:polygon detid="486770090" count="1" value="72" id="2405021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486770090 " fill="rgb(255,113,0)" points="1107.69,1706.83 1120.08,1705.65 1119.44,1700.85 " />
<svg:polygon detid="486737318" count="1" value="72" id="2405022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737318 " fill="rgb(255,113,0)" points="1110.52,1714.32 1122.44,1712.02 1120.53,1707.33 " />
<svg:polygon detid="486737322" count="1" value="72" id="2405023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  2 forward    Id 486737322 " fill="rgb(255,113,0)" points="1115.3,1721.46 1126.47,1718.08 1123.34,1713.64 " />
<svg:polygon detid="486737326" count="1" value="72" id="2405024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  3 forward    Id 486737326 " fill="rgb(255,113,0)" points="1121.93,1728.07 1132.06,1723.71 1127.79,1719.6 " />
<svg:polygon detid="486770342" count="1" value="72" id="2405025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770342 " fill="rgb(255,113,0)" points="1130.23,1733.98 1139.08,1728.75 1133.77,1725.09 " />
<svg:polygon detid="486770346" count="1" value="72" id="2405026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770346 " fill="rgb(255,113,0)" points="1140,1739.07 1147.35,1733.08 1141.13,1729.95 " />
<svg:polygon detid="486737574" count="1" value="72" id="2405027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737574 " fill="rgb(255,113,0)" points="1151.01,1743.19 1156.68,1736.6 1149.7,1734.08 " />
<svg:polygon detid="486737578" count="1" value="72" id="2405028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  2 forward    Id 486737578 " fill="rgb(255,113,0)" points="1162.97,1746.24 1166.82,1739.21 1159.26,1737.37 " />
<svg:polygon detid="486737582" count="1" value="72" id="2405029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  3 forward    Id 486737582 " fill="rgb(255,113,0)" points="1175.6,1748.16 1177.53,1740.86 1169.57,1739.74 " />
<svg:polygon detid="486770598" count="1" value="72" id="2405030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770598 " fill="rgb(255,113,0)" points="1188.59,1748.89 1188.55,1741.51 1180.39,1741.13 " />
<svg:polygon detid="486770602" count="1" value="72" id="2405031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770602 " fill="rgb(255,113,0)" points="1201.61,1748.42 1199.61,1741.13 1191.45,1741.51 " />
<svg:polygon detid="486737830" count="1" value="72" id="2405032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737830 " fill="rgb(255,113,0)" points="1214.34,1746.76 1210.43,1739.74 1202.47,1740.86 " />
<svg:polygon detid="486737834" count="1" value="72" id="2405033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  2 forward    Id 486737834 " fill="rgb(255,113,0)" points="1226.47,1743.94 1220.74,1737.37 1213.18,1739.21 " />
<svg:polygon detid="486737838" count="1" value="72" id="2405034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  3 forward    Id 486737838 " fill="rgb(255,113,0)" points="1237.71,1740.04 1230.3,1734.08 1223.32,1736.6 " />
<svg:polygon detid="486770854" count="1" value="72" id="2405035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770854 " fill="rgb(255,113,0)" points="1247.77,1735.16 1238.87,1729.95 1232.65,1733.08 " />
<svg:polygon detid="486770858" count="1" value="72" id="2405036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770858 " fill="rgb(255,113,0)" points="1256.41,1729.41 1246.23,1725.09 1240.92,1728.75 " />
<svg:polygon detid="486738086" count="1" value="72" id="2405037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486738086 " fill="rgb(255,113,0)" points="1263.41,1722.94 1252.21,1719.6 1247.94,1723.71 " />
<svg:polygon detid="486738090" count="1" value="72" id="2405038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  2 forward    Id 486738090 " fill="rgb(255,113,0)" points="1268.61,1715.9 1256.66,1713.64 1253.53,1718.08 " />
<svg:polygon detid="486738094" count="1" value="72" id="2405039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  3 forward    Id 486738094 " fill="rgb(255,113,0)" points="1271.87,1708.47 1259.47,1707.33 1257.56,1712.02 " />
<svg:polygon detid="486769062" count="1" value="72" id="2405040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486769062 " fill="rgb(255,113,0)" points="1273.12,1700.83 1260.56,1700.85 1259.92,1705.65 " />
<svg:polygon detid="486769065" count="1" value="72" id="2405101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward   stereo Id 486769065 " fill="rgb(255,113,0)" points="1260.56,1699.15 1273.12,1699.17 1272.31,1693.17 " />
<svg:polygon detid="486736293" count="1" value="72" id="2405102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward   stereo Id 486736293 " fill="rgb(255,113,0)" points="1259.47,1692.67 1271.87,1691.53 1269.48,1685.68 " />
<svg:polygon detid="486736297" count="1" value="72" id="2405103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  2 forward   stereo Id 486736297 " fill="rgb(255,113,0)" points="1256.66,1686.36 1268.61,1684.1 1264.7,1678.54 " />
<svg:polygon detid="486736301" count="1" value="72" id="2405104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  3 forward   stereo Id 486736301 " fill="rgb(255,113,0)" points="1252.21,1680.4 1263.41,1677.06 1258.07,1671.93 " />
<svg:polygon detid="486769317" count="1" value="72" id="2405105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward   stereo Id 486769317 " fill="rgb(255,113,0)" points="1246.23,1674.91 1256.41,1670.59 1249.77,1666.02 " />
<svg:polygon detid="486769321" count="1" value="72" id="2405106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward   stereo Id 486769321 " fill="rgb(255,113,0)" points="1238.87,1670.05 1247.77,1664.84 1240,1660.93 " />
<svg:polygon detid="486736549" count="1" value="72" id="2405107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward   stereo Id 486736549 " fill="rgb(255,113,0)" points="1230.3,1665.92 1237.71,1659.96 1228.99,1656.81 " />
<svg:polygon detid="486736553" count="1" value="72" id="2405108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  2 forward   stereo Id 486736553 " fill="rgb(255,113,0)" points="1220.74,1662.63 1226.47,1656.06 1217.03,1653.76 " />
<svg:polygon detid="486736557" count="1" value="72" id="2405109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  3 forward   stereo Id 486736557 " fill="rgb(255,113,0)" points="1210.43,1660.26 1214.34,1653.24 1204.4,1651.84 " />
<svg:polygon detid="486769573" count="1" value="72" id="2405110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward   stereo Id 486769573 " fill="rgb(255,113,0)" points="1199.61,1658.87 1201.61,1651.58 1191.41,1651.11 " />
<svg:polygon detid="486769577" count="1" value="72" id="2405111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward   stereo Id 486769577 " fill="rgb(255,113,0)" points="1188.55,1658.49 1188.59,1651.11 1178.39,1651.58 " />
<svg:polygon detid="486736805" count="1" value="72" id="2405112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward   stereo Id 486736805 " fill="rgb(255,113,0)" points="1177.53,1659.14 1175.6,1651.84 1165.66,1653.24 " />
<svg:polygon detid="486736809" count="1" value="72" id="2405113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  2 forward   stereo Id 486736809 " fill="rgb(255,113,0)" points="1166.82,1660.79 1162.97,1653.76 1153.53,1656.06 " />
<svg:polygon detid="486736813" count="1" value="72" id="2405114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  3 forward   stereo Id 486736813 " fill="rgb(255,113,0)" points="1156.68,1663.4 1151.01,1656.81 1142.29,1659.96 " />
<svg:polygon detid="486769829" count="1" value="72" id="2405115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward   stereo Id 486769829 " fill="rgb(255,113,0)" points="1147.35,1666.92 1140,1660.93 1132.23,1664.84 " />
<svg:polygon detid="486769833" count="1" value="72" id="2405116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward   stereo Id 486769833 " fill="rgb(255,113,0)" points="1139.08,1671.25 1130.23,1666.02 1123.59,1670.59 " />
<svg:polygon detid="486737061" count="1" value="72" id="2405117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward   stereo Id 486737061 " fill="rgb(255,113,0)" points="1132.06,1676.29 1121.93,1671.93 1116.59,1677.06 " />
<svg:polygon detid="486737065" count="1" value="72" id="2405118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  2 forward   stereo Id 486737065 " fill="rgb(255,113,0)" points="1126.47,1681.92 1115.3,1678.54 1111.39,1684.1 " />
<svg:polygon detid="486737069" count="1" value="72" id="2405119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  3 forward   stereo Id 486737069 " fill="rgb(255,113,0)" points="1122.44,1687.98 1110.52,1685.68 1108.13,1691.53 " />
<svg:polygon detid="486770085" count="1" value="72" id="2405120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward   stereo Id 486770085 " fill="rgb(255,113,0)" points="1120.08,1694.35 1107.69,1693.17 1106.88,1699.17 " />
<svg:polygon detid="486770089" count="1" value="72" id="2405121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward   stereo Id 486770089 " fill="rgb(255,113,0)" points="1119.44,1700.85 1106.88,1700.83 1107.69,1706.83 " />
<svg:polygon detid="486737317" count="1" value="72" id="2405122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward   stereo Id 486737317 " fill="rgb(255,113,0)" points="1120.53,1707.33 1108.13,1708.47 1110.52,1714.32 " />
<svg:polygon detid="486737321" count="1" value="72" id="2405123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  2 forward   stereo Id 486737321 " fill="rgb(255,113,0)" points="1123.34,1713.64 1111.39,1715.9 1115.3,1721.46 " />
<svg:polygon detid="486737325" count="1" value="72" id="2405124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  3 forward   stereo Id 486737325 " fill="rgb(255,113,0)" points="1127.79,1719.6 1116.59,1722.94 1121.93,1728.07 " />
<svg:polygon detid="486770341" count="1" value="72" id="2405125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward   stereo Id 486770341 " fill="rgb(255,113,0)" points="1133.77,1725.09 1123.59,1729.41 1130.23,1733.98 " />
<svg:polygon detid="486770345" count="1" value="72" id="2405126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward   stereo Id 486770345 " fill="rgb(255,113,0)" points="1141.13,1729.95 1132.23,1735.16 1140,1739.07 " />
<svg:polygon detid="486737573" count="1" value="72" id="2405127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward   stereo Id 486737573 " fill="rgb(255,113,0)" points="1149.7,1734.08 1142.29,1740.04 1151.01,1743.19 " />
<svg:polygon detid="486737577" count="1" value="72" id="2405128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  2 forward   stereo Id 486737577 " fill="rgb(255,113,0)" points="1159.26,1737.37 1153.53,1743.94 1162.97,1746.24 " />
<svg:polygon detid="486737581" count="1" value="72" id="2405129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  3 forward   stereo Id 486737581 " fill="rgb(255,113,0)" points="1169.57,1739.74 1165.66,1746.76 1175.6,1748.16 " />
<svg:polygon detid="486770597" count="1" value="72" id="2405130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward   stereo Id 486770597 " fill="rgb(255,113,0)" points="1180.39,1741.13 1178.39,1748.42 1188.59,1748.89 " />
<svg:polygon detid="486770601" count="1" value="72" id="2405131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward   stereo Id 486770601 " fill="rgb(255,113,0)" points="1191.45,1741.51 1191.41,1748.89 1201.61,1748.42 " />
<svg:polygon detid="486737829" count="1" value="72" id="2405132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward   stereo Id 486737829 " fill="rgb(255,113,0)" points="1202.47,1740.86 1204.4,1748.16 1214.34,1746.76 " />
<svg:polygon detid="486737833" count="1" value="72" id="2405133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  2 forward   stereo Id 486737833 " fill="rgb(255,113,0)" points="1213.18,1739.21 1217.03,1746.24 1226.47,1743.94 " />
<svg:polygon detid="486737837" count="1" value="72" id="2405134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  3 forward   stereo Id 486737837 " fill="rgb(255,113,0)" points="1223.32,1736.6 1228.99,1743.19 1237.71,1740.04 " />
<svg:polygon detid="486770853" count="1" value="72" id="2405135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward   stereo Id 486770853 " fill="rgb(255,113,0)" points="1232.65,1733.08 1240,1739.07 1247.77,1735.16 " />
<svg:polygon detid="486770857" count="1" value="72" id="2405136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward   stereo Id 486770857 " fill="rgb(255,113,0)" points="1240.92,1728.75 1249.77,1733.98 1256.41,1729.41 " />
<svg:polygon detid="486738085" count="1" value="72" id="2405137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward   stereo Id 486738085 " fill="rgb(255,113,0)" points="1247.94,1723.71 1258.07,1728.07 1263.41,1722.94 " />
<svg:polygon detid="486738089" count="1" value="72" id="2405138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  2 forward   stereo Id 486738089 " fill="rgb(255,113,0)" points="1253.53,1718.08 1264.7,1721.46 1268.61,1715.9 " />
<svg:polygon detid="486738093" count="1" value="72" id="2405139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  3 forward   stereo Id 486738093 " fill="rgb(255,113,0)" points="1257.56,1712.02 1269.48,1714.32 1271.87,1708.47 " />
<svg:polygon detid="486769061" count="1" value="72" id="2405140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward   stereo Id 486769061 " fill="rgb(255,113,0)" points="1259.92,1705.65 1272.31,1706.83 1273.12,1700.83 " />
<svg:polygon detid="486769092" count="1" value="72" id="2406001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486769092 " fill="rgb(255,113,0)" points="1275.05,1699.28 1290.71,1699.3 1290.21,1694.06 1274.65,1695.12 " />
<svg:polygon detid="486769100" count="1" value="72" id="2406002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  3 forward    Id 486769100 " fill="rgb(255,113,0)" points="1274.38,1693.68 1289.94,1692.67 1288.45,1687.5 1273.19,1689.57 " />
<svg:polygon detid="486736324" count="1" value="72" id="2406003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736324 " fill="rgb(255,113,0)" points="1272.64,1688.16 1287.92,1686.14 1285.45,1681.1 1270.68,1684.16 " />
<svg:polygon detid="486736328" count="1" value="72" id="2406004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  2 forward    Id 486736328 " fill="rgb(255,113,0)" points="1269.87,1682.8 1284.66,1679.77 1281.25,1674.93 1267.16,1678.94 " />
<svg:polygon detid="486736332" count="1" value="72" id="2406005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  3 forward    Id 486736332 " fill="rgb(255,113,0)" points="1266.09,1677.64 1280.22,1673.67 1275.9,1669.08 1262.66,1673.99 " />
<svg:polygon detid="486769348" count="1" value="72" id="2406006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769348 " fill="rgb(255,113,0)" points="1261.36,1672.77 1274.64,1667.89 1269.48,1663.61 1257.26,1669.37 " />
<svg:polygon detid="486769352" count="1" value="72" id="2406007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769352 " fill="rgb(255,113,0)" points="1255.73,1668.24 1267.99,1662.52 1262.05,1658.61 1251,1665.13 " />
<svg:polygon detid="486769356" count="1" value="72" id="2406008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  3 forward    Id 486769356 " fill="rgb(255,113,0)" points="1249.27,1664.11 1260.37,1657.62 1253.72,1654.12 1243.98,1661.34 " />
<svg:polygon detid="486769360" count="1" value="72" id="2406009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  0 backward    Id 486769360 " fill="rgb(255,113,0)" points="1242.07,1660.44 1251.86,1653.25 1244.59,1650.21 1236.29,1658.02 " />
<svg:polygon detid="486736580" count="1" value="72" id="2406010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736580 " fill="rgb(255,113,0)" points="1234.21,1657.26 1242.57,1649.47 1234.77,1646.93 1228.01,1655.24 " />
<svg:polygon detid="486736584" count="1" value="72" id="2406011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  2 forward    Id 486736584 " fill="rgb(255,113,0)" points="1225.8,1654.61 1232.62,1646.32 1224.38,1644.32 1219.25,1653.02 " />
<svg:polygon detid="486736588" count="1" value="72" id="2406012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  3 forward    Id 486736588 " fill="rgb(255,113,0)" points="1216.93,1652.54 1222.14,1643.85 1213.57,1642.4 1210.12,1651.39 " />
<svg:polygon detid="486769604" count="1" value="72" id="2406013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769604 " fill="rgb(255,113,0)" points="1207.73,1651.07 1211.25,1642.09 1202.46,1641.21 1200.74,1650.37 " />
<svg:polygon detid="486769608" count="1" value="72" id="2406014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769608 " fill="rgb(255,113,0)" points="1198.3,1650.21 1200.09,1641.06 1191.19,1640.76 1191.23,1649.97 " />
<svg:polygon detid="486769612" count="1" value="72" id="2406015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  3 forward    Id 486769612 " fill="rgb(255,113,0)" points="1188.77,1649.97 1188.81,1640.76 1179.91,1641.06 1181.7,1650.21 " />
<svg:polygon detid="486769616" count="1" value="72" id="2406016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  0 backward    Id 486769616 " fill="rgb(255,113,0)" points="1179.26,1650.37 1177.54,1641.21 1168.75,1642.09 1172.27,1651.07 " />
<svg:polygon detid="486736836" count="1" value="72" id="2406017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736836 " fill="rgb(255,113,0)" points="1169.88,1651.39 1166.43,1642.4 1157.86,1643.85 1163.07,1652.54 " />
<svg:polygon detid="486736840" count="1" value="72" id="2406018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  2 forward    Id 486736840 " fill="rgb(255,113,0)" points="1160.75,1653.02 1155.62,1644.32 1147.38,1646.32 1154.2,1654.61 " />
<svg:polygon detid="486736844" count="1" value="72" id="2406019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  3 forward    Id 486736844 " fill="rgb(255,113,0)" points="1151.99,1655.24 1145.23,1646.93 1137.43,1649.47 1145.79,1657.26 " />
<svg:polygon detid="486769860" count="1" value="72" id="2406020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769860 " fill="rgb(255,113,0)" points="1143.71,1658.02 1135.41,1650.21 1128.14,1653.25 1137.93,1660.44 " />
<svg:polygon detid="486769864" count="1" value="72" id="2406021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769864 " fill="rgb(255,113,0)" points="1136.02,1661.34 1126.28,1654.12 1119.63,1657.62 1130.73,1664.11 " />
<svg:polygon detid="486769868" count="1" value="72" id="2406022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  3 forward    Id 486769868 " fill="rgb(255,113,0)" points="1129,1665.13 1117.95,1658.61 1112.01,1662.52 1124.27,1668.24 " />
<svg:polygon detid="486769872" count="1" value="72" id="2406023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  0 backward    Id 486769872 " fill="rgb(255,113,0)" points="1122.74,1669.37 1110.52,1663.61 1105.36,1667.89 1118.64,1672.77 " />
<svg:polygon detid="486737092" count="1" value="72" id="2406024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486737092 " fill="rgb(255,113,0)" points="1117.34,1673.99 1104.1,1669.08 1099.78,1673.67 1113.91,1677.64 " />
<svg:polygon detid="486737096" count="1" value="72" id="2406025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  2 forward    Id 486737096 " fill="rgb(255,113,0)" points="1112.84,1678.94 1098.75,1674.93 1095.34,1679.77 1110.13,1682.8 " />
<svg:polygon detid="486737100" count="1" value="72" id="2406026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  3 forward    Id 486737100 " fill="rgb(255,113,0)" points="1109.32,1684.16 1094.55,1681.1 1092.08,1686.14 1107.36,1688.16 " />
<svg:polygon detid="486770116" count="1" value="72" id="2406027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486770116 " fill="rgb(255,113,0)" points="1106.81,1689.57 1091.55,1687.5 1090.06,1692.67 1105.62,1693.68 " />
<svg:polygon detid="486770120" count="1" value="72" id="2406028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486770120 " fill="rgb(255,113,0)" points="1105.35,1695.12 1089.79,1694.06 1089.29,1699.3 1104.95,1699.28 " />
<svg:polygon detid="486770124" count="1" value="72" id="2406029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  3 forward    Id 486770124 " fill="rgb(255,113,0)" points="1104.95,1700.72 1089.29,1700.7 1089.79,1705.94 1105.35,1704.88 " />
<svg:polygon detid="486770128" count="1" value="72" id="2406030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  0 backward    Id 486770128 " fill="rgb(255,113,0)" points="1105.62,1706.32 1090.06,1707.33 1091.55,1712.5 1106.81,1710.43 " />
<svg:polygon detid="486737348" count="1" value="72" id="2406031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737348 " fill="rgb(255,113,0)" points="1107.36,1711.84 1092.08,1713.86 1094.55,1718.9 1109.32,1715.84 " />
<svg:polygon detid="486737352" count="1" value="72" id="2406032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  2 forward    Id 486737352 " fill="rgb(255,113,0)" points="1110.13,1717.2 1095.34,1720.23 1098.75,1725.07 1112.84,1721.06 " />
<svg:polygon detid="486737356" count="1" value="72" id="2406033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  3 forward    Id 486737356 " fill="rgb(255,113,0)" points="1113.91,1722.36 1099.78,1726.33 1104.1,1730.92 1117.34,1726.01 " />
<svg:polygon detid="486770372" count="1" value="72" id="2406034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770372 " fill="rgb(255,113,0)" points="1118.64,1727.23 1105.36,1732.11 1110.52,1736.39 1122.74,1730.63 " />
<svg:polygon detid="486770376" count="1" value="72" id="2406035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770376 " fill="rgb(255,113,0)" points="1124.27,1731.76 1112.01,1737.48 1117.95,1741.39 1129,1734.87 " />
<svg:polygon detid="486770380" count="1" value="72" id="2406036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  3 forward    Id 486770380 " fill="rgb(255,113,0)" points="1130.73,1735.89 1119.63,1742.38 1126.28,1745.88 1136.02,1738.66 " />
<svg:polygon detid="486770384" count="1" value="72" id="2406037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  0 backward    Id 486770384 " fill="rgb(255,113,0)" points="1137.93,1739.56 1128.14,1746.75 1135.41,1749.79 1143.71,1741.98 " />
<svg:polygon detid="486737604" count="1" value="72" id="2406038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737604 " fill="rgb(255,113,0)" points="1145.79,1742.74 1137.43,1750.53 1145.23,1753.07 1151.99,1744.76 " />
<svg:polygon detid="486737608" count="1" value="72" id="2406039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  2 forward    Id 486737608 " fill="rgb(255,113,0)" points="1154.2,1745.39 1147.38,1753.68 1155.62,1755.68 1160.75,1746.98 " />
<svg:polygon detid="486737612" count="1" value="72" id="2406040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  3 forward    Id 486737612 " fill="rgb(255,113,0)" points="1163.07,1747.46 1157.86,1756.15 1166.43,1757.6 1169.88,1748.61 " />
<svg:polygon detid="486770628" count="1" value="72" id="2406041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770628 " fill="rgb(255,113,0)" points="1172.27,1748.93 1168.75,1757.91 1177.54,1758.79 1179.26,1749.63 " />
<svg:polygon detid="486770632" count="1" value="72" id="2406042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770632 " fill="rgb(255,113,0)" points="1181.7,1749.79 1179.91,1758.94 1188.81,1759.24 1188.77,1750.03 " />
<svg:polygon detid="486770636" count="1" value="72" id="2406043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  3 forward    Id 486770636 " fill="rgb(255,113,0)" points="1191.23,1750.03 1191.19,1759.24 1200.09,1758.94 1198.3,1749.79 " />
<svg:polygon detid="486770640" count="1" value="72" id="2406044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  0 backward    Id 486770640 " fill="rgb(255,113,0)" points="1200.74,1749.63 1202.46,1758.79 1211.25,1757.91 1207.73,1748.93 " />
<svg:polygon detid="486737860" count="1" value="72" id="2406045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737860 " fill="rgb(255,113,0)" points="1210.12,1748.61 1213.57,1757.6 1222.14,1756.15 1216.93,1747.46 " />
<svg:polygon detid="486737864" count="1" value="72" id="2406046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  2 forward    Id 486737864 " fill="rgb(255,113,0)" points="1219.25,1746.98 1224.38,1755.68 1232.62,1753.68 1225.8,1745.39 " />
<svg:polygon detid="486737868" count="1" value="72" id="2406047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  3 forward    Id 486737868 " fill="rgb(255,113,0)" points="1228.01,1744.76 1234.77,1753.07 1242.57,1750.53 1234.21,1742.74 " />
<svg:polygon detid="486770884" count="1" value="72" id="2406048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770884 " fill="rgb(255,113,0)" points="1236.29,1741.98 1244.59,1749.79 1251.86,1746.75 1242.07,1739.56 " />
<svg:polygon detid="486770888" count="1" value="72" id="2406049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770888 " fill="rgb(255,113,0)" points="1243.98,1738.66 1253.72,1745.88 1260.37,1742.38 1249.27,1735.89 " />
<svg:polygon detid="486770892" count="1" value="72" id="2406050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  3 forward    Id 486770892 " fill="rgb(255,113,0)" points="1251,1734.87 1262.05,1741.39 1267.99,1737.48 1255.73,1731.76 " />
<svg:polygon detid="486770896" count="1" value="72" id="2406051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  0 backward    Id 486770896 " fill="rgb(255,113,0)" points="1257.26,1730.63 1269.48,1736.39 1274.64,1732.11 1261.36,1727.23 " />
<svg:polygon detid="486738116" count="1" value="72" id="2406052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486738116 " fill="rgb(255,113,0)" points="1262.66,1726.01 1275.9,1730.92 1280.22,1726.33 1266.09,1722.36 " />
<svg:polygon detid="486738120" count="1" value="72" id="2406053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  2 forward    Id 486738120 " fill="rgb(255,113,0)" points="1267.16,1721.06 1281.25,1725.07 1284.66,1720.23 1269.87,1717.2 " />
<svg:polygon detid="486738124" count="1" value="72" id="2406054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  3 forward    Id 486738124 " fill="rgb(255,113,0)" points="1270.68,1715.84 1285.45,1718.9 1287.92,1713.86 1272.64,1711.84 " />
<svg:polygon detid="486769104" count="1" value="72" id="2406055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  0 backward    Id 486769104 " fill="rgb(255,113,0)" points="1273.19,1710.43 1288.45,1712.5 1289.94,1707.33 1274.38,1706.32 " />
<svg:polygon detid="486769096" count="1" value="72" id="2406056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486769096 " fill="rgb(255,113,0)" points="1274.65,1704.88 1290.21,1705.94 1290.71,1700.7 1275.05,1700.72 " />
<svg:polygon detid="486769124" count="1" value="72" id="2407001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 forward    Id 486769124 " fill="rgb(255,113,0)" points="1293.72,1701.79 1311.12,1702.21 1311.12,1697.79 1293.72,1698.21 " />
<svg:polygon detid="486769132" count="1" value="72" id="2407002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  3 forward    Id 486769132 " fill="rgb(255,113,0)" points="1293.64,1696.99 1311.04,1696.61 1310.46,1692.21 1293.17,1693.43 " />
<svg:polygon detid="486769136" count="1" value="72" id="2407003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  0 backward    Id 486769136 " fill="rgb(255,113,0)" points="1292.92,1692.22 1310.22,1691.03 1309.05,1686.68 1291.97,1688.69 " />
<svg:polygon detid="486736356" count="1" value="72" id="2407004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 forward    Id 486736356 " fill="rgb(255,113,0)" points="1291.57,1687.49 1308.65,1685.51 1306.9,1681.22 1290.15,1684.02 " />
<svg:polygon detid="486736360" count="1" value="72" id="2407005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  2 forward    Id 486736360 " fill="rgb(255,113,0)" points="1289.59,1682.85 1306.35,1680.08 1304.04,1675.89 1287.71,1679.45 " />
<svg:polygon detid="486736364" count="1" value="72" id="2407006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  3 forward    Id 486736364 " fill="rgb(255,113,0)" points="1286.99,1678.3 1303.34,1674.77 1300.47,1670.7 1284.67,1675 " />
<svg:polygon detid="486736368" count="1" value="72" id="2407007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  0 backward    Id 486736368 " fill="rgb(255,113,0)" points="1283.8,1673.89 1299.62,1669.62 1296.22,1665.69 1281.04,1670.71 " />
<svg:polygon detid="486736372" count="1" value="72" id="2407008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 forward  module  1 backward    Id 486736372 " fill="rgb(255,113,0)" points="1280.03,1669.64 1295.23,1664.65 1291.32,1660.89 1276.85,1666.6 " />
<svg:polygon detid="486769380" count="1" value="72" id="2407009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 forward    Id 486769380 " fill="rgb(255,113,0)" points="1275.7,1665.58 1290.19,1659.9 1285.79,1656.34 1272.13,1662.69 " />
<svg:polygon detid="486769384" count="1" value="72" id="2407010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  2 forward    Id 486769384 " fill="rgb(255,113,0)" points="1270.84,1661.73 1284.54,1655.4 1279.67,1652.05 1266.9,1659.02 " />
<svg:polygon detid="486769388" count="1" value="72" id="2407011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  3 forward    Id 486769388 " fill="rgb(255,113,0)" points="1265.49,1658.12 1278.3,1651.18 1273,1648.06 1261.19,1655.59 " />
<svg:polygon detid="486769392" count="1" value="72" id="2407012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  0 backward    Id 486769392 " fill="rgb(255,113,0)" points="1259.67,1654.77 1271.51,1647.25 1265.81,1644.39 1255.05,1652.44 " />
<svg:polygon detid="486769396" count="1" value="72" id="2407013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 backward  module  1 backward    Id 486769396 " fill="rgb(255,113,0)" points="1253.43,1651.69 1264.23,1643.65 1258.16,1641.06 1248.51,1649.59 " />
<svg:polygon detid="486736612" count="1" value="72" id="2407014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 forward    Id 486736612 " fill="rgb(255,113,0)" points="1246.79,1648.91 1256.48,1640.4 1250.09,1638.1 1241.6,1647.04 " />
<svg:polygon detid="486736616" count="1" value="72" id="2407015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  2 forward    Id 486736616 " fill="rgb(255,113,0)" points="1239.8,1646.45 1248.33,1637.52 1241.65,1635.52 1234.38,1644.83 " />
<svg:polygon detid="486736620" count="1" value="72" id="2407016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  3 forward    Id 486736620 " fill="rgb(255,113,0)" points="1232.5,1644.31 1239.81,1635.02 1232.89,1633.33 1226.89,1642.95 " />
<svg:polygon detid="486736624" count="1" value="72" id="2407017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  0 backward    Id 486736624 " fill="rgb(255,113,0)" points="1224.94,1642.52 1230.99,1632.92 1223.86,1631.56 1219.16,1641.42 " />
<svg:polygon detid="486736628" count="1" value="72" id="2407018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 2 forward  module  1 backward    Id 486736628 " fill="rgb(255,113,0)" points="1217.17,1641.09 1221.92,1631.23 1214.63,1630.21 1211.26,1640.25 " />
<svg:polygon detid="486769636" count="1" value="72" id="2407019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 forward    Id 486769636 " fill="rgb(255,113,0)" points="1209.23,1640.02 1212.65,1629.97 1205.25,1629.28 1203.22,1639.46 " />
<svg:polygon detid="486769640" count="1" value="72" id="2407020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  2 forward    Id 486769640 " fill="rgb(255,113,0)" points="1201.17,1639.31 1203.24,1629.14 1195.77,1628.8 1195.11,1639.03 " />
<svg:polygon detid="486769644" count="1" value="72" id="2407021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  3 forward    Id 486769644 " fill="rgb(255,113,0)" points="1193.04,1638.99 1193.75,1628.75 1186.25,1628.75 1186.96,1638.99 " />
<svg:polygon detid="486769648" count="1" value="72" id="2407022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  0 backward    Id 486769648 " fill="rgb(255,113,0)" points="1184.89,1639.03 1184.23,1628.8 1176.76,1629.14 1178.83,1639.31 " />
<svg:polygon detid="486769652" count="1" value="72" id="2407023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 backward  module  1 backward    Id 486769652 " fill="rgb(255,113,0)" points="1176.78,1639.46 1174.75,1629.28 1167.35,1629.97 1170.77,1640.02 " />
<svg:polygon detid="486736868" count="1" value="72" id="2407024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 forward    Id 486736868 " fill="rgb(255,113,0)" points="1168.74,1640.25 1165.37,1630.21 1158.08,1631.23 1162.83,1641.09 " />
<svg:polygon detid="486736872" count="1" value="72" id="2407025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  2 forward    Id 486736872 " fill="rgb(255,113,0)" points="1160.84,1641.42 1156.14,1631.56 1149.01,1632.92 1155.06,1642.52 " />
<svg:polygon detid="486736876" count="1" value="72" id="2407026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  3 forward    Id 486736876 " fill="rgb(255,113,0)" points="1153.11,1642.95 1147.11,1633.33 1140.19,1635.02 1147.5,1644.31 " />
<svg:polygon detid="486736880" count="1" value="72" id="2407027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  0 backward    Id 486736880 " fill="rgb(255,113,0)" points="1145.62,1644.83 1138.35,1635.52 1131.67,1637.52 1140.2,1646.45 " />
<svg:polygon detid="486736884" count="1" value="72" id="2407028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 3 forward  module  1 backward    Id 486736884 " fill="rgb(255,113,0)" points="1138.4,1647.04 1129.91,1638.1 1123.52,1640.4 1133.21,1648.91 " />
<svg:polygon detid="486769892" count="1" value="72" id="2407029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 forward    Id 486769892 " fill="rgb(255,113,0)" points="1131.49,1649.59 1121.84,1641.06 1115.77,1643.65 1126.57,1651.69 " />
<svg:polygon detid="486769896" count="1" value="72" id="2407030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  2 forward    Id 486769896 " fill="rgb(255,113,0)" points="1124.95,1652.44 1114.19,1644.39 1108.49,1647.25 1120.33,1654.77 " />
<svg:polygon detid="486769900" count="1" value="72" id="2407031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  3 forward    Id 486769900 " fill="rgb(255,113,0)" points="1118.81,1655.59 1107,1648.06 1101.7,1651.18 1114.51,1658.12 " />
<svg:polygon detid="486769904" count="1" value="72" id="2407032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  0 backward    Id 486769904 " fill="rgb(255,113,0)" points="1113.1,1659.02 1100.33,1652.05 1095.46,1655.4 1109.16,1661.73 " />
<svg:polygon detid="486769908" count="1" value="72" id="2407033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 backward  module  1 backward    Id 486769908 " fill="rgb(255,113,0)" points="1107.87,1662.69 1094.21,1656.34 1089.81,1659.9 1104.3,1665.58 " />
<svg:polygon detid="486737124" count="1" value="72" id="2407034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 forward    Id 486737124 " fill="rgb(255,113,0)" points="1103.15,1666.6 1088.68,1660.89 1084.77,1664.65 1099.97,1669.64 " />
<svg:polygon detid="486737128" count="1" value="72" id="2407035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  2 forward    Id 486737128 " fill="rgb(255,113,0)" points="1098.96,1670.71 1083.78,1665.69 1080.38,1669.62 1096.2,1673.89 " />
<svg:polygon detid="486737132" count="1" value="72" id="2407036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  3 forward    Id 486737132 " fill="rgb(255,113,0)" points="1095.33,1675 1079.53,1670.7 1076.66,1674.77 1093.01,1678.3 " />
<svg:polygon detid="486737136" count="1" value="72" id="2407037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  0 backward    Id 486737136 " fill="rgb(255,113,0)" points="1092.29,1679.45 1075.96,1675.89 1073.65,1680.08 1090.41,1682.85 " />
<svg:polygon detid="486737140" count="1" value="72" id="2407038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 4 forward  module  1 backward    Id 486737140 " fill="rgb(255,113,0)" points="1089.85,1684.02 1073.1,1681.22 1071.35,1685.51 1088.43,1687.49 " />
<svg:polygon detid="486770148" count="1" value="72" id="2407039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 forward    Id 486770148 " fill="rgb(255,113,0)" points="1088.03,1688.69 1070.95,1686.68 1069.78,1691.03 1087.08,1692.22 " />
<svg:polygon detid="486770152" count="1" value="72" id="2407040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  2 forward    Id 486770152 " fill="rgb(255,113,0)" points="1086.83,1693.43 1069.54,1692.21 1068.96,1696.61 1086.36,1696.99 " />
<svg:polygon detid="486770156" count="1" value="72" id="2407041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  3 forward    Id 486770156 " fill="rgb(255,113,0)" points="1086.28,1698.21 1068.88,1697.79 1068.88,1702.21 1086.28,1701.79 " />
<svg:polygon detid="486770160" count="1" value="72" id="2407042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  0 backward    Id 486770160 " fill="rgb(255,113,0)" points="1086.36,1703.01 1068.96,1703.39 1069.54,1707.79 1086.83,1706.57 " />
<svg:polygon detid="486770164" count="1" value="72" id="2407043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 backward  module  1 backward    Id 486770164 " fill="rgb(255,113,0)" points="1087.08,1707.78 1069.78,1708.97 1070.95,1713.32 1088.03,1711.31 " />
<svg:polygon detid="486737380" count="1" value="72" id="2407044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 forward    Id 486737380 " fill="rgb(255,113,0)" points="1088.43,1712.51 1071.35,1714.49 1073.1,1718.78 1089.85,1715.98 " />
<svg:polygon detid="486737384" count="1" value="72" id="2407045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  2 forward    Id 486737384 " fill="rgb(255,113,0)" points="1090.41,1717.15 1073.65,1719.92 1075.96,1724.11 1092.29,1720.55 " />
<svg:polygon detid="486737388" count="1" value="72" id="2407046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  3 forward    Id 486737388 " fill="rgb(255,113,0)" points="1093.01,1721.7 1076.66,1725.23 1079.53,1729.3 1095.33,1725 " />
<svg:polygon detid="486737392" count="1" value="72" id="2407047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  0 backward    Id 486737392 " fill="rgb(255,113,0)" points="1096.2,1726.11 1080.38,1730.38 1083.78,1734.31 1098.96,1729.29 " />
<svg:polygon detid="486737396" count="1" value="72" id="2407048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 5 forward  module  1 backward    Id 486737396 " fill="rgb(255,113,0)" points="1099.97,1730.36 1084.77,1735.35 1088.68,1739.11 1103.15,1733.4 " />
<svg:polygon detid="486770404" count="1" value="72" id="2407049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 forward    Id 486770404 " fill="rgb(255,113,0)" points="1104.3,1734.42 1089.81,1740.1 1094.21,1743.66 1107.87,1737.31 " />
<svg:polygon detid="486770408" count="1" value="72" id="2407050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  2 forward    Id 486770408 " fill="rgb(255,113,0)" points="1109.16,1738.27 1095.46,1744.6 1100.33,1747.95 1113.1,1740.98 " />
<svg:polygon detid="486770412" count="1" value="72" id="2407051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  3 forward    Id 486770412 " fill="rgb(255,113,0)" points="1114.51,1741.88 1101.7,1748.82 1107,1751.94 1118.81,1744.41 " />
<svg:polygon detid="486770416" count="1" value="72" id="2407052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  0 backward    Id 486770416 " fill="rgb(255,113,0)" points="1120.33,1745.23 1108.49,1752.75 1114.19,1755.61 1124.95,1747.56 " />
<svg:polygon detid="486770420" count="1" value="72" id="2407053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 backward  module  1 backward    Id 486770420 " fill="rgb(255,113,0)" points="1126.57,1748.31 1115.77,1756.35 1121.84,1758.94 1131.49,1750.41 " />
<svg:polygon detid="486737636" count="1" value="72" id="2407054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 forward    Id 486737636 " fill="rgb(255,113,0)" points="1133.21,1751.09 1123.52,1759.6 1129.91,1761.9 1138.4,1752.96 " />
<svg:polygon detid="486737640" count="1" value="72" id="2407055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  2 forward    Id 486737640 " fill="rgb(255,113,0)" points="1140.2,1753.55 1131.67,1762.48 1138.35,1764.48 1145.62,1755.17 " />
<svg:polygon detid="486737644" count="1" value="72" id="2407056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  3 forward    Id 486737644 " fill="rgb(255,113,0)" points="1147.5,1755.69 1140.19,1764.98 1147.11,1766.67 1153.11,1757.05 " />
<svg:polygon detid="486737648" count="1" value="72" id="2407057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  0 backward    Id 486737648 " fill="rgb(255,113,0)" points="1155.06,1757.48 1149.01,1767.08 1156.14,1768.44 1160.84,1758.58 " />
<svg:polygon detid="486737652" count="1" value="72" id="2407058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 6 forward  module  1 backward    Id 486737652 " fill="rgb(255,113,0)" points="1162.83,1758.91 1158.08,1768.77 1165.37,1769.79 1168.74,1759.75 " />
<svg:polygon detid="486770660" count="1" value="72" id="2407059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 forward    Id 486770660 " fill="rgb(255,113,0)" points="1170.77,1759.98 1167.35,1770.03 1174.75,1770.72 1176.78,1760.54 " />
<svg:polygon detid="486770664" count="1" value="72" id="2407060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  2 forward    Id 486770664 " fill="rgb(255,113,0)" points="1178.83,1760.69 1176.76,1770.86 1184.23,1771.2 1184.89,1760.97 " />
<svg:polygon detid="486770668" count="1" value="72" id="2407061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  3 forward    Id 486770668 " fill="rgb(255,113,0)" points="1186.96,1761.01 1186.25,1771.25 1193.75,1771.25 1193.04,1761.01 " />
<svg:polygon detid="486770672" count="1" value="72" id="2407062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  0 backward    Id 486770672 " fill="rgb(255,113,0)" points="1195.11,1760.97 1195.77,1771.2 1203.24,1770.86 1201.17,1760.69 " />
<svg:polygon detid="486770676" count="1" value="72" id="2407063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 backward  module  1 backward    Id 486770676 " fill="rgb(255,113,0)" points="1203.22,1760.54 1205.25,1770.72 1212.65,1770.03 1209.23,1759.98 " />
<svg:polygon detid="486737892" count="1" value="72" id="2407064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 forward    Id 486737892 " fill="rgb(255,113,0)" points="1211.26,1759.75 1214.63,1769.79 1221.92,1768.77 1217.17,1758.91 " />
<svg:polygon detid="486737896" count="1" value="72" id="2407065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  2 forward    Id 486737896 " fill="rgb(255,113,0)" points="1219.16,1758.58 1223.86,1768.44 1230.99,1767.08 1224.94,1757.48 " />
<svg:polygon detid="486737900" count="1" value="72" id="2407066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  3 forward    Id 486737900 " fill="rgb(255,113,0)" points="1226.89,1757.05 1232.89,1766.67 1239.81,1764.98 1232.5,1755.69 " />
<svg:polygon detid="486737904" count="1" value="72" id="2407067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  0 backward    Id 486737904 " fill="rgb(255,113,0)" points="1234.38,1755.17 1241.65,1764.48 1248.33,1762.48 1239.8,1753.55 " />
<svg:polygon detid="486737908" count="1" value="72" id="2407068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 7 forward  module  1 backward    Id 486737908 " fill="rgb(255,113,0)" points="1241.6,1752.96 1250.09,1761.9 1256.48,1759.6 1246.79,1751.09 " />
<svg:polygon detid="486770916" count="1" value="72" id="2407069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 forward    Id 486770916 " fill="rgb(255,113,0)" points="1248.51,1750.41 1258.16,1758.94 1264.23,1756.35 1253.43,1748.31 " />
<svg:polygon detid="486770920" count="1" value="72" id="2407070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  2 forward    Id 486770920 " fill="rgb(255,113,0)" points="1255.05,1747.56 1265.81,1755.61 1271.51,1752.75 1259.67,1745.23 " />
<svg:polygon detid="486770924" count="1" value="72" id="2407071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  3 forward    Id 486770924 " fill="rgb(255,113,0)" points="1261.19,1744.41 1273,1751.94 1278.3,1748.82 1265.49,1741.88 " />
<svg:polygon detid="486770928" count="1" value="72" id="2407072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  0 backward    Id 486770928 " fill="rgb(255,113,0)" points="1266.9,1740.98 1279.67,1747.95 1284.54,1744.6 1270.84,1738.27 " />
<svg:polygon detid="486770932" count="1" value="72" id="2407073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 backward  module  1 backward    Id 486770932 " fill="rgb(255,113,0)" points="1272.13,1737.31 1285.79,1743.66 1290.19,1740.1 1275.7,1734.42 " />
<svg:polygon detid="486738148" count="1" value="72" id="2407074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 forward    Id 486738148 " fill="rgb(255,113,0)" points="1276.85,1733.4 1291.32,1739.11 1295.23,1735.35 1280.03,1730.36 " />
<svg:polygon detid="486738152" count="1" value="72" id="2407075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  2 forward    Id 486738152 " fill="rgb(255,113,0)" points="1281.04,1729.29 1296.22,1734.31 1299.62,1730.38 1283.8,1726.11 " />
<svg:polygon detid="486738156" count="1" value="72" id="2407076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  3 forward    Id 486738156 " fill="rgb(255,113,0)" points="1284.67,1725 1300.47,1729.3 1303.34,1725.23 1286.99,1721.7 " />
<svg:polygon detid="486738160" count="1" value="72" id="2407077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  0 backward    Id 486738160 " fill="rgb(255,113,0)" points="1287.71,1720.55 1304.04,1724.11 1306.35,1719.92 1289.59,1717.15 " />
<svg:polygon detid="486738164" count="1" value="72" id="2407078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 8 forward  module  1 backward    Id 486738164 " fill="rgb(255,113,0)" points="1290.15,1715.98 1306.9,1718.78 1308.65,1714.49 1291.57,1712.51 " />
<svg:polygon detid="486769140" count="1" value="72" id="2407079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  1 backward    Id 486769140 " fill="rgb(255,113,0)" points="1291.97,1711.31 1309.05,1713.32 1310.22,1708.97 1292.92,1707.78 " />
<svg:polygon detid="486769128" count="1" value="72" id="2407080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 3 ring 0 petal 1 backward  module  2 forward    Id 486769128 " fill="rgb(255,113,0)" points="1293.17,1706.57 1310.46,1707.79 1311.04,1703.39 1293.64,1703.01 " />
<svg:polygon detid="486834506" count="1" value="75" id="2502001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward    Id 486834506 " fill="rgb(255,107,0)" points="1234.35,1893.78 1227.06,1894.96 1228.01,1899.23 " />
<svg:polygon detid="486801734" count="1" value="75" id="2502002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward    Id 486801734 " fill="rgb(255,107,0)" points="1230.1,1887.24 1223.57,1889.49 1226.38,1893.47 " />
<svg:polygon detid="486834758" count="1" value="75" id="2502003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward    Id 486834758 " fill="rgb(255,107,0)" points="1223.12,1881.57 1217.8,1884.73 1222.27,1888.15 " />
<svg:polygon detid="486834762" count="1" value="75" id="2502004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward    Id 486834762 " fill="rgb(255,107,0)" points="1213.88,1877.16 1210.14,1881.02 1215.95,1883.64 " />
<svg:polygon detid="486801990" count="1" value="75" id="2502005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward    Id 486801990 " fill="rgb(255,107,0)" points="1203.02,1874.3 1201.1,1878.6 1207.87,1880.25 " />
<svg:polygon detid="486835014" count="1" value="75" id="2502006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward    Id 486835014 " fill="rgb(255,107,0)" points="1191.27,1873.19 1191.31,1877.64 1198.57,1878.2 " />
<svg:polygon detid="486835018" count="1" value="75" id="2502007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward    Id 486835018 " fill="rgb(255,107,0)" points="1179.43,1873.91 1181.43,1878.2 1188.69,1877.64 " />
<svg:polygon detid="486802246" count="1" value="75" id="2502008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward    Id 486802246 " fill="rgb(255,107,0)" points="1168.31,1876.41 1172.13,1880.25 1178.9,1878.6 " />
<svg:polygon detid="486835270" count="1" value="75" id="2502009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward    Id 486835270 " fill="rgb(255,107,0)" points="1158.67,1880.52 1164.05,1883.64 1169.86,1881.02 " />
<svg:polygon detid="486835274" count="1" value="75" id="2502010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward    Id 486835274 " fill="rgb(255,107,0)" points="1151.17,1885.95 1157.73,1888.15 1162.2,1884.73 " />
<svg:polygon detid="486802502" count="1" value="75" id="2502011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward    Id 486802502 " fill="rgb(255,107,0)" points="1146.31,1892.34 1153.62,1893.47 1156.43,1889.49 " />
<svg:polygon detid="486835526" count="1" value="75" id="2502012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward    Id 486835526 " fill="rgb(255,107,0)" points="1144.43,1899.25 1151.99,1899.23 1152.94,1894.96 " />
<svg:polygon detid="486835530" count="1" value="75" id="2502013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward    Id 486835530 " fill="rgb(255,107,0)" points="1145.65,1906.22 1152.94,1905.04 1151.99,1900.77 " />
<svg:polygon detid="486802758" count="1" value="75" id="2502014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward    Id 486802758 " fill="rgb(255,107,0)" points="1149.9,1912.76 1156.43,1910.51 1153.62,1906.53 " />
<svg:polygon detid="486835782" count="1" value="75" id="2502015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward    Id 486835782 " fill="rgb(255,107,0)" points="1156.88,1918.43 1162.2,1915.27 1157.73,1911.85 " />
<svg:polygon detid="486835786" count="1" value="75" id="2502016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward    Id 486835786 " fill="rgb(255,107,0)" points="1166.12,1922.84 1169.86,1918.98 1164.05,1916.36 " />
<svg:polygon detid="486803014" count="1" value="75" id="2502017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward    Id 486803014 " fill="rgb(255,107,0)" points="1176.98,1925.7 1178.9,1921.4 1172.13,1919.75 " />
<svg:polygon detid="486836038" count="1" value="75" id="2502018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward    Id 486836038 " fill="rgb(255,107,0)" points="1188.73,1926.81 1188.69,1922.36 1181.43,1921.8 " />
<svg:polygon detid="486836042" count="1" value="75" id="2502019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward    Id 486836042 " fill="rgb(255,107,0)" points="1200.57,1926.09 1198.57,1921.8 1191.31,1922.36 " />
<svg:polygon detid="486803270" count="1" value="75" id="2502020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward    Id 486803270 " fill="rgb(255,107,0)" points="1211.69,1923.59 1207.87,1919.75 1201.1,1921.4 " />
<svg:polygon detid="486836294" count="1" value="75" id="2502021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward    Id 486836294 " fill="rgb(255,107,0)" points="1221.33,1919.48 1215.95,1916.36 1210.14,1918.98 " />
<svg:polygon detid="486836298" count="1" value="75" id="2502022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward    Id 486836298 " fill="rgb(255,107,0)" points="1228.83,1914.05 1222.27,1911.85 1217.8,1915.27 " />
<svg:polygon detid="486803526" count="1" value="75" id="2502023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward    Id 486803526 " fill="rgb(255,107,0)" points="1233.69,1907.66 1226.38,1906.53 1223.57,1910.51 " />
<svg:polygon detid="486834502" count="1" value="75" id="2502024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward    Id 486834502 " fill="rgb(255,107,0)" points="1235.57,1900.75 1228.01,1900.77 1227.06,1905.04 " />
<svg:polygon detid="486834505" count="1" value="75" id="2502101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward   stereo Id 486834505 " fill="rgb(255,107,0)" points="1228.01,1899.23 1235.57,1899.25 1234.35,1893.78 " />
<svg:polygon detid="486801733" count="1" value="75" id="2502102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward   stereo Id 486801733 " fill="rgb(255,107,0)" points="1226.38,1893.47 1233.69,1892.34 1230.1,1887.24 " />
<svg:polygon detid="486834757" count="1" value="75" id="2502103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward   stereo Id 486834757 " fill="rgb(255,107,0)" points="1222.27,1888.15 1228.83,1885.95 1223.12,1881.57 " />
<svg:polygon detid="486834761" count="1" value="75" id="2502104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward   stereo Id 486834761 " fill="rgb(255,107,0)" points="1215.95,1883.64 1221.33,1880.52 1213.88,1877.16 " />
<svg:polygon detid="486801989" count="1" value="75" id="2502105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward   stereo Id 486801989 " fill="rgb(255,107,0)" points="1207.87,1880.25 1211.69,1876.41 1203.02,1874.3 " />
<svg:polygon detid="486835013" count="1" value="75" id="2502106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward   stereo Id 486835013 " fill="rgb(255,107,0)" points="1198.57,1878.2 1200.57,1873.91 1191.27,1873.19 " />
<svg:polygon detid="486835017" count="1" value="75" id="2502107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward   stereo Id 486835017 " fill="rgb(255,107,0)" points="1188.69,1877.64 1188.73,1873.19 1179.43,1873.91 " />
<svg:polygon detid="486802245" count="1" value="75" id="2502108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward   stereo Id 486802245 " fill="rgb(255,107,0)" points="1178.9,1878.6 1176.98,1874.3 1168.31,1876.41 " />
<svg:polygon detid="486835269" count="1" value="75" id="2502109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward   stereo Id 486835269 " fill="rgb(255,107,0)" points="1169.86,1881.02 1166.12,1877.16 1158.67,1880.52 " />
<svg:polygon detid="486835273" count="1" value="75" id="2502110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward   stereo Id 486835273 " fill="rgb(255,107,0)" points="1162.2,1884.73 1156.88,1881.57 1151.17,1885.95 " />
<svg:polygon detid="486802501" count="1" value="75" id="2502111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward   stereo Id 486802501 " fill="rgb(255,107,0)" points="1156.43,1889.49 1149.9,1887.24 1146.31,1892.34 " />
<svg:polygon detid="486835525" count="1" value="75" id="2502112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward   stereo Id 486835525 " fill="rgb(255,107,0)" points="1152.94,1894.96 1145.65,1893.78 1144.43,1899.25 " />
<svg:polygon detid="486835529" count="1" value="75" id="2502113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward   stereo Id 486835529 " fill="rgb(255,107,0)" points="1151.99,1900.77 1144.43,1900.75 1145.65,1906.22 " />
<svg:polygon detid="486802757" count="1" value="75" id="2502114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward   stereo Id 486802757 " fill="rgb(255,107,0)" points="1153.62,1906.53 1146.31,1907.66 1149.9,1912.76 " />
<svg:polygon detid="486835781" count="1" value="75" id="2502115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward   stereo Id 486835781 " fill="rgb(255,107,0)" points="1157.73,1911.85 1151.17,1914.05 1156.88,1918.43 " />
<svg:polygon detid="486835785" count="1" value="75" id="2502116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward   stereo Id 486835785 " fill="rgb(255,107,0)" points="1164.05,1916.36 1158.67,1919.48 1166.12,1922.84 " />
<svg:polygon detid="486803013" count="1" value="75" id="2502117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward   stereo Id 486803013 " fill="rgb(255,107,0)" points="1172.13,1919.75 1168.31,1923.59 1176.98,1925.7 " />
<svg:polygon detid="486836037" count="1" value="75" id="2502118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward   stereo Id 486836037 " fill="rgb(255,107,0)" points="1181.43,1921.8 1179.43,1926.09 1188.73,1926.81 " />
<svg:polygon detid="486836041" count="1" value="75" id="2502119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward   stereo Id 486836041 " fill="rgb(255,107,0)" points="1191.31,1922.36 1191.27,1926.81 1200.57,1926.09 " />
<svg:polygon detid="486803269" count="1" value="75" id="2502120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward   stereo Id 486803269 " fill="rgb(255,107,0)" points="1201.1,1921.4 1203.02,1925.7 1211.69,1923.59 " />
<svg:polygon detid="486836293" count="1" value="75" id="2502121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward   stereo Id 486836293 " fill="rgb(255,107,0)" points="1210.14,1918.98 1213.88,1922.84 1221.33,1919.48 " />
<svg:polygon detid="486836297" count="1" value="75" id="2502122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward   stereo Id 486836297 " fill="rgb(255,107,0)" points="1217.8,1915.27 1223.12,1918.43 1228.83,1914.05 " />
<svg:polygon detid="486803525" count="1" value="75" id="2502123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward   stereo Id 486803525 " fill="rgb(255,107,0)" points="1223.57,1910.51 1230.1,1912.76 1233.69,1907.66 " />
<svg:polygon detid="486834501" count="1" value="75" id="2502124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward   stereo Id 486834501 " fill="rgb(255,107,0)" points="1227.06,1905.04 1234.35,1906.22 1235.57,1900.75 " />
<svg:polygon detid="486834532" count="1" value="75" id="2503001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward    Id 486834532 " fill="rgb(255,107,0)" points="1236.01,1901.57 1245.41,1902.03 1245.41,1897.97 1236.01,1898.43 " />
<svg:polygon detid="486834536" count="1" value="75" id="2503002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward    Id 486834536 " fill="rgb(255,107,0)" points="1235.86,1897.32 1245.27,1896.91 1244.19,1892.9 1235.02,1894.21 " />
<svg:polygon detid="486801764" count="1" value="75" id="2503003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward    Id 486801764 " fill="rgb(255,107,0)" points="1234.58,1893.13 1243.76,1891.86 1241.63,1888 1232.93,1890.14 " />
<svg:polygon detid="486801768" count="1" value="75" id="2503004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  2 forward    Id 486801768 " fill="rgb(255,107,0)" points="1232.21,1889.12 1240.94,1887.01 1237.8,1883.39 1229.78,1886.31 " />
<svg:polygon detid="486834788" count="1" value="75" id="2503005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward    Id 486834788 " fill="rgb(255,107,0)" points="1228.8,1885.37 1236.86,1882.48 1232.8,1879.2 1225.65,1882.82 " />
<svg:polygon detid="486834792" count="1" value="75" id="2503006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward    Id 486834792 " fill="rgb(255,107,0)" points="1224.43,1881.98 1231.62,1878.39 1226.74,1875.52 1220.64,1879.75 " />
<svg:polygon detid="486834796" count="1" value="75" id="2503007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  3 forward    Id 486834796 " fill="rgb(255,107,0)" points="1219.21,1879.03 1225.36,1874.82 1219.78,1872.44 1214.88,1877.18 " />
<svg:polygon detid="486802020" count="1" value="75" id="2503008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward    Id 486802020 " fill="rgb(255,107,0)" points="1213.27,1876.6 1218.23,1871.88 1212.08,1870.04 1208.5,1875.17 " />
<svg:polygon detid="486802024" count="1" value="75" id="2503009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  2 forward    Id 486802024 " fill="rgb(255,107,0)" points="1206.76,1874.75 1210.4,1869.63 1203.84,1868.37 1201.67,1873.77 " />
<svg:polygon detid="486835044" count="1" value="75" id="2503010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward    Id 486835044 " fill="rgb(255,107,0)" points="1199.84,1873.52 1202.08,1868.13 1195.26,1867.49 1194.55,1873.02 " />
<svg:polygon detid="486835048" count="1" value="75" id="2503011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward    Id 486835048 " fill="rgb(255,107,0)" points="1192.68,1872.94 1193.45,1867.41 1186.55,1867.41 1187.32,1872.94 " />
<svg:polygon detid="486835052" count="1" value="75" id="2503012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  3 forward    Id 486835052 " fill="rgb(255,107,0)" points="1185.45,1873.02 1184.74,1867.49 1177.92,1868.13 1180.16,1873.52 " />
<svg:polygon detid="486802276" count="1" value="75" id="2503013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward    Id 486802276 " fill="rgb(255,107,0)" points="1178.33,1873.77 1176.16,1868.37 1169.6,1869.63 1173.24,1874.75 " />
<svg:polygon detid="486802280" count="1" value="75" id="2503014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  2 forward    Id 486802280 " fill="rgb(255,107,0)" points="1171.5,1875.17 1167.92,1870.04 1161.77,1871.88 1166.73,1876.6 " />
<svg:polygon detid="486835300" count="1" value="75" id="2503015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward    Id 486835300 " fill="rgb(255,107,0)" points="1165.12,1877.18 1160.22,1872.44 1154.64,1874.82 1160.79,1879.03 " />
<svg:polygon detid="486835304" count="1" value="75" id="2503016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward    Id 486835304 " fill="rgb(255,107,0)" points="1159.36,1879.75 1153.26,1875.52 1148.38,1878.39 1155.57,1881.98 " />
<svg:polygon detid="486835308" count="1" value="75" id="2503017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  3 forward    Id 486835308 " fill="rgb(255,107,0)" points="1154.35,1882.82 1147.2,1879.2 1143.14,1882.48 1151.2,1885.37 " />
<svg:polygon detid="486802532" count="1" value="75" id="2503018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward    Id 486802532 " fill="rgb(255,107,0)" points="1150.22,1886.31 1142.2,1883.39 1139.06,1887.01 1147.79,1889.12 " />
<svg:polygon detid="486802536" count="1" value="75" id="2503019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  2 forward    Id 486802536 " fill="rgb(255,107,0)" points="1147.07,1890.14 1138.37,1888 1136.24,1891.86 1145.42,1893.13 " />
<svg:polygon detid="486835556" count="1" value="75" id="2503020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward    Id 486835556 " fill="rgb(255,107,0)" points="1144.98,1894.21 1135.81,1892.9 1134.73,1896.91 1144.14,1897.32 " />
<svg:polygon detid="486835560" count="1" value="75" id="2503021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward    Id 486835560 " fill="rgb(255,107,0)" points="1143.99,1898.43 1134.59,1897.97 1134.59,1902.03 1143.99,1901.57 " />
<svg:polygon detid="486835564" count="1" value="75" id="2503022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  3 forward    Id 486835564 " fill="rgb(255,107,0)" points="1144.14,1902.68 1134.73,1903.09 1135.81,1907.1 1144.98,1905.79 " />
<svg:polygon detid="486802788" count="1" value="75" id="2503023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward    Id 486802788 " fill="rgb(255,107,0)" points="1145.42,1906.87 1136.24,1908.14 1138.37,1912 1147.07,1909.86 " />
<svg:polygon detid="486802792" count="1" value="75" id="2503024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  2 forward    Id 486802792 " fill="rgb(255,107,0)" points="1147.79,1910.88 1139.06,1912.99 1142.2,1916.61 1150.22,1913.69 " />
<svg:polygon detid="486835812" count="1" value="75" id="2503025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward    Id 486835812 " fill="rgb(255,107,0)" points="1151.2,1914.63 1143.14,1917.52 1147.2,1920.8 1154.35,1917.18 " />
<svg:polygon detid="486835816" count="1" value="75" id="2503026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward    Id 486835816 " fill="rgb(255,107,0)" points="1155.57,1918.02 1148.38,1921.61 1153.26,1924.48 1159.36,1920.25 " />
<svg:polygon detid="486835820" count="1" value="75" id="2503027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  3 forward    Id 486835820 " fill="rgb(255,107,0)" points="1160.79,1920.97 1154.64,1925.18 1160.22,1927.56 1165.12,1922.82 " />
<svg:polygon detid="486803044" count="1" value="75" id="2503028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward    Id 486803044 " fill="rgb(255,107,0)" points="1166.73,1923.4 1161.77,1928.12 1167.92,1929.96 1171.5,1924.83 " />
<svg:polygon detid="486803048" count="1" value="75" id="2503029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  2 forward    Id 486803048 " fill="rgb(255,107,0)" points="1173.24,1925.25 1169.6,1930.37 1176.16,1931.63 1178.33,1926.23 " />
<svg:polygon detid="486836068" count="1" value="75" id="2503030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward    Id 486836068 " fill="rgb(255,107,0)" points="1180.16,1926.48 1177.92,1931.87 1184.74,1932.51 1185.45,1926.98 " />
<svg:polygon detid="486836072" count="1" value="75" id="2503031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward    Id 486836072 " fill="rgb(255,107,0)" points="1187.32,1927.06 1186.55,1932.59 1193.45,1932.59 1192.68,1927.06 " />
<svg:polygon detid="486836076" count="1" value="75" id="2503032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  3 forward    Id 486836076 " fill="rgb(255,107,0)" points="1194.55,1926.98 1195.26,1932.51 1202.08,1931.87 1199.84,1926.48 " />
<svg:polygon detid="486803300" count="1" value="75" id="2503033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward    Id 486803300 " fill="rgb(255,107,0)" points="1201.67,1926.23 1203.84,1931.63 1210.4,1930.37 1206.76,1925.25 " />
<svg:polygon detid="486803304" count="1" value="75" id="2503034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  2 forward    Id 486803304 " fill="rgb(255,107,0)" points="1208.5,1924.83 1212.08,1929.96 1218.23,1928.12 1213.27,1923.4 " />
<svg:polygon detid="486836324" count="1" value="75" id="2503035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward    Id 486836324 " fill="rgb(255,107,0)" points="1214.88,1922.82 1219.78,1927.56 1225.36,1925.18 1219.21,1920.97 " />
<svg:polygon detid="486836328" count="1" value="75" id="2503036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward    Id 486836328 " fill="rgb(255,107,0)" points="1220.64,1920.25 1226.74,1924.48 1231.62,1921.61 1224.43,1918.02 " />
<svg:polygon detid="486836332" count="1" value="75" id="2503037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  3 forward    Id 486836332 " fill="rgb(255,107,0)" points="1225.65,1917.18 1232.8,1920.8 1236.86,1917.52 1228.8,1914.63 " />
<svg:polygon detid="486803556" count="1" value="75" id="2503038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward    Id 486803556 " fill="rgb(255,107,0)" points="1229.78,1913.69 1237.8,1916.61 1240.94,1912.99 1232.21,1910.88 " />
<svg:polygon detid="486803560" count="1" value="75" id="2503039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  2 forward    Id 486803560 " fill="rgb(255,107,0)" points="1232.93,1909.86 1241.63,1912 1243.76,1908.14 1234.58,1906.87 " />
<svg:polygon detid="486834540" count="1" value="75" id="2503040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  3 forward    Id 486834540 " fill="rgb(255,107,0)" points="1235.02,1905.79 1244.19,1907.1 1245.27,1903.09 1235.86,1902.68 " />
<svg:polygon detid="486834568" count="1" value="75" id="2504001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward    Id 486834568 " fill="rgb(255,107,0)" points="1248.82,1899.51 1258.62,1899.52 1258.28,1895.96 1248.55,1896.62 " />
<svg:polygon detid="486834572" count="1" value="75" id="2504002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  3 forward    Id 486834572 " fill="rgb(255,107,0)" points="1248.36,1895.64 1258.1,1895 1257.08,1891.48 1247.53,1892.78 " />
<svg:polygon detid="486801796" count="1" value="75" id="2504003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward    Id 486801796 " fill="rgb(255,107,0)" points="1247.16,1891.82 1256.72,1890.55 1255.04,1887.12 1245.8,1889.04 " />
<svg:polygon detid="486801800" count="1" value="75" id="2504004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  2 forward    Id 486801800 " fill="rgb(255,107,0)" points="1245.24,1888.11 1254.5,1886.22 1252.18,1882.92 1243.36,1885.43 " />
<svg:polygon detid="486801804" count="1" value="75" id="2504005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  3 forward    Id 486801804 " fill="rgb(255,107,0)" points="1242.63,1884.54 1251.47,1882.05 1248.54,1878.93 1240.25,1882.01 " />
<svg:polygon detid="486834820" count="1" value="75" id="2504006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward    Id 486834820 " fill="rgb(255,107,0)" points="1239.36,1881.17 1247.67,1878.12 1244.16,1875.21 1236.51,1878.81 " />
<svg:polygon detid="486834824" count="1" value="75" id="2504007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward    Id 486834824 " fill="rgb(255,107,0)" points="1235.47,1878.04 1243.14,1874.46 1239.1,1871.8 1232.19,1875.88 " />
<svg:polygon detid="486834828" count="1" value="75" id="2504008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  3 forward    Id 486834828 " fill="rgb(255,107,0)" points="1231,1875.18 1237.95,1871.12 1233.42,1868.74 1227.33,1873.26 " />
<svg:polygon detid="486834832" count="1" value="75" id="2504009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  0 backward    Id 486834832 " fill="rgb(255,107,0)" points="1226.02,1872.64 1232.15,1868.14 1227.2,1866.08 1222.01,1870.96 " />
<svg:polygon detid="486802052" count="1" value="75" id="2504010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward    Id 486802052 " fill="rgb(255,107,0)" points="1220.59,1870.44 1225.82,1865.57 1220.51,1863.84 1216.28,1869.04 " />
<svg:polygon detid="486802056" count="1" value="75" id="2504011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  2 forward    Id 486802056 " fill="rgb(255,107,0)" points="1214.77,1868.61 1219.04,1863.42 1213.43,1862.06 1210.22,1867.5 " />
<svg:polygon detid="486802060" count="1" value="75" id="2504012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  3 forward    Id 486802060 " fill="rgb(255,107,0)" points="1208.64,1867.18 1211.9,1861.74 1206.06,1860.75 1203.91,1866.38 " />
<svg:polygon detid="486835076" count="1" value="75" id="2504013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward    Id 486835076 " fill="rgb(255,107,0)" points="1202.27,1866.16 1204.48,1860.54 1198.49,1859.94 1197.42,1865.67 " />
<svg:polygon detid="486835080" count="1" value="75" id="2504014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward    Id 486835080 " fill="rgb(255,107,0)" points="1195.75,1865.56 1196.87,1859.83 1190.81,1859.63 1190.84,1865.4 " />
<svg:polygon detid="486835084" count="1" value="75" id="2504015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  3 forward    Id 486835084 " fill="rgb(255,107,0)" points="1189.16,1865.4 1189.19,1859.63 1183.13,1859.83 1184.25,1865.56 " />
<svg:polygon detid="486835088" count="1" value="75" id="2504016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  0 backward    Id 486835088 " fill="rgb(255,107,0)" points="1182.58,1865.67 1181.51,1859.94 1175.52,1860.54 1177.73,1866.16 " />
<svg:polygon detid="486802308" count="1" value="75" id="2504017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward    Id 486802308 " fill="rgb(255,107,0)" points="1176.09,1866.38 1173.94,1860.75 1168.1,1861.74 1171.36,1867.18 " />
<svg:polygon detid="486802312" count="1" value="75" id="2504018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  2 forward    Id 486802312 " fill="rgb(255,107,0)" points="1169.78,1867.5 1166.57,1862.06 1160.96,1863.42 1165.23,1868.61 " />
<svg:polygon detid="486802316" count="1" value="75" id="2504019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  3 forward    Id 486802316 " fill="rgb(255,107,0)" points="1163.72,1869.04 1159.49,1863.84 1154.18,1865.57 1159.41,1870.44 " />
<svg:polygon detid="486835332" count="1" value="75" id="2504020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward    Id 486835332 " fill="rgb(255,107,0)" points="1157.99,1870.96 1152.8,1866.08 1147.85,1868.14 1153.98,1872.64 " />
<svg:polygon detid="486835336" count="1" value="75" id="2504021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward    Id 486835336 " fill="rgb(255,107,0)" points="1152.67,1873.26 1146.58,1868.74 1142.05,1871.12 1149,1875.18 " />
<svg:polygon detid="486835340" count="1" value="75" id="2504022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  3 forward    Id 486835340 " fill="rgb(255,107,0)" points="1147.81,1875.88 1140.9,1871.8 1136.86,1874.46 1144.53,1878.04 " />
<svg:polygon detid="486835344" count="1" value="75" id="2504023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  0 backward    Id 486835344 " fill="rgb(255,107,0)" points="1143.49,1878.81 1135.84,1875.21 1132.33,1878.12 1140.64,1881.17 " />
<svg:polygon detid="486802564" count="1" value="75" id="2504024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward    Id 486802564 " fill="rgb(255,107,0)" points="1139.75,1882.01 1131.46,1878.93 1128.53,1882.05 1137.37,1884.54 " />
<svg:polygon detid="486802568" count="1" value="75" id="2504025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  2 forward    Id 486802568 " fill="rgb(255,107,0)" points="1136.64,1885.43 1127.82,1882.92 1125.5,1886.22 1134.76,1888.11 " />
<svg:polygon detid="486802572" count="1" value="75" id="2504026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  3 forward    Id 486802572 " fill="rgb(255,107,0)" points="1134.2,1889.04 1124.96,1887.12 1123.28,1890.55 1132.84,1891.82 " />
<svg:polygon detid="486835588" count="1" value="75" id="2504027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward    Id 486835588 " fill="rgb(255,107,0)" points="1132.47,1892.78 1122.92,1891.48 1121.9,1895 1131.64,1895.64 " />
<svg:polygon detid="486835592" count="1" value="75" id="2504028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward    Id 486835592 " fill="rgb(255,107,0)" points="1131.45,1896.62 1121.72,1895.96 1121.38,1899.52 1131.18,1899.51 " />
<svg:polygon detid="486835596" count="1" value="75" id="2504029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  3 forward    Id 486835596 " fill="rgb(255,107,0)" points="1131.18,1900.49 1121.38,1900.48 1121.72,1904.04 1131.45,1903.38 " />
<svg:polygon detid="486835600" count="1" value="75" id="2504030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  0 backward    Id 486835600 " fill="rgb(255,107,0)" points="1131.64,1904.36 1121.9,1905 1122.92,1908.52 1132.47,1907.22 " />
<svg:polygon detid="486802820" count="1" value="75" id="2504031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward    Id 486802820 " fill="rgb(255,107,0)" points="1132.84,1908.18 1123.28,1909.45 1124.96,1912.88 1134.2,1910.96 " />
<svg:polygon detid="486802824" count="1" value="75" id="2504032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  2 forward    Id 486802824 " fill="rgb(255,107,0)" points="1134.76,1911.89 1125.5,1913.78 1127.82,1917.08 1136.64,1914.57 " />
<svg:polygon detid="486802828" count="1" value="75" id="2504033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  3 forward    Id 486802828 " fill="rgb(255,107,0)" points="1137.37,1915.46 1128.53,1917.95 1131.46,1921.07 1139.75,1917.99 " />
<svg:polygon detid="486835844" count="1" value="75" id="2504034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward    Id 486835844 " fill="rgb(255,107,0)" points="1140.64,1918.83 1132.33,1921.88 1135.84,1924.79 1143.49,1921.19 " />
<svg:polygon detid="486835848" count="1" value="75" id="2504035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward    Id 486835848 " fill="rgb(255,107,0)" points="1144.53,1921.96 1136.86,1925.54 1140.9,1928.2 1147.81,1924.12 " />
<svg:polygon detid="486835852" count="1" value="75" id="2504036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  3 forward    Id 486835852 " fill="rgb(255,107,0)" points="1149,1924.82 1142.05,1928.88 1146.58,1931.26 1152.67,1926.74 " />
<svg:polygon detid="486835856" count="1" value="75" id="2504037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  0 backward    Id 486835856 " fill="rgb(255,107,0)" points="1153.98,1927.36 1147.85,1931.86 1152.8,1933.92 1157.99,1929.04 " />
<svg:polygon detid="486803076" count="1" value="75" id="2504038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward    Id 486803076 " fill="rgb(255,107,0)" points="1159.41,1929.56 1154.18,1934.43 1159.49,1936.16 1163.72,1930.96 " />
<svg:polygon detid="486803080" count="1" value="75" id="2504039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  2 forward    Id 486803080 " fill="rgb(255,107,0)" points="1165.23,1931.39 1160.96,1936.58 1166.57,1937.94 1169.78,1932.5 " />
<svg:polygon detid="486803084" count="1" value="75" id="2504040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  3 forward    Id 486803084 " fill="rgb(255,107,0)" points="1171.36,1932.82 1168.1,1938.26 1173.94,1939.25 1176.09,1933.62 " />
<svg:polygon detid="486836100" count="1" value="75" id="2504041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward    Id 486836100 " fill="rgb(255,107,0)" points="1177.73,1933.84 1175.52,1939.46 1181.51,1940.06 1182.58,1934.33 " />
<svg:polygon detid="486836104" count="1" value="75" id="2504042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward    Id 486836104 " fill="rgb(255,107,0)" points="1184.25,1934.44 1183.13,1940.17 1189.19,1940.37 1189.16,1934.6 " />
<svg:polygon detid="486836108" count="1" value="75" id="2504043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  3 forward    Id 486836108 " fill="rgb(255,107,0)" points="1190.84,1934.6 1190.81,1940.37 1196.87,1940.17 1195.75,1934.44 " />
<svg:polygon detid="486836112" count="1" value="75" id="2504044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  0 backward    Id 486836112 " fill="rgb(255,107,0)" points="1197.42,1934.33 1198.49,1940.06 1204.48,1939.46 1202.27,1933.84 " />
<svg:polygon detid="486803332" count="1" value="75" id="2504045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward    Id 486803332 " fill="rgb(255,107,0)" points="1203.91,1933.62 1206.06,1939.25 1211.9,1938.26 1208.64,1932.82 " />
<svg:polygon detid="486803336" count="1" value="75" id="2504046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  2 forward    Id 486803336 " fill="rgb(255,107,0)" points="1210.22,1932.5 1213.43,1937.94 1219.04,1936.58 1214.77,1931.39 " />
<svg:polygon detid="486803340" count="1" value="75" id="2504047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  3 forward    Id 486803340 " fill="rgb(255,107,0)" points="1216.28,1930.96 1220.51,1936.16 1225.82,1934.43 1220.59,1929.56 " />
<svg:polygon detid="486836356" count="1" value="75" id="2504048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward    Id 486836356 " fill="rgb(255,107,0)" points="1222.01,1929.04 1227.2,1933.92 1232.15,1931.86 1226.02,1927.36 " />
<svg:polygon detid="486836360" count="1" value="75" id="2504049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward    Id 486836360 " fill="rgb(255,107,0)" points="1227.33,1926.74 1233.42,1931.26 1237.95,1928.88 1231,1924.82 " />
<svg:polygon detid="486836364" count="1" value="75" id="2504050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  3 forward    Id 486836364 " fill="rgb(255,107,0)" points="1232.19,1924.12 1239.1,1928.2 1243.14,1925.54 1235.47,1921.96 " />
<svg:polygon detid="486836368" count="1" value="75" id="2504051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  0 backward    Id 486836368 " fill="rgb(255,107,0)" points="1236.51,1921.19 1244.16,1924.79 1247.67,1921.88 1239.36,1918.83 " />
<svg:polygon detid="486803588" count="1" value="75" id="2504052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward    Id 486803588 " fill="rgb(255,107,0)" points="1240.25,1917.99 1248.54,1921.07 1251.47,1917.95 1242.63,1915.46 " />
<svg:polygon detid="486803592" count="1" value="75" id="2504053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  2 forward    Id 486803592 " fill="rgb(255,107,0)" points="1243.36,1914.57 1252.18,1917.08 1254.5,1913.78 1245.24,1911.89 " />
<svg:polygon detid="486803596" count="1" value="75" id="2504054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  3 forward    Id 486803596 " fill="rgb(255,107,0)" points="1245.8,1910.96 1255.04,1912.88 1256.72,1909.45 1247.16,1908.18 " />
<svg:polygon detid="486834576" count="1" value="75" id="2504055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  0 backward    Id 486834576 " fill="rgb(255,107,0)" points="1247.53,1907.22 1257.08,1908.52 1258.1,1905 1248.36,1904.36 " />
<svg:polygon detid="486834564" count="1" value="75" id="2504056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward    Id 486834564 " fill="rgb(255,107,0)" points="1248.55,1903.38 1258.28,1904.04 1258.62,1900.48 1248.82,1900.49 " />
<svg:polygon detid="486834602" count="1" value="75" id="2505001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward    Id 486834602 " fill="rgb(255,107,0)" points="1272.31,1893.17 1259.92,1894.35 1260.56,1899.15 " />
<svg:polygon detid="486801830" count="1" value="75" id="2505002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward    Id 486801830 " fill="rgb(255,107,0)" points="1269.48,1885.68 1257.56,1887.98 1259.47,1892.67 " />
<svg:polygon detid="486801834" count="1" value="75" id="2505003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  2 forward    Id 486801834 " fill="rgb(255,107,0)" points="1264.7,1878.54 1253.53,1881.92 1256.66,1886.36 " />
<svg:polygon detid="486801838" count="1" value="75" id="2505004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  3 forward    Id 486801838 " fill="rgb(255,107,0)" points="1258.07,1871.93 1247.94,1876.29 1252.21,1880.4 " />
<svg:polygon detid="486834854" count="1" value="75" id="2505005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward    Id 486834854 " fill="rgb(255,107,0)" points="1249.77,1866.02 1240.92,1871.25 1246.23,1874.91 " />
<svg:polygon detid="486834858" count="1" value="75" id="2505006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward    Id 486834858 " fill="rgb(255,107,0)" points="1240,1860.93 1232.65,1866.92 1238.87,1870.05 " />
<svg:polygon detid="486802086" count="1" value="75" id="2505007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward    Id 486802086 " fill="rgb(255,107,0)" points="1228.99,1856.81 1223.32,1863.4 1230.3,1865.92 " />
<svg:polygon detid="486802090" count="1" value="75" id="2505008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  2 forward    Id 486802090 " fill="rgb(255,107,0)" points="1217.03,1853.76 1213.18,1860.79 1220.74,1862.63 " />
<svg:polygon detid="486802094" count="1" value="75" id="2505009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  3 forward    Id 486802094 " fill="rgb(255,107,0)" points="1204.4,1851.84 1202.47,1859.14 1210.43,1860.26 " />
<svg:polygon detid="486835110" count="1" value="75" id="2505010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward    Id 486835110 " fill="rgb(255,107,0)" points="1191.41,1851.11 1191.45,1858.49 1199.61,1858.87 " />
<svg:polygon detid="486835114" count="1" value="75" id="2505011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward    Id 486835114 " fill="rgb(255,107,0)" points="1178.39,1851.58 1180.39,1858.87 1188.55,1858.49 " />
<svg:polygon detid="486802342" count="1" value="75" id="2505012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward    Id 486802342 " fill="rgb(255,107,0)" points="1165.66,1853.24 1169.57,1860.26 1177.53,1859.14 " />
<svg:polygon detid="486802346" count="1" value="75" id="2505013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  2 forward    Id 486802346 " fill="rgb(255,107,0)" points="1153.53,1856.06 1159.26,1862.63 1166.82,1860.79 " />
<svg:polygon detid="486802350" count="1" value="75" id="2505014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  3 forward    Id 486802350 " fill="rgb(255,107,0)" points="1142.29,1859.96 1149.7,1865.92 1156.68,1863.4 " />
<svg:polygon detid="486835366" count="1" value="75" id="2505015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward    Id 486835366 " fill="rgb(255,107,0)" points="1132.23,1864.84 1141.13,1870.05 1147.35,1866.92 " />
<svg:polygon detid="486835370" count="1" value="75" id="2505016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward    Id 486835370 " fill="rgb(255,107,0)" points="1123.59,1870.59 1133.77,1874.91 1139.08,1871.25 " />
<svg:polygon detid="486802598" count="1" value="75" id="2505017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward    Id 486802598 " fill="rgb(255,107,0)" points="1116.59,1877.06 1127.79,1880.4 1132.06,1876.29 " />
<svg:polygon detid="486802602" count="1" value="75" id="2505018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  2 forward    Id 486802602 " fill="rgb(255,107,0)" points="1111.39,1884.1 1123.34,1886.36 1126.47,1881.92 " />
<svg:polygon detid="486802606" count="1" value="75" id="2505019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  3 forward    Id 486802606 " fill="rgb(255,107,0)" points="1108.13,1891.53 1120.53,1892.67 1122.44,1887.98 " />
<svg:polygon detid="486835622" count="1" value="75" id="2505020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward    Id 486835622 " fill="rgb(255,107,0)" points="1106.88,1899.17 1119.44,1899.15 1120.08,1894.35 " />
<svg:polygon detid="486835626" count="1" value="75" id="2505021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward    Id 486835626 " fill="rgb(255,107,0)" points="1107.69,1906.83 1120.08,1905.65 1119.44,1900.85 " />
<svg:polygon detid="486802854" count="1" value="75" id="2505022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward    Id 486802854 " fill="rgb(255,107,0)" points="1110.52,1914.32 1122.44,1912.02 1120.53,1907.33 " />
<svg:polygon detid="486802858" count="1" value="75" id="2505023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  2 forward    Id 486802858 " fill="rgb(255,107,0)" points="1115.3,1921.46 1126.47,1918.08 1123.34,1913.64 " />
<svg:polygon detid="486802862" count="1" value="75" id="2505024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  3 forward    Id 486802862 " fill="rgb(255,107,0)" points="1121.93,1928.07 1132.06,1923.71 1127.79,1919.6 " />
<svg:polygon detid="486835878" count="1" value="75" id="2505025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward    Id 486835878 " fill="rgb(255,107,0)" points="1130.23,1933.98 1139.08,1928.75 1133.77,1925.09 " />
<svg:polygon detid="486835882" count="1" value="75" id="2505026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward    Id 486835882 " fill="rgb(255,107,0)" points="1140,1939.07 1147.35,1933.08 1141.13,1929.95 " />
<svg:polygon detid="486803110" count="1" value="75" id="2505027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward    Id 486803110 " fill="rgb(255,107,0)" points="1151.01,1943.19 1156.68,1936.6 1149.7,1934.08 " />
<svg:polygon detid="486803114" count="1" value="75" id="2505028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  2 forward    Id 486803114 " fill="rgb(255,107,0)" points="1162.97,1946.24 1166.82,1939.21 1159.26,1937.37 " />
<svg:polygon detid="486803118" count="1" value="75" id="2505029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  3 forward    Id 486803118 " fill="rgb(255,107,0)" points="1175.6,1948.16 1177.53,1940.86 1169.57,1939.74 " />
<svg:polygon detid="486836134" count="1" value="75" id="2505030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward    Id 486836134 " fill="rgb(255,107,0)" points="1188.59,1948.89 1188.55,1941.51 1180.39,1941.13 " />
<svg:polygon detid="486836138" count="1" value="75" id="2505031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward    Id 486836138 " fill="rgb(255,107,0)" points="1201.61,1948.42 1199.61,1941.13 1191.45,1941.51 " />
<svg:polygon detid="486803366" count="1" value="75" id="2505032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward    Id 486803366 " fill="rgb(255,107,0)" points="1214.34,1946.76 1210.43,1939.74 1202.47,1940.86 " />
<svg:polygon detid="486803370" count="1" value="75" id="2505033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  2 forward    Id 486803370 " fill="rgb(255,107,0)" points="1226.47,1943.94 1220.74,1937.37 1213.18,1939.21 " />
<svg:polygon detid="486803374" count="1" value="75" id="2505034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  3 forward    Id 486803374 " fill="rgb(255,107,0)" points="1237.71,1940.04 1230.3,1934.08 1223.32,1936.6 " />
<svg:polygon detid="486836390" count="1" value="75" id="2505035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward    Id 486836390 " fill="rgb(255,107,0)" points="1247.77,1935.16 1238.87,1929.95 1232.65,1933.08 " />
<svg:polygon detid="486836394" count="1" value="75" id="2505036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward    Id 486836394 " fill="rgb(255,107,0)" points="1256.41,1929.41 1246.23,1925.09 1240.92,1928.75 " />
<svg:polygon detid="486803622" count="1" value="75" id="2505037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward    Id 486803622 " fill="rgb(255,107,0)" points="1263.41,1922.94 1252.21,1919.6 1247.94,1923.71 " />
<svg:polygon detid="486803626" count="1" value="75" id="2505038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  2 forward    Id 486803626 " fill="rgb(255,107,0)" points="1268.61,1915.9 1256.66,1913.64 1253.53,1918.08 " />
<svg:polygon detid="486803630" count="1" value="75" id="2505039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  3 forward    Id 486803630 " fill="rgb(255,107,0)" points="1271.87,1908.47 1259.47,1907.33 1257.56,1912.02 " />
<svg:polygon detid="486834598" count="1" value="75" id="2505040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward    Id 486834598 " fill="rgb(255,107,0)" points="1273.12,1900.83 1260.56,1900.85 1259.92,1905.65 " />
<svg:polygon detid="486834601" count="1" value="75" id="2505101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward   stereo Id 486834601 " fill="rgb(255,107,0)" points="1260.56,1899.15 1273.12,1899.17 1272.31,1893.17 " />
<svg:polygon detid="486801829" count="1" value="75" id="2505102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward   stereo Id 486801829 " fill="rgb(255,107,0)" points="1259.47,1892.67 1271.87,1891.53 1269.48,1885.68 " />
<svg:polygon detid="486801833" count="1" value="75" id="2505103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  2 forward   stereo Id 486801833 " fill="rgb(255,107,0)" points="1256.66,1886.36 1268.61,1884.1 1264.7,1878.54 " />
<svg:polygon detid="486801837" count="1" value="75" id="2505104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  3 forward   stereo Id 486801837 " fill="rgb(255,107,0)" points="1252.21,1880.4 1263.41,1877.06 1258.07,1871.93 " />
<svg:polygon detid="486834853" count="1" value="75" id="2505105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward   stereo Id 486834853 " fill="rgb(255,107,0)" points="1246.23,1874.91 1256.41,1870.59 1249.77,1866.02 " />
<svg:polygon detid="486834857" count="1" value="75" id="2505106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward   stereo Id 486834857 " fill="rgb(255,107,0)" points="1238.87,1870.05 1247.77,1864.84 1240,1860.93 " />
<svg:polygon detid="486802085" count="1" value="75" id="2505107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward   stereo Id 486802085 " fill="rgb(255,107,0)" points="1230.3,1865.92 1237.71,1859.96 1228.99,1856.81 " />
<svg:polygon detid="486802089" count="1" value="75" id="2505108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  2 forward   stereo Id 486802089 " fill="rgb(255,107,0)" points="1220.74,1862.63 1226.47,1856.06 1217.03,1853.76 " />
<svg:polygon detid="486802093" count="1" value="75" id="2505109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  3 forward   stereo Id 486802093 " fill="rgb(255,107,0)" points="1210.43,1860.26 1214.34,1853.24 1204.4,1851.84 " />
<svg:polygon detid="486835109" count="1" value="75" id="2505110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward   stereo Id 486835109 " fill="rgb(255,107,0)" points="1199.61,1858.87 1201.61,1851.58 1191.41,1851.11 " />
<svg:polygon detid="486835113" count="1" value="75" id="2505111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward   stereo Id 486835113 " fill="rgb(255,107,0)" points="1188.55,1858.49 1188.59,1851.11 1178.39,1851.58 " />
<svg:polygon detid="486802341" count="1" value="75" id="2505112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward   stereo Id 486802341 " fill="rgb(255,107,0)" points="1177.53,1859.14 1175.6,1851.84 1165.66,1853.24 " />
<svg:polygon detid="486802345" count="1" value="75" id="2505113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  2 forward   stereo Id 486802345 " fill="rgb(255,107,0)" points="1166.82,1860.79 1162.97,1853.76 1153.53,1856.06 " />
<svg:polygon detid="486802349" count="1" value="75" id="2505114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  3 forward   stereo Id 486802349 " fill="rgb(255,107,0)" points="1156.68,1863.4 1151.01,1856.81 1142.29,1859.96 " />
<svg:polygon detid="486835365" count="1" value="75" id="2505115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward   stereo Id 486835365 " fill="rgb(255,107,0)" points="1147.35,1866.92 1140,1860.93 1132.23,1864.84 " />
<svg:polygon detid="486835369" count="1" value="75" id="2505116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward   stereo Id 486835369 " fill="rgb(255,107,0)" points="1139.08,1871.25 1130.23,1866.02 1123.59,1870.59 " />
<svg:polygon detid="486802597" count="1" value="75" id="2505117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward   stereo Id 486802597 " fill="rgb(255,107,0)" points="1132.06,1876.29 1121.93,1871.93 1116.59,1877.06 " />
<svg:polygon detid="486802601" count="1" value="75" id="2505118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  2 forward   stereo Id 486802601 " fill="rgb(255,107,0)" points="1126.47,1881.92 1115.3,1878.54 1111.39,1884.1 " />
<svg:polygon detid="486802605" count="1" value="75" id="2505119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  3 forward   stereo Id 486802605 " fill="rgb(255,107,0)" points="1122.44,1887.98 1110.52,1885.68 1108.13,1891.53 " />
<svg:polygon detid="486835621" count="1" value="75" id="2505120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward   stereo Id 486835621 " fill="rgb(255,107,0)" points="1120.08,1894.35 1107.69,1893.17 1106.88,1899.17 " />
<svg:polygon detid="486835625" count="1" value="75" id="2505121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward   stereo Id 486835625 " fill="rgb(255,107,0)" points="1119.44,1900.85 1106.88,1900.83 1107.69,1906.83 " />
<svg:polygon detid="486802853" count="1" value="75" id="2505122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward   stereo Id 486802853 " fill="rgb(255,107,0)" points="1120.53,1907.33 1108.13,1908.47 1110.52,1914.32 " />
<svg:polygon detid="486802857" count="1" value="75" id="2505123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  2 forward   stereo Id 486802857 " fill="rgb(255,107,0)" points="1123.34,1913.64 1111.39,1915.9 1115.3,1921.46 " />
<svg:polygon detid="486802861" count="1" value="75" id="2505124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  3 forward   stereo Id 486802861 " fill="rgb(255,107,0)" points="1127.79,1919.6 1116.59,1922.94 1121.93,1928.07 " />
<svg:polygon detid="486835877" count="1" value="75" id="2505125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward   stereo Id 486835877 " fill="rgb(255,107,0)" points="1133.77,1925.09 1123.59,1929.41 1130.23,1933.98 " />
<svg:polygon detid="486835881" count="1" value="75" id="2505126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward   stereo Id 486835881 " fill="rgb(255,107,0)" points="1141.13,1929.95 1132.23,1935.16 1140,1939.07 " />
<svg:polygon detid="486803109" count="1" value="75" id="2505127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward   stereo Id 486803109 " fill="rgb(255,107,0)" points="1149.7,1934.08 1142.29,1940.04 1151.01,1943.19 " />
<svg:polygon detid="486803113" count="1" value="75" id="2505128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  2 forward   stereo Id 486803113 " fill="rgb(255,107,0)" points="1159.26,1937.37 1153.53,1943.94 1162.97,1946.24 " />
<svg:polygon detid="486803117" count="1" value="75" id="2505129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  3 forward   stereo Id 486803117 " fill="rgb(255,107,0)" points="1169.57,1939.74 1165.66,1946.76 1175.6,1948.16 " />
<svg:polygon detid="486836133" count="1" value="75" id="2505130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward   stereo Id 486836133 " fill="rgb(255,107,0)" points="1180.39,1941.13 1178.39,1948.42 1188.59,1948.89 " />
<svg:polygon detid="486836137" count="1" value="75" id="2505131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward   stereo Id 486836137 " fill="rgb(255,107,0)" points="1191.45,1941.51 1191.41,1948.89 1201.61,1948.42 " />
<svg:polygon detid="486803365" count="1" value="75" id="2505132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward   stereo Id 486803365 " fill="rgb(255,107,0)" points="1202.47,1940.86 1204.4,1948.16 1214.34,1946.76 " />
<svg:polygon detid="486803369" count="1" value="75" id="2505133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  2 forward   stereo Id 486803369 " fill="rgb(255,107,0)" points="1213.18,1939.21 1217.03,1946.24 1226.47,1943.94 " />
<svg:polygon detid="486803373" count="1" value="75" id="2505134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  3 forward   stereo Id 486803373 " fill="rgb(255,107,0)" points="1223.32,1936.6 1228.99,1943.19 1237.71,1940.04 " />
<svg:polygon detid="486836389" count="1" value="75" id="2505135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward   stereo Id 486836389 " fill="rgb(255,107,0)" points="1232.65,1933.08 1240,1939.07 1247.77,1935.16 " />
<svg:polygon detid="486836393" count="1" value="75" id="2505136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward   stereo Id 486836393 " fill="rgb(255,107,0)" points="1240.92,1928.75 1249.77,1933.98 1256.41,1929.41 " />
<svg:polygon detid="486803621" count="1" value="75" id="2505137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward   stereo Id 486803621 " fill="rgb(255,107,0)" points="1247.94,1923.71 1258.07,1928.07 1263.41,1922.94 " />
<svg:polygon detid="486803625" count="1" value="75" id="2505138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  2 forward   stereo Id 486803625 " fill="rgb(255,107,0)" points="1253.53,1918.08 1264.7,1921.46 1268.61,1915.9 " />
<svg:polygon detid="486803629" count="1" value="75" id="2505139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  3 forward   stereo Id 486803629 " fill="rgb(255,107,0)" points="1257.56,1912.02 1269.48,1914.32 1271.87,1908.47 " />
<svg:polygon detid="486834597" count="1" value="75" id="2505140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward   stereo Id 486834597 " fill="rgb(255,107,0)" points="1259.92,1905.65 1272.31,1906.83 1273.12,1900.83 " />
<svg:polygon detid="486834628" count="1" value="75" id="2506001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward    Id 486834628 " fill="rgb(255,107,0)" points="1275.05,1899.28 1290.71,1899.3 1290.21,1894.06 1274.65,1895.12 " />
<svg:polygon detid="486834636" count="1" value="75" id="2506002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  3 forward    Id 486834636 " fill="rgb(255,107,0)" points="1274.38,1893.68 1289.94,1892.67 1288.45,1887.5 1273.19,1889.57 " />
<svg:polygon detid="486801860" count="1" value="75" id="2506003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward    Id 486801860 " fill="rgb(255,107,0)" points="1272.64,1888.16 1287.92,1886.14 1285.45,1881.1 1270.68,1884.16 " />
<svg:polygon detid="486801864" count="1" value="75" id="2506004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  2 forward    Id 486801864 " fill="rgb(255,107,0)" points="1269.87,1882.8 1284.66,1879.77 1281.25,1874.93 1267.16,1878.94 " />
<svg:polygon detid="486801868" count="1" value="75" id="2506005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  3 forward    Id 486801868 " fill="rgb(255,107,0)" points="1266.09,1877.64 1280.22,1873.67 1275.9,1869.08 1262.66,1873.99 " />
<svg:polygon detid="486834884" count="1" value="75" id="2506006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward    Id 486834884 " fill="rgb(255,107,0)" points="1261.36,1872.77 1274.64,1867.89 1269.48,1863.61 1257.26,1869.37 " />
<svg:polygon detid="486834888" count="1" value="75" id="2506007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward    Id 486834888 " fill="rgb(255,107,0)" points="1255.73,1868.24 1267.99,1862.52 1262.05,1858.61 1251,1865.13 " />
<svg:polygon detid="486834892" count="1" value="75" id="2506008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  3 forward    Id 486834892 " fill="rgb(255,107,0)" points="1249.27,1864.11 1260.37,1857.62 1253.72,1854.12 1243.98,1861.34 " />
<svg:polygon detid="486834896" count="1" value="75" id="2506009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  0 backward    Id 486834896 " fill="rgb(255,107,0)" points="1242.07,1860.44 1251.86,1853.25 1244.59,1850.21 1236.29,1858.02 " />
<svg:polygon detid="486802116" count="1" value="75" id="2506010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward    Id 486802116 " fill="rgb(255,107,0)" points="1234.21,1857.26 1242.57,1849.47 1234.77,1846.93 1228.01,1855.24 " />
<svg:polygon detid="486802120" count="1" value="75" id="2506011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  2 forward    Id 486802120 " fill="rgb(255,107,0)" points="1225.8,1854.61 1232.62,1846.32 1224.38,1844.32 1219.25,1853.02 " />
<svg:polygon detid="486802124" count="1" value="75" id="2506012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  3 forward    Id 486802124 " fill="rgb(255,107,0)" points="1216.93,1852.54 1222.14,1843.85 1213.57,1842.4 1210.12,1851.39 " />
<svg:polygon detid="486835140" count="1" value="75" id="2506013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward    Id 486835140 " fill="rgb(255,107,0)" points="1207.73,1851.07 1211.25,1842.09 1202.46,1841.21 1200.74,1850.37 " />
<svg:polygon detid="486835144" count="1" value="75" id="2506014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward    Id 486835144 " fill="rgb(255,107,0)" points="1198.3,1850.21 1200.09,1841.06 1191.19,1840.76 1191.23,1849.97 " />
<svg:polygon detid="486835148" count="1" value="75" id="2506015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  3 forward    Id 486835148 " fill="rgb(255,107,0)" points="1188.77,1849.97 1188.81,1840.76 1179.91,1841.06 1181.7,1850.21 " />
<svg:polygon detid="486835152" count="1" value="75" id="2506016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  0 backward    Id 486835152 " fill="rgb(255,107,0)" points="1179.26,1850.37 1177.54,1841.21 1168.75,1842.09 1172.27,1851.07 " />
<svg:polygon detid="486802372" count="1" value="75" id="2506017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward    Id 486802372 " fill="rgb(255,107,0)" points="1169.88,1851.39 1166.43,1842.4 1157.86,1843.85 1163.07,1852.54 " />
<svg:polygon detid="486802376" count="1" value="75" id="2506018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  2 forward    Id 486802376 " fill="rgb(255,107,0)" points="1160.75,1853.02 1155.62,1844.32 1147.38,1846.32 1154.2,1854.61 " />
<svg:polygon detid="486802380" count="1" value="75" id="2506019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  3 forward    Id 486802380 " fill="rgb(255,107,0)" points="1151.99,1855.24 1145.23,1846.93 1137.43,1849.47 1145.79,1857.26 " />
<svg:polygon detid="486835396" count="1" value="75" id="2506020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward    Id 486835396 " fill="rgb(255,107,0)" points="1143.71,1858.02 1135.41,1850.21 1128.14,1853.25 1137.93,1860.44 " />
<svg:polygon detid="486835400" count="1" value="75" id="2506021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward    Id 486835400 " fill="rgb(255,107,0)" points="1136.02,1861.34 1126.28,1854.12 1119.63,1857.62 1130.73,1864.11 " />
<svg:polygon detid="486835404" count="1" value="75" id="2506022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  3 forward    Id 486835404 " fill="rgb(255,107,0)" points="1129,1865.13 1117.95,1858.61 1112.01,1862.52 1124.27,1868.24 " />
<svg:polygon detid="486835408" count="1" value="75" id="2506023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  0 backward    Id 486835408 " fill="rgb(255,107,0)" points="1122.74,1869.37 1110.52,1863.61 1105.36,1867.89 1118.64,1872.77 " />
<svg:polygon detid="486802628" count="1" value="75" id="2506024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward    Id 486802628 " fill="rgb(255,107,0)" points="1117.34,1873.99 1104.1,1869.08 1099.78,1873.67 1113.91,1877.64 " />
<svg:polygon detid="486802632" count="1" value="75" id="2506025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  2 forward    Id 486802632 " fill="rgb(255,107,0)" points="1112.84,1878.94 1098.75,1874.93 1095.34,1879.77 1110.13,1882.8 " />
<svg:polygon detid="486802636" count="1" value="75" id="2506026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  3 forward    Id 486802636 " fill="rgb(255,107,0)" points="1109.32,1884.16 1094.55,1881.1 1092.08,1886.14 1107.36,1888.16 " />
<svg:polygon detid="486835652" count="1" value="75" id="2506027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward    Id 486835652 " fill="rgb(255,107,0)" points="1106.81,1889.57 1091.55,1887.5 1090.06,1892.67 1105.62,1893.68 " />
<svg:polygon detid="486835656" count="1" value="75" id="2506028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward    Id 486835656 " fill="rgb(255,107,0)" points="1105.35,1895.12 1089.79,1894.06 1089.29,1899.3 1104.95,1899.28 " />
<svg:polygon detid="486835660" count="1" value="75" id="2506029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  3 forward    Id 486835660 " fill="rgb(255,107,0)" points="1104.95,1900.72 1089.29,1900.7 1089.79,1905.94 1105.35,1904.88 " />
<svg:polygon detid="486835664" count="1" value="75" id="2506030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  0 backward    Id 486835664 " fill="rgb(255,107,0)" points="1105.62,1906.32 1090.06,1907.33 1091.55,1912.5 1106.81,1910.43 " />
<svg:polygon detid="486802884" count="1" value="75" id="2506031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward    Id 486802884 " fill="rgb(255,107,0)" points="1107.36,1911.84 1092.08,1913.86 1094.55,1918.9 1109.32,1915.84 " />
<svg:polygon detid="486802888" count="1" value="75" id="2506032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  2 forward    Id 486802888 " fill="rgb(255,107,0)" points="1110.13,1917.2 1095.34,1920.23 1098.75,1925.07 1112.84,1921.06 " />
<svg:polygon detid="486802892" count="1" value="75" id="2506033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  3 forward    Id 486802892 " fill="rgb(255,107,0)" points="1113.91,1922.36 1099.78,1926.33 1104.1,1930.92 1117.34,1926.01 " />
<svg:polygon detid="486835908" count="1" value="75" id="2506034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward    Id 486835908 " fill="rgb(255,107,0)" points="1118.64,1927.23 1105.36,1932.11 1110.52,1936.39 1122.74,1930.63 " />
<svg:polygon detid="486835912" count="1" value="75" id="2506035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward    Id 486835912 " fill="rgb(255,107,0)" points="1124.27,1931.76 1112.01,1937.48 1117.95,1941.39 1129,1934.87 " />
<svg:polygon detid="486835916" count="1" value="75" id="2506036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  3 forward    Id 486835916 " fill="rgb(255,107,0)" points="1130.73,1935.89 1119.63,1942.38 1126.28,1945.88 1136.02,1938.66 " />
<svg:polygon detid="486835920" count="1" value="75" id="2506037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  0 backward    Id 486835920 " fill="rgb(255,107,0)" points="1137.93,1939.56 1128.14,1946.75 1135.41,1949.79 1143.71,1941.98 " />
<svg:polygon detid="486803140" count="1" value="75" id="2506038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward    Id 486803140 " fill="rgb(255,107,0)" points="1145.79,1942.74 1137.43,1950.53 1145.23,1953.07 1151.99,1944.76 " />
<svg:polygon detid="486803144" count="1" value="75" id="2506039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  2 forward    Id 486803144 " fill="rgb(255,107,0)" points="1154.2,1945.39 1147.38,1953.68 1155.62,1955.68 1160.75,1946.98 " />
<svg:polygon detid="486803148" count="1" value="75" id="2506040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  3 forward    Id 486803148 " fill="rgb(255,107,0)" points="1163.07,1947.46 1157.86,1956.15 1166.43,1957.6 1169.88,1948.61 " />
<svg:polygon detid="486836164" count="1" value="75" id="2506041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward    Id 486836164 " fill="rgb(255,107,0)" points="1172.27,1948.93 1168.75,1957.91 1177.54,1958.79 1179.26,1949.63 " />
<svg:polygon detid="486836168" count="1" value="75" id="2506042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward    Id 486836168 " fill="rgb(255,107,0)" points="1181.7,1949.79 1179.91,1958.94 1188.81,1959.24 1188.77,1950.03 " />
<svg:polygon detid="486836172" count="1" value="75" id="2506043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  3 forward    Id 486836172 " fill="rgb(255,107,0)" points="1191.23,1950.03 1191.19,1959.24 1200.09,1958.94 1198.3,1949.79 " />
<svg:polygon detid="486836176" count="1" value="75" id="2506044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  0 backward    Id 486836176 " fill="rgb(255,107,0)" points="1200.74,1949.63 1202.46,1958.79 1211.25,1957.91 1207.73,1948.93 " />
<svg:polygon detid="486803396" count="1" value="75" id="2506045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward    Id 486803396 " fill="rgb(255,107,0)" points="1210.12,1948.61 1213.57,1957.6 1222.14,1956.15 1216.93,1947.46 " />
<svg:polygon detid="486803400" count="1" value="75" id="2506046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  2 forward    Id 486803400 " fill="rgb(255,107,0)" points="1219.25,1946.98 1224.38,1955.68 1232.62,1953.68 1225.8,1945.39 " />
<svg:polygon detid="486803404" count="1" value="75" id="2506047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  3 forward    Id 486803404 " fill="rgb(255,107,0)" points="1228.01,1944.76 1234.77,1953.07 1242.57,1950.53 1234.21,1942.74 " />
<svg:polygon detid="486836420" count="1" value="75" id="2506048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward    Id 486836420 " fill="rgb(255,107,0)" points="1236.29,1941.98 1244.59,1949.79 1251.86,1946.75 1242.07,1939.56 " />
<svg:polygon detid="486836424" count="1" value="75" id="2506049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward    Id 486836424 " fill="rgb(255,107,0)" points="1243.98,1938.66 1253.72,1945.88 1260.37,1942.38 1249.27,1935.89 " />
<svg:polygon detid="486836428" count="1" value="75" id="2506050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  3 forward    Id 486836428 " fill="rgb(255,107,0)" points="1251,1934.87 1262.05,1941.39 1267.99,1937.48 1255.73,1931.76 " />
<svg:polygon detid="486836432" count="1" value="75" id="2506051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  0 backward    Id 486836432 " fill="rgb(255,107,0)" points="1257.26,1930.63 1269.48,1936.39 1274.64,1932.11 1261.36,1927.23 " />
<svg:polygon detid="486803652" count="1" value="75" id="2506052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward    Id 486803652 " fill="rgb(255,107,0)" points="1262.66,1926.01 1275.9,1930.92 1280.22,1926.33 1266.09,1922.36 " />
<svg:polygon detid="486803656" count="1" value="75" id="2506053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  2 forward    Id 486803656 " fill="rgb(255,107,0)" points="1267.16,1921.06 1281.25,1925.07 1284.66,1920.23 1269.87,1917.2 " />
<svg:polygon detid="486803660" count="1" value="75" id="2506054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  3 forward    Id 486803660 " fill="rgb(255,107,0)" points="1270.68,1915.84 1285.45,1918.9 1287.92,1913.86 1272.64,1911.84 " />
<svg:polygon detid="486834640" count="1" value="75" id="2506055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  0 backward    Id 486834640 " fill="rgb(255,107,0)" points="1273.19,1910.43 1288.45,1912.5 1289.94,1907.33 1274.38,1906.32 " />
<svg:polygon detid="486834632" count="1" value="75" id="2506056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward    Id 486834632 " fill="rgb(255,107,0)" points="1274.65,1904.88 1290.21,1905.94 1290.71,1900.7 1275.05,1900.72 " />
<svg:polygon detid="486834660" count="1" value="75" id="2507001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 forward    Id 486834660 " fill="rgb(255,107,0)" points="1293.72,1901.79 1311.12,1902.21 1311.12,1897.79 1293.72,1898.21 " />
<svg:polygon detid="486834668" count="1" value="75" id="2507002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  3 forward    Id 486834668 " fill="rgb(255,107,0)" points="1293.64,1896.99 1311.04,1896.61 1310.46,1892.21 1293.17,1893.43 " />
<svg:polygon detid="486834672" count="1" value="75" id="2507003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  0 backward    Id 486834672 " fill="rgb(255,107,0)" points="1292.92,1892.22 1310.22,1891.03 1309.05,1886.68 1291.97,1888.69 " />
<svg:polygon detid="486801892" count="1" value="75" id="2507004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 forward    Id 486801892 " fill="rgb(255,107,0)" points="1291.57,1887.49 1308.65,1885.51 1306.9,1881.22 1290.15,1884.02 " />
<svg:polygon detid="486801896" count="1" value="75" id="2507005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  2 forward    Id 486801896 " fill="rgb(255,107,0)" points="1289.59,1882.85 1306.35,1880.08 1304.04,1875.89 1287.71,1879.45 " />
<svg:polygon detid="486801900" count="1" value="75" id="2507006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  3 forward    Id 486801900 " fill="rgb(255,107,0)" points="1286.99,1878.3 1303.34,1874.77 1300.47,1870.7 1284.67,1875 " />
<svg:polygon detid="486801904" count="1" value="75" id="2507007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  0 backward    Id 486801904 " fill="rgb(255,107,0)" points="1283.8,1873.89 1299.62,1869.62 1296.22,1865.69 1281.04,1870.71 " />
<svg:polygon detid="486801908" count="1" value="75" id="2507008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 forward  module  1 backward    Id 486801908 " fill="rgb(255,107,0)" points="1280.03,1869.64 1295.23,1864.65 1291.32,1860.89 1276.85,1866.6 " />
<svg:polygon detid="486834916" count="1" value="75" id="2507009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 forward    Id 486834916 " fill="rgb(255,107,0)" points="1275.7,1865.58 1290.19,1859.9 1285.79,1856.34 1272.13,1862.69 " />
<svg:polygon detid="486834920" count="1" value="75" id="2507010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  2 forward    Id 486834920 " fill="rgb(255,107,0)" points="1270.84,1861.73 1284.54,1855.4 1279.67,1852.05 1266.9,1859.02 " />
<svg:polygon detid="486834924" count="1" value="75" id="2507011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  3 forward    Id 486834924 " fill="rgb(255,107,0)" points="1265.49,1858.12 1278.3,1851.18 1273,1848.06 1261.19,1855.59 " />
<svg:polygon detid="486834928" count="1" value="75" id="2507012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  0 backward    Id 486834928 " fill="rgb(255,107,0)" points="1259.67,1854.77 1271.51,1847.25 1265.81,1844.39 1255.05,1852.44 " />
<svg:polygon detid="486834932" count="1" value="75" id="2507013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 backward  module  1 backward    Id 486834932 " fill="rgb(255,107,0)" points="1253.43,1851.69 1264.23,1843.65 1258.16,1841.06 1248.51,1849.59 " />
<svg:polygon detid="486802148" count="1" value="75" id="2507014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 forward    Id 486802148 " fill="rgb(255,107,0)" points="1246.79,1848.91 1256.48,1840.4 1250.09,1838.1 1241.6,1847.04 " />
<svg:polygon detid="486802152" count="1" value="75" id="2507015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  2 forward    Id 486802152 " fill="rgb(255,107,0)" points="1239.8,1846.45 1248.33,1837.52 1241.65,1835.52 1234.38,1844.83 " />
<svg:polygon detid="486802156" count="1" value="75" id="2507016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  3 forward    Id 486802156 " fill="rgb(255,107,0)" points="1232.5,1844.31 1239.81,1835.02 1232.89,1833.33 1226.89,1842.95 " />
<svg:polygon detid="486802160" count="1" value="75" id="2507017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  0 backward    Id 486802160 " fill="rgb(255,107,0)" points="1224.94,1842.52 1230.99,1832.92 1223.86,1831.56 1219.16,1841.42 " />
<svg:polygon detid="486802164" count="1" value="75" id="2507018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 2 forward  module  1 backward    Id 486802164 " fill="rgb(255,107,0)" points="1217.17,1841.09 1221.92,1831.23 1214.63,1830.21 1211.26,1840.25 " />
<svg:polygon detid="486835172" count="1" value="75" id="2507019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 forward    Id 486835172 " fill="rgb(255,107,0)" points="1209.23,1840.02 1212.65,1829.97 1205.25,1829.28 1203.22,1839.46 " />
<svg:polygon detid="486835176" count="1" value="75" id="2507020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  2 forward    Id 486835176 " fill="rgb(255,107,0)" points="1201.17,1839.31 1203.24,1829.14 1195.77,1828.8 1195.11,1839.03 " />
<svg:polygon detid="486835180" count="1" value="75" id="2507021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  3 forward    Id 486835180 " fill="rgb(255,107,0)" points="1193.04,1838.99 1193.75,1828.75 1186.25,1828.75 1186.96,1838.99 " />
<svg:polygon detid="486835184" count="1" value="75" id="2507022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  0 backward    Id 486835184 " fill="rgb(255,107,0)" points="1184.89,1839.03 1184.23,1828.8 1176.76,1829.14 1178.83,1839.31 " />
<svg:polygon detid="486835188" count="1" value="75" id="2507023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 backward  module  1 backward    Id 486835188 " fill="rgb(255,107,0)" points="1176.78,1839.46 1174.75,1829.28 1167.35,1829.97 1170.77,1840.02 " />
<svg:polygon detid="486802404" count="1" value="75" id="2507024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 forward    Id 486802404 " fill="rgb(255,107,0)" points="1168.74,1840.25 1165.37,1830.21 1158.08,1831.23 1162.83,1841.09 " />
<svg:polygon detid="486802408" count="1" value="75" id="2507025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  2 forward    Id 486802408 " fill="rgb(255,107,0)" points="1160.84,1841.42 1156.14,1831.56 1149.01,1832.92 1155.06,1842.52 " />
<svg:polygon detid="486802412" count="1" value="75" id="2507026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  3 forward    Id 486802412 " fill="rgb(255,107,0)" points="1153.11,1842.95 1147.11,1833.33 1140.19,1835.02 1147.5,1844.31 " />
<svg:polygon detid="486802416" count="1" value="75" id="2507027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  0 backward    Id 486802416 " fill="rgb(255,107,0)" points="1145.62,1844.83 1138.35,1835.52 1131.67,1837.52 1140.2,1846.45 " />
<svg:polygon detid="486802420" count="1" value="75" id="2507028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 3 forward  module  1 backward    Id 486802420 " fill="rgb(255,107,0)" points="1138.4,1847.04 1129.91,1838.1 1123.52,1840.4 1133.21,1848.91 " />
<svg:polygon detid="486835428" count="1" value="75" id="2507029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 forward    Id 486835428 " fill="rgb(255,107,0)" points="1131.49,1849.59 1121.84,1841.06 1115.77,1843.65 1126.57,1851.69 " />
<svg:polygon detid="486835432" count="1" value="75" id="2507030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  2 forward    Id 486835432 " fill="rgb(255,107,0)" points="1124.95,1852.44 1114.19,1844.39 1108.49,1847.25 1120.33,1854.77 " />
<svg:polygon detid="486835436" count="1" value="75" id="2507031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  3 forward    Id 486835436 " fill="rgb(255,107,0)" points="1118.81,1855.59 1107,1848.06 1101.7,1851.18 1114.51,1858.12 " />
<svg:polygon detid="486835440" count="1" value="75" id="2507032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  0 backward    Id 486835440 " fill="rgb(255,107,0)" points="1113.1,1859.02 1100.33,1852.05 1095.46,1855.4 1109.16,1861.73 " />
<svg:polygon detid="486835444" count="1" value="75" id="2507033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 backward  module  1 backward    Id 486835444 " fill="rgb(255,107,0)" points="1107.87,1862.69 1094.21,1856.34 1089.81,1859.9 1104.3,1865.58 " />
<svg:polygon detid="486802660" count="1" value="75" id="2507034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 forward    Id 486802660 " fill="rgb(255,107,0)" points="1103.15,1866.6 1088.68,1860.89 1084.77,1864.65 1099.97,1869.64 " />
<svg:polygon detid="486802664" count="1" value="75" id="2507035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  2 forward    Id 486802664 " fill="rgb(255,107,0)" points="1098.96,1870.71 1083.78,1865.69 1080.38,1869.62 1096.2,1873.89 " />
<svg:polygon detid="486802668" count="1" value="75" id="2507036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  3 forward    Id 486802668 " fill="rgb(255,107,0)" points="1095.33,1875 1079.53,1870.7 1076.66,1874.77 1093.01,1878.3 " />
<svg:polygon detid="486802672" count="1" value="75" id="2507037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  0 backward    Id 486802672 " fill="rgb(255,107,0)" points="1092.29,1879.45 1075.96,1875.89 1073.65,1880.08 1090.41,1882.85 " />
<svg:polygon detid="486802676" count="1" value="75" id="2507038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 4 forward  module  1 backward    Id 486802676 " fill="rgb(255,107,0)" points="1089.85,1884.02 1073.1,1881.22 1071.35,1885.51 1088.43,1887.49 " />
<svg:polygon detid="486835684" count="1" value="75" id="2507039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 forward    Id 486835684 " fill="rgb(255,107,0)" points="1088.03,1888.69 1070.95,1886.68 1069.78,1891.03 1087.08,1892.22 " />
<svg:polygon detid="486835688" count="1" value="75" id="2507040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  2 forward    Id 486835688 " fill="rgb(255,107,0)" points="1086.83,1893.43 1069.54,1892.21 1068.96,1896.61 1086.36,1896.99 " />
<svg:polygon detid="486835692" count="1" value="75" id="2507041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  3 forward    Id 486835692 " fill="rgb(255,107,0)" points="1086.28,1898.21 1068.88,1897.79 1068.88,1902.21 1086.28,1901.79 " />
<svg:polygon detid="486835696" count="1" value="75" id="2507042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  0 backward    Id 486835696 " fill="rgb(255,107,0)" points="1086.36,1903.01 1068.96,1903.39 1069.54,1907.79 1086.83,1906.57 " />
<svg:polygon detid="486835700" count="1" value="75" id="2507043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 backward  module  1 backward    Id 486835700 " fill="rgb(255,107,0)" points="1087.08,1907.78 1069.78,1908.97 1070.95,1913.32 1088.03,1911.31 " />
<svg:polygon detid="486802916" count="1" value="75" id="2507044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 forward    Id 486802916 " fill="rgb(255,107,0)" points="1088.43,1912.51 1071.35,1914.49 1073.1,1918.78 1089.85,1915.98 " />
<svg:polygon detid="486802920" count="1" value="75" id="2507045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  2 forward    Id 486802920 " fill="rgb(255,107,0)" points="1090.41,1917.15 1073.65,1919.92 1075.96,1924.11 1092.29,1920.55 " />
<svg:polygon detid="486802924" count="1" value="75" id="2507046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  3 forward    Id 486802924 " fill="rgb(255,107,0)" points="1093.01,1921.7 1076.66,1925.23 1079.53,1929.3 1095.33,1925 " />
<svg:polygon detid="486802928" count="1" value="75" id="2507047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  0 backward    Id 486802928 " fill="rgb(255,107,0)" points="1096.2,1926.11 1080.38,1930.38 1083.78,1934.31 1098.96,1929.29 " />
<svg:polygon detid="486802932" count="1" value="75" id="2507048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 5 forward  module  1 backward    Id 486802932 " fill="rgb(255,107,0)" points="1099.97,1930.36 1084.77,1935.35 1088.68,1939.11 1103.15,1933.4 " />
<svg:polygon detid="486835940" count="1" value="75" id="2507049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 forward    Id 486835940 " fill="rgb(255,107,0)" points="1104.3,1934.42 1089.81,1940.1 1094.21,1943.66 1107.87,1937.31 " />
<svg:polygon detid="486835944" count="1" value="75" id="2507050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  2 forward    Id 486835944 " fill="rgb(255,107,0)" points="1109.16,1938.27 1095.46,1944.6 1100.33,1947.95 1113.1,1940.98 " />
<svg:polygon detid="486835948" count="1" value="75" id="2507051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  3 forward    Id 486835948 " fill="rgb(255,107,0)" points="1114.51,1941.88 1101.7,1948.82 1107,1951.94 1118.81,1944.41 " />
<svg:polygon detid="486835952" count="1" value="75" id="2507052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  0 backward    Id 486835952 " fill="rgb(255,107,0)" points="1120.33,1945.23 1108.49,1952.75 1114.19,1955.61 1124.95,1947.56 " />
<svg:polygon detid="486835956" count="1" value="75" id="2507053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 backward  module  1 backward    Id 486835956 " fill="rgb(255,107,0)" points="1126.57,1948.31 1115.77,1956.35 1121.84,1958.94 1131.49,1950.41 " />
<svg:polygon detid="486803172" count="1" value="75" id="2507054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 forward    Id 486803172 " fill="rgb(255,107,0)" points="1133.21,1951.09 1123.52,1959.6 1129.91,1961.9 1138.4,1952.96 " />
<svg:polygon detid="486803176" count="1" value="75" id="2507055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  2 forward    Id 486803176 " fill="rgb(255,107,0)" points="1140.2,1953.55 1131.67,1962.48 1138.35,1964.48 1145.62,1955.17 " />
<svg:polygon detid="486803180" count="1" value="75" id="2507056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  3 forward    Id 486803180 " fill="rgb(255,107,0)" points="1147.5,1955.69 1140.19,1964.98 1147.11,1966.67 1153.11,1957.05 " />
<svg:polygon detid="486803184" count="1" value="75" id="2507057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  0 backward    Id 486803184 " fill="rgb(255,107,0)" points="1155.06,1957.48 1149.01,1967.08 1156.14,1968.44 1160.84,1958.58 " />
<svg:polygon detid="486803188" count="1" value="75" id="2507058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 6 forward  module  1 backward    Id 486803188 " fill="rgb(255,107,0)" points="1162.83,1958.91 1158.08,1968.77 1165.37,1969.79 1168.74,1959.75 " />
<svg:polygon detid="486836196" count="1" value="75" id="2507059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 forward    Id 486836196 " fill="rgb(255,107,0)" points="1170.77,1959.98 1167.35,1970.03 1174.75,1970.72 1176.78,1960.54 " />
<svg:polygon detid="486836200" count="1" value="75" id="2507060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  2 forward    Id 486836200 " fill="rgb(255,107,0)" points="1178.83,1960.69 1176.76,1970.86 1184.23,1971.2 1184.89,1960.97 " />
<svg:polygon detid="486836204" count="1" value="75" id="2507061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  3 forward    Id 486836204 " fill="rgb(255,107,0)" points="1186.96,1961.01 1186.25,1971.25 1193.75,1971.25 1193.04,1961.01 " />
<svg:polygon detid="486836208" count="1" value="75" id="2507062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  0 backward    Id 486836208 " fill="rgb(255,107,0)" points="1195.11,1960.97 1195.77,1971.2 1203.24,1970.86 1201.17,1960.69 " />
<svg:polygon detid="486836212" count="1" value="75" id="2507063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 backward  module  1 backward    Id 486836212 " fill="rgb(255,107,0)" points="1203.22,1960.54 1205.25,1970.72 1212.65,1970.03 1209.23,1959.98 " />
<svg:polygon detid="486803428" count="1" value="75" id="2507064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 forward    Id 486803428 " fill="rgb(255,107,0)" points="1211.26,1959.75 1214.63,1969.79 1221.92,1968.77 1217.17,1958.91 " />
<svg:polygon detid="486803432" count="1" value="75" id="2507065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  2 forward    Id 486803432 " fill="rgb(255,107,0)" points="1219.16,1958.58 1223.86,1968.44 1230.99,1967.08 1224.94,1957.48 " />
<svg:polygon detid="486803436" count="1" value="75" id="2507066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  3 forward    Id 486803436 " fill="rgb(255,107,0)" points="1226.89,1957.05 1232.89,1966.67 1239.81,1964.98 1232.5,1955.69 " />
<svg:polygon detid="486803440" count="1" value="75" id="2507067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  0 backward    Id 486803440 " fill="rgb(255,107,0)" points="1234.38,1955.17 1241.65,1964.48 1248.33,1962.48 1239.8,1953.55 " />
<svg:polygon detid="486803444" count="1" value="75" id="2507068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 7 forward  module  1 backward    Id 486803444 " fill="rgb(255,107,0)" points="1241.6,1952.96 1250.09,1961.9 1256.48,1959.6 1246.79,1951.09 " />
<svg:polygon detid="486836452" count="1" value="75" id="2507069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 forward    Id 486836452 " fill="rgb(255,107,0)" points="1248.51,1950.41 1258.16,1958.94 1264.23,1956.35 1253.43,1948.31 " />
<svg:polygon detid="486836456" count="1" value="75" id="2507070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  2 forward    Id 486836456 " fill="rgb(255,107,0)" points="1255.05,1947.56 1265.81,1955.61 1271.51,1952.75 1259.67,1945.23 " />
<svg:polygon detid="486836460" count="1" value="75" id="2507071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  3 forward    Id 486836460 " fill="rgb(255,107,0)" points="1261.19,1944.41 1273,1951.94 1278.3,1948.82 1265.49,1941.88 " />
<svg:polygon detid="486836464" count="1" value="75" id="2507072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  0 backward    Id 486836464 " fill="rgb(255,107,0)" points="1266.9,1940.98 1279.67,1947.95 1284.54,1944.6 1270.84,1938.27 " />
<svg:polygon detid="486836468" count="1" value="75" id="2507073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 backward  module  1 backward    Id 486836468 " fill="rgb(255,107,0)" points="1272.13,1937.31 1285.79,1943.66 1290.19,1940.1 1275.7,1934.42 " />
<svg:polygon detid="486803684" count="1" value="75" id="2507074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 forward    Id 486803684 " fill="rgb(255,107,0)" points="1276.85,1933.4 1291.32,1939.11 1295.23,1935.35 1280.03,1930.36 " />
<svg:polygon detid="486803688" count="1" value="75" id="2507075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  2 forward    Id 486803688 " fill="rgb(255,107,0)" points="1281.04,1929.29 1296.22,1934.31 1299.62,1930.38 1283.8,1926.11 " />
<svg:polygon detid="486803692" count="1" value="75" id="2507076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  3 forward    Id 486803692 " fill="rgb(255,107,0)" points="1284.67,1925 1300.47,1929.3 1303.34,1925.23 1286.99,1921.7 " />
<svg:polygon detid="486803696" count="1" value="75" id="2507077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  0 backward    Id 486803696 " fill="rgb(255,107,0)" points="1287.71,1920.55 1304.04,1924.11 1306.35,1919.92 1289.59,1917.15 " />
<svg:polygon detid="486803700" count="1" value="75" id="2507078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 8 forward  module  1 backward    Id 486803700 " fill="rgb(255,107,0)" points="1290.15,1915.98 1306.9,1918.78 1308.65,1914.49 1291.57,1912.51 " />
<svg:polygon detid="486834676" count="1" value="75" id="2507079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  1 backward    Id 486834676 " fill="rgb(255,107,0)" points="1291.97,1911.31 1309.05,1913.32 1310.22,1908.97 1292.92,1907.78 " />
<svg:polygon detid="486834664" count="1" value="75" id="2507080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 4 ring 0 petal 1 backward  module  2 forward    Id 486834664 " fill="rgb(255,107,0)" points="1293.17,1906.57 1310.46,1907.79 1311.04,1903.39 1293.64,1903.01 " />
<svg:polygon detid="486900042" count="1" value="78" id="2602001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward    Id 486900042 " fill="rgb(255,101,0)" points="1234.35,2093.78 1227.06,2094.96 1228.01,2099.23 " />
<svg:polygon detid="486867270" count="1" value="78" id="2602002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward    Id 486867270 " fill="rgb(255,101,0)" points="1230.1,2087.24 1223.57,2089.49 1226.38,2093.47 " />
<svg:polygon detid="486900294" count="1" value="78" id="2602003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward    Id 486900294 " fill="rgb(255,101,0)" points="1223.12,2081.57 1217.8,2084.73 1222.27,2088.15 " />
<svg:polygon detid="486900298" count="1" value="78" id="2602004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward    Id 486900298 " fill="rgb(255,101,0)" points="1213.88,2077.16 1210.14,2081.02 1215.95,2083.64 " />
<svg:polygon detid="486867526" count="1" value="78" id="2602005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward    Id 486867526 " fill="rgb(255,101,0)" points="1203.02,2074.3 1201.1,2078.6 1207.87,2080.25 " />
<svg:polygon detid="486900550" count="1" value="78" id="2602006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward    Id 486900550 " fill="rgb(255,101,0)" points="1191.27,2073.19 1191.31,2077.64 1198.57,2078.2 " />
<svg:polygon detid="486900554" count="1" value="78" id="2602007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward    Id 486900554 " fill="rgb(255,101,0)" points="1179.43,2073.91 1181.43,2078.2 1188.69,2077.64 " />
<svg:polygon detid="486867782" count="1" value="78" id="2602008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward    Id 486867782 " fill="rgb(255,101,0)" points="1168.31,2076.41 1172.13,2080.25 1178.9,2078.6 " />
<svg:polygon detid="486900806" count="1" value="78" id="2602009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward    Id 486900806 " fill="rgb(255,101,0)" points="1158.67,2080.52 1164.05,2083.64 1169.86,2081.02 " />
<svg:polygon detid="486900810" count="1" value="78" id="2602010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward    Id 486900810 " fill="rgb(255,101,0)" points="1151.17,2085.95 1157.73,2088.15 1162.2,2084.73 " />
<svg:polygon detid="486868038" count="1" value="78" id="2602011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward    Id 486868038 " fill="rgb(255,101,0)" points="1146.31,2092.34 1153.62,2093.47 1156.43,2089.49 " />
<svg:polygon detid="486901062" count="1" value="78" id="2602012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward    Id 486901062 " fill="rgb(255,101,0)" points="1144.43,2099.25 1151.99,2099.23 1152.94,2094.96 " />
<svg:polygon detid="486901066" count="1" value="78" id="2602013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward    Id 486901066 " fill="rgb(255,101,0)" points="1145.65,2106.22 1152.94,2105.04 1151.99,2100.77 " />
<svg:polygon detid="486868294" count="1" value="78" id="2602014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward    Id 486868294 " fill="rgb(255,101,0)" points="1149.9,2112.76 1156.43,2110.51 1153.62,2106.53 " />
<svg:polygon detid="486901318" count="1" value="78" id="2602015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward    Id 486901318 " fill="rgb(255,101,0)" points="1156.88,2118.43 1162.2,2115.27 1157.73,2111.85 " />
<svg:polygon detid="486901322" count="1" value="78" id="2602016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward    Id 486901322 " fill="rgb(255,101,0)" points="1166.12,2122.84 1169.86,2118.98 1164.05,2116.36 " />
<svg:polygon detid="486868550" count="1" value="78" id="2602017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward    Id 486868550 " fill="rgb(255,101,0)" points="1176.98,2125.7 1178.9,2121.4 1172.13,2119.75 " />
<svg:polygon detid="486901574" count="1" value="78" id="2602018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward    Id 486901574 " fill="rgb(255,101,0)" points="1188.73,2126.81 1188.69,2122.36 1181.43,2121.8 " />
<svg:polygon detid="486901578" count="1" value="78" id="2602019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward    Id 486901578 " fill="rgb(255,101,0)" points="1200.57,2126.09 1198.57,2121.8 1191.31,2122.36 " />
<svg:polygon detid="486868806" count="1" value="78" id="2602020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward    Id 486868806 " fill="rgb(255,101,0)" points="1211.69,2123.59 1207.87,2119.75 1201.1,2121.4 " />
<svg:polygon detid="486901830" count="1" value="78" id="2602021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward    Id 486901830 " fill="rgb(255,101,0)" points="1221.33,2119.48 1215.95,2116.36 1210.14,2118.98 " />
<svg:polygon detid="486901834" count="1" value="78" id="2602022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward    Id 486901834 " fill="rgb(255,101,0)" points="1228.83,2114.05 1222.27,2111.85 1217.8,2115.27 " />
<svg:polygon detid="486869062" count="1" value="78" id="2602023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward    Id 486869062 " fill="rgb(255,101,0)" points="1233.69,2107.66 1226.38,2106.53 1223.57,2110.51 " />
<svg:polygon detid="486900038" count="1" value="78" id="2602024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward    Id 486900038 " fill="rgb(255,101,0)" points="1235.57,2100.75 1228.01,2100.77 1227.06,2105.04 " />
<svg:polygon detid="486900041" count="1" value="78" id="2602101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward   stereo Id 486900041 " fill="rgb(255,101,0)" points="1228.01,2099.23 1235.57,2099.25 1234.35,2093.78 " />
<svg:polygon detid="486867269" count="1" value="78" id="2602102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward   stereo Id 486867269 " fill="rgb(255,101,0)" points="1226.38,2093.47 1233.69,2092.34 1230.1,2087.24 " />
<svg:polygon detid="486900293" count="1" value="78" id="2602103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward   stereo Id 486900293 " fill="rgb(255,101,0)" points="1222.27,2088.15 1228.83,2085.95 1223.12,2081.57 " />
<svg:polygon detid="486900297" count="1" value="78" id="2602104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward   stereo Id 486900297 " fill="rgb(255,101,0)" points="1215.95,2083.64 1221.33,2080.52 1213.88,2077.16 " />
<svg:polygon detid="486867525" count="1" value="78" id="2602105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward   stereo Id 486867525 " fill="rgb(255,101,0)" points="1207.87,2080.25 1211.69,2076.41 1203.02,2074.3 " />
<svg:polygon detid="486900549" count="1" value="78" id="2602106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward   stereo Id 486900549 " fill="rgb(255,101,0)" points="1198.57,2078.2 1200.57,2073.91 1191.27,2073.19 " />
<svg:polygon detid="486900553" count="1" value="78" id="2602107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward   stereo Id 486900553 " fill="rgb(255,101,0)" points="1188.69,2077.64 1188.73,2073.19 1179.43,2073.91 " />
<svg:polygon detid="486867781" count="1" value="78" id="2602108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward   stereo Id 486867781 " fill="rgb(255,101,0)" points="1178.9,2078.6 1176.98,2074.3 1168.31,2076.41 " />
<svg:polygon detid="486900805" count="1" value="78" id="2602109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward   stereo Id 486900805 " fill="rgb(255,101,0)" points="1169.86,2081.02 1166.12,2077.16 1158.67,2080.52 " />
<svg:polygon detid="486900809" count="1" value="78" id="2602110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward   stereo Id 486900809 " fill="rgb(255,101,0)" points="1162.2,2084.73 1156.88,2081.57 1151.17,2085.95 " />
<svg:polygon detid="486868037" count="1" value="78" id="2602111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward   stereo Id 486868037 " fill="rgb(255,101,0)" points="1156.43,2089.49 1149.9,2087.24 1146.31,2092.34 " />
<svg:polygon detid="486901061" count="1" value="78" id="2602112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward   stereo Id 486901061 " fill="rgb(255,101,0)" points="1152.94,2094.96 1145.65,2093.78 1144.43,2099.25 " />
<svg:polygon detid="486901065" count="1" value="78" id="2602113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward   stereo Id 486901065 " fill="rgb(255,101,0)" points="1151.99,2100.77 1144.43,2100.75 1145.65,2106.22 " />
<svg:polygon detid="486868293" count="1" value="78" id="2602114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward   stereo Id 486868293 " fill="rgb(255,101,0)" points="1153.62,2106.53 1146.31,2107.66 1149.9,2112.76 " />
<svg:polygon detid="486901317" count="1" value="78" id="2602115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward   stereo Id 486901317 " fill="rgb(255,101,0)" points="1157.73,2111.85 1151.17,2114.05 1156.88,2118.43 " />
<svg:polygon detid="486901321" count="1" value="78" id="2602116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward   stereo Id 486901321 " fill="rgb(255,101,0)" points="1164.05,2116.36 1158.67,2119.48 1166.12,2122.84 " />
<svg:polygon detid="486868549" count="1" value="78" id="2602117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward   stereo Id 486868549 " fill="rgb(255,101,0)" points="1172.13,2119.75 1168.31,2123.59 1176.98,2125.7 " />
<svg:polygon detid="486901573" count="1" value="78" id="2602118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward   stereo Id 486901573 " fill="rgb(255,101,0)" points="1181.43,2121.8 1179.43,2126.09 1188.73,2126.81 " />
<svg:polygon detid="486901577" count="1" value="78" id="2602119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward   stereo Id 486901577 " fill="rgb(255,101,0)" points="1191.31,2122.36 1191.27,2126.81 1200.57,2126.09 " />
<svg:polygon detid="486868805" count="1" value="78" id="2602120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward   stereo Id 486868805 " fill="rgb(255,101,0)" points="1201.1,2121.4 1203.02,2125.7 1211.69,2123.59 " />
<svg:polygon detid="486901829" count="1" value="78" id="2602121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward   stereo Id 486901829 " fill="rgb(255,101,0)" points="1210.14,2118.98 1213.88,2122.84 1221.33,2119.48 " />
<svg:polygon detid="486901833" count="1" value="78" id="2602122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward   stereo Id 486901833 " fill="rgb(255,101,0)" points="1217.8,2115.27 1223.12,2118.43 1228.83,2114.05 " />
<svg:polygon detid="486869061" count="1" value="78" id="2602123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward   stereo Id 486869061 " fill="rgb(255,101,0)" points="1223.57,2110.51 1230.1,2112.76 1233.69,2107.66 " />
<svg:polygon detid="486900037" count="1" value="78" id="2602124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward   stereo Id 486900037 " fill="rgb(255,101,0)" points="1227.06,2105.04 1234.35,2106.22 1235.57,2100.75 " />
<svg:polygon detid="486900068" count="1" value="78" id="2603001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward    Id 486900068 " fill="rgb(255,101,0)" points="1236.01,2101.57 1245.41,2102.03 1245.41,2097.97 1236.01,2098.43 " />
<svg:polygon detid="486900072" count="1" value="78" id="2603002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward    Id 486900072 " fill="rgb(255,101,0)" points="1235.86,2097.32 1245.27,2096.91 1244.19,2092.9 1235.02,2094.21 " />
<svg:polygon detid="486867300" count="1" value="78" id="2603003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward    Id 486867300 " fill="rgb(255,101,0)" points="1234.58,2093.13 1243.76,2091.86 1241.63,2088 1232.93,2090.14 " />
<svg:polygon detid="486867304" count="1" value="78" id="2603004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  2 forward    Id 486867304 " fill="rgb(255,101,0)" points="1232.21,2089.12 1240.94,2087.01 1237.8,2083.39 1229.78,2086.31 " />
<svg:polygon detid="486900324" count="1" value="78" id="2603005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward    Id 486900324 " fill="rgb(255,101,0)" points="1228.8,2085.37 1236.86,2082.48 1232.8,2079.2 1225.65,2082.82 " />
<svg:polygon detid="486900328" count="1" value="78" id="2603006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward    Id 486900328 " fill="rgb(255,101,0)" points="1224.43,2081.98 1231.62,2078.39 1226.74,2075.52 1220.64,2079.75 " />
<svg:polygon detid="486900332" count="1" value="78" id="2603007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  3 forward    Id 486900332 " fill="rgb(255,101,0)" points="1219.21,2079.03 1225.36,2074.82 1219.78,2072.44 1214.88,2077.18 " />
<svg:polygon detid="486867556" count="1" value="78" id="2603008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward    Id 486867556 " fill="rgb(255,101,0)" points="1213.27,2076.6 1218.23,2071.88 1212.08,2070.04 1208.5,2075.17 " />
<svg:polygon detid="486867560" count="1" value="78" id="2603009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  2 forward    Id 486867560 " fill="rgb(255,101,0)" points="1206.76,2074.75 1210.4,2069.63 1203.84,2068.37 1201.67,2073.77 " />
<svg:polygon detid="486900580" count="1" value="78" id="2603010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward    Id 486900580 " fill="rgb(255,101,0)" points="1199.84,2073.52 1202.08,2068.13 1195.26,2067.49 1194.55,2073.02 " />
<svg:polygon detid="486900584" count="1" value="78" id="2603011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward    Id 486900584 " fill="rgb(255,101,0)" points="1192.68,2072.94 1193.45,2067.41 1186.55,2067.41 1187.32,2072.94 " />
<svg:polygon detid="486900588" count="1" value="78" id="2603012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  3 forward    Id 486900588 " fill="rgb(255,101,0)" points="1185.45,2073.02 1184.74,2067.49 1177.92,2068.13 1180.16,2073.52 " />
<svg:polygon detid="486867812" count="1" value="78" id="2603013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward    Id 486867812 " fill="rgb(255,101,0)" points="1178.33,2073.77 1176.16,2068.37 1169.6,2069.63 1173.24,2074.75 " />
<svg:polygon detid="486867816" count="1" value="78" id="2603014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  2 forward    Id 486867816 " fill="rgb(255,101,0)" points="1171.5,2075.17 1167.92,2070.04 1161.77,2071.88 1166.73,2076.6 " />
<svg:polygon detid="486900836" count="1" value="78" id="2603015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward    Id 486900836 " fill="rgb(255,101,0)" points="1165.12,2077.18 1160.22,2072.44 1154.64,2074.82 1160.79,2079.03 " />
<svg:polygon detid="486900840" count="1" value="78" id="2603016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward    Id 486900840 " fill="rgb(255,101,0)" points="1159.36,2079.75 1153.26,2075.52 1148.38,2078.39 1155.57,2081.98 " />
<svg:polygon detid="486900844" count="1" value="78" id="2603017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  3 forward    Id 486900844 " fill="rgb(255,101,0)" points="1154.35,2082.82 1147.2,2079.2 1143.14,2082.48 1151.2,2085.37 " />
<svg:polygon detid="486868068" count="1" value="78" id="2603018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward    Id 486868068 " fill="rgb(255,101,0)" points="1150.22,2086.31 1142.2,2083.39 1139.06,2087.01 1147.79,2089.12 " />
<svg:polygon detid="486868072" count="1" value="78" id="2603019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  2 forward    Id 486868072 " fill="rgb(255,101,0)" points="1147.07,2090.14 1138.37,2088 1136.24,2091.86 1145.42,2093.13 " />
<svg:polygon detid="486901092" count="1" value="78" id="2603020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward    Id 486901092 " fill="rgb(255,101,0)" points="1144.98,2094.21 1135.81,2092.9 1134.73,2096.91 1144.14,2097.32 " />
<svg:polygon detid="486901096" count="1" value="78" id="2603021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward    Id 486901096 " fill="rgb(255,101,0)" points="1143.99,2098.43 1134.59,2097.97 1134.59,2102.03 1143.99,2101.57 " />
<svg:polygon detid="486901100" count="1" value="78" id="2603022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  3 forward    Id 486901100 " fill="rgb(255,101,0)" points="1144.14,2102.68 1134.73,2103.09 1135.81,2107.1 1144.98,2105.79 " />
<svg:polygon detid="486868324" count="1" value="78" id="2603023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward    Id 486868324 " fill="rgb(255,101,0)" points="1145.42,2106.87 1136.24,2108.14 1138.37,2112 1147.07,2109.86 " />
<svg:polygon detid="486868328" count="1" value="78" id="2603024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  2 forward    Id 486868328 " fill="rgb(255,101,0)" points="1147.79,2110.88 1139.06,2112.99 1142.2,2116.61 1150.22,2113.69 " />
<svg:polygon detid="486901348" count="1" value="78" id="2603025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward    Id 486901348 " fill="rgb(255,101,0)" points="1151.2,2114.63 1143.14,2117.52 1147.2,2120.8 1154.35,2117.18 " />
<svg:polygon detid="486901352" count="1" value="78" id="2603026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward    Id 486901352 " fill="rgb(255,101,0)" points="1155.57,2118.02 1148.38,2121.61 1153.26,2124.48 1159.36,2120.25 " />
<svg:polygon detid="486901356" count="1" value="78" id="2603027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  3 forward    Id 486901356 " fill="rgb(255,101,0)" points="1160.79,2120.97 1154.64,2125.18 1160.22,2127.56 1165.12,2122.82 " />
<svg:polygon detid="486868580" count="1" value="78" id="2603028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward    Id 486868580 " fill="rgb(255,101,0)" points="1166.73,2123.4 1161.77,2128.12 1167.92,2129.96 1171.5,2124.83 " />
<svg:polygon detid="486868584" count="1" value="78" id="2603029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  2 forward    Id 486868584 " fill="rgb(255,101,0)" points="1173.24,2125.25 1169.6,2130.37 1176.16,2131.63 1178.33,2126.23 " />
<svg:polygon detid="486901604" count="1" value="78" id="2603030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward    Id 486901604 " fill="rgb(255,101,0)" points="1180.16,2126.48 1177.92,2131.87 1184.74,2132.51 1185.45,2126.98 " />
<svg:polygon detid="486901608" count="1" value="78" id="2603031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward    Id 486901608 " fill="rgb(255,101,0)" points="1187.32,2127.06 1186.55,2132.59 1193.45,2132.59 1192.68,2127.06 " />
<svg:polygon detid="486901612" count="1" value="78" id="2603032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  3 forward    Id 486901612 " fill="rgb(255,101,0)" points="1194.55,2126.98 1195.26,2132.51 1202.08,2131.87 1199.84,2126.48 " />
<svg:polygon detid="486868836" count="1" value="78" id="2603033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward    Id 486868836 " fill="rgb(255,101,0)" points="1201.67,2126.23 1203.84,2131.63 1210.4,2130.37 1206.76,2125.25 " />
<svg:polygon detid="486868840" count="1" value="78" id="2603034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  2 forward    Id 486868840 " fill="rgb(255,101,0)" points="1208.5,2124.83 1212.08,2129.96 1218.23,2128.12 1213.27,2123.4 " />
<svg:polygon detid="486901860" count="1" value="78" id="2603035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward    Id 486901860 " fill="rgb(255,101,0)" points="1214.88,2122.82 1219.78,2127.56 1225.36,2125.18 1219.21,2120.97 " />
<svg:polygon detid="486901864" count="1" value="78" id="2603036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward    Id 486901864 " fill="rgb(255,101,0)" points="1220.64,2120.25 1226.74,2124.48 1231.62,2121.61 1224.43,2118.02 " />
<svg:polygon detid="486901868" count="1" value="78" id="2603037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  3 forward    Id 486901868 " fill="rgb(255,101,0)" points="1225.65,2117.18 1232.8,2120.8 1236.86,2117.52 1228.8,2114.63 " />
<svg:polygon detid="486869092" count="1" value="78" id="2603038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward    Id 486869092 " fill="rgb(255,101,0)" points="1229.78,2113.69 1237.8,2116.61 1240.94,2112.99 1232.21,2110.88 " />
<svg:polygon detid="486869096" count="1" value="78" id="2603039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  2 forward    Id 486869096 " fill="rgb(255,101,0)" points="1232.93,2109.86 1241.63,2112 1243.76,2108.14 1234.58,2106.87 " />
<svg:polygon detid="486900076" count="1" value="78" id="2603040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  3 forward    Id 486900076 " fill="rgb(255,101,0)" points="1235.02,2105.79 1244.19,2107.1 1245.27,2103.09 1235.86,2102.68 " />
<svg:polygon detid="486900104" count="1" value="78" id="2604001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward    Id 486900104 " fill="rgb(255,101,0)" points="1248.82,2099.51 1258.62,2099.52 1258.28,2095.96 1248.55,2096.62 " />
<svg:polygon detid="486900108" count="1" value="78" id="2604002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  3 forward    Id 486900108 " fill="rgb(255,101,0)" points="1248.36,2095.64 1258.1,2095 1257.08,2091.48 1247.53,2092.78 " />
<svg:polygon detid="486867332" count="1" value="78" id="2604003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward    Id 486867332 " fill="rgb(255,101,0)" points="1247.16,2091.82 1256.72,2090.55 1255.04,2087.12 1245.8,2089.04 " />
<svg:polygon detid="486867336" count="1" value="78" id="2604004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  2 forward    Id 486867336 " fill="rgb(255,101,0)" points="1245.24,2088.11 1254.5,2086.22 1252.18,2082.92 1243.36,2085.43 " />
<svg:polygon detid="486867340" count="1" value="78" id="2604005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  3 forward    Id 486867340 " fill="rgb(255,101,0)" points="1242.63,2084.54 1251.47,2082.05 1248.54,2078.93 1240.25,2082.01 " />
<svg:polygon detid="486900356" count="1" value="78" id="2604006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward    Id 486900356 " fill="rgb(255,101,0)" points="1239.36,2081.17 1247.67,2078.12 1244.16,2075.21 1236.51,2078.81 " />
<svg:polygon detid="486900360" count="1" value="78" id="2604007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward    Id 486900360 " fill="rgb(255,101,0)" points="1235.47,2078.04 1243.14,2074.46 1239.1,2071.8 1232.19,2075.88 " />
<svg:polygon detid="486900364" count="1" value="78" id="2604008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  3 forward    Id 486900364 " fill="rgb(255,101,0)" points="1231,2075.18 1237.95,2071.12 1233.42,2068.74 1227.33,2073.26 " />
<svg:polygon detid="486900368" count="1" value="78" id="2604009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  0 backward    Id 486900368 " fill="rgb(255,101,0)" points="1226.02,2072.64 1232.15,2068.14 1227.2,2066.08 1222.01,2070.96 " />
<svg:polygon detid="486867588" count="1" value="78" id="2604010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward    Id 486867588 " fill="rgb(255,101,0)" points="1220.59,2070.44 1225.82,2065.57 1220.51,2063.84 1216.28,2069.04 " />
<svg:polygon detid="486867592" count="1" value="78" id="2604011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  2 forward    Id 486867592 " fill="rgb(255,101,0)" points="1214.77,2068.61 1219.04,2063.42 1213.43,2062.06 1210.22,2067.5 " />
<svg:polygon detid="486867596" count="1" value="78" id="2604012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  3 forward    Id 486867596 " fill="rgb(255,101,0)" points="1208.64,2067.18 1211.9,2061.74 1206.06,2060.75 1203.91,2066.38 " />
<svg:polygon detid="486900612" count="1" value="78" id="2604013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward    Id 486900612 " fill="rgb(255,101,0)" points="1202.27,2066.16 1204.48,2060.54 1198.49,2059.94 1197.42,2065.67 " />
<svg:polygon detid="486900616" count="1" value="78" id="2604014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward    Id 486900616 " fill="rgb(255,101,0)" points="1195.75,2065.56 1196.87,2059.83 1190.81,2059.63 1190.84,2065.4 " />
<svg:polygon detid="486900620" count="1" value="78" id="2604015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  3 forward    Id 486900620 " fill="rgb(255,101,0)" points="1189.16,2065.4 1189.19,2059.63 1183.13,2059.83 1184.25,2065.56 " />
<svg:polygon detid="486900624" count="1" value="78" id="2604016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  0 backward    Id 486900624 " fill="rgb(255,101,0)" points="1182.58,2065.67 1181.51,2059.94 1175.52,2060.54 1177.73,2066.16 " />
<svg:polygon detid="486867844" count="1" value="78" id="2604017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward    Id 486867844 " fill="rgb(255,101,0)" points="1176.09,2066.38 1173.94,2060.75 1168.1,2061.74 1171.36,2067.18 " />
<svg:polygon detid="486867848" count="1" value="78" id="2604018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  2 forward    Id 486867848 " fill="rgb(255,101,0)" points="1169.78,2067.5 1166.57,2062.06 1160.96,2063.42 1165.23,2068.61 " />
<svg:polygon detid="486867852" count="1" value="78" id="2604019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  3 forward    Id 486867852 " fill="rgb(255,101,0)" points="1163.72,2069.04 1159.49,2063.84 1154.18,2065.57 1159.41,2070.44 " />
<svg:polygon detid="486900868" count="1" value="78" id="2604020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward    Id 486900868 " fill="rgb(255,101,0)" points="1157.99,2070.96 1152.8,2066.08 1147.85,2068.14 1153.98,2072.64 " />
<svg:polygon detid="486900872" count="1" value="78" id="2604021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward    Id 486900872 " fill="rgb(255,101,0)" points="1152.67,2073.26 1146.58,2068.74 1142.05,2071.12 1149,2075.18 " />
<svg:polygon detid="486900876" count="1" value="78" id="2604022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  3 forward    Id 486900876 " fill="rgb(255,101,0)" points="1147.81,2075.88 1140.9,2071.8 1136.86,2074.46 1144.53,2078.04 " />
<svg:polygon detid="486900880" count="1" value="78" id="2604023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  0 backward    Id 486900880 " fill="rgb(255,101,0)" points="1143.49,2078.81 1135.84,2075.21 1132.33,2078.12 1140.64,2081.17 " />
<svg:polygon detid="486868100" count="1" value="78" id="2604024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward    Id 486868100 " fill="rgb(255,101,0)" points="1139.75,2082.01 1131.46,2078.93 1128.53,2082.05 1137.37,2084.54 " />
<svg:polygon detid="486868104" count="1" value="78" id="2604025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  2 forward    Id 486868104 " fill="rgb(255,101,0)" points="1136.64,2085.43 1127.82,2082.92 1125.5,2086.22 1134.76,2088.11 " />
<svg:polygon detid="486868108" count="1" value="78" id="2604026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  3 forward    Id 486868108 " fill="rgb(255,101,0)" points="1134.2,2089.04 1124.96,2087.12 1123.28,2090.55 1132.84,2091.82 " />
<svg:polygon detid="486901124" count="1" value="78" id="2604027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward    Id 486901124 " fill="rgb(255,101,0)" points="1132.47,2092.78 1122.92,2091.48 1121.9,2095 1131.64,2095.64 " />
<svg:polygon detid="486901128" count="1" value="78" id="2604028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward    Id 486901128 " fill="rgb(255,101,0)" points="1131.45,2096.62 1121.72,2095.96 1121.38,2099.52 1131.18,2099.51 " />
<svg:polygon detid="486901132" count="1" value="78" id="2604029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  3 forward    Id 486901132 " fill="rgb(255,101,0)" points="1131.18,2100.49 1121.38,2100.48 1121.72,2104.04 1131.45,2103.38 " />
<svg:polygon detid="486901136" count="1" value="78" id="2604030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  0 backward    Id 486901136 " fill="rgb(255,101,0)" points="1131.64,2104.36 1121.9,2105 1122.92,2108.52 1132.47,2107.22 " />
<svg:polygon detid="486868356" count="1" value="78" id="2604031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward    Id 486868356 " fill="rgb(255,101,0)" points="1132.84,2108.18 1123.28,2109.45 1124.96,2112.88 1134.2,2110.96 " />
<svg:polygon detid="486868360" count="1" value="78" id="2604032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  2 forward    Id 486868360 " fill="rgb(255,101,0)" points="1134.76,2111.89 1125.5,2113.78 1127.82,2117.08 1136.64,2114.57 " />
<svg:polygon detid="486868364" count="1" value="78" id="2604033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  3 forward    Id 486868364 " fill="rgb(255,101,0)" points="1137.37,2115.46 1128.53,2117.95 1131.46,2121.07 1139.75,2117.99 " />
<svg:polygon detid="486901380" count="1" value="78" id="2604034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward    Id 486901380 " fill="rgb(255,101,0)" points="1140.64,2118.83 1132.33,2121.88 1135.84,2124.79 1143.49,2121.19 " />
<svg:polygon detid="486901384" count="1" value="78" id="2604035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward    Id 486901384 " fill="rgb(255,101,0)" points="1144.53,2121.96 1136.86,2125.54 1140.9,2128.2 1147.81,2124.12 " />
<svg:polygon detid="486901388" count="1" value="78" id="2604036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  3 forward    Id 486901388 " fill="rgb(255,101,0)" points="1149,2124.82 1142.05,2128.88 1146.58,2131.26 1152.67,2126.74 " />
<svg:polygon detid="486901392" count="1" value="78" id="2604037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  0 backward    Id 486901392 " fill="rgb(255,101,0)" points="1153.98,2127.36 1147.85,2131.86 1152.8,2133.92 1157.99,2129.04 " />
<svg:polygon detid="486868612" count="1" value="78" id="2604038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward    Id 486868612 " fill="rgb(255,101,0)" points="1159.41,2129.56 1154.18,2134.43 1159.49,2136.16 1163.72,2130.96 " />
<svg:polygon detid="486868616" count="1" value="78" id="2604039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  2 forward    Id 486868616 " fill="rgb(255,101,0)" points="1165.23,2131.39 1160.96,2136.58 1166.57,2137.94 1169.78,2132.5 " />
<svg:polygon detid="486868620" count="1" value="78" id="2604040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  3 forward    Id 486868620 " fill="rgb(255,101,0)" points="1171.36,2132.82 1168.1,2138.26 1173.94,2139.25 1176.09,2133.62 " />
<svg:polygon detid="486901636" count="1" value="78" id="2604041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward    Id 486901636 " fill="rgb(255,101,0)" points="1177.73,2133.84 1175.52,2139.46 1181.51,2140.06 1182.58,2134.33 " />
<svg:polygon detid="486901640" count="1" value="78" id="2604042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward    Id 486901640 " fill="rgb(255,101,0)" points="1184.25,2134.44 1183.13,2140.17 1189.19,2140.37 1189.16,2134.6 " />
<svg:polygon detid="486901644" count="1" value="78" id="2604043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  3 forward    Id 486901644 " fill="rgb(255,101,0)" points="1190.84,2134.6 1190.81,2140.37 1196.87,2140.17 1195.75,2134.44 " />
<svg:polygon detid="486901648" count="1" value="78" id="2604044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  0 backward    Id 486901648 " fill="rgb(255,101,0)" points="1197.42,2134.33 1198.49,2140.06 1204.48,2139.46 1202.27,2133.84 " />
<svg:polygon detid="486868868" count="1" value="78" id="2604045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward    Id 486868868 " fill="rgb(255,101,0)" points="1203.91,2133.62 1206.06,2139.25 1211.9,2138.26 1208.64,2132.82 " />
<svg:polygon detid="486868872" count="1" value="78" id="2604046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  2 forward    Id 486868872 " fill="rgb(255,101,0)" points="1210.22,2132.5 1213.43,2137.94 1219.04,2136.58 1214.77,2131.39 " />
<svg:polygon detid="486868876" count="1" value="78" id="2604047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  3 forward    Id 486868876 " fill="rgb(255,101,0)" points="1216.28,2130.96 1220.51,2136.16 1225.82,2134.43 1220.59,2129.56 " />
<svg:polygon detid="486901892" count="1" value="78" id="2604048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward    Id 486901892 " fill="rgb(255,101,0)" points="1222.01,2129.04 1227.2,2133.92 1232.15,2131.86 1226.02,2127.36 " />
<svg:polygon detid="486901896" count="1" value="78" id="2604049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward    Id 486901896 " fill="rgb(255,101,0)" points="1227.33,2126.74 1233.42,2131.26 1237.95,2128.88 1231,2124.82 " />
<svg:polygon detid="486901900" count="1" value="78" id="2604050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  3 forward    Id 486901900 " fill="rgb(255,101,0)" points="1232.19,2124.12 1239.1,2128.2 1243.14,2125.54 1235.47,2121.96 " />
<svg:polygon detid="486901904" count="1" value="78" id="2604051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  0 backward    Id 486901904 " fill="rgb(255,101,0)" points="1236.51,2121.19 1244.16,2124.79 1247.67,2121.88 1239.36,2118.83 " />
<svg:polygon detid="486869124" count="1" value="78" id="2604052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward    Id 486869124 " fill="rgb(255,101,0)" points="1240.25,2117.99 1248.54,2121.07 1251.47,2117.95 1242.63,2115.46 " />
<svg:polygon detid="486869128" count="1" value="78" id="2604053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  2 forward    Id 486869128 " fill="rgb(255,101,0)" points="1243.36,2114.57 1252.18,2117.08 1254.5,2113.78 1245.24,2111.89 " />
<svg:polygon detid="486869132" count="1" value="78" id="2604054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  3 forward    Id 486869132 " fill="rgb(255,101,0)" points="1245.8,2110.96 1255.04,2112.88 1256.72,2109.45 1247.16,2108.18 " />
<svg:polygon detid="486900112" count="1" value="78" id="2604055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  0 backward    Id 486900112 " fill="rgb(255,101,0)" points="1247.53,2107.22 1257.08,2108.52 1258.1,2105 1248.36,2104.36 " />
<svg:polygon detid="486900100" count="1" value="78" id="2604056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward    Id 486900100 " fill="rgb(255,101,0)" points="1248.55,2103.38 1258.28,2104.04 1258.62,2100.48 1248.82,2100.49 " />
<svg:polygon detid="486900138" count="1" value="78" id="2605001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward    Id 486900138 " fill="rgb(255,101,0)" points="1272.31,2093.17 1259.92,2094.35 1260.56,2099.15 " />
<svg:polygon detid="486867366" count="1" value="78" id="2605002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward    Id 486867366 " fill="rgb(255,101,0)" points="1269.48,2085.68 1257.56,2087.98 1259.47,2092.67 " />
<svg:polygon detid="486867370" count="1" value="78" id="2605003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  2 forward    Id 486867370 " fill="rgb(255,101,0)" points="1264.7,2078.54 1253.53,2081.92 1256.66,2086.36 " />
<svg:polygon detid="486867374" count="1" value="78" id="2605004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  3 forward    Id 486867374 " fill="rgb(255,101,0)" points="1258.07,2071.93 1247.94,2076.29 1252.21,2080.4 " />
<svg:polygon detid="486900390" count="1" value="78" id="2605005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward    Id 486900390 " fill="rgb(255,101,0)" points="1249.77,2066.02 1240.92,2071.25 1246.23,2074.91 " />
<svg:polygon detid="486900394" count="1" value="78" id="2605006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward    Id 486900394 " fill="rgb(255,101,0)" points="1240,2060.93 1232.65,2066.92 1238.87,2070.05 " />
<svg:polygon detid="486867622" count="1" value="78" id="2605007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward    Id 486867622 " fill="rgb(255,101,0)" points="1228.99,2056.81 1223.32,2063.4 1230.3,2065.92 " />
<svg:polygon detid="486867626" count="1" value="78" id="2605008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  2 forward    Id 486867626 " fill="rgb(255,101,0)" points="1217.03,2053.76 1213.18,2060.79 1220.74,2062.63 " />
<svg:polygon detid="486867630" count="1" value="78" id="2605009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  3 forward    Id 486867630 " fill="rgb(255,101,0)" points="1204.4,2051.84 1202.47,2059.14 1210.43,2060.26 " />
<svg:polygon detid="486900646" count="1" value="78" id="2605010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward    Id 486900646 " fill="rgb(255,101,0)" points="1191.41,2051.11 1191.45,2058.49 1199.61,2058.87 " />
<svg:polygon detid="486900650" count="1" value="78" id="2605011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward    Id 486900650 " fill="rgb(255,101,0)" points="1178.39,2051.58 1180.39,2058.87 1188.55,2058.49 " />
<svg:polygon detid="486867878" count="1" value="78" id="2605012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward    Id 486867878 " fill="rgb(255,101,0)" points="1165.66,2053.24 1169.57,2060.26 1177.53,2059.14 " />
<svg:polygon detid="486867882" count="1" value="78" id="2605013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  2 forward    Id 486867882 " fill="rgb(255,101,0)" points="1153.53,2056.06 1159.26,2062.63 1166.82,2060.79 " />
<svg:polygon detid="486867886" count="1" value="78" id="2605014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  3 forward    Id 486867886 " fill="rgb(255,101,0)" points="1142.29,2059.96 1149.7,2065.92 1156.68,2063.4 " />
<svg:polygon detid="486900902" count="1" value="78" id="2605015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward    Id 486900902 " fill="rgb(255,101,0)" points="1132.23,2064.84 1141.13,2070.05 1147.35,2066.92 " />
<svg:polygon detid="486900906" count="1" value="78" id="2605016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward    Id 486900906 " fill="rgb(255,101,0)" points="1123.59,2070.59 1133.77,2074.91 1139.08,2071.25 " />
<svg:polygon detid="486868134" count="1" value="78" id="2605017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward    Id 486868134 " fill="rgb(255,101,0)" points="1116.59,2077.06 1127.79,2080.4 1132.06,2076.29 " />
<svg:polygon detid="486868138" count="1" value="78" id="2605018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  2 forward    Id 486868138 " fill="rgb(255,101,0)" points="1111.39,2084.1 1123.34,2086.36 1126.47,2081.92 " />
<svg:polygon detid="486868142" count="1" value="78" id="2605019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  3 forward    Id 486868142 " fill="rgb(255,101,0)" points="1108.13,2091.53 1120.53,2092.67 1122.44,2087.98 " />
<svg:polygon detid="486901158" count="1" value="78" id="2605020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward    Id 486901158 " fill="rgb(255,101,0)" points="1106.88,2099.17 1119.44,2099.15 1120.08,2094.35 " />
<svg:polygon detid="486901162" count="1" value="78" id="2605021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward    Id 486901162 " fill="rgb(255,101,0)" points="1107.69,2106.83 1120.08,2105.65 1119.44,2100.85 " />
<svg:polygon detid="486868390" count="1" value="78" id="2605022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward    Id 486868390 " fill="rgb(255,101,0)" points="1110.52,2114.32 1122.44,2112.02 1120.53,2107.33 " />
<svg:polygon detid="486868394" count="1" value="78" id="2605023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  2 forward    Id 486868394 " fill="rgb(255,101,0)" points="1115.3,2121.46 1126.47,2118.08 1123.34,2113.64 " />
<svg:polygon detid="486868398" count="1" value="78" id="2605024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  3 forward    Id 486868398 " fill="rgb(255,101,0)" points="1121.93,2128.07 1132.06,2123.71 1127.79,2119.6 " />
<svg:polygon detid="486901414" count="1" value="78" id="2605025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward    Id 486901414 " fill="rgb(255,101,0)" points="1130.23,2133.98 1139.08,2128.75 1133.77,2125.09 " />
<svg:polygon detid="486901418" count="1" value="78" id="2605026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward    Id 486901418 " fill="rgb(255,101,0)" points="1140,2139.07 1147.35,2133.08 1141.13,2129.95 " />
<svg:polygon detid="486868646" count="1" value="78" id="2605027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward    Id 486868646 " fill="rgb(255,101,0)" points="1151.01,2143.19 1156.68,2136.6 1149.7,2134.08 " />
<svg:polygon detid="486868650" count="1" value="78" id="2605028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  2 forward    Id 486868650 " fill="rgb(255,101,0)" points="1162.97,2146.24 1166.82,2139.21 1159.26,2137.37 " />
<svg:polygon detid="486868654" count="1" value="78" id="2605029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  3 forward    Id 486868654 " fill="rgb(255,101,0)" points="1175.6,2148.16 1177.53,2140.86 1169.57,2139.74 " />
<svg:polygon detid="486901670" count="1" value="78" id="2605030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward    Id 486901670 " fill="rgb(255,101,0)" points="1188.59,2148.89 1188.55,2141.51 1180.39,2141.13 " />
<svg:polygon detid="486901674" count="1" value="78" id="2605031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward    Id 486901674 " fill="rgb(255,101,0)" points="1201.61,2148.42 1199.61,2141.13 1191.45,2141.51 " />
<svg:polygon detid="486868902" count="1" value="78" id="2605032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward    Id 486868902 " fill="rgb(255,101,0)" points="1214.34,2146.76 1210.43,2139.74 1202.47,2140.86 " />
<svg:polygon detid="486868906" count="1" value="78" id="2605033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  2 forward    Id 486868906 " fill="rgb(255,101,0)" points="1226.47,2143.94 1220.74,2137.37 1213.18,2139.21 " />
<svg:polygon detid="486868910" count="1" value="78" id="2605034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  3 forward    Id 486868910 " fill="rgb(255,101,0)" points="1237.71,2140.04 1230.3,2134.08 1223.32,2136.6 " />
<svg:polygon detid="486901926" count="1" value="78" id="2605035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward    Id 486901926 " fill="rgb(255,101,0)" points="1247.77,2135.16 1238.87,2129.95 1232.65,2133.08 " />
<svg:polygon detid="486901930" count="1" value="78" id="2605036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward    Id 486901930 " fill="rgb(255,101,0)" points="1256.41,2129.41 1246.23,2125.09 1240.92,2128.75 " />
<svg:polygon detid="486869158" count="1" value="78" id="2605037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward    Id 486869158 " fill="rgb(255,101,0)" points="1263.41,2122.94 1252.21,2119.6 1247.94,2123.71 " />
<svg:polygon detid="486869162" count="1" value="78" id="2605038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  2 forward    Id 486869162 " fill="rgb(255,101,0)" points="1268.61,2115.9 1256.66,2113.64 1253.53,2118.08 " />
<svg:polygon detid="486869166" count="1" value="78" id="2605039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  3 forward    Id 486869166 " fill="rgb(255,101,0)" points="1271.87,2108.47 1259.47,2107.33 1257.56,2112.02 " />
<svg:polygon detid="486900134" count="1" value="78" id="2605040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward    Id 486900134 " fill="rgb(255,101,0)" points="1273.12,2100.83 1260.56,2100.85 1259.92,2105.65 " />
<svg:polygon detid="486900137" count="1" value="78" id="2605101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward   stereo Id 486900137 " fill="rgb(255,101,0)" points="1260.56,2099.15 1273.12,2099.17 1272.31,2093.17 " />
<svg:polygon detid="486867365" count="1" value="78" id="2605102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward   stereo Id 486867365 " fill="rgb(255,101,0)" points="1259.47,2092.67 1271.87,2091.53 1269.48,2085.68 " />
<svg:polygon detid="486867369" count="1" value="78" id="2605103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  2 forward   stereo Id 486867369 " fill="rgb(255,101,0)" points="1256.66,2086.36 1268.61,2084.1 1264.7,2078.54 " />
<svg:polygon detid="486867373" count="1" value="78" id="2605104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  3 forward   stereo Id 486867373 " fill="rgb(255,101,0)" points="1252.21,2080.4 1263.41,2077.06 1258.07,2071.93 " />
<svg:polygon detid="486900389" count="1" value="78" id="2605105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward   stereo Id 486900389 " fill="rgb(255,101,0)" points="1246.23,2074.91 1256.41,2070.59 1249.77,2066.02 " />
<svg:polygon detid="486900393" count="1" value="78" id="2605106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward   stereo Id 486900393 " fill="rgb(255,101,0)" points="1238.87,2070.05 1247.77,2064.84 1240,2060.93 " />
<svg:polygon detid="486867621" count="1" value="78" id="2605107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward   stereo Id 486867621 " fill="rgb(255,101,0)" points="1230.3,2065.92 1237.71,2059.96 1228.99,2056.81 " />
<svg:polygon detid="486867625" count="1" value="78" id="2605108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  2 forward   stereo Id 486867625 " fill="rgb(255,101,0)" points="1220.74,2062.63 1226.47,2056.06 1217.03,2053.76 " />
<svg:polygon detid="486867629" count="1" value="78" id="2605109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  3 forward   stereo Id 486867629 " fill="rgb(255,101,0)" points="1210.43,2060.26 1214.34,2053.24 1204.4,2051.84 " />
<svg:polygon detid="486900645" count="1" value="78" id="2605110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward   stereo Id 486900645 " fill="rgb(255,101,0)" points="1199.61,2058.87 1201.61,2051.58 1191.41,2051.11 " />
<svg:polygon detid="486900649" count="1" value="78" id="2605111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward   stereo Id 486900649 " fill="rgb(255,101,0)" points="1188.55,2058.49 1188.59,2051.11 1178.39,2051.58 " />
<svg:polygon detid="486867877" count="1" value="78" id="2605112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward   stereo Id 486867877 " fill="rgb(255,101,0)" points="1177.53,2059.14 1175.6,2051.84 1165.66,2053.24 " />
<svg:polygon detid="486867881" count="1" value="78" id="2605113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  2 forward   stereo Id 486867881 " fill="rgb(255,101,0)" points="1166.82,2060.79 1162.97,2053.76 1153.53,2056.06 " />
<svg:polygon detid="486867885" count="1" value="78" id="2605114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  3 forward   stereo Id 486867885 " fill="rgb(255,101,0)" points="1156.68,2063.4 1151.01,2056.81 1142.29,2059.96 " />
<svg:polygon detid="486900901" count="1" value="78" id="2605115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward   stereo Id 486900901 " fill="rgb(255,101,0)" points="1147.35,2066.92 1140,2060.93 1132.23,2064.84 " />
<svg:polygon detid="486900905" count="1" value="78" id="2605116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward   stereo Id 486900905 " fill="rgb(255,101,0)" points="1139.08,2071.25 1130.23,2066.02 1123.59,2070.59 " />
<svg:polygon detid="486868133" count="1" value="78" id="2605117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward   stereo Id 486868133 " fill="rgb(255,101,0)" points="1132.06,2076.29 1121.93,2071.93 1116.59,2077.06 " />
<svg:polygon detid="486868137" count="1" value="78" id="2605118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  2 forward   stereo Id 486868137 " fill="rgb(255,101,0)" points="1126.47,2081.92 1115.3,2078.54 1111.39,2084.1 " />
<svg:polygon detid="486868141" count="1" value="78" id="2605119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  3 forward   stereo Id 486868141 " fill="rgb(255,101,0)" points="1122.44,2087.98 1110.52,2085.68 1108.13,2091.53 " />
<svg:polygon detid="486901157" count="1" value="78" id="2605120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward   stereo Id 486901157 " fill="rgb(255,101,0)" points="1120.08,2094.35 1107.69,2093.17 1106.88,2099.17 " />
<svg:polygon detid="486901161" count="1" value="78" id="2605121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward   stereo Id 486901161 " fill="rgb(255,101,0)" points="1119.44,2100.85 1106.88,2100.83 1107.69,2106.83 " />
<svg:polygon detid="486868389" count="1" value="78" id="2605122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward   stereo Id 486868389 " fill="rgb(255,101,0)" points="1120.53,2107.33 1108.13,2108.47 1110.52,2114.32 " />
<svg:polygon detid="486868393" count="1" value="78" id="2605123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  2 forward   stereo Id 486868393 " fill="rgb(255,101,0)" points="1123.34,2113.64 1111.39,2115.9 1115.3,2121.46 " />
<svg:polygon detid="486868397" count="1" value="78" id="2605124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  3 forward   stereo Id 486868397 " fill="rgb(255,101,0)" points="1127.79,2119.6 1116.59,2122.94 1121.93,2128.07 " />
<svg:polygon detid="486901413" count="1" value="78" id="2605125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward   stereo Id 486901413 " fill="rgb(255,101,0)" points="1133.77,2125.09 1123.59,2129.41 1130.23,2133.98 " />
<svg:polygon detid="486901417" count="1" value="78" id="2605126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward   stereo Id 486901417 " fill="rgb(255,101,0)" points="1141.13,2129.95 1132.23,2135.16 1140,2139.07 " />
<svg:polygon detid="486868645" count="1" value="78" id="2605127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward   stereo Id 486868645 " fill="rgb(255,101,0)" points="1149.7,2134.08 1142.29,2140.04 1151.01,2143.19 " />
<svg:polygon detid="486868649" count="1" value="78" id="2605128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  2 forward   stereo Id 486868649 " fill="rgb(255,101,0)" points="1159.26,2137.37 1153.53,2143.94 1162.97,2146.24 " />
<svg:polygon detid="486868653" count="1" value="78" id="2605129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  3 forward   stereo Id 486868653 " fill="rgb(255,101,0)" points="1169.57,2139.74 1165.66,2146.76 1175.6,2148.16 " />
<svg:polygon detid="486901669" count="1" value="78" id="2605130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward   stereo Id 486901669 " fill="rgb(255,101,0)" points="1180.39,2141.13 1178.39,2148.42 1188.59,2148.89 " />
<svg:polygon detid="486901673" count="1" value="78" id="2605131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward   stereo Id 486901673 " fill="rgb(255,101,0)" points="1191.45,2141.51 1191.41,2148.89 1201.61,2148.42 " />
<svg:polygon detid="486868901" count="1" value="78" id="2605132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward   stereo Id 486868901 " fill="rgb(255,101,0)" points="1202.47,2140.86 1204.4,2148.16 1214.34,2146.76 " />
<svg:polygon detid="486868905" count="1" value="78" id="2605133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  2 forward   stereo Id 486868905 " fill="rgb(255,101,0)" points="1213.18,2139.21 1217.03,2146.24 1226.47,2143.94 " />
<svg:polygon detid="486868909" count="1" value="78" id="2605134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  3 forward   stereo Id 486868909 " fill="rgb(255,101,0)" points="1223.32,2136.6 1228.99,2143.19 1237.71,2140.04 " />
<svg:polygon detid="486901925" count="1" value="78" id="2605135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward   stereo Id 486901925 " fill="rgb(255,101,0)" points="1232.65,2133.08 1240,2139.07 1247.77,2135.16 " />
<svg:polygon detid="486901929" count="1" value="78" id="2605136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward   stereo Id 486901929 " fill="rgb(255,101,0)" points="1240.92,2128.75 1249.77,2133.98 1256.41,2129.41 " />
<svg:polygon detid="486869157" count="1" value="78" id="2605137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward   stereo Id 486869157 " fill="rgb(255,101,0)" points="1247.94,2123.71 1258.07,2128.07 1263.41,2122.94 " />
<svg:polygon detid="486869161" count="1" value="78" id="2605138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  2 forward   stereo Id 486869161 " fill="rgb(255,101,0)" points="1253.53,2118.08 1264.7,2121.46 1268.61,2115.9 " />
<svg:polygon detid="486869165" count="1" value="78" id="2605139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  3 forward   stereo Id 486869165 " fill="rgb(255,101,0)" points="1257.56,2112.02 1269.48,2114.32 1271.87,2108.47 " />
<svg:polygon detid="486900133" count="1" value="78" id="2605140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward   stereo Id 486900133 " fill="rgb(255,101,0)" points="1259.92,2105.65 1272.31,2106.83 1273.12,2100.83 " />
<svg:polygon detid="486900164" count="1" value="78" id="2606001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward    Id 486900164 " fill="rgb(255,101,0)" points="1275.05,2099.28 1290.71,2099.3 1290.21,2094.06 1274.65,2095.12 " />
<svg:polygon detid="486900172" count="1" value="78" id="2606002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  3 forward    Id 486900172 " fill="rgb(255,101,0)" points="1274.38,2093.68 1289.94,2092.67 1288.45,2087.5 1273.19,2089.57 " />
<svg:polygon detid="486867396" count="1" value="78" id="2606003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward    Id 486867396 " fill="rgb(255,101,0)" points="1272.64,2088.16 1287.92,2086.14 1285.45,2081.1 1270.68,2084.16 " />
<svg:polygon detid="486867400" count="1" value="78" id="2606004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  2 forward    Id 486867400 " fill="rgb(255,101,0)" points="1269.87,2082.8 1284.66,2079.77 1281.25,2074.93 1267.16,2078.94 " />
<svg:polygon detid="486867404" count="1" value="78" id="2606005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  3 forward    Id 486867404 " fill="rgb(255,101,0)" points="1266.09,2077.64 1280.22,2073.67 1275.9,2069.08 1262.66,2073.99 " />
<svg:polygon detid="486900420" count="1" value="78" id="2606006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward    Id 486900420 " fill="rgb(255,101,0)" points="1261.36,2072.77 1274.64,2067.89 1269.48,2063.61 1257.26,2069.37 " />
<svg:polygon detid="486900424" count="1" value="78" id="2606007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward    Id 486900424 " fill="rgb(255,101,0)" points="1255.73,2068.24 1267.99,2062.52 1262.05,2058.61 1251,2065.13 " />
<svg:polygon detid="486900428" count="1" value="78" id="2606008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  3 forward    Id 486900428 " fill="rgb(255,101,0)" points="1249.27,2064.11 1260.37,2057.62 1253.72,2054.12 1243.98,2061.34 " />
<svg:polygon detid="486900432" count="1" value="78" id="2606009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  0 backward    Id 486900432 " fill="rgb(255,101,0)" points="1242.07,2060.44 1251.86,2053.25 1244.59,2050.21 1236.29,2058.02 " />
<svg:polygon detid="486867652" count="1" value="78" id="2606010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward    Id 486867652 " fill="rgb(255,101,0)" points="1234.21,2057.26 1242.57,2049.47 1234.77,2046.93 1228.01,2055.24 " />
<svg:polygon detid="486867656" count="1" value="78" id="2606011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  2 forward    Id 486867656 " fill="rgb(255,101,0)" points="1225.8,2054.61 1232.62,2046.32 1224.38,2044.32 1219.25,2053.02 " />
<svg:polygon detid="486867660" count="1" value="78" id="2606012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  3 forward    Id 486867660 " fill="rgb(255,101,0)" points="1216.93,2052.54 1222.14,2043.85 1213.57,2042.4 1210.12,2051.39 " />
<svg:polygon detid="486900676" count="1" value="78" id="2606013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward    Id 486900676 " fill="rgb(255,101,0)" points="1207.73,2051.07 1211.25,2042.09 1202.46,2041.21 1200.74,2050.37 " />
<svg:polygon detid="486900680" count="1" value="78" id="2606014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward    Id 486900680 " fill="rgb(255,101,0)" points="1198.3,2050.21 1200.09,2041.06 1191.19,2040.76 1191.23,2049.97 " />
<svg:polygon detid="486900684" count="1" value="78" id="2606015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  3 forward    Id 486900684 " fill="rgb(255,101,0)" points="1188.77,2049.97 1188.81,2040.76 1179.91,2041.06 1181.7,2050.21 " />
<svg:polygon detid="486900688" count="1" value="78" id="2606016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  0 backward    Id 486900688 " fill="rgb(255,101,0)" points="1179.26,2050.37 1177.54,2041.21 1168.75,2042.09 1172.27,2051.07 " />
<svg:polygon detid="486867908" count="1" value="78" id="2606017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward    Id 486867908 " fill="rgb(255,101,0)" points="1169.88,2051.39 1166.43,2042.4 1157.86,2043.85 1163.07,2052.54 " />
<svg:polygon detid="486867912" count="1" value="78" id="2606018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  2 forward    Id 486867912 " fill="rgb(255,101,0)" points="1160.75,2053.02 1155.62,2044.32 1147.38,2046.32 1154.2,2054.61 " />
<svg:polygon detid="486867916" count="1" value="78" id="2606019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  3 forward    Id 486867916 " fill="rgb(255,101,0)" points="1151.99,2055.24 1145.23,2046.93 1137.43,2049.47 1145.79,2057.26 " />
<svg:polygon detid="486900932" count="1" value="78" id="2606020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward    Id 486900932 " fill="rgb(255,101,0)" points="1143.71,2058.02 1135.41,2050.21 1128.14,2053.25 1137.93,2060.44 " />
<svg:polygon detid="486900936" count="1" value="78" id="2606021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward    Id 486900936 " fill="rgb(255,101,0)" points="1136.02,2061.34 1126.28,2054.12 1119.63,2057.62 1130.73,2064.11 " />
<svg:polygon detid="486900940" count="1" value="78" id="2606022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  3 forward    Id 486900940 " fill="rgb(255,101,0)" points="1129,2065.13 1117.95,2058.61 1112.01,2062.52 1124.27,2068.24 " />
<svg:polygon detid="486900944" count="1" value="78" id="2606023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  0 backward    Id 486900944 " fill="rgb(255,101,0)" points="1122.74,2069.37 1110.52,2063.61 1105.36,2067.89 1118.64,2072.77 " />
<svg:polygon detid="486868164" count="1" value="78" id="2606024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward    Id 486868164 " fill="rgb(255,101,0)" points="1117.34,2073.99 1104.1,2069.08 1099.78,2073.67 1113.91,2077.64 " />
<svg:polygon detid="486868168" count="1" value="78" id="2606025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  2 forward    Id 486868168 " fill="rgb(255,101,0)" points="1112.84,2078.94 1098.75,2074.93 1095.34,2079.77 1110.13,2082.8 " />
<svg:polygon detid="486868172" count="1" value="78" id="2606026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  3 forward    Id 486868172 " fill="rgb(255,101,0)" points="1109.32,2084.16 1094.55,2081.1 1092.08,2086.14 1107.36,2088.16 " />
<svg:polygon detid="486901188" count="1" value="78" id="2606027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward    Id 486901188 " fill="rgb(255,101,0)" points="1106.81,2089.57 1091.55,2087.5 1090.06,2092.67 1105.62,2093.68 " />
<svg:polygon detid="486901192" count="1" value="78" id="2606028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward    Id 486901192 " fill="rgb(255,101,0)" points="1105.35,2095.12 1089.79,2094.06 1089.29,2099.3 1104.95,2099.28 " />
<svg:polygon detid="486901196" count="1" value="78" id="2606029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  3 forward    Id 486901196 " fill="rgb(255,101,0)" points="1104.95,2100.72 1089.29,2100.7 1089.79,2105.94 1105.35,2104.88 " />
<svg:polygon detid="486901200" count="1" value="78" id="2606030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  0 backward    Id 486901200 " fill="rgb(255,101,0)" points="1105.62,2106.32 1090.06,2107.33 1091.55,2112.5 1106.81,2110.43 " />
<svg:polygon detid="486868420" count="1" value="78" id="2606031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward    Id 486868420 " fill="rgb(255,101,0)" points="1107.36,2111.84 1092.08,2113.86 1094.55,2118.9 1109.32,2115.84 " />
<svg:polygon detid="486868424" count="1" value="78" id="2606032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  2 forward    Id 486868424 " fill="rgb(255,101,0)" points="1110.13,2117.2 1095.34,2120.23 1098.75,2125.07 1112.84,2121.06 " />
<svg:polygon detid="486868428" count="1" value="78" id="2606033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  3 forward    Id 486868428 " fill="rgb(255,101,0)" points="1113.91,2122.36 1099.78,2126.33 1104.1,2130.92 1117.34,2126.01 " />
<svg:polygon detid="486901444" count="1" value="78" id="2606034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward    Id 486901444 " fill="rgb(255,101,0)" points="1118.64,2127.23 1105.36,2132.11 1110.52,2136.39 1122.74,2130.63 " />
<svg:polygon detid="486901448" count="1" value="78" id="2606035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward    Id 486901448 " fill="rgb(255,101,0)" points="1124.27,2131.76 1112.01,2137.48 1117.95,2141.39 1129,2134.87 " />
<svg:polygon detid="486901452" count="1" value="78" id="2606036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  3 forward    Id 486901452 " fill="rgb(255,101,0)" points="1130.73,2135.89 1119.63,2142.38 1126.28,2145.88 1136.02,2138.66 " />
<svg:polygon detid="486901456" count="1" value="78" id="2606037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  0 backward    Id 486901456 " fill="rgb(255,101,0)" points="1137.93,2139.56 1128.14,2146.75 1135.41,2149.79 1143.71,2141.98 " />
<svg:polygon detid="486868676" count="1" value="78" id="2606038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward    Id 486868676 " fill="rgb(255,101,0)" points="1145.79,2142.74 1137.43,2150.53 1145.23,2153.07 1151.99,2144.76 " />
<svg:polygon detid="486868680" count="1" value="78" id="2606039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  2 forward    Id 486868680 " fill="rgb(255,101,0)" points="1154.2,2145.39 1147.38,2153.68 1155.62,2155.68 1160.75,2146.98 " />
<svg:polygon detid="486868684" count="1" value="78" id="2606040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  3 forward    Id 486868684 " fill="rgb(255,101,0)" points="1163.07,2147.46 1157.86,2156.15 1166.43,2157.6 1169.88,2148.61 " />
<svg:polygon detid="486901700" count="1" value="78" id="2606041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward    Id 486901700 " fill="rgb(255,101,0)" points="1172.27,2148.93 1168.75,2157.91 1177.54,2158.79 1179.26,2149.63 " />
<svg:polygon detid="486901704" count="1" value="78" id="2606042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward    Id 486901704 " fill="rgb(255,101,0)" points="1181.7,2149.79 1179.91,2158.94 1188.81,2159.24 1188.77,2150.03 " />
<svg:polygon detid="486901708" count="1" value="78" id="2606043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  3 forward    Id 486901708 " fill="rgb(255,101,0)" points="1191.23,2150.03 1191.19,2159.24 1200.09,2158.94 1198.3,2149.79 " />
<svg:polygon detid="486901712" count="1" value="78" id="2606044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  0 backward    Id 486901712 " fill="rgb(255,101,0)" points="1200.74,2149.63 1202.46,2158.79 1211.25,2157.91 1207.73,2148.93 " />
<svg:polygon detid="486868932" count="1" value="78" id="2606045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward    Id 486868932 " fill="rgb(255,101,0)" points="1210.12,2148.61 1213.57,2157.6 1222.14,2156.15 1216.93,2147.46 " />
<svg:polygon detid="486868936" count="1" value="78" id="2606046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  2 forward    Id 486868936 " fill="rgb(255,101,0)" points="1219.25,2146.98 1224.38,2155.68 1232.62,2153.68 1225.8,2145.39 " />
<svg:polygon detid="486868940" count="1" value="78" id="2606047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  3 forward    Id 486868940 " fill="rgb(255,101,0)" points="1228.01,2144.76 1234.77,2153.07 1242.57,2150.53 1234.21,2142.74 " />
<svg:polygon detid="486901956" count="1" value="78" id="2606048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward    Id 486901956 " fill="rgb(255,101,0)" points="1236.29,2141.98 1244.59,2149.79 1251.86,2146.75 1242.07,2139.56 " />
<svg:polygon detid="486901960" count="1" value="78" id="2606049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward    Id 486901960 " fill="rgb(255,101,0)" points="1243.98,2138.66 1253.72,2145.88 1260.37,2142.38 1249.27,2135.89 " />
<svg:polygon detid="486901964" count="1" value="78" id="2606050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  3 forward    Id 486901964 " fill="rgb(255,101,0)" points="1251,2134.87 1262.05,2141.39 1267.99,2137.48 1255.73,2131.76 " />
<svg:polygon detid="486901968" count="1" value="78" id="2606051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  0 backward    Id 486901968 " fill="rgb(255,101,0)" points="1257.26,2130.63 1269.48,2136.39 1274.64,2132.11 1261.36,2127.23 " />
<svg:polygon detid="486869188" count="1" value="78" id="2606052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward    Id 486869188 " fill="rgb(255,101,0)" points="1262.66,2126.01 1275.9,2130.92 1280.22,2126.33 1266.09,2122.36 " />
<svg:polygon detid="486869192" count="1" value="78" id="2606053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  2 forward    Id 486869192 " fill="rgb(255,101,0)" points="1267.16,2121.06 1281.25,2125.07 1284.66,2120.23 1269.87,2117.2 " />
<svg:polygon detid="486869196" count="1" value="78" id="2606054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  3 forward    Id 486869196 " fill="rgb(255,101,0)" points="1270.68,2115.84 1285.45,2118.9 1287.92,2113.86 1272.64,2111.84 " />
<svg:polygon detid="486900176" count="1" value="78" id="2606055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  0 backward    Id 486900176 " fill="rgb(255,101,0)" points="1273.19,2110.43 1288.45,2112.5 1289.94,2107.33 1274.38,2106.32 " />
<svg:polygon detid="486900168" count="1" value="78" id="2606056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward    Id 486900168 " fill="rgb(255,101,0)" points="1274.65,2104.88 1290.21,2105.94 1290.71,2100.7 1275.05,2100.72 " />
<svg:polygon detid="486900196" count="1" value="78" id="2607001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 forward    Id 486900196 " fill="rgb(255,101,0)" points="1293.72,2101.79 1311.12,2102.21 1311.12,2097.79 1293.72,2098.21 " />
<svg:polygon detid="486900204" count="1" value="78" id="2607002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  3 forward    Id 486900204 " fill="rgb(255,101,0)" points="1293.64,2096.99 1311.04,2096.61 1310.46,2092.21 1293.17,2093.43 " />
<svg:polygon detid="486900208" count="1" value="78" id="2607003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  0 backward    Id 486900208 " fill="rgb(255,101,0)" points="1292.92,2092.22 1310.22,2091.03 1309.05,2086.68 1291.97,2088.69 " />
<svg:polygon detid="486867428" count="1" value="78" id="2607004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 forward    Id 486867428 " fill="rgb(255,101,0)" points="1291.57,2087.49 1308.65,2085.51 1306.9,2081.22 1290.15,2084.02 " />
<svg:polygon detid="486867432" count="1" value="78" id="2607005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  2 forward    Id 486867432 " fill="rgb(255,101,0)" points="1289.59,2082.85 1306.35,2080.08 1304.04,2075.89 1287.71,2079.45 " />
<svg:polygon detid="486867436" count="1" value="78" id="2607006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  3 forward    Id 486867436 " fill="rgb(255,101,0)" points="1286.99,2078.3 1303.34,2074.77 1300.47,2070.7 1284.67,2075 " />
<svg:polygon detid="486867440" count="1" value="78" id="2607007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  0 backward    Id 486867440 " fill="rgb(255,101,0)" points="1283.8,2073.89 1299.62,2069.62 1296.22,2065.69 1281.04,2070.71 " />
<svg:polygon detid="486867444" count="1" value="78" id="2607008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 forward  module  1 backward    Id 486867444 " fill="rgb(255,101,0)" points="1280.03,2069.64 1295.23,2064.65 1291.32,2060.89 1276.85,2066.6 " />
<svg:polygon detid="486900452" count="1" value="78" id="2607009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 forward    Id 486900452 " fill="rgb(255,101,0)" points="1275.7,2065.58 1290.19,2059.9 1285.79,2056.34 1272.13,2062.69 " />
<svg:polygon detid="486900456" count="1" value="78" id="2607010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  2 forward    Id 486900456 " fill="rgb(255,101,0)" points="1270.84,2061.73 1284.54,2055.4 1279.67,2052.05 1266.9,2059.02 " />
<svg:polygon detid="486900460" count="1" value="78" id="2607011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  3 forward    Id 486900460 " fill="rgb(255,101,0)" points="1265.49,2058.12 1278.3,2051.18 1273,2048.06 1261.19,2055.59 " />
<svg:polygon detid="486900464" count="1" value="78" id="2607012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  0 backward    Id 486900464 " fill="rgb(255,101,0)" points="1259.67,2054.77 1271.51,2047.25 1265.81,2044.39 1255.05,2052.44 " />
<svg:polygon detid="486900468" count="1" value="78" id="2607013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 backward  module  1 backward    Id 486900468 " fill="rgb(255,101,0)" points="1253.43,2051.69 1264.23,2043.65 1258.16,2041.06 1248.51,2049.59 " />
<svg:polygon detid="486867684" count="1" value="78" id="2607014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 forward    Id 486867684 " fill="rgb(255,101,0)" points="1246.79,2048.91 1256.48,2040.4 1250.09,2038.1 1241.6,2047.04 " />
<svg:polygon detid="486867688" count="1" value="78" id="2607015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  2 forward    Id 486867688 " fill="rgb(255,101,0)" points="1239.8,2046.45 1248.33,2037.52 1241.65,2035.52 1234.38,2044.83 " />
<svg:polygon detid="486867692" count="1" value="78" id="2607016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  3 forward    Id 486867692 " fill="rgb(255,101,0)" points="1232.5,2044.31 1239.81,2035.02 1232.89,2033.33 1226.89,2042.95 " />
<svg:polygon detid="486867696" count="1" value="78" id="2607017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  0 backward    Id 486867696 " fill="rgb(255,101,0)" points="1224.94,2042.52 1230.99,2032.92 1223.86,2031.56 1219.16,2041.42 " />
<svg:polygon detid="486867700" count="1" value="78" id="2607018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 2 forward  module  1 backward    Id 486867700 " fill="rgb(255,101,0)" points="1217.17,2041.09 1221.92,2031.23 1214.63,2030.21 1211.26,2040.25 " />
<svg:polygon detid="486900708" count="1" value="78" id="2607019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 forward    Id 486900708 " fill="rgb(255,101,0)" points="1209.23,2040.02 1212.65,2029.97 1205.25,2029.28 1203.22,2039.46 " />
<svg:polygon detid="486900712" count="1" value="78" id="2607020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  2 forward    Id 486900712 " fill="rgb(255,101,0)" points="1201.17,2039.31 1203.24,2029.14 1195.77,2028.8 1195.11,2039.03 " />
<svg:polygon detid="486900716" count="1" value="78" id="2607021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  3 forward    Id 486900716 " fill="rgb(255,101,0)" points="1193.04,2038.99 1193.75,2028.75 1186.25,2028.75 1186.96,2038.99 " />
<svg:polygon detid="486900720" count="1" value="78" id="2607022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  0 backward    Id 486900720 " fill="rgb(255,101,0)" points="1184.89,2039.03 1184.23,2028.8 1176.76,2029.14 1178.83,2039.31 " />
<svg:polygon detid="486900724" count="1" value="78" id="2607023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 backward  module  1 backward    Id 486900724 " fill="rgb(255,101,0)" points="1176.78,2039.46 1174.75,2029.28 1167.35,2029.97 1170.77,2040.02 " />
<svg:polygon detid="486867940" count="1" value="78" id="2607024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 forward    Id 486867940 " fill="rgb(255,101,0)" points="1168.74,2040.25 1165.37,2030.21 1158.08,2031.23 1162.83,2041.09 " />
<svg:polygon detid="486867944" count="1" value="78" id="2607025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  2 forward    Id 486867944 " fill="rgb(255,101,0)" points="1160.84,2041.42 1156.14,2031.56 1149.01,2032.92 1155.06,2042.52 " />
<svg:polygon detid="486867948" count="1" value="78" id="2607026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  3 forward    Id 486867948 " fill="rgb(255,101,0)" points="1153.11,2042.95 1147.11,2033.33 1140.19,2035.02 1147.5,2044.31 " />
<svg:polygon detid="486867952" count="1" value="78" id="2607027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  0 backward    Id 486867952 " fill="rgb(255,101,0)" points="1145.62,2044.83 1138.35,2035.52 1131.67,2037.52 1140.2,2046.45 " />
<svg:polygon detid="486867956" count="1" value="78" id="2607028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 3 forward  module  1 backward    Id 486867956 " fill="rgb(255,101,0)" points="1138.4,2047.04 1129.91,2038.1 1123.52,2040.4 1133.21,2048.91 " />
<svg:polygon detid="486900964" count="1" value="78" id="2607029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 forward    Id 486900964 " fill="rgb(255,101,0)" points="1131.49,2049.59 1121.84,2041.06 1115.77,2043.65 1126.57,2051.69 " />
<svg:polygon detid="486900968" count="1" value="78" id="2607030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  2 forward    Id 486900968 " fill="rgb(255,101,0)" points="1124.95,2052.44 1114.19,2044.39 1108.49,2047.25 1120.33,2054.77 " />
<svg:polygon detid="486900972" count="1" value="78" id="2607031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  3 forward    Id 486900972 " fill="rgb(255,101,0)" points="1118.81,2055.59 1107,2048.06 1101.7,2051.18 1114.51,2058.12 " />
<svg:polygon detid="486900976" count="1" value="78" id="2607032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  0 backward    Id 486900976 " fill="rgb(255,101,0)" points="1113.1,2059.02 1100.33,2052.05 1095.46,2055.4 1109.16,2061.73 " />
<svg:polygon detid="486900980" count="1" value="78" id="2607033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 backward  module  1 backward    Id 486900980 " fill="rgb(255,101,0)" points="1107.87,2062.69 1094.21,2056.34 1089.81,2059.9 1104.3,2065.58 " />
<svg:polygon detid="486868196" count="1" value="78" id="2607034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 forward    Id 486868196 " fill="rgb(255,101,0)" points="1103.15,2066.6 1088.68,2060.89 1084.77,2064.65 1099.97,2069.64 " />
<svg:polygon detid="486868200" count="1" value="78" id="2607035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  2 forward    Id 486868200 " fill="rgb(255,101,0)" points="1098.96,2070.71 1083.78,2065.69 1080.38,2069.62 1096.2,2073.89 " />
<svg:polygon detid="486868204" count="1" value="78" id="2607036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  3 forward    Id 486868204 " fill="rgb(255,101,0)" points="1095.33,2075 1079.53,2070.7 1076.66,2074.77 1093.01,2078.3 " />
<svg:polygon detid="486868208" count="1" value="78" id="2607037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  0 backward    Id 486868208 " fill="rgb(255,101,0)" points="1092.29,2079.45 1075.96,2075.89 1073.65,2080.08 1090.41,2082.85 " />
<svg:polygon detid="486868212" count="1" value="78" id="2607038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 4 forward  module  1 backward    Id 486868212 " fill="rgb(255,101,0)" points="1089.85,2084.02 1073.1,2081.22 1071.35,2085.51 1088.43,2087.49 " />
<svg:polygon detid="486901220" count="1" value="78" id="2607039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 forward    Id 486901220 " fill="rgb(255,101,0)" points="1088.03,2088.69 1070.95,2086.68 1069.78,2091.03 1087.08,2092.22 " />
<svg:polygon detid="486901224" count="1" value="78" id="2607040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  2 forward    Id 486901224 " fill="rgb(255,101,0)" points="1086.83,2093.43 1069.54,2092.21 1068.96,2096.61 1086.36,2096.99 " />
<svg:polygon detid="486901228" count="1" value="78" id="2607041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  3 forward    Id 486901228 " fill="rgb(255,101,0)" points="1086.28,2098.21 1068.88,2097.79 1068.88,2102.21 1086.28,2101.79 " />
<svg:polygon detid="486901232" count="1" value="78" id="2607042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  0 backward    Id 486901232 " fill="rgb(255,101,0)" points="1086.36,2103.01 1068.96,2103.39 1069.54,2107.79 1086.83,2106.57 " />
<svg:polygon detid="486901236" count="1" value="78" id="2607043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 backward  module  1 backward    Id 486901236 " fill="rgb(255,101,0)" points="1087.08,2107.78 1069.78,2108.97 1070.95,2113.32 1088.03,2111.31 " />
<svg:polygon detid="486868452" count="1" value="78" id="2607044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 forward    Id 486868452 " fill="rgb(255,101,0)" points="1088.43,2112.51 1071.35,2114.49 1073.1,2118.78 1089.85,2115.98 " />
<svg:polygon detid="486868456" count="1" value="78" id="2607045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  2 forward    Id 486868456 " fill="rgb(255,101,0)" points="1090.41,2117.15 1073.65,2119.92 1075.96,2124.11 1092.29,2120.55 " />
<svg:polygon detid="486868460" count="1" value="78" id="2607046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  3 forward    Id 486868460 " fill="rgb(255,101,0)" points="1093.01,2121.7 1076.66,2125.23 1079.53,2129.3 1095.33,2125 " />
<svg:polygon detid="486868464" count="1" value="78" id="2607047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  0 backward    Id 486868464 " fill="rgb(255,101,0)" points="1096.2,2126.11 1080.38,2130.38 1083.78,2134.31 1098.96,2129.29 " />
<svg:polygon detid="486868468" count="1" value="78" id="2607048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 5 forward  module  1 backward    Id 486868468 " fill="rgb(255,101,0)" points="1099.97,2130.36 1084.77,2135.35 1088.68,2139.11 1103.15,2133.4 " />
<svg:polygon detid="486901476" count="1" value="78" id="2607049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 forward    Id 486901476 " fill="rgb(255,101,0)" points="1104.3,2134.42 1089.81,2140.1 1094.21,2143.66 1107.87,2137.31 " />
<svg:polygon detid="486901480" count="1" value="78" id="2607050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  2 forward    Id 486901480 " fill="rgb(255,101,0)" points="1109.16,2138.27 1095.46,2144.6 1100.33,2147.95 1113.1,2140.98 " />
<svg:polygon detid="486901484" count="1" value="78" id="2607051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  3 forward    Id 486901484 " fill="rgb(255,101,0)" points="1114.51,2141.88 1101.7,2148.82 1107,2151.94 1118.81,2144.41 " />
<svg:polygon detid="486901488" count="1" value="78" id="2607052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  0 backward    Id 486901488 " fill="rgb(255,101,0)" points="1120.33,2145.23 1108.49,2152.75 1114.19,2155.61 1124.95,2147.56 " />
<svg:polygon detid="486901492" count="1" value="78" id="2607053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 backward  module  1 backward    Id 486901492 " fill="rgb(255,101,0)" points="1126.57,2148.31 1115.77,2156.35 1121.84,2158.94 1131.49,2150.41 " />
<svg:polygon detid="486868708" count="1" value="78" id="2607054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 forward    Id 486868708 " fill="rgb(255,101,0)" points="1133.21,2151.09 1123.52,2159.6 1129.91,2161.9 1138.4,2152.96 " />
<svg:polygon detid="486868712" count="1" value="78" id="2607055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  2 forward    Id 486868712 " fill="rgb(255,101,0)" points="1140.2,2153.55 1131.67,2162.48 1138.35,2164.48 1145.62,2155.17 " />
<svg:polygon detid="486868716" count="1" value="78" id="2607056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  3 forward    Id 486868716 " fill="rgb(255,101,0)" points="1147.5,2155.69 1140.19,2164.98 1147.11,2166.67 1153.11,2157.05 " />
<svg:polygon detid="486868720" count="1" value="78" id="2607057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  0 backward    Id 486868720 " fill="rgb(255,101,0)" points="1155.06,2157.48 1149.01,2167.08 1156.14,2168.44 1160.84,2158.58 " />
<svg:polygon detid="486868724" count="1" value="78" id="2607058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 6 forward  module  1 backward    Id 486868724 " fill="rgb(255,101,0)" points="1162.83,2158.91 1158.08,2168.77 1165.37,2169.79 1168.74,2159.75 " />
<svg:polygon detid="486901732" count="1" value="78" id="2607059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 forward    Id 486901732 " fill="rgb(255,101,0)" points="1170.77,2159.98 1167.35,2170.03 1174.75,2170.72 1176.78,2160.54 " />
<svg:polygon detid="486901736" count="1" value="78" id="2607060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  2 forward    Id 486901736 " fill="rgb(255,101,0)" points="1178.83,2160.69 1176.76,2170.86 1184.23,2171.2 1184.89,2160.97 " />
<svg:polygon detid="486901740" count="1" value="78" id="2607061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  3 forward    Id 486901740 " fill="rgb(255,101,0)" points="1186.96,2161.01 1186.25,2171.25 1193.75,2171.25 1193.04,2161.01 " />
<svg:polygon detid="486901744" count="1" value="78" id="2607062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  0 backward    Id 486901744 " fill="rgb(255,101,0)" points="1195.11,2160.97 1195.77,2171.2 1203.24,2170.86 1201.17,2160.69 " />
<svg:polygon detid="486901748" count="1" value="78" id="2607063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 backward  module  1 backward    Id 486901748 " fill="rgb(255,101,0)" points="1203.22,2160.54 1205.25,2170.72 1212.65,2170.03 1209.23,2159.98 " />
<svg:polygon detid="486868964" count="1" value="78" id="2607064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 forward    Id 486868964 " fill="rgb(255,101,0)" points="1211.26,2159.75 1214.63,2169.79 1221.92,2168.77 1217.17,2158.91 " />
<svg:polygon detid="486868968" count="1" value="78" id="2607065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  2 forward    Id 486868968 " fill="rgb(255,101,0)" points="1219.16,2158.58 1223.86,2168.44 1230.99,2167.08 1224.94,2157.48 " />
<svg:polygon detid="486868972" count="1" value="78" id="2607066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  3 forward    Id 486868972 " fill="rgb(255,101,0)" points="1226.89,2157.05 1232.89,2166.67 1239.81,2164.98 1232.5,2155.69 " />
<svg:polygon detid="486868976" count="1" value="78" id="2607067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  0 backward    Id 486868976 " fill="rgb(255,101,0)" points="1234.38,2155.17 1241.65,2164.48 1248.33,2162.48 1239.8,2153.55 " />
<svg:polygon detid="486868980" count="1" value="78" id="2607068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 7 forward  module  1 backward    Id 486868980 " fill="rgb(255,101,0)" points="1241.6,2152.96 1250.09,2161.9 1256.48,2159.6 1246.79,2151.09 " />
<svg:polygon detid="486901988" count="1" value="78" id="2607069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 forward    Id 486901988 " fill="rgb(255,101,0)" points="1248.51,2150.41 1258.16,2158.94 1264.23,2156.35 1253.43,2148.31 " />
<svg:polygon detid="486901992" count="1" value="78" id="2607070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  2 forward    Id 486901992 " fill="rgb(255,101,0)" points="1255.05,2147.56 1265.81,2155.61 1271.51,2152.75 1259.67,2145.23 " />
<svg:polygon detid="486901996" count="1" value="78" id="2607071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  3 forward    Id 486901996 " fill="rgb(255,101,0)" points="1261.19,2144.41 1273,2151.94 1278.3,2148.82 1265.49,2141.88 " />
<svg:polygon detid="486902000" count="1" value="78" id="2607072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  0 backward    Id 486902000 " fill="rgb(255,101,0)" points="1266.9,2140.98 1279.67,2147.95 1284.54,2144.6 1270.84,2138.27 " />
<svg:polygon detid="486902004" count="1" value="78" id="2607073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 backward  module  1 backward    Id 486902004 " fill="rgb(255,101,0)" points="1272.13,2137.31 1285.79,2143.66 1290.19,2140.1 1275.7,2134.42 " />
<svg:polygon detid="486869220" count="1" value="78" id="2607074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 forward    Id 486869220 " fill="rgb(255,101,0)" points="1276.85,2133.4 1291.32,2139.11 1295.23,2135.35 1280.03,2130.36 " />
<svg:polygon detid="486869224" count="1" value="78" id="2607075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  2 forward    Id 486869224 " fill="rgb(255,101,0)" points="1281.04,2129.29 1296.22,2134.31 1299.62,2130.38 1283.8,2126.11 " />
<svg:polygon detid="486869228" count="1" value="78" id="2607076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  3 forward    Id 486869228 " fill="rgb(255,101,0)" points="1284.67,2125 1300.47,2129.3 1303.34,2125.23 1286.99,2121.7 " />
<svg:polygon detid="486869232" count="1" value="78" id="2607077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  0 backward    Id 486869232 " fill="rgb(255,101,0)" points="1287.71,2120.55 1304.04,2124.11 1306.35,2119.92 1289.59,2117.15 " />
<svg:polygon detid="486869236" count="1" value="78" id="2607078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 8 forward  module  1 backward    Id 486869236 " fill="rgb(255,101,0)" points="1290.15,2115.98 1306.9,2118.78 1308.65,2114.49 1291.57,2112.51 " />
<svg:polygon detid="486900212" count="1" value="78" id="2607079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  1 backward    Id 486900212 " fill="rgb(255,101,0)" points="1291.97,2111.31 1309.05,2113.32 1310.22,2108.97 1292.92,2107.78 " />
<svg:polygon detid="486900200" count="1" value="78" id="2607080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 5 ring 0 petal 1 backward  module  2 forward    Id 486900200 " fill="rgb(255,101,0)" points="1293.17,2106.57 1310.46,2107.79 1311.04,2103.39 1293.64,2103.01 " />
<svg:polygon detid="486965578" count="1" value="81" id="2702001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward    Id 486965578 " fill="rgb(255,95,0)" points="1234.35,2293.78 1227.06,2294.96 1228.01,2299.23 " />
<svg:polygon detid="486932806" count="1" value="81" id="2702002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward    Id 486932806 " fill="rgb(255,95,0)" points="1230.1,2287.24 1223.57,2289.49 1226.38,2293.47 " />
<svg:polygon detid="486965830" count="1" value="81" id="2702003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward    Id 486965830 " fill="rgb(255,95,0)" points="1223.12,2281.57 1217.8,2284.73 1222.27,2288.15 " />
<svg:polygon detid="486965834" count="1" value="81" id="2702004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward    Id 486965834 " fill="rgb(255,95,0)" points="1213.88,2277.16 1210.14,2281.02 1215.95,2283.64 " />
<svg:polygon detid="486933062" count="1" value="81" id="2702005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward    Id 486933062 " fill="rgb(255,95,0)" points="1203.02,2274.3 1201.1,2278.6 1207.87,2280.25 " />
<svg:polygon detid="486966086" count="1" value="81" id="2702006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward    Id 486966086 " fill="rgb(255,95,0)" points="1191.27,2273.19 1191.31,2277.64 1198.57,2278.2 " />
<svg:polygon detid="486966090" count="1" value="81" id="2702007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward    Id 486966090 " fill="rgb(255,95,0)" points="1179.43,2273.91 1181.43,2278.2 1188.69,2277.64 " />
<svg:polygon detid="486933318" count="1" value="81" id="2702008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward    Id 486933318 " fill="rgb(255,95,0)" points="1168.31,2276.41 1172.13,2280.25 1178.9,2278.6 " />
<svg:polygon detid="486966342" count="1" value="81" id="2702009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward    Id 486966342 " fill="rgb(255,95,0)" points="1158.67,2280.52 1164.05,2283.64 1169.86,2281.02 " />
<svg:polygon detid="486966346" count="1" value="81" id="2702010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward    Id 486966346 " fill="rgb(255,95,0)" points="1151.17,2285.95 1157.73,2288.15 1162.2,2284.73 " />
<svg:polygon detid="486933574" count="1" value="81" id="2702011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward    Id 486933574 " fill="rgb(255,95,0)" points="1146.31,2292.34 1153.62,2293.47 1156.43,2289.49 " />
<svg:polygon detid="486966598" count="1" value="81" id="2702012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward    Id 486966598 " fill="rgb(255,95,0)" points="1144.43,2299.25 1151.99,2299.23 1152.94,2294.96 " />
<svg:polygon detid="486966602" count="1" value="81" id="2702013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward    Id 486966602 " fill="rgb(255,95,0)" points="1145.65,2306.22 1152.94,2305.04 1151.99,2300.77 " />
<svg:polygon detid="486933830" count="1" value="81" id="2702014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward    Id 486933830 " fill="rgb(255,95,0)" points="1149.9,2312.76 1156.43,2310.51 1153.62,2306.53 " />
<svg:polygon detid="486966854" count="1" value="81" id="2702015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward    Id 486966854 " fill="rgb(255,95,0)" points="1156.88,2318.43 1162.2,2315.27 1157.73,2311.85 " />
<svg:polygon detid="486966858" count="1" value="81" id="2702016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward    Id 486966858 " fill="rgb(255,95,0)" points="1166.12,2322.84 1169.86,2318.98 1164.05,2316.36 " />
<svg:polygon detid="486934086" count="1" value="81" id="2702017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward    Id 486934086 " fill="rgb(255,95,0)" points="1176.98,2325.7 1178.9,2321.4 1172.13,2319.75 " />
<svg:polygon detid="486967110" count="1" value="81" id="2702018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward    Id 486967110 " fill="rgb(255,95,0)" points="1188.73,2326.81 1188.69,2322.36 1181.43,2321.8 " />
<svg:polygon detid="486967114" count="1" value="81" id="2702019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward    Id 486967114 " fill="rgb(255,95,0)" points="1200.57,2326.09 1198.57,2321.8 1191.31,2322.36 " />
<svg:polygon detid="486934342" count="1" value="81" id="2702020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward    Id 486934342 " fill="rgb(255,95,0)" points="1211.69,2323.59 1207.87,2319.75 1201.1,2321.4 " />
<svg:polygon detid="486967366" count="1" value="81" id="2702021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward    Id 486967366 " fill="rgb(255,95,0)" points="1221.33,2319.48 1215.95,2316.36 1210.14,2318.98 " />
<svg:polygon detid="486967370" count="1" value="81" id="2702022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward    Id 486967370 " fill="rgb(255,95,0)" points="1228.83,2314.05 1222.27,2311.85 1217.8,2315.27 " />
<svg:polygon detid="486934598" count="1" value="81" id="2702023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward    Id 486934598 " fill="rgb(255,95,0)" points="1233.69,2307.66 1226.38,2306.53 1223.57,2310.51 " />
<svg:polygon detid="486965574" count="1" value="81" id="2702024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward    Id 486965574 " fill="rgb(255,95,0)" points="1235.57,2300.75 1228.01,2300.77 1227.06,2305.04 " />
<svg:polygon detid="486965577" count="1" value="81" id="2702101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward   stereo Id 486965577 " fill="rgb(255,95,0)" points="1228.01,2299.23 1235.57,2299.25 1234.35,2293.78 " />
<svg:polygon detid="486932805" count="1" value="81" id="2702102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward   stereo Id 486932805 " fill="rgb(255,95,0)" points="1226.38,2293.47 1233.69,2292.34 1230.1,2287.24 " />
<svg:polygon detid="486965829" count="1" value="81" id="2702103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward   stereo Id 486965829 " fill="rgb(255,95,0)" points="1222.27,2288.15 1228.83,2285.95 1223.12,2281.57 " />
<svg:polygon detid="486965833" count="1" value="81" id="2702104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward   stereo Id 486965833 " fill="rgb(255,95,0)" points="1215.95,2283.64 1221.33,2280.52 1213.88,2277.16 " />
<svg:polygon detid="486933061" count="1" value="81" id="2702105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward   stereo Id 486933061 " fill="rgb(255,95,0)" points="1207.87,2280.25 1211.69,2276.41 1203.02,2274.3 " />
<svg:polygon detid="486966085" count="1" value="81" id="2702106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward   stereo Id 486966085 " fill="rgb(255,95,0)" points="1198.57,2278.2 1200.57,2273.91 1191.27,2273.19 " />
<svg:polygon detid="486966089" count="1" value="81" id="2702107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward   stereo Id 486966089 " fill="rgb(255,95,0)" points="1188.69,2277.64 1188.73,2273.19 1179.43,2273.91 " />
<svg:polygon detid="486933317" count="1" value="81" id="2702108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward   stereo Id 486933317 " fill="rgb(255,95,0)" points="1178.9,2278.6 1176.98,2274.3 1168.31,2276.41 " />
<svg:polygon detid="486966341" count="1" value="81" id="2702109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward   stereo Id 486966341 " fill="rgb(255,95,0)" points="1169.86,2281.02 1166.12,2277.16 1158.67,2280.52 " />
<svg:polygon detid="486966345" count="1" value="81" id="2702110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward   stereo Id 486966345 " fill="rgb(255,95,0)" points="1162.2,2284.73 1156.88,2281.57 1151.17,2285.95 " />
<svg:polygon detid="486933573" count="1" value="81" id="2702111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward   stereo Id 486933573 " fill="rgb(255,95,0)" points="1156.43,2289.49 1149.9,2287.24 1146.31,2292.34 " />
<svg:polygon detid="486966597" count="1" value="81" id="2702112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward   stereo Id 486966597 " fill="rgb(255,95,0)" points="1152.94,2294.96 1145.65,2293.78 1144.43,2299.25 " />
<svg:polygon detid="486966601" count="1" value="81" id="2702113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward   stereo Id 486966601 " fill="rgb(255,95,0)" points="1151.99,2300.77 1144.43,2300.75 1145.65,2306.22 " />
<svg:polygon detid="486933829" count="1" value="81" id="2702114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward   stereo Id 486933829 " fill="rgb(255,95,0)" points="1153.62,2306.53 1146.31,2307.66 1149.9,2312.76 " />
<svg:polygon detid="486966853" count="1" value="81" id="2702115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward   stereo Id 486966853 " fill="rgb(255,95,0)" points="1157.73,2311.85 1151.17,2314.05 1156.88,2318.43 " />
<svg:polygon detid="486966857" count="1" value="81" id="2702116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward   stereo Id 486966857 " fill="rgb(255,95,0)" points="1164.05,2316.36 1158.67,2319.48 1166.12,2322.84 " />
<svg:polygon detid="486934085" count="1" value="81" id="2702117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward   stereo Id 486934085 " fill="rgb(255,95,0)" points="1172.13,2319.75 1168.31,2323.59 1176.98,2325.7 " />
<svg:polygon detid="486967109" count="1" value="81" id="2702118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward   stereo Id 486967109 " fill="rgb(255,95,0)" points="1181.43,2321.8 1179.43,2326.09 1188.73,2326.81 " />
<svg:polygon detid="486967113" count="1" value="81" id="2702119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward   stereo Id 486967113 " fill="rgb(255,95,0)" points="1191.31,2322.36 1191.27,2326.81 1200.57,2326.09 " />
<svg:polygon detid="486934341" count="1" value="81" id="2702120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward   stereo Id 486934341 " fill="rgb(255,95,0)" points="1201.1,2321.4 1203.02,2325.7 1211.69,2323.59 " />
<svg:polygon detid="486967365" count="1" value="81" id="2702121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward   stereo Id 486967365 " fill="rgb(255,95,0)" points="1210.14,2318.98 1213.88,2322.84 1221.33,2319.48 " />
<svg:polygon detid="486967369" count="1" value="81" id="2702122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward   stereo Id 486967369 " fill="rgb(255,95,0)" points="1217.8,2315.27 1223.12,2318.43 1228.83,2314.05 " />
<svg:polygon detid="486934597" count="1" value="81" id="2702123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward   stereo Id 486934597 " fill="rgb(255,95,0)" points="1223.57,2310.51 1230.1,2312.76 1233.69,2307.66 " />
<svg:polygon detid="486965573" count="1" value="81" id="2702124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward   stereo Id 486965573 " fill="rgb(255,95,0)" points="1227.06,2305.04 1234.35,2306.22 1235.57,2300.75 " />
<svg:polygon detid="486965604" count="1" value="81" id="2703001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward    Id 486965604 " fill="rgb(255,95,0)" points="1236.01,2301.57 1245.41,2302.03 1245.41,2297.97 1236.01,2298.43 " />
<svg:polygon detid="486965608" count="1" value="81" id="2703002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward    Id 486965608 " fill="rgb(255,95,0)" points="1235.86,2297.32 1245.27,2296.91 1244.19,2292.9 1235.02,2294.21 " />
<svg:polygon detid="486932836" count="1" value="81" id="2703003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward    Id 486932836 " fill="rgb(255,95,0)" points="1234.58,2293.13 1243.76,2291.86 1241.63,2288 1232.93,2290.14 " />
<svg:polygon detid="486932840" count="1" value="81" id="2703004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  2 forward    Id 486932840 " fill="rgb(255,95,0)" points="1232.21,2289.12 1240.94,2287.01 1237.8,2283.39 1229.78,2286.31 " />
<svg:polygon detid="486965860" count="1" value="81" id="2703005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward    Id 486965860 " fill="rgb(255,95,0)" points="1228.8,2285.37 1236.86,2282.48 1232.8,2279.2 1225.65,2282.82 " />
<svg:polygon detid="486965864" count="1" value="81" id="2703006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward    Id 486965864 " fill="rgb(255,95,0)" points="1224.43,2281.98 1231.62,2278.39 1226.74,2275.52 1220.64,2279.75 " />
<svg:polygon detid="486965868" count="1" value="81" id="2703007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  3 forward    Id 486965868 " fill="rgb(255,95,0)" points="1219.21,2279.03 1225.36,2274.82 1219.78,2272.44 1214.88,2277.18 " />
<svg:polygon detid="486933092" count="1" value="81" id="2703008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward    Id 486933092 " fill="rgb(255,95,0)" points="1213.27,2276.6 1218.23,2271.88 1212.08,2270.04 1208.5,2275.17 " />
<svg:polygon detid="486933096" count="1" value="81" id="2703009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  2 forward    Id 486933096 " fill="rgb(255,95,0)" points="1206.76,2274.75 1210.4,2269.63 1203.84,2268.37 1201.67,2273.77 " />
<svg:polygon detid="486966116" count="1" value="81" id="2703010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward    Id 486966116 " fill="rgb(255,95,0)" points="1199.84,2273.52 1202.08,2268.13 1195.26,2267.49 1194.55,2273.02 " />
<svg:polygon detid="486966120" count="1" value="81" id="2703011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward    Id 486966120 " fill="rgb(255,95,0)" points="1192.68,2272.94 1193.45,2267.41 1186.55,2267.41 1187.32,2272.94 " />
<svg:polygon detid="486966124" count="1" value="81" id="2703012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  3 forward    Id 486966124 " fill="rgb(255,95,0)" points="1185.45,2273.02 1184.74,2267.49 1177.92,2268.13 1180.16,2273.52 " />
<svg:polygon detid="486933348" count="1" value="81" id="2703013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward    Id 486933348 " fill="rgb(255,95,0)" points="1178.33,2273.77 1176.16,2268.37 1169.6,2269.63 1173.24,2274.75 " />
<svg:polygon detid="486933352" count="1" value="81" id="2703014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  2 forward    Id 486933352 " fill="rgb(255,95,0)" points="1171.5,2275.17 1167.92,2270.04 1161.77,2271.88 1166.73,2276.6 " />
<svg:polygon detid="486966372" count="1" value="81" id="2703015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward    Id 486966372 " fill="rgb(255,95,0)" points="1165.12,2277.18 1160.22,2272.44 1154.64,2274.82 1160.79,2279.03 " />
<svg:polygon detid="486966376" count="1" value="81" id="2703016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward    Id 486966376 " fill="rgb(255,95,0)" points="1159.36,2279.75 1153.26,2275.52 1148.38,2278.39 1155.57,2281.98 " />
<svg:polygon detid="486966380" count="1" value="81" id="2703017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  3 forward    Id 486966380 " fill="rgb(255,95,0)" points="1154.35,2282.82 1147.2,2279.2 1143.14,2282.48 1151.2,2285.37 " />
<svg:polygon detid="486933604" count="1" value="81" id="2703018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward    Id 486933604 " fill="rgb(255,95,0)" points="1150.22,2286.31 1142.2,2283.39 1139.06,2287.01 1147.79,2289.12 " />
<svg:polygon detid="486933608" count="1" value="81" id="2703019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  2 forward    Id 486933608 " fill="rgb(255,95,0)" points="1147.07,2290.14 1138.37,2288 1136.24,2291.86 1145.42,2293.13 " />
<svg:polygon detid="486966628" count="1" value="81" id="2703020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward    Id 486966628 " fill="rgb(255,95,0)" points="1144.98,2294.21 1135.81,2292.9 1134.73,2296.91 1144.14,2297.32 " />
<svg:polygon detid="486966632" count="1" value="81" id="2703021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward    Id 486966632 " fill="rgb(255,95,0)" points="1143.99,2298.43 1134.59,2297.97 1134.59,2302.03 1143.99,2301.57 " />
<svg:polygon detid="486966636" count="1" value="81" id="2703022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  3 forward    Id 486966636 " fill="rgb(255,95,0)" points="1144.14,2302.68 1134.73,2303.09 1135.81,2307.1 1144.98,2305.79 " />
<svg:polygon detid="486933860" count="1" value="81" id="2703023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward    Id 486933860 " fill="rgb(255,95,0)" points="1145.42,2306.87 1136.24,2308.14 1138.37,2312 1147.07,2309.86 " />
<svg:polygon detid="486933864" count="1" value="81" id="2703024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  2 forward    Id 486933864 " fill="rgb(255,95,0)" points="1147.79,2310.88 1139.06,2312.99 1142.2,2316.61 1150.22,2313.69 " />
<svg:polygon detid="486966884" count="1" value="81" id="2703025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward    Id 486966884 " fill="rgb(255,95,0)" points="1151.2,2314.63 1143.14,2317.52 1147.2,2320.8 1154.35,2317.18 " />
<svg:polygon detid="486966888" count="1" value="81" id="2703026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward    Id 486966888 " fill="rgb(255,95,0)" points="1155.57,2318.02 1148.38,2321.61 1153.26,2324.48 1159.36,2320.25 " />
<svg:polygon detid="486966892" count="1" value="81" id="2703027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  3 forward    Id 486966892 " fill="rgb(255,95,0)" points="1160.79,2320.97 1154.64,2325.18 1160.22,2327.56 1165.12,2322.82 " />
<svg:polygon detid="486934116" count="1" value="81" id="2703028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward    Id 486934116 " fill="rgb(255,95,0)" points="1166.73,2323.4 1161.77,2328.12 1167.92,2329.96 1171.5,2324.83 " />
<svg:polygon detid="486934120" count="1" value="81" id="2703029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  2 forward    Id 486934120 " fill="rgb(255,95,0)" points="1173.24,2325.25 1169.6,2330.37 1176.16,2331.63 1178.33,2326.23 " />
<svg:polygon detid="486967140" count="1" value="81" id="2703030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward    Id 486967140 " fill="rgb(255,95,0)" points="1180.16,2326.48 1177.92,2331.87 1184.74,2332.51 1185.45,2326.98 " />
<svg:polygon detid="486967144" count="1" value="81" id="2703031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward    Id 486967144 " fill="rgb(255,95,0)" points="1187.32,2327.06 1186.55,2332.59 1193.45,2332.59 1192.68,2327.06 " />
<svg:polygon detid="486967148" count="1" value="81" id="2703032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  3 forward    Id 486967148 " fill="rgb(255,95,0)" points="1194.55,2326.98 1195.26,2332.51 1202.08,2331.87 1199.84,2326.48 " />
<svg:polygon detid="486934372" count="1" value="81" id="2703033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward    Id 486934372 " fill="rgb(255,95,0)" points="1201.67,2326.23 1203.84,2331.63 1210.4,2330.37 1206.76,2325.25 " />
<svg:polygon detid="486934376" count="1" value="81" id="2703034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  2 forward    Id 486934376 " fill="rgb(255,95,0)" points="1208.5,2324.83 1212.08,2329.96 1218.23,2328.12 1213.27,2323.4 " />
<svg:polygon detid="486967396" count="1" value="81" id="2703035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward    Id 486967396 " fill="rgb(255,95,0)" points="1214.88,2322.82 1219.78,2327.56 1225.36,2325.18 1219.21,2320.97 " />
<svg:polygon detid="486967400" count="1" value="81" id="2703036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward    Id 486967400 " fill="rgb(255,95,0)" points="1220.64,2320.25 1226.74,2324.48 1231.62,2321.61 1224.43,2318.02 " />
<svg:polygon detid="486967404" count="1" value="81" id="2703037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  3 forward    Id 486967404 " fill="rgb(255,95,0)" points="1225.65,2317.18 1232.8,2320.8 1236.86,2317.52 1228.8,2314.63 " />
<svg:polygon detid="486934628" count="1" value="81" id="2703038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward    Id 486934628 " fill="rgb(255,95,0)" points="1229.78,2313.69 1237.8,2316.61 1240.94,2312.99 1232.21,2310.88 " />
<svg:polygon detid="486934632" count="1" value="81" id="2703039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  2 forward    Id 486934632 " fill="rgb(255,95,0)" points="1232.93,2309.86 1241.63,2312 1243.76,2308.14 1234.58,2306.87 " />
<svg:polygon detid="486965612" count="1" value="81" id="2703040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  3 forward    Id 486965612 " fill="rgb(255,95,0)" points="1235.02,2305.79 1244.19,2307.1 1245.27,2303.09 1235.86,2302.68 " />
<svg:polygon detid="486965640" count="1" value="81" id="2704001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward    Id 486965640 " fill="rgb(255,95,0)" points="1248.82,2299.51 1258.62,2299.52 1258.28,2295.96 1248.55,2296.62 " />
<svg:polygon detid="486965644" count="1" value="81" id="2704002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  3 forward    Id 486965644 " fill="rgb(255,95,0)" points="1248.36,2295.64 1258.1,2295 1257.08,2291.48 1247.53,2292.78 " />
<svg:polygon detid="486932868" count="1" value="81" id="2704003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward    Id 486932868 " fill="rgb(255,95,0)" points="1247.16,2291.82 1256.72,2290.55 1255.04,2287.12 1245.8,2289.04 " />
<svg:polygon detid="486932872" count="1" value="81" id="2704004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  2 forward    Id 486932872 " fill="rgb(255,95,0)" points="1245.24,2288.11 1254.5,2286.22 1252.18,2282.92 1243.36,2285.43 " />
<svg:polygon detid="486932876" count="1" value="81" id="2704005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  3 forward    Id 486932876 " fill="rgb(255,95,0)" points="1242.63,2284.54 1251.47,2282.05 1248.54,2278.93 1240.25,2282.01 " />
<svg:polygon detid="486965892" count="1" value="81" id="2704006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward    Id 486965892 " fill="rgb(255,95,0)" points="1239.36,2281.17 1247.67,2278.12 1244.16,2275.21 1236.51,2278.81 " />
<svg:polygon detid="486965896" count="1" value="81" id="2704007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward    Id 486965896 " fill="rgb(255,95,0)" points="1235.47,2278.04 1243.14,2274.46 1239.1,2271.8 1232.19,2275.88 " />
<svg:polygon detid="486965900" count="1" value="81" id="2704008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  3 forward    Id 486965900 " fill="rgb(255,95,0)" points="1231,2275.18 1237.95,2271.12 1233.42,2268.74 1227.33,2273.26 " />
<svg:polygon detid="486965904" count="1" value="81" id="2704009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  0 backward    Id 486965904 " fill="rgb(255,95,0)" points="1226.02,2272.64 1232.15,2268.14 1227.2,2266.08 1222.01,2270.96 " />
<svg:polygon detid="486933124" count="1" value="81" id="2704010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward    Id 486933124 " fill="rgb(255,95,0)" points="1220.59,2270.44 1225.82,2265.57 1220.51,2263.84 1216.28,2269.04 " />
<svg:polygon detid="486933128" count="1" value="81" id="2704011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  2 forward    Id 486933128 " fill="rgb(255,95,0)" points="1214.77,2268.61 1219.04,2263.42 1213.43,2262.06 1210.22,2267.5 " />
<svg:polygon detid="486933132" count="1" value="81" id="2704012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  3 forward    Id 486933132 " fill="rgb(255,95,0)" points="1208.64,2267.18 1211.9,2261.74 1206.06,2260.75 1203.91,2266.38 " />
<svg:polygon detid="486966148" count="1" value="81" id="2704013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward    Id 486966148 " fill="rgb(255,95,0)" points="1202.27,2266.16 1204.48,2260.54 1198.49,2259.94 1197.42,2265.67 " />
<svg:polygon detid="486966152" count="1" value="81" id="2704014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward    Id 486966152 " fill="rgb(255,95,0)" points="1195.75,2265.56 1196.87,2259.83 1190.81,2259.63 1190.84,2265.4 " />
<svg:polygon detid="486966156" count="1" value="81" id="2704015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  3 forward    Id 486966156 " fill="rgb(255,95,0)" points="1189.16,2265.4 1189.19,2259.63 1183.13,2259.83 1184.25,2265.56 " />
<svg:polygon detid="486966160" count="1" value="81" id="2704016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  0 backward    Id 486966160 " fill="rgb(255,95,0)" points="1182.58,2265.67 1181.51,2259.94 1175.52,2260.54 1177.73,2266.16 " />
<svg:polygon detid="486933380" count="1" value="81" id="2704017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward    Id 486933380 " fill="rgb(255,95,0)" points="1176.09,2266.38 1173.94,2260.75 1168.1,2261.74 1171.36,2267.18 " />
<svg:polygon detid="486933384" count="1" value="81" id="2704018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  2 forward    Id 486933384 " fill="rgb(255,95,0)" points="1169.78,2267.5 1166.57,2262.06 1160.96,2263.42 1165.23,2268.61 " />
<svg:polygon detid="486933388" count="1" value="81" id="2704019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  3 forward    Id 486933388 " fill="rgb(255,95,0)" points="1163.72,2269.04 1159.49,2263.84 1154.18,2265.57 1159.41,2270.44 " />
<svg:polygon detid="486966404" count="1" value="81" id="2704020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward    Id 486966404 " fill="rgb(255,95,0)" points="1157.99,2270.96 1152.8,2266.08 1147.85,2268.14 1153.98,2272.64 " />
<svg:polygon detid="486966408" count="1" value="81" id="2704021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward    Id 486966408 " fill="rgb(255,95,0)" points="1152.67,2273.26 1146.58,2268.74 1142.05,2271.12 1149,2275.18 " />
<svg:polygon detid="486966412" count="1" value="81" id="2704022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  3 forward    Id 486966412 " fill="rgb(255,95,0)" points="1147.81,2275.88 1140.9,2271.8 1136.86,2274.46 1144.53,2278.04 " />
<svg:polygon detid="486966416" count="1" value="81" id="2704023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  0 backward    Id 486966416 " fill="rgb(255,95,0)" points="1143.49,2278.81 1135.84,2275.21 1132.33,2278.12 1140.64,2281.17 " />
<svg:polygon detid="486933636" count="1" value="81" id="2704024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward    Id 486933636 " fill="rgb(255,95,0)" points="1139.75,2282.01 1131.46,2278.93 1128.53,2282.05 1137.37,2284.54 " />
<svg:polygon detid="486933640" count="1" value="81" id="2704025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  2 forward    Id 486933640 " fill="rgb(255,95,0)" points="1136.64,2285.43 1127.82,2282.92 1125.5,2286.22 1134.76,2288.11 " />
<svg:polygon detid="486933644" count="1" value="81" id="2704026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  3 forward    Id 486933644 " fill="rgb(255,95,0)" points="1134.2,2289.04 1124.96,2287.12 1123.28,2290.55 1132.84,2291.82 " />
<svg:polygon detid="486966660" count="1" value="81" id="2704027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward    Id 486966660 " fill="rgb(255,95,0)" points="1132.47,2292.78 1122.92,2291.48 1121.9,2295 1131.64,2295.64 " />
<svg:polygon detid="486966664" count="1" value="81" id="2704028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward    Id 486966664 " fill="rgb(255,95,0)" points="1131.45,2296.62 1121.72,2295.96 1121.38,2299.52 1131.18,2299.51 " />
<svg:polygon detid="486966668" count="1" value="81" id="2704029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  3 forward    Id 486966668 " fill="rgb(255,95,0)" points="1131.18,2300.49 1121.38,2300.48 1121.72,2304.04 1131.45,2303.38 " />
<svg:polygon detid="486966672" count="1" value="81" id="2704030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  0 backward    Id 486966672 " fill="rgb(255,95,0)" points="1131.64,2304.36 1121.9,2305 1122.92,2308.52 1132.47,2307.22 " />
<svg:polygon detid="486933892" count="1" value="81" id="2704031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward    Id 486933892 " fill="rgb(255,95,0)" points="1132.84,2308.18 1123.28,2309.45 1124.96,2312.88 1134.2,2310.96 " />
<svg:polygon detid="486933896" count="1" value="81" id="2704032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  2 forward    Id 486933896 " fill="rgb(255,95,0)" points="1134.76,2311.89 1125.5,2313.78 1127.82,2317.08 1136.64,2314.57 " />
<svg:polygon detid="486933900" count="1" value="81" id="2704033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  3 forward    Id 486933900 " fill="rgb(255,95,0)" points="1137.37,2315.46 1128.53,2317.95 1131.46,2321.07 1139.75,2317.99 " />
<svg:polygon detid="486966916" count="1" value="81" id="2704034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward    Id 486966916 " fill="rgb(255,95,0)" points="1140.64,2318.83 1132.33,2321.88 1135.84,2324.79 1143.49,2321.19 " />
<svg:polygon detid="486966920" count="1" value="81" id="2704035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward    Id 486966920 " fill="rgb(255,95,0)" points="1144.53,2321.96 1136.86,2325.54 1140.9,2328.2 1147.81,2324.12 " />
<svg:polygon detid="486966924" count="1" value="81" id="2704036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  3 forward    Id 486966924 " fill="rgb(255,95,0)" points="1149,2324.82 1142.05,2328.88 1146.58,2331.26 1152.67,2326.74 " />
<svg:polygon detid="486966928" count="1" value="81" id="2704037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  0 backward    Id 486966928 " fill="rgb(255,95,0)" points="1153.98,2327.36 1147.85,2331.86 1152.8,2333.92 1157.99,2329.04 " />
<svg:polygon detid="486934148" count="1" value="81" id="2704038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward    Id 486934148 " fill="rgb(255,95,0)" points="1159.41,2329.56 1154.18,2334.43 1159.49,2336.16 1163.72,2330.96 " />
<svg:polygon detid="486934152" count="1" value="81" id="2704039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  2 forward    Id 486934152 " fill="rgb(255,95,0)" points="1165.23,2331.39 1160.96,2336.58 1166.57,2337.94 1169.78,2332.5 " />
<svg:polygon detid="486934156" count="1" value="81" id="2704040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  3 forward    Id 486934156 " fill="rgb(255,95,0)" points="1171.36,2332.82 1168.1,2338.26 1173.94,2339.25 1176.09,2333.62 " />
<svg:polygon detid="486967172" count="1" value="81" id="2704041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward    Id 486967172 " fill="rgb(255,95,0)" points="1177.73,2333.84 1175.52,2339.46 1181.51,2340.06 1182.58,2334.33 " />
<svg:polygon detid="486967176" count="1" value="81" id="2704042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward    Id 486967176 " fill="rgb(255,95,0)" points="1184.25,2334.44 1183.13,2340.17 1189.19,2340.37 1189.16,2334.6 " />
<svg:polygon detid="486967180" count="1" value="81" id="2704043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  3 forward    Id 486967180 " fill="rgb(255,95,0)" points="1190.84,2334.6 1190.81,2340.37 1196.87,2340.17 1195.75,2334.44 " />
<svg:polygon detid="486967184" count="1" value="81" id="2704044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  0 backward    Id 486967184 " fill="rgb(255,95,0)" points="1197.42,2334.33 1198.49,2340.06 1204.48,2339.46 1202.27,2333.84 " />
<svg:polygon detid="486934404" count="1" value="81" id="2704045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward    Id 486934404 " fill="rgb(255,95,0)" points="1203.91,2333.62 1206.06,2339.25 1211.9,2338.26 1208.64,2332.82 " />
<svg:polygon detid="486934408" count="1" value="81" id="2704046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  2 forward    Id 486934408 " fill="rgb(255,95,0)" points="1210.22,2332.5 1213.43,2337.94 1219.04,2336.58 1214.77,2331.39 " />
<svg:polygon detid="486934412" count="1" value="81" id="2704047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  3 forward    Id 486934412 " fill="rgb(255,95,0)" points="1216.28,2330.96 1220.51,2336.16 1225.82,2334.43 1220.59,2329.56 " />
<svg:polygon detid="486967428" count="1" value="81" id="2704048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward    Id 486967428 " fill="rgb(255,95,0)" points="1222.01,2329.04 1227.2,2333.92 1232.15,2331.86 1226.02,2327.36 " />
<svg:polygon detid="486967432" count="1" value="81" id="2704049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward    Id 486967432 " fill="rgb(255,95,0)" points="1227.33,2326.74 1233.42,2331.26 1237.95,2328.88 1231,2324.82 " />
<svg:polygon detid="486967436" count="1" value="81" id="2704050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  3 forward    Id 486967436 " fill="rgb(255,95,0)" points="1232.19,2324.12 1239.1,2328.2 1243.14,2325.54 1235.47,2321.96 " />
<svg:polygon detid="486967440" count="1" value="81" id="2704051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  0 backward    Id 486967440 " fill="rgb(255,95,0)" points="1236.51,2321.19 1244.16,2324.79 1247.67,2321.88 1239.36,2318.83 " />
<svg:polygon detid="486934660" count="1" value="81" id="2704052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward    Id 486934660 " fill="rgb(255,95,0)" points="1240.25,2317.99 1248.54,2321.07 1251.47,2317.95 1242.63,2315.46 " />
<svg:polygon detid="486934664" count="1" value="81" id="2704053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  2 forward    Id 486934664 " fill="rgb(255,95,0)" points="1243.36,2314.57 1252.18,2317.08 1254.5,2313.78 1245.24,2311.89 " />
<svg:polygon detid="486934668" count="1" value="81" id="2704054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  3 forward    Id 486934668 " fill="rgb(255,95,0)" points="1245.8,2310.96 1255.04,2312.88 1256.72,2309.45 1247.16,2308.18 " />
<svg:polygon detid="486965648" count="1" value="81" id="2704055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  0 backward    Id 486965648 " fill="rgb(255,95,0)" points="1247.53,2307.22 1257.08,2308.52 1258.1,2305 1248.36,2304.36 " />
<svg:polygon detid="486965636" count="1" value="81" id="2704056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward    Id 486965636 " fill="rgb(255,95,0)" points="1248.55,2303.38 1258.28,2304.04 1258.62,2300.48 1248.82,2300.49 " />
<svg:polygon detid="486965674" count="1" value="81" id="2705001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward    Id 486965674 " fill="rgb(255,95,0)" points="1272.31,2293.17 1259.92,2294.35 1260.56,2299.15 " />
<svg:polygon detid="486932902" count="1" value="81" id="2705002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward    Id 486932902 " fill="rgb(255,95,0)" points="1269.48,2285.68 1257.56,2287.98 1259.47,2292.67 " />
<svg:polygon detid="486932906" count="1" value="81" id="2705003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  2 forward    Id 486932906 " fill="rgb(255,95,0)" points="1264.7,2278.54 1253.53,2281.92 1256.66,2286.36 " />
<svg:polygon detid="486932910" count="1" value="81" id="2705004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  3 forward    Id 486932910 " fill="rgb(255,95,0)" points="1258.07,2271.93 1247.94,2276.29 1252.21,2280.4 " />
<svg:polygon detid="486965926" count="1" value="81" id="2705005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward    Id 486965926 " fill="rgb(255,95,0)" points="1249.77,2266.02 1240.92,2271.25 1246.23,2274.91 " />
<svg:polygon detid="486965930" count="1" value="81" id="2705006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward    Id 486965930 " fill="rgb(255,95,0)" points="1240,2260.93 1232.65,2266.92 1238.87,2270.05 " />
<svg:polygon detid="486933158" count="1" value="81" id="2705007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward    Id 486933158 " fill="rgb(255,95,0)" points="1228.99,2256.81 1223.32,2263.4 1230.3,2265.92 " />
<svg:polygon detid="486933162" count="1" value="81" id="2705008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  2 forward    Id 486933162 " fill="rgb(255,95,0)" points="1217.03,2253.76 1213.18,2260.79 1220.74,2262.63 " />
<svg:polygon detid="486933166" count="1" value="81" id="2705009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  3 forward    Id 486933166 " fill="rgb(255,95,0)" points="1204.4,2251.84 1202.47,2259.14 1210.43,2260.26 " />
<svg:polygon detid="486966182" count="1" value="81" id="2705010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward    Id 486966182 " fill="rgb(255,95,0)" points="1191.41,2251.11 1191.45,2258.49 1199.61,2258.87 " />
<svg:polygon detid="486966186" count="1" value="81" id="2705011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward    Id 486966186 " fill="rgb(255,95,0)" points="1178.39,2251.58 1180.39,2258.87 1188.55,2258.49 " />
<svg:polygon detid="486933414" count="1" value="81" id="2705012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward    Id 486933414 " fill="rgb(255,95,0)" points="1165.66,2253.24 1169.57,2260.26 1177.53,2259.14 " />
<svg:polygon detid="486933418" count="1" value="81" id="2705013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  2 forward    Id 486933418 " fill="rgb(255,95,0)" points="1153.53,2256.06 1159.26,2262.63 1166.82,2260.79 " />
<svg:polygon detid="486933422" count="1" value="81" id="2705014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  3 forward    Id 486933422 " fill="rgb(255,95,0)" points="1142.29,2259.96 1149.7,2265.92 1156.68,2263.4 " />
<svg:polygon detid="486966438" count="1" value="81" id="2705015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward    Id 486966438 " fill="rgb(255,95,0)" points="1132.23,2264.84 1141.13,2270.05 1147.35,2266.92 " />
<svg:polygon detid="486966442" count="1" value="81" id="2705016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward    Id 486966442 " fill="rgb(255,95,0)" points="1123.59,2270.59 1133.77,2274.91 1139.08,2271.25 " />
<svg:polygon detid="486933670" count="1" value="81" id="2705017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward    Id 486933670 " fill="rgb(255,95,0)" points="1116.59,2277.06 1127.79,2280.4 1132.06,2276.29 " />
<svg:polygon detid="486933674" count="1" value="81" id="2705018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  2 forward    Id 486933674 " fill="rgb(255,95,0)" points="1111.39,2284.1 1123.34,2286.36 1126.47,2281.92 " />
<svg:polygon detid="486933678" count="1" value="81" id="2705019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  3 forward    Id 486933678 " fill="rgb(255,95,0)" points="1108.13,2291.53 1120.53,2292.67 1122.44,2287.98 " />
<svg:polygon detid="486966694" count="1" value="81" id="2705020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward    Id 486966694 " fill="rgb(255,95,0)" points="1106.88,2299.17 1119.44,2299.15 1120.08,2294.35 " />
<svg:polygon detid="486966698" count="1" value="81" id="2705021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward    Id 486966698 " fill="rgb(255,95,0)" points="1107.69,2306.83 1120.08,2305.65 1119.44,2300.85 " />
<svg:polygon detid="486933926" count="1" value="81" id="2705022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward    Id 486933926 " fill="rgb(255,95,0)" points="1110.52,2314.32 1122.44,2312.02 1120.53,2307.33 " />
<svg:polygon detid="486933930" count="1" value="81" id="2705023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  2 forward    Id 486933930 " fill="rgb(255,95,0)" points="1115.3,2321.46 1126.47,2318.08 1123.34,2313.64 " />
<svg:polygon detid="486933934" count="1" value="81" id="2705024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  3 forward    Id 486933934 " fill="rgb(255,95,0)" points="1121.93,2328.07 1132.06,2323.71 1127.79,2319.6 " />
<svg:polygon detid="486966950" count="1" value="81" id="2705025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward    Id 486966950 " fill="rgb(255,95,0)" points="1130.23,2333.98 1139.08,2328.75 1133.77,2325.09 " />
<svg:polygon detid="486966954" count="1" value="81" id="2705026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward    Id 486966954 " fill="rgb(255,95,0)" points="1140,2339.07 1147.35,2333.08 1141.13,2329.95 " />
<svg:polygon detid="486934182" count="1" value="81" id="2705027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward    Id 486934182 " fill="rgb(255,95,0)" points="1151.01,2343.19 1156.68,2336.6 1149.7,2334.08 " />
<svg:polygon detid="486934186" count="1" value="81" id="2705028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  2 forward    Id 486934186 " fill="rgb(255,95,0)" points="1162.97,2346.24 1166.82,2339.21 1159.26,2337.37 " />
<svg:polygon detid="486934190" count="1" value="81" id="2705029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  3 forward    Id 486934190 " fill="rgb(255,95,0)" points="1175.6,2348.16 1177.53,2340.86 1169.57,2339.74 " />
<svg:polygon detid="486967206" count="1" value="81" id="2705030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward    Id 486967206 " fill="rgb(255,95,0)" points="1188.59,2348.89 1188.55,2341.51 1180.39,2341.13 " />
<svg:polygon detid="486967210" count="1" value="81" id="2705031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward    Id 486967210 " fill="rgb(255,95,0)" points="1201.61,2348.42 1199.61,2341.13 1191.45,2341.51 " />
<svg:polygon detid="486934438" count="1" value="81" id="2705032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward    Id 486934438 " fill="rgb(255,95,0)" points="1214.34,2346.76 1210.43,2339.74 1202.47,2340.86 " />
<svg:polygon detid="486934442" count="1" value="81" id="2705033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  2 forward    Id 486934442 " fill="rgb(255,95,0)" points="1226.47,2343.94 1220.74,2337.37 1213.18,2339.21 " />
<svg:polygon detid="486934446" count="1" value="81" id="2705034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  3 forward    Id 486934446 " fill="rgb(255,95,0)" points="1237.71,2340.04 1230.3,2334.08 1223.32,2336.6 " />
<svg:polygon detid="486967462" count="1" value="81" id="2705035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward    Id 486967462 " fill="rgb(255,95,0)" points="1247.77,2335.16 1238.87,2329.95 1232.65,2333.08 " />
<svg:polygon detid="486967466" count="1" value="81" id="2705036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward    Id 486967466 " fill="rgb(255,95,0)" points="1256.41,2329.41 1246.23,2325.09 1240.92,2328.75 " />
<svg:polygon detid="486934694" count="1" value="81" id="2705037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward    Id 486934694 " fill="rgb(255,95,0)" points="1263.41,2322.94 1252.21,2319.6 1247.94,2323.71 " />
<svg:polygon detid="486934698" count="1" value="81" id="2705038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  2 forward    Id 486934698 " fill="rgb(255,95,0)" points="1268.61,2315.9 1256.66,2313.64 1253.53,2318.08 " />
<svg:polygon detid="486934702" count="1" value="81" id="2705039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  3 forward    Id 486934702 " fill="rgb(255,95,0)" points="1271.87,2308.47 1259.47,2307.33 1257.56,2312.02 " />
<svg:polygon detid="486965670" count="1" value="81" id="2705040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward    Id 486965670 " fill="rgb(255,95,0)" points="1273.12,2300.83 1260.56,2300.85 1259.92,2305.65 " />
<svg:polygon detid="486965673" count="1" value="81" id="2705101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward   stereo Id 486965673 " fill="rgb(255,95,0)" points="1260.56,2299.15 1273.12,2299.17 1272.31,2293.17 " />
<svg:polygon detid="486932901" count="1" value="81" id="2705102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward   stereo Id 486932901 " fill="rgb(255,95,0)" points="1259.47,2292.67 1271.87,2291.53 1269.48,2285.68 " />
<svg:polygon detid="486932905" count="1" value="81" id="2705103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  2 forward   stereo Id 486932905 " fill="rgb(255,95,0)" points="1256.66,2286.36 1268.61,2284.1 1264.7,2278.54 " />
<svg:polygon detid="486932909" count="1" value="81" id="2705104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  3 forward   stereo Id 486932909 " fill="rgb(255,95,0)" points="1252.21,2280.4 1263.41,2277.06 1258.07,2271.93 " />
<svg:polygon detid="486965925" count="1" value="81" id="2705105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward   stereo Id 486965925 " fill="rgb(255,95,0)" points="1246.23,2274.91 1256.41,2270.59 1249.77,2266.02 " />
<svg:polygon detid="486965929" count="1" value="81" id="2705106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward   stereo Id 486965929 " fill="rgb(255,95,0)" points="1238.87,2270.05 1247.77,2264.84 1240,2260.93 " />
<svg:polygon detid="486933157" count="1" value="81" id="2705107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward   stereo Id 486933157 " fill="rgb(255,95,0)" points="1230.3,2265.92 1237.71,2259.96 1228.99,2256.81 " />
<svg:polygon detid="486933161" count="1" value="81" id="2705108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  2 forward   stereo Id 486933161 " fill="rgb(255,95,0)" points="1220.74,2262.63 1226.47,2256.06 1217.03,2253.76 " />
<svg:polygon detid="486933165" count="1" value="81" id="2705109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  3 forward   stereo Id 486933165 " fill="rgb(255,95,0)" points="1210.43,2260.26 1214.34,2253.24 1204.4,2251.84 " />
<svg:polygon detid="486966181" count="1" value="81" id="2705110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward   stereo Id 486966181 " fill="rgb(255,95,0)" points="1199.61,2258.87 1201.61,2251.58 1191.41,2251.11 " />
<svg:polygon detid="486966185" count="1" value="81" id="2705111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward   stereo Id 486966185 " fill="rgb(255,95,0)" points="1188.55,2258.49 1188.59,2251.11 1178.39,2251.58 " />
<svg:polygon detid="486933413" count="1" value="81" id="2705112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward   stereo Id 486933413 " fill="rgb(255,95,0)" points="1177.53,2259.14 1175.6,2251.84 1165.66,2253.24 " />
<svg:polygon detid="486933417" count="1" value="81" id="2705113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  2 forward   stereo Id 486933417 " fill="rgb(255,95,0)" points="1166.82,2260.79 1162.97,2253.76 1153.53,2256.06 " />
<svg:polygon detid="486933421" count="1" value="81" id="2705114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  3 forward   stereo Id 486933421 " fill="rgb(255,95,0)" points="1156.68,2263.4 1151.01,2256.81 1142.29,2259.96 " />
<svg:polygon detid="486966437" count="1" value="81" id="2705115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward   stereo Id 486966437 " fill="rgb(255,95,0)" points="1147.35,2266.92 1140,2260.93 1132.23,2264.84 " />
<svg:polygon detid="486966441" count="1" value="81" id="2705116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward   stereo Id 486966441 " fill="rgb(255,95,0)" points="1139.08,2271.25 1130.23,2266.02 1123.59,2270.59 " />
<svg:polygon detid="486933669" count="1" value="81" id="2705117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward   stereo Id 486933669 " fill="rgb(255,95,0)" points="1132.06,2276.29 1121.93,2271.93 1116.59,2277.06 " />
<svg:polygon detid="486933673" count="1" value="81" id="2705118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  2 forward   stereo Id 486933673 " fill="rgb(255,95,0)" points="1126.47,2281.92 1115.3,2278.54 1111.39,2284.1 " />
<svg:polygon detid="486933677" count="1" value="81" id="2705119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  3 forward   stereo Id 486933677 " fill="rgb(255,95,0)" points="1122.44,2287.98 1110.52,2285.68 1108.13,2291.53 " />
<svg:polygon detid="486966693" count="1" value="81" id="2705120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward   stereo Id 486966693 " fill="rgb(255,95,0)" points="1120.08,2294.35 1107.69,2293.17 1106.88,2299.17 " />
<svg:polygon detid="486966697" count="1" value="81" id="2705121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward   stereo Id 486966697 " fill="rgb(255,95,0)" points="1119.44,2300.85 1106.88,2300.83 1107.69,2306.83 " />
<svg:polygon detid="486933925" count="1" value="81" id="2705122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward   stereo Id 486933925 " fill="rgb(255,95,0)" points="1120.53,2307.33 1108.13,2308.47 1110.52,2314.32 " />
<svg:polygon detid="486933929" count="1" value="81" id="2705123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  2 forward   stereo Id 486933929 " fill="rgb(255,95,0)" points="1123.34,2313.64 1111.39,2315.9 1115.3,2321.46 " />
<svg:polygon detid="486933933" count="1" value="81" id="2705124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  3 forward   stereo Id 486933933 " fill="rgb(255,95,0)" points="1127.79,2319.6 1116.59,2322.94 1121.93,2328.07 " />
<svg:polygon detid="486966949" count="1" value="81" id="2705125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward   stereo Id 486966949 " fill="rgb(255,95,0)" points="1133.77,2325.09 1123.59,2329.41 1130.23,2333.98 " />
<svg:polygon detid="486966953" count="1" value="81" id="2705126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward   stereo Id 486966953 " fill="rgb(255,95,0)" points="1141.13,2329.95 1132.23,2335.16 1140,2339.07 " />
<svg:polygon detid="486934181" count="1" value="81" id="2705127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward   stereo Id 486934181 " fill="rgb(255,95,0)" points="1149.7,2334.08 1142.29,2340.04 1151.01,2343.19 " />
<svg:polygon detid="486934185" count="1" value="81" id="2705128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  2 forward   stereo Id 486934185 " fill="rgb(255,95,0)" points="1159.26,2337.37 1153.53,2343.94 1162.97,2346.24 " />
<svg:polygon detid="486934189" count="1" value="81" id="2705129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  3 forward   stereo Id 486934189 " fill="rgb(255,95,0)" points="1169.57,2339.74 1165.66,2346.76 1175.6,2348.16 " />
<svg:polygon detid="486967205" count="1" value="81" id="2705130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward   stereo Id 486967205 " fill="rgb(255,95,0)" points="1180.39,2341.13 1178.39,2348.42 1188.59,2348.89 " />
<svg:polygon detid="486967209" count="1" value="81" id="2705131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward   stereo Id 486967209 " fill="rgb(255,95,0)" points="1191.45,2341.51 1191.41,2348.89 1201.61,2348.42 " />
<svg:polygon detid="486934437" count="1" value="81" id="2705132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward   stereo Id 486934437 " fill="rgb(255,95,0)" points="1202.47,2340.86 1204.4,2348.16 1214.34,2346.76 " />
<svg:polygon detid="486934441" count="1" value="81" id="2705133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  2 forward   stereo Id 486934441 " fill="rgb(255,95,0)" points="1213.18,2339.21 1217.03,2346.24 1226.47,2343.94 " />
<svg:polygon detid="486934445" count="1" value="81" id="2705134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  3 forward   stereo Id 486934445 " fill="rgb(255,95,0)" points="1223.32,2336.6 1228.99,2343.19 1237.71,2340.04 " />
<svg:polygon detid="486967461" count="1" value="81" id="2705135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward   stereo Id 486967461 " fill="rgb(255,95,0)" points="1232.65,2333.08 1240,2339.07 1247.77,2335.16 " />
<svg:polygon detid="486967465" count="1" value="81" id="2705136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward   stereo Id 486967465 " fill="rgb(255,95,0)" points="1240.92,2328.75 1249.77,2333.98 1256.41,2329.41 " />
<svg:polygon detid="486934693" count="1" value="81" id="2705137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward   stereo Id 486934693 " fill="rgb(255,95,0)" points="1247.94,2323.71 1258.07,2328.07 1263.41,2322.94 " />
<svg:polygon detid="486934697" count="1" value="81" id="2705138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  2 forward   stereo Id 486934697 " fill="rgb(255,95,0)" points="1253.53,2318.08 1264.7,2321.46 1268.61,2315.9 " />
<svg:polygon detid="486934701" count="1" value="81" id="2705139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  3 forward   stereo Id 486934701 " fill="rgb(255,95,0)" points="1257.56,2312.02 1269.48,2314.32 1271.87,2308.47 " />
<svg:polygon detid="486965669" count="1" value="81" id="2705140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward   stereo Id 486965669 " fill="rgb(255,95,0)" points="1259.92,2305.65 1272.31,2306.83 1273.12,2300.83 " />
<svg:polygon detid="486965700" count="1" value="81" id="2706001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward    Id 486965700 " fill="rgb(255,95,0)" points="1275.05,2299.28 1290.71,2299.3 1290.21,2294.06 1274.65,2295.12 " />
<svg:polygon detid="486965708" count="1" value="81" id="2706002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  3 forward    Id 486965708 " fill="rgb(255,95,0)" points="1274.38,2293.68 1289.94,2292.67 1288.45,2287.5 1273.19,2289.57 " />
<svg:polygon detid="486932932" count="1" value="81" id="2706003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward    Id 486932932 " fill="rgb(255,95,0)" points="1272.64,2288.16 1287.92,2286.14 1285.45,2281.1 1270.68,2284.16 " />
<svg:polygon detid="486932936" count="1" value="81" id="2706004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  2 forward    Id 486932936 " fill="rgb(255,95,0)" points="1269.87,2282.8 1284.66,2279.77 1281.25,2274.93 1267.16,2278.94 " />
<svg:polygon detid="486932940" count="1" value="81" id="2706005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  3 forward    Id 486932940 " fill="rgb(255,95,0)" points="1266.09,2277.64 1280.22,2273.67 1275.9,2269.08 1262.66,2273.99 " />
<svg:polygon detid="486965956" count="1" value="81" id="2706006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward    Id 486965956 " fill="rgb(255,95,0)" points="1261.36,2272.77 1274.64,2267.89 1269.48,2263.61 1257.26,2269.37 " />
<svg:polygon detid="486965960" count="1" value="81" id="2706007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward    Id 486965960 " fill="rgb(255,95,0)" points="1255.73,2268.24 1267.99,2262.52 1262.05,2258.61 1251,2265.13 " />
<svg:polygon detid="486965964" count="1" value="81" id="2706008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  3 forward    Id 486965964 " fill="rgb(255,95,0)" points="1249.27,2264.11 1260.37,2257.62 1253.72,2254.12 1243.98,2261.34 " />
<svg:polygon detid="486965968" count="1" value="81" id="2706009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  0 backward    Id 486965968 " fill="rgb(255,95,0)" points="1242.07,2260.44 1251.86,2253.25 1244.59,2250.21 1236.29,2258.02 " />
<svg:polygon detid="486933188" count="1" value="81" id="2706010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward    Id 486933188 " fill="rgb(255,95,0)" points="1234.21,2257.26 1242.57,2249.47 1234.77,2246.93 1228.01,2255.24 " />
<svg:polygon detid="486933192" count="1" value="81" id="2706011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  2 forward    Id 486933192 " fill="rgb(255,95,0)" points="1225.8,2254.61 1232.62,2246.32 1224.38,2244.32 1219.25,2253.02 " />
<svg:polygon detid="486933196" count="1" value="81" id="2706012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  3 forward    Id 486933196 " fill="rgb(255,95,0)" points="1216.93,2252.54 1222.14,2243.85 1213.57,2242.4 1210.12,2251.39 " />
<svg:polygon detid="486966212" count="1" value="81" id="2706013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward    Id 486966212 " fill="rgb(255,95,0)" points="1207.73,2251.07 1211.25,2242.09 1202.46,2241.21 1200.74,2250.37 " />
<svg:polygon detid="486966216" count="1" value="81" id="2706014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward    Id 486966216 " fill="rgb(255,95,0)" points="1198.3,2250.21 1200.09,2241.06 1191.19,2240.76 1191.23,2249.97 " />
<svg:polygon detid="486966220" count="1" value="81" id="2706015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  3 forward    Id 486966220 " fill="rgb(255,95,0)" points="1188.77,2249.97 1188.81,2240.76 1179.91,2241.06 1181.7,2250.21 " />
<svg:polygon detid="486966224" count="1" value="81" id="2706016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  0 backward    Id 486966224 " fill="rgb(255,95,0)" points="1179.26,2250.37 1177.54,2241.21 1168.75,2242.09 1172.27,2251.07 " />
<svg:polygon detid="486933444" count="1" value="81" id="2706017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward    Id 486933444 " fill="rgb(255,95,0)" points="1169.88,2251.39 1166.43,2242.4 1157.86,2243.85 1163.07,2252.54 " />
<svg:polygon detid="486933448" count="1" value="81" id="2706018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  2 forward    Id 486933448 " fill="rgb(255,95,0)" points="1160.75,2253.02 1155.62,2244.32 1147.38,2246.32 1154.2,2254.61 " />
<svg:polygon detid="486933452" count="1" value="81" id="2706019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  3 forward    Id 486933452 " fill="rgb(255,95,0)" points="1151.99,2255.24 1145.23,2246.93 1137.43,2249.47 1145.79,2257.26 " />
<svg:polygon detid="486966468" count="1" value="81" id="2706020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward    Id 486966468 " fill="rgb(255,95,0)" points="1143.71,2258.02 1135.41,2250.21 1128.14,2253.25 1137.93,2260.44 " />
<svg:polygon detid="486966472" count="1" value="81" id="2706021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward    Id 486966472 " fill="rgb(255,95,0)" points="1136.02,2261.34 1126.28,2254.12 1119.63,2257.62 1130.73,2264.11 " />
<svg:polygon detid="486966476" count="1" value="81" id="2706022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  3 forward    Id 486966476 " fill="rgb(255,95,0)" points="1129,2265.13 1117.95,2258.61 1112.01,2262.52 1124.27,2268.24 " />
<svg:polygon detid="486966480" count="1" value="81" id="2706023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  0 backward    Id 486966480 " fill="rgb(255,95,0)" points="1122.74,2269.37 1110.52,2263.61 1105.36,2267.89 1118.64,2272.77 " />
<svg:polygon detid="486933700" count="1" value="81" id="2706024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward    Id 486933700 " fill="rgb(255,95,0)" points="1117.34,2273.99 1104.1,2269.08 1099.78,2273.67 1113.91,2277.64 " />
<svg:polygon detid="486933704" count="1" value="81" id="2706025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  2 forward    Id 486933704 " fill="rgb(255,95,0)" points="1112.84,2278.94 1098.75,2274.93 1095.34,2279.77 1110.13,2282.8 " />
<svg:polygon detid="486933708" count="1" value="81" id="2706026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  3 forward    Id 486933708 " fill="rgb(255,95,0)" points="1109.32,2284.16 1094.55,2281.1 1092.08,2286.14 1107.36,2288.16 " />
<svg:polygon detid="486966724" count="1" value="81" id="2706027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward    Id 486966724 " fill="rgb(255,95,0)" points="1106.81,2289.57 1091.55,2287.5 1090.06,2292.67 1105.62,2293.68 " />
<svg:polygon detid="486966728" count="1" value="81" id="2706028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward    Id 486966728 " fill="rgb(255,95,0)" points="1105.35,2295.12 1089.79,2294.06 1089.29,2299.3 1104.95,2299.28 " />
<svg:polygon detid="486966732" count="1" value="81" id="2706029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  3 forward    Id 486966732 " fill="rgb(255,95,0)" points="1104.95,2300.72 1089.29,2300.7 1089.79,2305.94 1105.35,2304.88 " />
<svg:polygon detid="486966736" count="1" value="81" id="2706030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  0 backward    Id 486966736 " fill="rgb(255,95,0)" points="1105.62,2306.32 1090.06,2307.33 1091.55,2312.5 1106.81,2310.43 " />
<svg:polygon detid="486933956" count="1" value="81" id="2706031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward    Id 486933956 " fill="rgb(255,95,0)" points="1107.36,2311.84 1092.08,2313.86 1094.55,2318.9 1109.32,2315.84 " />
<svg:polygon detid="486933960" count="1" value="81" id="2706032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  2 forward    Id 486933960 " fill="rgb(255,95,0)" points="1110.13,2317.2 1095.34,2320.23 1098.75,2325.07 1112.84,2321.06 " />
<svg:polygon detid="486933964" count="1" value="81" id="2706033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  3 forward    Id 486933964 " fill="rgb(255,95,0)" points="1113.91,2322.36 1099.78,2326.33 1104.1,2330.92 1117.34,2326.01 " />
<svg:polygon detid="486966980" count="1" value="81" id="2706034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward    Id 486966980 " fill="rgb(255,95,0)" points="1118.64,2327.23 1105.36,2332.11 1110.52,2336.39 1122.74,2330.63 " />
<svg:polygon detid="486966984" count="1" value="81" id="2706035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward    Id 486966984 " fill="rgb(255,95,0)" points="1124.27,2331.76 1112.01,2337.48 1117.95,2341.39 1129,2334.87 " />
<svg:polygon detid="486966988" count="1" value="81" id="2706036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  3 forward    Id 486966988 " fill="rgb(255,95,0)" points="1130.73,2335.89 1119.63,2342.38 1126.28,2345.88 1136.02,2338.66 " />
<svg:polygon detid="486966992" count="1" value="81" id="2706037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  0 backward    Id 486966992 " fill="rgb(255,95,0)" points="1137.93,2339.56 1128.14,2346.75 1135.41,2349.79 1143.71,2341.98 " />
<svg:polygon detid="486934212" count="1" value="81" id="2706038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward    Id 486934212 " fill="rgb(255,95,0)" points="1145.79,2342.74 1137.43,2350.53 1145.23,2353.07 1151.99,2344.76 " />
<svg:polygon detid="486934216" count="1" value="81" id="2706039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  2 forward    Id 486934216 " fill="rgb(255,95,0)" points="1154.2,2345.39 1147.38,2353.68 1155.62,2355.68 1160.75,2346.98 " />
<svg:polygon detid="486934220" count="1" value="81" id="2706040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  3 forward    Id 486934220 " fill="rgb(255,95,0)" points="1163.07,2347.46 1157.86,2356.15 1166.43,2357.6 1169.88,2348.61 " />
<svg:polygon detid="486967236" count="1" value="81" id="2706041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward    Id 486967236 " fill="rgb(255,95,0)" points="1172.27,2348.93 1168.75,2357.91 1177.54,2358.79 1179.26,2349.63 " />
<svg:polygon detid="486967240" count="1" value="81" id="2706042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward    Id 486967240 " fill="rgb(255,95,0)" points="1181.7,2349.79 1179.91,2358.94 1188.81,2359.24 1188.77,2350.03 " />
<svg:polygon detid="486967244" count="1" value="81" id="2706043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  3 forward    Id 486967244 " fill="rgb(255,95,0)" points="1191.23,2350.03 1191.19,2359.24 1200.09,2358.94 1198.3,2349.79 " />
<svg:polygon detid="486967248" count="1" value="81" id="2706044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  0 backward    Id 486967248 " fill="rgb(255,95,0)" points="1200.74,2349.63 1202.46,2358.79 1211.25,2357.91 1207.73,2348.93 " />
<svg:polygon detid="486934468" count="1" value="81" id="2706045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward    Id 486934468 " fill="rgb(255,95,0)" points="1210.12,2348.61 1213.57,2357.6 1222.14,2356.15 1216.93,2347.46 " />
<svg:polygon detid="486934472" count="1" value="81" id="2706046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  2 forward    Id 486934472 " fill="rgb(255,95,0)" points="1219.25,2346.98 1224.38,2355.68 1232.62,2353.68 1225.8,2345.39 " />
<svg:polygon detid="486934476" count="1" value="81" id="2706047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  3 forward    Id 486934476 " fill="rgb(255,95,0)" points="1228.01,2344.76 1234.77,2353.07 1242.57,2350.53 1234.21,2342.74 " />
<svg:polygon detid="486967492" count="1" value="81" id="2706048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward    Id 486967492 " fill="rgb(255,95,0)" points="1236.29,2341.98 1244.59,2349.79 1251.86,2346.75 1242.07,2339.56 " />
<svg:polygon detid="486967496" count="1" value="81" id="2706049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward    Id 486967496 " fill="rgb(255,95,0)" points="1243.98,2338.66 1253.72,2345.88 1260.37,2342.38 1249.27,2335.89 " />
<svg:polygon detid="486967500" count="1" value="81" id="2706050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  3 forward    Id 486967500 " fill="rgb(255,95,0)" points="1251,2334.87 1262.05,2341.39 1267.99,2337.48 1255.73,2331.76 " />
<svg:polygon detid="486967504" count="1" value="81" id="2706051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  0 backward    Id 486967504 " fill="rgb(255,95,0)" points="1257.26,2330.63 1269.48,2336.39 1274.64,2332.11 1261.36,2327.23 " />
<svg:polygon detid="486934724" count="1" value="81" id="2706052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward    Id 486934724 " fill="rgb(255,95,0)" points="1262.66,2326.01 1275.9,2330.92 1280.22,2326.33 1266.09,2322.36 " />
<svg:polygon detid="486934728" count="1" value="81" id="2706053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  2 forward    Id 486934728 " fill="rgb(255,95,0)" points="1267.16,2321.06 1281.25,2325.07 1284.66,2320.23 1269.87,2317.2 " />
<svg:polygon detid="486934732" count="1" value="81" id="2706054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  3 forward    Id 486934732 " fill="rgb(255,95,0)" points="1270.68,2315.84 1285.45,2318.9 1287.92,2313.86 1272.64,2311.84 " />
<svg:polygon detid="486965712" count="1" value="81" id="2706055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  0 backward    Id 486965712 " fill="rgb(255,95,0)" points="1273.19,2310.43 1288.45,2312.5 1289.94,2307.33 1274.38,2306.32 " />
<svg:polygon detid="486965704" count="1" value="81" id="2706056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward    Id 486965704 " fill="rgb(255,95,0)" points="1274.65,2304.88 1290.21,2305.94 1290.71,2300.7 1275.05,2300.72 " />
<svg:polygon detid="486965732" count="1" value="81" id="2707001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 forward    Id 486965732 " fill="rgb(255,95,0)" points="1293.72,2301.79 1311.12,2302.21 1311.12,2297.79 1293.72,2298.21 " />
<svg:polygon detid="486965740" count="1" value="81" id="2707002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  3 forward    Id 486965740 " fill="rgb(255,95,0)" points="1293.64,2296.99 1311.04,2296.61 1310.46,2292.21 1293.17,2293.43 " />
<svg:polygon detid="486965744" count="1" value="81" id="2707003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  0 backward    Id 486965744 " fill="rgb(255,95,0)" points="1292.92,2292.22 1310.22,2291.03 1309.05,2286.68 1291.97,2288.69 " />
<svg:polygon detid="486932964" count="1" value="81" id="2707004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 forward    Id 486932964 " fill="rgb(255,95,0)" points="1291.57,2287.49 1308.65,2285.51 1306.9,2281.22 1290.15,2284.02 " />
<svg:polygon detid="486932968" count="1" value="81" id="2707005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  2 forward    Id 486932968 " fill="rgb(255,95,0)" points="1289.59,2282.85 1306.35,2280.08 1304.04,2275.89 1287.71,2279.45 " />
<svg:polygon detid="486932972" count="1" value="81" id="2707006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  3 forward    Id 486932972 " fill="rgb(255,95,0)" points="1286.99,2278.3 1303.34,2274.77 1300.47,2270.7 1284.67,2275 " />
<svg:polygon detid="486932976" count="1" value="81" id="2707007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  0 backward    Id 486932976 " fill="rgb(255,95,0)" points="1283.8,2273.89 1299.62,2269.62 1296.22,2265.69 1281.04,2270.71 " />
<svg:polygon detid="486932980" count="1" value="81" id="2707008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 forward  module  1 backward    Id 486932980 " fill="rgb(255,95,0)" points="1280.03,2269.64 1295.23,2264.65 1291.32,2260.89 1276.85,2266.6 " />
<svg:polygon detid="486965988" count="1" value="81" id="2707009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 forward    Id 486965988 " fill="rgb(255,95,0)" points="1275.7,2265.58 1290.19,2259.9 1285.79,2256.34 1272.13,2262.69 " />
<svg:polygon detid="486965992" count="1" value="81" id="2707010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  2 forward    Id 486965992 " fill="rgb(255,95,0)" points="1270.84,2261.73 1284.54,2255.4 1279.67,2252.05 1266.9,2259.02 " />
<svg:polygon detid="486965996" count="1" value="81" id="2707011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  3 forward    Id 486965996 " fill="rgb(255,95,0)" points="1265.49,2258.12 1278.3,2251.18 1273,2248.06 1261.19,2255.59 " />
<svg:polygon detid="486966000" count="1" value="81" id="2707012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  0 backward    Id 486966000 " fill="rgb(255,95,0)" points="1259.67,2254.77 1271.51,2247.25 1265.81,2244.39 1255.05,2252.44 " />
<svg:polygon detid="486966004" count="1" value="81" id="2707013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 backward  module  1 backward    Id 486966004 " fill="rgb(255,95,0)" points="1253.43,2251.69 1264.23,2243.65 1258.16,2241.06 1248.51,2249.59 " />
<svg:polygon detid="486933220" count="1" value="81" id="2707014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 forward    Id 486933220 " fill="rgb(255,95,0)" points="1246.79,2248.91 1256.48,2240.4 1250.09,2238.1 1241.6,2247.04 " />
<svg:polygon detid="486933224" count="1" value="81" id="2707015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  2 forward    Id 486933224 " fill="rgb(255,95,0)" points="1239.8,2246.45 1248.33,2237.52 1241.65,2235.52 1234.38,2244.83 " />
<svg:polygon detid="486933228" count="1" value="81" id="2707016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  3 forward    Id 486933228 " fill="rgb(255,95,0)" points="1232.5,2244.31 1239.81,2235.02 1232.89,2233.33 1226.89,2242.95 " />
<svg:polygon detid="486933232" count="1" value="81" id="2707017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  0 backward    Id 486933232 " fill="rgb(255,95,0)" points="1224.94,2242.52 1230.99,2232.92 1223.86,2231.56 1219.16,2241.42 " />
<svg:polygon detid="486933236" count="1" value="81" id="2707018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 2 forward  module  1 backward    Id 486933236 " fill="rgb(255,95,0)" points="1217.17,2241.09 1221.92,2231.23 1214.63,2230.21 1211.26,2240.25 " />
<svg:polygon detid="486966244" count="1" value="81" id="2707019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 forward    Id 486966244 " fill="rgb(255,95,0)" points="1209.23,2240.02 1212.65,2229.97 1205.25,2229.28 1203.22,2239.46 " />
<svg:polygon detid="486966248" count="1" value="81" id="2707020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  2 forward    Id 486966248 " fill="rgb(255,95,0)" points="1201.17,2239.31 1203.24,2229.14 1195.77,2228.8 1195.11,2239.03 " />
<svg:polygon detid="486966252" count="1" value="81" id="2707021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  3 forward    Id 486966252 " fill="rgb(255,95,0)" points="1193.04,2238.99 1193.75,2228.75 1186.25,2228.75 1186.96,2238.99 " />
<svg:polygon detid="486966256" count="1" value="81" id="2707022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  0 backward    Id 486966256 " fill="rgb(255,95,0)" points="1184.89,2239.03 1184.23,2228.8 1176.76,2229.14 1178.83,2239.31 " />
<svg:polygon detid="486966260" count="1" value="81" id="2707023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 backward  module  1 backward    Id 486966260 " fill="rgb(255,95,0)" points="1176.78,2239.46 1174.75,2229.28 1167.35,2229.97 1170.77,2240.02 " />
<svg:polygon detid="486933476" count="1" value="81" id="2707024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 forward    Id 486933476 " fill="rgb(255,95,0)" points="1168.74,2240.25 1165.37,2230.21 1158.08,2231.23 1162.83,2241.09 " />
<svg:polygon detid="486933480" count="1" value="81" id="2707025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  2 forward    Id 486933480 " fill="rgb(255,95,0)" points="1160.84,2241.42 1156.14,2231.56 1149.01,2232.92 1155.06,2242.52 " />
<svg:polygon detid="486933484" count="1" value="81" id="2707026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  3 forward    Id 486933484 " fill="rgb(255,95,0)" points="1153.11,2242.95 1147.11,2233.33 1140.19,2235.02 1147.5,2244.31 " />
<svg:polygon detid="486933488" count="1" value="81" id="2707027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  0 backward    Id 486933488 " fill="rgb(255,95,0)" points="1145.62,2244.83 1138.35,2235.52 1131.67,2237.52 1140.2,2246.45 " />
<svg:polygon detid="486933492" count="1" value="81" id="2707028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 3 forward  module  1 backward    Id 486933492 " fill="rgb(255,95,0)" points="1138.4,2247.04 1129.91,2238.1 1123.52,2240.4 1133.21,2248.91 " />
<svg:polygon detid="486966500" count="1" value="81" id="2707029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 forward    Id 486966500 " fill="rgb(255,95,0)" points="1131.49,2249.59 1121.84,2241.06 1115.77,2243.65 1126.57,2251.69 " />
<svg:polygon detid="486966504" count="1" value="81" id="2707030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  2 forward    Id 486966504 " fill="rgb(255,95,0)" points="1124.95,2252.44 1114.19,2244.39 1108.49,2247.25 1120.33,2254.77 " />
<svg:polygon detid="486966508" count="1" value="81" id="2707031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  3 forward    Id 486966508 " fill="rgb(255,95,0)" points="1118.81,2255.59 1107,2248.06 1101.7,2251.18 1114.51,2258.12 " />
<svg:polygon detid="486966512" count="1" value="81" id="2707032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  0 backward    Id 486966512 " fill="rgb(255,95,0)" points="1113.1,2259.02 1100.33,2252.05 1095.46,2255.4 1109.16,2261.73 " />
<svg:polygon detid="486966516" count="1" value="81" id="2707033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 backward  module  1 backward    Id 486966516 " fill="rgb(255,95,0)" points="1107.87,2262.69 1094.21,2256.34 1089.81,2259.9 1104.3,2265.58 " />
<svg:polygon detid="486933732" count="1" value="81" id="2707034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 forward    Id 486933732 " fill="rgb(255,95,0)" points="1103.15,2266.6 1088.68,2260.89 1084.77,2264.65 1099.97,2269.64 " />
<svg:polygon detid="486933736" count="1" value="81" id="2707035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  2 forward    Id 486933736 " fill="rgb(255,95,0)" points="1098.96,2270.71 1083.78,2265.69 1080.38,2269.62 1096.2,2273.89 " />
<svg:polygon detid="486933740" count="1" value="81" id="2707036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  3 forward    Id 486933740 " fill="rgb(255,95,0)" points="1095.33,2275 1079.53,2270.7 1076.66,2274.77 1093.01,2278.3 " />
<svg:polygon detid="486933744" count="1" value="81" id="2707037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  0 backward    Id 486933744 " fill="rgb(255,95,0)" points="1092.29,2279.45 1075.96,2275.89 1073.65,2280.08 1090.41,2282.85 " />
<svg:polygon detid="486933748" count="1" value="81" id="2707038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 4 forward  module  1 backward    Id 486933748 " fill="rgb(255,95,0)" points="1089.85,2284.02 1073.1,2281.22 1071.35,2285.51 1088.43,2287.49 " />
<svg:polygon detid="486966756" count="1" value="81" id="2707039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 forward    Id 486966756 " fill="rgb(255,95,0)" points="1088.03,2288.69 1070.95,2286.68 1069.78,2291.03 1087.08,2292.22 " />
<svg:polygon detid="486966760" count="1" value="81" id="2707040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  2 forward    Id 486966760 " fill="rgb(255,95,0)" points="1086.83,2293.43 1069.54,2292.21 1068.96,2296.61 1086.36,2296.99 " />
<svg:polygon detid="486966764" count="1" value="81" id="2707041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  3 forward    Id 486966764 " fill="rgb(255,95,0)" points="1086.28,2298.21 1068.88,2297.79 1068.88,2302.21 1086.28,2301.79 " />
<svg:polygon detid="486966768" count="1" value="81" id="2707042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  0 backward    Id 486966768 " fill="rgb(255,95,0)" points="1086.36,2303.01 1068.96,2303.39 1069.54,2307.79 1086.83,2306.57 " />
<svg:polygon detid="486966772" count="1" value="81" id="2707043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 backward  module  1 backward    Id 486966772 " fill="rgb(255,95,0)" points="1087.08,2307.78 1069.78,2308.97 1070.95,2313.32 1088.03,2311.31 " />
<svg:polygon detid="486933988" count="1" value="81" id="2707044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 forward    Id 486933988 " fill="rgb(255,95,0)" points="1088.43,2312.51 1071.35,2314.49 1073.1,2318.78 1089.85,2315.98 " />
<svg:polygon detid="486933992" count="1" value="81" id="2707045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  2 forward    Id 486933992 " fill="rgb(255,95,0)" points="1090.41,2317.15 1073.65,2319.92 1075.96,2324.11 1092.29,2320.55 " />
<svg:polygon detid="486933996" count="1" value="81" id="2707046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  3 forward    Id 486933996 " fill="rgb(255,95,0)" points="1093.01,2321.7 1076.66,2325.23 1079.53,2329.3 1095.33,2325 " />
<svg:polygon detid="486934000" count="1" value="81" id="2707047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  0 backward    Id 486934000 " fill="rgb(255,95,0)" points="1096.2,2326.11 1080.38,2330.38 1083.78,2334.31 1098.96,2329.29 " />
<svg:polygon detid="486934004" count="1" value="81" id="2707048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 5 forward  module  1 backward    Id 486934004 " fill="rgb(255,95,0)" points="1099.97,2330.36 1084.77,2335.35 1088.68,2339.11 1103.15,2333.4 " />
<svg:polygon detid="486967012" count="1" value="81" id="2707049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 forward    Id 486967012 " fill="rgb(255,95,0)" points="1104.3,2334.42 1089.81,2340.1 1094.21,2343.66 1107.87,2337.31 " />
<svg:polygon detid="486967016" count="1" value="81" id="2707050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  2 forward    Id 486967016 " fill="rgb(255,95,0)" points="1109.16,2338.27 1095.46,2344.6 1100.33,2347.95 1113.1,2340.98 " />
<svg:polygon detid="486967020" count="1" value="81" id="2707051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  3 forward    Id 486967020 " fill="rgb(255,95,0)" points="1114.51,2341.88 1101.7,2348.82 1107,2351.94 1118.81,2344.41 " />
<svg:polygon detid="486967024" count="1" value="81" id="2707052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  0 backward    Id 486967024 " fill="rgb(255,95,0)" points="1120.33,2345.23 1108.49,2352.75 1114.19,2355.61 1124.95,2347.56 " />
<svg:polygon detid="486967028" count="1" value="81" id="2707053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 backward  module  1 backward    Id 486967028 " fill="rgb(255,95,0)" points="1126.57,2348.31 1115.77,2356.35 1121.84,2358.94 1131.49,2350.41 " />
<svg:polygon detid="486934244" count="1" value="81" id="2707054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 forward    Id 486934244 " fill="rgb(255,95,0)" points="1133.21,2351.09 1123.52,2359.6 1129.91,2361.9 1138.4,2352.96 " />
<svg:polygon detid="486934248" count="1" value="81" id="2707055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  2 forward    Id 486934248 " fill="rgb(255,95,0)" points="1140.2,2353.55 1131.67,2362.48 1138.35,2364.48 1145.62,2355.17 " />
<svg:polygon detid="486934252" count="1" value="81" id="2707056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  3 forward    Id 486934252 " fill="rgb(255,95,0)" points="1147.5,2355.69 1140.19,2364.98 1147.11,2366.67 1153.11,2357.05 " />
<svg:polygon detid="486934256" count="1" value="81" id="2707057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  0 backward    Id 486934256 " fill="rgb(255,95,0)" points="1155.06,2357.48 1149.01,2367.08 1156.14,2368.44 1160.84,2358.58 " />
<svg:polygon detid="486934260" count="1" value="81" id="2707058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 6 forward  module  1 backward    Id 486934260 " fill="rgb(255,95,0)" points="1162.83,2358.91 1158.08,2368.77 1165.37,2369.79 1168.74,2359.75 " />
<svg:polygon detid="486967268" count="1" value="81" id="2707059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 forward    Id 486967268 " fill="rgb(255,95,0)" points="1170.77,2359.98 1167.35,2370.03 1174.75,2370.72 1176.78,2360.54 " />
<svg:polygon detid="486967272" count="1" value="81" id="2707060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  2 forward    Id 486967272 " fill="rgb(255,95,0)" points="1178.83,2360.69 1176.76,2370.86 1184.23,2371.2 1184.89,2360.97 " />
<svg:polygon detid="486967276" count="1" value="81" id="2707061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  3 forward    Id 486967276 " fill="rgb(255,95,0)" points="1186.96,2361.01 1186.25,2371.25 1193.75,2371.25 1193.04,2361.01 " />
<svg:polygon detid="486967280" count="1" value="81" id="2707062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  0 backward    Id 486967280 " fill="rgb(255,95,0)" points="1195.11,2360.97 1195.77,2371.2 1203.24,2370.86 1201.17,2360.69 " />
<svg:polygon detid="486967284" count="1" value="81" id="2707063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 backward  module  1 backward    Id 486967284 " fill="rgb(255,95,0)" points="1203.22,2360.54 1205.25,2370.72 1212.65,2370.03 1209.23,2359.98 " />
<svg:polygon detid="486934500" count="1" value="81" id="2707064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 forward    Id 486934500 " fill="rgb(255,95,0)" points="1211.26,2359.75 1214.63,2369.79 1221.92,2368.77 1217.17,2358.91 " />
<svg:polygon detid="486934504" count="1" value="81" id="2707065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  2 forward    Id 486934504 " fill="rgb(255,95,0)" points="1219.16,2358.58 1223.86,2368.44 1230.99,2367.08 1224.94,2357.48 " />
<svg:polygon detid="486934508" count="1" value="81" id="2707066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  3 forward    Id 486934508 " fill="rgb(255,95,0)" points="1226.89,2357.05 1232.89,2366.67 1239.81,2364.98 1232.5,2355.69 " />
<svg:polygon detid="486934512" count="1" value="81" id="2707067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  0 backward    Id 486934512 " fill="rgb(255,95,0)" points="1234.38,2355.17 1241.65,2364.48 1248.33,2362.48 1239.8,2353.55 " />
<svg:polygon detid="486934516" count="1" value="81" id="2707068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 7 forward  module  1 backward    Id 486934516 " fill="rgb(255,95,0)" points="1241.6,2352.96 1250.09,2361.9 1256.48,2359.6 1246.79,2351.09 " />
<svg:polygon detid="486967524" count="1" value="81" id="2707069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 forward    Id 486967524 " fill="rgb(255,95,0)" points="1248.51,2350.41 1258.16,2358.94 1264.23,2356.35 1253.43,2348.31 " />
<svg:polygon detid="486967528" count="1" value="81" id="2707070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  2 forward    Id 486967528 " fill="rgb(255,95,0)" points="1255.05,2347.56 1265.81,2355.61 1271.51,2352.75 1259.67,2345.23 " />
<svg:polygon detid="486967532" count="1" value="81" id="2707071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  3 forward    Id 486967532 " fill="rgb(255,95,0)" points="1261.19,2344.41 1273,2351.94 1278.3,2348.82 1265.49,2341.88 " />
<svg:polygon detid="486967536" count="1" value="81" id="2707072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  0 backward    Id 486967536 " fill="rgb(255,95,0)" points="1266.9,2340.98 1279.67,2347.95 1284.54,2344.6 1270.84,2338.27 " />
<svg:polygon detid="486967540" count="1" value="81" id="2707073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 backward  module  1 backward    Id 486967540 " fill="rgb(255,95,0)" points="1272.13,2337.31 1285.79,2343.66 1290.19,2340.1 1275.7,2334.42 " />
<svg:polygon detid="486934756" count="1" value="81" id="2707074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 forward    Id 486934756 " fill="rgb(255,95,0)" points="1276.85,2333.4 1291.32,2339.11 1295.23,2335.35 1280.03,2330.36 " />
<svg:polygon detid="486934760" count="1" value="81" id="2707075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  2 forward    Id 486934760 " fill="rgb(255,95,0)" points="1281.04,2329.29 1296.22,2334.31 1299.62,2330.38 1283.8,2326.11 " />
<svg:polygon detid="486934764" count="1" value="81" id="2707076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  3 forward    Id 486934764 " fill="rgb(255,95,0)" points="1284.67,2325 1300.47,2329.3 1303.34,2325.23 1286.99,2321.7 " />
<svg:polygon detid="486934768" count="1" value="81" id="2707077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  0 backward    Id 486934768 " fill="rgb(255,95,0)" points="1287.71,2320.55 1304.04,2324.11 1306.35,2319.92 1289.59,2317.15 " />
<svg:polygon detid="486934772" count="1" value="81" id="2707078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 8 forward  module  1 backward    Id 486934772 " fill="rgb(255,95,0)" points="1290.15,2315.98 1306.9,2318.78 1308.65,2314.49 1291.57,2312.51 " />
<svg:polygon detid="486965748" count="1" value="81" id="2707079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  1 backward    Id 486965748 " fill="rgb(255,95,0)" points="1291.97,2311.31 1309.05,2313.32 1310.22,2308.97 1292.92,2307.78 " />
<svg:polygon detid="486965736" count="1" value="81" id="2707080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 6 ring 0 petal 1 backward  module  2 forward    Id 486965736 " fill="rgb(255,95,0)" points="1293.17,2306.57 1310.46,2307.79 1311.04,2303.39 1293.64,2303.01 " />
<svg:polygon detid="487031140" count="1" value="84" id="2803001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 forward    Id 487031140 " fill="rgb(255,89,0)" points="1236.01,2501.57 1245.41,2502.03 1245.41,2497.97 1236.01,2498.43 " />
<svg:polygon detid="487031144" count="1" value="84" id="2803002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  2 forward    Id 487031144 " fill="rgb(255,89,0)" points="1235.86,2497.32 1245.27,2496.91 1244.19,2492.9 1235.02,2494.21 " />
<svg:polygon detid="486998372" count="1" value="84" id="2803003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 forward    Id 486998372 " fill="rgb(255,89,0)" points="1234.58,2493.13 1243.76,2491.86 1241.63,2488 1232.93,2490.14 " />
<svg:polygon detid="486998376" count="1" value="84" id="2803004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  2 forward    Id 486998376 " fill="rgb(255,89,0)" points="1232.21,2489.12 1240.94,2487.01 1237.8,2483.39 1229.78,2486.31 " />
<svg:polygon detid="487031396" count="1" value="84" id="2803005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 forward    Id 487031396 " fill="rgb(255,89,0)" points="1228.8,2485.37 1236.86,2482.48 1232.8,2479.2 1225.65,2482.82 " />
<svg:polygon detid="487031400" count="1" value="84" id="2803006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  2 forward    Id 487031400 " fill="rgb(255,89,0)" points="1224.43,2481.98 1231.62,2478.39 1226.74,2475.52 1220.64,2479.75 " />
<svg:polygon detid="487031404" count="1" value="84" id="2803007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  3 forward    Id 487031404 " fill="rgb(255,89,0)" points="1219.21,2479.03 1225.36,2474.82 1219.78,2472.44 1214.88,2477.18 " />
<svg:polygon detid="486998628" count="1" value="84" id="2803008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 forward    Id 486998628 " fill="rgb(255,89,0)" points="1213.27,2476.6 1218.23,2471.88 1212.08,2470.04 1208.5,2475.17 " />
<svg:polygon detid="486998632" count="1" value="84" id="2803009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  2 forward    Id 486998632 " fill="rgb(255,89,0)" points="1206.76,2474.75 1210.4,2469.63 1203.84,2468.37 1201.67,2473.77 " />
<svg:polygon detid="487031652" count="1" value="84" id="2803010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 forward    Id 487031652 " fill="rgb(255,89,0)" points="1199.84,2473.52 1202.08,2468.13 1195.26,2467.49 1194.55,2473.02 " />
<svg:polygon detid="487031656" count="1" value="84" id="2803011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  2 forward    Id 487031656 " fill="rgb(255,89,0)" points="1192.68,2472.94 1193.45,2467.41 1186.55,2467.41 1187.32,2472.94 " />
<svg:polygon detid="487031660" count="1" value="84" id="2803012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  3 forward    Id 487031660 " fill="rgb(255,89,0)" points="1185.45,2473.02 1184.74,2467.49 1177.92,2468.13 1180.16,2473.52 " />
<svg:polygon detid="486998884" count="1" value="84" id="2803013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 forward    Id 486998884 " fill="rgb(255,89,0)" points="1178.33,2473.77 1176.16,2468.37 1169.6,2469.63 1173.24,2474.75 " />
<svg:polygon detid="486998888" count="1" value="84" id="2803014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  2 forward    Id 486998888 " fill="rgb(255,89,0)" points="1171.5,2475.17 1167.92,2470.04 1161.77,2471.88 1166.73,2476.6 " />
<svg:polygon detid="487031908" count="1" value="84" id="2803015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 forward    Id 487031908 " fill="rgb(255,89,0)" points="1165.12,2477.18 1160.22,2472.44 1154.64,2474.82 1160.79,2479.03 " />
<svg:polygon detid="487031912" count="1" value="84" id="2803016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  2 forward    Id 487031912 " fill="rgb(255,89,0)" points="1159.36,2479.75 1153.26,2475.52 1148.38,2478.39 1155.57,2481.98 " />
<svg:polygon detid="487031916" count="1" value="84" id="2803017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  3 forward    Id 487031916 " fill="rgb(255,89,0)" points="1154.35,2482.82 1147.2,2479.2 1143.14,2482.48 1151.2,2485.37 " />
<svg:polygon detid="486999140" count="1" value="84" id="2803018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 forward    Id 486999140 " fill="rgb(255,89,0)" points="1150.22,2486.31 1142.2,2483.39 1139.06,2487.01 1147.79,2489.12 " />
<svg:polygon detid="486999144" count="1" value="84" id="2803019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  2 forward    Id 486999144 " fill="rgb(255,89,0)" points="1147.07,2490.14 1138.37,2488 1136.24,2491.86 1145.42,2493.13 " />
<svg:polygon detid="487032164" count="1" value="84" id="2803020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 forward    Id 487032164 " fill="rgb(255,89,0)" points="1144.98,2494.21 1135.81,2492.9 1134.73,2496.91 1144.14,2497.32 " />
<svg:polygon detid="487032168" count="1" value="84" id="2803021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  2 forward    Id 487032168 " fill="rgb(255,89,0)" points="1143.99,2498.43 1134.59,2497.97 1134.59,2502.03 1143.99,2501.57 " />
<svg:polygon detid="487032172" count="1" value="84" id="2803022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  3 forward    Id 487032172 " fill="rgb(255,89,0)" points="1144.14,2502.68 1134.73,2503.09 1135.81,2507.1 1144.98,2505.79 " />
<svg:polygon detid="486999396" count="1" value="84" id="2803023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 forward    Id 486999396 " fill="rgb(255,89,0)" points="1145.42,2506.87 1136.24,2508.14 1138.37,2512 1147.07,2509.86 " />
<svg:polygon detid="486999400" count="1" value="84" id="2803024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  2 forward    Id 486999400 " fill="rgb(255,89,0)" points="1147.79,2510.88 1139.06,2512.99 1142.2,2516.61 1150.22,2513.69 " />
<svg:polygon detid="487032420" count="1" value="84" id="2803025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 forward    Id 487032420 " fill="rgb(255,89,0)" points="1151.2,2514.63 1143.14,2517.52 1147.2,2520.8 1154.35,2517.18 " />
<svg:polygon detid="487032424" count="1" value="84" id="2803026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  2 forward    Id 487032424 " fill="rgb(255,89,0)" points="1155.57,2518.02 1148.38,2521.61 1153.26,2524.48 1159.36,2520.25 " />
<svg:polygon detid="487032428" count="1" value="84" id="2803027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  3 forward    Id 487032428 " fill="rgb(255,89,0)" points="1160.79,2520.97 1154.64,2525.18 1160.22,2527.56 1165.12,2522.82 " />
<svg:polygon detid="486999652" count="1" value="84" id="2803028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 forward    Id 486999652 " fill="rgb(255,89,0)" points="1166.73,2523.4 1161.77,2528.12 1167.92,2529.96 1171.5,2524.83 " />
<svg:polygon detid="486999656" count="1" value="84" id="2803029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  2 forward    Id 486999656 " fill="rgb(255,89,0)" points="1173.24,2525.25 1169.6,2530.37 1176.16,2531.63 1178.33,2526.23 " />
<svg:polygon detid="487032676" count="1" value="84" id="2803030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 forward    Id 487032676 " fill="rgb(255,89,0)" points="1180.16,2526.48 1177.92,2531.87 1184.74,2532.51 1185.45,2526.98 " />
<svg:polygon detid="487032680" count="1" value="84" id="2803031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  2 forward    Id 487032680 " fill="rgb(255,89,0)" points="1187.32,2527.06 1186.55,2532.59 1193.45,2532.59 1192.68,2527.06 " />
<svg:polygon detid="487032684" count="1" value="84" id="2803032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  3 forward    Id 487032684 " fill="rgb(255,89,0)" points="1194.55,2526.98 1195.26,2532.51 1202.08,2531.87 1199.84,2526.48 " />
<svg:polygon detid="486999908" count="1" value="84" id="2803033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 forward    Id 486999908 " fill="rgb(255,89,0)" points="1201.67,2526.23 1203.84,2531.63 1210.4,2530.37 1206.76,2525.25 " />
<svg:polygon detid="486999912" count="1" value="84" id="2803034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  2 forward    Id 486999912 " fill="rgb(255,89,0)" points="1208.5,2524.83 1212.08,2529.96 1218.23,2528.12 1213.27,2523.4 " />
<svg:polygon detid="487032932" count="1" value="84" id="2803035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 forward    Id 487032932 " fill="rgb(255,89,0)" points="1214.88,2522.82 1219.78,2527.56 1225.36,2525.18 1219.21,2520.97 " />
<svg:polygon detid="487032936" count="1" value="84" id="2803036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  2 forward    Id 487032936 " fill="rgb(255,89,0)" points="1220.64,2520.25 1226.74,2524.48 1231.62,2521.61 1224.43,2518.02 " />
<svg:polygon detid="487032940" count="1" value="84" id="2803037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  3 forward    Id 487032940 " fill="rgb(255,89,0)" points="1225.65,2517.18 1232.8,2520.8 1236.86,2517.52 1228.8,2514.63 " />
<svg:polygon detid="487000164" count="1" value="84" id="2803038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 forward    Id 487000164 " fill="rgb(255,89,0)" points="1229.78,2513.69 1237.8,2516.61 1240.94,2512.99 1232.21,2510.88 " />
<svg:polygon detid="487000168" count="1" value="84" id="2803039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  2 forward    Id 487000168 " fill="rgb(255,89,0)" points="1232.93,2509.86 1241.63,2512 1243.76,2508.14 1234.58,2506.87 " />
<svg:polygon detid="487031148" count="1" value="84" id="2803040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  3 forward    Id 487031148 " fill="rgb(255,89,0)" points="1235.02,2505.79 1244.19,2507.1 1245.27,2503.09 1235.86,2502.68 " />
<svg:polygon detid="487031176" count="1" value="84" id="2804001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  2 forward    Id 487031176 " fill="rgb(255,89,0)" points="1248.82,2499.51 1258.62,2499.52 1258.28,2495.96 1248.55,2496.62 " />
<svg:polygon detid="487031180" count="1" value="84" id="2804002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  3 forward    Id 487031180 " fill="rgb(255,89,0)" points="1248.36,2495.64 1258.1,2495 1257.08,2491.48 1247.53,2492.78 " />
<svg:polygon detid="486998404" count="1" value="84" id="2804003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 forward    Id 486998404 " fill="rgb(255,89,0)" points="1247.16,2491.82 1256.72,2490.55 1255.04,2487.12 1245.8,2489.04 " />
<svg:polygon detid="486998408" count="1" value="84" id="2804004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  2 forward    Id 486998408 " fill="rgb(255,89,0)" points="1245.24,2488.11 1254.5,2486.22 1252.18,2482.92 1243.36,2485.43 " />
<svg:polygon detid="486998412" count="1" value="84" id="2804005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  3 forward    Id 486998412 " fill="rgb(255,89,0)" points="1242.63,2484.54 1251.47,2482.05 1248.54,2478.93 1240.25,2482.01 " />
<svg:polygon detid="487031428" count="1" value="84" id="2804006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 forward    Id 487031428 " fill="rgb(255,89,0)" points="1239.36,2481.17 1247.67,2478.12 1244.16,2475.21 1236.51,2478.81 " />
<svg:polygon detid="487031432" count="1" value="84" id="2804007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  2 forward    Id 487031432 " fill="rgb(255,89,0)" points="1235.47,2478.04 1243.14,2474.46 1239.1,2471.8 1232.19,2475.88 " />
<svg:polygon detid="487031436" count="1" value="84" id="2804008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  3 forward    Id 487031436 " fill="rgb(255,89,0)" points="1231,2475.18 1237.95,2471.12 1233.42,2468.74 1227.33,2473.26 " />
<svg:polygon detid="487031440" count="1" value="84" id="2804009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  0 backward    Id 487031440 " fill="rgb(255,89,0)" points="1226.02,2472.64 1232.15,2468.14 1227.2,2466.08 1222.01,2470.96 " />
<svg:polygon detid="486998660" count="1" value="84" id="2804010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 forward    Id 486998660 " fill="rgb(255,89,0)" points="1220.59,2470.44 1225.82,2465.57 1220.51,2463.84 1216.28,2469.04 " />
<svg:polygon detid="486998664" count="1" value="84" id="2804011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  2 forward    Id 486998664 " fill="rgb(255,89,0)" points="1214.77,2468.61 1219.04,2463.42 1213.43,2462.06 1210.22,2467.5 " />
<svg:polygon detid="486998668" count="1" value="84" id="2804012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  3 forward    Id 486998668 " fill="rgb(255,89,0)" points="1208.64,2467.18 1211.9,2461.74 1206.06,2460.75 1203.91,2466.38 " />
<svg:polygon detid="487031684" count="1" value="84" id="2804013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 forward    Id 487031684 " fill="rgb(255,89,0)" points="1202.27,2466.16 1204.48,2460.54 1198.49,2459.94 1197.42,2465.67 " />
<svg:polygon detid="487031688" count="1" value="84" id="2804014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  2 forward    Id 487031688 " fill="rgb(255,89,0)" points="1195.75,2465.56 1196.87,2459.83 1190.81,2459.63 1190.84,2465.4 " />
<svg:polygon detid="487031692" count="1" value="84" id="2804015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  3 forward    Id 487031692 " fill="rgb(255,89,0)" points="1189.16,2465.4 1189.19,2459.63 1183.13,2459.83 1184.25,2465.56 " />
<svg:polygon detid="487031696" count="1" value="84" id="2804016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  0 backward    Id 487031696 " fill="rgb(255,89,0)" points="1182.58,2465.67 1181.51,2459.94 1175.52,2460.54 1177.73,2466.16 " />
<svg:polygon detid="486998916" count="1" value="84" id="2804017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 forward    Id 486998916 " fill="rgb(255,89,0)" points="1176.09,2466.38 1173.94,2460.75 1168.1,2461.74 1171.36,2467.18 " />
<svg:polygon detid="486998920" count="1" value="84" id="2804018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  2 forward    Id 486998920 " fill="rgb(255,89,0)" points="1169.78,2467.5 1166.57,2462.06 1160.96,2463.42 1165.23,2468.61 " />
<svg:polygon detid="486998924" count="1" value="84" id="2804019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  3 forward    Id 486998924 " fill="rgb(255,89,0)" points="1163.72,2469.04 1159.49,2463.84 1154.18,2465.57 1159.41,2470.44 " />
<svg:polygon detid="487031940" count="1" value="84" id="2804020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 forward    Id 487031940 " fill="rgb(255,89,0)" points="1157.99,2470.96 1152.8,2466.08 1147.85,2468.14 1153.98,2472.64 " />
<svg:polygon detid="487031944" count="1" value="84" id="2804021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  2 forward    Id 487031944 " fill="rgb(255,89,0)" points="1152.67,2473.26 1146.58,2468.74 1142.05,2471.12 1149,2475.18 " />
<svg:polygon detid="487031948" count="1" value="84" id="2804022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  3 forward    Id 487031948 " fill="rgb(255,89,0)" points="1147.81,2475.88 1140.9,2471.8 1136.86,2474.46 1144.53,2478.04 " />
<svg:polygon detid="487031952" count="1" value="84" id="2804023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  0 backward    Id 487031952 " fill="rgb(255,89,0)" points="1143.49,2478.81 1135.84,2475.21 1132.33,2478.12 1140.64,2481.17 " />
<svg:polygon detid="486999172" count="1" value="84" id="2804024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 forward    Id 486999172 " fill="rgb(255,89,0)" points="1139.75,2482.01 1131.46,2478.93 1128.53,2482.05 1137.37,2484.54 " />
<svg:polygon detid="486999176" count="1" value="84" id="2804025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  2 forward    Id 486999176 " fill="rgb(255,89,0)" points="1136.64,2485.43 1127.82,2482.92 1125.5,2486.22 1134.76,2488.11 " />
<svg:polygon detid="486999180" count="1" value="84" id="2804026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  3 forward    Id 486999180 " fill="rgb(255,89,0)" points="1134.2,2489.04 1124.96,2487.12 1123.28,2490.55 1132.84,2491.82 " />
<svg:polygon detid="487032196" count="1" value="84" id="2804027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 forward    Id 487032196 " fill="rgb(255,89,0)" points="1132.47,2492.78 1122.92,2491.48 1121.9,2495 1131.64,2495.64 " />
<svg:polygon detid="487032200" count="1" value="84" id="2804028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  2 forward    Id 487032200 " fill="rgb(255,89,0)" points="1131.45,2496.62 1121.72,2495.96 1121.38,2499.52 1131.18,2499.51 " />
<svg:polygon detid="487032204" count="1" value="84" id="2804029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  3 forward    Id 487032204 " fill="rgb(255,89,0)" points="1131.18,2500.49 1121.38,2500.48 1121.72,2504.04 1131.45,2503.38 " />
<svg:polygon detid="487032208" count="1" value="84" id="2804030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  0 backward    Id 487032208 " fill="rgb(255,89,0)" points="1131.64,2504.36 1121.9,2505 1122.92,2508.52 1132.47,2507.22 " />
<svg:polygon detid="486999428" count="1" value="84" id="2804031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 forward    Id 486999428 " fill="rgb(255,89,0)" points="1132.84,2508.18 1123.28,2509.45 1124.96,2512.88 1134.2,2510.96 " />
<svg:polygon detid="486999432" count="1" value="84" id="2804032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  2 forward    Id 486999432 " fill="rgb(255,89,0)" points="1134.76,2511.89 1125.5,2513.78 1127.82,2517.08 1136.64,2514.57 " />
<svg:polygon detid="486999436" count="1" value="84" id="2804033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  3 forward    Id 486999436 " fill="rgb(255,89,0)" points="1137.37,2515.46 1128.53,2517.95 1131.46,2521.07 1139.75,2517.99 " />
<svg:polygon detid="487032452" count="1" value="84" id="2804034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 forward    Id 487032452 " fill="rgb(255,89,0)" points="1140.64,2518.83 1132.33,2521.88 1135.84,2524.79 1143.49,2521.19 " />
<svg:polygon detid="487032456" count="1" value="84" id="2804035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  2 forward    Id 487032456 " fill="rgb(255,89,0)" points="1144.53,2521.96 1136.86,2525.54 1140.9,2528.2 1147.81,2524.12 " />
<svg:polygon detid="487032460" count="1" value="84" id="2804036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  3 forward    Id 487032460 " fill="rgb(255,89,0)" points="1149,2524.82 1142.05,2528.88 1146.58,2531.26 1152.67,2526.74 " />
<svg:polygon detid="487032464" count="1" value="84" id="2804037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  0 backward    Id 487032464 " fill="rgb(255,89,0)" points="1153.98,2527.36 1147.85,2531.86 1152.8,2533.92 1157.99,2529.04 " />
<svg:polygon detid="486999684" count="1" value="84" id="2804038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 forward    Id 486999684 " fill="rgb(255,89,0)" points="1159.41,2529.56 1154.18,2534.43 1159.49,2536.16 1163.72,2530.96 " />
<svg:polygon detid="486999688" count="1" value="84" id="2804039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  2 forward    Id 486999688 " fill="rgb(255,89,0)" points="1165.23,2531.39 1160.96,2536.58 1166.57,2537.94 1169.78,2532.5 " />
<svg:polygon detid="486999692" count="1" value="84" id="2804040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  3 forward    Id 486999692 " fill="rgb(255,89,0)" points="1171.36,2532.82 1168.1,2538.26 1173.94,2539.25 1176.09,2533.62 " />
<svg:polygon detid="487032708" count="1" value="84" id="2804041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 forward    Id 487032708 " fill="rgb(255,89,0)" points="1177.73,2533.84 1175.52,2539.46 1181.51,2540.06 1182.58,2534.33 " />
<svg:polygon detid="487032712" count="1" value="84" id="2804042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  2 forward    Id 487032712 " fill="rgb(255,89,0)" points="1184.25,2534.44 1183.13,2540.17 1189.19,2540.37 1189.16,2534.6 " />
<svg:polygon detid="487032716" count="1" value="84" id="2804043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  3 forward    Id 487032716 " fill="rgb(255,89,0)" points="1190.84,2534.6 1190.81,2540.37 1196.87,2540.17 1195.75,2534.44 " />
<svg:polygon detid="487032720" count="1" value="84" id="2804044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  0 backward    Id 487032720 " fill="rgb(255,89,0)" points="1197.42,2534.33 1198.49,2540.06 1204.48,2539.46 1202.27,2533.84 " />
<svg:polygon detid="486999940" count="1" value="84" id="2804045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 forward    Id 486999940 " fill="rgb(255,89,0)" points="1203.91,2533.62 1206.06,2539.25 1211.9,2538.26 1208.64,2532.82 " />
<svg:polygon detid="486999944" count="1" value="84" id="2804046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  2 forward    Id 486999944 " fill="rgb(255,89,0)" points="1210.22,2532.5 1213.43,2537.94 1219.04,2536.58 1214.77,2531.39 " />
<svg:polygon detid="486999948" count="1" value="84" id="2804047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  3 forward    Id 486999948 " fill="rgb(255,89,0)" points="1216.28,2530.96 1220.51,2536.16 1225.82,2534.43 1220.59,2529.56 " />
<svg:polygon detid="487032964" count="1" value="84" id="2804048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 forward    Id 487032964 " fill="rgb(255,89,0)" points="1222.01,2529.04 1227.2,2533.92 1232.15,2531.86 1226.02,2527.36 " />
<svg:polygon detid="487032968" count="1" value="84" id="2804049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  2 forward    Id 487032968 " fill="rgb(255,89,0)" points="1227.33,2526.74 1233.42,2531.26 1237.95,2528.88 1231,2524.82 " />
<svg:polygon detid="487032972" count="1" value="84" id="2804050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  3 forward    Id 487032972 " fill="rgb(255,89,0)" points="1232.19,2524.12 1239.1,2528.2 1243.14,2525.54 1235.47,2521.96 " />
<svg:polygon detid="487032976" count="1" value="84" id="2804051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  0 backward    Id 487032976 " fill="rgb(255,89,0)" points="1236.51,2521.19 1244.16,2524.79 1247.67,2521.88 1239.36,2518.83 " />
<svg:polygon detid="487000196" count="1" value="84" id="2804052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 forward    Id 487000196 " fill="rgb(255,89,0)" points="1240.25,2517.99 1248.54,2521.07 1251.47,2517.95 1242.63,2515.46 " />
<svg:polygon detid="487000200" count="1" value="84" id="2804053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  2 forward    Id 487000200 " fill="rgb(255,89,0)" points="1243.36,2514.57 1252.18,2517.08 1254.5,2513.78 1245.24,2511.89 " />
<svg:polygon detid="487000204" count="1" value="84" id="2804054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  3 forward    Id 487000204 " fill="rgb(255,89,0)" points="1245.8,2510.96 1255.04,2512.88 1256.72,2509.45 1247.16,2508.18 " />
<svg:polygon detid="487031184" count="1" value="84" id="2804055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  0 backward    Id 487031184 " fill="rgb(255,89,0)" points="1247.53,2507.22 1257.08,2508.52 1258.1,2505 1248.36,2504.36 " />
<svg:polygon detid="487031172" count="1" value="84" id="2804056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 forward    Id 487031172 " fill="rgb(255,89,0)" points="1248.55,2503.38 1258.28,2504.04 1258.62,2500.48 1248.82,2500.49 " />
<svg:polygon detid="487031210" count="1" value="84" id="2805001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  2 forward    Id 487031210 " fill="rgb(255,89,0)" points="1272.31,2493.17 1259.92,2494.35 1260.56,2499.15 " />
<svg:polygon detid="486998438" count="1" value="84" id="2805002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 forward    Id 486998438 " fill="rgb(255,89,0)" points="1269.48,2485.68 1257.56,2487.98 1259.47,2492.67 " />
<svg:polygon detid="486998442" count="1" value="84" id="2805003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  2 forward    Id 486998442 " fill="rgb(255,89,0)" points="1264.7,2478.54 1253.53,2481.92 1256.66,2486.36 " />
<svg:polygon detid="486998446" count="1" value="84" id="2805004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  3 forward    Id 486998446 " fill="rgb(255,89,0)" points="1258.07,2471.93 1247.94,2476.29 1252.21,2480.4 " />
<svg:polygon detid="487031462" count="1" value="84" id="2805005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 forward    Id 487031462 " fill="rgb(255,89,0)" points="1249.77,2466.02 1240.92,2471.25 1246.23,2474.91 " />
<svg:polygon detid="487031466" count="1" value="84" id="2805006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  2 forward    Id 487031466 " fill="rgb(255,89,0)" points="1240,2460.93 1232.65,2466.92 1238.87,2470.05 " />
<svg:polygon detid="486998694" count="1" value="84" id="2805007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 forward    Id 486998694 " fill="rgb(255,89,0)" points="1228.99,2456.81 1223.32,2463.4 1230.3,2465.92 " />
<svg:polygon detid="486998698" count="1" value="84" id="2805008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  2 forward    Id 486998698 " fill="rgb(255,89,0)" points="1217.03,2453.76 1213.18,2460.79 1220.74,2462.63 " />
<svg:polygon detid="486998702" count="1" value="84" id="2805009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  3 forward    Id 486998702 " fill="rgb(255,89,0)" points="1204.4,2451.84 1202.47,2459.14 1210.43,2460.26 " />
<svg:polygon detid="487031718" count="1" value="84" id="2805010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 forward    Id 487031718 " fill="rgb(255,89,0)" points="1191.41,2451.11 1191.45,2458.49 1199.61,2458.87 " />
<svg:polygon detid="487031722" count="1" value="84" id="2805011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  2 forward    Id 487031722 " fill="rgb(255,89,0)" points="1178.39,2451.58 1180.39,2458.87 1188.55,2458.49 " />
<svg:polygon detid="486998950" count="1" value="84" id="2805012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 forward    Id 486998950 " fill="rgb(255,89,0)" points="1165.66,2453.24 1169.57,2460.26 1177.53,2459.14 " />
<svg:polygon detid="486998954" count="1" value="84" id="2805013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  2 forward    Id 486998954 " fill="rgb(255,89,0)" points="1153.53,2456.06 1159.26,2462.63 1166.82,2460.79 " />
<svg:polygon detid="486998958" count="1" value="84" id="2805014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  3 forward    Id 486998958 " fill="rgb(255,89,0)" points="1142.29,2459.96 1149.7,2465.92 1156.68,2463.4 " />
<svg:polygon detid="487031974" count="1" value="84" id="2805015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 forward    Id 487031974 " fill="rgb(255,89,0)" points="1132.23,2464.84 1141.13,2470.05 1147.35,2466.92 " />
<svg:polygon detid="487031978" count="1" value="84" id="2805016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  2 forward    Id 487031978 " fill="rgb(255,89,0)" points="1123.59,2470.59 1133.77,2474.91 1139.08,2471.25 " />
<svg:polygon detid="486999206" count="1" value="84" id="2805017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 forward    Id 486999206 " fill="rgb(255,89,0)" points="1116.59,2477.06 1127.79,2480.4 1132.06,2476.29 " />
<svg:polygon detid="486999210" count="1" value="84" id="2805018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  2 forward    Id 486999210 " fill="rgb(255,89,0)" points="1111.39,2484.1 1123.34,2486.36 1126.47,2481.92 " />
<svg:polygon detid="486999214" count="1" value="84" id="2805019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  3 forward    Id 486999214 " fill="rgb(255,89,0)" points="1108.13,2491.53 1120.53,2492.67 1122.44,2487.98 " />
<svg:polygon detid="487032230" count="1" value="84" id="2805020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 forward    Id 487032230 " fill="rgb(255,89,0)" points="1106.88,2499.17 1119.44,2499.15 1120.08,2494.35 " />
<svg:polygon detid="487032234" count="1" value="84" id="2805021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  2 forward    Id 487032234 " fill="rgb(255,89,0)" points="1107.69,2506.83 1120.08,2505.65 1119.44,2500.85 " />
<svg:polygon detid="486999462" count="1" value="84" id="2805022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 forward    Id 486999462 " fill="rgb(255,89,0)" points="1110.52,2514.32 1122.44,2512.02 1120.53,2507.33 " />
<svg:polygon detid="486999466" count="1" value="84" id="2805023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  2 forward    Id 486999466 " fill="rgb(255,89,0)" points="1115.3,2521.46 1126.47,2518.08 1123.34,2513.64 " />
<svg:polygon detid="486999470" count="1" value="84" id="2805024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  3 forward    Id 486999470 " fill="rgb(255,89,0)" points="1121.93,2528.07 1132.06,2523.71 1127.79,2519.6 " />
<svg:polygon detid="487032486" count="1" value="84" id="2805025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 forward    Id 487032486 " fill="rgb(255,89,0)" points="1130.23,2533.98 1139.08,2528.75 1133.77,2525.09 " />
<svg:polygon detid="487032490" count="1" value="84" id="2805026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  2 forward    Id 487032490 " fill="rgb(255,89,0)" points="1140,2539.07 1147.35,2533.08 1141.13,2529.95 " />
<svg:polygon detid="486999718" count="1" value="84" id="2805027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 forward    Id 486999718 " fill="rgb(255,89,0)" points="1151.01,2543.19 1156.68,2536.6 1149.7,2534.08 " />
<svg:polygon detid="486999722" count="1" value="84" id="2805028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  2 forward    Id 486999722 " fill="rgb(255,89,0)" points="1162.97,2546.24 1166.82,2539.21 1159.26,2537.37 " />
<svg:polygon detid="486999726" count="1" value="84" id="2805029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  3 forward    Id 486999726 " fill="rgb(255,89,0)" points="1175.6,2548.16 1177.53,2540.86 1169.57,2539.74 " />
<svg:polygon detid="487032742" count="1" value="84" id="2805030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 forward    Id 487032742 " fill="rgb(255,89,0)" points="1188.59,2548.89 1188.55,2541.51 1180.39,2541.13 " />
<svg:polygon detid="487032746" count="1" value="84" id="2805031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  2 forward    Id 487032746 " fill="rgb(255,89,0)" points="1201.61,2548.42 1199.61,2541.13 1191.45,2541.51 " />
<svg:polygon detid="486999974" count="1" value="84" id="2805032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 forward    Id 486999974 " fill="rgb(255,89,0)" points="1214.34,2546.76 1210.43,2539.74 1202.47,2540.86 " />
<svg:polygon detid="486999978" count="1" value="84" id="2805033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  2 forward    Id 486999978 " fill="rgb(255,89,0)" points="1226.47,2543.94 1220.74,2537.37 1213.18,2539.21 " />
<svg:polygon detid="486999982" count="1" value="84" id="2805034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  3 forward    Id 486999982 " fill="rgb(255,89,0)" points="1237.71,2540.04 1230.3,2534.08 1223.32,2536.6 " />
<svg:polygon detid="487032998" count="1" value="84" id="2805035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 forward    Id 487032998 " fill="rgb(255,89,0)" points="1247.77,2535.16 1238.87,2529.95 1232.65,2533.08 " />
<svg:polygon detid="487033002" count="1" value="84" id="2805036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  2 forward    Id 487033002 " fill="rgb(255,89,0)" points="1256.41,2529.41 1246.23,2525.09 1240.92,2528.75 " />
<svg:polygon detid="487000230" count="1" value="84" id="2805037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 forward    Id 487000230 " fill="rgb(255,89,0)" points="1263.41,2522.94 1252.21,2519.6 1247.94,2523.71 " />
<svg:polygon detid="487000234" count="1" value="84" id="2805038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  2 forward    Id 487000234 " fill="rgb(255,89,0)" points="1268.61,2515.9 1256.66,2513.64 1253.53,2518.08 " />
<svg:polygon detid="487000238" count="1" value="84" id="2805039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  3 forward    Id 487000238 " fill="rgb(255,89,0)" points="1271.87,2508.47 1259.47,2507.33 1257.56,2512.02 " />
<svg:polygon detid="487031206" count="1" value="84" id="2805040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 forward    Id 487031206 " fill="rgb(255,89,0)" points="1273.12,2500.83 1260.56,2500.85 1259.92,2505.65 " />
<svg:polygon detid="487031209" count="1" value="84" id="2805101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  2 forward   stereo Id 487031209 " fill="rgb(255,89,0)" points="1260.56,2499.15 1273.12,2499.17 1272.31,2493.17 " />
<svg:polygon detid="486998437" count="1" value="84" id="2805102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 forward   stereo Id 486998437 " fill="rgb(255,89,0)" points="1259.47,2492.67 1271.87,2491.53 1269.48,2485.68 " />
<svg:polygon detid="486998441" count="1" value="84" id="2805103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  2 forward   stereo Id 486998441 " fill="rgb(255,89,0)" points="1256.66,2486.36 1268.61,2484.1 1264.7,2478.54 " />
<svg:polygon detid="486998445" count="1" value="84" id="2805104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  3 forward   stereo Id 486998445 " fill="rgb(255,89,0)" points="1252.21,2480.4 1263.41,2477.06 1258.07,2471.93 " />
<svg:polygon detid="487031461" count="1" value="84" id="2805105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 forward   stereo Id 487031461 " fill="rgb(255,89,0)" points="1246.23,2474.91 1256.41,2470.59 1249.77,2466.02 " />
<svg:polygon detid="487031465" count="1" value="84" id="2805106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  2 forward   stereo Id 487031465 " fill="rgb(255,89,0)" points="1238.87,2470.05 1247.77,2464.84 1240,2460.93 " />
<svg:polygon detid="486998693" count="1" value="84" id="2805107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 forward   stereo Id 486998693 " fill="rgb(255,89,0)" points="1230.3,2465.92 1237.71,2459.96 1228.99,2456.81 " />
<svg:polygon detid="486998697" count="1" value="84" id="2805108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  2 forward   stereo Id 486998697 " fill="rgb(255,89,0)" points="1220.74,2462.63 1226.47,2456.06 1217.03,2453.76 " />
<svg:polygon detid="486998701" count="1" value="84" id="2805109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  3 forward   stereo Id 486998701 " fill="rgb(255,89,0)" points="1210.43,2460.26 1214.34,2453.24 1204.4,2451.84 " />
<svg:polygon detid="487031717" count="1" value="84" id="2805110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 forward   stereo Id 487031717 " fill="rgb(255,89,0)" points="1199.61,2458.87 1201.61,2451.58 1191.41,2451.11 " />
<svg:polygon detid="487031721" count="1" value="84" id="2805111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  2 forward   stereo Id 487031721 " fill="rgb(255,89,0)" points="1188.55,2458.49 1188.59,2451.11 1178.39,2451.58 " />
<svg:polygon detid="486998949" count="1" value="84" id="2805112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 forward   stereo Id 486998949 " fill="rgb(255,89,0)" points="1177.53,2459.14 1175.6,2451.84 1165.66,2453.24 " />
<svg:polygon detid="486998953" count="1" value="84" id="2805113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  2 forward   stereo Id 486998953 " fill="rgb(255,89,0)" points="1166.82,2460.79 1162.97,2453.76 1153.53,2456.06 " />
<svg:polygon detid="486998957" count="1" value="84" id="2805114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  3 forward   stereo Id 486998957 " fill="rgb(255,89,0)" points="1156.68,2463.4 1151.01,2456.81 1142.29,2459.96 " />
<svg:polygon detid="487031973" count="1" value="84" id="2805115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 forward   stereo Id 487031973 " fill="rgb(255,89,0)" points="1147.35,2466.92 1140,2460.93 1132.23,2464.84 " />
<svg:polygon detid="487031977" count="1" value="84" id="2805116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  2 forward   stereo Id 487031977 " fill="rgb(255,89,0)" points="1139.08,2471.25 1130.23,2466.02 1123.59,2470.59 " />
<svg:polygon detid="486999205" count="1" value="84" id="2805117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 forward   stereo Id 486999205 " fill="rgb(255,89,0)" points="1132.06,2476.29 1121.93,2471.93 1116.59,2477.06 " />
<svg:polygon detid="486999209" count="1" value="84" id="2805118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  2 forward   stereo Id 486999209 " fill="rgb(255,89,0)" points="1126.47,2481.92 1115.3,2478.54 1111.39,2484.1 " />
<svg:polygon detid="486999213" count="1" value="84" id="2805119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  3 forward   stereo Id 486999213 " fill="rgb(255,89,0)" points="1122.44,2487.98 1110.52,2485.68 1108.13,2491.53 " />
<svg:polygon detid="487032229" count="1" value="84" id="2805120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 forward   stereo Id 487032229 " fill="rgb(255,89,0)" points="1120.08,2494.35 1107.69,2493.17 1106.88,2499.17 " />
<svg:polygon detid="487032233" count="1" value="84" id="2805121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  2 forward   stereo Id 487032233 " fill="rgb(255,89,0)" points="1119.44,2500.85 1106.88,2500.83 1107.69,2506.83 " />
<svg:polygon detid="486999461" count="1" value="84" id="2805122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 forward   stereo Id 486999461 " fill="rgb(255,89,0)" points="1120.53,2507.33 1108.13,2508.47 1110.52,2514.32 " />
<svg:polygon detid="486999465" count="1" value="84" id="2805123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  2 forward   stereo Id 486999465 " fill="rgb(255,89,0)" points="1123.34,2513.64 1111.39,2515.9 1115.3,2521.46 " />
<svg:polygon detid="486999469" count="1" value="84" id="2805124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  3 forward   stereo Id 486999469 " fill="rgb(255,89,0)" points="1127.79,2519.6 1116.59,2522.94 1121.93,2528.07 " />
<svg:polygon detid="487032485" count="1" value="84" id="2805125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 forward   stereo Id 487032485 " fill="rgb(255,89,0)" points="1133.77,2525.09 1123.59,2529.41 1130.23,2533.98 " />
<svg:polygon detid="487032489" count="1" value="84" id="2805126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  2 forward   stereo Id 487032489 " fill="rgb(255,89,0)" points="1141.13,2529.95 1132.23,2535.16 1140,2539.07 " />
<svg:polygon detid="486999717" count="1" value="84" id="2805127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 forward   stereo Id 486999717 " fill="rgb(255,89,0)" points="1149.7,2534.08 1142.29,2540.04 1151.01,2543.19 " />
<svg:polygon detid="486999721" count="1" value="84" id="2805128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  2 forward   stereo Id 486999721 " fill="rgb(255,89,0)" points="1159.26,2537.37 1153.53,2543.94 1162.97,2546.24 " />
<svg:polygon detid="486999725" count="1" value="84" id="2805129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  3 forward   stereo Id 486999725 " fill="rgb(255,89,0)" points="1169.57,2539.74 1165.66,2546.76 1175.6,2548.16 " />
<svg:polygon detid="487032741" count="1" value="84" id="2805130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 forward   stereo Id 487032741 " fill="rgb(255,89,0)" points="1180.39,2541.13 1178.39,2548.42 1188.59,2548.89 " />
<svg:polygon detid="487032745" count="1" value="84" id="2805131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  2 forward   stereo Id 487032745 " fill="rgb(255,89,0)" points="1191.45,2541.51 1191.41,2548.89 1201.61,2548.42 " />
<svg:polygon detid="486999973" count="1" value="84" id="2805132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 forward   stereo Id 486999973 " fill="rgb(255,89,0)" points="1202.47,2540.86 1204.4,2548.16 1214.34,2546.76 " />
<svg:polygon detid="486999977" count="1" value="84" id="2805133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  2 forward   stereo Id 486999977 " fill="rgb(255,89,0)" points="1213.18,2539.21 1217.03,2546.24 1226.47,2543.94 " />
<svg:polygon detid="486999981" count="1" value="84" id="2805134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  3 forward   stereo Id 486999981 " fill="rgb(255,89,0)" points="1223.32,2536.6 1228.99,2543.19 1237.71,2540.04 " />
<svg:polygon detid="487032997" count="1" value="84" id="2805135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 forward   stereo Id 487032997 " fill="rgb(255,89,0)" points="1232.65,2533.08 1240,2539.07 1247.77,2535.16 " />
<svg:polygon detid="487033001" count="1" value="84" id="2805136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  2 forward   stereo Id 487033001 " fill="rgb(255,89,0)" points="1240.92,2528.75 1249.77,2533.98 1256.41,2529.41 " />
<svg:polygon detid="487000229" count="1" value="84" id="2805137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 forward   stereo Id 487000229 " fill="rgb(255,89,0)" points="1247.94,2523.71 1258.07,2528.07 1263.41,2522.94 " />
<svg:polygon detid="487000233" count="1" value="84" id="2805138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  2 forward   stereo Id 487000233 " fill="rgb(255,89,0)" points="1253.53,2518.08 1264.7,2521.46 1268.61,2515.9 " />
<svg:polygon detid="487000237" count="1" value="84" id="2805139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  3 forward   stereo Id 487000237 " fill="rgb(255,89,0)" points="1257.56,2512.02 1269.48,2514.32 1271.87,2508.47 " />
<svg:polygon detid="487031205" count="1" value="84" id="2805140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 forward   stereo Id 487031205 " fill="rgb(255,89,0)" points="1259.92,2505.65 1272.31,2506.83 1273.12,2500.83 " />
<svg:polygon detid="487031236" count="1" value="84" id="2806001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 forward    Id 487031236 " fill="rgb(255,89,0)" points="1275.05,2499.28 1290.71,2499.3 1290.21,2494.06 1274.65,2495.12 " />
<svg:polygon detid="487031244" count="1" value="84" id="2806002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  3 forward    Id 487031244 " fill="rgb(255,89,0)" points="1274.38,2493.68 1289.94,2492.67 1288.45,2487.5 1273.19,2489.57 " />
<svg:polygon detid="486998468" count="1" value="84" id="2806003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 forward    Id 486998468 " fill="rgb(255,89,0)" points="1272.64,2488.16 1287.92,2486.14 1285.45,2481.1 1270.68,2484.16 " />
<svg:polygon detid="486998472" count="1" value="84" id="2806004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  2 forward    Id 486998472 " fill="rgb(255,89,0)" points="1269.87,2482.8 1284.66,2479.77 1281.25,2474.93 1267.16,2478.94 " />
<svg:polygon detid="486998476" count="1" value="84" id="2806005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  3 forward    Id 486998476 " fill="rgb(255,89,0)" points="1266.09,2477.64 1280.22,2473.67 1275.9,2469.08 1262.66,2473.99 " />
<svg:polygon detid="487031492" count="1" value="84" id="2806006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 forward    Id 487031492 " fill="rgb(255,89,0)" points="1261.36,2472.77 1274.64,2467.89 1269.48,2463.61 1257.26,2469.37 " />
<svg:polygon detid="487031496" count="1" value="84" id="2806007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  2 forward    Id 487031496 " fill="rgb(255,89,0)" points="1255.73,2468.24 1267.99,2462.52 1262.05,2458.61 1251,2465.13 " />
<svg:polygon detid="487031500" count="1" value="84" id="2806008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  3 forward    Id 487031500 " fill="rgb(255,89,0)" points="1249.27,2464.11 1260.37,2457.62 1253.72,2454.12 1243.98,2461.34 " />
<svg:polygon detid="487031504" count="1" value="84" id="2806009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  0 backward    Id 487031504 " fill="rgb(255,89,0)" points="1242.07,2460.44 1251.86,2453.25 1244.59,2450.21 1236.29,2458.02 " />
<svg:polygon detid="486998724" count="1" value="84" id="2806010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 forward    Id 486998724 " fill="rgb(255,89,0)" points="1234.21,2457.26 1242.57,2449.47 1234.77,2446.93 1228.01,2455.24 " />
<svg:polygon detid="486998728" count="1" value="84" id="2806011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  2 forward    Id 486998728 " fill="rgb(255,89,0)" points="1225.8,2454.61 1232.62,2446.32 1224.38,2444.32 1219.25,2453.02 " />
<svg:polygon detid="486998732" count="1" value="84" id="2806012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  3 forward    Id 486998732 " fill="rgb(255,89,0)" points="1216.93,2452.54 1222.14,2443.85 1213.57,2442.4 1210.12,2451.39 " />
<svg:polygon detid="487031748" count="1" value="84" id="2806013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 forward    Id 487031748 " fill="rgb(255,89,0)" points="1207.73,2451.07 1211.25,2442.09 1202.46,2441.21 1200.74,2450.37 " />
<svg:polygon detid="487031752" count="1" value="84" id="2806014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  2 forward    Id 487031752 " fill="rgb(255,89,0)" points="1198.3,2450.21 1200.09,2441.06 1191.19,2440.76 1191.23,2449.97 " />
<svg:polygon detid="487031756" count="1" value="84" id="2806015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  3 forward    Id 487031756 " fill="rgb(255,89,0)" points="1188.77,2449.97 1188.81,2440.76 1179.91,2441.06 1181.7,2450.21 " />
<svg:polygon detid="487031760" count="1" value="84" id="2806016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  0 backward    Id 487031760 " fill="rgb(255,89,0)" points="1179.26,2450.37 1177.54,2441.21 1168.75,2442.09 1172.27,2451.07 " />
<svg:polygon detid="486998980" count="1" value="84" id="2806017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 forward    Id 486998980 " fill="rgb(255,89,0)" points="1169.88,2451.39 1166.43,2442.4 1157.86,2443.85 1163.07,2452.54 " />
<svg:polygon detid="486998984" count="1" value="84" id="2806018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  2 forward    Id 486998984 " fill="rgb(255,89,0)" points="1160.75,2453.02 1155.62,2444.32 1147.38,2446.32 1154.2,2454.61 " />
<svg:polygon detid="486998988" count="1" value="84" id="2806019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  3 forward    Id 486998988 " fill="rgb(255,89,0)" points="1151.99,2455.24 1145.23,2446.93 1137.43,2449.47 1145.79,2457.26 " />
<svg:polygon detid="487032004" count="1" value="84" id="2806020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 forward    Id 487032004 " fill="rgb(255,89,0)" points="1143.71,2458.02 1135.41,2450.21 1128.14,2453.25 1137.93,2460.44 " />
<svg:polygon detid="487032008" count="1" value="84" id="2806021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  2 forward    Id 487032008 " fill="rgb(255,89,0)" points="1136.02,2461.34 1126.28,2454.12 1119.63,2457.62 1130.73,2464.11 " />
<svg:polygon detid="487032012" count="1" value="84" id="2806022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  3 forward    Id 487032012 " fill="rgb(255,89,0)" points="1129,2465.13 1117.95,2458.61 1112.01,2462.52 1124.27,2468.24 " />
<svg:polygon detid="487032016" count="1" value="84" id="2806023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  0 backward    Id 487032016 " fill="rgb(255,89,0)" points="1122.74,2469.37 1110.52,2463.61 1105.36,2467.89 1118.64,2472.77 " />
<svg:polygon detid="486999236" count="1" value="84" id="2806024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 forward    Id 486999236 " fill="rgb(255,89,0)" points="1117.34,2473.99 1104.1,2469.08 1099.78,2473.67 1113.91,2477.64 " />
<svg:polygon detid="486999240" count="1" value="84" id="2806025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  2 forward    Id 486999240 " fill="rgb(255,89,0)" points="1112.84,2478.94 1098.75,2474.93 1095.34,2479.77 1110.13,2482.8 " />
<svg:polygon detid="486999244" count="1" value="84" id="2806026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  3 forward    Id 486999244 " fill="rgb(255,89,0)" points="1109.32,2484.16 1094.55,2481.1 1092.08,2486.14 1107.36,2488.16 " />
<svg:polygon detid="487032260" count="1" value="84" id="2806027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 forward    Id 487032260 " fill="rgb(255,89,0)" points="1106.81,2489.57 1091.55,2487.5 1090.06,2492.67 1105.62,2493.68 " />
<svg:polygon detid="487032264" count="1" value="84" id="2806028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  2 forward    Id 487032264 " fill="rgb(255,89,0)" points="1105.35,2495.12 1089.79,2494.06 1089.29,2499.3 1104.95,2499.28 " />
<svg:polygon detid="487032268" count="1" value="84" id="2806029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  3 forward    Id 487032268 " fill="rgb(255,89,0)" points="1104.95,2500.72 1089.29,2500.7 1089.79,2505.94 1105.35,2504.88 " />
<svg:polygon detid="487032272" count="1" value="84" id="2806030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  0 backward    Id 487032272 " fill="rgb(255,89,0)" points="1105.62,2506.32 1090.06,2507.33 1091.55,2512.5 1106.81,2510.43 " />
<svg:polygon detid="486999492" count="1" value="84" id="2806031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 forward    Id 486999492 " fill="rgb(255,89,0)" points="1107.36,2511.84 1092.08,2513.86 1094.55,2518.9 1109.32,2515.84 " />
<svg:polygon detid="486999496" count="1" value="84" id="2806032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  2 forward    Id 486999496 " fill="rgb(255,89,0)" points="1110.13,2517.2 1095.34,2520.23 1098.75,2525.07 1112.84,2521.06 " />
<svg:polygon detid="486999500" count="1" value="84" id="2806033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  3 forward    Id 486999500 " fill="rgb(255,89,0)" points="1113.91,2522.36 1099.78,2526.33 1104.1,2530.92 1117.34,2526.01 " />
<svg:polygon detid="487032516" count="1" value="84" id="2806034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 forward    Id 487032516 " fill="rgb(255,89,0)" points="1118.64,2527.23 1105.36,2532.11 1110.52,2536.39 1122.74,2530.63 " />
<svg:polygon detid="487032520" count="1" value="84" id="2806035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  2 forward    Id 487032520 " fill="rgb(255,89,0)" points="1124.27,2531.76 1112.01,2537.48 1117.95,2541.39 1129,2534.87 " />
<svg:polygon detid="487032524" count="1" value="84" id="2806036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  3 forward    Id 487032524 " fill="rgb(255,89,0)" points="1130.73,2535.89 1119.63,2542.38 1126.28,2545.88 1136.02,2538.66 " />
<svg:polygon detid="487032528" count="1" value="84" id="2806037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  0 backward    Id 487032528 " fill="rgb(255,89,0)" points="1137.93,2539.56 1128.14,2546.75 1135.41,2549.79 1143.71,2541.98 " />
<svg:polygon detid="486999748" count="1" value="84" id="2806038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 forward    Id 486999748 " fill="rgb(255,89,0)" points="1145.79,2542.74 1137.43,2550.53 1145.23,2553.07 1151.99,2544.76 " />
<svg:polygon detid="486999752" count="1" value="84" id="2806039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  2 forward    Id 486999752 " fill="rgb(255,89,0)" points="1154.2,2545.39 1147.38,2553.68 1155.62,2555.68 1160.75,2546.98 " />
<svg:polygon detid="486999756" count="1" value="84" id="2806040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  3 forward    Id 486999756 " fill="rgb(255,89,0)" points="1163.07,2547.46 1157.86,2556.15 1166.43,2557.6 1169.88,2548.61 " />
<svg:polygon detid="487032772" count="1" value="84" id="2806041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 forward    Id 487032772 " fill="rgb(255,89,0)" points="1172.27,2548.93 1168.75,2557.91 1177.54,2558.79 1179.26,2549.63 " />
<svg:polygon detid="487032776" count="1" value="84" id="2806042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  2 forward    Id 487032776 " fill="rgb(255,89,0)" points="1181.7,2549.79 1179.91,2558.94 1188.81,2559.24 1188.77,2550.03 " />
<svg:polygon detid="487032780" count="1" value="84" id="2806043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  3 forward    Id 487032780 " fill="rgb(255,89,0)" points="1191.23,2550.03 1191.19,2559.24 1200.09,2558.94 1198.3,2549.79 " />
<svg:polygon detid="487032784" count="1" value="84" id="2806044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  0 backward    Id 487032784 " fill="rgb(255,89,0)" points="1200.74,2549.63 1202.46,2558.79 1211.25,2557.91 1207.73,2548.93 " />
<svg:polygon detid="487000004" count="1" value="84" id="2806045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 forward    Id 487000004 " fill="rgb(255,89,0)" points="1210.12,2548.61 1213.57,2557.6 1222.14,2556.15 1216.93,2547.46 " />
<svg:polygon detid="487000008" count="1" value="84" id="2806046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  2 forward    Id 487000008 " fill="rgb(255,89,0)" points="1219.25,2546.98 1224.38,2555.68 1232.62,2553.68 1225.8,2545.39 " />
<svg:polygon detid="487000012" count="1" value="84" id="2806047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  3 forward    Id 487000012 " fill="rgb(255,89,0)" points="1228.01,2544.76 1234.77,2553.07 1242.57,2550.53 1234.21,2542.74 " />
<svg:polygon detid="487033028" count="1" value="84" id="2806048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 forward    Id 487033028 " fill="rgb(255,89,0)" points="1236.29,2541.98 1244.59,2549.79 1251.86,2546.75 1242.07,2539.56 " />
<svg:polygon detid="487033032" count="1" value="84" id="2806049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  2 forward    Id 487033032 " fill="rgb(255,89,0)" points="1243.98,2538.66 1253.72,2545.88 1260.37,2542.38 1249.27,2535.89 " />
<svg:polygon detid="487033036" count="1" value="84" id="2806050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  3 forward    Id 487033036 " fill="rgb(255,89,0)" points="1251,2534.87 1262.05,2541.39 1267.99,2537.48 1255.73,2531.76 " />
<svg:polygon detid="487033040" count="1" value="84" id="2806051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  0 backward    Id 487033040 " fill="rgb(255,89,0)" points="1257.26,2530.63 1269.48,2536.39 1274.64,2532.11 1261.36,2527.23 " />
<svg:polygon detid="487000260" count="1" value="84" id="2806052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 forward    Id 487000260 " fill="rgb(255,89,0)" points="1262.66,2526.01 1275.9,2530.92 1280.22,2526.33 1266.09,2522.36 " />
<svg:polygon detid="487000264" count="1" value="84" id="2806053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  2 forward    Id 487000264 " fill="rgb(255,89,0)" points="1267.16,2521.06 1281.25,2525.07 1284.66,2520.23 1269.87,2517.2 " />
<svg:polygon detid="487000268" count="1" value="84" id="2806054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  3 forward    Id 487000268 " fill="rgb(255,89,0)" points="1270.68,2515.84 1285.45,2518.9 1287.92,2513.86 1272.64,2511.84 " />
<svg:polygon detid="487031248" count="1" value="84" id="2806055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  0 backward    Id 487031248 " fill="rgb(255,89,0)" points="1273.19,2510.43 1288.45,2512.5 1289.94,2507.33 1274.38,2506.32 " />
<svg:polygon detid="487031240" count="1" value="84" id="2806056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  2 forward    Id 487031240 " fill="rgb(255,89,0)" points="1274.65,2504.88 1290.21,2505.94 1290.71,2500.7 1275.05,2500.72 " />
<svg:polygon detid="487031268" count="1" value="84" id="2807001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 forward    Id 487031268 " fill="rgb(255,89,0)" points="1293.72,2501.79 1311.12,2502.21 1311.12,2497.79 1293.72,2498.21 " />
<svg:polygon detid="487031276" count="1" value="84" id="2807002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  3 forward    Id 487031276 " fill="rgb(255,89,0)" points="1293.64,2496.99 1311.04,2496.61 1310.46,2492.21 1293.17,2493.43 " />
<svg:polygon detid="487031280" count="1" value="84" id="2807003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  0 backward    Id 487031280 " fill="rgb(255,89,0)" points="1292.92,2492.22 1310.22,2491.03 1309.05,2486.68 1291.97,2488.69 " />
<svg:polygon detid="486998500" count="1" value="84" id="2807004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 forward    Id 486998500 " fill="rgb(255,89,0)" points="1291.57,2487.49 1308.65,2485.51 1306.9,2481.22 1290.15,2484.02 " />
<svg:polygon detid="486998504" count="1" value="84" id="2807005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  2 forward    Id 486998504 " fill="rgb(255,89,0)" points="1289.59,2482.85 1306.35,2480.08 1304.04,2475.89 1287.71,2479.45 " />
<svg:polygon detid="486998508" count="1" value="84" id="2807006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  3 forward    Id 486998508 " fill="rgb(255,89,0)" points="1286.99,2478.3 1303.34,2474.77 1300.47,2470.7 1284.67,2475 " />
<svg:polygon detid="486998512" count="1" value="84" id="2807007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  0 backward    Id 486998512 " fill="rgb(255,89,0)" points="1283.8,2473.89 1299.62,2469.62 1296.22,2465.69 1281.04,2470.71 " />
<svg:polygon detid="486998516" count="1" value="84" id="2807008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 forward  module  1 backward    Id 486998516 " fill="rgb(255,89,0)" points="1280.03,2469.64 1295.23,2464.65 1291.32,2460.89 1276.85,2466.6 " />
<svg:polygon detid="487031524" count="1" value="84" id="2807009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 forward    Id 487031524 " fill="rgb(255,89,0)" points="1275.7,2465.58 1290.19,2459.9 1285.79,2456.34 1272.13,2462.69 " />
<svg:polygon detid="487031528" count="1" value="84" id="2807010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  2 forward    Id 487031528 " fill="rgb(255,89,0)" points="1270.84,2461.73 1284.54,2455.4 1279.67,2452.05 1266.9,2459.02 " />
<svg:polygon detid="487031532" count="1" value="84" id="2807011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  3 forward    Id 487031532 " fill="rgb(255,89,0)" points="1265.49,2458.12 1278.3,2451.18 1273,2448.06 1261.19,2455.59 " />
<svg:polygon detid="487031536" count="1" value="84" id="2807012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  0 backward    Id 487031536 " fill="rgb(255,89,0)" points="1259.67,2454.77 1271.51,2447.25 1265.81,2444.39 1255.05,2452.44 " />
<svg:polygon detid="487031540" count="1" value="84" id="2807013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 backward  module  1 backward    Id 487031540 " fill="rgb(255,89,0)" points="1253.43,2451.69 1264.23,2443.65 1258.16,2441.06 1248.51,2449.59 " />
<svg:polygon detid="486998756" count="1" value="84" id="2807014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 forward    Id 486998756 " fill="rgb(255,89,0)" points="1246.79,2448.91 1256.48,2440.4 1250.09,2438.1 1241.6,2447.04 " />
<svg:polygon detid="486998760" count="1" value="84" id="2807015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  2 forward    Id 486998760 " fill="rgb(255,89,0)" points="1239.8,2446.45 1248.33,2437.52 1241.65,2435.52 1234.38,2444.83 " />
<svg:polygon detid="486998764" count="1" value="84" id="2807016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  3 forward    Id 486998764 " fill="rgb(255,89,0)" points="1232.5,2444.31 1239.81,2435.02 1232.89,2433.33 1226.89,2442.95 " />
<svg:polygon detid="486998768" count="1" value="84" id="2807017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  0 backward    Id 486998768 " fill="rgb(255,89,0)" points="1224.94,2442.52 1230.99,2432.92 1223.86,2431.56 1219.16,2441.42 " />
<svg:polygon detid="486998772" count="1" value="84" id="2807018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 2 forward  module  1 backward    Id 486998772 " fill="rgb(255,89,0)" points="1217.17,2441.09 1221.92,2431.23 1214.63,2430.21 1211.26,2440.25 " />
<svg:polygon detid="487031780" count="1" value="84" id="2807019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 forward    Id 487031780 " fill="rgb(255,89,0)" points="1209.23,2440.02 1212.65,2429.97 1205.25,2429.28 1203.22,2439.46 " />
<svg:polygon detid="487031784" count="1" value="84" id="2807020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  2 forward    Id 487031784 " fill="rgb(255,89,0)" points="1201.17,2439.31 1203.24,2429.14 1195.77,2428.8 1195.11,2439.03 " />
<svg:polygon detid="487031788" count="1" value="84" id="2807021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  3 forward    Id 487031788 " fill="rgb(255,89,0)" points="1193.04,2438.99 1193.75,2428.75 1186.25,2428.75 1186.96,2438.99 " />
<svg:polygon detid="487031792" count="1" value="84" id="2807022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  0 backward    Id 487031792 " fill="rgb(255,89,0)" points="1184.89,2439.03 1184.23,2428.8 1176.76,2429.14 1178.83,2439.31 " />
<svg:polygon detid="487031796" count="1" value="84" id="2807023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 backward  module  1 backward    Id 487031796 " fill="rgb(255,89,0)" points="1176.78,2439.46 1174.75,2429.28 1167.35,2429.97 1170.77,2440.02 " />
<svg:polygon detid="486999012" count="1" value="84" id="2807024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 forward    Id 486999012 " fill="rgb(255,89,0)" points="1168.74,2440.25 1165.37,2430.21 1158.08,2431.23 1162.83,2441.09 " />
<svg:polygon detid="486999016" count="1" value="84" id="2807025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  2 forward    Id 486999016 " fill="rgb(255,89,0)" points="1160.84,2441.42 1156.14,2431.56 1149.01,2432.92 1155.06,2442.52 " />
<svg:polygon detid="486999020" count="1" value="84" id="2807026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  3 forward    Id 486999020 " fill="rgb(255,89,0)" points="1153.11,2442.95 1147.11,2433.33 1140.19,2435.02 1147.5,2444.31 " />
<svg:polygon detid="486999024" count="1" value="84" id="2807027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  0 backward    Id 486999024 " fill="rgb(255,89,0)" points="1145.62,2444.83 1138.35,2435.52 1131.67,2437.52 1140.2,2446.45 " />
<svg:polygon detid="486999028" count="1" value="84" id="2807028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 3 forward  module  1 backward    Id 486999028 " fill="rgb(255,89,0)" points="1138.4,2447.04 1129.91,2438.1 1123.52,2440.4 1133.21,2448.91 " />
<svg:polygon detid="487032036" count="1" value="84" id="2807029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 forward    Id 487032036 " fill="rgb(255,89,0)" points="1131.49,2449.59 1121.84,2441.06 1115.77,2443.65 1126.57,2451.69 " />
<svg:polygon detid="487032040" count="1" value="84" id="2807030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  2 forward    Id 487032040 " fill="rgb(255,89,0)" points="1124.95,2452.44 1114.19,2444.39 1108.49,2447.25 1120.33,2454.77 " />
<svg:polygon detid="487032044" count="1" value="84" id="2807031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  3 forward    Id 487032044 " fill="rgb(255,89,0)" points="1118.81,2455.59 1107,2448.06 1101.7,2451.18 1114.51,2458.12 " />
<svg:polygon detid="487032048" count="1" value="84" id="2807032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  0 backward    Id 487032048 " fill="rgb(255,89,0)" points="1113.1,2459.02 1100.33,2452.05 1095.46,2455.4 1109.16,2461.73 " />
<svg:polygon detid="487032052" count="1" value="84" id="2807033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 backward  module  1 backward    Id 487032052 " fill="rgb(255,89,0)" points="1107.87,2462.69 1094.21,2456.34 1089.81,2459.9 1104.3,2465.58 " />
<svg:polygon detid="486999268" count="1" value="84" id="2807034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 forward    Id 486999268 " fill="rgb(255,89,0)" points="1103.15,2466.6 1088.68,2460.89 1084.77,2464.65 1099.97,2469.64 " />
<svg:polygon detid="486999272" count="1" value="84" id="2807035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  2 forward    Id 486999272 " fill="rgb(255,89,0)" points="1098.96,2470.71 1083.78,2465.69 1080.38,2469.62 1096.2,2473.89 " />
<svg:polygon detid="486999276" count="1" value="84" id="2807036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  3 forward    Id 486999276 " fill="rgb(255,89,0)" points="1095.33,2475 1079.53,2470.7 1076.66,2474.77 1093.01,2478.3 " />
<svg:polygon detid="486999280" count="1" value="84" id="2807037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  0 backward    Id 486999280 " fill="rgb(255,89,0)" points="1092.29,2479.45 1075.96,2475.89 1073.65,2480.08 1090.41,2482.85 " />
<svg:polygon detid="486999284" count="1" value="84" id="2807038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 4 forward  module  1 backward    Id 486999284 " fill="rgb(255,89,0)" points="1089.85,2484.02 1073.1,2481.22 1071.35,2485.51 1088.43,2487.49 " />
<svg:polygon detid="487032292" count="1" value="84" id="2807039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 forward    Id 487032292 " fill="rgb(255,89,0)" points="1088.03,2488.69 1070.95,2486.68 1069.78,2491.03 1087.08,2492.22 " />
<svg:polygon detid="487032296" count="1" value="84" id="2807040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  2 forward    Id 487032296 " fill="rgb(255,89,0)" points="1086.83,2493.43 1069.54,2492.21 1068.96,2496.61 1086.36,2496.99 " />
<svg:polygon detid="487032300" count="1" value="84" id="2807041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  3 forward    Id 487032300 " fill="rgb(255,89,0)" points="1086.28,2498.21 1068.88,2497.79 1068.88,2502.21 1086.28,2501.79 " />
<svg:polygon detid="487032304" count="1" value="84" id="2807042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  0 backward    Id 487032304 " fill="rgb(255,89,0)" points="1086.36,2503.01 1068.96,2503.39 1069.54,2507.79 1086.83,2506.57 " />
<svg:polygon detid="487032308" count="1" value="84" id="2807043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 backward  module  1 backward    Id 487032308 " fill="rgb(255,89,0)" points="1087.08,2507.78 1069.78,2508.97 1070.95,2513.32 1088.03,2511.31 " />
<svg:polygon detid="486999524" count="1" value="84" id="2807044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 forward    Id 486999524 " fill="rgb(255,89,0)" points="1088.43,2512.51 1071.35,2514.49 1073.1,2518.78 1089.85,2515.98 " />
<svg:polygon detid="486999528" count="1" value="84" id="2807045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  2 forward    Id 486999528 " fill="rgb(255,89,0)" points="1090.41,2517.15 1073.65,2519.92 1075.96,2524.11 1092.29,2520.55 " />
<svg:polygon detid="486999532" count="1" value="84" id="2807046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  3 forward    Id 486999532 " fill="rgb(255,89,0)" points="1093.01,2521.7 1076.66,2525.23 1079.53,2529.3 1095.33,2525 " />
<svg:polygon detid="486999536" count="1" value="84" id="2807047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  0 backward    Id 486999536 " fill="rgb(255,89,0)" points="1096.2,2526.11 1080.38,2530.38 1083.78,2534.31 1098.96,2529.29 " />
<svg:polygon detid="486999540" count="1" value="84" id="2807048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 5 forward  module  1 backward    Id 486999540 " fill="rgb(255,89,0)" points="1099.97,2530.36 1084.77,2535.35 1088.68,2539.11 1103.15,2533.4 " />
<svg:polygon detid="487032548" count="1" value="84" id="2807049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 forward    Id 487032548 " fill="rgb(255,89,0)" points="1104.3,2534.42 1089.81,2540.1 1094.21,2543.66 1107.87,2537.31 " />
<svg:polygon detid="487032552" count="1" value="84" id="2807050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  2 forward    Id 487032552 " fill="rgb(255,89,0)" points="1109.16,2538.27 1095.46,2544.6 1100.33,2547.95 1113.1,2540.98 " />
<svg:polygon detid="487032556" count="1" value="84" id="2807051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  3 forward    Id 487032556 " fill="rgb(255,89,0)" points="1114.51,2541.88 1101.7,2548.82 1107,2551.94 1118.81,2544.41 " />
<svg:polygon detid="487032560" count="1" value="84" id="2807052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  0 backward    Id 487032560 " fill="rgb(255,89,0)" points="1120.33,2545.23 1108.49,2552.75 1114.19,2555.61 1124.95,2547.56 " />
<svg:polygon detid="487032564" count="1" value="84" id="2807053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 backward  module  1 backward    Id 487032564 " fill="rgb(255,89,0)" points="1126.57,2548.31 1115.77,2556.35 1121.84,2558.94 1131.49,2550.41 " />
<svg:polygon detid="486999780" count="1" value="84" id="2807054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 forward    Id 486999780 " fill="rgb(255,89,0)" points="1133.21,2551.09 1123.52,2559.6 1129.91,2561.9 1138.4,2552.96 " />
<svg:polygon detid="486999784" count="1" value="84" id="2807055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  2 forward    Id 486999784 " fill="rgb(255,89,0)" points="1140.2,2553.55 1131.67,2562.48 1138.35,2564.48 1145.62,2555.17 " />
<svg:polygon detid="486999788" count="1" value="84" id="2807056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  3 forward    Id 486999788 " fill="rgb(255,89,0)" points="1147.5,2555.69 1140.19,2564.98 1147.11,2566.67 1153.11,2557.05 " />
<svg:polygon detid="486999792" count="1" value="84" id="2807057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  0 backward    Id 486999792 " fill="rgb(255,89,0)" points="1155.06,2557.48 1149.01,2567.08 1156.14,2568.44 1160.84,2558.58 " />
<svg:polygon detid="486999796" count="1" value="84" id="2807058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 6 forward  module  1 backward    Id 486999796 " fill="rgb(255,89,0)" points="1162.83,2558.91 1158.08,2568.77 1165.37,2569.79 1168.74,2559.75 " />
<svg:polygon detid="487032804" count="1" value="84" id="2807059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 forward    Id 487032804 " fill="rgb(255,89,0)" points="1170.77,2559.98 1167.35,2570.03 1174.75,2570.72 1176.78,2560.54 " />
<svg:polygon detid="487032808" count="1" value="84" id="2807060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  2 forward    Id 487032808 " fill="rgb(255,89,0)" points="1178.83,2560.69 1176.76,2570.86 1184.23,2571.2 1184.89,2560.97 " />
<svg:polygon detid="487032812" count="1" value="84" id="2807061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  3 forward    Id 487032812 " fill="rgb(255,89,0)" points="1186.96,2561.01 1186.25,2571.25 1193.75,2571.25 1193.04,2561.01 " />
<svg:polygon detid="487032816" count="1" value="84" id="2807062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  0 backward    Id 487032816 " fill="rgb(255,89,0)" points="1195.11,2560.97 1195.77,2571.2 1203.24,2570.86 1201.17,2560.69 " />
<svg:polygon detid="487032820" count="1" value="84" id="2807063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 backward  module  1 backward    Id 487032820 " fill="rgb(255,89,0)" points="1203.22,2560.54 1205.25,2570.72 1212.65,2570.03 1209.23,2559.98 " />
<svg:polygon detid="487000036" count="1" value="84" id="2807064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 forward    Id 487000036 " fill="rgb(255,89,0)" points="1211.26,2559.75 1214.63,2569.79 1221.92,2568.77 1217.17,2558.91 " />
<svg:polygon detid="487000040" count="1" value="84" id="2807065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  2 forward    Id 487000040 " fill="rgb(255,89,0)" points="1219.16,2558.58 1223.86,2568.44 1230.99,2567.08 1224.94,2557.48 " />
<svg:polygon detid="487000044" count="1" value="84" id="2807066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  3 forward    Id 487000044 " fill="rgb(255,89,0)" points="1226.89,2557.05 1232.89,2566.67 1239.81,2564.98 1232.5,2555.69 " />
<svg:polygon detid="487000048" count="1" value="84" id="2807067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  0 backward    Id 487000048 " fill="rgb(255,89,0)" points="1234.38,2555.17 1241.65,2564.48 1248.33,2562.48 1239.8,2553.55 " />
<svg:polygon detid="487000052" count="1" value="84" id="2807068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 7 forward  module  1 backward    Id 487000052 " fill="rgb(255,89,0)" points="1241.6,2552.96 1250.09,2561.9 1256.48,2559.6 1246.79,2551.09 " />
<svg:polygon detid="487033060" count="1" value="84" id="2807069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 forward    Id 487033060 " fill="rgb(255,89,0)" points="1248.51,2550.41 1258.16,2558.94 1264.23,2556.35 1253.43,2548.31 " />
<svg:polygon detid="487033064" count="1" value="84" id="2807070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  2 forward    Id 487033064 " fill="rgb(255,89,0)" points="1255.05,2547.56 1265.81,2555.61 1271.51,2552.75 1259.67,2545.23 " />
<svg:polygon detid="487033068" count="1" value="84" id="2807071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  3 forward    Id 487033068 " fill="rgb(255,89,0)" points="1261.19,2544.41 1273,2551.94 1278.3,2548.82 1265.49,2541.88 " />
<svg:polygon detid="487033072" count="1" value="84" id="2807072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  0 backward    Id 487033072 " fill="rgb(255,89,0)" points="1266.9,2540.98 1279.67,2547.95 1284.54,2544.6 1270.84,2538.27 " />
<svg:polygon detid="487033076" count="1" value="84" id="2807073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 backward  module  1 backward    Id 487033076 " fill="rgb(255,89,0)" points="1272.13,2537.31 1285.79,2543.66 1290.19,2540.1 1275.7,2534.42 " />
<svg:polygon detid="487000292" count="1" value="84" id="2807074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 forward    Id 487000292 " fill="rgb(255,89,0)" points="1276.85,2533.4 1291.32,2539.11 1295.23,2535.35 1280.03,2530.36 " />
<svg:polygon detid="487000296" count="1" value="84" id="2807075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  2 forward    Id 487000296 " fill="rgb(255,89,0)" points="1281.04,2529.29 1296.22,2534.31 1299.62,2530.38 1283.8,2526.11 " />
<svg:polygon detid="487000300" count="1" value="84" id="2807076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  3 forward    Id 487000300 " fill="rgb(255,89,0)" points="1284.67,2525 1300.47,2529.3 1303.34,2525.23 1286.99,2521.7 " />
<svg:polygon detid="487000304" count="1" value="84" id="2807077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  0 backward    Id 487000304 " fill="rgb(255,89,0)" points="1287.71,2520.55 1304.04,2524.11 1306.35,2519.92 1289.59,2517.15 " />
<svg:polygon detid="487000308" count="1" value="84" id="2807078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 8 forward  module  1 backward    Id 487000308 " fill="rgb(255,89,0)" points="1290.15,2515.98 1306.9,2518.78 1308.65,2514.49 1291.57,2512.51 " />
<svg:polygon detid="487031284" count="1" value="84" id="2807079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  1 backward    Id 487031284 " fill="rgb(255,89,0)" points="1291.97,2511.31 1309.05,2513.32 1310.22,2508.97 1292.92,2507.78 " />
<svg:polygon detid="487031272" count="1" value="84" id="2807080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 7 ring 0 petal 1 backward  module  2 forward    Id 487031272 " fill="rgb(255,89,0)" points="1293.17,2506.57 1310.46,2507.79 1311.04,2503.39 1293.64,2503.01 " />
<svg:polygon detid="487096676" count="1" value="87" id="2903001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 forward    Id 487096676 " fill="rgb(255,83,0)" points="1236.01,2701.57 1245.41,2702.03 1245.41,2697.97 1236.01,2698.43 " />
<svg:polygon detid="487096680" count="1" value="87" id="2903002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  2 forward    Id 487096680 " fill="rgb(255,83,0)" points="1235.86,2697.32 1245.27,2696.91 1244.19,2692.9 1235.02,2694.21 " />
<svg:polygon detid="487063908" count="1" value="87" id="2903003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 forward    Id 487063908 " fill="rgb(255,83,0)" points="1234.58,2693.13 1243.76,2691.86 1241.63,2688 1232.93,2690.14 " />
<svg:polygon detid="487063912" count="1" value="87" id="2903004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  2 forward    Id 487063912 " fill="rgb(255,83,0)" points="1232.21,2689.12 1240.94,2687.01 1237.8,2683.39 1229.78,2686.31 " />
<svg:polygon detid="487096932" count="1" value="87" id="2903005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 forward    Id 487096932 " fill="rgb(255,83,0)" points="1228.8,2685.37 1236.86,2682.48 1232.8,2679.2 1225.65,2682.82 " />
<svg:polygon detid="487096936" count="1" value="87" id="2903006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  2 forward    Id 487096936 " fill="rgb(255,83,0)" points="1224.43,2681.98 1231.62,2678.39 1226.74,2675.52 1220.64,2679.75 " />
<svg:polygon detid="487096940" count="1" value="87" id="2903007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  3 forward    Id 487096940 " fill="rgb(255,83,0)" points="1219.21,2679.03 1225.36,2674.82 1219.78,2672.44 1214.88,2677.18 " />
<svg:polygon detid="487064164" count="1" value="87" id="2903008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 forward    Id 487064164 " fill="rgb(255,83,0)" points="1213.27,2676.6 1218.23,2671.88 1212.08,2670.04 1208.5,2675.17 " />
<svg:polygon detid="487064168" count="1" value="87" id="2903009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  2 forward    Id 487064168 " fill="rgb(255,83,0)" points="1206.76,2674.75 1210.4,2669.63 1203.84,2668.37 1201.67,2673.77 " />
<svg:polygon detid="487097188" count="1" value="87" id="2903010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 forward    Id 487097188 " fill="rgb(255,83,0)" points="1199.84,2673.52 1202.08,2668.13 1195.26,2667.49 1194.55,2673.02 " />
<svg:polygon detid="487097192" count="1" value="87" id="2903011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  2 forward    Id 487097192 " fill="rgb(255,83,0)" points="1192.68,2672.94 1193.45,2667.41 1186.55,2667.41 1187.32,2672.94 " />
<svg:polygon detid="487097196" count="1" value="87" id="2903012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  3 forward    Id 487097196 " fill="rgb(255,83,0)" points="1185.45,2673.02 1184.74,2667.49 1177.92,2668.13 1180.16,2673.52 " />
<svg:polygon detid="487064420" count="1" value="87" id="2903013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 forward    Id 487064420 " fill="rgb(255,83,0)" points="1178.33,2673.77 1176.16,2668.37 1169.6,2669.63 1173.24,2674.75 " />
<svg:polygon detid="487064424" count="1" value="87" id="2903014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  2 forward    Id 487064424 " fill="rgb(255,83,0)" points="1171.5,2675.17 1167.92,2670.04 1161.77,2671.88 1166.73,2676.6 " />
<svg:polygon detid="487097444" count="1" value="87" id="2903015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 forward    Id 487097444 " fill="rgb(255,83,0)" points="1165.12,2677.18 1160.22,2672.44 1154.64,2674.82 1160.79,2679.03 " />
<svg:polygon detid="487097448" count="1" value="87" id="2903016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  2 forward    Id 487097448 " fill="rgb(255,83,0)" points="1159.36,2679.75 1153.26,2675.52 1148.38,2678.39 1155.57,2681.98 " />
<svg:polygon detid="487097452" count="1" value="87" id="2903017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  3 forward    Id 487097452 " fill="rgb(255,83,0)" points="1154.35,2682.82 1147.2,2679.2 1143.14,2682.48 1151.2,2685.37 " />
<svg:polygon detid="487064676" count="1" value="87" id="2903018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 forward    Id 487064676 " fill="rgb(255,83,0)" points="1150.22,2686.31 1142.2,2683.39 1139.06,2687.01 1147.79,2689.12 " />
<svg:polygon detid="487064680" count="1" value="87" id="2903019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  2 forward    Id 487064680 " fill="rgb(255,83,0)" points="1147.07,2690.14 1138.37,2688 1136.24,2691.86 1145.42,2693.13 " />
<svg:polygon detid="487097700" count="1" value="87" id="2903020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 forward    Id 487097700 " fill="rgb(255,83,0)" points="1144.98,2694.21 1135.81,2692.9 1134.73,2696.91 1144.14,2697.32 " />
<svg:polygon detid="487097704" count="1" value="87" id="2903021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  2 forward    Id 487097704 " fill="rgb(255,83,0)" points="1143.99,2698.43 1134.59,2697.97 1134.59,2702.03 1143.99,2701.57 " />
<svg:polygon detid="487097708" count="1" value="87" id="2903022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  3 forward    Id 487097708 " fill="rgb(255,83,0)" points="1144.14,2702.68 1134.73,2703.09 1135.81,2707.1 1144.98,2705.79 " />
<svg:polygon detid="487064932" count="1" value="87" id="2903023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 forward    Id 487064932 " fill="rgb(255,83,0)" points="1145.42,2706.87 1136.24,2708.14 1138.37,2712 1147.07,2709.86 " />
<svg:polygon detid="487064936" count="1" value="87" id="2903024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  2 forward    Id 487064936 " fill="rgb(255,83,0)" points="1147.79,2710.88 1139.06,2712.99 1142.2,2716.61 1150.22,2713.69 " />
<svg:polygon detid="487097956" count="1" value="87" id="2903025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 forward    Id 487097956 " fill="rgb(255,83,0)" points="1151.2,2714.63 1143.14,2717.52 1147.2,2720.8 1154.35,2717.18 " />
<svg:polygon detid="487097960" count="1" value="87" id="2903026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  2 forward    Id 487097960 " fill="rgb(255,83,0)" points="1155.57,2718.02 1148.38,2721.61 1153.26,2724.48 1159.36,2720.25 " />
<svg:polygon detid="487097964" count="1" value="87" id="2903027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  3 forward    Id 487097964 " fill="rgb(255,83,0)" points="1160.79,2720.97 1154.64,2725.18 1160.22,2727.56 1165.12,2722.82 " />
<svg:polygon detid="487065188" count="1" value="87" id="2903028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 forward    Id 487065188 " fill="rgb(255,83,0)" points="1166.73,2723.4 1161.77,2728.12 1167.92,2729.96 1171.5,2724.83 " />
<svg:polygon detid="487065192" count="1" value="87" id="2903029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  2 forward    Id 487065192 " fill="rgb(255,83,0)" points="1173.24,2725.25 1169.6,2730.37 1176.16,2731.63 1178.33,2726.23 " />
<svg:polygon detid="487098212" count="1" value="87" id="2903030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 forward    Id 487098212 " fill="rgb(255,83,0)" points="1180.16,2726.48 1177.92,2731.87 1184.74,2732.51 1185.45,2726.98 " />
<svg:polygon detid="487098216" count="1" value="87" id="2903031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  2 forward    Id 487098216 " fill="rgb(255,83,0)" points="1187.32,2727.06 1186.55,2732.59 1193.45,2732.59 1192.68,2727.06 " />
<svg:polygon detid="487098220" count="1" value="87" id="2903032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  3 forward    Id 487098220 " fill="rgb(255,83,0)" points="1194.55,2726.98 1195.26,2732.51 1202.08,2731.87 1199.84,2726.48 " />
<svg:polygon detid="487065444" count="1" value="87" id="2903033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 forward    Id 487065444 " fill="rgb(255,83,0)" points="1201.67,2726.23 1203.84,2731.63 1210.4,2730.37 1206.76,2725.25 " />
<svg:polygon detid="487065448" count="1" value="87" id="2903034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  2 forward    Id 487065448 " fill="rgb(255,83,0)" points="1208.5,2724.83 1212.08,2729.96 1218.23,2728.12 1213.27,2723.4 " />
<svg:polygon detid="487098468" count="1" value="87" id="2903035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 forward    Id 487098468 " fill="rgb(255,83,0)" points="1214.88,2722.82 1219.78,2727.56 1225.36,2725.18 1219.21,2720.97 " />
<svg:polygon detid="487098472" count="1" value="87" id="2903036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  2 forward    Id 487098472 " fill="rgb(255,83,0)" points="1220.64,2720.25 1226.74,2724.48 1231.62,2721.61 1224.43,2718.02 " />
<svg:polygon detid="487098476" count="1" value="87" id="2903037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  3 forward    Id 487098476 " fill="rgb(255,83,0)" points="1225.65,2717.18 1232.8,2720.8 1236.86,2717.52 1228.8,2714.63 " />
<svg:polygon detid="487065700" count="1" value="87" id="2903038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 forward    Id 487065700 " fill="rgb(255,83,0)" points="1229.78,2713.69 1237.8,2716.61 1240.94,2712.99 1232.21,2710.88 " />
<svg:polygon detid="487065704" count="1" value="87" id="2903039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  2 forward    Id 487065704 " fill="rgb(255,83,0)" points="1232.93,2709.86 1241.63,2712 1243.76,2708.14 1234.58,2706.87 " />
<svg:polygon detid="487096684" count="1" value="87" id="2903040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  3 forward    Id 487096684 " fill="rgb(255,83,0)" points="1235.02,2705.79 1244.19,2707.1 1245.27,2703.09 1235.86,2702.68 " />
<svg:polygon detid="487096712" count="1" value="87" id="2904001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  2 forward    Id 487096712 " fill="rgb(255,83,0)" points="1248.82,2699.51 1258.62,2699.52 1258.28,2695.96 1248.55,2696.62 " />
<svg:polygon detid="487096716" count="1" value="87" id="2904002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  3 forward    Id 487096716 " fill="rgb(255,83,0)" points="1248.36,2695.64 1258.1,2695 1257.08,2691.48 1247.53,2692.78 " />
<svg:polygon detid="487063940" count="1" value="87" id="2904003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 forward    Id 487063940 " fill="rgb(255,83,0)" points="1247.16,2691.82 1256.72,2690.55 1255.04,2687.12 1245.8,2689.04 " />
<svg:polygon detid="487063944" count="1" value="87" id="2904004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  2 forward    Id 487063944 " fill="rgb(255,83,0)" points="1245.24,2688.11 1254.5,2686.22 1252.18,2682.92 1243.36,2685.43 " />
<svg:polygon detid="487063948" count="1" value="87" id="2904005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  3 forward    Id 487063948 " fill="rgb(255,83,0)" points="1242.63,2684.54 1251.47,2682.05 1248.54,2678.93 1240.25,2682.01 " />
<svg:polygon detid="487096964" count="1" value="87" id="2904006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 forward    Id 487096964 " fill="rgb(255,83,0)" points="1239.36,2681.17 1247.67,2678.12 1244.16,2675.21 1236.51,2678.81 " />
<svg:polygon detid="487096968" count="1" value="87" id="2904007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  2 forward    Id 487096968 " fill="rgb(255,83,0)" points="1235.47,2678.04 1243.14,2674.46 1239.1,2671.8 1232.19,2675.88 " />
<svg:polygon detid="487096972" count="1" value="87" id="2904008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  3 forward    Id 487096972 " fill="rgb(255,83,0)" points="1231,2675.18 1237.95,2671.12 1233.42,2668.74 1227.33,2673.26 " />
<svg:polygon detid="487096976" count="1" value="87" id="2904009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  0 backward    Id 487096976 " fill="rgb(255,83,0)" points="1226.02,2672.64 1232.15,2668.14 1227.2,2666.08 1222.01,2670.96 " />
<svg:polygon detid="487064196" count="1" value="87" id="2904010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 forward    Id 487064196 " fill="rgb(255,83,0)" points="1220.59,2670.44 1225.82,2665.57 1220.51,2663.84 1216.28,2669.04 " />
<svg:polygon detid="487064200" count="1" value="87" id="2904011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  2 forward    Id 487064200 " fill="rgb(255,83,0)" points="1214.77,2668.61 1219.04,2663.42 1213.43,2662.06 1210.22,2667.5 " />
<svg:polygon detid="487064204" count="1" value="87" id="2904012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  3 forward    Id 487064204 " fill="rgb(255,83,0)" points="1208.64,2667.18 1211.9,2661.74 1206.06,2660.75 1203.91,2666.38 " />
<svg:polygon detid="487097220" count="1" value="87" id="2904013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 forward    Id 487097220 " fill="rgb(255,83,0)" points="1202.27,2666.16 1204.48,2660.54 1198.49,2659.94 1197.42,2665.67 " />
<svg:polygon detid="487097224" count="1" value="87" id="2904014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  2 forward    Id 487097224 " fill="rgb(255,83,0)" points="1195.75,2665.56 1196.87,2659.83 1190.81,2659.63 1190.84,2665.4 " />
<svg:polygon detid="487097228" count="1" value="87" id="2904015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  3 forward    Id 487097228 " fill="rgb(255,83,0)" points="1189.16,2665.4 1189.19,2659.63 1183.13,2659.83 1184.25,2665.56 " />
<svg:polygon detid="487097232" count="1" value="87" id="2904016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  0 backward    Id 487097232 " fill="rgb(255,83,0)" points="1182.58,2665.67 1181.51,2659.94 1175.52,2660.54 1177.73,2666.16 " />
<svg:polygon detid="487064452" count="1" value="87" id="2904017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 forward    Id 487064452 " fill="rgb(255,83,0)" points="1176.09,2666.38 1173.94,2660.75 1168.1,2661.74 1171.36,2667.18 " />
<svg:polygon detid="487064456" count="1" value="87" id="2904018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  2 forward    Id 487064456 " fill="rgb(255,83,0)" points="1169.78,2667.5 1166.57,2662.06 1160.96,2663.42 1165.23,2668.61 " />
<svg:polygon detid="487064460" count="1" value="87" id="2904019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  3 forward    Id 487064460 " fill="rgb(255,83,0)" points="1163.72,2669.04 1159.49,2663.84 1154.18,2665.57 1159.41,2670.44 " />
<svg:polygon detid="487097476" count="1" value="87" id="2904020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 forward    Id 487097476 " fill="rgb(255,83,0)" points="1157.99,2670.96 1152.8,2666.08 1147.85,2668.14 1153.98,2672.64 " />
<svg:polygon detid="487097480" count="1" value="87" id="2904021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  2 forward    Id 487097480 " fill="rgb(255,83,0)" points="1152.67,2673.26 1146.58,2668.74 1142.05,2671.12 1149,2675.18 " />
<svg:polygon detid="487097484" count="1" value="87" id="2904022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  3 forward    Id 487097484 " fill="rgb(255,83,0)" points="1147.81,2675.88 1140.9,2671.8 1136.86,2674.46 1144.53,2678.04 " />
<svg:polygon detid="487097488" count="1" value="87" id="2904023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  0 backward    Id 487097488 " fill="rgb(255,83,0)" points="1143.49,2678.81 1135.84,2675.21 1132.33,2678.12 1140.64,2681.17 " />
<svg:polygon detid="487064708" count="1" value="87" id="2904024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 forward    Id 487064708 " fill="rgb(255,83,0)" points="1139.75,2682.01 1131.46,2678.93 1128.53,2682.05 1137.37,2684.54 " />
<svg:polygon detid="487064712" count="1" value="87" id="2904025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  2 forward    Id 487064712 " fill="rgb(255,83,0)" points="1136.64,2685.43 1127.82,2682.92 1125.5,2686.22 1134.76,2688.11 " />
<svg:polygon detid="487064716" count="1" value="87" id="2904026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  3 forward    Id 487064716 " fill="rgb(255,83,0)" points="1134.2,2689.04 1124.96,2687.12 1123.28,2690.55 1132.84,2691.82 " />
<svg:polygon detid="487097732" count="1" value="87" id="2904027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 forward    Id 487097732 " fill="rgb(255,83,0)" points="1132.47,2692.78 1122.92,2691.48 1121.9,2695 1131.64,2695.64 " />
<svg:polygon detid="487097736" count="1" value="87" id="2904028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  2 forward    Id 487097736 " fill="rgb(255,83,0)" points="1131.45,2696.62 1121.72,2695.96 1121.38,2699.52 1131.18,2699.51 " />
<svg:polygon detid="487097740" count="1" value="87" id="2904029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  3 forward    Id 487097740 " fill="rgb(255,83,0)" points="1131.18,2700.49 1121.38,2700.48 1121.72,2704.04 1131.45,2703.38 " />
<svg:polygon detid="487097744" count="1" value="87" id="2904030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  0 backward    Id 487097744 " fill="rgb(255,83,0)" points="1131.64,2704.36 1121.9,2705 1122.92,2708.52 1132.47,2707.22 " />
<svg:polygon detid="487064964" count="1" value="87" id="2904031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 forward    Id 487064964 " fill="rgb(255,83,0)" points="1132.84,2708.18 1123.28,2709.45 1124.96,2712.88 1134.2,2710.96 " />
<svg:polygon detid="487064968" count="1" value="87" id="2904032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  2 forward    Id 487064968 " fill="rgb(255,83,0)" points="1134.76,2711.89 1125.5,2713.78 1127.82,2717.08 1136.64,2714.57 " />
<svg:polygon detid="487064972" count="1" value="87" id="2904033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  3 forward    Id 487064972 " fill="rgb(255,83,0)" points="1137.37,2715.46 1128.53,2717.95 1131.46,2721.07 1139.75,2717.99 " />
<svg:polygon detid="487097988" count="1" value="87" id="2904034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 forward    Id 487097988 " fill="rgb(255,83,0)" points="1140.64,2718.83 1132.33,2721.88 1135.84,2724.79 1143.49,2721.19 " />
<svg:polygon detid="487097992" count="1" value="87" id="2904035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  2 forward    Id 487097992 " fill="rgb(255,83,0)" points="1144.53,2721.96 1136.86,2725.54 1140.9,2728.2 1147.81,2724.12 " />
<svg:polygon detid="487097996" count="1" value="87" id="2904036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  3 forward    Id 487097996 " fill="rgb(255,83,0)" points="1149,2724.82 1142.05,2728.88 1146.58,2731.26 1152.67,2726.74 " />
<svg:polygon detid="487098000" count="1" value="87" id="2904037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  0 backward    Id 487098000 " fill="rgb(255,83,0)" points="1153.98,2727.36 1147.85,2731.86 1152.8,2733.92 1157.99,2729.04 " />
<svg:polygon detid="487065220" count="1" value="87" id="2904038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 forward    Id 487065220 " fill="rgb(255,83,0)" points="1159.41,2729.56 1154.18,2734.43 1159.49,2736.16 1163.72,2730.96 " />
<svg:polygon detid="487065224" count="1" value="87" id="2904039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  2 forward    Id 487065224 " fill="rgb(255,83,0)" points="1165.23,2731.39 1160.96,2736.58 1166.57,2737.94 1169.78,2732.5 " />
<svg:polygon detid="487065228" count="1" value="87" id="2904040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  3 forward    Id 487065228 " fill="rgb(255,83,0)" points="1171.36,2732.82 1168.1,2738.26 1173.94,2739.25 1176.09,2733.62 " />
<svg:polygon detid="487098244" count="1" value="87" id="2904041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 forward    Id 487098244 " fill="rgb(255,83,0)" points="1177.73,2733.84 1175.52,2739.46 1181.51,2740.06 1182.58,2734.33 " />
<svg:polygon detid="487098248" count="1" value="87" id="2904042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  2 forward    Id 487098248 " fill="rgb(255,83,0)" points="1184.25,2734.44 1183.13,2740.17 1189.19,2740.37 1189.16,2734.6 " />
<svg:polygon detid="487098252" count="1" value="87" id="2904043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  3 forward    Id 487098252 " fill="rgb(255,83,0)" points="1190.84,2734.6 1190.81,2740.37 1196.87,2740.17 1195.75,2734.44 " />
<svg:polygon detid="487098256" count="1" value="87" id="2904044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  0 backward    Id 487098256 " fill="rgb(255,83,0)" points="1197.42,2734.33 1198.49,2740.06 1204.48,2739.46 1202.27,2733.84 " />
<svg:polygon detid="487065476" count="1" value="87" id="2904045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 forward    Id 487065476 " fill="rgb(255,83,0)" points="1203.91,2733.62 1206.06,2739.25 1211.9,2738.26 1208.64,2732.82 " />
<svg:polygon detid="487065480" count="1" value="87" id="2904046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  2 forward    Id 487065480 " fill="rgb(255,83,0)" points="1210.22,2732.5 1213.43,2737.94 1219.04,2736.58 1214.77,2731.39 " />
<svg:polygon detid="487065484" count="1" value="87" id="2904047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  3 forward    Id 487065484 " fill="rgb(255,83,0)" points="1216.28,2730.96 1220.51,2736.16 1225.82,2734.43 1220.59,2729.56 " />
<svg:polygon detid="487098500" count="1" value="87" id="2904048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 forward    Id 487098500 " fill="rgb(255,83,0)" points="1222.01,2729.04 1227.2,2733.92 1232.15,2731.86 1226.02,2727.36 " />
<svg:polygon detid="487098504" count="1" value="87" id="2904049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  2 forward    Id 487098504 " fill="rgb(255,83,0)" points="1227.33,2726.74 1233.42,2731.26 1237.95,2728.88 1231,2724.82 " />
<svg:polygon detid="487098508" count="1" value="87" id="2904050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  3 forward    Id 487098508 " fill="rgb(255,83,0)" points="1232.19,2724.12 1239.1,2728.2 1243.14,2725.54 1235.47,2721.96 " />
<svg:polygon detid="487098512" count="1" value="87" id="2904051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  0 backward    Id 487098512 " fill="rgb(255,83,0)" points="1236.51,2721.19 1244.16,2724.79 1247.67,2721.88 1239.36,2718.83 " />
<svg:polygon detid="487065732" count="1" value="87" id="2904052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 forward    Id 487065732 " fill="rgb(255,83,0)" points="1240.25,2717.99 1248.54,2721.07 1251.47,2717.95 1242.63,2715.46 " />
<svg:polygon detid="487065736" count="1" value="87" id="2904053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  2 forward    Id 487065736 " fill="rgb(255,83,0)" points="1243.36,2714.57 1252.18,2717.08 1254.5,2713.78 1245.24,2711.89 " />
<svg:polygon detid="487065740" count="1" value="87" id="2904054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  3 forward    Id 487065740 " fill="rgb(255,83,0)" points="1245.8,2710.96 1255.04,2712.88 1256.72,2709.45 1247.16,2708.18 " />
<svg:polygon detid="487096720" count="1" value="87" id="2904055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  0 backward    Id 487096720 " fill="rgb(255,83,0)" points="1247.53,2707.22 1257.08,2708.52 1258.1,2705 1248.36,2704.36 " />
<svg:polygon detid="487096708" count="1" value="87" id="2904056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 forward    Id 487096708 " fill="rgb(255,83,0)" points="1248.55,2703.38 1258.28,2704.04 1258.62,2700.48 1248.82,2700.49 " />
<svg:polygon detid="487096746" count="1" value="87" id="2905001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  2 forward    Id 487096746 " fill="rgb(255,83,0)" points="1272.31,2693.17 1259.92,2694.35 1260.56,2699.15 " />
<svg:polygon detid="487063974" count="1" value="87" id="2905002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 forward    Id 487063974 " fill="rgb(255,83,0)" points="1269.48,2685.68 1257.56,2687.98 1259.47,2692.67 " />
<svg:polygon detid="487063978" count="1" value="87" id="2905003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  2 forward    Id 487063978 " fill="rgb(255,83,0)" points="1264.7,2678.54 1253.53,2681.92 1256.66,2686.36 " />
<svg:polygon detid="487063982" count="1" value="87" id="2905004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  3 forward    Id 487063982 " fill="rgb(255,83,0)" points="1258.07,2671.93 1247.94,2676.29 1252.21,2680.4 " />
<svg:polygon detid="487096998" count="1" value="87" id="2905005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 forward    Id 487096998 " fill="rgb(255,83,0)" points="1249.77,2666.02 1240.92,2671.25 1246.23,2674.91 " />
<svg:polygon detid="487097002" count="1" value="87" id="2905006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  2 forward    Id 487097002 " fill="rgb(255,83,0)" points="1240,2660.93 1232.65,2666.92 1238.87,2670.05 " />
<svg:polygon detid="487064230" count="1" value="87" id="2905007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 forward    Id 487064230 " fill="rgb(255,83,0)" points="1228.99,2656.81 1223.32,2663.4 1230.3,2665.92 " />
<svg:polygon detid="487064234" count="1" value="87" id="2905008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  2 forward    Id 487064234 " fill="rgb(255,83,0)" points="1217.03,2653.76 1213.18,2660.79 1220.74,2662.63 " />
<svg:polygon detid="487064238" count="1" value="87" id="2905009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  3 forward    Id 487064238 " fill="rgb(255,83,0)" points="1204.4,2651.84 1202.47,2659.14 1210.43,2660.26 " />
<svg:polygon detid="487097254" count="1" value="87" id="2905010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 forward    Id 487097254 " fill="rgb(255,83,0)" points="1191.41,2651.11 1191.45,2658.49 1199.61,2658.87 " />
<svg:polygon detid="487097258" count="1" value="87" id="2905011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  2 forward    Id 487097258 " fill="rgb(255,83,0)" points="1178.39,2651.58 1180.39,2658.87 1188.55,2658.49 " />
<svg:polygon detid="487064486" count="1" value="87" id="2905012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 forward    Id 487064486 " fill="rgb(255,83,0)" points="1165.66,2653.24 1169.57,2660.26 1177.53,2659.14 " />
<svg:polygon detid="487064490" count="1" value="87" id="2905013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  2 forward    Id 487064490 " fill="rgb(255,83,0)" points="1153.53,2656.06 1159.26,2662.63 1166.82,2660.79 " />
<svg:polygon detid="487064494" count="1" value="87" id="2905014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  3 forward    Id 487064494 " fill="rgb(255,83,0)" points="1142.29,2659.96 1149.7,2665.92 1156.68,2663.4 " />
<svg:polygon detid="487097510" count="1" value="87" id="2905015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 forward    Id 487097510 " fill="rgb(255,83,0)" points="1132.23,2664.84 1141.13,2670.05 1147.35,2666.92 " />
<svg:polygon detid="487097514" count="1" value="87" id="2905016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  2 forward    Id 487097514 " fill="rgb(255,83,0)" points="1123.59,2670.59 1133.77,2674.91 1139.08,2671.25 " />
<svg:polygon detid="487064742" count="1" value="87" id="2905017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 forward    Id 487064742 " fill="rgb(255,83,0)" points="1116.59,2677.06 1127.79,2680.4 1132.06,2676.29 " />
<svg:polygon detid="487064746" count="1" value="87" id="2905018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  2 forward    Id 487064746 " fill="rgb(255,83,0)" points="1111.39,2684.1 1123.34,2686.36 1126.47,2681.92 " />
<svg:polygon detid="487064750" count="1" value="87" id="2905019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  3 forward    Id 487064750 " fill="rgb(255,83,0)" points="1108.13,2691.53 1120.53,2692.67 1122.44,2687.98 " />
<svg:polygon detid="487097766" count="1" value="87" id="2905020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 forward    Id 487097766 " fill="rgb(255,83,0)" points="1106.88,2699.17 1119.44,2699.15 1120.08,2694.35 " />
<svg:polygon detid="487097770" count="1" value="87" id="2905021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  2 forward    Id 487097770 " fill="rgb(255,83,0)" points="1107.69,2706.83 1120.08,2705.65 1119.44,2700.85 " />
<svg:polygon detid="487064998" count="1" value="87" id="2905022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 forward    Id 487064998 " fill="rgb(255,83,0)" points="1110.52,2714.32 1122.44,2712.02 1120.53,2707.33 " />
<svg:polygon detid="487065002" count="1" value="87" id="2905023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  2 forward    Id 487065002 " fill="rgb(255,83,0)" points="1115.3,2721.46 1126.47,2718.08 1123.34,2713.64 " />
<svg:polygon detid="487065006" count="1" value="87" id="2905024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  3 forward    Id 487065006 " fill="rgb(255,83,0)" points="1121.93,2728.07 1132.06,2723.71 1127.79,2719.6 " />
<svg:polygon detid="487098022" count="1" value="87" id="2905025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 forward    Id 487098022 " fill="rgb(255,83,0)" points="1130.23,2733.98 1139.08,2728.75 1133.77,2725.09 " />
<svg:polygon detid="487098026" count="1" value="87" id="2905026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  2 forward    Id 487098026 " fill="rgb(255,83,0)" points="1140,2739.07 1147.35,2733.08 1141.13,2729.95 " />
<svg:polygon detid="487065254" count="1" value="87" id="2905027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 forward    Id 487065254 " fill="rgb(255,83,0)" points="1151.01,2743.19 1156.68,2736.6 1149.7,2734.08 " />
<svg:polygon detid="487065258" count="1" value="87" id="2905028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  2 forward    Id 487065258 " fill="rgb(255,83,0)" points="1162.97,2746.24 1166.82,2739.21 1159.26,2737.37 " />
<svg:polygon detid="487065262" count="1" value="87" id="2905029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  3 forward    Id 487065262 " fill="rgb(255,83,0)" points="1175.6,2748.16 1177.53,2740.86 1169.57,2739.74 " />
<svg:polygon detid="487098278" count="1" value="87" id="2905030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 forward    Id 487098278 " fill="rgb(255,83,0)" points="1188.59,2748.89 1188.55,2741.51 1180.39,2741.13 " />
<svg:polygon detid="487098282" count="1" value="87" id="2905031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  2 forward    Id 487098282 " fill="rgb(255,83,0)" points="1201.61,2748.42 1199.61,2741.13 1191.45,2741.51 " />
<svg:polygon detid="487065510" count="1" value="87" id="2905032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 forward    Id 487065510 " fill="rgb(255,83,0)" points="1214.34,2746.76 1210.43,2739.74 1202.47,2740.86 " />
<svg:polygon detid="487065514" count="1" value="87" id="2905033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  2 forward    Id 487065514 " fill="rgb(255,83,0)" points="1226.47,2743.94 1220.74,2737.37 1213.18,2739.21 " />
<svg:polygon detid="487065518" count="1" value="87" id="2905034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  3 forward    Id 487065518 " fill="rgb(255,83,0)" points="1237.71,2740.04 1230.3,2734.08 1223.32,2736.6 " />
<svg:polygon detid="487098534" count="1" value="87" id="2905035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 forward    Id 487098534 " fill="rgb(255,83,0)" points="1247.77,2735.16 1238.87,2729.95 1232.65,2733.08 " />
<svg:polygon detid="487098538" count="1" value="87" id="2905036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  2 forward    Id 487098538 " fill="rgb(255,83,0)" points="1256.41,2729.41 1246.23,2725.09 1240.92,2728.75 " />
<svg:polygon detid="487065766" count="1" value="87" id="2905037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 forward    Id 487065766 " fill="rgb(255,83,0)" points="1263.41,2722.94 1252.21,2719.6 1247.94,2723.71 " />
<svg:polygon detid="487065770" count="1" value="87" id="2905038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  2 forward    Id 487065770 " fill="rgb(255,83,0)" points="1268.61,2715.9 1256.66,2713.64 1253.53,2718.08 " />
<svg:polygon detid="487065774" count="1" value="87" id="2905039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  3 forward    Id 487065774 " fill="rgb(255,83,0)" points="1271.87,2708.47 1259.47,2707.33 1257.56,2712.02 " />
<svg:polygon detid="487096742" count="1" value="87" id="2905040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 forward    Id 487096742 " fill="rgb(255,83,0)" points="1273.12,2700.83 1260.56,2700.85 1259.92,2705.65 " />
<svg:polygon detid="487096745" count="1" value="87" id="2905101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  2 forward   stereo Id 487096745 " fill="rgb(255,83,0)" points="1260.56,2699.15 1273.12,2699.17 1272.31,2693.17 " />
<svg:polygon detid="487063973" count="1" value="87" id="2905102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 forward   stereo Id 487063973 " fill="rgb(255,83,0)" points="1259.47,2692.67 1271.87,2691.53 1269.48,2685.68 " />
<svg:polygon detid="487063977" count="1" value="87" id="2905103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  2 forward   stereo Id 487063977 " fill="rgb(255,83,0)" points="1256.66,2686.36 1268.61,2684.1 1264.7,2678.54 " />
<svg:polygon detid="487063981" count="1" value="87" id="2905104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  3 forward   stereo Id 487063981 " fill="rgb(255,83,0)" points="1252.21,2680.4 1263.41,2677.06 1258.07,2671.93 " />
<svg:polygon detid="487096997" count="1" value="87" id="2905105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 forward   stereo Id 487096997 " fill="rgb(255,83,0)" points="1246.23,2674.91 1256.41,2670.59 1249.77,2666.02 " />
<svg:polygon detid="487097001" count="1" value="87" id="2905106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  2 forward   stereo Id 487097001 " fill="rgb(255,83,0)" points="1238.87,2670.05 1247.77,2664.84 1240,2660.93 " />
<svg:polygon detid="487064229" count="1" value="87" id="2905107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 forward   stereo Id 487064229 " fill="rgb(255,83,0)" points="1230.3,2665.92 1237.71,2659.96 1228.99,2656.81 " />
<svg:polygon detid="487064233" count="1" value="87" id="2905108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  2 forward   stereo Id 487064233 " fill="rgb(255,83,0)" points="1220.74,2662.63 1226.47,2656.06 1217.03,2653.76 " />
<svg:polygon detid="487064237" count="1" value="87" id="2905109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  3 forward   stereo Id 487064237 " fill="rgb(255,83,0)" points="1210.43,2660.26 1214.34,2653.24 1204.4,2651.84 " />
<svg:polygon detid="487097253" count="1" value="87" id="2905110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 forward   stereo Id 487097253 " fill="rgb(255,83,0)" points="1199.61,2658.87 1201.61,2651.58 1191.41,2651.11 " />
<svg:polygon detid="487097257" count="1" value="87" id="2905111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  2 forward   stereo Id 487097257 " fill="rgb(255,83,0)" points="1188.55,2658.49 1188.59,2651.11 1178.39,2651.58 " />
<svg:polygon detid="487064485" count="1" value="87" id="2905112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 forward   stereo Id 487064485 " fill="rgb(255,83,0)" points="1177.53,2659.14 1175.6,2651.84 1165.66,2653.24 " />
<svg:polygon detid="487064489" count="1" value="87" id="2905113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  2 forward   stereo Id 487064489 " fill="rgb(255,83,0)" points="1166.82,2660.79 1162.97,2653.76 1153.53,2656.06 " />
<svg:polygon detid="487064493" count="1" value="87" id="2905114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  3 forward   stereo Id 487064493 " fill="rgb(255,83,0)" points="1156.68,2663.4 1151.01,2656.81 1142.29,2659.96 " />
<svg:polygon detid="487097509" count="1" value="87" id="2905115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 forward   stereo Id 487097509 " fill="rgb(255,83,0)" points="1147.35,2666.92 1140,2660.93 1132.23,2664.84 " />
<svg:polygon detid="487097513" count="1" value="87" id="2905116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  2 forward   stereo Id 487097513 " fill="rgb(255,83,0)" points="1139.08,2671.25 1130.23,2666.02 1123.59,2670.59 " />
<svg:polygon detid="487064741" count="1" value="87" id="2905117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 forward   stereo Id 487064741 " fill="rgb(255,83,0)" points="1132.06,2676.29 1121.93,2671.93 1116.59,2677.06 " />
<svg:polygon detid="487064745" count="1" value="87" id="2905118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  2 forward   stereo Id 487064745 " fill="rgb(255,83,0)" points="1126.47,2681.92 1115.3,2678.54 1111.39,2684.1 " />
<svg:polygon detid="487064749" count="1" value="87" id="2905119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  3 forward   stereo Id 487064749 " fill="rgb(255,83,0)" points="1122.44,2687.98 1110.52,2685.68 1108.13,2691.53 " />
<svg:polygon detid="487097765" count="1" value="87" id="2905120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 forward   stereo Id 487097765 " fill="rgb(255,83,0)" points="1120.08,2694.35 1107.69,2693.17 1106.88,2699.17 " />
<svg:polygon detid="487097769" count="1" value="87" id="2905121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  2 forward   stereo Id 487097769 " fill="rgb(255,83,0)" points="1119.44,2700.85 1106.88,2700.83 1107.69,2706.83 " />
<svg:polygon detid="487064997" count="1" value="87" id="2905122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 forward   stereo Id 487064997 " fill="rgb(255,83,0)" points="1120.53,2707.33 1108.13,2708.47 1110.52,2714.32 " />
<svg:polygon detid="487065001" count="1" value="87" id="2905123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  2 forward   stereo Id 487065001 " fill="rgb(255,83,0)" points="1123.34,2713.64 1111.39,2715.9 1115.3,2721.46 " />
<svg:polygon detid="487065005" count="1" value="87" id="2905124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  3 forward   stereo Id 487065005 " fill="rgb(255,83,0)" points="1127.79,2719.6 1116.59,2722.94 1121.93,2728.07 " />
<svg:polygon detid="487098021" count="1" value="87" id="2905125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 forward   stereo Id 487098021 " fill="rgb(255,83,0)" points="1133.77,2725.09 1123.59,2729.41 1130.23,2733.98 " />
<svg:polygon detid="487098025" count="1" value="87" id="2905126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  2 forward   stereo Id 487098025 " fill="rgb(255,83,0)" points="1141.13,2729.95 1132.23,2735.16 1140,2739.07 " />
<svg:polygon detid="487065253" count="1" value="87" id="2905127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 forward   stereo Id 487065253 " fill="rgb(255,83,0)" points="1149.7,2734.08 1142.29,2740.04 1151.01,2743.19 " />
<svg:polygon detid="487065257" count="1" value="87" id="2905128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  2 forward   stereo Id 487065257 " fill="rgb(255,83,0)" points="1159.26,2737.37 1153.53,2743.94 1162.97,2746.24 " />
<svg:polygon detid="487065261" count="1" value="87" id="2905129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  3 forward   stereo Id 487065261 " fill="rgb(255,83,0)" points="1169.57,2739.74 1165.66,2746.76 1175.6,2748.16 " />
<svg:polygon detid="487098277" count="1" value="87" id="2905130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 forward   stereo Id 487098277 " fill="rgb(255,83,0)" points="1180.39,2741.13 1178.39,2748.42 1188.59,2748.89 " />
<svg:polygon detid="487098281" count="1" value="87" id="2905131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  2 forward   stereo Id 487098281 " fill="rgb(255,83,0)" points="1191.45,2741.51 1191.41,2748.89 1201.61,2748.42 " />
<svg:polygon detid="487065509" count="1" value="87" id="2905132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 forward   stereo Id 487065509 " fill="rgb(255,83,0)" points="1202.47,2740.86 1204.4,2748.16 1214.34,2746.76 " />
<svg:polygon detid="487065513" count="1" value="87" id="2905133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  2 forward   stereo Id 487065513 " fill="rgb(255,83,0)" points="1213.18,2739.21 1217.03,2746.24 1226.47,2743.94 " />
<svg:polygon detid="487065517" count="1" value="87" id="2905134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  3 forward   stereo Id 487065517 " fill="rgb(255,83,0)" points="1223.32,2736.6 1228.99,2743.19 1237.71,2740.04 " />
<svg:polygon detid="487098533" count="1" value="87" id="2905135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 forward   stereo Id 487098533 " fill="rgb(255,83,0)" points="1232.65,2733.08 1240,2739.07 1247.77,2735.16 " />
<svg:polygon detid="487098537" count="1" value="87" id="2905136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  2 forward   stereo Id 487098537 " fill="rgb(255,83,0)" points="1240.92,2728.75 1249.77,2733.98 1256.41,2729.41 " />
<svg:polygon detid="487065765" count="1" value="87" id="2905137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 forward   stereo Id 487065765 " fill="rgb(255,83,0)" points="1247.94,2723.71 1258.07,2728.07 1263.41,2722.94 " />
<svg:polygon detid="487065769" count="1" value="87" id="2905138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  2 forward   stereo Id 487065769 " fill="rgb(255,83,0)" points="1253.53,2718.08 1264.7,2721.46 1268.61,2715.9 " />
<svg:polygon detid="487065773" count="1" value="87" id="2905139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  3 forward   stereo Id 487065773 " fill="rgb(255,83,0)" points="1257.56,2712.02 1269.48,2714.32 1271.87,2708.47 " />
<svg:polygon detid="487096741" count="1" value="87" id="2905140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 forward   stereo Id 487096741 " fill="rgb(255,83,0)" points="1259.92,2705.65 1272.31,2706.83 1273.12,2700.83 " />
<svg:polygon detid="487096772" count="1" value="87" id="2906001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 forward    Id 487096772 " fill="rgb(255,83,0)" points="1275.05,2699.28 1290.71,2699.3 1290.21,2694.06 1274.65,2695.12 " />
<svg:polygon detid="487096780" count="1" value="87" id="2906002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  3 forward    Id 487096780 " fill="rgb(255,83,0)" points="1274.38,2693.68 1289.94,2692.67 1288.45,2687.5 1273.19,2689.57 " />
<svg:polygon detid="487064004" count="1" value="87" id="2906003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 forward    Id 487064004 " fill="rgb(255,83,0)" points="1272.64,2688.16 1287.92,2686.14 1285.45,2681.1 1270.68,2684.16 " />
<svg:polygon detid="487064008" count="1" value="87" id="2906004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  2 forward    Id 487064008 " fill="rgb(255,83,0)" points="1269.87,2682.8 1284.66,2679.77 1281.25,2674.93 1267.16,2678.94 " />
<svg:polygon detid="487064012" count="1" value="87" id="2906005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  3 forward    Id 487064012 " fill="rgb(255,83,0)" points="1266.09,2677.64 1280.22,2673.67 1275.9,2669.08 1262.66,2673.99 " />
<svg:polygon detid="487097028" count="1" value="87" id="2906006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 forward    Id 487097028 " fill="rgb(255,83,0)" points="1261.36,2672.77 1274.64,2667.89 1269.48,2663.61 1257.26,2669.37 " />
<svg:polygon detid="487097032" count="1" value="87" id="2906007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  2 forward    Id 487097032 " fill="rgb(255,83,0)" points="1255.73,2668.24 1267.99,2662.52 1262.05,2658.61 1251,2665.13 " />
<svg:polygon detid="487097036" count="1" value="87" id="2906008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  3 forward    Id 487097036 " fill="rgb(255,83,0)" points="1249.27,2664.11 1260.37,2657.62 1253.72,2654.12 1243.98,2661.34 " />
<svg:polygon detid="487097040" count="1" value="87" id="2906009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  0 backward    Id 487097040 " fill="rgb(255,83,0)" points="1242.07,2660.44 1251.86,2653.25 1244.59,2650.21 1236.29,2658.02 " />
<svg:polygon detid="487064260" count="1" value="87" id="2906010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 forward    Id 487064260 " fill="rgb(255,83,0)" points="1234.21,2657.26 1242.57,2649.47 1234.77,2646.93 1228.01,2655.24 " />
<svg:polygon detid="487064264" count="1" value="87" id="2906011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  2 forward    Id 487064264 " fill="rgb(255,83,0)" points="1225.8,2654.61 1232.62,2646.32 1224.38,2644.32 1219.25,2653.02 " />
<svg:polygon detid="487064268" count="1" value="87" id="2906012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  3 forward    Id 487064268 " fill="rgb(255,83,0)" points="1216.93,2652.54 1222.14,2643.85 1213.57,2642.4 1210.12,2651.39 " />
<svg:polygon detid="487097284" count="1" value="87" id="2906013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 forward    Id 487097284 " fill="rgb(255,83,0)" points="1207.73,2651.07 1211.25,2642.09 1202.46,2641.21 1200.74,2650.37 " />
<svg:polygon detid="487097288" count="1" value="87" id="2906014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  2 forward    Id 487097288 " fill="rgb(255,83,0)" points="1198.3,2650.21 1200.09,2641.06 1191.19,2640.76 1191.23,2649.97 " />
<svg:polygon detid="487097292" count="1" value="87" id="2906015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  3 forward    Id 487097292 " fill="rgb(255,83,0)" points="1188.77,2649.97 1188.81,2640.76 1179.91,2641.06 1181.7,2650.21 " />
<svg:polygon detid="487097296" count="1" value="87" id="2906016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  0 backward    Id 487097296 " fill="rgb(255,83,0)" points="1179.26,2650.37 1177.54,2641.21 1168.75,2642.09 1172.27,2651.07 " />
<svg:polygon detid="487064516" count="1" value="87" id="2906017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 forward    Id 487064516 " fill="rgb(255,83,0)" points="1169.88,2651.39 1166.43,2642.4 1157.86,2643.85 1163.07,2652.54 " />
<svg:polygon detid="487064520" count="1" value="87" id="2906018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  2 forward    Id 487064520 " fill="rgb(255,83,0)" points="1160.75,2653.02 1155.62,2644.32 1147.38,2646.32 1154.2,2654.61 " />
<svg:polygon detid="487064524" count="1" value="87" id="2906019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  3 forward    Id 487064524 " fill="rgb(255,83,0)" points="1151.99,2655.24 1145.23,2646.93 1137.43,2649.47 1145.79,2657.26 " />
<svg:polygon detid="487097540" count="1" value="87" id="2906020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 forward    Id 487097540 " fill="rgb(255,83,0)" points="1143.71,2658.02 1135.41,2650.21 1128.14,2653.25 1137.93,2660.44 " />
<svg:polygon detid="487097544" count="1" value="87" id="2906021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  2 forward    Id 487097544 " fill="rgb(255,83,0)" points="1136.02,2661.34 1126.28,2654.12 1119.63,2657.62 1130.73,2664.11 " />
<svg:polygon detid="487097548" count="1" value="87" id="2906022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  3 forward    Id 487097548 " fill="rgb(255,83,0)" points="1129,2665.13 1117.95,2658.61 1112.01,2662.52 1124.27,2668.24 " />
<svg:polygon detid="487097552" count="1" value="87" id="2906023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  0 backward    Id 487097552 " fill="rgb(255,83,0)" points="1122.74,2669.37 1110.52,2663.61 1105.36,2667.89 1118.64,2672.77 " />
<svg:polygon detid="487064772" count="1" value="87" id="2906024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 forward    Id 487064772 " fill="rgb(255,83,0)" points="1117.34,2673.99 1104.1,2669.08 1099.78,2673.67 1113.91,2677.64 " />
<svg:polygon detid="487064776" count="1" value="87" id="2906025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  2 forward    Id 487064776 " fill="rgb(255,83,0)" points="1112.84,2678.94 1098.75,2674.93 1095.34,2679.77 1110.13,2682.8 " />
<svg:polygon detid="487064780" count="1" value="87" id="2906026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  3 forward    Id 487064780 " fill="rgb(255,83,0)" points="1109.32,2684.16 1094.55,2681.1 1092.08,2686.14 1107.36,2688.16 " />
<svg:polygon detid="487097796" count="1" value="87" id="2906027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 forward    Id 487097796 " fill="rgb(255,83,0)" points="1106.81,2689.57 1091.55,2687.5 1090.06,2692.67 1105.62,2693.68 " />
<svg:polygon detid="487097800" count="1" value="87" id="2906028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  2 forward    Id 487097800 " fill="rgb(255,83,0)" points="1105.35,2695.12 1089.79,2694.06 1089.29,2699.3 1104.95,2699.28 " />
<svg:polygon detid="487097804" count="1" value="87" id="2906029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  3 forward    Id 487097804 " fill="rgb(255,83,0)" points="1104.95,2700.72 1089.29,2700.7 1089.79,2705.94 1105.35,2704.88 " />
<svg:polygon detid="487097808" count="1" value="87" id="2906030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  0 backward    Id 487097808 " fill="rgb(255,83,0)" points="1105.62,2706.32 1090.06,2707.33 1091.55,2712.5 1106.81,2710.43 " />
<svg:polygon detid="487065028" count="1" value="87" id="2906031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 forward    Id 487065028 " fill="rgb(255,83,0)" points="1107.36,2711.84 1092.08,2713.86 1094.55,2718.9 1109.32,2715.84 " />
<svg:polygon detid="487065032" count="1" value="87" id="2906032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  2 forward    Id 487065032 " fill="rgb(255,83,0)" points="1110.13,2717.2 1095.34,2720.23 1098.75,2725.07 1112.84,2721.06 " />
<svg:polygon detid="487065036" count="1" value="87" id="2906033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  3 forward    Id 487065036 " fill="rgb(255,83,0)" points="1113.91,2722.36 1099.78,2726.33 1104.1,2730.92 1117.34,2726.01 " />
<svg:polygon detid="487098052" count="1" value="87" id="2906034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 forward    Id 487098052 " fill="rgb(255,83,0)" points="1118.64,2727.23 1105.36,2732.11 1110.52,2736.39 1122.74,2730.63 " />
<svg:polygon detid="487098056" count="1" value="87" id="2906035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  2 forward    Id 487098056 " fill="rgb(255,83,0)" points="1124.27,2731.76 1112.01,2737.48 1117.95,2741.39 1129,2734.87 " />
<svg:polygon detid="487098060" count="1" value="87" id="2906036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  3 forward    Id 487098060 " fill="rgb(255,83,0)" points="1130.73,2735.89 1119.63,2742.38 1126.28,2745.88 1136.02,2738.66 " />
<svg:polygon detid="487098064" count="1" value="87" id="2906037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  0 backward    Id 487098064 " fill="rgb(255,83,0)" points="1137.93,2739.56 1128.14,2746.75 1135.41,2749.79 1143.71,2741.98 " />
<svg:polygon detid="487065284" count="1" value="87" id="2906038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 forward    Id 487065284 " fill="rgb(255,83,0)" points="1145.79,2742.74 1137.43,2750.53 1145.23,2753.07 1151.99,2744.76 " />
<svg:polygon detid="487065288" count="1" value="87" id="2906039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  2 forward    Id 487065288 " fill="rgb(255,83,0)" points="1154.2,2745.39 1147.38,2753.68 1155.62,2755.68 1160.75,2746.98 " />
<svg:polygon detid="487065292" count="1" value="87" id="2906040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  3 forward    Id 487065292 " fill="rgb(255,83,0)" points="1163.07,2747.46 1157.86,2756.15 1166.43,2757.6 1169.88,2748.61 " />
<svg:polygon detid="487098308" count="1" value="87" id="2906041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 forward    Id 487098308 " fill="rgb(255,83,0)" points="1172.27,2748.93 1168.75,2757.91 1177.54,2758.79 1179.26,2749.63 " />
<svg:polygon detid="487098312" count="1" value="87" id="2906042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  2 forward    Id 487098312 " fill="rgb(255,83,0)" points="1181.7,2749.79 1179.91,2758.94 1188.81,2759.24 1188.77,2750.03 " />
<svg:polygon detid="487098316" count="1" value="87" id="2906043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  3 forward    Id 487098316 " fill="rgb(255,83,0)" points="1191.23,2750.03 1191.19,2759.24 1200.09,2758.94 1198.3,2749.79 " />
<svg:polygon detid="487098320" count="1" value="87" id="2906044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  0 backward    Id 487098320 " fill="rgb(255,83,0)" points="1200.74,2749.63 1202.46,2758.79 1211.25,2757.91 1207.73,2748.93 " />
<svg:polygon detid="487065540" count="1" value="87" id="2906045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 forward    Id 487065540 " fill="rgb(255,83,0)" points="1210.12,2748.61 1213.57,2757.6 1222.14,2756.15 1216.93,2747.46 " />
<svg:polygon detid="487065544" count="1" value="87" id="2906046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  2 forward    Id 487065544 " fill="rgb(255,83,0)" points="1219.25,2746.98 1224.38,2755.68 1232.62,2753.68 1225.8,2745.39 " />
<svg:polygon detid="487065548" count="1" value="87" id="2906047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  3 forward    Id 487065548 " fill="rgb(255,83,0)" points="1228.01,2744.76 1234.77,2753.07 1242.57,2750.53 1234.21,2742.74 " />
<svg:polygon detid="487098564" count="1" value="87" id="2906048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 forward    Id 487098564 " fill="rgb(255,83,0)" points="1236.29,2741.98 1244.59,2749.79 1251.86,2746.75 1242.07,2739.56 " />
<svg:polygon detid="487098568" count="1" value="87" id="2906049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  2 forward    Id 487098568 " fill="rgb(255,83,0)" points="1243.98,2738.66 1253.72,2745.88 1260.37,2742.38 1249.27,2735.89 " />
<svg:polygon detid="487098572" count="1" value="87" id="2906050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  3 forward    Id 487098572 " fill="rgb(255,83,0)" points="1251,2734.87 1262.05,2741.39 1267.99,2737.48 1255.73,2731.76 " />
<svg:polygon detid="487098576" count="1" value="87" id="2906051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  0 backward    Id 487098576 " fill="rgb(255,83,0)" points="1257.26,2730.63 1269.48,2736.39 1274.64,2732.11 1261.36,2727.23 " />
<svg:polygon detid="487065796" count="1" value="87" id="2906052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 forward    Id 487065796 " fill="rgb(255,83,0)" points="1262.66,2726.01 1275.9,2730.92 1280.22,2726.33 1266.09,2722.36 " />
<svg:polygon detid="487065800" count="1" value="87" id="2906053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  2 forward    Id 487065800 " fill="rgb(255,83,0)" points="1267.16,2721.06 1281.25,2725.07 1284.66,2720.23 1269.87,2717.2 " />
<svg:polygon detid="487065804" count="1" value="87" id="2906054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  3 forward    Id 487065804 " fill="rgb(255,83,0)" points="1270.68,2715.84 1285.45,2718.9 1287.92,2713.86 1272.64,2711.84 " />
<svg:polygon detid="487096784" count="1" value="87" id="2906055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  0 backward    Id 487096784 " fill="rgb(255,83,0)" points="1273.19,2710.43 1288.45,2712.5 1289.94,2707.33 1274.38,2706.32 " />
<svg:polygon detid="487096776" count="1" value="87" id="2906056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  2 forward    Id 487096776 " fill="rgb(255,83,0)" points="1274.65,2704.88 1290.21,2705.94 1290.71,2700.7 1275.05,2700.72 " />
<svg:polygon detid="487096804" count="1" value="87" id="2907001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 forward    Id 487096804 " fill="rgb(255,83,0)" points="1293.72,2701.79 1311.12,2702.21 1311.12,2697.79 1293.72,2698.21 " />
<svg:polygon detid="487096812" count="1" value="87" id="2907002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  3 forward    Id 487096812 " fill="rgb(255,83,0)" points="1293.64,2696.99 1311.04,2696.61 1310.46,2692.21 1293.17,2693.43 " />
<svg:polygon detid="487096816" count="1" value="87" id="2907003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  0 backward    Id 487096816 " fill="rgb(255,83,0)" points="1292.92,2692.22 1310.22,2691.03 1309.05,2686.68 1291.97,2688.69 " />
<svg:polygon detid="487064036" count="1" value="87" id="2907004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 forward    Id 487064036 " fill="rgb(255,83,0)" points="1291.57,2687.49 1308.65,2685.51 1306.9,2681.22 1290.15,2684.02 " />
<svg:polygon detid="487064040" count="1" value="87" id="2907005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  2 forward    Id 487064040 " fill="rgb(255,83,0)" points="1289.59,2682.85 1306.35,2680.08 1304.04,2675.89 1287.71,2679.45 " />
<svg:polygon detid="487064044" count="1" value="87" id="2907006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  3 forward    Id 487064044 " fill="rgb(255,83,0)" points="1286.99,2678.3 1303.34,2674.77 1300.47,2670.7 1284.67,2675 " />
<svg:polygon detid="487064048" count="1" value="87" id="2907007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  0 backward    Id 487064048 " fill="rgb(255,83,0)" points="1283.8,2673.89 1299.62,2669.62 1296.22,2665.69 1281.04,2670.71 " />
<svg:polygon detid="487064052" count="1" value="87" id="2907008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 forward  module  1 backward    Id 487064052 " fill="rgb(255,83,0)" points="1280.03,2669.64 1295.23,2664.65 1291.32,2660.89 1276.85,2666.6 " />
<svg:polygon detid="487097060" count="1" value="87" id="2907009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 forward    Id 487097060 " fill="rgb(255,83,0)" points="1275.7,2665.58 1290.19,2659.9 1285.79,2656.34 1272.13,2662.69 " />
<svg:polygon detid="487097064" count="1" value="87" id="2907010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  2 forward    Id 487097064 " fill="rgb(255,83,0)" points="1270.84,2661.73 1284.54,2655.4 1279.67,2652.05 1266.9,2659.02 " />
<svg:polygon detid="487097068" count="1" value="87" id="2907011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  3 forward    Id 487097068 " fill="rgb(255,83,0)" points="1265.49,2658.12 1278.3,2651.18 1273,2648.06 1261.19,2655.59 " />
<svg:polygon detid="487097072" count="1" value="87" id="2907012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  0 backward    Id 487097072 " fill="rgb(255,83,0)" points="1259.67,2654.77 1271.51,2647.25 1265.81,2644.39 1255.05,2652.44 " />
<svg:polygon detid="487097076" count="1" value="87" id="2907013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 backward  module  1 backward    Id 487097076 " fill="rgb(255,83,0)" points="1253.43,2651.69 1264.23,2643.65 1258.16,2641.06 1248.51,2649.59 " />
<svg:polygon detid="487064292" count="1" value="87" id="2907014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 forward    Id 487064292 " fill="rgb(255,83,0)" points="1246.79,2648.91 1256.48,2640.4 1250.09,2638.1 1241.6,2647.04 " />
<svg:polygon detid="487064296" count="1" value="87" id="2907015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  2 forward    Id 487064296 " fill="rgb(255,83,0)" points="1239.8,2646.45 1248.33,2637.52 1241.65,2635.52 1234.38,2644.83 " />
<svg:polygon detid="487064300" count="1" value="87" id="2907016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  3 forward    Id 487064300 " fill="rgb(255,83,0)" points="1232.5,2644.31 1239.81,2635.02 1232.89,2633.33 1226.89,2642.95 " />
<svg:polygon detid="487064304" count="1" value="87" id="2907017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  0 backward    Id 487064304 " fill="rgb(255,83,0)" points="1224.94,2642.52 1230.99,2632.92 1223.86,2631.56 1219.16,2641.42 " />
<svg:polygon detid="487064308" count="1" value="87" id="2907018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 2 forward  module  1 backward    Id 487064308 " fill="rgb(255,83,0)" points="1217.17,2641.09 1221.92,2631.23 1214.63,2630.21 1211.26,2640.25 " />
<svg:polygon detid="487097316" count="1" value="87" id="2907019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 forward    Id 487097316 " fill="rgb(255,83,0)" points="1209.23,2640.02 1212.65,2629.97 1205.25,2629.28 1203.22,2639.46 " />
<svg:polygon detid="487097320" count="1" value="87" id="2907020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  2 forward    Id 487097320 " fill="rgb(255,83,0)" points="1201.17,2639.31 1203.24,2629.14 1195.77,2628.8 1195.11,2639.03 " />
<svg:polygon detid="487097324" count="1" value="87" id="2907021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  3 forward    Id 487097324 " fill="rgb(255,83,0)" points="1193.04,2638.99 1193.75,2628.75 1186.25,2628.75 1186.96,2638.99 " />
<svg:polygon detid="487097328" count="1" value="87" id="2907022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  0 backward    Id 487097328 " fill="rgb(255,83,0)" points="1184.89,2639.03 1184.23,2628.8 1176.76,2629.14 1178.83,2639.31 " />
<svg:polygon detid="487097332" count="1" value="87" id="2907023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 backward  module  1 backward    Id 487097332 " fill="rgb(255,83,0)" points="1176.78,2639.46 1174.75,2629.28 1167.35,2629.97 1170.77,2640.02 " />
<svg:polygon detid="487064548" count="1" value="87" id="2907024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 forward    Id 487064548 " fill="rgb(255,83,0)" points="1168.74,2640.25 1165.37,2630.21 1158.08,2631.23 1162.83,2641.09 " />
<svg:polygon detid="487064552" count="1" value="87" id="2907025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  2 forward    Id 487064552 " fill="rgb(255,83,0)" points="1160.84,2641.42 1156.14,2631.56 1149.01,2632.92 1155.06,2642.52 " />
<svg:polygon detid="487064556" count="1" value="87" id="2907026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  3 forward    Id 487064556 " fill="rgb(255,83,0)" points="1153.11,2642.95 1147.11,2633.33 1140.19,2635.02 1147.5,2644.31 " />
<svg:polygon detid="487064560" count="1" value="87" id="2907027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  0 backward    Id 487064560 " fill="rgb(255,83,0)" points="1145.62,2644.83 1138.35,2635.52 1131.67,2637.52 1140.2,2646.45 " />
<svg:polygon detid="487064564" count="1" value="87" id="2907028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 3 forward  module  1 backward    Id 487064564 " fill="rgb(255,83,0)" points="1138.4,2647.04 1129.91,2638.1 1123.52,2640.4 1133.21,2648.91 " />
<svg:polygon detid="487097572" count="1" value="87" id="2907029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 forward    Id 487097572 " fill="rgb(255,83,0)" points="1131.49,2649.59 1121.84,2641.06 1115.77,2643.65 1126.57,2651.69 " />
<svg:polygon detid="487097576" count="1" value="87" id="2907030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  2 forward    Id 487097576 " fill="rgb(255,83,0)" points="1124.95,2652.44 1114.19,2644.39 1108.49,2647.25 1120.33,2654.77 " />
<svg:polygon detid="487097580" count="1" value="87" id="2907031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  3 forward    Id 487097580 " fill="rgb(255,83,0)" points="1118.81,2655.59 1107,2648.06 1101.7,2651.18 1114.51,2658.12 " />
<svg:polygon detid="487097584" count="1" value="87" id="2907032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  0 backward    Id 487097584 " fill="rgb(255,83,0)" points="1113.1,2659.02 1100.33,2652.05 1095.46,2655.4 1109.16,2661.73 " />
<svg:polygon detid="487097588" count="1" value="87" id="2907033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 backward  module  1 backward    Id 487097588 " fill="rgb(255,83,0)" points="1107.87,2662.69 1094.21,2656.34 1089.81,2659.9 1104.3,2665.58 " />
<svg:polygon detid="487064804" count="1" value="87" id="2907034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 forward    Id 487064804 " fill="rgb(255,83,0)" points="1103.15,2666.6 1088.68,2660.89 1084.77,2664.65 1099.97,2669.64 " />
<svg:polygon detid="487064808" count="1" value="87" id="2907035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  2 forward    Id 487064808 " fill="rgb(255,83,0)" points="1098.96,2670.71 1083.78,2665.69 1080.38,2669.62 1096.2,2673.89 " />
<svg:polygon detid="487064812" count="1" value="87" id="2907036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  3 forward    Id 487064812 " fill="rgb(255,83,0)" points="1095.33,2675 1079.53,2670.7 1076.66,2674.77 1093.01,2678.3 " />
<svg:polygon detid="487064816" count="1" value="87" id="2907037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  0 backward    Id 487064816 " fill="rgb(255,83,0)" points="1092.29,2679.45 1075.96,2675.89 1073.65,2680.08 1090.41,2682.85 " />
<svg:polygon detid="487064820" count="1" value="87" id="2907038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 4 forward  module  1 backward    Id 487064820 " fill="rgb(255,83,0)" points="1089.85,2684.02 1073.1,2681.22 1071.35,2685.51 1088.43,2687.49 " />
<svg:polygon detid="487097828" count="1" value="87" id="2907039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 forward    Id 487097828 " fill="rgb(255,83,0)" points="1088.03,2688.69 1070.95,2686.68 1069.78,2691.03 1087.08,2692.22 " />
<svg:polygon detid="487097832" count="1" value="87" id="2907040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  2 forward    Id 487097832 " fill="rgb(255,83,0)" points="1086.83,2693.43 1069.54,2692.21 1068.96,2696.61 1086.36,2696.99 " />
<svg:polygon detid="487097836" count="1" value="87" id="2907041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  3 forward    Id 487097836 " fill="rgb(255,83,0)" points="1086.28,2698.21 1068.88,2697.79 1068.88,2702.21 1086.28,2701.79 " />
<svg:polygon detid="487097840" count="1" value="87" id="2907042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  0 backward    Id 487097840 " fill="rgb(255,83,0)" points="1086.36,2703.01 1068.96,2703.39 1069.54,2707.79 1086.83,2706.57 " />
<svg:polygon detid="487097844" count="1" value="87" id="2907043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 backward  module  1 backward    Id 487097844 " fill="rgb(255,83,0)" points="1087.08,2707.78 1069.78,2708.97 1070.95,2713.32 1088.03,2711.31 " />
<svg:polygon detid="487065060" count="1" value="87" id="2907044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 forward    Id 487065060 " fill="rgb(255,83,0)" points="1088.43,2712.51 1071.35,2714.49 1073.1,2718.78 1089.85,2715.98 " />
<svg:polygon detid="487065064" count="1" value="87" id="2907045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  2 forward    Id 487065064 " fill="rgb(255,83,0)" points="1090.41,2717.15 1073.65,2719.92 1075.96,2724.11 1092.29,2720.55 " />
<svg:polygon detid="487065068" count="1" value="87" id="2907046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  3 forward    Id 487065068 " fill="rgb(255,83,0)" points="1093.01,2721.7 1076.66,2725.23 1079.53,2729.3 1095.33,2725 " />
<svg:polygon detid="487065072" count="1" value="87" id="2907047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  0 backward    Id 487065072 " fill="rgb(255,83,0)" points="1096.2,2726.11 1080.38,2730.38 1083.78,2734.31 1098.96,2729.29 " />
<svg:polygon detid="487065076" count="1" value="87" id="2907048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 5 forward  module  1 backward    Id 487065076 " fill="rgb(255,83,0)" points="1099.97,2730.36 1084.77,2735.35 1088.68,2739.11 1103.15,2733.4 " />
<svg:polygon detid="487098084" count="1" value="87" id="2907049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 forward    Id 487098084 " fill="rgb(255,83,0)" points="1104.3,2734.42 1089.81,2740.1 1094.21,2743.66 1107.87,2737.31 " />
<svg:polygon detid="487098088" count="1" value="87" id="2907050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  2 forward    Id 487098088 " fill="rgb(255,83,0)" points="1109.16,2738.27 1095.46,2744.6 1100.33,2747.95 1113.1,2740.98 " />
<svg:polygon detid="487098092" count="1" value="87" id="2907051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  3 forward    Id 487098092 " fill="rgb(255,83,0)" points="1114.51,2741.88 1101.7,2748.82 1107,2751.94 1118.81,2744.41 " />
<svg:polygon detid="487098096" count="1" value="87" id="2907052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  0 backward    Id 487098096 " fill="rgb(255,83,0)" points="1120.33,2745.23 1108.49,2752.75 1114.19,2755.61 1124.95,2747.56 " />
<svg:polygon detid="487098100" count="1" value="87" id="2907053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 backward  module  1 backward    Id 487098100 " fill="rgb(255,83,0)" points="1126.57,2748.31 1115.77,2756.35 1121.84,2758.94 1131.49,2750.41 " />
<svg:polygon detid="487065316" count="1" value="87" id="2907054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 forward    Id 487065316 " fill="rgb(255,83,0)" points="1133.21,2751.09 1123.52,2759.6 1129.91,2761.9 1138.4,2752.96 " />
<svg:polygon detid="487065320" count="1" value="87" id="2907055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  2 forward    Id 487065320 " fill="rgb(255,83,0)" points="1140.2,2753.55 1131.67,2762.48 1138.35,2764.48 1145.62,2755.17 " />
<svg:polygon detid="487065324" count="1" value="87" id="2907056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  3 forward    Id 487065324 " fill="rgb(255,83,0)" points="1147.5,2755.69 1140.19,2764.98 1147.11,2766.67 1153.11,2757.05 " />
<svg:polygon detid="487065328" count="1" value="87" id="2907057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  0 backward    Id 487065328 " fill="rgb(255,83,0)" points="1155.06,2757.48 1149.01,2767.08 1156.14,2768.44 1160.84,2758.58 " />
<svg:polygon detid="487065332" count="1" value="87" id="2907058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 6 forward  module  1 backward    Id 487065332 " fill="rgb(255,83,0)" points="1162.83,2758.91 1158.08,2768.77 1165.37,2769.79 1168.74,2759.75 " />
<svg:polygon detid="487098340" count="1" value="87" id="2907059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 forward    Id 487098340 " fill="rgb(255,83,0)" points="1170.77,2759.98 1167.35,2770.03 1174.75,2770.72 1176.78,2760.54 " />
<svg:polygon detid="487098344" count="1" value="87" id="2907060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  2 forward    Id 487098344 " fill="rgb(255,83,0)" points="1178.83,2760.69 1176.76,2770.86 1184.23,2771.2 1184.89,2760.97 " />
<svg:polygon detid="487098348" count="1" value="87" id="2907061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  3 forward    Id 487098348 " fill="rgb(255,83,0)" points="1186.96,2761.01 1186.25,2771.25 1193.75,2771.25 1193.04,2761.01 " />
<svg:polygon detid="487098352" count="1" value="87" id="2907062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  0 backward    Id 487098352 " fill="rgb(255,83,0)" points="1195.11,2760.97 1195.77,2771.2 1203.24,2770.86 1201.17,2760.69 " />
<svg:polygon detid="487098356" count="1" value="87" id="2907063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 backward  module  1 backward    Id 487098356 " fill="rgb(255,83,0)" points="1203.22,2760.54 1205.25,2770.72 1212.65,2770.03 1209.23,2759.98 " />
<svg:polygon detid="487065572" count="1" value="87" id="2907064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 forward    Id 487065572 " fill="rgb(255,83,0)" points="1211.26,2759.75 1214.63,2769.79 1221.92,2768.77 1217.17,2758.91 " />
<svg:polygon detid="487065576" count="1" value="87" id="2907065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  2 forward    Id 487065576 " fill="rgb(255,83,0)" points="1219.16,2758.58 1223.86,2768.44 1230.99,2767.08 1224.94,2757.48 " />
<svg:polygon detid="487065580" count="1" value="87" id="2907066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  3 forward    Id 487065580 " fill="rgb(255,83,0)" points="1226.89,2757.05 1232.89,2766.67 1239.81,2764.98 1232.5,2755.69 " />
<svg:polygon detid="487065584" count="1" value="87" id="2907067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  0 backward    Id 487065584 " fill="rgb(255,83,0)" points="1234.38,2755.17 1241.65,2764.48 1248.33,2762.48 1239.8,2753.55 " />
<svg:polygon detid="487065588" count="1" value="87" id="2907068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 7 forward  module  1 backward    Id 487065588 " fill="rgb(255,83,0)" points="1241.6,2752.96 1250.09,2761.9 1256.48,2759.6 1246.79,2751.09 " />
<svg:polygon detid="487098596" count="1" value="87" id="2907069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 forward    Id 487098596 " fill="rgb(255,83,0)" points="1248.51,2750.41 1258.16,2758.94 1264.23,2756.35 1253.43,2748.31 " />
<svg:polygon detid="487098600" count="1" value="87" id="2907070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  2 forward    Id 487098600 " fill="rgb(255,83,0)" points="1255.05,2747.56 1265.81,2755.61 1271.51,2752.75 1259.67,2745.23 " />
<svg:polygon detid="487098604" count="1" value="87" id="2907071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  3 forward    Id 487098604 " fill="rgb(255,83,0)" points="1261.19,2744.41 1273,2751.94 1278.3,2748.82 1265.49,2741.88 " />
<svg:polygon detid="487098608" count="1" value="87" id="2907072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  0 backward    Id 487098608 " fill="rgb(255,83,0)" points="1266.9,2740.98 1279.67,2747.95 1284.54,2744.6 1270.84,2738.27 " />
<svg:polygon detid="487098612" count="1" value="87" id="2907073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 backward  module  1 backward    Id 487098612 " fill="rgb(255,83,0)" points="1272.13,2737.31 1285.79,2743.66 1290.19,2740.1 1275.7,2734.42 " />
<svg:polygon detid="487065828" count="1" value="87" id="2907074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 forward    Id 487065828 " fill="rgb(255,83,0)" points="1276.85,2733.4 1291.32,2739.11 1295.23,2735.35 1280.03,2730.36 " />
<svg:polygon detid="487065832" count="1" value="87" id="2907075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  2 forward    Id 487065832 " fill="rgb(255,83,0)" points="1281.04,2729.29 1296.22,2734.31 1299.62,2730.38 1283.8,2726.11 " />
<svg:polygon detid="487065836" count="1" value="87" id="2907076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  3 forward    Id 487065836 " fill="rgb(255,83,0)" points="1284.67,2725 1300.47,2729.3 1303.34,2725.23 1286.99,2721.7 " />
<svg:polygon detid="487065840" count="1" value="87" id="2907077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  0 backward    Id 487065840 " fill="rgb(255,83,0)" points="1287.71,2720.55 1304.04,2724.11 1306.35,2719.92 1289.59,2717.15 " />
<svg:polygon detid="487065844" count="1" value="87" id="2907078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 8 forward  module  1 backward    Id 487065844 " fill="rgb(255,83,0)" points="1290.15,2715.98 1306.9,2718.78 1308.65,2714.49 1291.57,2712.51 " />
<svg:polygon detid="487096820" count="1" value="87" id="2907079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  1 backward    Id 487096820 " fill="rgb(255,83,0)" points="1291.97,2711.31 1309.05,2713.32 1310.22,2708.97 1292.92,2707.78 " />
<svg:polygon detid="487096808" count="1" value="87" id="2907080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 8 ring 0 petal 1 backward  module  2 forward    Id 487096808 " fill="rgb(255,83,0)" points="1293.17,2706.57 1310.46,2707.79 1311.04,2703.39 1293.64,2703.01 " />
<svg:polygon detid="487162248" count="1" value="90" id="3004001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  2 forward    Id 487162248 " fill="rgb(255,77,0)" points="1248.82,2899.51 1258.62,2899.52 1258.28,2895.96 1248.55,2896.62 " />
<svg:polygon detid="487162252" count="1" value="90" id="3004002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  3 forward    Id 487162252 " fill="rgb(255,77,0)" points="1248.36,2895.64 1258.1,2895 1257.08,2891.48 1247.53,2892.78 " />
<svg:polygon detid="487129476" count="1" value="90" id="3004003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  1 forward    Id 487129476 " fill="rgb(255,77,0)" points="1247.16,2891.82 1256.72,2890.55 1255.04,2887.12 1245.8,2889.04 " />
<svg:polygon detid="487129480" count="1" value="90" id="3004004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  2 forward    Id 487129480 " fill="rgb(255,77,0)" points="1245.24,2888.11 1254.5,2886.22 1252.18,2882.92 1243.36,2885.43 " />
<svg:polygon detid="487129484" count="1" value="90" id="3004005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  3 forward    Id 487129484 " fill="rgb(255,77,0)" points="1242.63,2884.54 1251.47,2882.05 1248.54,2878.93 1240.25,2882.01 " />
<svg:polygon detid="487162500" count="1" value="90" id="3004006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  1 forward    Id 487162500 " fill="rgb(255,77,0)" points="1239.36,2881.17 1247.67,2878.12 1244.16,2875.21 1236.51,2878.81 " />
<svg:polygon detid="487162504" count="1" value="90" id="3004007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  2 forward    Id 487162504 " fill="rgb(255,77,0)" points="1235.47,2878.04 1243.14,2874.46 1239.1,2871.8 1232.19,2875.88 " />
<svg:polygon detid="487162508" count="1" value="90" id="3004008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  3 forward    Id 487162508 " fill="rgb(255,77,0)" points="1231,2875.18 1237.95,2871.12 1233.42,2868.74 1227.33,2873.26 " />
<svg:polygon detid="487162512" count="1" value="90" id="3004009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  0 backward    Id 487162512 " fill="rgb(255,77,0)" points="1226.02,2872.64 1232.15,2868.14 1227.2,2866.08 1222.01,2870.96 " />
<svg:polygon detid="487129732" count="1" value="90" id="3004010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  1 forward    Id 487129732 " fill="rgb(255,77,0)" points="1220.59,2870.44 1225.82,2865.57 1220.51,2863.84 1216.28,2869.04 " />
<svg:polygon detid="487129736" count="1" value="90" id="3004011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  2 forward    Id 487129736 " fill="rgb(255,77,0)" points="1214.77,2868.61 1219.04,2863.42 1213.43,2862.06 1210.22,2867.5 " />
<svg:polygon detid="487129740" count="1" value="90" id="3004012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  3 forward    Id 487129740 " fill="rgb(255,77,0)" points="1208.64,2867.18 1211.9,2861.74 1206.06,2860.75 1203.91,2866.38 " />
<svg:polygon detid="487162756" count="1" value="90" id="3004013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  1 forward    Id 487162756 " fill="rgb(255,77,0)" points="1202.27,2866.16 1204.48,2860.54 1198.49,2859.94 1197.42,2865.67 " />
<svg:polygon detid="487162760" count="1" value="90" id="3004014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  2 forward    Id 487162760 " fill="rgb(255,77,0)" points="1195.75,2865.56 1196.87,2859.83 1190.81,2859.63 1190.84,2865.4 " />
<svg:polygon detid="487162764" count="1" value="90" id="3004015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  3 forward    Id 487162764 " fill="rgb(255,77,0)" points="1189.16,2865.4 1189.19,2859.63 1183.13,2859.83 1184.25,2865.56 " />
<svg:polygon detid="487162768" count="1" value="90" id="3004016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  0 backward    Id 487162768 " fill="rgb(255,77,0)" points="1182.58,2865.67 1181.51,2859.94 1175.52,2860.54 1177.73,2866.16 " />
<svg:polygon detid="487129988" count="1" value="90" id="3004017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  1 forward    Id 487129988 " fill="rgb(255,77,0)" points="1176.09,2866.38 1173.94,2860.75 1168.1,2861.74 1171.36,2867.18 " />
<svg:polygon detid="487129992" count="1" value="90" id="3004018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  2 forward    Id 487129992 " fill="rgb(255,77,0)" points="1169.78,2867.5 1166.57,2862.06 1160.96,2863.42 1165.23,2868.61 " />
<svg:polygon detid="487129996" count="1" value="90" id="3004019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  3 forward    Id 487129996 " fill="rgb(255,77,0)" points="1163.72,2869.04 1159.49,2863.84 1154.18,2865.57 1159.41,2870.44 " />
<svg:polygon detid="487163012" count="1" value="90" id="3004020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  1 forward    Id 487163012 " fill="rgb(255,77,0)" points="1157.99,2870.96 1152.8,2866.08 1147.85,2868.14 1153.98,2872.64 " />
<svg:polygon detid="487163016" count="1" value="90" id="3004021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  2 forward    Id 487163016 " fill="rgb(255,77,0)" points="1152.67,2873.26 1146.58,2868.74 1142.05,2871.12 1149,2875.18 " />
<svg:polygon detid="487163020" count="1" value="90" id="3004022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  3 forward    Id 487163020 " fill="rgb(255,77,0)" points="1147.81,2875.88 1140.9,2871.8 1136.86,2874.46 1144.53,2878.04 " />
<svg:polygon detid="487163024" count="1" value="90" id="3004023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  0 backward    Id 487163024 " fill="rgb(255,77,0)" points="1143.49,2878.81 1135.84,2875.21 1132.33,2878.12 1140.64,2881.17 " />
<svg:polygon detid="487130244" count="1" value="90" id="3004024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  1 forward    Id 487130244 " fill="rgb(255,77,0)" points="1139.75,2882.01 1131.46,2878.93 1128.53,2882.05 1137.37,2884.54 " />
<svg:polygon detid="487130248" count="1" value="90" id="3004025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  2 forward    Id 487130248 " fill="rgb(255,77,0)" points="1136.64,2885.43 1127.82,2882.92 1125.5,2886.22 1134.76,2888.11 " />
<svg:polygon detid="487130252" count="1" value="90" id="3004026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  3 forward    Id 487130252 " fill="rgb(255,77,0)" points="1134.2,2889.04 1124.96,2887.12 1123.28,2890.55 1132.84,2891.82 " />
<svg:polygon detid="487163268" count="1" value="90" id="3004027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  1 forward    Id 487163268 " fill="rgb(255,77,0)" points="1132.47,2892.78 1122.92,2891.48 1121.9,2895 1131.64,2895.64 " />
<svg:polygon detid="487163272" count="1" value="90" id="3004028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  2 forward    Id 487163272 " fill="rgb(255,77,0)" points="1131.45,2896.62 1121.72,2895.96 1121.38,2899.52 1131.18,2899.51 " />
<svg:polygon detid="487163276" count="1" value="90" id="3004029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  3 forward    Id 487163276 " fill="rgb(255,77,0)" points="1131.18,2900.49 1121.38,2900.48 1121.72,2904.04 1131.45,2903.38 " />
<svg:polygon detid="487163280" count="1" value="90" id="3004030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  0 backward    Id 487163280 " fill="rgb(255,77,0)" points="1131.64,2904.36 1121.9,2905 1122.92,2908.52 1132.47,2907.22 " />
<svg:polygon detid="487130500" count="1" value="90" id="3004031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  1 forward    Id 487130500 " fill="rgb(255,77,0)" points="1132.84,2908.18 1123.28,2909.45 1124.96,2912.88 1134.2,2910.96 " />
<svg:polygon detid="487130504" count="1" value="90" id="3004032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  2 forward    Id 487130504 " fill="rgb(255,77,0)" points="1134.76,2911.89 1125.5,2913.78 1127.82,2917.08 1136.64,2914.57 " />
<svg:polygon detid="487130508" count="1" value="90" id="3004033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  3 forward    Id 487130508 " fill="rgb(255,77,0)" points="1137.37,2915.46 1128.53,2917.95 1131.46,2921.07 1139.75,2917.99 " />
<svg:polygon detid="487163524" count="1" value="90" id="3004034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  1 forward    Id 487163524 " fill="rgb(255,77,0)" points="1140.64,2918.83 1132.33,2921.88 1135.84,2924.79 1143.49,2921.19 " />
<svg:polygon detid="487163528" count="1" value="90" id="3004035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  2 forward    Id 487163528 " fill="rgb(255,77,0)" points="1144.53,2921.96 1136.86,2925.54 1140.9,2928.2 1147.81,2924.12 " />
<svg:polygon detid="487163532" count="1" value="90" id="3004036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  3 forward    Id 487163532 " fill="rgb(255,77,0)" points="1149,2924.82 1142.05,2928.88 1146.58,2931.26 1152.67,2926.74 " />
<svg:polygon detid="487163536" count="1" value="90" id="3004037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  0 backward    Id 487163536 " fill="rgb(255,77,0)" points="1153.98,2927.36 1147.85,2931.86 1152.8,2933.92 1157.99,2929.04 " />
<svg:polygon detid="487130756" count="1" value="90" id="3004038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  1 forward    Id 487130756 " fill="rgb(255,77,0)" points="1159.41,2929.56 1154.18,2934.43 1159.49,2936.16 1163.72,2930.96 " />
<svg:polygon detid="487130760" count="1" value="90" id="3004039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  2 forward    Id 487130760 " fill="rgb(255,77,0)" points="1165.23,2931.39 1160.96,2936.58 1166.57,2937.94 1169.78,2932.5 " />
<svg:polygon detid="487130764" count="1" value="90" id="3004040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  3 forward    Id 487130764 " fill="rgb(255,77,0)" points="1171.36,2932.82 1168.1,2938.26 1173.94,2939.25 1176.09,2933.62 " />
<svg:polygon detid="487163780" count="1" value="90" id="3004041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  1 forward    Id 487163780 " fill="rgb(255,77,0)" points="1177.73,2933.84 1175.52,2939.46 1181.51,2940.06 1182.58,2934.33 " />
<svg:polygon detid="487163784" count="1" value="90" id="3004042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  2 forward    Id 487163784 " fill="rgb(255,77,0)" points="1184.25,2934.44 1183.13,2940.17 1189.19,2940.37 1189.16,2934.6 " />
<svg:polygon detid="487163788" count="1" value="90" id="3004043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  3 forward    Id 487163788 " fill="rgb(255,77,0)" points="1190.84,2934.6 1190.81,2940.37 1196.87,2940.17 1195.75,2934.44 " />
<svg:polygon detid="487163792" count="1" value="90" id="3004044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  0 backward    Id 487163792 " fill="rgb(255,77,0)" points="1197.42,2934.33 1198.49,2940.06 1204.48,2939.46 1202.27,2933.84 " />
<svg:polygon detid="487131012" count="1" value="90" id="3004045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  1 forward    Id 487131012 " fill="rgb(255,77,0)" points="1203.91,2933.62 1206.06,2939.25 1211.9,2938.26 1208.64,2932.82 " />
<svg:polygon detid="487131016" count="1" value="90" id="3004046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  2 forward    Id 487131016 " fill="rgb(255,77,0)" points="1210.22,2932.5 1213.43,2937.94 1219.04,2936.58 1214.77,2931.39 " />
<svg:polygon detid="487131020" count="1" value="90" id="3004047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  3 forward    Id 487131020 " fill="rgb(255,77,0)" points="1216.28,2930.96 1220.51,2936.16 1225.82,2934.43 1220.59,2929.56 " />
<svg:polygon detid="487164036" count="1" value="90" id="3004048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  1 forward    Id 487164036 " fill="rgb(255,77,0)" points="1222.01,2929.04 1227.2,2933.92 1232.15,2931.86 1226.02,2927.36 " />
<svg:polygon detid="487164040" count="1" value="90" id="3004049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  2 forward    Id 487164040 " fill="rgb(255,77,0)" points="1227.33,2926.74 1233.42,2931.26 1237.95,2928.88 1231,2924.82 " />
<svg:polygon detid="487164044" count="1" value="90" id="3004050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  3 forward    Id 487164044 " fill="rgb(255,77,0)" points="1232.19,2924.12 1239.1,2928.2 1243.14,2925.54 1235.47,2921.96 " />
<svg:polygon detid="487164048" count="1" value="90" id="3004051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  0 backward    Id 487164048 " fill="rgb(255,77,0)" points="1236.51,2921.19 1244.16,2924.79 1247.67,2921.88 1239.36,2918.83 " />
<svg:polygon detid="487131268" count="1" value="90" id="3004052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  1 forward    Id 487131268 " fill="rgb(255,77,0)" points="1240.25,2917.99 1248.54,2921.07 1251.47,2917.95 1242.63,2915.46 " />
<svg:polygon detid="487131272" count="1" value="90" id="3004053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  2 forward    Id 487131272 " fill="rgb(255,77,0)" points="1243.36,2914.57 1252.18,2917.08 1254.5,2913.78 1245.24,2911.89 " />
<svg:polygon detid="487131276" count="1" value="90" id="3004054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  3 forward    Id 487131276 " fill="rgb(255,77,0)" points="1245.8,2910.96 1255.04,2912.88 1256.72,2909.45 1247.16,2908.18 " />
<svg:polygon detid="487162256" count="1" value="90" id="3004055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  0 backward    Id 487162256 " fill="rgb(255,77,0)" points="1247.53,2907.22 1257.08,2908.52 1258.1,2905 1248.36,2904.36 " />
<svg:polygon detid="487162244" count="1" value="90" id="3004056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  1 forward    Id 487162244 " fill="rgb(255,77,0)" points="1248.55,2903.38 1258.28,2904.04 1258.62,2900.48 1248.82,2900.49 " />
<svg:polygon detid="487162282" count="1" value="90" id="3005001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  2 forward    Id 487162282 " fill="rgb(255,77,0)" points="1272.31,2893.17 1259.92,2894.35 1260.56,2899.15 " />
<svg:polygon detid="487129510" count="1" value="90" id="3005002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  1 forward    Id 487129510 " fill="rgb(255,77,0)" points="1269.48,2885.68 1257.56,2887.98 1259.47,2892.67 " />
<svg:polygon detid="487129514" count="1" value="90" id="3005003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  2 forward    Id 487129514 " fill="rgb(255,77,0)" points="1264.7,2878.54 1253.53,2881.92 1256.66,2886.36 " />
<svg:polygon detid="487129518" count="1" value="90" id="3005004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  3 forward    Id 487129518 " fill="rgb(255,77,0)" points="1258.07,2871.93 1247.94,2876.29 1252.21,2880.4 " />
<svg:polygon detid="487162534" count="1" value="90" id="3005005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  1 forward    Id 487162534 " fill="rgb(255,77,0)" points="1249.77,2866.02 1240.92,2871.25 1246.23,2874.91 " />
<svg:polygon detid="487162538" count="1" value="90" id="3005006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  2 forward    Id 487162538 " fill="rgb(255,77,0)" points="1240,2860.93 1232.65,2866.92 1238.87,2870.05 " />
<svg:polygon detid="487129766" count="1" value="90" id="3005007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  1 forward    Id 487129766 " fill="rgb(255,77,0)" points="1228.99,2856.81 1223.32,2863.4 1230.3,2865.92 " />
<svg:polygon detid="487129770" count="1" value="90" id="3005008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  2 forward    Id 487129770 " fill="rgb(255,77,0)" points="1217.03,2853.76 1213.18,2860.79 1220.74,2862.63 " />
<svg:polygon detid="487129774" count="1" value="90" id="3005009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  3 forward    Id 487129774 " fill="rgb(255,77,0)" points="1204.4,2851.84 1202.47,2859.14 1210.43,2860.26 " />
<svg:polygon detid="487162790" count="1" value="90" id="3005010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  1 forward    Id 487162790 " fill="rgb(255,77,0)" points="1191.41,2851.11 1191.45,2858.49 1199.61,2858.87 " />
<svg:polygon detid="487162794" count="1" value="90" id="3005011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  2 forward    Id 487162794 " fill="rgb(255,77,0)" points="1178.39,2851.58 1180.39,2858.87 1188.55,2858.49 " />
<svg:polygon detid="487130022" count="1" value="90" id="3005012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  1 forward    Id 487130022 " fill="rgb(255,77,0)" points="1165.66,2853.24 1169.57,2860.26 1177.53,2859.14 " />
<svg:polygon detid="487130026" count="1" value="90" id="3005013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  2 forward    Id 487130026 " fill="rgb(255,77,0)" points="1153.53,2856.06 1159.26,2862.63 1166.82,2860.79 " />
<svg:polygon detid="487130030" count="1" value="90" id="3005014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  3 forward    Id 487130030 " fill="rgb(255,77,0)" points="1142.29,2859.96 1149.7,2865.92 1156.68,2863.4 " />
<svg:polygon detid="487163046" count="1" value="90" id="3005015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  1 forward    Id 487163046 " fill="rgb(255,77,0)" points="1132.23,2864.84 1141.13,2870.05 1147.35,2866.92 " />
<svg:polygon detid="487163050" count="1" value="90" id="3005016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  2 forward    Id 487163050 " fill="rgb(255,77,0)" points="1123.59,2870.59 1133.77,2874.91 1139.08,2871.25 " />
<svg:polygon detid="487130278" count="1" value="90" id="3005017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  1 forward    Id 487130278 " fill="rgb(255,77,0)" points="1116.59,2877.06 1127.79,2880.4 1132.06,2876.29 " />
<svg:polygon detid="487130282" count="1" value="90" id="3005018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  2 forward    Id 487130282 " fill="rgb(255,77,0)" points="1111.39,2884.1 1123.34,2886.36 1126.47,2881.92 " />
<svg:polygon detid="487130286" count="1" value="90" id="3005019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  3 forward    Id 487130286 " fill="rgb(255,77,0)" points="1108.13,2891.53 1120.53,2892.67 1122.44,2887.98 " />
<svg:polygon detid="487163302" count="1" value="90" id="3005020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  1 forward    Id 487163302 " fill="rgb(255,77,0)" points="1106.88,2899.17 1119.44,2899.15 1120.08,2894.35 " />
<svg:polygon detid="487163306" count="1" value="90" id="3005021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  2 forward    Id 487163306 " fill="rgb(255,77,0)" points="1107.69,2906.83 1120.08,2905.65 1119.44,2900.85 " />
<svg:polygon detid="487130534" count="1" value="90" id="3005022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  1 forward    Id 487130534 " fill="rgb(255,77,0)" points="1110.52,2914.32 1122.44,2912.02 1120.53,2907.33 " />
<svg:polygon detid="487130538" count="1" value="90" id="3005023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  2 forward    Id 487130538 " fill="rgb(255,77,0)" points="1115.3,2921.46 1126.47,2918.08 1123.34,2913.64 " />
<svg:polygon detid="487130542" count="1" value="90" id="3005024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  3 forward    Id 487130542 " fill="rgb(255,77,0)" points="1121.93,2928.07 1132.06,2923.71 1127.79,2919.6 " />
<svg:polygon detid="487163558" count="1" value="90" id="3005025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  1 forward    Id 487163558 " fill="rgb(255,77,0)" points="1130.23,2933.98 1139.08,2928.75 1133.77,2925.09 " />
<svg:polygon detid="487163562" count="1" value="90" id="3005026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  2 forward    Id 487163562 " fill="rgb(255,77,0)" points="1140,2939.07 1147.35,2933.08 1141.13,2929.95 " />
<svg:polygon detid="487130790" count="1" value="90" id="3005027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  1 forward    Id 487130790 " fill="rgb(255,77,0)" points="1151.01,2943.19 1156.68,2936.6 1149.7,2934.08 " />
<svg:polygon detid="487130794" count="1" value="90" id="3005028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  2 forward    Id 487130794 " fill="rgb(255,77,0)" points="1162.97,2946.24 1166.82,2939.21 1159.26,2937.37 " />
<svg:polygon detid="487130798" count="1" value="90" id="3005029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  3 forward    Id 487130798 " fill="rgb(255,77,0)" points="1175.6,2948.16 1177.53,2940.86 1169.57,2939.74 " />
<svg:polygon detid="487163814" count="1" value="90" id="3005030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  1 forward    Id 487163814 " fill="rgb(255,77,0)" points="1188.59,2948.89 1188.55,2941.51 1180.39,2941.13 " />
<svg:polygon detid="487163818" count="1" value="90" id="3005031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  2 forward    Id 487163818 " fill="rgb(255,77,0)" points="1201.61,2948.42 1199.61,2941.13 1191.45,2941.51 " />
<svg:polygon detid="487131046" count="1" value="90" id="3005032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  1 forward    Id 487131046 " fill="rgb(255,77,0)" points="1214.34,2946.76 1210.43,2939.74 1202.47,2940.86 " />
<svg:polygon detid="487131050" count="1" value="90" id="3005033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  2 forward    Id 487131050 " fill="rgb(255,77,0)" points="1226.47,2943.94 1220.74,2937.37 1213.18,2939.21 " />
<svg:polygon detid="487131054" count="1" value="90" id="3005034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  3 forward    Id 487131054 " fill="rgb(255,77,0)" points="1237.71,2940.04 1230.3,2934.08 1223.32,2936.6 " />
<svg:polygon detid="487164070" count="1" value="90" id="3005035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  1 forward    Id 487164070 " fill="rgb(255,77,0)" points="1247.77,2935.16 1238.87,2929.95 1232.65,2933.08 " />
<svg:polygon detid="487164074" count="1" value="90" id="3005036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  2 forward    Id 487164074 " fill="rgb(255,77,0)" points="1256.41,2929.41 1246.23,2925.09 1240.92,2928.75 " />
<svg:polygon detid="487131302" count="1" value="90" id="3005037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  1 forward    Id 487131302 " fill="rgb(255,77,0)" points="1263.41,2922.94 1252.21,2919.6 1247.94,2923.71 " />
<svg:polygon detid="487131306" count="1" value="90" id="3005038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  2 forward    Id 487131306 " fill="rgb(255,77,0)" points="1268.61,2915.9 1256.66,2913.64 1253.53,2918.08 " />
<svg:polygon detid="487131310" count="1" value="90" id="3005039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  3 forward    Id 487131310 " fill="rgb(255,77,0)" points="1271.87,2908.47 1259.47,2907.33 1257.56,2912.02 " />
<svg:polygon detid="487162278" count="1" value="90" id="3005040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  1 forward    Id 487162278 " fill="rgb(255,77,0)" points="1273.12,2900.83 1260.56,2900.85 1259.92,2905.65 " />
<svg:polygon detid="487162281" count="1" value="90" id="3005101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  2 forward   stereo Id 487162281 " fill="rgb(255,77,0)" points="1260.56,2899.15 1273.12,2899.17 1272.31,2893.17 " />
<svg:polygon detid="487129509" count="1" value="90" id="3005102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  1 forward   stereo Id 487129509 " fill="rgb(255,77,0)" points="1259.47,2892.67 1271.87,2891.53 1269.48,2885.68 " />
<svg:polygon detid="487129513" count="1" value="90" id="3005103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  2 forward   stereo Id 487129513 " fill="rgb(255,77,0)" points="1256.66,2886.36 1268.61,2884.1 1264.7,2878.54 " />
<svg:polygon detid="487129517" count="1" value="90" id="3005104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  3 forward   stereo Id 487129517 " fill="rgb(255,77,0)" points="1252.21,2880.4 1263.41,2877.06 1258.07,2871.93 " />
<svg:polygon detid="487162533" count="1" value="90" id="3005105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  1 forward   stereo Id 487162533 " fill="rgb(255,77,0)" points="1246.23,2874.91 1256.41,2870.59 1249.77,2866.02 " />
<svg:polygon detid="487162537" count="1" value="90" id="3005106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  2 forward   stereo Id 487162537 " fill="rgb(255,77,0)" points="1238.87,2870.05 1247.77,2864.84 1240,2860.93 " />
<svg:polygon detid="487129765" count="1" value="90" id="3005107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  1 forward   stereo Id 487129765 " fill="rgb(255,77,0)" points="1230.3,2865.92 1237.71,2859.96 1228.99,2856.81 " />
<svg:polygon detid="487129769" count="1" value="90" id="3005108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  2 forward   stereo Id 487129769 " fill="rgb(255,77,0)" points="1220.74,2862.63 1226.47,2856.06 1217.03,2853.76 " />
<svg:polygon detid="487129773" count="1" value="90" id="3005109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  3 forward   stereo Id 487129773 " fill="rgb(255,77,0)" points="1210.43,2860.26 1214.34,2853.24 1204.4,2851.84 " />
<svg:polygon detid="487162789" count="1" value="90" id="3005110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  1 forward   stereo Id 487162789 " fill="rgb(255,77,0)" points="1199.61,2858.87 1201.61,2851.58 1191.41,2851.11 " />
<svg:polygon detid="487162793" count="1" value="90" id="3005111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  2 forward   stereo Id 487162793 " fill="rgb(255,77,0)" points="1188.55,2858.49 1188.59,2851.11 1178.39,2851.58 " />
<svg:polygon detid="487130021" count="1" value="90" id="3005112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  1 forward   stereo Id 487130021 " fill="rgb(255,77,0)" points="1177.53,2859.14 1175.6,2851.84 1165.66,2853.24 " />
<svg:polygon detid="487130025" count="1" value="90" id="3005113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  2 forward   stereo Id 487130025 " fill="rgb(255,77,0)" points="1166.82,2860.79 1162.97,2853.76 1153.53,2856.06 " />
<svg:polygon detid="487130029" count="1" value="90" id="3005114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  3 forward   stereo Id 487130029 " fill="rgb(255,77,0)" points="1156.68,2863.4 1151.01,2856.81 1142.29,2859.96 " />
<svg:polygon detid="487163045" count="1" value="90" id="3005115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  1 forward   stereo Id 487163045 " fill="rgb(255,77,0)" points="1147.35,2866.92 1140,2860.93 1132.23,2864.84 " />
<svg:polygon detid="487163049" count="1" value="90" id="3005116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  2 forward   stereo Id 487163049 " fill="rgb(255,77,0)" points="1139.08,2871.25 1130.23,2866.02 1123.59,2870.59 " />
<svg:polygon detid="487130277" count="1" value="90" id="3005117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  1 forward   stereo Id 487130277 " fill="rgb(255,77,0)" points="1132.06,2876.29 1121.93,2871.93 1116.59,2877.06 " />
<svg:polygon detid="487130281" count="1" value="90" id="3005118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  2 forward   stereo Id 487130281 " fill="rgb(255,77,0)" points="1126.47,2881.92 1115.3,2878.54 1111.39,2884.1 " />
<svg:polygon detid="487130285" count="1" value="90" id="3005119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  3 forward   stereo Id 487130285 " fill="rgb(255,77,0)" points="1122.44,2887.98 1110.52,2885.68 1108.13,2891.53 " />
<svg:polygon detid="487163301" count="1" value="90" id="3005120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  1 forward   stereo Id 487163301 " fill="rgb(255,77,0)" points="1120.08,2894.35 1107.69,2893.17 1106.88,2899.17 " />
<svg:polygon detid="487163305" count="1" value="90" id="3005121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  2 forward   stereo Id 487163305 " fill="rgb(255,77,0)" points="1119.44,2900.85 1106.88,2900.83 1107.69,2906.83 " />
<svg:polygon detid="487130533" count="1" value="90" id="3005122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  1 forward   stereo Id 487130533 " fill="rgb(255,77,0)" points="1120.53,2907.33 1108.13,2908.47 1110.52,2914.32 " />
<svg:polygon detid="487130537" count="1" value="90" id="3005123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  2 forward   stereo Id 487130537 " fill="rgb(255,77,0)" points="1123.34,2913.64 1111.39,2915.9 1115.3,2921.46 " />
<svg:polygon detid="487130541" count="1" value="90" id="3005124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  3 forward   stereo Id 487130541 " fill="rgb(255,77,0)" points="1127.79,2919.6 1116.59,2922.94 1121.93,2928.07 " />
<svg:polygon detid="487163557" count="1" value="90" id="3005125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  1 forward   stereo Id 487163557 " fill="rgb(255,77,0)" points="1133.77,2925.09 1123.59,2929.41 1130.23,2933.98 " />
<svg:polygon detid="487163561" count="1" value="90" id="3005126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  2 forward   stereo Id 487163561 " fill="rgb(255,77,0)" points="1141.13,2929.95 1132.23,2935.16 1140,2939.07 " />
<svg:polygon detid="487130789" count="1" value="90" id="3005127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  1 forward   stereo Id 487130789 " fill="rgb(255,77,0)" points="1149.7,2934.08 1142.29,2940.04 1151.01,2943.19 " />
<svg:polygon detid="487130793" count="1" value="90" id="3005128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  2 forward   stereo Id 487130793 " fill="rgb(255,77,0)" points="1159.26,2937.37 1153.53,2943.94 1162.97,2946.24 " />
<svg:polygon detid="487130797" count="1" value="90" id="3005129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  3 forward   stereo Id 487130797 " fill="rgb(255,77,0)" points="1169.57,2939.74 1165.66,2946.76 1175.6,2948.16 " />
<svg:polygon detid="487163813" count="1" value="90" id="3005130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  1 forward   stereo Id 487163813 " fill="rgb(255,77,0)" points="1180.39,2941.13 1178.39,2948.42 1188.59,2948.89 " />
<svg:polygon detid="487163817" count="1" value="90" id="3005131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  2 forward   stereo Id 487163817 " fill="rgb(255,77,0)" points="1191.45,2941.51 1191.41,2948.89 1201.61,2948.42 " />
<svg:polygon detid="487131045" count="1" value="90" id="3005132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  1 forward   stereo Id 487131045 " fill="rgb(255,77,0)" points="1202.47,2940.86 1204.4,2948.16 1214.34,2946.76 " />
<svg:polygon detid="487131049" count="1" value="90" id="3005133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  2 forward   stereo Id 487131049 " fill="rgb(255,77,0)" points="1213.18,2939.21 1217.03,2946.24 1226.47,2943.94 " />
<svg:polygon detid="487131053" count="1" value="90" id="3005134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  3 forward   stereo Id 487131053 " fill="rgb(255,77,0)" points="1223.32,2936.6 1228.99,2943.19 1237.71,2940.04 " />
<svg:polygon detid="487164069" count="1" value="90" id="3005135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  1 forward   stereo Id 487164069 " fill="rgb(255,77,0)" points="1232.65,2933.08 1240,2939.07 1247.77,2935.16 " />
<svg:polygon detid="487164073" count="1" value="90" id="3005136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  2 forward   stereo Id 487164073 " fill="rgb(255,77,0)" points="1240.92,2928.75 1249.77,2933.98 1256.41,2929.41 " />
<svg:polygon detid="487131301" count="1" value="90" id="3005137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  1 forward   stereo Id 487131301 " fill="rgb(255,77,0)" points="1247.94,2923.71 1258.07,2928.07 1263.41,2922.94 " />
<svg:polygon detid="487131305" count="1" value="90" id="3005138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  2 forward   stereo Id 487131305 " fill="rgb(255,77,0)" points="1253.53,2918.08 1264.7,2921.46 1268.61,2915.9 " />
<svg:polygon detid="487131309" count="1" value="90" id="3005139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  3 forward   stereo Id 487131309 " fill="rgb(255,77,0)" points="1257.56,2912.02 1269.48,2914.32 1271.87,2908.47 " />
<svg:polygon detid="487162277" count="1" value="90" id="3005140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  1 forward   stereo Id 487162277 " fill="rgb(255,77,0)" points="1259.92,2905.65 1272.31,2906.83 1273.12,2900.83 " />
<svg:polygon detid="487162308" count="1" value="90" id="3006001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  1 forward    Id 487162308 " fill="rgb(255,77,0)" points="1275.05,2899.28 1290.71,2899.3 1290.21,2894.06 1274.65,2895.12 " />
<svg:polygon detid="487162316" count="1" value="90" id="3006002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  3 forward    Id 487162316 " fill="rgb(255,77,0)" points="1274.38,2893.68 1289.94,2892.67 1288.45,2887.5 1273.19,2889.57 " />
<svg:polygon detid="487129540" count="1" value="90" id="3006003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  1 forward    Id 487129540 " fill="rgb(255,77,0)" points="1272.64,2888.16 1287.92,2886.14 1285.45,2881.1 1270.68,2884.16 " />
<svg:polygon detid="487129544" count="1" value="90" id="3006004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  2 forward    Id 487129544 " fill="rgb(255,77,0)" points="1269.87,2882.8 1284.66,2879.77 1281.25,2874.93 1267.16,2878.94 " />
<svg:polygon detid="487129548" count="1" value="90" id="3006005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  3 forward    Id 487129548 " fill="rgb(255,77,0)" points="1266.09,2877.64 1280.22,2873.67 1275.9,2869.08 1262.66,2873.99 " />
<svg:polygon detid="487162564" count="1" value="90" id="3006006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  1 forward    Id 487162564 " fill="rgb(255,77,0)" points="1261.36,2872.77 1274.64,2867.89 1269.48,2863.61 1257.26,2869.37 " />
<svg:polygon detid="487162568" count="1" value="90" id="3006007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  2 forward    Id 487162568 " fill="rgb(255,77,0)" points="1255.73,2868.24 1267.99,2862.52 1262.05,2858.61 1251,2865.13 " />
<svg:polygon detid="487162572" count="1" value="90" id="3006008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  3 forward    Id 487162572 " fill="rgb(255,77,0)" points="1249.27,2864.11 1260.37,2857.62 1253.72,2854.12 1243.98,2861.34 " />
<svg:polygon detid="487162576" count="1" value="90" id="3006009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  0 backward    Id 487162576 " fill="rgb(255,77,0)" points="1242.07,2860.44 1251.86,2853.25 1244.59,2850.21 1236.29,2858.02 " />
<svg:polygon detid="487129796" count="1" value="90" id="3006010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  1 forward    Id 487129796 " fill="rgb(255,77,0)" points="1234.21,2857.26 1242.57,2849.47 1234.77,2846.93 1228.01,2855.24 " />
<svg:polygon detid="487129800" count="1" value="90" id="3006011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  2 forward    Id 487129800 " fill="rgb(255,77,0)" points="1225.8,2854.61 1232.62,2846.32 1224.38,2844.32 1219.25,2853.02 " />
<svg:polygon detid="487129804" count="1" value="90" id="3006012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  3 forward    Id 487129804 " fill="rgb(255,77,0)" points="1216.93,2852.54 1222.14,2843.85 1213.57,2842.4 1210.12,2851.39 " />
<svg:polygon detid="487162820" count="1" value="90" id="3006013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  1 forward    Id 487162820 " fill="rgb(255,77,0)" points="1207.73,2851.07 1211.25,2842.09 1202.46,2841.21 1200.74,2850.37 " />
<svg:polygon detid="487162824" count="1" value="90" id="3006014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  2 forward    Id 487162824 " fill="rgb(255,77,0)" points="1198.3,2850.21 1200.09,2841.06 1191.19,2840.76 1191.23,2849.97 " />
<svg:polygon detid="487162828" count="1" value="90" id="3006015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  3 forward    Id 487162828 " fill="rgb(255,77,0)" points="1188.77,2849.97 1188.81,2840.76 1179.91,2841.06 1181.7,2850.21 " />
<svg:polygon detid="487162832" count="1" value="90" id="3006016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  0 backward    Id 487162832 " fill="rgb(255,77,0)" points="1179.26,2850.37 1177.54,2841.21 1168.75,2842.09 1172.27,2851.07 " />
<svg:polygon detid="487130052" count="1" value="90" id="3006017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  1 forward    Id 487130052 " fill="rgb(255,77,0)" points="1169.88,2851.39 1166.43,2842.4 1157.86,2843.85 1163.07,2852.54 " />
<svg:polygon detid="487130056" count="1" value="90" id="3006018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  2 forward    Id 487130056 " fill="rgb(255,77,0)" points="1160.75,2853.02 1155.62,2844.32 1147.38,2846.32 1154.2,2854.61 " />
<svg:polygon detid="487130060" count="1" value="90" id="3006019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  3 forward    Id 487130060 " fill="rgb(255,77,0)" points="1151.99,2855.24 1145.23,2846.93 1137.43,2849.47 1145.79,2857.26 " />
<svg:polygon detid="487163076" count="1" value="90" id="3006020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  1 forward    Id 487163076 " fill="rgb(255,77,0)" points="1143.71,2858.02 1135.41,2850.21 1128.14,2853.25 1137.93,2860.44 " />
<svg:polygon detid="487163080" count="1" value="90" id="3006021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  2 forward    Id 487163080 " fill="rgb(255,77,0)" points="1136.02,2861.34 1126.28,2854.12 1119.63,2857.62 1130.73,2864.11 " />
<svg:polygon detid="487163084" count="1" value="90" id="3006022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  3 forward    Id 487163084 " fill="rgb(255,77,0)" points="1129,2865.13 1117.95,2858.61 1112.01,2862.52 1124.27,2868.24 " />
<svg:polygon detid="487163088" count="1" value="90" id="3006023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  0 backward    Id 487163088 " fill="rgb(255,77,0)" points="1122.74,2869.37 1110.52,2863.61 1105.36,2867.89 1118.64,2872.77 " />
<svg:polygon detid="487130308" count="1" value="90" id="3006024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  1 forward    Id 487130308 " fill="rgb(255,77,0)" points="1117.34,2873.99 1104.1,2869.08 1099.78,2873.67 1113.91,2877.64 " />
<svg:polygon detid="487130312" count="1" value="90" id="3006025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  2 forward    Id 487130312 " fill="rgb(255,77,0)" points="1112.84,2878.94 1098.75,2874.93 1095.34,2879.77 1110.13,2882.8 " />
<svg:polygon detid="487130316" count="1" value="90" id="3006026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  3 forward    Id 487130316 " fill="rgb(255,77,0)" points="1109.32,2884.16 1094.55,2881.1 1092.08,2886.14 1107.36,2888.16 " />
<svg:polygon detid="487163332" count="1" value="90" id="3006027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  1 forward    Id 487163332 " fill="rgb(255,77,0)" points="1106.81,2889.57 1091.55,2887.5 1090.06,2892.67 1105.62,2893.68 " />
<svg:polygon detid="487163336" count="1" value="90" id="3006028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  2 forward    Id 487163336 " fill="rgb(255,77,0)" points="1105.35,2895.12 1089.79,2894.06 1089.29,2899.3 1104.95,2899.28 " />
<svg:polygon detid="487163340" count="1" value="90" id="3006029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  3 forward    Id 487163340 " fill="rgb(255,77,0)" points="1104.95,2900.72 1089.29,2900.7 1089.79,2905.94 1105.35,2904.88 " />
<svg:polygon detid="487163344" count="1" value="90" id="3006030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  0 backward    Id 487163344 " fill="rgb(255,77,0)" points="1105.62,2906.32 1090.06,2907.33 1091.55,2912.5 1106.81,2910.43 " />
<svg:polygon detid="487130564" count="1" value="90" id="3006031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  1 forward    Id 487130564 " fill="rgb(255,77,0)" points="1107.36,2911.84 1092.08,2913.86 1094.55,2918.9 1109.32,2915.84 " />
<svg:polygon detid="487130568" count="1" value="90" id="3006032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  2 forward    Id 487130568 " fill="rgb(255,77,0)" points="1110.13,2917.2 1095.34,2920.23 1098.75,2925.07 1112.84,2921.06 " />
<svg:polygon detid="487130572" count="1" value="90" id="3006033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  3 forward    Id 487130572 " fill="rgb(255,77,0)" points="1113.91,2922.36 1099.78,2926.33 1104.1,2930.92 1117.34,2926.01 " />
<svg:polygon detid="487163588" count="1" value="90" id="3006034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  1 forward    Id 487163588 " fill="rgb(255,77,0)" points="1118.64,2927.23 1105.36,2932.11 1110.52,2936.39 1122.74,2930.63 " />
<svg:polygon detid="487163592" count="1" value="90" id="3006035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  2 forward    Id 487163592 " fill="rgb(255,77,0)" points="1124.27,2931.76 1112.01,2937.48 1117.95,2941.39 1129,2934.87 " />
<svg:polygon detid="487163596" count="1" value="90" id="3006036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  3 forward    Id 487163596 " fill="rgb(255,77,0)" points="1130.73,2935.89 1119.63,2942.38 1126.28,2945.88 1136.02,2938.66 " />
<svg:polygon detid="487163600" count="1" value="90" id="3006037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  0 backward    Id 487163600 " fill="rgb(255,77,0)" points="1137.93,2939.56 1128.14,2946.75 1135.41,2949.79 1143.71,2941.98 " />
<svg:polygon detid="487130820" count="1" value="90" id="3006038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  1 forward    Id 487130820 " fill="rgb(255,77,0)" points="1145.79,2942.74 1137.43,2950.53 1145.23,2953.07 1151.99,2944.76 " />
<svg:polygon detid="487130824" count="1" value="90" id="3006039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  2 forward    Id 487130824 " fill="rgb(255,77,0)" points="1154.2,2945.39 1147.38,2953.68 1155.62,2955.68 1160.75,2946.98 " />
<svg:polygon detid="487130828" count="1" value="90" id="3006040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  3 forward    Id 487130828 " fill="rgb(255,77,0)" points="1163.07,2947.46 1157.86,2956.15 1166.43,2957.6 1169.88,2948.61 " />
<svg:polygon detid="487163844" count="1" value="90" id="3006041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  1 forward    Id 487163844 " fill="rgb(255,77,0)" points="1172.27,2948.93 1168.75,2957.91 1177.54,2958.79 1179.26,2949.63 " />
<svg:polygon detid="487163848" count="1" value="90" id="3006042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  2 forward    Id 487163848 " fill="rgb(255,77,0)" points="1181.7,2949.79 1179.91,2958.94 1188.81,2959.24 1188.77,2950.03 " />
<svg:polygon detid="487163852" count="1" value="90" id="3006043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  3 forward    Id 487163852 " fill="rgb(255,77,0)" points="1191.23,2950.03 1191.19,2959.24 1200.09,2958.94 1198.3,2949.79 " />
<svg:polygon detid="487163856" count="1" value="90" id="3006044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  0 backward    Id 487163856 " fill="rgb(255,77,0)" points="1200.74,2949.63 1202.46,2958.79 1211.25,2957.91 1207.73,2948.93 " />
<svg:polygon detid="487131076" count="1" value="90" id="3006045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  1 forward    Id 487131076 " fill="rgb(255,77,0)" points="1210.12,2948.61 1213.57,2957.6 1222.14,2956.15 1216.93,2947.46 " />
<svg:polygon detid="487131080" count="1" value="90" id="3006046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  2 forward    Id 487131080 " fill="rgb(255,77,0)" points="1219.25,2946.98 1224.38,2955.68 1232.62,2953.68 1225.8,2945.39 " />
<svg:polygon detid="487131084" count="1" value="90" id="3006047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  3 forward    Id 487131084 " fill="rgb(255,77,0)" points="1228.01,2944.76 1234.77,2953.07 1242.57,2950.53 1234.21,2942.74 " />
<svg:polygon detid="487164100" count="1" value="90" id="3006048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  1 forward    Id 487164100 " fill="rgb(255,77,0)" points="1236.29,2941.98 1244.59,2949.79 1251.86,2946.75 1242.07,2939.56 " />
<svg:polygon detid="487164104" count="1" value="90" id="3006049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  2 forward    Id 487164104 " fill="rgb(255,77,0)" points="1243.98,2938.66 1253.72,2945.88 1260.37,2942.38 1249.27,2935.89 " />
<svg:polygon detid="487164108" count="1" value="90" id="3006050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  3 forward    Id 487164108 " fill="rgb(255,77,0)" points="1251,2934.87 1262.05,2941.39 1267.99,2937.48 1255.73,2931.76 " />
<svg:polygon detid="487164112" count="1" value="90" id="3006051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  0 backward    Id 487164112 " fill="rgb(255,77,0)" points="1257.26,2930.63 1269.48,2936.39 1274.64,2932.11 1261.36,2927.23 " />
<svg:polygon detid="487131332" count="1" value="90" id="3006052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  1 forward    Id 487131332 " fill="rgb(255,77,0)" points="1262.66,2926.01 1275.9,2930.92 1280.22,2926.33 1266.09,2922.36 " />
<svg:polygon detid="487131336" count="1" value="90" id="3006053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  2 forward    Id 487131336 " fill="rgb(255,77,0)" points="1267.16,2921.06 1281.25,2925.07 1284.66,2920.23 1269.87,2917.2 " />
<svg:polygon detid="487131340" count="1" value="90" id="3006054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  3 forward    Id 487131340 " fill="rgb(255,77,0)" points="1270.68,2915.84 1285.45,2918.9 1287.92,2913.86 1272.64,2911.84 " />
<svg:polygon detid="487162320" count="1" value="90" id="3006055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  0 backward    Id 487162320 " fill="rgb(255,77,0)" points="1273.19,2910.43 1288.45,2912.5 1289.94,2907.33 1274.38,2906.32 " />
<svg:polygon detid="487162312" count="1" value="90" id="3006056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  2 forward    Id 487162312 " fill="rgb(255,77,0)" points="1274.65,2904.88 1290.21,2905.94 1290.71,2900.7 1275.05,2900.72 " />
<svg:polygon detid="487162340" count="1" value="90" id="3007001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  1 forward    Id 487162340 " fill="rgb(255,77,0)" points="1293.72,2901.79 1311.12,2902.21 1311.12,2897.79 1293.72,2898.21 " />
<svg:polygon detid="487162348" count="1" value="90" id="3007002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  3 forward    Id 487162348 " fill="rgb(255,77,0)" points="1293.64,2896.99 1311.04,2896.61 1310.46,2892.21 1293.17,2893.43 " />
<svg:polygon detid="487162352" count="1" value="90" id="3007003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  0 backward    Id 487162352 " fill="rgb(255,77,0)" points="1292.92,2892.22 1310.22,2891.03 1309.05,2886.68 1291.97,2888.69 " />
<svg:polygon detid="487129572" count="1" value="90" id="3007004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  1 forward    Id 487129572 " fill="rgb(255,77,0)" points="1291.57,2887.49 1308.65,2885.51 1306.9,2881.22 1290.15,2884.02 " />
<svg:polygon detid="487129576" count="1" value="90" id="3007005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  2 forward    Id 487129576 " fill="rgb(255,77,0)" points="1289.59,2882.85 1306.35,2880.08 1304.04,2875.89 1287.71,2879.45 " />
<svg:polygon detid="487129580" count="1" value="90" id="3007006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  3 forward    Id 487129580 " fill="rgb(255,77,0)" points="1286.99,2878.3 1303.34,2874.77 1300.47,2870.7 1284.67,2875 " />
<svg:polygon detid="487129584" count="1" value="90" id="3007007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  0 backward    Id 487129584 " fill="rgb(255,77,0)" points="1283.8,2873.89 1299.62,2869.62 1296.22,2865.69 1281.04,2870.71 " />
<svg:polygon detid="487129588" count="1" value="90" id="3007008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 forward  module  1 backward    Id 487129588 " fill="rgb(255,77,0)" points="1280.03,2869.64 1295.23,2864.65 1291.32,2860.89 1276.85,2866.6 " />
<svg:polygon detid="487162596" count="1" value="90" id="3007009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  1 forward    Id 487162596 " fill="rgb(255,77,0)" points="1275.7,2865.58 1290.19,2859.9 1285.79,2856.34 1272.13,2862.69 " />
<svg:polygon detid="487162600" count="1" value="90" id="3007010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  2 forward    Id 487162600 " fill="rgb(255,77,0)" points="1270.84,2861.73 1284.54,2855.4 1279.67,2852.05 1266.9,2859.02 " />
<svg:polygon detid="487162604" count="1" value="90" id="3007011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  3 forward    Id 487162604 " fill="rgb(255,77,0)" points="1265.49,2858.12 1278.3,2851.18 1273,2848.06 1261.19,2855.59 " />
<svg:polygon detid="487162608" count="1" value="90" id="3007012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  0 backward    Id 487162608 " fill="rgb(255,77,0)" points="1259.67,2854.77 1271.51,2847.25 1265.81,2844.39 1255.05,2852.44 " />
<svg:polygon detid="487162612" count="1" value="90" id="3007013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 backward  module  1 backward    Id 487162612 " fill="rgb(255,77,0)" points="1253.43,2851.69 1264.23,2843.65 1258.16,2841.06 1248.51,2849.59 " />
<svg:polygon detid="487129828" count="1" value="90" id="3007014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  1 forward    Id 487129828 " fill="rgb(255,77,0)" points="1246.79,2848.91 1256.48,2840.4 1250.09,2838.1 1241.6,2847.04 " />
<svg:polygon detid="487129832" count="1" value="90" id="3007015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  2 forward    Id 487129832 " fill="rgb(255,77,0)" points="1239.8,2846.45 1248.33,2837.52 1241.65,2835.52 1234.38,2844.83 " />
<svg:polygon detid="487129836" count="1" value="90" id="3007016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  3 forward    Id 487129836 " fill="rgb(255,77,0)" points="1232.5,2844.31 1239.81,2835.02 1232.89,2833.33 1226.89,2842.95 " />
<svg:polygon detid="487129840" count="1" value="90" id="3007017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  0 backward    Id 487129840 " fill="rgb(255,77,0)" points="1224.94,2842.52 1230.99,2832.92 1223.86,2831.56 1219.16,2841.42 " />
<svg:polygon detid="487129844" count="1" value="90" id="3007018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 2 forward  module  1 backward    Id 487129844 " fill="rgb(255,77,0)" points="1217.17,2841.09 1221.92,2831.23 1214.63,2830.21 1211.26,2840.25 " />
<svg:polygon detid="487162852" count="1" value="90" id="3007019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  1 forward    Id 487162852 " fill="rgb(255,77,0)" points="1209.23,2840.02 1212.65,2829.97 1205.25,2829.28 1203.22,2839.46 " />
<svg:polygon detid="487162856" count="1" value="90" id="3007020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  2 forward    Id 487162856 " fill="rgb(255,77,0)" points="1201.17,2839.31 1203.24,2829.14 1195.77,2828.8 1195.11,2839.03 " />
<svg:polygon detid="487162860" count="1" value="90" id="3007021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  3 forward    Id 487162860 " fill="rgb(255,77,0)" points="1193.04,2838.99 1193.75,2828.75 1186.25,2828.75 1186.96,2838.99 " />
<svg:polygon detid="487162864" count="1" value="90" id="3007022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  0 backward    Id 487162864 " fill="rgb(255,77,0)" points="1184.89,2839.03 1184.23,2828.8 1176.76,2829.14 1178.83,2839.31 " />
<svg:polygon detid="487162868" count="1" value="90" id="3007023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 backward  module  1 backward    Id 487162868 " fill="rgb(255,77,0)" points="1176.78,2839.46 1174.75,2829.28 1167.35,2829.97 1170.77,2840.02 " />
<svg:polygon detid="487130084" count="1" value="90" id="3007024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  1 forward    Id 487130084 " fill="rgb(255,77,0)" points="1168.74,2840.25 1165.37,2830.21 1158.08,2831.23 1162.83,2841.09 " />
<svg:polygon detid="487130088" count="1" value="90" id="3007025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  2 forward    Id 487130088 " fill="rgb(255,77,0)" points="1160.84,2841.42 1156.14,2831.56 1149.01,2832.92 1155.06,2842.52 " />
<svg:polygon detid="487130092" count="1" value="90" id="3007026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  3 forward    Id 487130092 " fill="rgb(255,77,0)" points="1153.11,2842.95 1147.11,2833.33 1140.19,2835.02 1147.5,2844.31 " />
<svg:polygon detid="487130096" count="1" value="90" id="3007027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  0 backward    Id 487130096 " fill="rgb(255,77,0)" points="1145.62,2844.83 1138.35,2835.52 1131.67,2837.52 1140.2,2846.45 " />
<svg:polygon detid="487130100" count="1" value="90" id="3007028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 3 forward  module  1 backward    Id 487130100 " fill="rgb(255,77,0)" points="1138.4,2847.04 1129.91,2838.1 1123.52,2840.4 1133.21,2848.91 " />
<svg:polygon detid="487163108" count="1" value="90" id="3007029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  1 forward    Id 487163108 " fill="rgb(255,77,0)" points="1131.49,2849.59 1121.84,2841.06 1115.77,2843.65 1126.57,2851.69 " />
<svg:polygon detid="487163112" count="1" value="90" id="3007030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  2 forward    Id 487163112 " fill="rgb(255,77,0)" points="1124.95,2852.44 1114.19,2844.39 1108.49,2847.25 1120.33,2854.77 " />
<svg:polygon detid="487163116" count="1" value="90" id="3007031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  3 forward    Id 487163116 " fill="rgb(255,77,0)" points="1118.81,2855.59 1107,2848.06 1101.7,2851.18 1114.51,2858.12 " />
<svg:polygon detid="487163120" count="1" value="90" id="3007032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  0 backward    Id 487163120 " fill="rgb(255,77,0)" points="1113.1,2859.02 1100.33,2852.05 1095.46,2855.4 1109.16,2861.73 " />
<svg:polygon detid="487163124" count="1" value="90" id="3007033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 backward  module  1 backward    Id 487163124 " fill="rgb(255,77,0)" points="1107.87,2862.69 1094.21,2856.34 1089.81,2859.9 1104.3,2865.58 " />
<svg:polygon detid="487130340" count="1" value="90" id="3007034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  1 forward    Id 487130340 " fill="rgb(255,77,0)" points="1103.15,2866.6 1088.68,2860.89 1084.77,2864.65 1099.97,2869.64 " />
<svg:polygon detid="487130344" count="1" value="90" id="3007035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  2 forward    Id 487130344 " fill="rgb(255,77,0)" points="1098.96,2870.71 1083.78,2865.69 1080.38,2869.62 1096.2,2873.89 " />
<svg:polygon detid="487130348" count="1" value="90" id="3007036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  3 forward    Id 487130348 " fill="rgb(255,77,0)" points="1095.33,2875 1079.53,2870.7 1076.66,2874.77 1093.01,2878.3 " />
<svg:polygon detid="487130352" count="1" value="90" id="3007037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  0 backward    Id 487130352 " fill="rgb(255,77,0)" points="1092.29,2879.45 1075.96,2875.89 1073.65,2880.08 1090.41,2882.85 " />
<svg:polygon detid="487130356" count="1" value="90" id="3007038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 4 forward  module  1 backward    Id 487130356 " fill="rgb(255,77,0)" points="1089.85,2884.02 1073.1,2881.22 1071.35,2885.51 1088.43,2887.49 " />
<svg:polygon detid="487163364" count="1" value="90" id="3007039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  1 forward    Id 487163364 " fill="rgb(255,77,0)" points="1088.03,2888.69 1070.95,2886.68 1069.78,2891.03 1087.08,2892.22 " />
<svg:polygon detid="487163368" count="1" value="90" id="3007040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  2 forward    Id 487163368 " fill="rgb(255,77,0)" points="1086.83,2893.43 1069.54,2892.21 1068.96,2896.61 1086.36,2896.99 " />
<svg:polygon detid="487163372" count="1" value="90" id="3007041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  3 forward    Id 487163372 " fill="rgb(255,77,0)" points="1086.28,2898.21 1068.88,2897.79 1068.88,2902.21 1086.28,2901.79 " />
<svg:polygon detid="487163376" count="1" value="90" id="3007042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  0 backward    Id 487163376 " fill="rgb(255,77,0)" points="1086.36,2903.01 1068.96,2903.39 1069.54,2907.79 1086.83,2906.57 " />
<svg:polygon detid="487163380" count="1" value="90" id="3007043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 backward  module  1 backward    Id 487163380 " fill="rgb(255,77,0)" points="1087.08,2907.78 1069.78,2908.97 1070.95,2913.32 1088.03,2911.31 " />
<svg:polygon detid="487130596" count="1" value="90" id="3007044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  1 forward    Id 487130596 " fill="rgb(255,77,0)" points="1088.43,2912.51 1071.35,2914.49 1073.1,2918.78 1089.85,2915.98 " />
<svg:polygon detid="487130600" count="1" value="90" id="3007045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  2 forward    Id 487130600 " fill="rgb(255,77,0)" points="1090.41,2917.15 1073.65,2919.92 1075.96,2924.11 1092.29,2920.55 " />
<svg:polygon detid="487130604" count="1" value="90" id="3007046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  3 forward    Id 487130604 " fill="rgb(255,77,0)" points="1093.01,2921.7 1076.66,2925.23 1079.53,2929.3 1095.33,2925 " />
<svg:polygon detid="487130608" count="1" value="90" id="3007047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  0 backward    Id 487130608 " fill="rgb(255,77,0)" points="1096.2,2926.11 1080.38,2930.38 1083.78,2934.31 1098.96,2929.29 " />
<svg:polygon detid="487130612" count="1" value="90" id="3007048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 5 forward  module  1 backward    Id 487130612 " fill="rgb(255,77,0)" points="1099.97,2930.36 1084.77,2935.35 1088.68,2939.11 1103.15,2933.4 " />
<svg:polygon detid="487163620" count="1" value="90" id="3007049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  1 forward    Id 487163620 " fill="rgb(255,77,0)" points="1104.3,2934.42 1089.81,2940.1 1094.21,2943.66 1107.87,2937.31 " />
<svg:polygon detid="487163624" count="1" value="90" id="3007050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  2 forward    Id 487163624 " fill="rgb(255,77,0)" points="1109.16,2938.27 1095.46,2944.6 1100.33,2947.95 1113.1,2940.98 " />
<svg:polygon detid="487163628" count="1" value="90" id="3007051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  3 forward    Id 487163628 " fill="rgb(255,77,0)" points="1114.51,2941.88 1101.7,2948.82 1107,2951.94 1118.81,2944.41 " />
<svg:polygon detid="487163632" count="1" value="90" id="3007052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  0 backward    Id 487163632 " fill="rgb(255,77,0)" points="1120.33,2945.23 1108.49,2952.75 1114.19,2955.61 1124.95,2947.56 " />
<svg:polygon detid="487163636" count="1" value="90" id="3007053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 backward  module  1 backward    Id 487163636 " fill="rgb(255,77,0)" points="1126.57,2948.31 1115.77,2956.35 1121.84,2958.94 1131.49,2950.41 " />
<svg:polygon detid="487130852" count="1" value="90" id="3007054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  1 forward    Id 487130852 " fill="rgb(255,77,0)" points="1133.21,2951.09 1123.52,2959.6 1129.91,2961.9 1138.4,2952.96 " />
<svg:polygon detid="487130856" count="1" value="90" id="3007055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  2 forward    Id 487130856 " fill="rgb(255,77,0)" points="1140.2,2953.55 1131.67,2962.48 1138.35,2964.48 1145.62,2955.17 " />
<svg:polygon detid="487130860" count="1" value="90" id="3007056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  3 forward    Id 487130860 " fill="rgb(255,77,0)" points="1147.5,2955.69 1140.19,2964.98 1147.11,2966.67 1153.11,2957.05 " />
<svg:polygon detid="487130864" count="1" value="90" id="3007057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  0 backward    Id 487130864 " fill="rgb(255,77,0)" points="1155.06,2957.48 1149.01,2967.08 1156.14,2968.44 1160.84,2958.58 " />
<svg:polygon detid="487130868" count="1" value="90" id="3007058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 6 forward  module  1 backward    Id 487130868 " fill="rgb(255,77,0)" points="1162.83,2958.91 1158.08,2968.77 1165.37,2969.79 1168.74,2959.75 " />
<svg:polygon detid="487163876" count="1" value="90" id="3007059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  1 forward    Id 487163876 " fill="rgb(255,77,0)" points="1170.77,2959.98 1167.35,2970.03 1174.75,2970.72 1176.78,2960.54 " />
<svg:polygon detid="487163880" count="1" value="90" id="3007060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  2 forward    Id 487163880 " fill="rgb(255,77,0)" points="1178.83,2960.69 1176.76,2970.86 1184.23,2971.2 1184.89,2960.97 " />
<svg:polygon detid="487163884" count="1" value="90" id="3007061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  3 forward    Id 487163884 " fill="rgb(255,77,0)" points="1186.96,2961.01 1186.25,2971.25 1193.75,2971.25 1193.04,2961.01 " />
<svg:polygon detid="487163888" count="1" value="90" id="3007062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  0 backward    Id 487163888 " fill="rgb(255,77,0)" points="1195.11,2960.97 1195.77,2971.2 1203.24,2970.86 1201.17,2960.69 " />
<svg:polygon detid="487163892" count="1" value="90" id="3007063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 backward  module  1 backward    Id 487163892 " fill="rgb(255,77,0)" points="1203.22,2960.54 1205.25,2970.72 1212.65,2970.03 1209.23,2959.98 " />
<svg:polygon detid="487131108" count="1" value="90" id="3007064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  1 forward    Id 487131108 " fill="rgb(255,77,0)" points="1211.26,2959.75 1214.63,2969.79 1221.92,2968.77 1217.17,2958.91 " />
<svg:polygon detid="487131112" count="1" value="90" id="3007065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  2 forward    Id 487131112 " fill="rgb(255,77,0)" points="1219.16,2958.58 1223.86,2968.44 1230.99,2967.08 1224.94,2957.48 " />
<svg:polygon detid="487131116" count="1" value="90" id="3007066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  3 forward    Id 487131116 " fill="rgb(255,77,0)" points="1226.89,2957.05 1232.89,2966.67 1239.81,2964.98 1232.5,2955.69 " />
<svg:polygon detid="487131120" count="1" value="90" id="3007067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  0 backward    Id 487131120 " fill="rgb(255,77,0)" points="1234.38,2955.17 1241.65,2964.48 1248.33,2962.48 1239.8,2953.55 " />
<svg:polygon detid="487131124" count="1" value="90" id="3007068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 7 forward  module  1 backward    Id 487131124 " fill="rgb(255,77,0)" points="1241.6,2952.96 1250.09,2961.9 1256.48,2959.6 1246.79,2951.09 " />
<svg:polygon detid="487164132" count="1" value="90" id="3007069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  1 forward    Id 487164132 " fill="rgb(255,77,0)" points="1248.51,2950.41 1258.16,2958.94 1264.23,2956.35 1253.43,2948.31 " />
<svg:polygon detid="487164136" count="1" value="90" id="3007070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  2 forward    Id 487164136 " fill="rgb(255,77,0)" points="1255.05,2947.56 1265.81,2955.61 1271.51,2952.75 1259.67,2945.23 " />
<svg:polygon detid="487164140" count="1" value="90" id="3007071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  3 forward    Id 487164140 " fill="rgb(255,77,0)" points="1261.19,2944.41 1273,2951.94 1278.3,2948.82 1265.49,2941.88 " />
<svg:polygon detid="487164144" count="1" value="90" id="3007072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  0 backward    Id 487164144 " fill="rgb(255,77,0)" points="1266.9,2940.98 1279.67,2947.95 1284.54,2944.6 1270.84,2938.27 " />
<svg:polygon detid="487164148" count="1" value="90" id="3007073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 backward  module  1 backward    Id 487164148 " fill="rgb(255,77,0)" points="1272.13,2937.31 1285.79,2943.66 1290.19,2940.1 1275.7,2934.42 " />
<svg:polygon detid="487131364" count="1" value="90" id="3007074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  1 forward    Id 487131364 " fill="rgb(255,77,0)" points="1276.85,2933.4 1291.32,2939.11 1295.23,2935.35 1280.03,2930.36 " />
<svg:polygon detid="487131368" count="1" value="90" id="3007075" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  2 forward    Id 487131368 " fill="rgb(255,77,0)" points="1281.04,2929.29 1296.22,2934.31 1299.62,2930.38 1283.8,2926.11 " />
<svg:polygon detid="487131372" count="1" value="90" id="3007076" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  3 forward    Id 487131372 " fill="rgb(255,77,0)" points="1284.67,2925 1300.47,2929.3 1303.34,2925.23 1286.99,2921.7 " />
<svg:polygon detid="487131376" count="1" value="90" id="3007077" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  0 backward    Id 487131376 " fill="rgb(255,77,0)" points="1287.71,2920.55 1304.04,2924.11 1306.35,2919.92 1289.59,2917.15 " />
<svg:polygon detid="487131380" count="1" value="90" id="3007078" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 8 forward  module  1 backward    Id 487131380 " fill="rgb(255,77,0)" points="1290.15,2915.98 1306.9,2918.78 1308.65,2914.49 1291.57,2912.51 " />
<svg:polygon detid="487162356" count="1" value="90" id="3007079" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  1 backward    Id 487162356 " fill="rgb(255,77,0)" points="1291.97,2911.31 1309.05,2913.32 1310.22,2908.97 1292.92,2907.78 " />
<svg:polygon detid="487162344" count="1" value="90" id="3007080" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TEC +z layer 9 ring 0 petal 1 backward  module  2 forward    Id 487162344 " fill="rgb(255,77,0)" points="1293.17,2906.57 1310.46,2907.79 1311.04,2903.39 1293.64,2903.01 " />
<svg:polygon detid="302055684" count="0" value="0" id="3101001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  1   Id 302055684 " fill="white" points="607.528,377.209 624.475,377.209 624.475,359.065 607.528,359.065 " />
<svg:polygon detid="302055940" count="0" value="0" id="3101002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  1   Id 302055940 " fill="white" points="607.528,359.07 624.475,359.07 624.475,340.926 607.528,340.926 " />
<svg:polygon detid="302056196" count="0" value="0" id="3101003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  1   Id 302056196 " fill="white" points="607.528,340.93 624.475,340.93 624.475,322.786 607.528,322.786 " />
<svg:polygon detid="302056452" count="0" value="0" id="3101004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  1   Id 302056452 " fill="white" points="607.528,322.791 624.475,322.791 624.475,304.647 607.528,304.647 " />
<svg:polygon detid="302056708" count="0" value="0" id="3101005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  1   Id 302056708 " fill="white" points="607.528,304.651 624.475,304.651 624.475,295.492 607.528,295.492 " />
<svg:polygon detid="302056964" count="0" value="0" id="3101006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  1   Id 302056964 " fill="white" points="607.528,286.512 624.475,286.512 624.475,277.352 607.528,277.352 " />
<svg:polygon detid="302057220" count="0" value="0" id="3101007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  1   Id 302057220 " fill="white" points="607.528,268.372 624.475,268.372 624.475,250.228 607.528,250.228 " />
<svg:polygon detid="302057476" count="0" value="0" id="3101008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  1   Id 302057476 " fill="white" points="607.528,250.233 624.475,250.233 624.475,232.088 607.528,232.088 " />
<svg:polygon detid="302057732" count="0" value="0" id="3101009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  1   Id 302057732 " fill="white" points="607.528,232.093 624.475,232.093 624.475,213.949 607.528,213.949 " />
<svg:polygon detid="302057988" count="0" value="0" id="3101010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  1   Id 302057988 " fill="white" points="607.528,213.953 624.475,213.953 624.475,195.809 607.528,195.809 " />
<svg:polygon detid="302058244" count="0" value="0" id="3101011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  1   Id 302058244 " fill="white" points="607.528,195.814 624.475,195.814 624.475,177.67 607.528,177.67 " />
<svg:polygon detid="302058500" count="0" value="0" id="3101012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  1   Id 302058500 " fill="white" points="607.528,177.674 624.475,177.674 624.475,159.53 607.528,159.53 " />
<svg:polygon detid="302058756" count="0" value="0" id="3101013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  1   Id 302058756 " fill="white" points="607.528,159.535 624.475,159.535 624.475,141.391 607.528,141.391 " />
<svg:polygon detid="302059012" count="0" value="0" id="3101014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  1   Id 302059012 " fill="white" points="607.528,141.395 624.475,141.395 624.475,123.251 607.528,123.251 " />
<svg:polygon detid="302059268" count="0" value="0" id="3101015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  1   Id 302059268 " fill="white" points="607.528,123.256 624.475,123.256 624.475,114.097 607.528,114.097 " />
<svg:polygon detid="302059524" count="0" value="0" id="3101016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  1   Id 302059524 " fill="white" points="607.528,105.116 624.475,105.116 624.475,95.9571 607.528,95.9571 " />
<svg:polygon detid="302059780" count="0" value="0" id="3101017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  1   Id 302059780 " fill="white" points="607.528,86.9767 624.475,86.9767 624.475,68.8326 607.528,68.8326 " />
<svg:polygon detid="302060036" count="0" value="0" id="3101018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  1   Id 302060036 " fill="white" points="607.528,68.8372 624.475,68.8372 624.475,50.6931 607.528,50.6931 " />
<svg:polygon detid="302060292" count="0" value="0" id="3101019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  1   Id 302060292 " fill="white" points="607.528,50.6977 624.475,50.6977 624.475,32.5536 607.528,32.5536 " />
<svg:polygon detid="302060548" count="0" value="0" id="3101020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  1   Id 302060548 " fill="white" points="607.528,32.5581 624.475,32.5581 624.475,14.414 607.528,14.414 " />
<svg:polygon detid="302055688" count="0" value="0" id="3102001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  2   Id 302055688 " fill="white" points="626.594,377.209 643.542,377.209 643.542,359.065 626.594,359.065 " />
<svg:polygon detid="302055944" count="0" value="0" id="3102002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  2   Id 302055944 " fill="white" points="626.594,359.07 643.542,359.07 643.542,340.926 626.594,340.926 " />
<svg:polygon detid="302056200" count="0" value="0" id="3102003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  2   Id 302056200 " fill="white" points="626.594,340.93 643.542,340.93 643.542,322.786 626.594,322.786 " />
<svg:polygon detid="302056456" count="0" value="0" id="3102004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  2   Id 302056456 " fill="white" points="626.594,322.791 643.542,322.791 643.542,304.647 626.594,304.647 " />
<svg:polygon detid="302056712" count="0" value="0" id="3102005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  2   Id 302056712 " fill="white" points="626.594,304.651 643.542,304.651 643.542,295.492 626.594,295.492 " />
<svg:polygon detid="302056968" count="0" value="0" id="3102006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  2   Id 302056968 " fill="white" points="626.594,286.512 643.542,286.512 643.542,277.352 626.594,277.352 " />
<svg:polygon detid="302057224" count="0" value="0" id="3102007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  2   Id 302057224 " fill="white" points="626.594,268.372 643.542,268.372 643.542,250.228 626.594,250.228 " />
<svg:polygon detid="302057480" count="0" value="0" id="3102008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  2   Id 302057480 " fill="white" points="626.594,250.233 643.542,250.233 643.542,232.088 626.594,232.088 " />
<svg:polygon detid="302057736" count="0" value="0" id="3102009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  2   Id 302057736 " fill="white" points="626.594,232.093 643.542,232.093 643.542,213.949 626.594,213.949 " />
<svg:polygon detid="302057992" count="0" value="0" id="3102010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  2   Id 302057992 " fill="white" points="626.594,213.953 643.542,213.953 643.542,195.809 626.594,195.809 " />
<svg:polygon detid="302058248" count="0" value="0" id="3102011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  2   Id 302058248 " fill="white" points="626.594,195.814 643.542,195.814 643.542,177.67 626.594,177.67 " />
<svg:polygon detid="302058504" count="0" value="0" id="3102012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  2   Id 302058504 " fill="white" points="626.594,177.674 643.542,177.674 643.542,159.53 626.594,159.53 " />
<svg:polygon detid="302058760" count="0" value="0" id="3102013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  2   Id 302058760 " fill="white" points="626.594,159.535 643.542,159.535 643.542,141.391 626.594,141.391 " />
<svg:polygon detid="302059016" count="0" value="0" id="3102014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  2   Id 302059016 " fill="white" points="626.594,141.395 643.542,141.395 643.542,123.251 626.594,123.251 " />
<svg:polygon detid="302059272" count="0" value="0" id="3102015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  2   Id 302059272 " fill="white" points="626.594,123.256 643.542,123.256 643.542,114.097 626.594,114.097 " />
<svg:polygon detid="302059528" count="0" value="0" id="3102016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  2   Id 302059528 " fill="white" points="626.594,105.116 643.542,105.116 643.542,95.9571 626.594,95.9571 " />
<svg:polygon detid="302059784" count="0" value="0" id="3102017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  2   Id 302059784 " fill="white" points="626.594,86.9767 643.542,86.9767 643.542,68.8326 626.594,68.8326 " />
<svg:polygon detid="302060040" count="0" value="0" id="3102018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  2   Id 302060040 " fill="white" points="626.594,68.8372 643.542,68.8372 643.542,50.6931 626.594,50.6931 " />
<svg:polygon detid="302060296" count="0" value="0" id="3102019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  2   Id 302060296 " fill="white" points="626.594,50.6977 643.542,50.6977 643.542,32.5536 626.594,32.5536 " />
<svg:polygon detid="302060552" count="0" value="0" id="3102020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  2   Id 302060552 " fill="white" points="626.594,32.5581 643.542,32.5581 643.542,14.414 626.594,14.414 " />
<svg:polygon detid="302055692" count="0" value="0" id="3103001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  3   Id 302055692 " fill="white" points="645.66,377.209 662.608,377.209 662.608,359.065 645.66,359.065 " />
<svg:polygon detid="302055948" count="0" value="0" id="3103002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  3   Id 302055948 " fill="white" points="645.66,359.07 662.608,359.07 662.608,340.926 645.66,340.926 " />
<svg:polygon detid="302056204" count="0" value="0" id="3103003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  3   Id 302056204 " fill="white" points="645.66,340.93 662.608,340.93 662.608,322.786 645.66,322.786 " />
<svg:polygon detid="302056460" count="0" value="0" id="3103004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  3   Id 302056460 " fill="white" points="645.66,322.791 662.608,322.791 662.608,304.647 645.66,304.647 " />
<svg:polygon detid="302056716" count="0" value="0" id="3103005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  3   Id 302056716 " fill="white" points="645.66,304.651 662.608,304.651 662.608,295.492 645.66,295.492 " />
<svg:polygon detid="302056972" count="0" value="0" id="3103006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  3   Id 302056972 " fill="white" points="645.66,286.512 662.608,286.512 662.608,277.352 645.66,277.352 " />
<svg:polygon detid="302057228" count="0" value="0" id="3103007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  3   Id 302057228 " fill="white" points="645.66,268.372 662.608,268.372 662.608,250.228 645.66,250.228 " />
<svg:polygon detid="302057484" count="0" value="0" id="3103008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  3   Id 302057484 " fill="white" points="645.66,250.233 662.608,250.233 662.608,232.088 645.66,232.088 " />
<svg:polygon detid="302057740" count="0" value="0" id="3103009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  3   Id 302057740 " fill="white" points="645.66,232.093 662.608,232.093 662.608,213.949 645.66,213.949 " />
<svg:polygon detid="302057996" count="0" value="0" id="3103010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  3   Id 302057996 " fill="white" points="645.66,213.953 662.608,213.953 662.608,195.809 645.66,195.809 " />
<svg:polygon detid="302058252" count="0" value="0" id="3103011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  3   Id 302058252 " fill="white" points="645.66,195.814 662.608,195.814 662.608,177.67 645.66,177.67 " />
<svg:polygon detid="302058508" count="0" value="0" id="3103012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  3   Id 302058508 " fill="white" points="645.66,177.674 662.608,177.674 662.608,159.53 645.66,159.53 " />
<svg:polygon detid="302058764" count="0" value="0" id="3103013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  3   Id 302058764 " fill="white" points="645.66,159.535 662.608,159.535 662.608,141.391 645.66,141.391 " />
<svg:polygon detid="302059020" count="0" value="0" id="3103014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  3   Id 302059020 " fill="white" points="645.66,141.395 662.608,141.395 662.608,123.251 645.66,123.251 " />
<svg:polygon detid="302059276" count="0" value="0" id="3103015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  3   Id 302059276 " fill="white" points="645.66,123.256 662.608,123.256 662.608,114.097 645.66,114.097 " />
<svg:polygon detid="302059532" count="0" value="0" id="3103016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  3   Id 302059532 " fill="white" points="645.66,105.116 662.608,105.116 662.608,95.9571 645.66,95.9571 " />
<svg:polygon detid="302059788" count="0" value="0" id="3103017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  3   Id 302059788 " fill="white" points="645.66,86.9767 662.608,86.9767 662.608,68.8326 645.66,68.8326 " />
<svg:polygon detid="302060044" count="0" value="0" id="3103018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  3   Id 302060044 " fill="white" points="645.66,68.8372 662.608,68.8372 662.608,50.6931 645.66,50.6931 " />
<svg:polygon detid="302060300" count="0" value="0" id="3103019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  3   Id 302060300 " fill="white" points="645.66,50.6977 662.608,50.6977 662.608,32.5536 645.66,32.5536 " />
<svg:polygon detid="302060556" count="0" value="0" id="3103020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  3   Id 302060556 " fill="white" points="645.66,32.5581 662.608,32.5581 662.608,14.414 645.66,14.414 " />
<svg:polygon detid="302055696" count="0" value="0" id="3104001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  4   Id 302055696 " fill="white" points="664.726,377.209 681.674,377.209 681.674,359.065 664.726,359.065 " />
<svg:polygon detid="302055952" count="0" value="0" id="3104002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  4   Id 302055952 " fill="white" points="664.726,359.07 681.674,359.07 681.674,340.926 664.726,340.926 " />
<svg:polygon detid="302056208" count="0" value="0" id="3104003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  4   Id 302056208 " fill="white" points="664.726,340.93 681.674,340.93 681.674,322.786 664.726,322.786 " />
<svg:polygon detid="302056464" count="0" value="0" id="3104004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  4   Id 302056464 " fill="white" points="664.726,322.791 681.674,322.791 681.674,304.647 664.726,304.647 " />
<svg:polygon detid="302056720" count="0" value="0" id="3104005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  4   Id 302056720 " fill="white" points="664.726,304.651 681.674,304.651 681.674,295.492 664.726,295.492 " />
<svg:polygon detid="302056976" count="0" value="0" id="3104006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  4   Id 302056976 " fill="white" points="664.726,286.512 681.674,286.512 681.674,277.352 664.726,277.352 " />
<svg:polygon detid="302057232" count="0" value="0" id="3104007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  4   Id 302057232 " fill="white" points="664.726,268.372 681.674,268.372 681.674,250.228 664.726,250.228 " />
<svg:polygon detid="302057488" count="0" value="0" id="3104008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  4   Id 302057488 " fill="white" points="664.726,250.233 681.674,250.233 681.674,232.088 664.726,232.088 " />
<svg:polygon detid="302057744" count="0" value="0" id="3104009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  4   Id 302057744 " fill="white" points="664.726,232.093 681.674,232.093 681.674,213.949 664.726,213.949 " />
<svg:polygon detid="302058000" count="0" value="0" id="3104010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  4   Id 302058000 " fill="white" points="664.726,213.953 681.674,213.953 681.674,195.809 664.726,195.809 " />
<svg:polygon detid="302058256" count="0" value="0" id="3104011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  4   Id 302058256 " fill="white" points="664.726,195.814 681.674,195.814 681.674,177.67 664.726,177.67 " />
<svg:polygon detid="302058512" count="0" value="0" id="3104012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  4   Id 302058512 " fill="white" points="664.726,177.674 681.674,177.674 681.674,159.53 664.726,159.53 " />
<svg:polygon detid="302058768" count="0" value="0" id="3104013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  4   Id 302058768 " fill="white" points="664.726,159.535 681.674,159.535 681.674,141.391 664.726,141.391 " />
<svg:polygon detid="302059024" count="0" value="0" id="3104014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  4   Id 302059024 " fill="white" points="664.726,141.395 681.674,141.395 681.674,123.251 664.726,123.251 " />
<svg:polygon detid="302059280" count="0" value="0" id="3104015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  4   Id 302059280 " fill="white" points="664.726,123.256 681.674,123.256 681.674,114.097 664.726,114.097 " />
<svg:polygon detid="302059536" count="0" value="0" id="3104016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  4   Id 302059536 " fill="white" points="664.726,105.116 681.674,105.116 681.674,95.9571 664.726,95.9571 " />
<svg:polygon detid="302059792" count="0" value="0" id="3104017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  4   Id 302059792 " fill="white" points="664.726,86.9767 681.674,86.9767 681.674,68.8326 664.726,68.8326 " />
<svg:polygon detid="302060048" count="0" value="0" id="3104018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  4   Id 302060048 " fill="white" points="664.726,68.8372 681.674,68.8372 681.674,50.6931 664.726,50.6931 " />
<svg:polygon detid="302060304" count="0" value="0" id="3104019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  4   Id 302060304 " fill="white" points="664.726,50.6977 681.674,50.6977 681.674,32.5536 664.726,32.5536 " />
<svg:polygon detid="302060560" count="0" value="0" id="3104020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  4   Id 302060560 " fill="white" points="664.726,32.5581 681.674,32.5581 681.674,14.414 664.726,14.414 " />
<svg:polygon detid="302055700" count="0" value="0" id="3105001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  5   Id 302055700 " fill="white" points="683.792,377.209 700.74,377.209 700.74,359.065 683.792,359.065 " />
<svg:polygon detid="302055956" count="0" value="0" id="3105002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  5   Id 302055956 " fill="white" points="683.792,359.07 700.74,359.07 700.74,340.926 683.792,340.926 " />
<svg:polygon detid="302056212" count="0" value="0" id="3105003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  5   Id 302056212 " fill="white" points="683.792,340.93 700.74,340.93 700.74,322.786 683.792,322.786 " />
<svg:polygon detid="302056468" count="0" value="0" id="3105004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  5   Id 302056468 " fill="white" points="683.792,322.791 700.74,322.791 700.74,304.647 683.792,304.647 " />
<svg:polygon detid="302056724" count="0" value="0" id="3105005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  5   Id 302056724 " fill="white" points="683.792,304.651 700.74,304.651 700.74,295.492 683.792,295.492 " />
<svg:polygon detid="302056980" count="0" value="0" id="3105006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  5   Id 302056980 " fill="white" points="683.792,286.512 700.74,286.512 700.74,277.352 683.792,277.352 " />
<svg:polygon detid="302057236" count="0" value="0" id="3105007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  5   Id 302057236 " fill="white" points="683.792,268.372 700.74,268.372 700.74,250.228 683.792,250.228 " />
<svg:polygon detid="302057492" count="0" value="0" id="3105008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  5   Id 302057492 " fill="white" points="683.792,250.233 700.74,250.233 700.74,232.088 683.792,232.088 " />
<svg:polygon detid="302057748" count="0" value="0" id="3105009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  5   Id 302057748 " fill="white" points="683.792,232.093 700.74,232.093 700.74,213.949 683.792,213.949 " />
<svg:polygon detid="302058004" count="0" value="0" id="3105010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  5   Id 302058004 " fill="white" points="683.792,213.953 700.74,213.953 700.74,195.809 683.792,195.809 " />
<svg:polygon detid="302058260" count="0" value="0" id="3105011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  5   Id 302058260 " fill="white" points="683.792,195.814 700.74,195.814 700.74,177.67 683.792,177.67 " />
<svg:polygon detid="302058516" count="0" value="0" id="3105012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  5   Id 302058516 " fill="white" points="683.792,177.674 700.74,177.674 700.74,159.53 683.792,159.53 " />
<svg:polygon detid="302058772" count="0" value="0" id="3105013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  5   Id 302058772 " fill="white" points="683.792,159.535 700.74,159.535 700.74,141.391 683.792,141.391 " />
<svg:polygon detid="302059028" count="0" value="0" id="3105014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  5   Id 302059028 " fill="white" points="683.792,141.395 700.74,141.395 700.74,123.251 683.792,123.251 " />
<svg:polygon detid="302059284" count="0" value="0" id="3105015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  5   Id 302059284 " fill="white" points="683.792,123.256 700.74,123.256 700.74,114.097 683.792,114.097 " />
<svg:polygon detid="302059540" count="0" value="0" id="3105016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  5   Id 302059540 " fill="white" points="683.792,105.116 700.74,105.116 700.74,95.9571 683.792,95.9571 " />
<svg:polygon detid="302059796" count="0" value="0" id="3105017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  5   Id 302059796 " fill="white" points="683.792,86.9767 700.74,86.9767 700.74,68.8326 683.792,68.8326 " />
<svg:polygon detid="302060052" count="0" value="0" id="3105018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  5   Id 302060052 " fill="white" points="683.792,68.8372 700.74,68.8372 700.74,50.6931 683.792,50.6931 " />
<svg:polygon detid="302060308" count="0" value="0" id="3105019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  5   Id 302060308 " fill="white" points="683.792,50.6977 700.74,50.6977 700.74,32.5536 683.792,32.5536 " />
<svg:polygon detid="302060564" count="0" value="0" id="3105020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  5   Id 302060564 " fill="white" points="683.792,32.5581 700.74,32.5581 700.74,14.414 683.792,14.414 " />
<svg:polygon detid="302055704" count="0" value="0" id="3106001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  6   Id 302055704 " fill="white" points="702.858,377.209 719.806,377.209 719.806,359.065 702.858,359.065 " />
<svg:polygon detid="302055960" count="0" value="0" id="3106002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  6   Id 302055960 " fill="white" points="702.858,359.07 719.806,359.07 719.806,340.926 702.858,340.926 " />
<svg:polygon detid="302056216" count="0" value="0" id="3106003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  6   Id 302056216 " fill="white" points="702.858,340.93 719.806,340.93 719.806,322.786 702.858,322.786 " />
<svg:polygon detid="302056472" count="0" value="0" id="3106004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  6   Id 302056472 " fill="white" points="702.858,322.791 719.806,322.791 719.806,304.647 702.858,304.647 " />
<svg:polygon detid="302056728" count="0" value="0" id="3106005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  6   Id 302056728 " fill="white" points="702.858,304.651 719.806,304.651 719.806,295.492 702.858,295.492 " />
<svg:polygon detid="302056984" count="0" value="0" id="3106006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  6   Id 302056984 " fill="white" points="702.858,286.512 719.806,286.512 719.806,277.352 702.858,277.352 " />
<svg:polygon detid="302057240" count="0" value="0" id="3106007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  6   Id 302057240 " fill="white" points="702.858,268.372 719.806,268.372 719.806,250.228 702.858,250.228 " />
<svg:polygon detid="302057496" count="0" value="0" id="3106008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  6   Id 302057496 " fill="white" points="702.858,250.233 719.806,250.233 719.806,232.088 702.858,232.088 " />
<svg:polygon detid="302057752" count="0" value="0" id="3106009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  6   Id 302057752 " fill="white" points="702.858,232.093 719.806,232.093 719.806,213.949 702.858,213.949 " />
<svg:polygon detid="302058008" count="0" value="0" id="3106010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  6   Id 302058008 " fill="white" points="702.858,213.953 719.806,213.953 719.806,195.809 702.858,195.809 " />
<svg:polygon detid="302058264" count="0" value="0" id="3106011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  6   Id 302058264 " fill="white" points="702.858,195.814 719.806,195.814 719.806,177.67 702.858,177.67 " />
<svg:polygon detid="302058520" count="0" value="0" id="3106012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  6   Id 302058520 " fill="white" points="702.858,177.674 719.806,177.674 719.806,159.53 702.858,159.53 " />
<svg:polygon detid="302058776" count="0" value="0" id="3106013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  6   Id 302058776 " fill="white" points="702.858,159.535 719.806,159.535 719.806,141.391 702.858,141.391 " />
<svg:polygon detid="302059032" count="0" value="0" id="3106014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  6   Id 302059032 " fill="white" points="702.858,141.395 719.806,141.395 719.806,123.251 702.858,123.251 " />
<svg:polygon detid="302059288" count="0" value="0" id="3106015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  6   Id 302059288 " fill="white" points="702.858,123.256 719.806,123.256 719.806,114.097 702.858,114.097 " />
<svg:polygon detid="302059544" count="0" value="0" id="3106016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  6   Id 302059544 " fill="white" points="702.858,105.116 719.806,105.116 719.806,95.9571 702.858,95.9571 " />
<svg:polygon detid="302059800" count="0" value="0" id="3106017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  6   Id 302059800 " fill="white" points="702.858,86.9767 719.806,86.9767 719.806,68.8326 702.858,68.8326 " />
<svg:polygon detid="302060056" count="0" value="0" id="3106018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  6   Id 302060056 " fill="white" points="702.858,68.8372 719.806,68.8372 719.806,50.6931 702.858,50.6931 " />
<svg:polygon detid="302060312" count="0" value="0" id="3106019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  6   Id 302060312 " fill="white" points="702.858,50.6977 719.806,50.6977 719.806,32.5536 702.858,32.5536 " />
<svg:polygon detid="302060568" count="0" value="0" id="3106020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  6   Id 302060568 " fill="white" points="702.858,32.5581 719.806,32.5581 719.806,14.414 702.858,14.414 " />
<svg:polygon detid="302055708" count="0" value="0" id="3107001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  7   Id 302055708 " fill="white" points="721.925,377.209 738.872,377.209 738.872,359.065 721.925,359.065 " />
<svg:polygon detid="302055964" count="0" value="0" id="3107002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  7   Id 302055964 " fill="white" points="721.925,359.07 738.872,359.07 738.872,340.926 721.925,340.926 " />
<svg:polygon detid="302056220" count="0" value="0" id="3107003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  7   Id 302056220 " fill="white" points="721.925,340.93 738.872,340.93 738.872,322.786 721.925,322.786 " />
<svg:polygon detid="302056476" count="0" value="0" id="3107004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  7   Id 302056476 " fill="white" points="721.925,322.791 738.872,322.791 738.872,304.647 721.925,304.647 " />
<svg:polygon detid="302056732" count="0" value="0" id="3107005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  7   Id 302056732 " fill="white" points="721.925,304.651 738.872,304.651 738.872,295.492 721.925,295.492 " />
<svg:polygon detid="302056988" count="0" value="0" id="3107006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  7   Id 302056988 " fill="white" points="721.925,286.512 738.872,286.512 738.872,277.352 721.925,277.352 " />
<svg:polygon detid="302057244" count="0" value="0" id="3107007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  7   Id 302057244 " fill="white" points="721.925,268.372 738.872,268.372 738.872,250.228 721.925,250.228 " />
<svg:polygon detid="302057500" count="0" value="0" id="3107008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  7   Id 302057500 " fill="white" points="721.925,250.233 738.872,250.233 738.872,232.088 721.925,232.088 " />
<svg:polygon detid="302057756" count="0" value="0" id="3107009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  7   Id 302057756 " fill="white" points="721.925,232.093 738.872,232.093 738.872,213.949 721.925,213.949 " />
<svg:polygon detid="302058012" count="0" value="0" id="3107010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  7   Id 302058012 " fill="white" points="721.925,213.953 738.872,213.953 738.872,195.809 721.925,195.809 " />
<svg:polygon detid="302058268" count="0" value="0" id="3107011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  7   Id 302058268 " fill="white" points="721.925,195.814 738.872,195.814 738.872,177.67 721.925,177.67 " />
<svg:polygon detid="302058524" count="0" value="0" id="3107012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  7   Id 302058524 " fill="white" points="721.925,177.674 738.872,177.674 738.872,159.53 721.925,159.53 " />
<svg:polygon detid="302058780" count="0" value="0" id="3107013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  7   Id 302058780 " fill="white" points="721.925,159.535 738.872,159.535 738.872,141.391 721.925,141.391 " />
<svg:polygon detid="302059036" count="0" value="0" id="3107014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  7   Id 302059036 " fill="white" points="721.925,141.395 738.872,141.395 738.872,123.251 721.925,123.251 " />
<svg:polygon detid="302059292" count="0" value="0" id="3107015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  7   Id 302059292 " fill="white" points="721.925,123.256 738.872,123.256 738.872,114.097 721.925,114.097 " />
<svg:polygon detid="302059548" count="0" value="0" id="3107016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  7   Id 302059548 " fill="white" points="721.925,105.116 738.872,105.116 738.872,95.9571 721.925,95.9571 " />
<svg:polygon detid="302059804" count="0" value="0" id="3107017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  7   Id 302059804 " fill="white" points="721.925,86.9767 738.872,86.9767 738.872,68.8326 721.925,68.8326 " />
<svg:polygon detid="302060060" count="0" value="0" id="3107018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  7   Id 302060060 " fill="white" points="721.925,68.8372 738.872,68.8372 738.872,50.6931 721.925,50.6931 " />
<svg:polygon detid="302060316" count="0" value="0" id="3107019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  7   Id 302060316 " fill="white" points="721.925,50.6977 738.872,50.6977 738.872,32.5536 721.925,32.5536 " />
<svg:polygon detid="302060572" count="0" value="0" id="3107020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  7   Id 302060572 " fill="white" points="721.925,32.5581 738.872,32.5581 738.872,14.414 721.925,14.414 " />
<svg:polygon detid="302055712" count="0" value="0" id="3108001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 1   module  8   Id 302055712 " fill="white" points="740.991,377.209 757.938,377.209 757.938,359.065 740.991,359.065 " />
<svg:polygon detid="302055968" count="0" value="0" id="3108002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 2   module  8   Id 302055968 " fill="white" points="740.991,359.07 757.938,359.07 757.938,340.926 740.991,340.926 " />
<svg:polygon detid="302056224" count="0" value="0" id="3108003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 3   module  8   Id 302056224 " fill="white" points="740.991,340.93 757.938,340.93 757.938,322.786 740.991,322.786 " />
<svg:polygon detid="302056480" count="0" value="0" id="3108004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 4   module  8   Id 302056480 " fill="white" points="740.991,322.791 757.938,322.791 757.938,304.647 740.991,304.647 " />
<svg:polygon detid="302056736" count="0" value="0" id="3108005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 5   module  8   Id 302056736 " fill="white" points="740.991,304.651 757.938,304.651 757.938,295.492 740.991,295.492 " />
<svg:polygon detid="302056992" count="0" value="0" id="3108006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 6   module  8   Id 302056992 " fill="white" points="740.991,286.512 757.938,286.512 757.938,277.352 740.991,277.352 " />
<svg:polygon detid="302057248" count="0" value="0" id="3108007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 7   module  8   Id 302057248 " fill="white" points="740.991,268.372 757.938,268.372 757.938,250.228 740.991,250.228 " />
<svg:polygon detid="302057504" count="0" value="0" id="3108008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 8   module  8   Id 302057504 " fill="white" points="740.991,250.233 757.938,250.233 757.938,232.088 740.991,232.088 " />
<svg:polygon detid="302057760" count="0" value="0" id="3108009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 9   module  8   Id 302057760 " fill="white" points="740.991,232.093 757.938,232.093 757.938,213.949 740.991,213.949 " />
<svg:polygon detid="302058016" count="0" value="0" id="3108010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 10   module  8   Id 302058016 " fill="white" points="740.991,213.953 757.938,213.953 757.938,195.809 740.991,195.809 " />
<svg:polygon detid="302058272" count="0" value="0" id="3108011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 11   module  8   Id 302058272 " fill="white" points="740.991,195.814 757.938,195.814 757.938,177.67 740.991,177.67 " />
<svg:polygon detid="302058528" count="0" value="0" id="3108012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 12   module  8   Id 302058528 " fill="white" points="740.991,177.674 757.938,177.674 757.938,159.53 740.991,159.53 " />
<svg:polygon detid="302058784" count="0" value="0" id="3108013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 13   module  8   Id 302058784 " fill="white" points="740.991,159.535 757.938,159.535 757.938,141.391 740.991,141.391 " />
<svg:polygon detid="302059040" count="0" value="0" id="3108014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 14   module  8   Id 302059040 " fill="white" points="740.991,141.395 757.938,141.395 757.938,123.251 740.991,123.251 " />
<svg:polygon detid="302059296" count="0" value="0" id="3108015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 15   module  8   Id 302059296 " fill="white" points="740.991,123.256 757.938,123.256 757.938,114.097 740.991,114.097 " />
<svg:polygon detid="302059552" count="0" value="0" id="3108016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 16   module  8   Id 302059552 " fill="white" points="740.991,105.116 757.938,105.116 757.938,95.9571 740.991,95.9571 " />
<svg:polygon detid="302059808" count="0" value="0" id="3108017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 17   module  8   Id 302059808 " fill="white" points="740.991,86.9767 757.938,86.9767 757.938,68.8326 740.991,68.8326 " />
<svg:polygon detid="302060064" count="0" value="0" id="3108018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 18   module  8   Id 302060064 " fill="white" points="740.991,68.8372 757.938,68.8372 757.938,50.6931 740.991,50.6931 " />
<svg:polygon detid="302060320" count="0" value="0" id="3108019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 19   module  8   Id 302060320 " fill="white" points="740.991,50.6977 757.938,50.6977 757.938,32.5536 740.991,32.5536 " />
<svg:polygon detid="302060576" count="0" value="0" id="3108020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 1 ladder 20   module  8   Id 302060576 " fill="white" points="740.991,32.5581 757.938,32.5581 757.938,14.414 740.991,14.414 " />
<svg:polygon detid="302121220" count="0" value="0" id="3201001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  1   Id 302121220 " fill="white" points="437.528,784.651 454.475,784.651 454.475,773.95 437.528,773.95 " />
<svg:polygon detid="302121476" count="0" value="0" id="3201002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  1   Id 302121476 " fill="white" points="437.528,773.953 454.475,773.953 454.475,763.252 437.528,763.252 " />
<svg:polygon detid="302121732" count="0" value="0" id="3201003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  1   Id 302121732 " fill="white" points="437.528,763.256 454.475,763.256 454.475,752.555 437.528,752.555 " />
<svg:polygon detid="302121988" count="0" value="0" id="3201004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  1   Id 302121988 " fill="white" points="437.528,752.558 454.475,752.558 454.475,741.857 437.528,741.857 " />
<svg:polygon detid="302122244" count="0" value="0" id="3201005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  1   Id 302122244 " fill="white" points="437.528,741.86 454.475,741.86 454.475,731.159 437.528,731.159 " />
<svg:polygon detid="302122500" count="0" value="0" id="3201006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  1   Id 302122500 " fill="white" points="437.528,731.163 454.475,731.163 454.475,720.461 437.528,720.461 " />
<svg:polygon detid="302122756" count="0" value="0" id="3201007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  1   Id 302122756 " fill="white" points="437.528,720.465 454.475,720.465 454.475,709.764 437.528,709.764 " />
<svg:polygon detid="302123012" count="0" value="0" id="3201008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  1   Id 302123012 " fill="white" points="437.528,709.767 454.475,709.767 454.475,704.399 437.528,704.399 " />
<svg:polygon detid="302123268" count="0" value="0" id="3201009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  1   Id 302123268 " fill="white" points="437.528,699.07 454.475,699.07 454.475,693.701 437.528,693.701 " />
<svg:polygon detid="302123524" count="0" value="0" id="3201010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  1   Id 302123524 " fill="white" points="437.528,688.372 454.475,688.372 454.475,677.671 437.528,677.671 " />
<svg:polygon detid="302123780" count="0" value="0" id="3201011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  1   Id 302123780 " fill="white" points="437.528,677.674 454.475,677.674 454.475,666.973 437.528,666.973 " />
<svg:polygon detid="302124036" count="0" value="0" id="3201012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  1   Id 302124036 " fill="white" points="437.528,666.977 454.475,666.977 454.475,656.275 437.528,656.275 " />
<svg:polygon detid="302124292" count="0" value="0" id="3201013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  1   Id 302124292 " fill="white" points="437.528,656.279 454.475,656.279 454.475,645.578 437.528,645.578 " />
<svg:polygon detid="302124548" count="0" value="0" id="3201014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  1   Id 302124548 " fill="white" points="437.528,645.581 454.475,645.581 454.475,634.88 437.528,634.88 " />
<svg:polygon detid="302124804" count="0" value="0" id="3201015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  1   Id 302124804 " fill="white" points="437.528,634.884 454.475,634.884 454.475,624.182 437.528,624.182 " />
<svg:polygon detid="302125060" count="0" value="0" id="3201016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  1   Id 302125060 " fill="white" points="437.528,624.186 454.475,624.186 454.475,613.485 437.528,613.485 " />
<svg:polygon detid="302125316" count="0" value="0" id="3201017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  1   Id 302125316 " fill="white" points="437.528,613.488 454.475,613.488 454.475,602.787 437.528,602.787 " />
<svg:polygon detid="302125572" count="0" value="0" id="3201018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  1   Id 302125572 " fill="white" points="437.528,602.791 454.475,602.791 454.475,592.089 437.528,592.089 " />
<svg:polygon detid="302125828" count="0" value="0" id="3201019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  1   Id 302125828 " fill="white" points="437.528,592.093 454.475,592.093 454.475,581.392 437.528,581.392 " />
<svg:polygon detid="302126084" count="0" value="0" id="3201020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  1   Id 302126084 " fill="white" points="437.528,581.395 454.475,581.395 454.475,570.694 437.528,570.694 " />
<svg:polygon detid="302126340" count="0" value="0" id="3201021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  1   Id 302126340 " fill="white" points="437.528,570.698 454.475,570.698 454.475,559.996 437.528,559.996 " />
<svg:polygon detid="302126596" count="0" value="0" id="3201022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  1   Id 302126596 " fill="white" points="437.528,560 454.475,560 454.475,549.299 437.528,549.299 " />
<svg:polygon detid="302126852" count="0" value="0" id="3201023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  1   Id 302126852 " fill="white" points="437.528,549.302 454.475,549.302 454.475,538.601 437.528,538.601 " />
<svg:polygon detid="302127108" count="0" value="0" id="3201024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  1   Id 302127108 " fill="white" points="437.528,538.605 454.475,538.605 454.475,533.236 437.528,533.236 " />
<svg:polygon detid="302127364" count="0" value="0" id="3201025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  1   Id 302127364 " fill="white" points="437.528,527.907 454.475,527.907 454.475,522.539 437.528,522.539 " />
<svg:polygon detid="302127620" count="0" value="0" id="3201026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  1   Id 302127620 " fill="white" points="437.528,517.209 454.475,517.209 454.475,506.508 437.528,506.508 " />
<svg:polygon detid="302127876" count="0" value="0" id="3201027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  1   Id 302127876 " fill="white" points="437.528,506.512 454.475,506.512 454.475,495.81 437.528,495.81 " />
<svg:polygon detid="302128132" count="0" value="0" id="3201028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  1   Id 302128132 " fill="white" points="437.528,495.814 454.475,495.814 454.475,485.113 437.528,485.113 " />
<svg:polygon detid="302128388" count="0" value="0" id="3201029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  1   Id 302128388 " fill="white" points="437.528,485.116 454.475,485.116 454.475,474.415 437.528,474.415 " />
<svg:polygon detid="302128644" count="0" value="0" id="3201030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  1   Id 302128644 " fill="white" points="437.528,474.419 454.475,474.419 454.475,463.717 437.528,463.717 " />
<svg:polygon detid="302128900" count="0" value="0" id="3201031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  1   Id 302128900 " fill="white" points="437.528,463.721 454.475,463.721 454.475,453.02 437.528,453.02 " />
<svg:polygon detid="302129156" count="0" value="0" id="3201032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  1   Id 302129156 " fill="white" points="437.528,453.023 454.475,453.023 454.475,442.322 437.528,442.322 " />
<svg:polygon detid="302121224" count="0" value="0" id="3202001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  2   Id 302121224 " fill="white" points="456.594,784.651 473.542,784.651 473.542,773.95 456.594,773.95 " />
<svg:polygon detid="302121480" count="0" value="0" id="3202002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  2   Id 302121480 " fill="white" points="456.594,773.953 473.542,773.953 473.542,763.252 456.594,763.252 " />
<svg:polygon detid="302121736" count="0" value="0" id="3202003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  2   Id 302121736 " fill="white" points="456.594,763.256 473.542,763.256 473.542,752.555 456.594,752.555 " />
<svg:polygon detid="302121992" count="0" value="0" id="3202004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  2   Id 302121992 " fill="white" points="456.594,752.558 473.542,752.558 473.542,741.857 456.594,741.857 " />
<svg:polygon detid="302122248" count="0" value="0" id="3202005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  2   Id 302122248 " fill="white" points="456.594,741.86 473.542,741.86 473.542,731.159 456.594,731.159 " />
<svg:polygon detid="302122504" count="0" value="0" id="3202006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  2   Id 302122504 " fill="white" points="456.594,731.163 473.542,731.163 473.542,720.461 456.594,720.461 " />
<svg:polygon detid="302122760" count="0" value="0" id="3202007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  2   Id 302122760 " fill="white" points="456.594,720.465 473.542,720.465 473.542,709.764 456.594,709.764 " />
<svg:polygon detid="302123016" count="0" value="0" id="3202008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  2   Id 302123016 " fill="white" points="456.594,709.767 473.542,709.767 473.542,704.399 456.594,704.399 " />
<svg:polygon detid="302123272" count="0" value="0" id="3202009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  2   Id 302123272 " fill="white" points="456.594,699.07 473.542,699.07 473.542,693.701 456.594,693.701 " />
<svg:polygon detid="302123528" count="0" value="0" id="3202010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  2   Id 302123528 " fill="white" points="456.594,688.372 473.542,688.372 473.542,677.671 456.594,677.671 " />
<svg:polygon detid="302123784" count="0" value="0" id="3202011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  2   Id 302123784 " fill="white" points="456.594,677.674 473.542,677.674 473.542,666.973 456.594,666.973 " />
<svg:polygon detid="302124040" count="0" value="0" id="3202012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  2   Id 302124040 " fill="white" points="456.594,666.977 473.542,666.977 473.542,656.275 456.594,656.275 " />
<svg:polygon detid="302124296" count="0" value="0" id="3202013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  2   Id 302124296 " fill="white" points="456.594,656.279 473.542,656.279 473.542,645.578 456.594,645.578 " />
<svg:polygon detid="302124552" count="0" value="0" id="3202014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  2   Id 302124552 " fill="white" points="456.594,645.581 473.542,645.581 473.542,634.88 456.594,634.88 " />
<svg:polygon detid="302124808" count="0" value="0" id="3202015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  2   Id 302124808 " fill="white" points="456.594,634.884 473.542,634.884 473.542,624.182 456.594,624.182 " />
<svg:polygon detid="302125064" count="0" value="0" id="3202016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  2   Id 302125064 " fill="white" points="456.594,624.186 473.542,624.186 473.542,613.485 456.594,613.485 " />
<svg:polygon detid="302125320" count="0" value="0" id="3202017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  2   Id 302125320 " fill="white" points="456.594,613.488 473.542,613.488 473.542,602.787 456.594,602.787 " />
<svg:polygon detid="302125576" count="0" value="0" id="3202018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  2   Id 302125576 " fill="white" points="456.594,602.791 473.542,602.791 473.542,592.089 456.594,592.089 " />
<svg:polygon detid="302125832" count="0" value="0" id="3202019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  2   Id 302125832 " fill="white" points="456.594,592.093 473.542,592.093 473.542,581.392 456.594,581.392 " />
<svg:polygon detid="302126088" count="0" value="0" id="3202020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  2   Id 302126088 " fill="white" points="456.594,581.395 473.542,581.395 473.542,570.694 456.594,570.694 " />
<svg:polygon detid="302126344" count="0" value="0" id="3202021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  2   Id 302126344 " fill="white" points="456.594,570.698 473.542,570.698 473.542,559.996 456.594,559.996 " />
<svg:polygon detid="302126600" count="0" value="0" id="3202022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  2   Id 302126600 " fill="white" points="456.594,560 473.542,560 473.542,549.299 456.594,549.299 " />
<svg:polygon detid="302126856" count="0" value="0" id="3202023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  2   Id 302126856 " fill="white" points="456.594,549.302 473.542,549.302 473.542,538.601 456.594,538.601 " />
<svg:polygon detid="302127112" count="0" value="0" id="3202024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  2   Id 302127112 " fill="white" points="456.594,538.605 473.542,538.605 473.542,533.236 456.594,533.236 " />
<svg:polygon detid="302127368" count="0" value="0" id="3202025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  2   Id 302127368 " fill="white" points="456.594,527.907 473.542,527.907 473.542,522.539 456.594,522.539 " />
<svg:polygon detid="302127624" count="0" value="0" id="3202026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  2   Id 302127624 " fill="white" points="456.594,517.209 473.542,517.209 473.542,506.508 456.594,506.508 " />
<svg:polygon detid="302127880" count="0" value="0" id="3202027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  2   Id 302127880 " fill="white" points="456.594,506.512 473.542,506.512 473.542,495.81 456.594,495.81 " />
<svg:polygon detid="302128136" count="0" value="0" id="3202028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  2   Id 302128136 " fill="white" points="456.594,495.814 473.542,495.814 473.542,485.113 456.594,485.113 " />
<svg:polygon detid="302128392" count="0" value="0" id="3202029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  2   Id 302128392 " fill="white" points="456.594,485.116 473.542,485.116 473.542,474.415 456.594,474.415 " />
<svg:polygon detid="302128648" count="0" value="0" id="3202030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  2   Id 302128648 " fill="white" points="456.594,474.419 473.542,474.419 473.542,463.717 456.594,463.717 " />
<svg:polygon detid="302128904" count="0" value="0" id="3202031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  2   Id 302128904 " fill="white" points="456.594,463.721 473.542,463.721 473.542,453.02 456.594,453.02 " />
<svg:polygon detid="302129160" count="0" value="0" id="3202032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  2   Id 302129160 " fill="white" points="456.594,453.023 473.542,453.023 473.542,442.322 456.594,442.322 " />
<svg:polygon detid="302121228" count="0" value="0" id="3203001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  3   Id 302121228 " fill="white" points="475.66,784.651 492.608,784.651 492.608,773.95 475.66,773.95 " />
<svg:polygon detid="302121484" count="0" value="0" id="3203002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  3   Id 302121484 " fill="white" points="475.66,773.953 492.608,773.953 492.608,763.252 475.66,763.252 " />
<svg:polygon detid="302121740" count="0" value="0" id="3203003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  3   Id 302121740 " fill="white" points="475.66,763.256 492.608,763.256 492.608,752.555 475.66,752.555 " />
<svg:polygon detid="302121996" count="0" value="0" id="3203004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  3   Id 302121996 " fill="white" points="475.66,752.558 492.608,752.558 492.608,741.857 475.66,741.857 " />
<svg:polygon detid="302122252" count="0" value="0" id="3203005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  3   Id 302122252 " fill="white" points="475.66,741.86 492.608,741.86 492.608,731.159 475.66,731.159 " />
<svg:polygon detid="302122508" count="0" value="0" id="3203006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  3   Id 302122508 " fill="white" points="475.66,731.163 492.608,731.163 492.608,720.461 475.66,720.461 " />
<svg:polygon detid="302122764" count="0" value="0" id="3203007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  3   Id 302122764 " fill="white" points="475.66,720.465 492.608,720.465 492.608,709.764 475.66,709.764 " />
<svg:polygon detid="302123020" count="0" value="0" id="3203008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  3   Id 302123020 " fill="white" points="475.66,709.767 492.608,709.767 492.608,704.399 475.66,704.399 " />
<svg:polygon detid="302123276" count="0" value="0" id="3203009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  3   Id 302123276 " fill="white" points="475.66,699.07 492.608,699.07 492.608,693.701 475.66,693.701 " />
<svg:polygon detid="302123532" count="0" value="0" id="3203010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  3   Id 302123532 " fill="white" points="475.66,688.372 492.608,688.372 492.608,677.671 475.66,677.671 " />
<svg:polygon detid="302123788" count="0" value="0" id="3203011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  3   Id 302123788 " fill="white" points="475.66,677.674 492.608,677.674 492.608,666.973 475.66,666.973 " />
<svg:polygon detid="302124044" count="0" value="0" id="3203012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  3   Id 302124044 " fill="white" points="475.66,666.977 492.608,666.977 492.608,656.275 475.66,656.275 " />
<svg:polygon detid="302124300" count="0" value="0" id="3203013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  3   Id 302124300 " fill="white" points="475.66,656.279 492.608,656.279 492.608,645.578 475.66,645.578 " />
<svg:polygon detid="302124556" count="0" value="0" id="3203014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  3   Id 302124556 " fill="white" points="475.66,645.581 492.608,645.581 492.608,634.88 475.66,634.88 " />
<svg:polygon detid="302124812" count="0" value="0" id="3203015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  3   Id 302124812 " fill="white" points="475.66,634.884 492.608,634.884 492.608,624.182 475.66,624.182 " />
<svg:polygon detid="302125068" count="0" value="0" id="3203016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  3   Id 302125068 " fill="white" points="475.66,624.186 492.608,624.186 492.608,613.485 475.66,613.485 " />
<svg:polygon detid="302125324" count="0" value="0" id="3203017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  3   Id 302125324 " fill="white" points="475.66,613.488 492.608,613.488 492.608,602.787 475.66,602.787 " />
<svg:polygon detid="302125580" count="0" value="0" id="3203018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  3   Id 302125580 " fill="white" points="475.66,602.791 492.608,602.791 492.608,592.089 475.66,592.089 " />
<svg:polygon detid="302125836" count="0" value="0" id="3203019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  3   Id 302125836 " fill="white" points="475.66,592.093 492.608,592.093 492.608,581.392 475.66,581.392 " />
<svg:polygon detid="302126092" count="0" value="0" id="3203020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  3   Id 302126092 " fill="white" points="475.66,581.395 492.608,581.395 492.608,570.694 475.66,570.694 " />
<svg:polygon detid="302126348" count="0" value="0" id="3203021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  3   Id 302126348 " fill="white" points="475.66,570.698 492.608,570.698 492.608,559.996 475.66,559.996 " />
<svg:polygon detid="302126604" count="0" value="0" id="3203022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  3   Id 302126604 " fill="white" points="475.66,560 492.608,560 492.608,549.299 475.66,549.299 " />
<svg:polygon detid="302126860" count="0" value="0" id="3203023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  3   Id 302126860 " fill="white" points="475.66,549.302 492.608,549.302 492.608,538.601 475.66,538.601 " />
<svg:polygon detid="302127116" count="0" value="0" id="3203024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  3   Id 302127116 " fill="white" points="475.66,538.605 492.608,538.605 492.608,533.236 475.66,533.236 " />
<svg:polygon detid="302127372" count="0" value="0" id="3203025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  3   Id 302127372 " fill="white" points="475.66,527.907 492.608,527.907 492.608,522.539 475.66,522.539 " />
<svg:polygon detid="302127628" count="0" value="0" id="3203026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  3   Id 302127628 " fill="white" points="475.66,517.209 492.608,517.209 492.608,506.508 475.66,506.508 " />
<svg:polygon detid="302127884" count="0" value="0" id="3203027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  3   Id 302127884 " fill="white" points="475.66,506.512 492.608,506.512 492.608,495.81 475.66,495.81 " />
<svg:polygon detid="302128140" count="0" value="0" id="3203028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  3   Id 302128140 " fill="white" points="475.66,495.814 492.608,495.814 492.608,485.113 475.66,485.113 " />
<svg:polygon detid="302128396" count="0" value="0" id="3203029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  3   Id 302128396 " fill="white" points="475.66,485.116 492.608,485.116 492.608,474.415 475.66,474.415 " />
<svg:polygon detid="302128652" count="0" value="0" id="3203030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  3   Id 302128652 " fill="white" points="475.66,474.419 492.608,474.419 492.608,463.717 475.66,463.717 " />
<svg:polygon detid="302128908" count="0" value="0" id="3203031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  3   Id 302128908 " fill="white" points="475.66,463.721 492.608,463.721 492.608,453.02 475.66,453.02 " />
<svg:polygon detid="302129164" count="0" value="0" id="3203032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  3   Id 302129164 " fill="white" points="475.66,453.023 492.608,453.023 492.608,442.322 475.66,442.322 " />
<svg:polygon detid="302121232" count="0" value="0" id="3204001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  4   Id 302121232 " fill="white" points="494.726,784.651 511.674,784.651 511.674,773.95 494.726,773.95 " />
<svg:polygon detid="302121488" count="0" value="0" id="3204002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  4   Id 302121488 " fill="white" points="494.726,773.953 511.674,773.953 511.674,763.252 494.726,763.252 " />
<svg:polygon detid="302121744" count="0" value="0" id="3204003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  4   Id 302121744 " fill="white" points="494.726,763.256 511.674,763.256 511.674,752.555 494.726,752.555 " />
<svg:polygon detid="302122000" count="0" value="0" id="3204004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  4   Id 302122000 " fill="white" points="494.726,752.558 511.674,752.558 511.674,741.857 494.726,741.857 " />
<svg:polygon detid="302122256" count="0" value="0" id="3204005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  4   Id 302122256 " fill="white" points="494.726,741.86 511.674,741.86 511.674,731.159 494.726,731.159 " />
<svg:polygon detid="302122512" count="0" value="0" id="3204006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  4   Id 302122512 " fill="white" points="494.726,731.163 511.674,731.163 511.674,720.461 494.726,720.461 " />
<svg:polygon detid="302122768" count="0" value="0" id="3204007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  4   Id 302122768 " fill="white" points="494.726,720.465 511.674,720.465 511.674,709.764 494.726,709.764 " />
<svg:polygon detid="302123024" count="0" value="0" id="3204008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  4   Id 302123024 " fill="white" points="494.726,709.767 511.674,709.767 511.674,704.399 494.726,704.399 " />
<svg:polygon detid="302123280" count="0" value="0" id="3204009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  4   Id 302123280 " fill="white" points="494.726,699.07 511.674,699.07 511.674,693.701 494.726,693.701 " />
<svg:polygon detid="302123536" count="0" value="0" id="3204010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  4   Id 302123536 " fill="white" points="494.726,688.372 511.674,688.372 511.674,677.671 494.726,677.671 " />
<svg:polygon detid="302123792" count="0" value="0" id="3204011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  4   Id 302123792 " fill="white" points="494.726,677.674 511.674,677.674 511.674,666.973 494.726,666.973 " />
<svg:polygon detid="302124048" count="0" value="0" id="3204012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  4   Id 302124048 " fill="white" points="494.726,666.977 511.674,666.977 511.674,656.275 494.726,656.275 " />
<svg:polygon detid="302124304" count="0" value="0" id="3204013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  4   Id 302124304 " fill="white" points="494.726,656.279 511.674,656.279 511.674,645.578 494.726,645.578 " />
<svg:polygon detid="302124560" count="0" value="0" id="3204014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  4   Id 302124560 " fill="white" points="494.726,645.581 511.674,645.581 511.674,634.88 494.726,634.88 " />
<svg:polygon detid="302124816" count="0" value="0" id="3204015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  4   Id 302124816 " fill="white" points="494.726,634.884 511.674,634.884 511.674,624.182 494.726,624.182 " />
<svg:polygon detid="302125072" count="0" value="0" id="3204016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  4   Id 302125072 " fill="white" points="494.726,624.186 511.674,624.186 511.674,613.485 494.726,613.485 " />
<svg:polygon detid="302125328" count="0" value="0" id="3204017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  4   Id 302125328 " fill="white" points="494.726,613.488 511.674,613.488 511.674,602.787 494.726,602.787 " />
<svg:polygon detid="302125584" count="0" value="0" id="3204018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  4   Id 302125584 " fill="white" points="494.726,602.791 511.674,602.791 511.674,592.089 494.726,592.089 " />
<svg:polygon detid="302125840" count="0" value="0" id="3204019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  4   Id 302125840 " fill="white" points="494.726,592.093 511.674,592.093 511.674,581.392 494.726,581.392 " />
<svg:polygon detid="302126096" count="0" value="0" id="3204020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  4   Id 302126096 " fill="white" points="494.726,581.395 511.674,581.395 511.674,570.694 494.726,570.694 " />
<svg:polygon detid="302126352" count="0" value="0" id="3204021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  4   Id 302126352 " fill="white" points="494.726,570.698 511.674,570.698 511.674,559.996 494.726,559.996 " />
<svg:polygon detid="302126608" count="0" value="0" id="3204022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  4   Id 302126608 " fill="white" points="494.726,560 511.674,560 511.674,549.299 494.726,549.299 " />
<svg:polygon detid="302126864" count="0" value="0" id="3204023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  4   Id 302126864 " fill="white" points="494.726,549.302 511.674,549.302 511.674,538.601 494.726,538.601 " />
<svg:polygon detid="302127120" count="0" value="0" id="3204024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  4   Id 302127120 " fill="white" points="494.726,538.605 511.674,538.605 511.674,533.236 494.726,533.236 " />
<svg:polygon detid="302127376" count="0" value="0" id="3204025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  4   Id 302127376 " fill="white" points="494.726,527.907 511.674,527.907 511.674,522.539 494.726,522.539 " />
<svg:polygon detid="302127632" count="0" value="0" id="3204026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  4   Id 302127632 " fill="white" points="494.726,517.209 511.674,517.209 511.674,506.508 494.726,506.508 " />
<svg:polygon detid="302127888" count="0" value="0" id="3204027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  4   Id 302127888 " fill="white" points="494.726,506.512 511.674,506.512 511.674,495.81 494.726,495.81 " />
<svg:polygon detid="302128144" count="0" value="0" id="3204028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  4   Id 302128144 " fill="white" points="494.726,495.814 511.674,495.814 511.674,485.113 494.726,485.113 " />
<svg:polygon detid="302128400" count="0" value="0" id="3204029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  4   Id 302128400 " fill="white" points="494.726,485.116 511.674,485.116 511.674,474.415 494.726,474.415 " />
<svg:polygon detid="302128656" count="0" value="0" id="3204030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  4   Id 302128656 " fill="white" points="494.726,474.419 511.674,474.419 511.674,463.717 494.726,463.717 " />
<svg:polygon detid="302128912" count="0" value="0" id="3204031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  4   Id 302128912 " fill="white" points="494.726,463.721 511.674,463.721 511.674,453.02 494.726,453.02 " />
<svg:polygon detid="302129168" count="0" value="0" id="3204032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  4   Id 302129168 " fill="white" points="494.726,453.023 511.674,453.023 511.674,442.322 494.726,442.322 " />
<svg:polygon detid="302121236" count="0" value="0" id="3205001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  5   Id 302121236 " fill="white" points="513.792,784.651 530.74,784.651 530.74,773.95 513.792,773.95 " />
<svg:polygon detid="302121492" count="0" value="0" id="3205002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  5   Id 302121492 " fill="white" points="513.792,773.953 530.74,773.953 530.74,763.252 513.792,763.252 " />
<svg:polygon detid="302121748" count="0" value="0" id="3205003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  5   Id 302121748 " fill="white" points="513.792,763.256 530.74,763.256 530.74,752.555 513.792,752.555 " />
<svg:polygon detid="302122004" count="0" value="0" id="3205004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  5   Id 302122004 " fill="white" points="513.792,752.558 530.74,752.558 530.74,741.857 513.792,741.857 " />
<svg:polygon detid="302122260" count="0" value="0" id="3205005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  5   Id 302122260 " fill="white" points="513.792,741.86 530.74,741.86 530.74,731.159 513.792,731.159 " />
<svg:polygon detid="302122516" count="0" value="0" id="3205006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  5   Id 302122516 " fill="white" points="513.792,731.163 530.74,731.163 530.74,720.461 513.792,720.461 " />
<svg:polygon detid="302122772" count="0" value="0" id="3205007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  5   Id 302122772 " fill="white" points="513.792,720.465 530.74,720.465 530.74,709.764 513.792,709.764 " />
<svg:polygon detid="302123028" count="0" value="0" id="3205008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  5   Id 302123028 " fill="white" points="513.792,709.767 530.74,709.767 530.74,704.399 513.792,704.399 " />
<svg:polygon detid="302123284" count="0" value="0" id="3205009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  5   Id 302123284 " fill="white" points="513.792,699.07 530.74,699.07 530.74,693.701 513.792,693.701 " />
<svg:polygon detid="302123540" count="0" value="0" id="3205010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  5   Id 302123540 " fill="white" points="513.792,688.372 530.74,688.372 530.74,677.671 513.792,677.671 " />
<svg:polygon detid="302123796" count="0" value="0" id="3205011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  5   Id 302123796 " fill="white" points="513.792,677.674 530.74,677.674 530.74,666.973 513.792,666.973 " />
<svg:polygon detid="302124052" count="0" value="0" id="3205012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  5   Id 302124052 " fill="white" points="513.792,666.977 530.74,666.977 530.74,656.275 513.792,656.275 " />
<svg:polygon detid="302124308" count="0" value="0" id="3205013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  5   Id 302124308 " fill="white" points="513.792,656.279 530.74,656.279 530.74,645.578 513.792,645.578 " />
<svg:polygon detid="302124564" count="0" value="0" id="3205014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  5   Id 302124564 " fill="white" points="513.792,645.581 530.74,645.581 530.74,634.88 513.792,634.88 " />
<svg:polygon detid="302124820" count="0" value="0" id="3205015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  5   Id 302124820 " fill="white" points="513.792,634.884 530.74,634.884 530.74,624.182 513.792,624.182 " />
<svg:polygon detid="302125076" count="0" value="0" id="3205016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  5   Id 302125076 " fill="white" points="513.792,624.186 530.74,624.186 530.74,613.485 513.792,613.485 " />
<svg:polygon detid="302125332" count="0" value="0" id="3205017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  5   Id 302125332 " fill="white" points="513.792,613.488 530.74,613.488 530.74,602.787 513.792,602.787 " />
<svg:polygon detid="302125588" count="0" value="0" id="3205018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  5   Id 302125588 " fill="white" points="513.792,602.791 530.74,602.791 530.74,592.089 513.792,592.089 " />
<svg:polygon detid="302125844" count="0" value="0" id="3205019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  5   Id 302125844 " fill="white" points="513.792,592.093 530.74,592.093 530.74,581.392 513.792,581.392 " />
<svg:polygon detid="302126100" count="0" value="0" id="3205020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  5   Id 302126100 " fill="white" points="513.792,581.395 530.74,581.395 530.74,570.694 513.792,570.694 " />
<svg:polygon detid="302126356" count="0" value="0" id="3205021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  5   Id 302126356 " fill="white" points="513.792,570.698 530.74,570.698 530.74,559.996 513.792,559.996 " />
<svg:polygon detid="302126612" count="0" value="0" id="3205022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  5   Id 302126612 " fill="white" points="513.792,560 530.74,560 530.74,549.299 513.792,549.299 " />
<svg:polygon detid="302126868" count="0" value="0" id="3205023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  5   Id 302126868 " fill="white" points="513.792,549.302 530.74,549.302 530.74,538.601 513.792,538.601 " />
<svg:polygon detid="302127124" count="0" value="0" id="3205024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  5   Id 302127124 " fill="white" points="513.792,538.605 530.74,538.605 530.74,533.236 513.792,533.236 " />
<svg:polygon detid="302127380" count="0" value="0" id="3205025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  5   Id 302127380 " fill="white" points="513.792,527.907 530.74,527.907 530.74,522.539 513.792,522.539 " />
<svg:polygon detid="302127636" count="0" value="0" id="3205026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  5   Id 302127636 " fill="white" points="513.792,517.209 530.74,517.209 530.74,506.508 513.792,506.508 " />
<svg:polygon detid="302127892" count="0" value="0" id="3205027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  5   Id 302127892 " fill="white" points="513.792,506.512 530.74,506.512 530.74,495.81 513.792,495.81 " />
<svg:polygon detid="302128148" count="0" value="0" id="3205028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  5   Id 302128148 " fill="white" points="513.792,495.814 530.74,495.814 530.74,485.113 513.792,485.113 " />
<svg:polygon detid="302128404" count="0" value="0" id="3205029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  5   Id 302128404 " fill="white" points="513.792,485.116 530.74,485.116 530.74,474.415 513.792,474.415 " />
<svg:polygon detid="302128660" count="0" value="0" id="3205030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  5   Id 302128660 " fill="white" points="513.792,474.419 530.74,474.419 530.74,463.717 513.792,463.717 " />
<svg:polygon detid="302128916" count="0" value="0" id="3205031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  5   Id 302128916 " fill="white" points="513.792,463.721 530.74,463.721 530.74,453.02 513.792,453.02 " />
<svg:polygon detid="302129172" count="0" value="0" id="3205032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  5   Id 302129172 " fill="white" points="513.792,453.023 530.74,453.023 530.74,442.322 513.792,442.322 " />
<svg:polygon detid="302121240" count="0" value="0" id="3206001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  6   Id 302121240 " fill="white" points="532.858,784.651 549.806,784.651 549.806,773.95 532.858,773.95 " />
<svg:polygon detid="302121496" count="0" value="0" id="3206002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  6   Id 302121496 " fill="white" points="532.858,773.953 549.806,773.953 549.806,763.252 532.858,763.252 " />
<svg:polygon detid="302121752" count="0" value="0" id="3206003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  6   Id 302121752 " fill="white" points="532.858,763.256 549.806,763.256 549.806,752.555 532.858,752.555 " />
<svg:polygon detid="302122008" count="0" value="0" id="3206004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  6   Id 302122008 " fill="white" points="532.858,752.558 549.806,752.558 549.806,741.857 532.858,741.857 " />
<svg:polygon detid="302122264" count="0" value="0" id="3206005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  6   Id 302122264 " fill="white" points="532.858,741.86 549.806,741.86 549.806,731.159 532.858,731.159 " />
<svg:polygon detid="302122520" count="0" value="0" id="3206006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  6   Id 302122520 " fill="white" points="532.858,731.163 549.806,731.163 549.806,720.461 532.858,720.461 " />
<svg:polygon detid="302122776" count="0" value="0" id="3206007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  6   Id 302122776 " fill="white" points="532.858,720.465 549.806,720.465 549.806,709.764 532.858,709.764 " />
<svg:polygon detid="302123032" count="0" value="0" id="3206008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  6   Id 302123032 " fill="white" points="532.858,709.767 549.806,709.767 549.806,704.399 532.858,704.399 " />
<svg:polygon detid="302123288" count="0" value="0" id="3206009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  6   Id 302123288 " fill="white" points="532.858,699.07 549.806,699.07 549.806,693.701 532.858,693.701 " />
<svg:polygon detid="302123544" count="0" value="0" id="3206010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  6   Id 302123544 " fill="white" points="532.858,688.372 549.806,688.372 549.806,677.671 532.858,677.671 " />
<svg:polygon detid="302123800" count="0" value="0" id="3206011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  6   Id 302123800 " fill="white" points="532.858,677.674 549.806,677.674 549.806,666.973 532.858,666.973 " />
<svg:polygon detid="302124056" count="0" value="0" id="3206012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  6   Id 302124056 " fill="white" points="532.858,666.977 549.806,666.977 549.806,656.275 532.858,656.275 " />
<svg:polygon detid="302124312" count="0" value="0" id="3206013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  6   Id 302124312 " fill="white" points="532.858,656.279 549.806,656.279 549.806,645.578 532.858,645.578 " />
<svg:polygon detid="302124568" count="0" value="0" id="3206014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  6   Id 302124568 " fill="white" points="532.858,645.581 549.806,645.581 549.806,634.88 532.858,634.88 " />
<svg:polygon detid="302124824" count="0" value="0" id="3206015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  6   Id 302124824 " fill="white" points="532.858,634.884 549.806,634.884 549.806,624.182 532.858,624.182 " />
<svg:polygon detid="302125080" count="0" value="0" id="3206016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  6   Id 302125080 " fill="white" points="532.858,624.186 549.806,624.186 549.806,613.485 532.858,613.485 " />
<svg:polygon detid="302125336" count="0" value="0" id="3206017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  6   Id 302125336 " fill="white" points="532.858,613.488 549.806,613.488 549.806,602.787 532.858,602.787 " />
<svg:polygon detid="302125592" count="0" value="0" id="3206018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  6   Id 302125592 " fill="white" points="532.858,602.791 549.806,602.791 549.806,592.089 532.858,592.089 " />
<svg:polygon detid="302125848" count="0" value="0" id="3206019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  6   Id 302125848 " fill="white" points="532.858,592.093 549.806,592.093 549.806,581.392 532.858,581.392 " />
<svg:polygon detid="302126104" count="0" value="0" id="3206020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  6   Id 302126104 " fill="white" points="532.858,581.395 549.806,581.395 549.806,570.694 532.858,570.694 " />
<svg:polygon detid="302126360" count="0" value="0" id="3206021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  6   Id 302126360 " fill="white" points="532.858,570.698 549.806,570.698 549.806,559.996 532.858,559.996 " />
<svg:polygon detid="302126616" count="0" value="0" id="3206022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  6   Id 302126616 " fill="white" points="532.858,560 549.806,560 549.806,549.299 532.858,549.299 " />
<svg:polygon detid="302126872" count="0" value="0" id="3206023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  6   Id 302126872 " fill="white" points="532.858,549.302 549.806,549.302 549.806,538.601 532.858,538.601 " />
<svg:polygon detid="302127128" count="0" value="0" id="3206024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  6   Id 302127128 " fill="white" points="532.858,538.605 549.806,538.605 549.806,533.236 532.858,533.236 " />
<svg:polygon detid="302127384" count="0" value="0" id="3206025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  6   Id 302127384 " fill="white" points="532.858,527.907 549.806,527.907 549.806,522.539 532.858,522.539 " />
<svg:polygon detid="302127640" count="0" value="0" id="3206026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  6   Id 302127640 " fill="white" points="532.858,517.209 549.806,517.209 549.806,506.508 532.858,506.508 " />
<svg:polygon detid="302127896" count="0" value="0" id="3206027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  6   Id 302127896 " fill="white" points="532.858,506.512 549.806,506.512 549.806,495.81 532.858,495.81 " />
<svg:polygon detid="302128152" count="0" value="0" id="3206028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  6   Id 302128152 " fill="white" points="532.858,495.814 549.806,495.814 549.806,485.113 532.858,485.113 " />
<svg:polygon detid="302128408" count="0" value="0" id="3206029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  6   Id 302128408 " fill="white" points="532.858,485.116 549.806,485.116 549.806,474.415 532.858,474.415 " />
<svg:polygon detid="302128664" count="0" value="0" id="3206030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  6   Id 302128664 " fill="white" points="532.858,474.419 549.806,474.419 549.806,463.717 532.858,463.717 " />
<svg:polygon detid="302128920" count="0" value="0" id="3206031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  6   Id 302128920 " fill="white" points="532.858,463.721 549.806,463.721 549.806,453.02 532.858,453.02 " />
<svg:polygon detid="302129176" count="0" value="0" id="3206032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  6   Id 302129176 " fill="white" points="532.858,453.023 549.806,453.023 549.806,442.322 532.858,442.322 " />
<svg:polygon detid="302121244" count="0" value="0" id="3207001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  7   Id 302121244 " fill="white" points="551.925,784.651 568.872,784.651 568.872,773.95 551.925,773.95 " />
<svg:polygon detid="302121500" count="0" value="0" id="3207002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  7   Id 302121500 " fill="white" points="551.925,773.953 568.872,773.953 568.872,763.252 551.925,763.252 " />
<svg:polygon detid="302121756" count="0" value="0" id="3207003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  7   Id 302121756 " fill="white" points="551.925,763.256 568.872,763.256 568.872,752.555 551.925,752.555 " />
<svg:polygon detid="302122012" count="0" value="0" id="3207004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  7   Id 302122012 " fill="white" points="551.925,752.558 568.872,752.558 568.872,741.857 551.925,741.857 " />
<svg:polygon detid="302122268" count="0" value="0" id="3207005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  7   Id 302122268 " fill="white" points="551.925,741.86 568.872,741.86 568.872,731.159 551.925,731.159 " />
<svg:polygon detid="302122524" count="0" value="0" id="3207006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  7   Id 302122524 " fill="white" points="551.925,731.163 568.872,731.163 568.872,720.461 551.925,720.461 " />
<svg:polygon detid="302122780" count="0" value="0" id="3207007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  7   Id 302122780 " fill="white" points="551.925,720.465 568.872,720.465 568.872,709.764 551.925,709.764 " />
<svg:polygon detid="302123036" count="0" value="0" id="3207008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  7   Id 302123036 " fill="white" points="551.925,709.767 568.872,709.767 568.872,704.399 551.925,704.399 " />
<svg:polygon detid="302123292" count="0" value="0" id="3207009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  7   Id 302123292 " fill="white" points="551.925,699.07 568.872,699.07 568.872,693.701 551.925,693.701 " />
<svg:polygon detid="302123548" count="0" value="0" id="3207010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  7   Id 302123548 " fill="white" points="551.925,688.372 568.872,688.372 568.872,677.671 551.925,677.671 " />
<svg:polygon detid="302123804" count="0" value="0" id="3207011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  7   Id 302123804 " fill="white" points="551.925,677.674 568.872,677.674 568.872,666.973 551.925,666.973 " />
<svg:polygon detid="302124060" count="0" value="0" id="3207012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  7   Id 302124060 " fill="white" points="551.925,666.977 568.872,666.977 568.872,656.275 551.925,656.275 " />
<svg:polygon detid="302124316" count="0" value="0" id="3207013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  7   Id 302124316 " fill="white" points="551.925,656.279 568.872,656.279 568.872,645.578 551.925,645.578 " />
<svg:polygon detid="302124572" count="0" value="0" id="3207014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  7   Id 302124572 " fill="white" points="551.925,645.581 568.872,645.581 568.872,634.88 551.925,634.88 " />
<svg:polygon detid="302124828" count="0" value="0" id="3207015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  7   Id 302124828 " fill="white" points="551.925,634.884 568.872,634.884 568.872,624.182 551.925,624.182 " />
<svg:polygon detid="302125084" count="0" value="0" id="3207016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  7   Id 302125084 " fill="white" points="551.925,624.186 568.872,624.186 568.872,613.485 551.925,613.485 " />
<svg:polygon detid="302125340" count="0" value="0" id="3207017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  7   Id 302125340 " fill="white" points="551.925,613.488 568.872,613.488 568.872,602.787 551.925,602.787 " />
<svg:polygon detid="302125596" count="0" value="0" id="3207018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  7   Id 302125596 " fill="white" points="551.925,602.791 568.872,602.791 568.872,592.089 551.925,592.089 " />
<svg:polygon detid="302125852" count="0" value="0" id="3207019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  7   Id 302125852 " fill="white" points="551.925,592.093 568.872,592.093 568.872,581.392 551.925,581.392 " />
<svg:polygon detid="302126108" count="0" value="0" id="3207020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  7   Id 302126108 " fill="white" points="551.925,581.395 568.872,581.395 568.872,570.694 551.925,570.694 " />
<svg:polygon detid="302126364" count="0" value="0" id="3207021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  7   Id 302126364 " fill="white" points="551.925,570.698 568.872,570.698 568.872,559.996 551.925,559.996 " />
<svg:polygon detid="302126620" count="0" value="0" id="3207022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  7   Id 302126620 " fill="white" points="551.925,560 568.872,560 568.872,549.299 551.925,549.299 " />
<svg:polygon detid="302126876" count="0" value="0" id="3207023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  7   Id 302126876 " fill="white" points="551.925,549.302 568.872,549.302 568.872,538.601 551.925,538.601 " />
<svg:polygon detid="302127132" count="0" value="0" id="3207024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  7   Id 302127132 " fill="white" points="551.925,538.605 568.872,538.605 568.872,533.236 551.925,533.236 " />
<svg:polygon detid="302127388" count="0" value="0" id="3207025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  7   Id 302127388 " fill="white" points="551.925,527.907 568.872,527.907 568.872,522.539 551.925,522.539 " />
<svg:polygon detid="302127644" count="0" value="0" id="3207026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  7   Id 302127644 " fill="white" points="551.925,517.209 568.872,517.209 568.872,506.508 551.925,506.508 " />
<svg:polygon detid="302127900" count="0" value="0" id="3207027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  7   Id 302127900 " fill="white" points="551.925,506.512 568.872,506.512 568.872,495.81 551.925,495.81 " />
<svg:polygon detid="302128156" count="0" value="0" id="3207028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  7   Id 302128156 " fill="white" points="551.925,495.814 568.872,495.814 568.872,485.113 551.925,485.113 " />
<svg:polygon detid="302128412" count="0" value="0" id="3207029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  7   Id 302128412 " fill="white" points="551.925,485.116 568.872,485.116 568.872,474.415 551.925,474.415 " />
<svg:polygon detid="302128668" count="0" value="0" id="3207030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  7   Id 302128668 " fill="white" points="551.925,474.419 568.872,474.419 568.872,463.717 551.925,463.717 " />
<svg:polygon detid="302128924" count="0" value="0" id="3207031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  7   Id 302128924 " fill="white" points="551.925,463.721 568.872,463.721 568.872,453.02 551.925,453.02 " />
<svg:polygon detid="302129180" count="0" value="0" id="3207032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  7   Id 302129180 " fill="white" points="551.925,453.023 568.872,453.023 568.872,442.322 551.925,442.322 " />
<svg:polygon detid="302121248" count="0" value="0" id="3208001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 1   module  8   Id 302121248 " fill="white" points="570.991,784.651 587.938,784.651 587.938,773.95 570.991,773.95 " />
<svg:polygon detid="302121504" count="0" value="0" id="3208002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 2   module  8   Id 302121504 " fill="white" points="570.991,773.953 587.938,773.953 587.938,763.252 570.991,763.252 " />
<svg:polygon detid="302121760" count="0" value="0" id="3208003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 3   module  8   Id 302121760 " fill="white" points="570.991,763.256 587.938,763.256 587.938,752.555 570.991,752.555 " />
<svg:polygon detid="302122016" count="0" value="0" id="3208004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 4   module  8   Id 302122016 " fill="white" points="570.991,752.558 587.938,752.558 587.938,741.857 570.991,741.857 " />
<svg:polygon detid="302122272" count="0" value="0" id="3208005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 5   module  8   Id 302122272 " fill="white" points="570.991,741.86 587.938,741.86 587.938,731.159 570.991,731.159 " />
<svg:polygon detid="302122528" count="0" value="0" id="3208006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 6   module  8   Id 302122528 " fill="white" points="570.991,731.163 587.938,731.163 587.938,720.461 570.991,720.461 " />
<svg:polygon detid="302122784" count="0" value="0" id="3208007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 7   module  8   Id 302122784 " fill="white" points="570.991,720.465 587.938,720.465 587.938,709.764 570.991,709.764 " />
<svg:polygon detid="302123040" count="0" value="0" id="3208008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 8   module  8   Id 302123040 " fill="white" points="570.991,709.767 587.938,709.767 587.938,704.399 570.991,704.399 " />
<svg:polygon detid="302123296" count="0" value="0" id="3208009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 9   module  8   Id 302123296 " fill="white" points="570.991,699.07 587.938,699.07 587.938,693.701 570.991,693.701 " />
<svg:polygon detid="302123552" count="0" value="0" id="3208010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 10   module  8   Id 302123552 " fill="white" points="570.991,688.372 587.938,688.372 587.938,677.671 570.991,677.671 " />
<svg:polygon detid="302123808" count="0" value="0" id="3208011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 11   module  8   Id 302123808 " fill="white" points="570.991,677.674 587.938,677.674 587.938,666.973 570.991,666.973 " />
<svg:polygon detid="302124064" count="0" value="0" id="3208012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 12   module  8   Id 302124064 " fill="white" points="570.991,666.977 587.938,666.977 587.938,656.275 570.991,656.275 " />
<svg:polygon detid="302124320" count="0" value="0" id="3208013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 13   module  8   Id 302124320 " fill="white" points="570.991,656.279 587.938,656.279 587.938,645.578 570.991,645.578 " />
<svg:polygon detid="302124576" count="0" value="0" id="3208014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 14   module  8   Id 302124576 " fill="white" points="570.991,645.581 587.938,645.581 587.938,634.88 570.991,634.88 " />
<svg:polygon detid="302124832" count="0" value="0" id="3208015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 15   module  8   Id 302124832 " fill="white" points="570.991,634.884 587.938,634.884 587.938,624.182 570.991,624.182 " />
<svg:polygon detid="302125088" count="0" value="0" id="3208016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 16   module  8   Id 302125088 " fill="white" points="570.991,624.186 587.938,624.186 587.938,613.485 570.991,613.485 " />
<svg:polygon detid="302125344" count="0" value="0" id="3208017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 17   module  8   Id 302125344 " fill="white" points="570.991,613.488 587.938,613.488 587.938,602.787 570.991,602.787 " />
<svg:polygon detid="302125600" count="0" value="0" id="3208018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 18   module  8   Id 302125600 " fill="white" points="570.991,602.791 587.938,602.791 587.938,592.089 570.991,592.089 " />
<svg:polygon detid="302125856" count="0" value="0" id="3208019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 19   module  8   Id 302125856 " fill="white" points="570.991,592.093 587.938,592.093 587.938,581.392 570.991,581.392 " />
<svg:polygon detid="302126112" count="0" value="0" id="3208020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 20   module  8   Id 302126112 " fill="white" points="570.991,581.395 587.938,581.395 587.938,570.694 570.991,570.694 " />
<svg:polygon detid="302126368" count="0" value="0" id="3208021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 21   module  8   Id 302126368 " fill="white" points="570.991,570.698 587.938,570.698 587.938,559.996 570.991,559.996 " />
<svg:polygon detid="302126624" count="0" value="0" id="3208022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 22   module  8   Id 302126624 " fill="white" points="570.991,560 587.938,560 587.938,549.299 570.991,549.299 " />
<svg:polygon detid="302126880" count="0" value="0" id="3208023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 23   module  8   Id 302126880 " fill="white" points="570.991,549.302 587.938,549.302 587.938,538.601 570.991,538.601 " />
<svg:polygon detid="302127136" count="0" value="0" id="3208024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 24   module  8   Id 302127136 " fill="white" points="570.991,538.605 587.938,538.605 587.938,533.236 570.991,533.236 " />
<svg:polygon detid="302127392" count="0" value="0" id="3208025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 25   module  8   Id 302127392 " fill="white" points="570.991,527.907 587.938,527.907 587.938,522.539 570.991,522.539 " />
<svg:polygon detid="302127648" count="0" value="0" id="3208026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 26   module  8   Id 302127648 " fill="white" points="570.991,517.209 587.938,517.209 587.938,506.508 570.991,506.508 " />
<svg:polygon detid="302127904" count="0" value="0" id="3208027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 27   module  8   Id 302127904 " fill="white" points="570.991,506.512 587.938,506.512 587.938,495.81 570.991,495.81 " />
<svg:polygon detid="302128160" count="0" value="0" id="3208028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 28   module  8   Id 302128160 " fill="white" points="570.991,495.814 587.938,495.814 587.938,485.113 570.991,485.113 " />
<svg:polygon detid="302128416" count="0" value="0" id="3208029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 29   module  8   Id 302128416 " fill="white" points="570.991,485.116 587.938,485.116 587.938,474.415 570.991,474.415 " />
<svg:polygon detid="302128672" count="0" value="0" id="3208030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 30   module  8   Id 302128672 " fill="white" points="570.991,474.419 587.938,474.419 587.938,463.717 570.991,463.717 " />
<svg:polygon detid="302128928" count="0" value="0" id="3208031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 31   module  8   Id 302128928 " fill="white" points="570.991,463.721 587.938,463.721 587.938,453.02 570.991,453.02 " />
<svg:polygon detid="302129184" count="0" value="0" id="3208032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 2 ladder 32   module  8   Id 302129184 " fill="white" points="570.991,453.023 587.938,453.023 587.938,442.322 570.991,442.322 " />
<svg:polygon detid="302186756" count="0" value="0" id="3301001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  1   Id 302186756 " fill="white" points="777.528,787.907 794.475,787.907 794.475,780.298 777.528,780.298 " />
<svg:polygon detid="302187012" count="0" value="0" id="3301002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  1   Id 302187012 " fill="white" points="777.528,780.465 794.475,780.465 794.475,772.856 777.528,772.856 " />
<svg:polygon detid="302187268" count="0" value="0" id="3301003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  1   Id 302187268 " fill="white" points="777.528,773.023 794.475,773.023 794.475,765.414 777.528,765.414 " />
<svg:polygon detid="302187524" count="0" value="0" id="3301004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  1   Id 302187524 " fill="white" points="777.528,765.581 794.475,765.581 794.475,757.972 777.528,757.972 " />
<svg:polygon detid="302187780" count="0" value="0" id="3301005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  1   Id 302187780 " fill="white" points="777.528,758.14 794.475,758.14 794.475,750.53 777.528,750.53 " />
<svg:polygon detid="302188036" count="0" value="0" id="3301006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  1   Id 302188036 " fill="white" points="777.528,750.698 794.475,750.698 794.475,743.088 777.528,743.088 " />
<svg:polygon detid="302188292" count="0" value="0" id="3301007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  1   Id 302188292 " fill="white" points="777.528,743.256 794.475,743.256 794.475,735.646 777.528,735.646 " />
<svg:polygon detid="302188548" count="0" value="0" id="3301008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  1   Id 302188548 " fill="white" points="777.528,735.814 794.475,735.814 794.475,728.205 777.528,728.205 " />
<svg:polygon detid="302188804" count="0" value="0" id="3301009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  1   Id 302188804 " fill="white" points="777.528,728.372 794.475,728.372 794.475,720.763 777.528,720.763 " />
<svg:polygon detid="302189060" count="0" value="0" id="3301010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  1   Id 302189060 " fill="white" points="777.528,720.93 794.475,720.93 794.475,713.321 777.528,713.321 " />
<svg:polygon detid="302189316" count="0" value="0" id="3301011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  1   Id 302189316 " fill="white" points="777.528,713.488 794.475,713.488 794.475,709.677 777.528,709.677 " />
<svg:polygon detid="302189572" count="0" value="0" id="3301012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  1   Id 302189572 " fill="white" points="777.528,706.047 794.475,706.047 794.475,702.235 777.528,702.235 " />
<svg:polygon detid="302189828" count="0" value="0" id="3301013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  1   Id 302189828 " fill="white" points="777.528,698.605 794.475,698.605 794.475,690.995 777.528,690.995 " />
<svg:polygon detid="302190084" count="0" value="0" id="3301014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  1   Id 302190084 " fill="white" points="777.528,691.163 794.475,691.163 794.475,683.553 777.528,683.553 " />
<svg:polygon detid="302190340" count="0" value="0" id="3301015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  1   Id 302190340 " fill="white" points="777.528,683.721 794.475,683.721 794.475,676.112 777.528,676.112 " />
<svg:polygon detid="302190596" count="0" value="0" id="3301016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  1   Id 302190596 " fill="white" points="777.528,676.279 794.475,676.279 794.475,668.67 777.528,668.67 " />
<svg:polygon detid="302190852" count="0" value="0" id="3301017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  1   Id 302190852 " fill="white" points="777.528,668.837 794.475,668.837 794.475,661.228 777.528,661.228 " />
<svg:polygon detid="302191108" count="0" value="0" id="3301018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  1   Id 302191108 " fill="white" points="777.528,661.395 794.475,661.395 794.475,653.786 777.528,653.786 " />
<svg:polygon detid="302191364" count="0" value="0" id="3301019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  1   Id 302191364 " fill="white" points="777.528,653.953 794.475,653.953 794.475,646.344 777.528,646.344 " />
<svg:polygon detid="302191620" count="0" value="0" id="3301020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  1   Id 302191620 " fill="white" points="777.528,646.512 794.475,646.512 794.475,638.902 777.528,638.902 " />
<svg:polygon detid="302191876" count="0" value="0" id="3301021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  1   Id 302191876 " fill="white" points="777.528,639.07 794.475,639.07 794.475,631.46 777.528,631.46 " />
<svg:polygon detid="302192132" count="0" value="0" id="3301022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  1   Id 302192132 " fill="white" points="777.528,631.628 794.475,631.628 794.475,624.019 777.528,624.019 " />
<svg:polygon detid="302192388" count="0" value="0" id="3301023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  1   Id 302192388 " fill="white" points="777.528,624.186 794.475,624.186 794.475,616.577 777.528,616.577 " />
<svg:polygon detid="302192644" count="0" value="0" id="3301024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  1   Id 302192644 " fill="white" points="777.528,616.744 794.475,616.744 794.475,609.135 777.528,609.135 " />
<svg:polygon detid="302192900" count="0" value="0" id="3301025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  1   Id 302192900 " fill="white" points="777.528,609.302 794.475,609.302 794.475,601.693 777.528,601.693 " />
<svg:polygon detid="302193156" count="0" value="0" id="3301026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  1   Id 302193156 " fill="white" points="777.528,601.86 794.475,601.86 794.475,594.251 777.528,594.251 " />
<svg:polygon detid="302193412" count="0" value="0" id="3301027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  1   Id 302193412 " fill="white" points="777.528,594.419 794.475,594.419 794.475,586.809 777.528,586.809 " />
<svg:polygon detid="302193668" count="0" value="0" id="3301028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  1   Id 302193668 " fill="white" points="777.528,586.977 794.475,586.977 794.475,579.367 777.528,579.367 " />
<svg:polygon detid="302193924" count="0" value="0" id="3301029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  1   Id 302193924 " fill="white" points="777.528,579.535 794.475,579.535 794.475,571.926 777.528,571.926 " />
<svg:polygon detid="302194180" count="0" value="0" id="3301030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  1   Id 302194180 " fill="white" points="777.528,572.093 794.475,572.093 794.475,564.484 777.528,564.484 " />
<svg:polygon detid="302194436" count="0" value="0" id="3301031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  1   Id 302194436 " fill="white" points="777.528,564.651 794.475,564.651 794.475,557.042 777.528,557.042 " />
<svg:polygon detid="302194692" count="0" value="0" id="3301032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  1   Id 302194692 " fill="white" points="777.528,557.209 794.475,557.209 794.475,549.6 777.528,549.6 " />
<svg:polygon detid="302194948" count="0" value="0" id="3301033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  1   Id 302194948 " fill="white" points="777.528,549.767 794.475,549.767 794.475,545.956 777.528,545.956 " />
<svg:polygon detid="302195204" count="0" value="0" id="3301034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  1   Id 302195204 " fill="white" points="777.528,542.326 794.475,542.326 794.475,538.515 777.528,538.515 " />
<svg:polygon detid="302195460" count="0" value="0" id="3301035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  1   Id 302195460 " fill="white" points="777.528,534.884 794.475,534.884 794.475,527.274 777.528,527.274 " />
<svg:polygon detid="302195716" count="0" value="0" id="3301036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  1   Id 302195716 " fill="white" points="777.528,527.442 794.475,527.442 794.475,519.832 777.528,519.832 " />
<svg:polygon detid="302195972" count="0" value="0" id="3301037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  1   Id 302195972 " fill="white" points="777.528,520 794.475,520 794.475,512.391 777.528,512.391 " />
<svg:polygon detid="302196228" count="0" value="0" id="3301038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  1   Id 302196228 " fill="white" points="777.528,512.558 794.475,512.558 794.475,504.949 777.528,504.949 " />
<svg:polygon detid="302196484" count="0" value="0" id="3301039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  1   Id 302196484 " fill="white" points="777.528,505.116 794.475,505.116 794.475,497.507 777.528,497.507 " />
<svg:polygon detid="302196740" count="0" value="0" id="3301040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  1   Id 302196740 " fill="white" points="777.528,497.674 794.475,497.674 794.475,490.065 777.528,490.065 " />
<svg:polygon detid="302196996" count="0" value="0" id="3301041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  1   Id 302196996 " fill="white" points="777.528,490.233 794.475,490.233 794.475,482.623 777.528,482.623 " />
<svg:polygon detid="302197252" count="0" value="0" id="3301042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  1   Id 302197252 " fill="white" points="777.528,482.791 794.475,482.791 794.475,475.181 777.528,475.181 " />
<svg:polygon detid="302197508" count="0" value="0" id="3301043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  1   Id 302197508 " fill="white" points="777.528,475.349 794.475,475.349 794.475,467.739 777.528,467.739 " />
<svg:polygon detid="302197764" count="0" value="0" id="3301044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  1   Id 302197764 " fill="white" points="777.528,467.907 794.475,467.907 794.475,460.298 777.528,460.298 " />
<svg:polygon detid="302186760" count="0" value="0" id="3302001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  2   Id 302186760 " fill="white" points="796.594,787.907 813.542,787.907 813.542,780.298 796.594,780.298 " />
<svg:polygon detid="302187016" count="0" value="0" id="3302002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  2   Id 302187016 " fill="white" points="796.594,780.465 813.542,780.465 813.542,772.856 796.594,772.856 " />
<svg:polygon detid="302187272" count="0" value="0" id="3302003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  2   Id 302187272 " fill="white" points="796.594,773.023 813.542,773.023 813.542,765.414 796.594,765.414 " />
<svg:polygon detid="302187528" count="0" value="0" id="3302004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  2   Id 302187528 " fill="white" points="796.594,765.581 813.542,765.581 813.542,757.972 796.594,757.972 " />
<svg:polygon detid="302187784" count="0" value="0" id="3302005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  2   Id 302187784 " fill="white" points="796.594,758.14 813.542,758.14 813.542,750.53 796.594,750.53 " />
<svg:polygon detid="302188040" count="0" value="0" id="3302006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  2   Id 302188040 " fill="white" points="796.594,750.698 813.542,750.698 813.542,743.088 796.594,743.088 " />
<svg:polygon detid="302188296" count="0" value="0" id="3302007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  2   Id 302188296 " fill="white" points="796.594,743.256 813.542,743.256 813.542,735.646 796.594,735.646 " />
<svg:polygon detid="302188552" count="0" value="0" id="3302008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  2   Id 302188552 " fill="white" points="796.594,735.814 813.542,735.814 813.542,728.205 796.594,728.205 " />
<svg:polygon detid="302188808" count="0" value="0" id="3302009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  2   Id 302188808 " fill="white" points="796.594,728.372 813.542,728.372 813.542,720.763 796.594,720.763 " />
<svg:polygon detid="302189064" count="0" value="0" id="3302010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  2   Id 302189064 " fill="white" points="796.594,720.93 813.542,720.93 813.542,713.321 796.594,713.321 " />
<svg:polygon detid="302189320" count="0" value="0" id="3302011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  2   Id 302189320 " fill="white" points="796.594,713.488 813.542,713.488 813.542,709.677 796.594,709.677 " />
<svg:polygon detid="302189576" count="0" value="0" id="3302012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  2   Id 302189576 " fill="white" points="796.594,706.047 813.542,706.047 813.542,702.235 796.594,702.235 " />
<svg:polygon detid="302189832" count="0" value="0" id="3302013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  2   Id 302189832 " fill="white" points="796.594,698.605 813.542,698.605 813.542,690.995 796.594,690.995 " />
<svg:polygon detid="302190088" count="0" value="0" id="3302014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  2   Id 302190088 " fill="white" points="796.594,691.163 813.542,691.163 813.542,683.553 796.594,683.553 " />
<svg:polygon detid="302190344" count="0" value="0" id="3302015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  2   Id 302190344 " fill="white" points="796.594,683.721 813.542,683.721 813.542,676.112 796.594,676.112 " />
<svg:polygon detid="302190600" count="0" value="0" id="3302016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  2   Id 302190600 " fill="white" points="796.594,676.279 813.542,676.279 813.542,668.67 796.594,668.67 " />
<svg:polygon detid="302190856" count="0" value="0" id="3302017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  2   Id 302190856 " fill="white" points="796.594,668.837 813.542,668.837 813.542,661.228 796.594,661.228 " />
<svg:polygon detid="302191112" count="0" value="0" id="3302018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  2   Id 302191112 " fill="white" points="796.594,661.395 813.542,661.395 813.542,653.786 796.594,653.786 " />
<svg:polygon detid="302191368" count="0" value="0" id="3302019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  2   Id 302191368 " fill="white" points="796.594,653.953 813.542,653.953 813.542,646.344 796.594,646.344 " />
<svg:polygon detid="302191624" count="0" value="0" id="3302020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  2   Id 302191624 " fill="white" points="796.594,646.512 813.542,646.512 813.542,638.902 796.594,638.902 " />
<svg:polygon detid="302191880" count="0" value="0" id="3302021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  2   Id 302191880 " fill="white" points="796.594,639.07 813.542,639.07 813.542,631.46 796.594,631.46 " />
<svg:polygon detid="302192136" count="0" value="0" id="3302022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  2   Id 302192136 " fill="white" points="796.594,631.628 813.542,631.628 813.542,624.019 796.594,624.019 " />
<svg:polygon detid="302192392" count="0" value="0" id="3302023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  2   Id 302192392 " fill="white" points="796.594,624.186 813.542,624.186 813.542,616.577 796.594,616.577 " />
<svg:polygon detid="302192648" count="0" value="0" id="3302024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  2   Id 302192648 " fill="white" points="796.594,616.744 813.542,616.744 813.542,609.135 796.594,609.135 " />
<svg:polygon detid="302192904" count="0" value="0" id="3302025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  2   Id 302192904 " fill="white" points="796.594,609.302 813.542,609.302 813.542,601.693 796.594,601.693 " />
<svg:polygon detid="302193160" count="0" value="0" id="3302026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  2   Id 302193160 " fill="white" points="796.594,601.86 813.542,601.86 813.542,594.251 796.594,594.251 " />
<svg:polygon detid="302193416" count="0" value="0" id="3302027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  2   Id 302193416 " fill="white" points="796.594,594.419 813.542,594.419 813.542,586.809 796.594,586.809 " />
<svg:polygon detid="302193672" count="0" value="0" id="3302028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  2   Id 302193672 " fill="white" points="796.594,586.977 813.542,586.977 813.542,579.367 796.594,579.367 " />
<svg:polygon detid="302193928" count="0" value="0" id="3302029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  2   Id 302193928 " fill="white" points="796.594,579.535 813.542,579.535 813.542,571.926 796.594,571.926 " />
<svg:polygon detid="302194184" count="0" value="0" id="3302030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  2   Id 302194184 " fill="white" points="796.594,572.093 813.542,572.093 813.542,564.484 796.594,564.484 " />
<svg:polygon detid="302194440" count="0" value="0" id="3302031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  2   Id 302194440 " fill="white" points="796.594,564.651 813.542,564.651 813.542,557.042 796.594,557.042 " />
<svg:polygon detid="302194696" count="0" value="0" id="3302032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  2   Id 302194696 " fill="white" points="796.594,557.209 813.542,557.209 813.542,549.6 796.594,549.6 " />
<svg:polygon detid="302194952" count="0" value="0" id="3302033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  2   Id 302194952 " fill="white" points="796.594,549.767 813.542,549.767 813.542,545.956 796.594,545.956 " />
<svg:polygon detid="302195208" count="0" value="0" id="3302034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  2   Id 302195208 " fill="white" points="796.594,542.326 813.542,542.326 813.542,538.515 796.594,538.515 " />
<svg:polygon detid="302195464" count="0" value="0" id="3302035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  2   Id 302195464 " fill="white" points="796.594,534.884 813.542,534.884 813.542,527.274 796.594,527.274 " />
<svg:polygon detid="302195720" count="0" value="0" id="3302036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  2   Id 302195720 " fill="white" points="796.594,527.442 813.542,527.442 813.542,519.832 796.594,519.832 " />
<svg:polygon detid="302195976" count="0" value="0" id="3302037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  2   Id 302195976 " fill="white" points="796.594,520 813.542,520 813.542,512.391 796.594,512.391 " />
<svg:polygon detid="302196232" count="0" value="0" id="3302038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  2   Id 302196232 " fill="white" points="796.594,512.558 813.542,512.558 813.542,504.949 796.594,504.949 " />
<svg:polygon detid="302196488" count="0" value="0" id="3302039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  2   Id 302196488 " fill="white" points="796.594,505.116 813.542,505.116 813.542,497.507 796.594,497.507 " />
<svg:polygon detid="302196744" count="0" value="0" id="3302040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  2   Id 302196744 " fill="white" points="796.594,497.674 813.542,497.674 813.542,490.065 796.594,490.065 " />
<svg:polygon detid="302197000" count="0" value="0" id="3302041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  2   Id 302197000 " fill="white" points="796.594,490.233 813.542,490.233 813.542,482.623 796.594,482.623 " />
<svg:polygon detid="302197256" count="0" value="0" id="3302042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  2   Id 302197256 " fill="white" points="796.594,482.791 813.542,482.791 813.542,475.181 796.594,475.181 " />
<svg:polygon detid="302197512" count="0" value="0" id="3302043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  2   Id 302197512 " fill="white" points="796.594,475.349 813.542,475.349 813.542,467.739 796.594,467.739 " />
<svg:polygon detid="302197768" count="0" value="0" id="3302044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  2   Id 302197768 " fill="white" points="796.594,467.907 813.542,467.907 813.542,460.298 796.594,460.298 " />
<svg:polygon detid="302186764" count="0" value="0" id="3303001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  3   Id 302186764 " fill="white" points="815.66,787.907 832.608,787.907 832.608,780.298 815.66,780.298 " />
<svg:polygon detid="302187020" count="0" value="0" id="3303002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  3   Id 302187020 " fill="white" points="815.66,780.465 832.608,780.465 832.608,772.856 815.66,772.856 " />
<svg:polygon detid="302187276" count="0" value="0" id="3303003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  3   Id 302187276 " fill="white" points="815.66,773.023 832.608,773.023 832.608,765.414 815.66,765.414 " />
<svg:polygon detid="302187532" count="0" value="0" id="3303004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  3   Id 302187532 " fill="white" points="815.66,765.581 832.608,765.581 832.608,757.972 815.66,757.972 " />
<svg:polygon detid="302187788" count="0" value="0" id="3303005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  3   Id 302187788 " fill="white" points="815.66,758.14 832.608,758.14 832.608,750.53 815.66,750.53 " />
<svg:polygon detid="302188044" count="0" value="0" id="3303006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  3   Id 302188044 " fill="white" points="815.66,750.698 832.608,750.698 832.608,743.088 815.66,743.088 " />
<svg:polygon detid="302188300" count="0" value="0" id="3303007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  3   Id 302188300 " fill="white" points="815.66,743.256 832.608,743.256 832.608,735.646 815.66,735.646 " />
<svg:polygon detid="302188556" count="0" value="0" id="3303008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  3   Id 302188556 " fill="white" points="815.66,735.814 832.608,735.814 832.608,728.205 815.66,728.205 " />
<svg:polygon detid="302188812" count="0" value="0" id="3303009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  3   Id 302188812 " fill="white" points="815.66,728.372 832.608,728.372 832.608,720.763 815.66,720.763 " />
<svg:polygon detid="302189068" count="0" value="0" id="3303010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  3   Id 302189068 " fill="white" points="815.66,720.93 832.608,720.93 832.608,713.321 815.66,713.321 " />
<svg:polygon detid="302189324" count="0" value="0" id="3303011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  3   Id 302189324 " fill="white" points="815.66,713.488 832.608,713.488 832.608,709.677 815.66,709.677 " />
<svg:polygon detid="302189580" count="0" value="0" id="3303012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  3   Id 302189580 " fill="white" points="815.66,706.047 832.608,706.047 832.608,702.235 815.66,702.235 " />
<svg:polygon detid="302189836" count="0" value="0" id="3303013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  3   Id 302189836 " fill="white" points="815.66,698.605 832.608,698.605 832.608,690.995 815.66,690.995 " />
<svg:polygon detid="302190092" count="0" value="0" id="3303014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  3   Id 302190092 " fill="white" points="815.66,691.163 832.608,691.163 832.608,683.553 815.66,683.553 " />
<svg:polygon detid="302190348" count="0" value="0" id="3303015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  3   Id 302190348 " fill="white" points="815.66,683.721 832.608,683.721 832.608,676.112 815.66,676.112 " />
<svg:polygon detid="302190604" count="0" value="0" id="3303016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  3   Id 302190604 " fill="white" points="815.66,676.279 832.608,676.279 832.608,668.67 815.66,668.67 " />
<svg:polygon detid="302190860" count="0" value="0" id="3303017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  3   Id 302190860 " fill="white" points="815.66,668.837 832.608,668.837 832.608,661.228 815.66,661.228 " />
<svg:polygon detid="302191116" count="0" value="0" id="3303018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  3   Id 302191116 " fill="white" points="815.66,661.395 832.608,661.395 832.608,653.786 815.66,653.786 " />
<svg:polygon detid="302191372" count="0" value="0" id="3303019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  3   Id 302191372 " fill="white" points="815.66,653.953 832.608,653.953 832.608,646.344 815.66,646.344 " />
<svg:polygon detid="302191628" count="0" value="0" id="3303020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  3   Id 302191628 " fill="white" points="815.66,646.512 832.608,646.512 832.608,638.902 815.66,638.902 " />
<svg:polygon detid="302191884" count="0" value="0" id="3303021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  3   Id 302191884 " fill="white" points="815.66,639.07 832.608,639.07 832.608,631.46 815.66,631.46 " />
<svg:polygon detid="302192140" count="0" value="0" id="3303022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  3   Id 302192140 " fill="white" points="815.66,631.628 832.608,631.628 832.608,624.019 815.66,624.019 " />
<svg:polygon detid="302192396" count="0" value="0" id="3303023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  3   Id 302192396 " fill="white" points="815.66,624.186 832.608,624.186 832.608,616.577 815.66,616.577 " />
<svg:polygon detid="302192652" count="0" value="0" id="3303024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  3   Id 302192652 " fill="white" points="815.66,616.744 832.608,616.744 832.608,609.135 815.66,609.135 " />
<svg:polygon detid="302192908" count="0" value="0" id="3303025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  3   Id 302192908 " fill="white" points="815.66,609.302 832.608,609.302 832.608,601.693 815.66,601.693 " />
<svg:polygon detid="302193164" count="0" value="0" id="3303026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  3   Id 302193164 " fill="white" points="815.66,601.86 832.608,601.86 832.608,594.251 815.66,594.251 " />
<svg:polygon detid="302193420" count="0" value="0" id="3303027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  3   Id 302193420 " fill="white" points="815.66,594.419 832.608,594.419 832.608,586.809 815.66,586.809 " />
<svg:polygon detid="302193676" count="0" value="0" id="3303028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  3   Id 302193676 " fill="white" points="815.66,586.977 832.608,586.977 832.608,579.367 815.66,579.367 " />
<svg:polygon detid="302193932" count="0" value="0" id="3303029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  3   Id 302193932 " fill="white" points="815.66,579.535 832.608,579.535 832.608,571.926 815.66,571.926 " />
<svg:polygon detid="302194188" count="0" value="0" id="3303030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  3   Id 302194188 " fill="white" points="815.66,572.093 832.608,572.093 832.608,564.484 815.66,564.484 " />
<svg:polygon detid="302194444" count="0" value="0" id="3303031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  3   Id 302194444 " fill="white" points="815.66,564.651 832.608,564.651 832.608,557.042 815.66,557.042 " />
<svg:polygon detid="302194700" count="0" value="0" id="3303032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  3   Id 302194700 " fill="white" points="815.66,557.209 832.608,557.209 832.608,549.6 815.66,549.6 " />
<svg:polygon detid="302194956" count="0" value="0" id="3303033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  3   Id 302194956 " fill="white" points="815.66,549.767 832.608,549.767 832.608,545.956 815.66,545.956 " />
<svg:polygon detid="302195212" count="0" value="0" id="3303034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  3   Id 302195212 " fill="white" points="815.66,542.326 832.608,542.326 832.608,538.515 815.66,538.515 " />
<svg:polygon detid="302195468" count="0" value="0" id="3303035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  3   Id 302195468 " fill="white" points="815.66,534.884 832.608,534.884 832.608,527.274 815.66,527.274 " />
<svg:polygon detid="302195724" count="0" value="0" id="3303036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  3   Id 302195724 " fill="white" points="815.66,527.442 832.608,527.442 832.608,519.832 815.66,519.832 " />
<svg:polygon detid="302195980" count="0" value="0" id="3303037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  3   Id 302195980 " fill="white" points="815.66,520 832.608,520 832.608,512.391 815.66,512.391 " />
<svg:polygon detid="302196236" count="0" value="0" id="3303038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  3   Id 302196236 " fill="white" points="815.66,512.558 832.608,512.558 832.608,504.949 815.66,504.949 " />
<svg:polygon detid="302196492" count="0" value="0" id="3303039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  3   Id 302196492 " fill="white" points="815.66,505.116 832.608,505.116 832.608,497.507 815.66,497.507 " />
<svg:polygon detid="302196748" count="0" value="0" id="3303040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  3   Id 302196748 " fill="white" points="815.66,497.674 832.608,497.674 832.608,490.065 815.66,490.065 " />
<svg:polygon detid="302197004" count="0" value="0" id="3303041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  3   Id 302197004 " fill="white" points="815.66,490.233 832.608,490.233 832.608,482.623 815.66,482.623 " />
<svg:polygon detid="302197260" count="0" value="0" id="3303042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  3   Id 302197260 " fill="white" points="815.66,482.791 832.608,482.791 832.608,475.181 815.66,475.181 " />
<svg:polygon detid="302197516" count="0" value="0" id="3303043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  3   Id 302197516 " fill="white" points="815.66,475.349 832.608,475.349 832.608,467.739 815.66,467.739 " />
<svg:polygon detid="302197772" count="0" value="0" id="3303044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  3   Id 302197772 " fill="white" points="815.66,467.907 832.608,467.907 832.608,460.298 815.66,460.298 " />
<svg:polygon detid="302186768" count="0" value="0" id="3304001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  4   Id 302186768 " fill="white" points="834.726,787.907 851.674,787.907 851.674,780.298 834.726,780.298 " />
<svg:polygon detid="302187024" count="0" value="0" id="3304002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  4   Id 302187024 " fill="white" points="834.726,780.465 851.674,780.465 851.674,772.856 834.726,772.856 " />
<svg:polygon detid="302187280" count="0" value="0" id="3304003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  4   Id 302187280 " fill="white" points="834.726,773.023 851.674,773.023 851.674,765.414 834.726,765.414 " />
<svg:polygon detid="302187536" count="0" value="0" id="3304004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  4   Id 302187536 " fill="white" points="834.726,765.581 851.674,765.581 851.674,757.972 834.726,757.972 " />
<svg:polygon detid="302187792" count="0" value="0" id="3304005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  4   Id 302187792 " fill="white" points="834.726,758.14 851.674,758.14 851.674,750.53 834.726,750.53 " />
<svg:polygon detid="302188048" count="0" value="0" id="3304006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  4   Id 302188048 " fill="white" points="834.726,750.698 851.674,750.698 851.674,743.088 834.726,743.088 " />
<svg:polygon detid="302188304" count="0" value="0" id="3304007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  4   Id 302188304 " fill="white" points="834.726,743.256 851.674,743.256 851.674,735.646 834.726,735.646 " />
<svg:polygon detid="302188560" count="0" value="0" id="3304008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  4   Id 302188560 " fill="white" points="834.726,735.814 851.674,735.814 851.674,728.205 834.726,728.205 " />
<svg:polygon detid="302188816" count="0" value="0" id="3304009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  4   Id 302188816 " fill="white" points="834.726,728.372 851.674,728.372 851.674,720.763 834.726,720.763 " />
<svg:polygon detid="302189072" count="0" value="0" id="3304010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  4   Id 302189072 " fill="white" points="834.726,720.93 851.674,720.93 851.674,713.321 834.726,713.321 " />
<svg:polygon detid="302189328" count="0" value="0" id="3304011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  4   Id 302189328 " fill="white" points="834.726,713.488 851.674,713.488 851.674,709.677 834.726,709.677 " />
<svg:polygon detid="302189584" count="0" value="0" id="3304012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  4   Id 302189584 " fill="white" points="834.726,706.047 851.674,706.047 851.674,702.235 834.726,702.235 " />
<svg:polygon detid="302189840" count="0" value="0" id="3304013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  4   Id 302189840 " fill="white" points="834.726,698.605 851.674,698.605 851.674,690.995 834.726,690.995 " />
<svg:polygon detid="302190096" count="0" value="0" id="3304014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  4   Id 302190096 " fill="white" points="834.726,691.163 851.674,691.163 851.674,683.553 834.726,683.553 " />
<svg:polygon detid="302190352" count="0" value="0" id="3304015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  4   Id 302190352 " fill="white" points="834.726,683.721 851.674,683.721 851.674,676.112 834.726,676.112 " />
<svg:polygon detid="302190608" count="0" value="0" id="3304016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  4   Id 302190608 " fill="white" points="834.726,676.279 851.674,676.279 851.674,668.67 834.726,668.67 " />
<svg:polygon detid="302190864" count="0" value="0" id="3304017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  4   Id 302190864 " fill="white" points="834.726,668.837 851.674,668.837 851.674,661.228 834.726,661.228 " />
<svg:polygon detid="302191120" count="0" value="0" id="3304018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  4   Id 302191120 " fill="white" points="834.726,661.395 851.674,661.395 851.674,653.786 834.726,653.786 " />
<svg:polygon detid="302191376" count="0" value="0" id="3304019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  4   Id 302191376 " fill="white" points="834.726,653.953 851.674,653.953 851.674,646.344 834.726,646.344 " />
<svg:polygon detid="302191632" count="0" value="0" id="3304020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  4   Id 302191632 " fill="white" points="834.726,646.512 851.674,646.512 851.674,638.902 834.726,638.902 " />
<svg:polygon detid="302191888" count="0" value="0" id="3304021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  4   Id 302191888 " fill="white" points="834.726,639.07 851.674,639.07 851.674,631.46 834.726,631.46 " />
<svg:polygon detid="302192144" count="0" value="0" id="3304022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  4   Id 302192144 " fill="white" points="834.726,631.628 851.674,631.628 851.674,624.019 834.726,624.019 " />
<svg:polygon detid="302192400" count="0" value="0" id="3304023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  4   Id 302192400 " fill="white" points="834.726,624.186 851.674,624.186 851.674,616.577 834.726,616.577 " />
<svg:polygon detid="302192656" count="0" value="0" id="3304024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  4   Id 302192656 " fill="white" points="834.726,616.744 851.674,616.744 851.674,609.135 834.726,609.135 " />
<svg:polygon detid="302192912" count="0" value="0" id="3304025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  4   Id 302192912 " fill="white" points="834.726,609.302 851.674,609.302 851.674,601.693 834.726,601.693 " />
<svg:polygon detid="302193168" count="0" value="0" id="3304026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  4   Id 302193168 " fill="white" points="834.726,601.86 851.674,601.86 851.674,594.251 834.726,594.251 " />
<svg:polygon detid="302193424" count="0" value="0" id="3304027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  4   Id 302193424 " fill="white" points="834.726,594.419 851.674,594.419 851.674,586.809 834.726,586.809 " />
<svg:polygon detid="302193680" count="0" value="0" id="3304028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  4   Id 302193680 " fill="white" points="834.726,586.977 851.674,586.977 851.674,579.367 834.726,579.367 " />
<svg:polygon detid="302193936" count="0" value="0" id="3304029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  4   Id 302193936 " fill="white" points="834.726,579.535 851.674,579.535 851.674,571.926 834.726,571.926 " />
<svg:polygon detid="302194192" count="0" value="0" id="3304030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  4   Id 302194192 " fill="white" points="834.726,572.093 851.674,572.093 851.674,564.484 834.726,564.484 " />
<svg:polygon detid="302194448" count="0" value="0" id="3304031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  4   Id 302194448 " fill="white" points="834.726,564.651 851.674,564.651 851.674,557.042 834.726,557.042 " />
<svg:polygon detid="302194704" count="0" value="0" id="3304032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  4   Id 302194704 " fill="white" points="834.726,557.209 851.674,557.209 851.674,549.6 834.726,549.6 " />
<svg:polygon detid="302194960" count="0" value="0" id="3304033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  4   Id 302194960 " fill="white" points="834.726,549.767 851.674,549.767 851.674,545.956 834.726,545.956 " />
<svg:polygon detid="302195216" count="0" value="0" id="3304034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  4   Id 302195216 " fill="white" points="834.726,542.326 851.674,542.326 851.674,538.515 834.726,538.515 " />
<svg:polygon detid="302195472" count="0" value="0" id="3304035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  4   Id 302195472 " fill="white" points="834.726,534.884 851.674,534.884 851.674,527.274 834.726,527.274 " />
<svg:polygon detid="302195728" count="0" value="0" id="3304036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  4   Id 302195728 " fill="white" points="834.726,527.442 851.674,527.442 851.674,519.832 834.726,519.832 " />
<svg:polygon detid="302195984" count="0" value="0" id="3304037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  4   Id 302195984 " fill="white" points="834.726,520 851.674,520 851.674,512.391 834.726,512.391 " />
<svg:polygon detid="302196240" count="0" value="0" id="3304038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  4   Id 302196240 " fill="white" points="834.726,512.558 851.674,512.558 851.674,504.949 834.726,504.949 " />
<svg:polygon detid="302196496" count="0" value="0" id="3304039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  4   Id 302196496 " fill="white" points="834.726,505.116 851.674,505.116 851.674,497.507 834.726,497.507 " />
<svg:polygon detid="302196752" count="0" value="0" id="3304040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  4   Id 302196752 " fill="white" points="834.726,497.674 851.674,497.674 851.674,490.065 834.726,490.065 " />
<svg:polygon detid="302197008" count="0" value="0" id="3304041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  4   Id 302197008 " fill="white" points="834.726,490.233 851.674,490.233 851.674,482.623 834.726,482.623 " />
<svg:polygon detid="302197264" count="0" value="0" id="3304042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  4   Id 302197264 " fill="white" points="834.726,482.791 851.674,482.791 851.674,475.181 834.726,475.181 " />
<svg:polygon detid="302197520" count="0" value="0" id="3304043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  4   Id 302197520 " fill="white" points="834.726,475.349 851.674,475.349 851.674,467.739 834.726,467.739 " />
<svg:polygon detid="302197776" count="0" value="0" id="3304044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  4   Id 302197776 " fill="white" points="834.726,467.907 851.674,467.907 851.674,460.298 834.726,460.298 " />
<svg:polygon detid="302186772" count="0" value="0" id="3305001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  5   Id 302186772 " fill="white" points="853.792,787.907 870.74,787.907 870.74,780.298 853.792,780.298 " />
<svg:polygon detid="302187028" count="0" value="0" id="3305002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  5   Id 302187028 " fill="white" points="853.792,780.465 870.74,780.465 870.74,772.856 853.792,772.856 " />
<svg:polygon detid="302187284" count="0" value="0" id="3305003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  5   Id 302187284 " fill="white" points="853.792,773.023 870.74,773.023 870.74,765.414 853.792,765.414 " />
<svg:polygon detid="302187540" count="0" value="0" id="3305004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  5   Id 302187540 " fill="white" points="853.792,765.581 870.74,765.581 870.74,757.972 853.792,757.972 " />
<svg:polygon detid="302187796" count="0" value="0" id="3305005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  5   Id 302187796 " fill="white" points="853.792,758.14 870.74,758.14 870.74,750.53 853.792,750.53 " />
<svg:polygon detid="302188052" count="0" value="0" id="3305006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  5   Id 302188052 " fill="white" points="853.792,750.698 870.74,750.698 870.74,743.088 853.792,743.088 " />
<svg:polygon detid="302188308" count="0" value="0" id="3305007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  5   Id 302188308 " fill="white" points="853.792,743.256 870.74,743.256 870.74,735.646 853.792,735.646 " />
<svg:polygon detid="302188564" count="0" value="0" id="3305008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  5   Id 302188564 " fill="white" points="853.792,735.814 870.74,735.814 870.74,728.205 853.792,728.205 " />
<svg:polygon detid="302188820" count="0" value="0" id="3305009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  5   Id 302188820 " fill="white" points="853.792,728.372 870.74,728.372 870.74,720.763 853.792,720.763 " />
<svg:polygon detid="302189076" count="0" value="0" id="3305010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  5   Id 302189076 " fill="white" points="853.792,720.93 870.74,720.93 870.74,713.321 853.792,713.321 " />
<svg:polygon detid="302189332" count="0" value="0" id="3305011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  5   Id 302189332 " fill="white" points="853.792,713.488 870.74,713.488 870.74,709.677 853.792,709.677 " />
<svg:polygon detid="302189588" count="0" value="0" id="3305012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  5   Id 302189588 " fill="white" points="853.792,706.047 870.74,706.047 870.74,702.235 853.792,702.235 " />
<svg:polygon detid="302189844" count="0" value="0" id="3305013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  5   Id 302189844 " fill="white" points="853.792,698.605 870.74,698.605 870.74,690.995 853.792,690.995 " />
<svg:polygon detid="302190100" count="0" value="0" id="3305014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  5   Id 302190100 " fill="white" points="853.792,691.163 870.74,691.163 870.74,683.553 853.792,683.553 " />
<svg:polygon detid="302190356" count="0" value="0" id="3305015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  5   Id 302190356 " fill="white" points="853.792,683.721 870.74,683.721 870.74,676.112 853.792,676.112 " />
<svg:polygon detid="302190612" count="0" value="0" id="3305016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  5   Id 302190612 " fill="white" points="853.792,676.279 870.74,676.279 870.74,668.67 853.792,668.67 " />
<svg:polygon detid="302190868" count="0" value="0" id="3305017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  5   Id 302190868 " fill="white" points="853.792,668.837 870.74,668.837 870.74,661.228 853.792,661.228 " />
<svg:polygon detid="302191124" count="0" value="0" id="3305018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  5   Id 302191124 " fill="white" points="853.792,661.395 870.74,661.395 870.74,653.786 853.792,653.786 " />
<svg:polygon detid="302191380" count="0" value="0" id="3305019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  5   Id 302191380 " fill="white" points="853.792,653.953 870.74,653.953 870.74,646.344 853.792,646.344 " />
<svg:polygon detid="302191636" count="0" value="0" id="3305020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  5   Id 302191636 " fill="white" points="853.792,646.512 870.74,646.512 870.74,638.902 853.792,638.902 " />
<svg:polygon detid="302191892" count="0" value="0" id="3305021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  5   Id 302191892 " fill="white" points="853.792,639.07 870.74,639.07 870.74,631.46 853.792,631.46 " />
<svg:polygon detid="302192148" count="0" value="0" id="3305022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  5   Id 302192148 " fill="white" points="853.792,631.628 870.74,631.628 870.74,624.019 853.792,624.019 " />
<svg:polygon detid="302192404" count="0" value="0" id="3305023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  5   Id 302192404 " fill="white" points="853.792,624.186 870.74,624.186 870.74,616.577 853.792,616.577 " />
<svg:polygon detid="302192660" count="0" value="0" id="3305024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  5   Id 302192660 " fill="white" points="853.792,616.744 870.74,616.744 870.74,609.135 853.792,609.135 " />
<svg:polygon detid="302192916" count="0" value="0" id="3305025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  5   Id 302192916 " fill="white" points="853.792,609.302 870.74,609.302 870.74,601.693 853.792,601.693 " />
<svg:polygon detid="302193172" count="0" value="0" id="3305026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  5   Id 302193172 " fill="white" points="853.792,601.86 870.74,601.86 870.74,594.251 853.792,594.251 " />
<svg:polygon detid="302193428" count="0" value="0" id="3305027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  5   Id 302193428 " fill="white" points="853.792,594.419 870.74,594.419 870.74,586.809 853.792,586.809 " />
<svg:polygon detid="302193684" count="0" value="0" id="3305028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  5   Id 302193684 " fill="white" points="853.792,586.977 870.74,586.977 870.74,579.367 853.792,579.367 " />
<svg:polygon detid="302193940" count="0" value="0" id="3305029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  5   Id 302193940 " fill="white" points="853.792,579.535 870.74,579.535 870.74,571.926 853.792,571.926 " />
<svg:polygon detid="302194196" count="0" value="0" id="3305030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  5   Id 302194196 " fill="white" points="853.792,572.093 870.74,572.093 870.74,564.484 853.792,564.484 " />
<svg:polygon detid="302194452" count="0" value="0" id="3305031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  5   Id 302194452 " fill="white" points="853.792,564.651 870.74,564.651 870.74,557.042 853.792,557.042 " />
<svg:polygon detid="302194708" count="0" value="0" id="3305032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  5   Id 302194708 " fill="white" points="853.792,557.209 870.74,557.209 870.74,549.6 853.792,549.6 " />
<svg:polygon detid="302194964" count="0" value="0" id="3305033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  5   Id 302194964 " fill="white" points="853.792,549.767 870.74,549.767 870.74,545.956 853.792,545.956 " />
<svg:polygon detid="302195220" count="0" value="0" id="3305034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  5   Id 302195220 " fill="white" points="853.792,542.326 870.74,542.326 870.74,538.515 853.792,538.515 " />
<svg:polygon detid="302195476" count="0" value="0" id="3305035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  5   Id 302195476 " fill="white" points="853.792,534.884 870.74,534.884 870.74,527.274 853.792,527.274 " />
<svg:polygon detid="302195732" count="0" value="0" id="3305036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  5   Id 302195732 " fill="white" points="853.792,527.442 870.74,527.442 870.74,519.832 853.792,519.832 " />
<svg:polygon detid="302195988" count="0" value="0" id="3305037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  5   Id 302195988 " fill="white" points="853.792,520 870.74,520 870.74,512.391 853.792,512.391 " />
<svg:polygon detid="302196244" count="0" value="0" id="3305038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  5   Id 302196244 " fill="white" points="853.792,512.558 870.74,512.558 870.74,504.949 853.792,504.949 " />
<svg:polygon detid="302196500" count="0" value="0" id="3305039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  5   Id 302196500 " fill="white" points="853.792,505.116 870.74,505.116 870.74,497.507 853.792,497.507 " />
<svg:polygon detid="302196756" count="0" value="0" id="3305040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  5   Id 302196756 " fill="white" points="853.792,497.674 870.74,497.674 870.74,490.065 853.792,490.065 " />
<svg:polygon detid="302197012" count="0" value="0" id="3305041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  5   Id 302197012 " fill="white" points="853.792,490.233 870.74,490.233 870.74,482.623 853.792,482.623 " />
<svg:polygon detid="302197268" count="0" value="0" id="3305042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  5   Id 302197268 " fill="white" points="853.792,482.791 870.74,482.791 870.74,475.181 853.792,475.181 " />
<svg:polygon detid="302197524" count="0" value="0" id="3305043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  5   Id 302197524 " fill="white" points="853.792,475.349 870.74,475.349 870.74,467.739 853.792,467.739 " />
<svg:polygon detid="302197780" count="0" value="0" id="3305044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  5   Id 302197780 " fill="white" points="853.792,467.907 870.74,467.907 870.74,460.298 853.792,460.298 " />
<svg:polygon detid="302186776" count="0" value="0" id="3306001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  6   Id 302186776 " fill="white" points="872.858,787.907 889.806,787.907 889.806,780.298 872.858,780.298 " />
<svg:polygon detid="302187032" count="0" value="0" id="3306002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  6   Id 302187032 " fill="white" points="872.858,780.465 889.806,780.465 889.806,772.856 872.858,772.856 " />
<svg:polygon detid="302187288" count="0" value="0" id="3306003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  6   Id 302187288 " fill="white" points="872.858,773.023 889.806,773.023 889.806,765.414 872.858,765.414 " />
<svg:polygon detid="302187544" count="0" value="0" id="3306004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  6   Id 302187544 " fill="white" points="872.858,765.581 889.806,765.581 889.806,757.972 872.858,757.972 " />
<svg:polygon detid="302187800" count="0" value="0" id="3306005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  6   Id 302187800 " fill="white" points="872.858,758.14 889.806,758.14 889.806,750.53 872.858,750.53 " />
<svg:polygon detid="302188056" count="0" value="0" id="3306006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  6   Id 302188056 " fill="white" points="872.858,750.698 889.806,750.698 889.806,743.088 872.858,743.088 " />
<svg:polygon detid="302188312" count="0" value="0" id="3306007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  6   Id 302188312 " fill="white" points="872.858,743.256 889.806,743.256 889.806,735.646 872.858,735.646 " />
<svg:polygon detid="302188568" count="0" value="0" id="3306008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  6   Id 302188568 " fill="white" points="872.858,735.814 889.806,735.814 889.806,728.205 872.858,728.205 " />
<svg:polygon detid="302188824" count="0" value="0" id="3306009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  6   Id 302188824 " fill="white" points="872.858,728.372 889.806,728.372 889.806,720.763 872.858,720.763 " />
<svg:polygon detid="302189080" count="0" value="0" id="3306010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  6   Id 302189080 " fill="white" points="872.858,720.93 889.806,720.93 889.806,713.321 872.858,713.321 " />
<svg:polygon detid="302189336" count="0" value="0" id="3306011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  6   Id 302189336 " fill="white" points="872.858,713.488 889.806,713.488 889.806,709.677 872.858,709.677 " />
<svg:polygon detid="302189592" count="0" value="0" id="3306012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  6   Id 302189592 " fill="white" points="872.858,706.047 889.806,706.047 889.806,702.235 872.858,702.235 " />
<svg:polygon detid="302189848" count="0" value="0" id="3306013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  6   Id 302189848 " fill="white" points="872.858,698.605 889.806,698.605 889.806,690.995 872.858,690.995 " />
<svg:polygon detid="302190104" count="0" value="0" id="3306014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  6   Id 302190104 " fill="white" points="872.858,691.163 889.806,691.163 889.806,683.553 872.858,683.553 " />
<svg:polygon detid="302190360" count="0" value="0" id="3306015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  6   Id 302190360 " fill="white" points="872.858,683.721 889.806,683.721 889.806,676.112 872.858,676.112 " />
<svg:polygon detid="302190616" count="0" value="0" id="3306016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  6   Id 302190616 " fill="white" points="872.858,676.279 889.806,676.279 889.806,668.67 872.858,668.67 " />
<svg:polygon detid="302190872" count="0" value="0" id="3306017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  6   Id 302190872 " fill="white" points="872.858,668.837 889.806,668.837 889.806,661.228 872.858,661.228 " />
<svg:polygon detid="302191128" count="0" value="0" id="3306018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  6   Id 302191128 " fill="white" points="872.858,661.395 889.806,661.395 889.806,653.786 872.858,653.786 " />
<svg:polygon detid="302191384" count="0" value="0" id="3306019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  6   Id 302191384 " fill="white" points="872.858,653.953 889.806,653.953 889.806,646.344 872.858,646.344 " />
<svg:polygon detid="302191640" count="0" value="0" id="3306020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  6   Id 302191640 " fill="white" points="872.858,646.512 889.806,646.512 889.806,638.902 872.858,638.902 " />
<svg:polygon detid="302191896" count="0" value="0" id="3306021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  6   Id 302191896 " fill="white" points="872.858,639.07 889.806,639.07 889.806,631.46 872.858,631.46 " />
<svg:polygon detid="302192152" count="0" value="0" id="3306022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  6   Id 302192152 " fill="white" points="872.858,631.628 889.806,631.628 889.806,624.019 872.858,624.019 " />
<svg:polygon detid="302192408" count="0" value="0" id="3306023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  6   Id 302192408 " fill="white" points="872.858,624.186 889.806,624.186 889.806,616.577 872.858,616.577 " />
<svg:polygon detid="302192664" count="0" value="0" id="3306024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  6   Id 302192664 " fill="white" points="872.858,616.744 889.806,616.744 889.806,609.135 872.858,609.135 " />
<svg:polygon detid="302192920" count="0" value="0" id="3306025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  6   Id 302192920 " fill="white" points="872.858,609.302 889.806,609.302 889.806,601.693 872.858,601.693 " />
<svg:polygon detid="302193176" count="0" value="0" id="3306026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  6   Id 302193176 " fill="white" points="872.858,601.86 889.806,601.86 889.806,594.251 872.858,594.251 " />
<svg:polygon detid="302193432" count="0" value="0" id="3306027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  6   Id 302193432 " fill="white" points="872.858,594.419 889.806,594.419 889.806,586.809 872.858,586.809 " />
<svg:polygon detid="302193688" count="0" value="0" id="3306028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  6   Id 302193688 " fill="white" points="872.858,586.977 889.806,586.977 889.806,579.367 872.858,579.367 " />
<svg:polygon detid="302193944" count="0" value="0" id="3306029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  6   Id 302193944 " fill="white" points="872.858,579.535 889.806,579.535 889.806,571.926 872.858,571.926 " />
<svg:polygon detid="302194200" count="0" value="0" id="3306030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  6   Id 302194200 " fill="white" points="872.858,572.093 889.806,572.093 889.806,564.484 872.858,564.484 " />
<svg:polygon detid="302194456" count="0" value="0" id="3306031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  6   Id 302194456 " fill="white" points="872.858,564.651 889.806,564.651 889.806,557.042 872.858,557.042 " />
<svg:polygon detid="302194712" count="0" value="0" id="3306032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  6   Id 302194712 " fill="white" points="872.858,557.209 889.806,557.209 889.806,549.6 872.858,549.6 " />
<svg:polygon detid="302194968" count="0" value="0" id="3306033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  6   Id 302194968 " fill="white" points="872.858,549.767 889.806,549.767 889.806,545.956 872.858,545.956 " />
<svg:polygon detid="302195224" count="0" value="0" id="3306034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  6   Id 302195224 " fill="white" points="872.858,542.326 889.806,542.326 889.806,538.515 872.858,538.515 " />
<svg:polygon detid="302195480" count="0" value="0" id="3306035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  6   Id 302195480 " fill="white" points="872.858,534.884 889.806,534.884 889.806,527.274 872.858,527.274 " />
<svg:polygon detid="302195736" count="0" value="0" id="3306036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  6   Id 302195736 " fill="white" points="872.858,527.442 889.806,527.442 889.806,519.832 872.858,519.832 " />
<svg:polygon detid="302195992" count="0" value="0" id="3306037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  6   Id 302195992 " fill="white" points="872.858,520 889.806,520 889.806,512.391 872.858,512.391 " />
<svg:polygon detid="302196248" count="0" value="0" id="3306038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  6   Id 302196248 " fill="white" points="872.858,512.558 889.806,512.558 889.806,504.949 872.858,504.949 " />
<svg:polygon detid="302196504" count="0" value="0" id="3306039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  6   Id 302196504 " fill="white" points="872.858,505.116 889.806,505.116 889.806,497.507 872.858,497.507 " />
<svg:polygon detid="302196760" count="0" value="0" id="3306040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  6   Id 302196760 " fill="white" points="872.858,497.674 889.806,497.674 889.806,490.065 872.858,490.065 " />
<svg:polygon detid="302197016" count="0" value="0" id="3306041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  6   Id 302197016 " fill="white" points="872.858,490.233 889.806,490.233 889.806,482.623 872.858,482.623 " />
<svg:polygon detid="302197272" count="0" value="0" id="3306042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  6   Id 302197272 " fill="white" points="872.858,482.791 889.806,482.791 889.806,475.181 872.858,475.181 " />
<svg:polygon detid="302197528" count="0" value="0" id="3306043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  6   Id 302197528 " fill="white" points="872.858,475.349 889.806,475.349 889.806,467.739 872.858,467.739 " />
<svg:polygon detid="302197784" count="0" value="0" id="3306044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  6   Id 302197784 " fill="white" points="872.858,467.907 889.806,467.907 889.806,460.298 872.858,460.298 " />
<svg:polygon detid="302186780" count="0" value="0" id="3307001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  7   Id 302186780 " fill="white" points="891.925,787.907 908.872,787.907 908.872,780.298 891.925,780.298 " />
<svg:polygon detid="302187036" count="0" value="0" id="3307002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  7   Id 302187036 " fill="white" points="891.925,780.465 908.872,780.465 908.872,772.856 891.925,772.856 " />
<svg:polygon detid="302187292" count="0" value="0" id="3307003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  7   Id 302187292 " fill="white" points="891.925,773.023 908.872,773.023 908.872,765.414 891.925,765.414 " />
<svg:polygon detid="302187548" count="0" value="0" id="3307004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  7   Id 302187548 " fill="white" points="891.925,765.581 908.872,765.581 908.872,757.972 891.925,757.972 " />
<svg:polygon detid="302187804" count="0" value="0" id="3307005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  7   Id 302187804 " fill="white" points="891.925,758.14 908.872,758.14 908.872,750.53 891.925,750.53 " />
<svg:polygon detid="302188060" count="0" value="0" id="3307006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  7   Id 302188060 " fill="white" points="891.925,750.698 908.872,750.698 908.872,743.088 891.925,743.088 " />
<svg:polygon detid="302188316" count="0" value="0" id="3307007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  7   Id 302188316 " fill="white" points="891.925,743.256 908.872,743.256 908.872,735.646 891.925,735.646 " />
<svg:polygon detid="302188572" count="0" value="0" id="3307008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  7   Id 302188572 " fill="white" points="891.925,735.814 908.872,735.814 908.872,728.205 891.925,728.205 " />
<svg:polygon detid="302188828" count="0" value="0" id="3307009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  7   Id 302188828 " fill="white" points="891.925,728.372 908.872,728.372 908.872,720.763 891.925,720.763 " />
<svg:polygon detid="302189084" count="0" value="0" id="3307010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  7   Id 302189084 " fill="white" points="891.925,720.93 908.872,720.93 908.872,713.321 891.925,713.321 " />
<svg:polygon detid="302189340" count="0" value="0" id="3307011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  7   Id 302189340 " fill="white" points="891.925,713.488 908.872,713.488 908.872,709.677 891.925,709.677 " />
<svg:polygon detid="302189596" count="0" value="0" id="3307012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  7   Id 302189596 " fill="white" points="891.925,706.047 908.872,706.047 908.872,702.235 891.925,702.235 " />
<svg:polygon detid="302189852" count="0" value="0" id="3307013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  7   Id 302189852 " fill="white" points="891.925,698.605 908.872,698.605 908.872,690.995 891.925,690.995 " />
<svg:polygon detid="302190108" count="0" value="0" id="3307014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  7   Id 302190108 " fill="white" points="891.925,691.163 908.872,691.163 908.872,683.553 891.925,683.553 " />
<svg:polygon detid="302190364" count="0" value="0" id="3307015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  7   Id 302190364 " fill="white" points="891.925,683.721 908.872,683.721 908.872,676.112 891.925,676.112 " />
<svg:polygon detid="302190620" count="0" value="0" id="3307016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  7   Id 302190620 " fill="white" points="891.925,676.279 908.872,676.279 908.872,668.67 891.925,668.67 " />
<svg:polygon detid="302190876" count="0" value="0" id="3307017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  7   Id 302190876 " fill="white" points="891.925,668.837 908.872,668.837 908.872,661.228 891.925,661.228 " />
<svg:polygon detid="302191132" count="0" value="0" id="3307018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  7   Id 302191132 " fill="white" points="891.925,661.395 908.872,661.395 908.872,653.786 891.925,653.786 " />
<svg:polygon detid="302191388" count="0" value="0" id="3307019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  7   Id 302191388 " fill="white" points="891.925,653.953 908.872,653.953 908.872,646.344 891.925,646.344 " />
<svg:polygon detid="302191644" count="0" value="0" id="3307020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  7   Id 302191644 " fill="white" points="891.925,646.512 908.872,646.512 908.872,638.902 891.925,638.902 " />
<svg:polygon detid="302191900" count="0" value="0" id="3307021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  7   Id 302191900 " fill="white" points="891.925,639.07 908.872,639.07 908.872,631.46 891.925,631.46 " />
<svg:polygon detid="302192156" count="0" value="0" id="3307022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  7   Id 302192156 " fill="white" points="891.925,631.628 908.872,631.628 908.872,624.019 891.925,624.019 " />
<svg:polygon detid="302192412" count="0" value="0" id="3307023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  7   Id 302192412 " fill="white" points="891.925,624.186 908.872,624.186 908.872,616.577 891.925,616.577 " />
<svg:polygon detid="302192668" count="0" value="0" id="3307024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  7   Id 302192668 " fill="white" points="891.925,616.744 908.872,616.744 908.872,609.135 891.925,609.135 " />
<svg:polygon detid="302192924" count="0" value="0" id="3307025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  7   Id 302192924 " fill="white" points="891.925,609.302 908.872,609.302 908.872,601.693 891.925,601.693 " />
<svg:polygon detid="302193180" count="0" value="0" id="3307026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  7   Id 302193180 " fill="white" points="891.925,601.86 908.872,601.86 908.872,594.251 891.925,594.251 " />
<svg:polygon detid="302193436" count="0" value="0" id="3307027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  7   Id 302193436 " fill="white" points="891.925,594.419 908.872,594.419 908.872,586.809 891.925,586.809 " />
<svg:polygon detid="302193692" count="0" value="0" id="3307028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  7   Id 302193692 " fill="white" points="891.925,586.977 908.872,586.977 908.872,579.367 891.925,579.367 " />
<svg:polygon detid="302193948" count="0" value="0" id="3307029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  7   Id 302193948 " fill="white" points="891.925,579.535 908.872,579.535 908.872,571.926 891.925,571.926 " />
<svg:polygon detid="302194204" count="0" value="0" id="3307030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  7   Id 302194204 " fill="white" points="891.925,572.093 908.872,572.093 908.872,564.484 891.925,564.484 " />
<svg:polygon detid="302194460" count="0" value="0" id="3307031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  7   Id 302194460 " fill="white" points="891.925,564.651 908.872,564.651 908.872,557.042 891.925,557.042 " />
<svg:polygon detid="302194716" count="0" value="0" id="3307032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  7   Id 302194716 " fill="white" points="891.925,557.209 908.872,557.209 908.872,549.6 891.925,549.6 " />
<svg:polygon detid="302194972" count="0" value="0" id="3307033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  7   Id 302194972 " fill="white" points="891.925,549.767 908.872,549.767 908.872,545.956 891.925,545.956 " />
<svg:polygon detid="302195228" count="0" value="0" id="3307034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  7   Id 302195228 " fill="white" points="891.925,542.326 908.872,542.326 908.872,538.515 891.925,538.515 " />
<svg:polygon detid="302195484" count="0" value="0" id="3307035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  7   Id 302195484 " fill="white" points="891.925,534.884 908.872,534.884 908.872,527.274 891.925,527.274 " />
<svg:polygon detid="302195740" count="0" value="0" id="3307036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  7   Id 302195740 " fill="white" points="891.925,527.442 908.872,527.442 908.872,519.832 891.925,519.832 " />
<svg:polygon detid="302195996" count="0" value="0" id="3307037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  7   Id 302195996 " fill="white" points="891.925,520 908.872,520 908.872,512.391 891.925,512.391 " />
<svg:polygon detid="302196252" count="0" value="0" id="3307038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  7   Id 302196252 " fill="white" points="891.925,512.558 908.872,512.558 908.872,504.949 891.925,504.949 " />
<svg:polygon detid="302196508" count="0" value="0" id="3307039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  7   Id 302196508 " fill="white" points="891.925,505.116 908.872,505.116 908.872,497.507 891.925,497.507 " />
<svg:polygon detid="302196764" count="0" value="0" id="3307040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  7   Id 302196764 " fill="white" points="891.925,497.674 908.872,497.674 908.872,490.065 891.925,490.065 " />
<svg:polygon detid="302197020" count="0" value="0" id="3307041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  7   Id 302197020 " fill="white" points="891.925,490.233 908.872,490.233 908.872,482.623 891.925,482.623 " />
<svg:polygon detid="302197276" count="0" value="0" id="3307042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  7   Id 302197276 " fill="white" points="891.925,482.791 908.872,482.791 908.872,475.181 891.925,475.181 " />
<svg:polygon detid="302197532" count="0" value="0" id="3307043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  7   Id 302197532 " fill="white" points="891.925,475.349 908.872,475.349 908.872,467.739 891.925,467.739 " />
<svg:polygon detid="302197788" count="0" value="0" id="3307044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  7   Id 302197788 " fill="white" points="891.925,467.907 908.872,467.907 908.872,460.298 891.925,460.298 " />
<svg:polygon detid="302186784" count="0" value="0" id="3308001"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 1   module  8   Id 302186784 " fill="white" points="910.991,787.907 927.938,787.907 927.938,780.298 910.991,780.298 " />
<svg:polygon detid="302187040" count="0" value="0" id="3308002"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 2   module  8   Id 302187040 " fill="white" points="910.991,780.465 927.938,780.465 927.938,772.856 910.991,772.856 " />
<svg:polygon detid="302187296" count="0" value="0" id="3308003"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 3   module  8   Id 302187296 " fill="white" points="910.991,773.023 927.938,773.023 927.938,765.414 910.991,765.414 " />
<svg:polygon detid="302187552" count="0" value="0" id="3308004"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 4   module  8   Id 302187552 " fill="white" points="910.991,765.581 927.938,765.581 927.938,757.972 910.991,757.972 " />
<svg:polygon detid="302187808" count="0" value="0" id="3308005"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 5   module  8   Id 302187808 " fill="white" points="910.991,758.14 927.938,758.14 927.938,750.53 910.991,750.53 " />
<svg:polygon detid="302188064" count="0" value="0" id="3308006"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 6   module  8   Id 302188064 " fill="white" points="910.991,750.698 927.938,750.698 927.938,743.088 910.991,743.088 " />
<svg:polygon detid="302188320" count="0" value="0" id="3308007"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 7   module  8   Id 302188320 " fill="white" points="910.991,743.256 927.938,743.256 927.938,735.646 910.991,735.646 " />
<svg:polygon detid="302188576" count="0" value="0" id="3308008"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 8   module  8   Id 302188576 " fill="white" points="910.991,735.814 927.938,735.814 927.938,728.205 910.991,728.205 " />
<svg:polygon detid="302188832" count="0" value="0" id="3308009"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 9   module  8   Id 302188832 " fill="white" points="910.991,728.372 927.938,728.372 927.938,720.763 910.991,720.763 " />
<svg:polygon detid="302189088" count="0" value="0" id="3308010"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 10   module  8   Id 302189088 " fill="white" points="910.991,720.93 927.938,720.93 927.938,713.321 910.991,713.321 " />
<svg:polygon detid="302189344" count="0" value="0" id="3308011"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 11   module  8   Id 302189344 " fill="white" points="910.991,713.488 927.938,713.488 927.938,709.677 910.991,709.677 " />
<svg:polygon detid="302189600" count="0" value="0" id="3308012"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 12   module  8   Id 302189600 " fill="white" points="910.991,706.047 927.938,706.047 927.938,702.235 910.991,702.235 " />
<svg:polygon detid="302189856" count="0" value="0" id="3308013"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 13   module  8   Id 302189856 " fill="white" points="910.991,698.605 927.938,698.605 927.938,690.995 910.991,690.995 " />
<svg:polygon detid="302190112" count="0" value="0" id="3308014"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 14   module  8   Id 302190112 " fill="white" points="910.991,691.163 927.938,691.163 927.938,683.553 910.991,683.553 " />
<svg:polygon detid="302190368" count="0" value="0" id="3308015"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 15   module  8   Id 302190368 " fill="white" points="910.991,683.721 927.938,683.721 927.938,676.112 910.991,676.112 " />
<svg:polygon detid="302190624" count="0" value="0" id="3308016"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 16   module  8   Id 302190624 " fill="white" points="910.991,676.279 927.938,676.279 927.938,668.67 910.991,668.67 " />
<svg:polygon detid="302190880" count="0" value="0" id="3308017"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 17   module  8   Id 302190880 " fill="white" points="910.991,668.837 927.938,668.837 927.938,661.228 910.991,661.228 " />
<svg:polygon detid="302191136" count="0" value="0" id="3308018"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 18   module  8   Id 302191136 " fill="white" points="910.991,661.395 927.938,661.395 927.938,653.786 910.991,653.786 " />
<svg:polygon detid="302191392" count="0" value="0" id="3308019"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 19   module  8   Id 302191392 " fill="white" points="910.991,653.953 927.938,653.953 927.938,646.344 910.991,646.344 " />
<svg:polygon detid="302191648" count="0" value="0" id="3308020"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 20   module  8   Id 302191648 " fill="white" points="910.991,646.512 927.938,646.512 927.938,638.902 910.991,638.902 " />
<svg:polygon detid="302191904" count="0" value="0" id="3308021"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 21   module  8   Id 302191904 " fill="white" points="910.991,639.07 927.938,639.07 927.938,631.46 910.991,631.46 " />
<svg:polygon detid="302192160" count="0" value="0" id="3308022"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 22   module  8   Id 302192160 " fill="white" points="910.991,631.628 927.938,631.628 927.938,624.019 910.991,624.019 " />
<svg:polygon detid="302192416" count="0" value="0" id="3308023"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 23   module  8   Id 302192416 " fill="white" points="910.991,624.186 927.938,624.186 927.938,616.577 910.991,616.577 " />
<svg:polygon detid="302192672" count="0" value="0" id="3308024"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 24   module  8   Id 302192672 " fill="white" points="910.991,616.744 927.938,616.744 927.938,609.135 910.991,609.135 " />
<svg:polygon detid="302192928" count="0" value="0" id="3308025"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 25   module  8   Id 302192928 " fill="white" points="910.991,609.302 927.938,609.302 927.938,601.693 910.991,601.693 " />
<svg:polygon detid="302193184" count="0" value="0" id="3308026"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 26   module  8   Id 302193184 " fill="white" points="910.991,601.86 927.938,601.86 927.938,594.251 910.991,594.251 " />
<svg:polygon detid="302193440" count="0" value="0" id="3308027"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 27   module  8   Id 302193440 " fill="white" points="910.991,594.419 927.938,594.419 927.938,586.809 910.991,586.809 " />
<svg:polygon detid="302193696" count="0" value="0" id="3308028"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 28   module  8   Id 302193696 " fill="white" points="910.991,586.977 927.938,586.977 927.938,579.367 910.991,579.367 " />
<svg:polygon detid="302193952" count="0" value="0" id="3308029"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 29   module  8   Id 302193952 " fill="white" points="910.991,579.535 927.938,579.535 927.938,571.926 910.991,571.926 " />
<svg:polygon detid="302194208" count="0" value="0" id="3308030"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 30   module  8   Id 302194208 " fill="white" points="910.991,572.093 927.938,572.093 927.938,564.484 910.991,564.484 " />
<svg:polygon detid="302194464" count="0" value="0" id="3308031"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 31   module  8   Id 302194464 " fill="white" points="910.991,564.651 927.938,564.651 927.938,557.042 910.991,557.042 " />
<svg:polygon detid="302194720" count="0" value="0" id="3308032"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 32   module  8   Id 302194720 " fill="white" points="910.991,557.209 927.938,557.209 927.938,549.6 910.991,549.6 " />
<svg:polygon detid="302194976" count="0" value="0" id="3308033"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 33   module  8   Id 302194976 " fill="white" points="910.991,549.767 927.938,549.767 927.938,545.956 910.991,545.956 " />
<svg:polygon detid="302195232" count="0" value="0" id="3308034"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 34   module  8   Id 302195232 " fill="white" points="910.991,542.326 927.938,542.326 927.938,538.515 910.991,538.515 " />
<svg:polygon detid="302195488" count="0" value="0" id="3308035"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 35   module  8   Id 302195488 " fill="white" points="910.991,534.884 927.938,534.884 927.938,527.274 910.991,527.274 " />
<svg:polygon detid="302195744" count="0" value="0" id="3308036"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 36   module  8   Id 302195744 " fill="white" points="910.991,527.442 927.938,527.442 927.938,519.832 910.991,519.832 " />
<svg:polygon detid="302196000" count="0" value="0" id="3308037"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 37   module  8   Id 302196000 " fill="white" points="910.991,520 927.938,520 927.938,512.391 910.991,512.391 " />
<svg:polygon detid="302196256" count="0" value="0" id="3308038"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 38   module  8   Id 302196256 " fill="white" points="910.991,512.558 927.938,512.558 927.938,504.949 910.991,504.949 " />
<svg:polygon detid="302196512" count="0" value="0" id="3308039"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 39   module  8   Id 302196512 " fill="white" points="910.991,505.116 927.938,505.116 927.938,497.507 910.991,497.507 " />
<svg:polygon detid="302196768" count="0" value="0" id="3308040"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 40   module  8   Id 302196768 " fill="white" points="910.991,497.674 927.938,497.674 927.938,490.065 910.991,490.065 " />
<svg:polygon detid="302197024" count="0" value="0" id="3308041"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 41   module  8   Id 302197024 " fill="white" points="910.991,490.233 927.938,490.233 927.938,482.623 910.991,482.623 " />
<svg:polygon detid="302197280" count="0" value="0" id="3308042"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 42   module  8   Id 302197280 " fill="white" points="910.991,482.791 927.938,482.791 927.938,475.181 910.991,475.181 " />
<svg:polygon detid="302197536" count="0" value="0" id="3308043"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 43   module  8   Id 302197536 " fill="white" points="910.991,475.349 927.938,475.349 927.938,467.739 910.991,467.739 " />
<svg:polygon detid="302197792" count="0" value="0" id="3308044"  onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="BPIX   layer 3 ladder 44   module  8   Id 302197792 " fill="white" points="910.991,467.907 927.938,467.907 927.938,460.298 910.991,460.298 " />
<svg:polygon detid="369180934" count="1" value="102" id="3401001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  external  module  1   Id 369180934 " fill="rgb(255,53,0)" points="396.404,1173.04 377.48,1173.04 377.48,1184.2 " />
<svg:polygon detid="369181190" count="1" value="102" id="3401002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  external  module  1   Id 369181190 " fill="rgb(255,53,0)" points="396.404,1161.89 377.48,1161.89 377.48,1173.04 " />
<svg:polygon detid="369181446" count="1" value="102" id="3401003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  external  module  1   Id 369181446 " fill="rgb(255,53,0)" points="396.404,1150.74 377.48,1150.74 377.48,1161.89 " />
<svg:polygon detid="369181702" count="1" value="102" id="3401004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  external  module  1   Id 369181702 " fill="rgb(255,53,0)" points="396.404,1139.58 377.48,1139.58 377.48,1150.74 " />
<svg:polygon detid="369181958" count="1" value="102" id="3401005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  external  module  1   Id 369181958 " fill="rgb(255,53,0)" points="396.404,1128.43 377.48,1128.43 377.48,1139.58 " />
<svg:polygon detid="369182214" count="1" value="102" id="3401006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  external  module  1   Id 369182214 " fill="rgb(255,53,0)" points="396.404,1117.28 377.48,1117.28 377.48,1128.43 " />
<svg:polygon detid="369182470" count="1" value="102" id="3401007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  external  module  1   Id 369182470 " fill="rgb(255,53,0)" points="396.404,1106.13 377.48,1106.13 377.48,1117.28 " />
<svg:polygon detid="369182726" count="1" value="102" id="3401008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  external  module  1   Id 369182726 " fill="rgb(255,53,0)" points="396.404,1094.97 377.48,1094.97 377.48,1106.13 " />
<svg:polygon detid="369182982" count="1" value="102" id="3401009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  external  module  1   Id 369182982 " fill="rgb(255,53,0)" points="396.404,1083.82 377.48,1083.82 377.48,1094.97 " />
<svg:polygon detid="369183238" count="1" value="102" id="3401010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  external  module  1   Id 369183238 " fill="rgb(255,53,0)" points="396.404,1072.67 377.48,1072.67 377.48,1083.82 " />
<svg:polygon detid="369183494" count="1" value="102" id="3401011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  external  module  1   Id 369183494 " fill="rgb(255,53,0)" points="396.404,1061.52 377.48,1061.52 377.48,1072.67 " />
<svg:polygon detid="369183750" count="1" value="102" id="3401012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  external  module  1   Id 369183750 " fill="rgb(255,53,0)" points="396.404,1050.36 377.48,1050.36 377.48,1061.52 " />
<svg:polygon detid="369184006" count="1" value="102" id="3401013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  external  module  1   Id 369184006 " fill="rgb(255,53,0)" points="396.404,1039.21 377.48,1039.21 377.48,1050.36 " />
<svg:polygon detid="369184262" count="1" value="102" id="3401014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  external  module  1   Id 369184262 " fill="rgb(255,53,0)" points="396.404,1028.06 377.48,1028.06 377.48,1039.21 " />
<svg:polygon detid="369184518" count="1" value="102" id="3401015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  external  module  1   Id 369184518 " fill="rgb(255,53,0)" points="396.404,1016.9 377.48,1016.9 377.48,1028.06 " />
<svg:polygon detid="369184774" count="1" value="102" id="3401016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  external  module  1   Id 369184774 " fill="rgb(255,53,0)" points="396.404,1005.75 377.48,1005.75 377.48,1016.9 " />
<svg:polygon detid="369185030" count="1" value="102" id="3401017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  external  module  1   Id 369185030 " fill="rgb(255,53,0)" points="396.404,994.598 377.48,994.598 377.48,1005.75 " />
<svg:polygon detid="369185286" count="1" value="102" id="3401018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  external  module  1   Id 369185286 " fill="rgb(255,53,0)" points="396.404,983.445 377.48,983.445 377.48,994.598 " />
<svg:polygon detid="369185542" count="1" value="102" id="3401019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  external  module  1   Id 369185542 " fill="rgb(255,53,0)" points="396.404,972.292 377.48,972.292 377.48,983.445 " />
<svg:polygon detid="369185798" count="1" value="102" id="3401020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  external  module  1   Id 369185798 " fill="rgb(255,53,0)" points="396.404,961.14 377.48,961.14 377.48,972.292 " />
<svg:polygon detid="369186054" count="1" value="102" id="3401021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  external  module  1   Id 369186054 " fill="rgb(255,53,0)" points="396.404,949.987 377.48,949.987 377.48,961.14 " />
<svg:polygon detid="369186310" count="1" value="102" id="3401022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  external  module  1   Id 369186310 " fill="rgb(255,53,0)" points="396.404,938.834 377.48,938.834 377.48,949.987 " />
<svg:polygon detid="369186566" count="1" value="102" id="3401023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  external  module  1   Id 369186566 " fill="rgb(255,53,0)" points="396.404,927.681 377.48,927.681 377.48,938.834 " />
<svg:polygon detid="369186822" count="1" value="102" id="3401024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  external  module  1   Id 369186822 " fill="rgb(255,53,0)" points="396.404,916.528 377.48,916.528 377.48,927.681 " />
<svg:polygon detid="369187078" count="1" value="102" id="3401025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  external  module  1   Id 369187078 " fill="rgb(255,53,0)" points="396.404,905.376 377.48,905.376 377.48,916.528 " />
<svg:polygon detid="369187334" count="1" value="102" id="3401026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  external  module  1   Id 369187334 " fill="rgb(255,53,0)" points="396.404,894.223 377.48,894.223 377.48,905.376 " />
<svg:polygon detid="369187590" count="1" value="102" id="3401027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 neg  external  module  1   Id 369187590 " fill="rgb(255,53,0)" points="396.404,883.07 377.48,883.07 377.48,894.223 " />
<svg:polygon detid="369187846" count="1" value="102" id="3401028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 neg  external  module  1   Id 369187846 " fill="rgb(255,53,0)" points="396.404,871.917 377.48,871.917 377.48,883.07 " />
<svg:polygon detid="369188102" count="1" value="102" id="3401029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 neg  external  module  1   Id 369188102 " fill="rgb(255,53,0)" points="396.404,860.764 377.48,860.764 377.48,871.917 " />
<svg:polygon detid="369188358" count="1" value="102" id="3401030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 neg  external  module  1   Id 369188358 " fill="rgb(255,53,0)" points="396.404,849.611 377.48,849.611 377.48,860.764 " />
<svg:polygon detid="369180933" count="1" value="102" id="3401101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  external  module  1  stereo Id 369180933 " fill="rgb(255,53,0)" points="377.48,1184.2 396.404,1184.2 396.404,1173.04 " />
<svg:polygon detid="369181189" count="1" value="102" id="3401102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  external  module  1  stereo Id 369181189 " fill="rgb(255,53,0)" points="377.48,1173.04 396.404,1173.04 396.404,1161.89 " />
<svg:polygon detid="369181445" count="1" value="102" id="3401103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  external  module  1  stereo Id 369181445 " fill="rgb(255,53,0)" points="377.48,1161.89 396.404,1161.89 396.404,1150.74 " />
<svg:polygon detid="369181701" count="1" value="102" id="3401104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  external  module  1  stereo Id 369181701 " fill="rgb(255,53,0)" points="377.48,1150.74 396.404,1150.74 396.404,1139.58 " />
<svg:polygon detid="369181957" count="1" value="102" id="3401105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  external  module  1  stereo Id 369181957 " fill="rgb(255,53,0)" points="377.48,1139.58 396.404,1139.58 396.404,1128.43 " />
<svg:polygon detid="369182213" count="1" value="102" id="3401106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  external  module  1  stereo Id 369182213 " fill="rgb(255,53,0)" points="377.48,1128.43 396.404,1128.43 396.404,1117.28 " />
<svg:polygon detid="369182469" count="1" value="102" id="3401107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  external  module  1  stereo Id 369182469 " fill="rgb(255,53,0)" points="377.48,1117.28 396.404,1117.28 396.404,1106.13 " />
<svg:polygon detid="369182725" count="1" value="102" id="3401108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  external  module  1  stereo Id 369182725 " fill="rgb(255,53,0)" points="377.48,1106.13 396.404,1106.13 396.404,1094.97 " />
<svg:polygon detid="369182981" count="1" value="102" id="3401109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  external  module  1  stereo Id 369182981 " fill="rgb(255,53,0)" points="377.48,1094.97 396.404,1094.97 396.404,1083.82 " />
<svg:polygon detid="369183237" count="1" value="102" id="3401110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  external  module  1  stereo Id 369183237 " fill="rgb(255,53,0)" points="377.48,1083.82 396.404,1083.82 396.404,1072.67 " />
<svg:polygon detid="369183493" count="1" value="102" id="3401111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  external  module  1  stereo Id 369183493 " fill="rgb(255,53,0)" points="377.48,1072.67 396.404,1072.67 396.404,1061.52 " />
<svg:polygon detid="369183749" count="1" value="102" id="3401112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  external  module  1  stereo Id 369183749 " fill="rgb(255,53,0)" points="377.48,1061.52 396.404,1061.52 396.404,1050.36 " />
<svg:polygon detid="369184005" count="1" value="102" id="3401113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  external  module  1  stereo Id 369184005 " fill="rgb(255,53,0)" points="377.48,1050.36 396.404,1050.36 396.404,1039.21 " />
<svg:polygon detid="369184261" count="1" value="102" id="3401114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  external  module  1  stereo Id 369184261 " fill="rgb(255,53,0)" points="377.48,1039.21 396.404,1039.21 396.404,1028.06 " />
<svg:polygon detid="369184517" count="1" value="102" id="3401115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  external  module  1  stereo Id 369184517 " fill="rgb(255,53,0)" points="377.48,1028.06 396.404,1028.06 396.404,1016.9 " />
<svg:polygon detid="369184773" count="1" value="102" id="3401116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  external  module  1  stereo Id 369184773 " fill="rgb(255,53,0)" points="377.48,1016.9 396.404,1016.9 396.404,1005.75 " />
<svg:polygon detid="369185029" count="1" value="102" id="3401117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  external  module  1  stereo Id 369185029 " fill="rgb(255,53,0)" points="377.48,1005.75 396.404,1005.75 396.404,994.598 " />
<svg:polygon detid="369185285" count="1" value="102" id="3401118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  external  module  1  stereo Id 369185285 " fill="rgb(255,53,0)" points="377.48,994.598 396.404,994.598 396.404,983.445 " />
<svg:polygon detid="369185541" count="1" value="102" id="3401119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  external  module  1  stereo Id 369185541 " fill="rgb(255,53,0)" points="377.48,983.445 396.404,983.445 396.404,972.292 " />
<svg:polygon detid="369185797" count="1" value="102" id="3401120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  external  module  1  stereo Id 369185797 " fill="rgb(255,53,0)" points="377.48,972.292 396.404,972.292 396.404,961.14 " />
<svg:polygon detid="369186053" count="1" value="102" id="3401121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  external  module  1  stereo Id 369186053 " fill="rgb(255,53,0)" points="377.48,961.14 396.404,961.14 396.404,949.987 " />
<svg:polygon detid="369186309" count="1" value="102" id="3401122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  external  module  1  stereo Id 369186309 " fill="rgb(255,53,0)" points="377.48,949.987 396.404,949.987 396.404,938.834 " />
<svg:polygon detid="369186565" count="1" value="102" id="3401123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  external  module  1  stereo Id 369186565 " fill="rgb(255,53,0)" points="377.48,938.834 396.404,938.834 396.404,927.681 " />
<svg:polygon detid="369186821" count="1" value="102" id="3401124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  external  module  1  stereo Id 369186821 " fill="rgb(255,53,0)" points="377.48,927.681 396.404,927.681 396.404,916.528 " />
<svg:polygon detid="369187077" count="1" value="102" id="3401125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  external  module  1  stereo Id 369187077 " fill="rgb(255,53,0)" points="377.48,916.528 396.404,916.528 396.404,905.376 " />
<svg:polygon detid="369187333" count="1" value="102" id="3401126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  external  module  1  stereo Id 369187333 " fill="rgb(255,53,0)" points="377.48,905.376 396.404,905.376 396.404,894.223 " />
<svg:polygon detid="369187589" count="1" value="102" id="3401127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 neg  external  module  1  stereo Id 369187589 " fill="rgb(255,53,0)" points="377.48,894.223 396.404,894.223 396.404,883.07 " />
<svg:polygon detid="369187845" count="1" value="102" id="3401128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 neg  external  module  1  stereo Id 369187845 " fill="rgb(255,53,0)" points="377.48,883.07 396.404,883.07 396.404,871.917 " />
<svg:polygon detid="369188101" count="1" value="102" id="3401129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 neg  external  module  1  stereo Id 369188101 " fill="rgb(255,53,0)" points="377.48,871.917 396.404,871.917 396.404,860.764 " />
<svg:polygon detid="369188357" count="1" value="102" id="3401130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 neg  external  module  1  stereo Id 369188357 " fill="rgb(255,53,0)" points="377.48,860.764 396.404,860.764 396.404,849.611 " />
<svg:polygon detid="369164550" count="1" value="102" id="3402001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  internal  module  1   Id 369164550 " fill="rgb(255,53,0)" points="417.694,1173.04 398.77,1173.04 398.77,1184.2 " />
<svg:polygon detid="369164806" count="1" value="102" id="3402002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  internal  module  1   Id 369164806 " fill="rgb(255,53,0)" points="417.694,1161.89 398.77,1161.89 398.77,1173.04 " />
<svg:polygon detid="369165062" count="1" value="102" id="3402004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  internal  module  1   Id 369165062 " fill="rgb(255,53,0)" points="417.694,1139.58 398.77,1139.58 398.77,1150.74 " />
<svg:polygon detid="369165318" count="1" value="102" id="3402005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  internal  module  1   Id 369165318 " fill="rgb(255,53,0)" points="417.694,1128.43 398.77,1128.43 398.77,1139.58 " />
<svg:polygon detid="369165574" count="1" value="102" id="3402006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  internal  module  1   Id 369165574 " fill="rgb(255,53,0)" points="417.694,1117.28 398.77,1117.28 398.77,1128.43 " />
<svg:polygon detid="369165830" count="1" value="102" id="3402007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  internal  module  1   Id 369165830 " fill="rgb(255,53,0)" points="417.694,1106.13 398.77,1106.13 398.77,1117.28 " />
<svg:polygon detid="369166086" count="1" value="102" id="3402008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  internal  module  1   Id 369166086 " fill="rgb(255,53,0)" points="417.694,1094.97 398.77,1094.97 398.77,1106.13 " />
<svg:polygon detid="369166342" count="1" value="102" id="3402009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  internal  module  1   Id 369166342 " fill="rgb(255,53,0)" points="417.694,1083.82 398.77,1083.82 398.77,1094.97 " />
<svg:polygon detid="369166598" count="1" value="102" id="3402010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  internal  module  1   Id 369166598 " fill="rgb(255,53,0)" points="417.694,1072.67 398.77,1072.67 398.77,1083.82 " />
<svg:polygon detid="369166854" count="1" value="102" id="3402012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  internal  module  1   Id 369166854 " fill="rgb(255,53,0)" points="417.694,1050.36 398.77,1050.36 398.77,1061.52 " />
<svg:polygon detid="369167110" count="1" value="102" id="3402013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  internal  module  1   Id 369167110 " fill="rgb(255,53,0)" points="417.694,1039.21 398.77,1039.21 398.77,1050.36 " />
<svg:polygon detid="369167366" count="1" value="102" id="3402014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  internal  module  1   Id 369167366 " fill="rgb(255,53,0)" points="417.694,1028.06 398.77,1028.06 398.77,1039.21 " />
<svg:polygon detid="369167622" count="1" value="102" id="3402015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  internal  module  1   Id 369167622 " fill="rgb(255,53,0)" points="417.694,1016.9 398.77,1016.9 398.77,1028.06 " />
<svg:polygon detid="369167878" count="1" value="102" id="3402016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  internal  module  1   Id 369167878 " fill="rgb(255,53,0)" points="417.694,1005.75 398.77,1005.75 398.77,1016.9 " />
<svg:polygon detid="369168134" count="1" value="102" id="3402017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  internal  module  1   Id 369168134 " fill="rgb(255,53,0)" points="417.694,994.598 398.77,994.598 398.77,1005.75 " />
<svg:polygon detid="369168390" count="1" value="102" id="3402019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  internal  module  1   Id 369168390 " fill="rgb(255,53,0)" points="417.694,972.292 398.77,972.292 398.77,983.445 " />
<svg:polygon detid="369168646" count="1" value="102" id="3402020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  internal  module  1   Id 369168646 " fill="rgb(255,53,0)" points="417.694,961.14 398.77,961.14 398.77,972.292 " />
<svg:polygon detid="369168902" count="1" value="102" id="3402021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  internal  module  1   Id 369168902 " fill="rgb(255,53,0)" points="417.694,949.987 398.77,949.987 398.77,961.14 " />
<svg:polygon detid="369169158" count="1" value="102" id="3402022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  internal  module  1   Id 369169158 " fill="rgb(255,53,0)" points="417.694,938.834 398.77,938.834 398.77,949.987 " />
<svg:polygon detid="369169414" count="1" value="102" id="3402023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  internal  module  1   Id 369169414 " fill="rgb(255,53,0)" points="417.694,927.681 398.77,927.681 398.77,938.834 " />
<svg:polygon detid="369169670" count="1" value="102" id="3402024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  internal  module  1   Id 369169670 " fill="rgb(255,53,0)" points="417.694,916.528 398.77,916.528 398.77,927.681 " />
<svg:polygon detid="369169926" count="1" value="102" id="3402025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  internal  module  1   Id 369169926 " fill="rgb(255,53,0)" points="417.694,905.376 398.77,905.376 398.77,916.528 " />
<svg:polygon detid="369170182" count="1" value="102" id="3402027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  internal  module  1   Id 369170182 " fill="rgb(255,53,0)" points="417.694,883.07 398.77,883.07 398.77,894.223 " />
<svg:polygon detid="369170438" count="1" value="102" id="3402028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  internal  module  1   Id 369170438 " fill="rgb(255,53,0)" points="417.694,871.917 398.77,871.917 398.77,883.07 " />
<svg:polygon detid="369170694" count="1" value="102" id="3402029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  internal  module  1   Id 369170694 " fill="rgb(255,53,0)" points="417.694,860.764 398.77,860.764 398.77,871.917 " />
<svg:polygon detid="369170950" count="1" value="102" id="3402030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  internal  module  1   Id 369170950 " fill="rgb(255,53,0)" points="417.694,849.611 398.77,849.611 398.77,860.764 " />
<svg:polygon detid="369164549" count="1" value="102" id="3402101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  internal  module  1  stereo Id 369164549 " fill="rgb(255,53,0)" points="398.77,1184.2 417.694,1184.2 417.694,1173.04 " />
<svg:polygon detid="369164805" count="1" value="102" id="3402102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  internal  module  1  stereo Id 369164805 " fill="rgb(255,53,0)" points="398.77,1173.04 417.694,1173.04 417.694,1161.89 " />
<svg:polygon detid="369165061" count="1" value="102" id="3402104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  internal  module  1  stereo Id 369165061 " fill="rgb(255,53,0)" points="398.77,1150.74 417.694,1150.74 417.694,1139.58 " />
<svg:polygon detid="369165317" count="1" value="102" id="3402105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  internal  module  1  stereo Id 369165317 " fill="rgb(255,53,0)" points="398.77,1139.58 417.694,1139.58 417.694,1128.43 " />
<svg:polygon detid="369165573" count="1" value="102" id="3402106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  internal  module  1  stereo Id 369165573 " fill="rgb(255,53,0)" points="398.77,1128.43 417.694,1128.43 417.694,1117.28 " />
<svg:polygon detid="369165829" count="1" value="102" id="3402107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  internal  module  1  stereo Id 369165829 " fill="rgb(255,53,0)" points="398.77,1117.28 417.694,1117.28 417.694,1106.13 " />
<svg:polygon detid="369166085" count="1" value="102" id="3402108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  internal  module  1  stereo Id 369166085 " fill="rgb(255,53,0)" points="398.77,1106.13 417.694,1106.13 417.694,1094.97 " />
<svg:polygon detid="369166341" count="1" value="102" id="3402109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  internal  module  1  stereo Id 369166341 " fill="rgb(255,53,0)" points="398.77,1094.97 417.694,1094.97 417.694,1083.82 " />
<svg:polygon detid="369166597" count="1" value="102" id="3402110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  internal  module  1  stereo Id 369166597 " fill="rgb(255,53,0)" points="398.77,1083.82 417.694,1083.82 417.694,1072.67 " />
<svg:polygon detid="369166853" count="1" value="102" id="3402112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  internal  module  1  stereo Id 369166853 " fill="rgb(255,53,0)" points="398.77,1061.52 417.694,1061.52 417.694,1050.36 " />
<svg:polygon detid="369167109" count="1" value="102" id="3402113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  internal  module  1  stereo Id 369167109 " fill="rgb(255,53,0)" points="398.77,1050.36 417.694,1050.36 417.694,1039.21 " />
<svg:polygon detid="369167365" count="1" value="102" id="3402114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  internal  module  1  stereo Id 369167365 " fill="rgb(255,53,0)" points="398.77,1039.21 417.694,1039.21 417.694,1028.06 " />
<svg:polygon detid="369167621" count="1" value="102" id="3402115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  internal  module  1  stereo Id 369167621 " fill="rgb(255,53,0)" points="398.77,1028.06 417.694,1028.06 417.694,1016.9 " />
<svg:polygon detid="369167877" count="1" value="102" id="3402116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  internal  module  1  stereo Id 369167877 " fill="rgb(255,53,0)" points="398.77,1016.9 417.694,1016.9 417.694,1005.75 " />
<svg:polygon detid="369168133" count="1" value="102" id="3402117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  internal  module  1  stereo Id 369168133 " fill="rgb(255,53,0)" points="398.77,1005.75 417.694,1005.75 417.694,994.598 " />
<svg:polygon detid="369168389" count="1" value="102" id="3402119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  internal  module  1  stereo Id 369168389 " fill="rgb(255,53,0)" points="398.77,983.445 417.694,983.445 417.694,972.292 " />
<svg:polygon detid="369168645" count="1" value="102" id="3402120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  internal  module  1  stereo Id 369168645 " fill="rgb(255,53,0)" points="398.77,972.292 417.694,972.292 417.694,961.14 " />
<svg:polygon detid="369168901" count="1" value="102" id="3402121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  internal  module  1  stereo Id 369168901 " fill="rgb(255,53,0)" points="398.77,961.14 417.694,961.14 417.694,949.987 " />
<svg:polygon detid="369169157" count="1" value="102" id="3402122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  internal  module  1  stereo Id 369169157 " fill="rgb(255,53,0)" points="398.77,949.987 417.694,949.987 417.694,938.834 " />
<svg:polygon detid="369169413" count="1" value="102" id="3402123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  internal  module  1  stereo Id 369169413 " fill="rgb(255,53,0)" points="398.77,938.834 417.694,938.834 417.694,927.681 " />
<svg:polygon detid="369169669" count="1" value="102" id="3402124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  internal  module  1  stereo Id 369169669 " fill="rgb(255,53,0)" points="398.77,927.681 417.694,927.681 417.694,916.528 " />
<svg:polygon detid="369169925" count="1" value="102" id="3402125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  internal  module  1  stereo Id 369169925 " fill="rgb(255,53,0)" points="398.77,916.528 417.694,916.528 417.694,905.376 " />
<svg:polygon detid="369170181" count="1" value="102" id="3402127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  internal  module  1  stereo Id 369170181 " fill="rgb(255,53,0)" points="398.77,894.223 417.694,894.223 417.694,883.07 " />
<svg:polygon detid="369170437" count="1" value="102" id="3402128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  internal  module  1  stereo Id 369170437 " fill="rgb(255,53,0)" points="398.77,883.07 417.694,883.07 417.694,871.917 " />
<svg:polygon detid="369170693" count="1" value="102" id="3402129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  internal  module  1  stereo Id 369170693 " fill="rgb(255,53,0)" points="398.77,871.917 417.694,871.917 417.694,860.764 " />
<svg:polygon detid="369170949" count="1" value="102" id="3402130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  internal  module  1  stereo Id 369170949 " fill="rgb(255,53,0)" points="398.77,860.764 417.694,860.764 417.694,849.611 " />
<svg:polygon detid="369180938" count="1" value="102" id="3403001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  external  module  2   Id 369180938 " fill="rgb(255,53,0)" points="438.984,1173.04 420.06,1173.04 420.06,1184.2 " />
<svg:polygon detid="369181194" count="1" value="102" id="3403002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  external  module  2   Id 369181194 " fill="rgb(255,53,0)" points="438.984,1161.89 420.06,1161.89 420.06,1173.04 " />
<svg:polygon detid="369181450" count="1" value="102" id="3403003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  external  module  2   Id 369181450 " fill="rgb(255,53,0)" points="438.984,1150.74 420.06,1150.74 420.06,1161.89 " />
<svg:polygon detid="369181706" count="1" value="102" id="3403004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  external  module  2   Id 369181706 " fill="rgb(255,53,0)" points="438.984,1139.58 420.06,1139.58 420.06,1150.74 " />
<svg:polygon detid="369181962" count="1" value="102" id="3403005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  external  module  2   Id 369181962 " fill="rgb(255,53,0)" points="438.984,1128.43 420.06,1128.43 420.06,1139.58 " />
<svg:polygon detid="369182218" count="1" value="102" id="3403006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  external  module  2   Id 369182218 " fill="rgb(255,53,0)" points="438.984,1117.28 420.06,1117.28 420.06,1128.43 " />
<svg:polygon detid="369182474" count="1" value="102" id="3403007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  external  module  2   Id 369182474 " fill="rgb(255,53,0)" points="438.984,1106.13 420.06,1106.13 420.06,1117.28 " />
<svg:polygon detid="369182730" count="1" value="102" id="3403008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  external  module  2   Id 369182730 " fill="rgb(255,53,0)" points="438.984,1094.97 420.06,1094.97 420.06,1106.13 " />
<svg:polygon detid="369182986" count="1" value="102" id="3403009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  external  module  2   Id 369182986 " fill="rgb(255,53,0)" points="438.984,1083.82 420.06,1083.82 420.06,1094.97 " />
<svg:polygon detid="369183242" count="1" value="102" id="3403010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  external  module  2   Id 369183242 " fill="rgb(255,53,0)" points="438.984,1072.67 420.06,1072.67 420.06,1083.82 " />
<svg:polygon detid="369183498" count="1" value="102" id="3403011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  external  module  2   Id 369183498 " fill="rgb(255,53,0)" points="438.984,1061.52 420.06,1061.52 420.06,1072.67 " />
<svg:polygon detid="369183754" count="1" value="102" id="3403012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  external  module  2   Id 369183754 " fill="rgb(255,53,0)" points="438.984,1050.36 420.06,1050.36 420.06,1061.52 " />
<svg:polygon detid="369184010" count="1" value="102" id="3403013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  external  module  2   Id 369184010 " fill="rgb(255,53,0)" points="438.984,1039.21 420.06,1039.21 420.06,1050.36 " />
<svg:polygon detid="369184266" count="1" value="102" id="3403014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  external  module  2   Id 369184266 " fill="rgb(255,53,0)" points="438.984,1028.06 420.06,1028.06 420.06,1039.21 " />
<svg:polygon detid="369184522" count="1" value="102" id="3403015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  external  module  2   Id 369184522 " fill="rgb(255,53,0)" points="438.984,1016.9 420.06,1016.9 420.06,1028.06 " />
<svg:polygon detid="369184778" count="1" value="102" id="3403016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  external  module  2   Id 369184778 " fill="rgb(255,53,0)" points="438.984,1005.75 420.06,1005.75 420.06,1016.9 " />
<svg:polygon detid="369185034" count="1" value="102" id="3403017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  external  module  2   Id 369185034 " fill="rgb(255,53,0)" points="438.984,994.598 420.06,994.598 420.06,1005.75 " />
<svg:polygon detid="369185290" count="1" value="102" id="3403018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  external  module  2   Id 369185290 " fill="rgb(255,53,0)" points="438.984,983.445 420.06,983.445 420.06,994.598 " />
<svg:polygon detid="369185546" count="1" value="102" id="3403019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  external  module  2   Id 369185546 " fill="rgb(255,53,0)" points="438.984,972.292 420.06,972.292 420.06,983.445 " />
<svg:polygon detid="369185802" count="1" value="102" id="3403020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  external  module  2   Id 369185802 " fill="rgb(255,53,0)" points="438.984,961.14 420.06,961.14 420.06,972.292 " />
<svg:polygon detid="369186058" count="1" value="102" id="3403021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  external  module  2   Id 369186058 " fill="rgb(255,53,0)" points="438.984,949.987 420.06,949.987 420.06,961.14 " />
<svg:polygon detid="369186314" count="1" value="102" id="3403022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  external  module  2   Id 369186314 " fill="rgb(255,53,0)" points="438.984,938.834 420.06,938.834 420.06,949.987 " />
<svg:polygon detid="369186570" count="1" value="102" id="3403023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  external  module  2   Id 369186570 " fill="rgb(255,53,0)" points="438.984,927.681 420.06,927.681 420.06,938.834 " />
<svg:polygon detid="369186826" count="1" value="102" id="3403024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  external  module  2   Id 369186826 " fill="rgb(255,53,0)" points="438.984,916.528 420.06,916.528 420.06,927.681 " />
<svg:polygon detid="369187082" count="1" value="102" id="3403025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  external  module  2   Id 369187082 " fill="rgb(255,53,0)" points="438.984,905.376 420.06,905.376 420.06,916.528 " />
<svg:polygon detid="369187338" count="1" value="102" id="3403026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  external  module  2   Id 369187338 " fill="rgb(255,53,0)" points="438.984,894.223 420.06,894.223 420.06,905.376 " />
<svg:polygon detid="369187594" count="1" value="102" id="3403027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 neg  external  module  2   Id 369187594 " fill="rgb(255,53,0)" points="438.984,883.07 420.06,883.07 420.06,894.223 " />
<svg:polygon detid="369187850" count="1" value="102" id="3403028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 neg  external  module  2   Id 369187850 " fill="rgb(255,53,0)" points="438.984,871.917 420.06,871.917 420.06,883.07 " />
<svg:polygon detid="369188106" count="1" value="102" id="3403029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 neg  external  module  2   Id 369188106 " fill="rgb(255,53,0)" points="438.984,860.764 420.06,860.764 420.06,871.917 " />
<svg:polygon detid="369188362" count="1" value="102" id="3403030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 neg  external  module  2   Id 369188362 " fill="rgb(255,53,0)" points="438.984,849.611 420.06,849.611 420.06,860.764 " />
<svg:polygon detid="369180937" count="1" value="102" id="3403101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  external  module  2  stereo Id 369180937 " fill="rgb(255,53,0)" points="420.06,1184.2 438.984,1184.2 438.984,1173.04 " />
<svg:polygon detid="369181193" count="1" value="102" id="3403102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  external  module  2  stereo Id 369181193 " fill="rgb(255,53,0)" points="420.06,1173.04 438.984,1173.04 438.984,1161.89 " />
<svg:polygon detid="369181449" count="1" value="102" id="3403103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  external  module  2  stereo Id 369181449 " fill="rgb(255,53,0)" points="420.06,1161.89 438.984,1161.89 438.984,1150.74 " />
<svg:polygon detid="369181705" count="1" value="102" id="3403104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  external  module  2  stereo Id 369181705 " fill="rgb(255,53,0)" points="420.06,1150.74 438.984,1150.74 438.984,1139.58 " />
<svg:polygon detid="369181961" count="1" value="102" id="3403105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  external  module  2  stereo Id 369181961 " fill="rgb(255,53,0)" points="420.06,1139.58 438.984,1139.58 438.984,1128.43 " />
<svg:polygon detid="369182217" count="1" value="102" id="3403106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  external  module  2  stereo Id 369182217 " fill="rgb(255,53,0)" points="420.06,1128.43 438.984,1128.43 438.984,1117.28 " />
<svg:polygon detid="369182473" count="1" value="102" id="3403107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  external  module  2  stereo Id 369182473 " fill="rgb(255,53,0)" points="420.06,1117.28 438.984,1117.28 438.984,1106.13 " />
<svg:polygon detid="369182729" count="1" value="102" id="3403108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  external  module  2  stereo Id 369182729 " fill="rgb(255,53,0)" points="420.06,1106.13 438.984,1106.13 438.984,1094.97 " />
<svg:polygon detid="369182985" count="1" value="102" id="3403109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  external  module  2  stereo Id 369182985 " fill="rgb(255,53,0)" points="420.06,1094.97 438.984,1094.97 438.984,1083.82 " />
<svg:polygon detid="369183241" count="1" value="102" id="3403110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  external  module  2  stereo Id 369183241 " fill="rgb(255,53,0)" points="420.06,1083.82 438.984,1083.82 438.984,1072.67 " />
<svg:polygon detid="369183497" count="1" value="102" id="3403111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  external  module  2  stereo Id 369183497 " fill="rgb(255,53,0)" points="420.06,1072.67 438.984,1072.67 438.984,1061.52 " />
<svg:polygon detid="369183753" count="1" value="102" id="3403112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  external  module  2  stereo Id 369183753 " fill="rgb(255,53,0)" points="420.06,1061.52 438.984,1061.52 438.984,1050.36 " />
<svg:polygon detid="369184009" count="1" value="102" id="3403113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  external  module  2  stereo Id 369184009 " fill="rgb(255,53,0)" points="420.06,1050.36 438.984,1050.36 438.984,1039.21 " />
<svg:polygon detid="369184265" count="1" value="102" id="3403114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  external  module  2  stereo Id 369184265 " fill="rgb(255,53,0)" points="420.06,1039.21 438.984,1039.21 438.984,1028.06 " />
<svg:polygon detid="369184521" count="1" value="102" id="3403115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  external  module  2  stereo Id 369184521 " fill="rgb(255,53,0)" points="420.06,1028.06 438.984,1028.06 438.984,1016.9 " />
<svg:polygon detid="369184777" count="1" value="102" id="3403116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  external  module  2  stereo Id 369184777 " fill="rgb(255,53,0)" points="420.06,1016.9 438.984,1016.9 438.984,1005.75 " />
<svg:polygon detid="369185033" count="1" value="102" id="3403117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  external  module  2  stereo Id 369185033 " fill="rgb(255,53,0)" points="420.06,1005.75 438.984,1005.75 438.984,994.598 " />
<svg:polygon detid="369185289" count="1" value="102" id="3403118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  external  module  2  stereo Id 369185289 " fill="rgb(255,53,0)" points="420.06,994.598 438.984,994.598 438.984,983.445 " />
<svg:polygon detid="369185545" count="1" value="102" id="3403119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  external  module  2  stereo Id 369185545 " fill="rgb(255,53,0)" points="420.06,983.445 438.984,983.445 438.984,972.292 " />
<svg:polygon detid="369185801" count="1" value="102" id="3403120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  external  module  2  stereo Id 369185801 " fill="rgb(255,53,0)" points="420.06,972.292 438.984,972.292 438.984,961.14 " />
<svg:polygon detid="369186057" count="1" value="102" id="3403121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  external  module  2  stereo Id 369186057 " fill="rgb(255,53,0)" points="420.06,961.14 438.984,961.14 438.984,949.987 " />
<svg:polygon detid="369186313" count="1" value="102" id="3403122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  external  module  2  stereo Id 369186313 " fill="rgb(255,53,0)" points="420.06,949.987 438.984,949.987 438.984,938.834 " />
<svg:polygon detid="369186569" count="1" value="102" id="3403123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  external  module  2  stereo Id 369186569 " fill="rgb(255,53,0)" points="420.06,938.834 438.984,938.834 438.984,927.681 " />
<svg:polygon detid="369186825" count="1" value="102" id="3403124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  external  module  2  stereo Id 369186825 " fill="rgb(255,53,0)" points="420.06,927.681 438.984,927.681 438.984,916.528 " />
<svg:polygon detid="369187081" count="1" value="102" id="3403125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  external  module  2  stereo Id 369187081 " fill="rgb(255,53,0)" points="420.06,916.528 438.984,916.528 438.984,905.376 " />
<svg:polygon detid="369187337" count="1" value="102" id="3403126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  external  module  2  stereo Id 369187337 " fill="rgb(255,53,0)" points="420.06,905.376 438.984,905.376 438.984,894.223 " />
<svg:polygon detid="369187593" count="1" value="102" id="3403127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 neg  external  module  2  stereo Id 369187593 " fill="rgb(255,53,0)" points="420.06,894.223 438.984,894.223 438.984,883.07 " />
<svg:polygon detid="369187849" count="1" value="102" id="3403128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 neg  external  module  2  stereo Id 369187849 " fill="rgb(255,53,0)" points="420.06,883.07 438.984,883.07 438.984,871.917 " />
<svg:polygon detid="369188105" count="1" value="102" id="3403129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 neg  external  module  2  stereo Id 369188105 " fill="rgb(255,53,0)" points="420.06,871.917 438.984,871.917 438.984,860.764 " />
<svg:polygon detid="369188361" count="1" value="102" id="3403130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 neg  external  module  2  stereo Id 369188361 " fill="rgb(255,53,0)" points="420.06,860.764 438.984,860.764 438.984,849.611 " />
<svg:polygon detid="369164554" count="1" value="102" id="3404001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  internal  module  2   Id 369164554 " fill="rgb(255,53,0)" points="460.274,1173.04 441.35,1173.04 441.35,1184.2 " />
<svg:polygon detid="369164810" count="1" value="102" id="3404002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  internal  module  2   Id 369164810 " fill="rgb(255,53,0)" points="460.274,1161.89 441.35,1161.89 441.35,1173.04 " />
<svg:polygon detid="369165066" count="1" value="102" id="3404004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  internal  module  2   Id 369165066 " fill="rgb(255,53,0)" points="460.274,1139.58 441.35,1139.58 441.35,1150.74 " />
<svg:polygon detid="369165322" count="1" value="102" id="3404005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  internal  module  2   Id 369165322 " fill="rgb(255,53,0)" points="460.274,1128.43 441.35,1128.43 441.35,1139.58 " />
<svg:polygon detid="369165578" count="1" value="102" id="3404006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  internal  module  2   Id 369165578 " fill="rgb(255,53,0)" points="460.274,1117.28 441.35,1117.28 441.35,1128.43 " />
<svg:polygon detid="369165834" count="1" value="102" id="3404007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  internal  module  2   Id 369165834 " fill="rgb(255,53,0)" points="460.274,1106.13 441.35,1106.13 441.35,1117.28 " />
<svg:polygon detid="369166090" count="1" value="102" id="3404008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  internal  module  2   Id 369166090 " fill="rgb(255,53,0)" points="460.274,1094.97 441.35,1094.97 441.35,1106.13 " />
<svg:polygon detid="369166346" count="1" value="102" id="3404009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  internal  module  2   Id 369166346 " fill="rgb(255,53,0)" points="460.274,1083.82 441.35,1083.82 441.35,1094.97 " />
<svg:polygon detid="369166602" count="1" value="102" id="3404010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  internal  module  2   Id 369166602 " fill="rgb(255,53,0)" points="460.274,1072.67 441.35,1072.67 441.35,1083.82 " />
<svg:polygon detid="369166858" count="1" value="102" id="3404012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  internal  module  2   Id 369166858 " fill="rgb(255,53,0)" points="460.274,1050.36 441.35,1050.36 441.35,1061.52 " />
<svg:polygon detid="369167114" count="1" value="102" id="3404013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  internal  module  2   Id 369167114 " fill="rgb(255,53,0)" points="460.274,1039.21 441.35,1039.21 441.35,1050.36 " />
<svg:polygon detid="369167370" count="1" value="102" id="3404014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  internal  module  2   Id 369167370 " fill="rgb(255,53,0)" points="460.274,1028.06 441.35,1028.06 441.35,1039.21 " />
<svg:polygon detid="369167626" count="1" value="102" id="3404015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  internal  module  2   Id 369167626 " fill="rgb(255,53,0)" points="460.274,1016.9 441.35,1016.9 441.35,1028.06 " />
<svg:polygon detid="369167882" count="1" value="102" id="3404016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  internal  module  2   Id 369167882 " fill="rgb(255,53,0)" points="460.274,1005.75 441.35,1005.75 441.35,1016.9 " />
<svg:polygon detid="369168138" count="1" value="102" id="3404017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  internal  module  2   Id 369168138 " fill="rgb(255,53,0)" points="460.274,994.598 441.35,994.598 441.35,1005.75 " />
<svg:polygon detid="369168394" count="1" value="102" id="3404019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  internal  module  2   Id 369168394 " fill="rgb(255,53,0)" points="460.274,972.292 441.35,972.292 441.35,983.445 " />
<svg:polygon detid="369168650" count="1" value="102" id="3404020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  internal  module  2   Id 369168650 " fill="rgb(255,53,0)" points="460.274,961.14 441.35,961.14 441.35,972.292 " />
<svg:polygon detid="369168906" count="1" value="102" id="3404021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  internal  module  2   Id 369168906 " fill="rgb(255,53,0)" points="460.274,949.987 441.35,949.987 441.35,961.14 " />
<svg:polygon detid="369169162" count="1" value="102" id="3404022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  internal  module  2   Id 369169162 " fill="rgb(255,53,0)" points="460.274,938.834 441.35,938.834 441.35,949.987 " />
<svg:polygon detid="369169418" count="1" value="102" id="3404023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  internal  module  2   Id 369169418 " fill="rgb(255,53,0)" points="460.274,927.681 441.35,927.681 441.35,938.834 " />
<svg:polygon detid="369169674" count="1" value="102" id="3404024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  internal  module  2   Id 369169674 " fill="rgb(255,53,0)" points="460.274,916.528 441.35,916.528 441.35,927.681 " />
<svg:polygon detid="369169930" count="1" value="102" id="3404025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  internal  module  2   Id 369169930 " fill="rgb(255,53,0)" points="460.274,905.376 441.35,905.376 441.35,916.528 " />
<svg:polygon detid="369170186" count="1" value="102" id="3404027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  internal  module  2   Id 369170186 " fill="rgb(255,53,0)" points="460.274,883.07 441.35,883.07 441.35,894.223 " />
<svg:polygon detid="369170442" count="1" value="102" id="3404028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  internal  module  2   Id 369170442 " fill="rgb(255,53,0)" points="460.274,871.917 441.35,871.917 441.35,883.07 " />
<svg:polygon detid="369170698" count="1" value="102" id="3404029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  internal  module  2   Id 369170698 " fill="rgb(255,53,0)" points="460.274,860.764 441.35,860.764 441.35,871.917 " />
<svg:polygon detid="369170954" count="1" value="102" id="3404030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  internal  module  2   Id 369170954 " fill="rgb(255,53,0)" points="460.274,849.611 441.35,849.611 441.35,860.764 " />
<svg:polygon detid="369164553" count="1" value="102" id="3404101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  internal  module  2  stereo Id 369164553 " fill="rgb(255,53,0)" points="441.35,1184.2 460.274,1184.2 460.274,1173.04 " />
<svg:polygon detid="369164809" count="1" value="102" id="3404102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  internal  module  2  stereo Id 369164809 " fill="rgb(255,53,0)" points="441.35,1173.04 460.274,1173.04 460.274,1161.89 " />
<svg:polygon detid="369165065" count="1" value="102" id="3404104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  internal  module  2  stereo Id 369165065 " fill="rgb(255,53,0)" points="441.35,1150.74 460.274,1150.74 460.274,1139.58 " />
<svg:polygon detid="369165321" count="1" value="102" id="3404105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  internal  module  2  stereo Id 369165321 " fill="rgb(255,53,0)" points="441.35,1139.58 460.274,1139.58 460.274,1128.43 " />
<svg:polygon detid="369165577" count="1" value="102" id="3404106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  internal  module  2  stereo Id 369165577 " fill="rgb(255,53,0)" points="441.35,1128.43 460.274,1128.43 460.274,1117.28 " />
<svg:polygon detid="369165833" count="1" value="102" id="3404107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  internal  module  2  stereo Id 369165833 " fill="rgb(255,53,0)" points="441.35,1117.28 460.274,1117.28 460.274,1106.13 " />
<svg:polygon detid="369166089" count="1" value="102" id="3404108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  internal  module  2  stereo Id 369166089 " fill="rgb(255,53,0)" points="441.35,1106.13 460.274,1106.13 460.274,1094.97 " />
<svg:polygon detid="369166345" count="1" value="102" id="3404109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  internal  module  2  stereo Id 369166345 " fill="rgb(255,53,0)" points="441.35,1094.97 460.274,1094.97 460.274,1083.82 " />
<svg:polygon detid="369166601" count="1" value="102" id="3404110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  internal  module  2  stereo Id 369166601 " fill="rgb(255,53,0)" points="441.35,1083.82 460.274,1083.82 460.274,1072.67 " />
<svg:polygon detid="369166857" count="1" value="102" id="3404112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  internal  module  2  stereo Id 369166857 " fill="rgb(255,53,0)" points="441.35,1061.52 460.274,1061.52 460.274,1050.36 " />
<svg:polygon detid="369167113" count="1" value="102" id="3404113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  internal  module  2  stereo Id 369167113 " fill="rgb(255,53,0)" points="441.35,1050.36 460.274,1050.36 460.274,1039.21 " />
<svg:polygon detid="369167369" count="1" value="102" id="3404114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  internal  module  2  stereo Id 369167369 " fill="rgb(255,53,0)" points="441.35,1039.21 460.274,1039.21 460.274,1028.06 " />
<svg:polygon detid="369167625" count="1" value="102" id="3404115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  internal  module  2  stereo Id 369167625 " fill="rgb(255,53,0)" points="441.35,1028.06 460.274,1028.06 460.274,1016.9 " />
<svg:polygon detid="369167881" count="1" value="102" id="3404116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  internal  module  2  stereo Id 369167881 " fill="rgb(255,53,0)" points="441.35,1016.9 460.274,1016.9 460.274,1005.75 " />
<svg:polygon detid="369168137" count="1" value="102" id="3404117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  internal  module  2  stereo Id 369168137 " fill="rgb(255,53,0)" points="441.35,1005.75 460.274,1005.75 460.274,994.598 " />
<svg:polygon detid="369168393" count="1" value="102" id="3404119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  internal  module  2  stereo Id 369168393 " fill="rgb(255,53,0)" points="441.35,983.445 460.274,983.445 460.274,972.292 " />
<svg:polygon detid="369168649" count="1" value="102" id="3404120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  internal  module  2  stereo Id 369168649 " fill="rgb(255,53,0)" points="441.35,972.292 460.274,972.292 460.274,961.14 " />
<svg:polygon detid="369168905" count="1" value="102" id="3404121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  internal  module  2  stereo Id 369168905 " fill="rgb(255,53,0)" points="441.35,961.14 460.274,961.14 460.274,949.987 " />
<svg:polygon detid="369169161" count="1" value="102" id="3404122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  internal  module  2  stereo Id 369169161 " fill="rgb(255,53,0)" points="441.35,949.987 460.274,949.987 460.274,938.834 " />
<svg:polygon detid="369169417" count="1" value="102" id="3404123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  internal  module  2  stereo Id 369169417 " fill="rgb(255,53,0)" points="441.35,938.834 460.274,938.834 460.274,927.681 " />
<svg:polygon detid="369169673" count="1" value="102" id="3404124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  internal  module  2  stereo Id 369169673 " fill="rgb(255,53,0)" points="441.35,927.681 460.274,927.681 460.274,916.528 " />
<svg:polygon detid="369169929" count="1" value="102" id="3404125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  internal  module  2  stereo Id 369169929 " fill="rgb(255,53,0)" points="441.35,916.528 460.274,916.528 460.274,905.376 " />
<svg:polygon detid="369170185" count="1" value="102" id="3404127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  internal  module  2  stereo Id 369170185 " fill="rgb(255,53,0)" points="441.35,894.223 460.274,894.223 460.274,883.07 " />
<svg:polygon detid="369170441" count="1" value="102" id="3404128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  internal  module  2  stereo Id 369170441 " fill="rgb(255,53,0)" points="441.35,883.07 460.274,883.07 460.274,871.917 " />
<svg:polygon detid="369170697" count="1" value="102" id="3404129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  internal  module  2  stereo Id 369170697 " fill="rgb(255,53,0)" points="441.35,871.917 460.274,871.917 460.274,860.764 " />
<svg:polygon detid="369170953" count="1" value="102" id="3404130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  internal  module  2  stereo Id 369170953 " fill="rgb(255,53,0)" points="441.35,860.764 460.274,860.764 460.274,849.611 " />
<svg:polygon detid="369180942" count="1" value="102" id="3405001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  external  module  3   Id 369180942 " fill="rgb(255,53,0)" points="481.564,1173.04 462.639,1173.04 462.639,1184.2 " />
<svg:polygon detid="369181198" count="1" value="102" id="3405002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  external  module  3   Id 369181198 " fill="rgb(255,53,0)" points="481.564,1161.89 462.639,1161.89 462.639,1173.04 " />
<svg:polygon detid="369181454" count="1" value="102" id="3405003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  external  module  3   Id 369181454 " fill="rgb(255,53,0)" points="481.564,1150.74 462.639,1150.74 462.639,1161.89 " />
<svg:polygon detid="369181710" count="1" value="102" id="3405004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  external  module  3   Id 369181710 " fill="rgb(255,53,0)" points="481.564,1139.58 462.639,1139.58 462.639,1150.74 " />
<svg:polygon detid="369181966" count="1" value="102" id="3405005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  external  module  3   Id 369181966 " fill="rgb(255,53,0)" points="481.564,1128.43 462.639,1128.43 462.639,1139.58 " />
<svg:polygon detid="369182222" count="1" value="102" id="3405006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  external  module  3   Id 369182222 " fill="rgb(255,53,0)" points="481.564,1117.28 462.639,1117.28 462.639,1128.43 " />
<svg:polygon detid="369182478" count="1" value="102" id="3405007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  external  module  3   Id 369182478 " fill="rgb(255,53,0)" points="481.564,1106.13 462.639,1106.13 462.639,1117.28 " />
<svg:polygon detid="369182734" count="1" value="102" id="3405008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  external  module  3   Id 369182734 " fill="rgb(255,53,0)" points="481.564,1094.97 462.639,1094.97 462.639,1106.13 " />
<svg:polygon detid="369182990" count="1" value="102" id="3405009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  external  module  3   Id 369182990 " fill="rgb(255,53,0)" points="481.564,1083.82 462.639,1083.82 462.639,1094.97 " />
<svg:polygon detid="369183246" count="1" value="102" id="3405010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  external  module  3   Id 369183246 " fill="rgb(255,53,0)" points="481.564,1072.67 462.639,1072.67 462.639,1083.82 " />
<svg:polygon detid="369183502" count="1" value="102" id="3405011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  external  module  3   Id 369183502 " fill="rgb(255,53,0)" points="481.564,1061.52 462.639,1061.52 462.639,1072.67 " />
<svg:polygon detid="369183758" count="1" value="102" id="3405012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  external  module  3   Id 369183758 " fill="rgb(255,53,0)" points="481.564,1050.36 462.639,1050.36 462.639,1061.52 " />
<svg:polygon detid="369184014" count="1" value="102" id="3405013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  external  module  3   Id 369184014 " fill="rgb(255,53,0)" points="481.564,1039.21 462.639,1039.21 462.639,1050.36 " />
<svg:polygon detid="369184270" count="1" value="102" id="3405014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  external  module  3   Id 369184270 " fill="rgb(255,53,0)" points="481.564,1028.06 462.639,1028.06 462.639,1039.21 " />
<svg:polygon detid="369184526" count="1" value="102" id="3405015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  external  module  3   Id 369184526 " fill="rgb(255,53,0)" points="481.564,1016.9 462.639,1016.9 462.639,1028.06 " />
<svg:polygon detid="369184782" count="1" value="102" id="3405016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  external  module  3   Id 369184782 " fill="rgb(255,53,0)" points="481.564,1005.75 462.639,1005.75 462.639,1016.9 " />
<svg:polygon detid="369185038" count="1" value="102" id="3405017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  external  module  3   Id 369185038 " fill="rgb(255,53,0)" points="481.564,994.598 462.639,994.598 462.639,1005.75 " />
<svg:polygon detid="369185294" count="1" value="102" id="3405018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  external  module  3   Id 369185294 " fill="rgb(255,53,0)" points="481.564,983.445 462.639,983.445 462.639,994.598 " />
<svg:polygon detid="369185550" count="1" value="102" id="3405019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  external  module  3   Id 369185550 " fill="rgb(255,53,0)" points="481.564,972.292 462.639,972.292 462.639,983.445 " />
<svg:polygon detid="369185806" count="1" value="102" id="3405020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  external  module  3   Id 369185806 " fill="rgb(255,53,0)" points="481.564,961.14 462.639,961.14 462.639,972.292 " />
<svg:polygon detid="369186062" count="1" value="102" id="3405021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  external  module  3   Id 369186062 " fill="rgb(255,53,0)" points="481.564,949.987 462.639,949.987 462.639,961.14 " />
<svg:polygon detid="369186318" count="1" value="102" id="3405022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  external  module  3   Id 369186318 " fill="rgb(255,53,0)" points="481.564,938.834 462.639,938.834 462.639,949.987 " />
<svg:polygon detid="369186574" count="1" value="102" id="3405023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  external  module  3   Id 369186574 " fill="rgb(255,53,0)" points="481.564,927.681 462.639,927.681 462.639,938.834 " />
<svg:polygon detid="369186830" count="1" value="102" id="3405024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  external  module  3   Id 369186830 " fill="rgb(255,53,0)" points="481.564,916.528 462.639,916.528 462.639,927.681 " />
<svg:polygon detid="369187086" count="1" value="102" id="3405025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  external  module  3   Id 369187086 " fill="rgb(255,53,0)" points="481.564,905.376 462.639,905.376 462.639,916.528 " />
<svg:polygon detid="369187342" count="1" value="102" id="3405026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  external  module  3   Id 369187342 " fill="rgb(255,53,0)" points="481.564,894.223 462.639,894.223 462.639,905.376 " />
<svg:polygon detid="369187598" count="1" value="102" id="3405027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 neg  external  module  3   Id 369187598 " fill="rgb(255,53,0)" points="481.564,883.07 462.639,883.07 462.639,894.223 " />
<svg:polygon detid="369187854" count="1" value="102" id="3405028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 neg  external  module  3   Id 369187854 " fill="rgb(255,53,0)" points="481.564,871.917 462.639,871.917 462.639,883.07 " />
<svg:polygon detid="369188110" count="1" value="102" id="3405029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 neg  external  module  3   Id 369188110 " fill="rgb(255,53,0)" points="481.564,860.764 462.639,860.764 462.639,871.917 " />
<svg:polygon detid="369188366" count="1" value="102" id="3405030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 neg  external  module  3   Id 369188366 " fill="rgb(255,53,0)" points="481.564,849.611 462.639,849.611 462.639,860.764 " />
<svg:polygon detid="369180941" count="1" value="102" id="3405101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  external  module  3  stereo Id 369180941 " fill="rgb(255,53,0)" points="462.639,1184.2 481.564,1184.2 481.564,1173.04 " />
<svg:polygon detid="369181197" count="1" value="102" id="3405102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  external  module  3  stereo Id 369181197 " fill="rgb(255,53,0)" points="462.639,1173.04 481.564,1173.04 481.564,1161.89 " />
<svg:polygon detid="369181453" count="1" value="102" id="3405103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  external  module  3  stereo Id 369181453 " fill="rgb(255,53,0)" points="462.639,1161.89 481.564,1161.89 481.564,1150.74 " />
<svg:polygon detid="369181709" count="1" value="102" id="3405104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  external  module  3  stereo Id 369181709 " fill="rgb(255,53,0)" points="462.639,1150.74 481.564,1150.74 481.564,1139.58 " />
<svg:polygon detid="369181965" count="1" value="102" id="3405105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  external  module  3  stereo Id 369181965 " fill="rgb(255,53,0)" points="462.639,1139.58 481.564,1139.58 481.564,1128.43 " />
<svg:polygon detid="369182221" count="1" value="102" id="3405106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  external  module  3  stereo Id 369182221 " fill="rgb(255,53,0)" points="462.639,1128.43 481.564,1128.43 481.564,1117.28 " />
<svg:polygon detid="369182477" count="1" value="102" id="3405107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  external  module  3  stereo Id 369182477 " fill="rgb(255,53,0)" points="462.639,1117.28 481.564,1117.28 481.564,1106.13 " />
<svg:polygon detid="369182733" count="1" value="102" id="3405108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  external  module  3  stereo Id 369182733 " fill="rgb(255,53,0)" points="462.639,1106.13 481.564,1106.13 481.564,1094.97 " />
<svg:polygon detid="369182989" count="1" value="102" id="3405109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  external  module  3  stereo Id 369182989 " fill="rgb(255,53,0)" points="462.639,1094.97 481.564,1094.97 481.564,1083.82 " />
<svg:polygon detid="369183245" count="1" value="102" id="3405110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  external  module  3  stereo Id 369183245 " fill="rgb(255,53,0)" points="462.639,1083.82 481.564,1083.82 481.564,1072.67 " />
<svg:polygon detid="369183501" count="1" value="102" id="3405111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  external  module  3  stereo Id 369183501 " fill="rgb(255,53,0)" points="462.639,1072.67 481.564,1072.67 481.564,1061.52 " />
<svg:polygon detid="369183757" count="1" value="102" id="3405112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  external  module  3  stereo Id 369183757 " fill="rgb(255,53,0)" points="462.639,1061.52 481.564,1061.52 481.564,1050.36 " />
<svg:polygon detid="369184013" count="1" value="102" id="3405113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  external  module  3  stereo Id 369184013 " fill="rgb(255,53,0)" points="462.639,1050.36 481.564,1050.36 481.564,1039.21 " />
<svg:polygon detid="369184269" count="1" value="102" id="3405114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  external  module  3  stereo Id 369184269 " fill="rgb(255,53,0)" points="462.639,1039.21 481.564,1039.21 481.564,1028.06 " />
<svg:polygon detid="369184525" count="1" value="102" id="3405115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  external  module  3  stereo Id 369184525 " fill="rgb(255,53,0)" points="462.639,1028.06 481.564,1028.06 481.564,1016.9 " />
<svg:polygon detid="369184781" count="1" value="102" id="3405116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  external  module  3  stereo Id 369184781 " fill="rgb(255,53,0)" points="462.639,1016.9 481.564,1016.9 481.564,1005.75 " />
<svg:polygon detid="369185037" count="1" value="102" id="3405117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  external  module  3  stereo Id 369185037 " fill="rgb(255,53,0)" points="462.639,1005.75 481.564,1005.75 481.564,994.598 " />
<svg:polygon detid="369185293" count="1" value="102" id="3405118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  external  module  3  stereo Id 369185293 " fill="rgb(255,53,0)" points="462.639,994.598 481.564,994.598 481.564,983.445 " />
<svg:polygon detid="369185549" count="1" value="102" id="3405119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  external  module  3  stereo Id 369185549 " fill="rgb(255,53,0)" points="462.639,983.445 481.564,983.445 481.564,972.292 " />
<svg:polygon detid="369185805" count="1" value="102" id="3405120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  external  module  3  stereo Id 369185805 " fill="rgb(255,53,0)" points="462.639,972.292 481.564,972.292 481.564,961.14 " />
<svg:polygon detid="369186061" count="1" value="102" id="3405121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  external  module  3  stereo Id 369186061 " fill="rgb(255,53,0)" points="462.639,961.14 481.564,961.14 481.564,949.987 " />
<svg:polygon detid="369186317" count="1" value="102" id="3405122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  external  module  3  stereo Id 369186317 " fill="rgb(255,53,0)" points="462.639,949.987 481.564,949.987 481.564,938.834 " />
<svg:polygon detid="369186573" count="1" value="102" id="3405123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  external  module  3  stereo Id 369186573 " fill="rgb(255,53,0)" points="462.639,938.834 481.564,938.834 481.564,927.681 " />
<svg:polygon detid="369186829" count="1" value="102" id="3405124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  external  module  3  stereo Id 369186829 " fill="rgb(255,53,0)" points="462.639,927.681 481.564,927.681 481.564,916.528 " />
<svg:polygon detid="369187085" count="1" value="102" id="3405125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  external  module  3  stereo Id 369187085 " fill="rgb(255,53,0)" points="462.639,916.528 481.564,916.528 481.564,905.376 " />
<svg:polygon detid="369187341" count="1" value="102" id="3405126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  external  module  3  stereo Id 369187341 " fill="rgb(255,53,0)" points="462.639,905.376 481.564,905.376 481.564,894.223 " />
<svg:polygon detid="369187597" count="1" value="102" id="3405127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 neg  external  module  3  stereo Id 369187597 " fill="rgb(255,53,0)" points="462.639,894.223 481.564,894.223 481.564,883.07 " />
<svg:polygon detid="369187853" count="1" value="102" id="3405128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 neg  external  module  3  stereo Id 369187853 " fill="rgb(255,53,0)" points="462.639,883.07 481.564,883.07 481.564,871.917 " />
<svg:polygon detid="369188109" count="1" value="102" id="3405129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 neg  external  module  3  stereo Id 369188109 " fill="rgb(255,53,0)" points="462.639,871.917 481.564,871.917 481.564,860.764 " />
<svg:polygon detid="369188365" count="1" value="102" id="3405130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 neg  external  module  3  stereo Id 369188365 " fill="rgb(255,53,0)" points="462.639,860.764 481.564,860.764 481.564,849.611 " />
<svg:polygon detid="369164558" count="1" value="102" id="3406001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  internal  module  3   Id 369164558 " fill="rgb(255,53,0)" points="502.853,1173.04 483.929,1173.04 483.929,1184.2 " />
<svg:polygon detid="369164814" count="1" value="102" id="3406002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  internal  module  3   Id 369164814 " fill="rgb(255,53,0)" points="502.853,1161.89 483.929,1161.89 483.929,1173.04 " />
<svg:polygon detid="369165070" count="1" value="102" id="3406004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  internal  module  3   Id 369165070 " fill="rgb(255,53,0)" points="502.853,1139.58 483.929,1139.58 483.929,1150.74 " />
<svg:polygon detid="369165326" count="1" value="102" id="3406005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  internal  module  3   Id 369165326 " fill="rgb(255,53,0)" points="502.853,1128.43 483.929,1128.43 483.929,1139.58 " />
<svg:polygon detid="369165582" count="1" value="102" id="3406006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  internal  module  3   Id 369165582 " fill="rgb(255,53,0)" points="502.853,1117.28 483.929,1117.28 483.929,1128.43 " />
<svg:polygon detid="369165838" count="1" value="102" id="3406007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  internal  module  3   Id 369165838 " fill="rgb(255,53,0)" points="502.853,1106.13 483.929,1106.13 483.929,1117.28 " />
<svg:polygon detid="369166094" count="1" value="102" id="3406008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  internal  module  3   Id 369166094 " fill="rgb(255,53,0)" points="502.853,1094.97 483.929,1094.97 483.929,1106.13 " />
<svg:polygon detid="369166350" count="1" value="102" id="3406009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  internal  module  3   Id 369166350 " fill="rgb(255,53,0)" points="502.853,1083.82 483.929,1083.82 483.929,1094.97 " />
<svg:polygon detid="369166606" count="1" value="102" id="3406010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  internal  module  3   Id 369166606 " fill="rgb(255,53,0)" points="502.853,1072.67 483.929,1072.67 483.929,1083.82 " />
<svg:polygon detid="369166862" count="1" value="102" id="3406012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  internal  module  3   Id 369166862 " fill="rgb(255,53,0)" points="502.853,1050.36 483.929,1050.36 483.929,1061.52 " />
<svg:polygon detid="369167118" count="1" value="102" id="3406013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  internal  module  3   Id 369167118 " fill="rgb(255,53,0)" points="502.853,1039.21 483.929,1039.21 483.929,1050.36 " />
<svg:polygon detid="369167374" count="1" value="102" id="3406014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  internal  module  3   Id 369167374 " fill="rgb(255,53,0)" points="502.853,1028.06 483.929,1028.06 483.929,1039.21 " />
<svg:polygon detid="369167630" count="1" value="102" id="3406015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  internal  module  3   Id 369167630 " fill="rgb(255,53,0)" points="502.853,1016.9 483.929,1016.9 483.929,1028.06 " />
<svg:polygon detid="369167886" count="1" value="102" id="3406016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  internal  module  3   Id 369167886 " fill="rgb(255,53,0)" points="502.853,1005.75 483.929,1005.75 483.929,1016.9 " />
<svg:polygon detid="369168142" count="1" value="102" id="3406017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  internal  module  3   Id 369168142 " fill="rgb(255,53,0)" points="502.853,994.598 483.929,994.598 483.929,1005.75 " />
<svg:polygon detid="369168398" count="1" value="102" id="3406019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  internal  module  3   Id 369168398 " fill="rgb(255,53,0)" points="502.853,972.292 483.929,972.292 483.929,983.445 " />
<svg:polygon detid="369168654" count="1" value="102" id="3406020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  internal  module  3   Id 369168654 " fill="rgb(255,53,0)" points="502.853,961.14 483.929,961.14 483.929,972.292 " />
<svg:polygon detid="369168910" count="1" value="102" id="3406021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  internal  module  3   Id 369168910 " fill="rgb(255,53,0)" points="502.853,949.987 483.929,949.987 483.929,961.14 " />
<svg:polygon detid="369169166" count="1" value="102" id="3406022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  internal  module  3   Id 369169166 " fill="rgb(255,53,0)" points="502.853,938.834 483.929,938.834 483.929,949.987 " />
<svg:polygon detid="369169422" count="1" value="102" id="3406023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  internal  module  3   Id 369169422 " fill="rgb(255,53,0)" points="502.853,927.681 483.929,927.681 483.929,938.834 " />
<svg:polygon detid="369169678" count="1" value="102" id="3406024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  internal  module  3   Id 369169678 " fill="rgb(255,53,0)" points="502.853,916.528 483.929,916.528 483.929,927.681 " />
<svg:polygon detid="369169934" count="1" value="102" id="3406025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  internal  module  3   Id 369169934 " fill="rgb(255,53,0)" points="502.853,905.376 483.929,905.376 483.929,916.528 " />
<svg:polygon detid="369170190" count="1" value="102" id="3406027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  internal  module  3   Id 369170190 " fill="rgb(255,53,0)" points="502.853,883.07 483.929,883.07 483.929,894.223 " />
<svg:polygon detid="369170446" count="1" value="102" id="3406028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  internal  module  3   Id 369170446 " fill="rgb(255,53,0)" points="502.853,871.917 483.929,871.917 483.929,883.07 " />
<svg:polygon detid="369170702" count="1" value="102" id="3406029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  internal  module  3   Id 369170702 " fill="rgb(255,53,0)" points="502.853,860.764 483.929,860.764 483.929,871.917 " />
<svg:polygon detid="369170958" count="1" value="102" id="3406030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  internal  module  3   Id 369170958 " fill="rgb(255,53,0)" points="502.853,849.611 483.929,849.611 483.929,860.764 " />
<svg:polygon detid="369164557" count="1" value="102" id="3406101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 neg  internal  module  3  stereo Id 369164557 " fill="rgb(255,53,0)" points="483.929,1184.2 502.853,1184.2 502.853,1173.04 " />
<svg:polygon detid="369164813" count="1" value="102" id="3406102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 neg  internal  module  3  stereo Id 369164813 " fill="rgb(255,53,0)" points="483.929,1173.04 502.853,1173.04 502.853,1161.89 " />
<svg:polygon detid="369165069" count="1" value="102" id="3406104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 neg  internal  module  3  stereo Id 369165069 " fill="rgb(255,53,0)" points="483.929,1150.74 502.853,1150.74 502.853,1139.58 " />
<svg:polygon detid="369165325" count="1" value="102" id="3406105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 neg  internal  module  3  stereo Id 369165325 " fill="rgb(255,53,0)" points="483.929,1139.58 502.853,1139.58 502.853,1128.43 " />
<svg:polygon detid="369165581" count="1" value="102" id="3406106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 neg  internal  module  3  stereo Id 369165581 " fill="rgb(255,53,0)" points="483.929,1128.43 502.853,1128.43 502.853,1117.28 " />
<svg:polygon detid="369165837" count="1" value="102" id="3406107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 neg  internal  module  3  stereo Id 369165837 " fill="rgb(255,53,0)" points="483.929,1117.28 502.853,1117.28 502.853,1106.13 " />
<svg:polygon detid="369166093" count="1" value="102" id="3406108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 neg  internal  module  3  stereo Id 369166093 " fill="rgb(255,53,0)" points="483.929,1106.13 502.853,1106.13 502.853,1094.97 " />
<svg:polygon detid="369166349" count="1" value="102" id="3406109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 neg  internal  module  3  stereo Id 369166349 " fill="rgb(255,53,0)" points="483.929,1094.97 502.853,1094.97 502.853,1083.82 " />
<svg:polygon detid="369166605" count="1" value="102" id="3406110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 neg  internal  module  3  stereo Id 369166605 " fill="rgb(255,53,0)" points="483.929,1083.82 502.853,1083.82 502.853,1072.67 " />
<svg:polygon detid="369166861" count="1" value="102" id="3406112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 neg  internal  module  3  stereo Id 369166861 " fill="rgb(255,53,0)" points="483.929,1061.52 502.853,1061.52 502.853,1050.36 " />
<svg:polygon detid="369167117" count="1" value="102" id="3406113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 neg  internal  module  3  stereo Id 369167117 " fill="rgb(255,53,0)" points="483.929,1050.36 502.853,1050.36 502.853,1039.21 " />
<svg:polygon detid="369167373" count="1" value="102" id="3406114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 neg  internal  module  3  stereo Id 369167373 " fill="rgb(255,53,0)" points="483.929,1039.21 502.853,1039.21 502.853,1028.06 " />
<svg:polygon detid="369167629" count="1" value="102" id="3406115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 neg  internal  module  3  stereo Id 369167629 " fill="rgb(255,53,0)" points="483.929,1028.06 502.853,1028.06 502.853,1016.9 " />
<svg:polygon detid="369167885" count="1" value="102" id="3406116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 neg  internal  module  3  stereo Id 369167885 " fill="rgb(255,53,0)" points="483.929,1016.9 502.853,1016.9 502.853,1005.75 " />
<svg:polygon detid="369168141" count="1" value="102" id="3406117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 neg  internal  module  3  stereo Id 369168141 " fill="rgb(255,53,0)" points="483.929,1005.75 502.853,1005.75 502.853,994.598 " />
<svg:polygon detid="369168397" count="1" value="102" id="3406119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 neg  internal  module  3  stereo Id 369168397 " fill="rgb(255,53,0)" points="483.929,983.445 502.853,983.445 502.853,972.292 " />
<svg:polygon detid="369168653" count="1" value="102" id="3406120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 neg  internal  module  3  stereo Id 369168653 " fill="rgb(255,53,0)" points="483.929,972.292 502.853,972.292 502.853,961.14 " />
<svg:polygon detid="369168909" count="1" value="102" id="3406121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 neg  internal  module  3  stereo Id 369168909 " fill="rgb(255,53,0)" points="483.929,961.14 502.853,961.14 502.853,949.987 " />
<svg:polygon detid="369169165" count="1" value="102" id="3406122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 neg  internal  module  3  stereo Id 369169165 " fill="rgb(255,53,0)" points="483.929,949.987 502.853,949.987 502.853,938.834 " />
<svg:polygon detid="369169421" count="1" value="102" id="3406123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 neg  internal  module  3  stereo Id 369169421 " fill="rgb(255,53,0)" points="483.929,938.834 502.853,938.834 502.853,927.681 " />
<svg:polygon detid="369169677" count="1" value="102" id="3406124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 neg  internal  module  3  stereo Id 369169677 " fill="rgb(255,53,0)" points="483.929,927.681 502.853,927.681 502.853,916.528 " />
<svg:polygon detid="369169933" count="1" value="102" id="3406125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 neg  internal  module  3  stereo Id 369169933 " fill="rgb(255,53,0)" points="483.929,916.528 502.853,916.528 502.853,905.376 " />
<svg:polygon detid="369170189" count="1" value="102" id="3406127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 neg  internal  module  3  stereo Id 369170189 " fill="rgb(255,53,0)" points="483.929,894.223 502.853,894.223 502.853,883.07 " />
<svg:polygon detid="369170445" count="1" value="102" id="3406128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 neg  internal  module  3  stereo Id 369170445 " fill="rgb(255,53,0)" points="483.929,883.07 502.853,883.07 502.853,871.917 " />
<svg:polygon detid="369170701" count="1" value="102" id="3406129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 neg  internal  module  3  stereo Id 369170701 " fill="rgb(255,53,0)" points="483.929,871.917 502.853,871.917 502.853,860.764 " />
<svg:polygon detid="369170957" count="1" value="102" id="3406130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 neg  internal  module  3  stereo Id 369170957 " fill="rgb(255,53,0)" points="483.929,860.764 502.853,860.764 502.853,849.611 " />
<svg:polygon detid="369213702" count="1" value="102" id="3407001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  external  module  1   Id 369213702 " fill="rgb(255,53,0)" points="524.143,1173.04 505.219,1173.04 505.219,1184.2 " />
<svg:polygon detid="369213958" count="1" value="102" id="3407002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  external  module  1   Id 369213958 " fill="rgb(255,53,0)" points="524.143,1161.89 505.219,1161.89 505.219,1173.04 " />
<svg:polygon detid="369214214" count="1" value="102" id="3407003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  external  module  1   Id 369214214 " fill="rgb(255,53,0)" points="524.143,1150.74 505.219,1150.74 505.219,1161.89 " />
<svg:polygon detid="369214470" count="1" value="102" id="3407004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  external  module  1   Id 369214470 " fill="rgb(255,53,0)" points="524.143,1139.58 505.219,1139.58 505.219,1150.74 " />
<svg:polygon detid="369214726" count="1" value="102" id="3407005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  external  module  1   Id 369214726 " fill="rgb(255,53,0)" points="524.143,1128.43 505.219,1128.43 505.219,1139.58 " />
<svg:polygon detid="369214982" count="1" value="102" id="3407006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  external  module  1   Id 369214982 " fill="rgb(255,53,0)" points="524.143,1117.28 505.219,1117.28 505.219,1128.43 " />
<svg:polygon detid="369215238" count="1" value="102" id="3407007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  external  module  1   Id 369215238 " fill="rgb(255,53,0)" points="524.143,1106.13 505.219,1106.13 505.219,1117.28 " />
<svg:polygon detid="369215494" count="1" value="102" id="3407008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  external  module  1   Id 369215494 " fill="rgb(255,53,0)" points="524.143,1094.97 505.219,1094.97 505.219,1106.13 " />
<svg:polygon detid="369215750" count="1" value="102" id="3407009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  external  module  1   Id 369215750 " fill="rgb(255,53,0)" points="524.143,1083.82 505.219,1083.82 505.219,1094.97 " />
<svg:polygon detid="369216006" count="1" value="102" id="3407010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  external  module  1   Id 369216006 " fill="rgb(255,53,0)" points="524.143,1072.67 505.219,1072.67 505.219,1083.82 " />
<svg:polygon detid="369216262" count="1" value="102" id="3407011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  external  module  1   Id 369216262 " fill="rgb(255,53,0)" points="524.143,1061.52 505.219,1061.52 505.219,1072.67 " />
<svg:polygon detid="369216518" count="1" value="102" id="3407012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  external  module  1   Id 369216518 " fill="rgb(255,53,0)" points="524.143,1050.36 505.219,1050.36 505.219,1061.52 " />
<svg:polygon detid="369216774" count="1" value="102" id="3407013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  external  module  1   Id 369216774 " fill="rgb(255,53,0)" points="524.143,1039.21 505.219,1039.21 505.219,1050.36 " />
<svg:polygon detid="369217030" count="1" value="102" id="3407014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  external  module  1   Id 369217030 " fill="rgb(255,53,0)" points="524.143,1028.06 505.219,1028.06 505.219,1039.21 " />
<svg:polygon detid="369217286" count="1" value="102" id="3407015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  external  module  1   Id 369217286 " fill="rgb(255,53,0)" points="524.143,1016.9 505.219,1016.9 505.219,1028.06 " />
<svg:polygon detid="369217542" count="1" value="102" id="3407016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  external  module  1   Id 369217542 " fill="rgb(255,53,0)" points="524.143,1005.75 505.219,1005.75 505.219,1016.9 " />
<svg:polygon detid="369217798" count="1" value="102" id="3407017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  external  module  1   Id 369217798 " fill="rgb(255,53,0)" points="524.143,994.598 505.219,994.598 505.219,1005.75 " />
<svg:polygon detid="369218054" count="1" value="102" id="3407018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  external  module  1   Id 369218054 " fill="rgb(255,53,0)" points="524.143,983.445 505.219,983.445 505.219,994.598 " />
<svg:polygon detid="369218310" count="1" value="102" id="3407019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  external  module  1   Id 369218310 " fill="rgb(255,53,0)" points="524.143,972.292 505.219,972.292 505.219,983.445 " />
<svg:polygon detid="369218566" count="1" value="102" id="3407020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  external  module  1   Id 369218566 " fill="rgb(255,53,0)" points="524.143,961.14 505.219,961.14 505.219,972.292 " />
<svg:polygon detid="369218822" count="1" value="102" id="3407021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  external  module  1   Id 369218822 " fill="rgb(255,53,0)" points="524.143,949.987 505.219,949.987 505.219,961.14 " />
<svg:polygon detid="369219078" count="1" value="102" id="3407022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  external  module  1   Id 369219078 " fill="rgb(255,53,0)" points="524.143,938.834 505.219,938.834 505.219,949.987 " />
<svg:polygon detid="369219334" count="1" value="102" id="3407023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  external  module  1   Id 369219334 " fill="rgb(255,53,0)" points="524.143,927.681 505.219,927.681 505.219,938.834 " />
<svg:polygon detid="369219590" count="1" value="102" id="3407024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  external  module  1   Id 369219590 " fill="rgb(255,53,0)" points="524.143,916.528 505.219,916.528 505.219,927.681 " />
<svg:polygon detid="369219846" count="1" value="102" id="3407025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  external  module  1   Id 369219846 " fill="rgb(255,53,0)" points="524.143,905.376 505.219,905.376 505.219,916.528 " />
<svg:polygon detid="369220102" count="1" value="102" id="3407026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  external  module  1   Id 369220102 " fill="rgb(255,53,0)" points="524.143,894.223 505.219,894.223 505.219,905.376 " />
<svg:polygon detid="369220358" count="1" value="102" id="3407027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 pos  external  module  1   Id 369220358 " fill="rgb(255,53,0)" points="524.143,883.07 505.219,883.07 505.219,894.223 " />
<svg:polygon detid="369220614" count="1" value="102" id="3407028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 pos  external  module  1   Id 369220614 " fill="rgb(255,53,0)" points="524.143,871.917 505.219,871.917 505.219,883.07 " />
<svg:polygon detid="369220870" count="1" value="102" id="3407029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 pos  external  module  1   Id 369220870 " fill="rgb(255,53,0)" points="524.143,860.764 505.219,860.764 505.219,871.917 " />
<svg:polygon detid="369221126" count="1" value="102" id="3407030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 pos  external  module  1   Id 369221126 " fill="rgb(255,53,0)" points="524.143,849.611 505.219,849.611 505.219,860.764 " />
<svg:polygon detid="369213701" count="1" value="102" id="3407101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  external  module  1  stereo Id 369213701 " fill="rgb(255,53,0)" points="505.219,1184.2 524.143,1184.2 524.143,1173.04 " />
<svg:polygon detid="369213957" count="1" value="102" id="3407102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  external  module  1  stereo Id 369213957 " fill="rgb(255,53,0)" points="505.219,1173.04 524.143,1173.04 524.143,1161.89 " />
<svg:polygon detid="369214213" count="1" value="102" id="3407103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  external  module  1  stereo Id 369214213 " fill="rgb(255,53,0)" points="505.219,1161.89 524.143,1161.89 524.143,1150.74 " />
<svg:polygon detid="369214469" count="1" value="102" id="3407104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  external  module  1  stereo Id 369214469 " fill="rgb(255,53,0)" points="505.219,1150.74 524.143,1150.74 524.143,1139.58 " />
<svg:polygon detid="369214725" count="1" value="102" id="3407105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  external  module  1  stereo Id 369214725 " fill="rgb(255,53,0)" points="505.219,1139.58 524.143,1139.58 524.143,1128.43 " />
<svg:polygon detid="369214981" count="1" value="102" id="3407106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  external  module  1  stereo Id 369214981 " fill="rgb(255,53,0)" points="505.219,1128.43 524.143,1128.43 524.143,1117.28 " />
<svg:polygon detid="369215237" count="1" value="102" id="3407107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  external  module  1  stereo Id 369215237 " fill="rgb(255,53,0)" points="505.219,1117.28 524.143,1117.28 524.143,1106.13 " />
<svg:polygon detid="369215493" count="1" value="102" id="3407108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  external  module  1  stereo Id 369215493 " fill="rgb(255,53,0)" points="505.219,1106.13 524.143,1106.13 524.143,1094.97 " />
<svg:polygon detid="369215749" count="1" value="102" id="3407109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  external  module  1  stereo Id 369215749 " fill="rgb(255,53,0)" points="505.219,1094.97 524.143,1094.97 524.143,1083.82 " />
<svg:polygon detid="369216005" count="1" value="102" id="3407110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  external  module  1  stereo Id 369216005 " fill="rgb(255,53,0)" points="505.219,1083.82 524.143,1083.82 524.143,1072.67 " />
<svg:polygon detid="369216261" count="1" value="102" id="3407111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  external  module  1  stereo Id 369216261 " fill="rgb(255,53,0)" points="505.219,1072.67 524.143,1072.67 524.143,1061.52 " />
<svg:polygon detid="369216517" count="1" value="102" id="3407112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  external  module  1  stereo Id 369216517 " fill="rgb(255,53,0)" points="505.219,1061.52 524.143,1061.52 524.143,1050.36 " />
<svg:polygon detid="369216773" count="1" value="102" id="3407113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  external  module  1  stereo Id 369216773 " fill="rgb(255,53,0)" points="505.219,1050.36 524.143,1050.36 524.143,1039.21 " />
<svg:polygon detid="369217029" count="1" value="102" id="3407114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  external  module  1  stereo Id 369217029 " fill="rgb(255,53,0)" points="505.219,1039.21 524.143,1039.21 524.143,1028.06 " />
<svg:polygon detid="369217285" count="1" value="102" id="3407115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  external  module  1  stereo Id 369217285 " fill="rgb(255,53,0)" points="505.219,1028.06 524.143,1028.06 524.143,1016.9 " />
<svg:polygon detid="369217541" count="1" value="102" id="3407116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  external  module  1  stereo Id 369217541 " fill="rgb(255,53,0)" points="505.219,1016.9 524.143,1016.9 524.143,1005.75 " />
<svg:polygon detid="369217797" count="1" value="102" id="3407117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  external  module  1  stereo Id 369217797 " fill="rgb(255,53,0)" points="505.219,1005.75 524.143,1005.75 524.143,994.598 " />
<svg:polygon detid="369218053" count="1" value="102" id="3407118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  external  module  1  stereo Id 369218053 " fill="rgb(255,53,0)" points="505.219,994.598 524.143,994.598 524.143,983.445 " />
<svg:polygon detid="369218309" count="1" value="102" id="3407119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  external  module  1  stereo Id 369218309 " fill="rgb(255,53,0)" points="505.219,983.445 524.143,983.445 524.143,972.292 " />
<svg:polygon detid="369218565" count="1" value="102" id="3407120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  external  module  1  stereo Id 369218565 " fill="rgb(255,53,0)" points="505.219,972.292 524.143,972.292 524.143,961.14 " />
<svg:polygon detid="369218821" count="1" value="102" id="3407121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  external  module  1  stereo Id 369218821 " fill="rgb(255,53,0)" points="505.219,961.14 524.143,961.14 524.143,949.987 " />
<svg:polygon detid="369219077" count="1" value="102" id="3407122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  external  module  1  stereo Id 369219077 " fill="rgb(255,53,0)" points="505.219,949.987 524.143,949.987 524.143,938.834 " />
<svg:polygon detid="369219333" count="1" value="102" id="3407123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  external  module  1  stereo Id 369219333 " fill="rgb(255,53,0)" points="505.219,938.834 524.143,938.834 524.143,927.681 " />
<svg:polygon detid="369219589" count="1" value="102" id="3407124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  external  module  1  stereo Id 369219589 " fill="rgb(255,53,0)" points="505.219,927.681 524.143,927.681 524.143,916.528 " />
<svg:polygon detid="369219845" count="1" value="102" id="3407125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  external  module  1  stereo Id 369219845 " fill="rgb(255,53,0)" points="505.219,916.528 524.143,916.528 524.143,905.376 " />
<svg:polygon detid="369220101" count="1" value="102" id="3407126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  external  module  1  stereo Id 369220101 " fill="rgb(255,53,0)" points="505.219,905.376 524.143,905.376 524.143,894.223 " />
<svg:polygon detid="369220357" count="1" value="102" id="3407127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 pos  external  module  1  stereo Id 369220357 " fill="rgb(255,53,0)" points="505.219,894.223 524.143,894.223 524.143,883.07 " />
<svg:polygon detid="369220613" count="1" value="102" id="3407128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 pos  external  module  1  stereo Id 369220613 " fill="rgb(255,53,0)" points="505.219,883.07 524.143,883.07 524.143,871.917 " />
<svg:polygon detid="369220869" count="1" value="102" id="3407129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 pos  external  module  1  stereo Id 369220869 " fill="rgb(255,53,0)" points="505.219,871.917 524.143,871.917 524.143,860.764 " />
<svg:polygon detid="369221125" count="1" value="102" id="3407130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 pos  external  module  1  stereo Id 369221125 " fill="rgb(255,53,0)" points="505.219,860.764 524.143,860.764 524.143,849.611 " />
<svg:polygon detid="369197318" count="1" value="102" id="3408001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  internal  module  1   Id 369197318 " fill="rgb(255,53,0)" points="545.433,1173.04 526.509,1173.04 526.509,1184.2 " />
<svg:polygon detid="369197574" count="1" value="102" id="3408002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  internal  module  1   Id 369197574 " fill="rgb(255,53,0)" points="545.433,1161.89 526.509,1161.89 526.509,1173.04 " />
<svg:polygon detid="369197830" count="1" value="102" id="3408004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  internal  module  1   Id 369197830 " fill="rgb(255,53,0)" points="545.433,1139.58 526.509,1139.58 526.509,1150.74 " />
<svg:polygon detid="369198086" count="1" value="102" id="3408005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  internal  module  1   Id 369198086 " fill="rgb(255,53,0)" points="545.433,1128.43 526.509,1128.43 526.509,1139.58 " />
<svg:polygon detid="369198342" count="1" value="102" id="3408006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  internal  module  1   Id 369198342 " fill="rgb(255,53,0)" points="545.433,1117.28 526.509,1117.28 526.509,1128.43 " />
<svg:polygon detid="369198598" count="1" value="102" id="3408007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  internal  module  1   Id 369198598 " fill="rgb(255,53,0)" points="545.433,1106.13 526.509,1106.13 526.509,1117.28 " />
<svg:polygon detid="369198854" count="1" value="102" id="3408008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  internal  module  1   Id 369198854 " fill="rgb(255,53,0)" points="545.433,1094.97 526.509,1094.97 526.509,1106.13 " />
<svg:polygon detid="369199110" count="1" value="102" id="3408009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  internal  module  1   Id 369199110 " fill="rgb(255,53,0)" points="545.433,1083.82 526.509,1083.82 526.509,1094.97 " />
<svg:polygon detid="369199366" count="1" value="102" id="3408010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  internal  module  1   Id 369199366 " fill="rgb(255,53,0)" points="545.433,1072.67 526.509,1072.67 526.509,1083.82 " />
<svg:polygon detid="369199622" count="1" value="102" id="3408012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  internal  module  1   Id 369199622 " fill="rgb(255,53,0)" points="545.433,1050.36 526.509,1050.36 526.509,1061.52 " />
<svg:polygon detid="369199878" count="1" value="102" id="3408013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  internal  module  1   Id 369199878 " fill="rgb(255,53,0)" points="545.433,1039.21 526.509,1039.21 526.509,1050.36 " />
<svg:polygon detid="369200134" count="1" value="102" id="3408014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  internal  module  1   Id 369200134 " fill="rgb(255,53,0)" points="545.433,1028.06 526.509,1028.06 526.509,1039.21 " />
<svg:polygon detid="369200390" count="1" value="102" id="3408015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  internal  module  1   Id 369200390 " fill="rgb(255,53,0)" points="545.433,1016.9 526.509,1016.9 526.509,1028.06 " />
<svg:polygon detid="369200646" count="1" value="102" id="3408016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  internal  module  1   Id 369200646 " fill="rgb(255,53,0)" points="545.433,1005.75 526.509,1005.75 526.509,1016.9 " />
<svg:polygon detid="369200902" count="1" value="102" id="3408017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  internal  module  1   Id 369200902 " fill="rgb(255,53,0)" points="545.433,994.598 526.509,994.598 526.509,1005.75 " />
<svg:polygon detid="369201158" count="1" value="102" id="3408019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  internal  module  1   Id 369201158 " fill="rgb(255,53,0)" points="545.433,972.292 526.509,972.292 526.509,983.445 " />
<svg:polygon detid="369201414" count="1" value="102" id="3408020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  internal  module  1   Id 369201414 " fill="rgb(255,53,0)" points="545.433,961.14 526.509,961.14 526.509,972.292 " />
<svg:polygon detid="369201670" count="1" value="102" id="3408021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  internal  module  1   Id 369201670 " fill="rgb(255,53,0)" points="545.433,949.987 526.509,949.987 526.509,961.14 " />
<svg:polygon detid="369201926" count="1" value="102" id="3408022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  internal  module  1   Id 369201926 " fill="rgb(255,53,0)" points="545.433,938.834 526.509,938.834 526.509,949.987 " />
<svg:polygon detid="369202182" count="1" value="102" id="3408023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  internal  module  1   Id 369202182 " fill="rgb(255,53,0)" points="545.433,927.681 526.509,927.681 526.509,938.834 " />
<svg:polygon detid="369202438" count="1" value="102" id="3408024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  internal  module  1   Id 369202438 " fill="rgb(255,53,0)" points="545.433,916.528 526.509,916.528 526.509,927.681 " />
<svg:polygon detid="369202694" count="1" value="102" id="3408025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  internal  module  1   Id 369202694 " fill="rgb(255,53,0)" points="545.433,905.376 526.509,905.376 526.509,916.528 " />
<svg:polygon detid="369202950" count="1" value="102" id="3408027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  internal  module  1   Id 369202950 " fill="rgb(255,53,0)" points="545.433,883.07 526.509,883.07 526.509,894.223 " />
<svg:polygon detid="369203206" count="1" value="102" id="3408028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  internal  module  1   Id 369203206 " fill="rgb(255,53,0)" points="545.433,871.917 526.509,871.917 526.509,883.07 " />
<svg:polygon detid="369203462" count="1" value="102" id="3408029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  internal  module  1   Id 369203462 " fill="rgb(255,53,0)" points="545.433,860.764 526.509,860.764 526.509,871.917 " />
<svg:polygon detid="369203718" count="1" value="102" id="3408030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  internal  module  1   Id 369203718 " fill="rgb(255,53,0)" points="545.433,849.611 526.509,849.611 526.509,860.764 " />
<svg:polygon detid="369197317" count="1" value="102" id="3408101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  internal  module  1  stereo Id 369197317 " fill="rgb(255,53,0)" points="526.509,1184.2 545.433,1184.2 545.433,1173.04 " />
<svg:polygon detid="369197573" count="1" value="102" id="3408102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  internal  module  1  stereo Id 369197573 " fill="rgb(255,53,0)" points="526.509,1173.04 545.433,1173.04 545.433,1161.89 " />
<svg:polygon detid="369197829" count="1" value="102" id="3408104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  internal  module  1  stereo Id 369197829 " fill="rgb(255,53,0)" points="526.509,1150.74 545.433,1150.74 545.433,1139.58 " />
<svg:polygon detid="369198085" count="1" value="102" id="3408105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  internal  module  1  stereo Id 369198085 " fill="rgb(255,53,0)" points="526.509,1139.58 545.433,1139.58 545.433,1128.43 " />
<svg:polygon detid="369198341" count="1" value="102" id="3408106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  internal  module  1  stereo Id 369198341 " fill="rgb(255,53,0)" points="526.509,1128.43 545.433,1128.43 545.433,1117.28 " />
<svg:polygon detid="369198597" count="1" value="102" id="3408107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  internal  module  1  stereo Id 369198597 " fill="rgb(255,53,0)" points="526.509,1117.28 545.433,1117.28 545.433,1106.13 " />
<svg:polygon detid="369198853" count="1" value="102" id="3408108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  internal  module  1  stereo Id 369198853 " fill="rgb(255,53,0)" points="526.509,1106.13 545.433,1106.13 545.433,1094.97 " />
<svg:polygon detid="369199109" count="1" value="102" id="3408109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  internal  module  1  stereo Id 369199109 " fill="rgb(255,53,0)" points="526.509,1094.97 545.433,1094.97 545.433,1083.82 " />
<svg:polygon detid="369199365" count="1" value="102" id="3408110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  internal  module  1  stereo Id 369199365 " fill="rgb(255,53,0)" points="526.509,1083.82 545.433,1083.82 545.433,1072.67 " />
<svg:polygon detid="369199621" count="1" value="102" id="3408112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  internal  module  1  stereo Id 369199621 " fill="rgb(255,53,0)" points="526.509,1061.52 545.433,1061.52 545.433,1050.36 " />
<svg:polygon detid="369199877" count="1" value="102" id="3408113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  internal  module  1  stereo Id 369199877 " fill="rgb(255,53,0)" points="526.509,1050.36 545.433,1050.36 545.433,1039.21 " />
<svg:polygon detid="369200133" count="1" value="102" id="3408114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  internal  module  1  stereo Id 369200133 " fill="rgb(255,53,0)" points="526.509,1039.21 545.433,1039.21 545.433,1028.06 " />
<svg:polygon detid="369200389" count="1" value="102" id="3408115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  internal  module  1  stereo Id 369200389 " fill="rgb(255,53,0)" points="526.509,1028.06 545.433,1028.06 545.433,1016.9 " />
<svg:polygon detid="369200645" count="1" value="102" id="3408116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  internal  module  1  stereo Id 369200645 " fill="rgb(255,53,0)" points="526.509,1016.9 545.433,1016.9 545.433,1005.75 " />
<svg:polygon detid="369200901" count="1" value="102" id="3408117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  internal  module  1  stereo Id 369200901 " fill="rgb(255,53,0)" points="526.509,1005.75 545.433,1005.75 545.433,994.598 " />
<svg:polygon detid="369201157" count="1" value="102" id="3408119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  internal  module  1  stereo Id 369201157 " fill="rgb(255,53,0)" points="526.509,983.445 545.433,983.445 545.433,972.292 " />
<svg:polygon detid="369201413" count="1" value="102" id="3408120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  internal  module  1  stereo Id 369201413 " fill="rgb(255,53,0)" points="526.509,972.292 545.433,972.292 545.433,961.14 " />
<svg:polygon detid="369201669" count="1" value="102" id="3408121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  internal  module  1  stereo Id 369201669 " fill="rgb(255,53,0)" points="526.509,961.14 545.433,961.14 545.433,949.987 " />
<svg:polygon detid="369201925" count="1" value="102" id="3408122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  internal  module  1  stereo Id 369201925 " fill="rgb(255,53,0)" points="526.509,949.987 545.433,949.987 545.433,938.834 " />
<svg:polygon detid="369202181" count="1" value="102" id="3408123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  internal  module  1  stereo Id 369202181 " fill="rgb(255,53,0)" points="526.509,938.834 545.433,938.834 545.433,927.681 " />
<svg:polygon detid="369202437" count="1" value="102" id="3408124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  internal  module  1  stereo Id 369202437 " fill="rgb(255,53,0)" points="526.509,927.681 545.433,927.681 545.433,916.528 " />
<svg:polygon detid="369202693" count="1" value="102" id="3408125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  internal  module  1  stereo Id 369202693 " fill="rgb(255,53,0)" points="526.509,916.528 545.433,916.528 545.433,905.376 " />
<svg:polygon detid="369202949" count="1" value="102" id="3408127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  internal  module  1  stereo Id 369202949 " fill="rgb(255,53,0)" points="526.509,894.223 545.433,894.223 545.433,883.07 " />
<svg:polygon detid="369203205" count="1" value="102" id="3408128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  internal  module  1  stereo Id 369203205 " fill="rgb(255,53,0)" points="526.509,883.07 545.433,883.07 545.433,871.917 " />
<svg:polygon detid="369203461" count="1" value="102" id="3408129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  internal  module  1  stereo Id 369203461 " fill="rgb(255,53,0)" points="526.509,871.917 545.433,871.917 545.433,860.764 " />
<svg:polygon detid="369203717" count="1" value="102" id="3408130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  internal  module  1  stereo Id 369203717 " fill="rgb(255,53,0)" points="526.509,860.764 545.433,860.764 545.433,849.611 " />
<svg:polygon detid="369213706" count="1" value="102" id="3409001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  external  module  2   Id 369213706 " fill="rgb(255,53,0)" points="566.723,1173.04 547.798,1173.04 547.798,1184.2 " />
<svg:polygon detid="369213962" count="1" value="102" id="3409002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  external  module  2   Id 369213962 " fill="rgb(255,53,0)" points="566.723,1161.89 547.798,1161.89 547.798,1173.04 " />
<svg:polygon detid="369214218" count="1" value="102" id="3409003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  external  module  2   Id 369214218 " fill="rgb(255,53,0)" points="566.723,1150.74 547.798,1150.74 547.798,1161.89 " />
<svg:polygon detid="369214474" count="1" value="102" id="3409004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  external  module  2   Id 369214474 " fill="rgb(255,53,0)" points="566.723,1139.58 547.798,1139.58 547.798,1150.74 " />
<svg:polygon detid="369214730" count="1" value="102" id="3409005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  external  module  2   Id 369214730 " fill="rgb(255,53,0)" points="566.723,1128.43 547.798,1128.43 547.798,1139.58 " />
<svg:polygon detid="369214986" count="1" value="102" id="3409006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  external  module  2   Id 369214986 " fill="rgb(255,53,0)" points="566.723,1117.28 547.798,1117.28 547.798,1128.43 " />
<svg:polygon detid="369215242" count="1" value="102" id="3409007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  external  module  2   Id 369215242 " fill="rgb(255,53,0)" points="566.723,1106.13 547.798,1106.13 547.798,1117.28 " />
<svg:polygon detid="369215498" count="1" value="102" id="3409008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  external  module  2   Id 369215498 " fill="rgb(255,53,0)" points="566.723,1094.97 547.798,1094.97 547.798,1106.13 " />
<svg:polygon detid="369215754" count="1" value="102" id="3409009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  external  module  2   Id 369215754 " fill="rgb(255,53,0)" points="566.723,1083.82 547.798,1083.82 547.798,1094.97 " />
<svg:polygon detid="369216010" count="1" value="102" id="3409010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  external  module  2   Id 369216010 " fill="rgb(255,53,0)" points="566.723,1072.67 547.798,1072.67 547.798,1083.82 " />
<svg:polygon detid="369216266" count="1" value="102" id="3409011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  external  module  2   Id 369216266 " fill="rgb(255,53,0)" points="566.723,1061.52 547.798,1061.52 547.798,1072.67 " />
<svg:polygon detid="369216522" count="1" value="102" id="3409012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  external  module  2   Id 369216522 " fill="rgb(255,53,0)" points="566.723,1050.36 547.798,1050.36 547.798,1061.52 " />
<svg:polygon detid="369216778" count="1" value="102" id="3409013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  external  module  2   Id 369216778 " fill="rgb(255,53,0)" points="566.723,1039.21 547.798,1039.21 547.798,1050.36 " />
<svg:polygon detid="369217034" count="1" value="102" id="3409014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  external  module  2   Id 369217034 " fill="rgb(255,53,0)" points="566.723,1028.06 547.798,1028.06 547.798,1039.21 " />
<svg:polygon detid="369217290" count="1" value="102" id="3409015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  external  module  2   Id 369217290 " fill="rgb(255,53,0)" points="566.723,1016.9 547.798,1016.9 547.798,1028.06 " />
<svg:polygon detid="369217546" count="1" value="102" id="3409016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  external  module  2   Id 369217546 " fill="rgb(255,53,0)" points="566.723,1005.75 547.798,1005.75 547.798,1016.9 " />
<svg:polygon detid="369217802" count="1" value="102" id="3409017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  external  module  2   Id 369217802 " fill="rgb(255,53,0)" points="566.723,994.598 547.798,994.598 547.798,1005.75 " />
<svg:polygon detid="369218058" count="1" value="102" id="3409018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  external  module  2   Id 369218058 " fill="rgb(255,53,0)" points="566.723,983.445 547.798,983.445 547.798,994.598 " />
<svg:polygon detid="369218314" count="1" value="102" id="3409019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  external  module  2   Id 369218314 " fill="rgb(255,53,0)" points="566.723,972.292 547.798,972.292 547.798,983.445 " />
<svg:polygon detid="369218570" count="1" value="102" id="3409020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  external  module  2   Id 369218570 " fill="rgb(255,53,0)" points="566.723,961.14 547.798,961.14 547.798,972.292 " />
<svg:polygon detid="369218826" count="1" value="102" id="3409021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  external  module  2   Id 369218826 " fill="rgb(255,53,0)" points="566.723,949.987 547.798,949.987 547.798,961.14 " />
<svg:polygon detid="369219082" count="1" value="102" id="3409022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  external  module  2   Id 369219082 " fill="rgb(255,53,0)" points="566.723,938.834 547.798,938.834 547.798,949.987 " />
<svg:polygon detid="369219338" count="1" value="102" id="3409023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  external  module  2   Id 369219338 " fill="rgb(255,53,0)" points="566.723,927.681 547.798,927.681 547.798,938.834 " />
<svg:polygon detid="369219594" count="1" value="102" id="3409024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  external  module  2   Id 369219594 " fill="rgb(255,53,0)" points="566.723,916.528 547.798,916.528 547.798,927.681 " />
<svg:polygon detid="369219850" count="1" value="102" id="3409025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  external  module  2   Id 369219850 " fill="rgb(255,53,0)" points="566.723,905.376 547.798,905.376 547.798,916.528 " />
<svg:polygon detid="369220106" count="1" value="102" id="3409026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  external  module  2   Id 369220106 " fill="rgb(255,53,0)" points="566.723,894.223 547.798,894.223 547.798,905.376 " />
<svg:polygon detid="369220362" count="1" value="102" id="3409027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 pos  external  module  2   Id 369220362 " fill="rgb(255,53,0)" points="566.723,883.07 547.798,883.07 547.798,894.223 " />
<svg:polygon detid="369220618" count="1" value="102" id="3409028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 pos  external  module  2   Id 369220618 " fill="rgb(255,53,0)" points="566.723,871.917 547.798,871.917 547.798,883.07 " />
<svg:polygon detid="369220874" count="1" value="102" id="3409029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 pos  external  module  2   Id 369220874 " fill="rgb(255,53,0)" points="566.723,860.764 547.798,860.764 547.798,871.917 " />
<svg:polygon detid="369221130" count="1" value="102" id="3409030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 pos  external  module  2   Id 369221130 " fill="rgb(255,53,0)" points="566.723,849.611 547.798,849.611 547.798,860.764 " />
<svg:polygon detid="369213705" count="1" value="102" id="3409101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  external  module  2  stereo Id 369213705 " fill="rgb(255,53,0)" points="547.798,1184.2 566.723,1184.2 566.723,1173.04 " />
<svg:polygon detid="369213961" count="1" value="102" id="3409102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  external  module  2  stereo Id 369213961 " fill="rgb(255,53,0)" points="547.798,1173.04 566.723,1173.04 566.723,1161.89 " />
<svg:polygon detid="369214217" count="1" value="102" id="3409103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  external  module  2  stereo Id 369214217 " fill="rgb(255,53,0)" points="547.798,1161.89 566.723,1161.89 566.723,1150.74 " />
<svg:polygon detid="369214473" count="1" value="102" id="3409104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  external  module  2  stereo Id 369214473 " fill="rgb(255,53,0)" points="547.798,1150.74 566.723,1150.74 566.723,1139.58 " />
<svg:polygon detid="369214729" count="1" value="102" id="3409105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  external  module  2  stereo Id 369214729 " fill="rgb(255,53,0)" points="547.798,1139.58 566.723,1139.58 566.723,1128.43 " />
<svg:polygon detid="369214985" count="1" value="102" id="3409106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  external  module  2  stereo Id 369214985 " fill="rgb(255,53,0)" points="547.798,1128.43 566.723,1128.43 566.723,1117.28 " />
<svg:polygon detid="369215241" count="1" value="102" id="3409107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  external  module  2  stereo Id 369215241 " fill="rgb(255,53,0)" points="547.798,1117.28 566.723,1117.28 566.723,1106.13 " />
<svg:polygon detid="369215497" count="1" value="102" id="3409108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  external  module  2  stereo Id 369215497 " fill="rgb(255,53,0)" points="547.798,1106.13 566.723,1106.13 566.723,1094.97 " />
<svg:polygon detid="369215753" count="1" value="102" id="3409109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  external  module  2  stereo Id 369215753 " fill="rgb(255,53,0)" points="547.798,1094.97 566.723,1094.97 566.723,1083.82 " />
<svg:polygon detid="369216009" count="1" value="102" id="3409110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  external  module  2  stereo Id 369216009 " fill="rgb(255,53,0)" points="547.798,1083.82 566.723,1083.82 566.723,1072.67 " />
<svg:polygon detid="369216265" count="1" value="102" id="3409111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  external  module  2  stereo Id 369216265 " fill="rgb(255,53,0)" points="547.798,1072.67 566.723,1072.67 566.723,1061.52 " />
<svg:polygon detid="369216521" count="1" value="102" id="3409112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  external  module  2  stereo Id 369216521 " fill="rgb(255,53,0)" points="547.798,1061.52 566.723,1061.52 566.723,1050.36 " />
<svg:polygon detid="369216777" count="1" value="102" id="3409113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  external  module  2  stereo Id 369216777 " fill="rgb(255,53,0)" points="547.798,1050.36 566.723,1050.36 566.723,1039.21 " />
<svg:polygon detid="369217033" count="1" value="102" id="3409114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  external  module  2  stereo Id 369217033 " fill="rgb(255,53,0)" points="547.798,1039.21 566.723,1039.21 566.723,1028.06 " />
<svg:polygon detid="369217289" count="1" value="102" id="3409115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  external  module  2  stereo Id 369217289 " fill="rgb(255,53,0)" points="547.798,1028.06 566.723,1028.06 566.723,1016.9 " />
<svg:polygon detid="369217545" count="1" value="102" id="3409116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  external  module  2  stereo Id 369217545 " fill="rgb(255,53,0)" points="547.798,1016.9 566.723,1016.9 566.723,1005.75 " />
<svg:polygon detid="369217801" count="1" value="102" id="3409117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  external  module  2  stereo Id 369217801 " fill="rgb(255,53,0)" points="547.798,1005.75 566.723,1005.75 566.723,994.598 " />
<svg:polygon detid="369218057" count="1" value="102" id="3409118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  external  module  2  stereo Id 369218057 " fill="rgb(255,53,0)" points="547.798,994.598 566.723,994.598 566.723,983.445 " />
<svg:polygon detid="369218313" count="1" value="102" id="3409119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  external  module  2  stereo Id 369218313 " fill="rgb(255,53,0)" points="547.798,983.445 566.723,983.445 566.723,972.292 " />
<svg:polygon detid="369218569" count="1" value="102" id="3409120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  external  module  2  stereo Id 369218569 " fill="rgb(255,53,0)" points="547.798,972.292 566.723,972.292 566.723,961.14 " />
<svg:polygon detid="369218825" count="1" value="102" id="3409121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  external  module  2  stereo Id 369218825 " fill="rgb(255,53,0)" points="547.798,961.14 566.723,961.14 566.723,949.987 " />
<svg:polygon detid="369219081" count="1" value="102" id="3409122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  external  module  2  stereo Id 369219081 " fill="rgb(255,53,0)" points="547.798,949.987 566.723,949.987 566.723,938.834 " />
<svg:polygon detid="369219337" count="1" value="102" id="3409123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  external  module  2  stereo Id 369219337 " fill="rgb(255,53,0)" points="547.798,938.834 566.723,938.834 566.723,927.681 " />
<svg:polygon detid="369219593" count="1" value="102" id="3409124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  external  module  2  stereo Id 369219593 " fill="rgb(255,53,0)" points="547.798,927.681 566.723,927.681 566.723,916.528 " />
<svg:polygon detid="369219849" count="1" value="102" id="3409125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  external  module  2  stereo Id 369219849 " fill="rgb(255,53,0)" points="547.798,916.528 566.723,916.528 566.723,905.376 " />
<svg:polygon detid="369220105" count="1" value="102" id="3409126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  external  module  2  stereo Id 369220105 " fill="rgb(255,53,0)" points="547.798,905.376 566.723,905.376 566.723,894.223 " />
<svg:polygon detid="369220361" count="1" value="102" id="3409127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 pos  external  module  2  stereo Id 369220361 " fill="rgb(255,53,0)" points="547.798,894.223 566.723,894.223 566.723,883.07 " />
<svg:polygon detid="369220617" count="1" value="102" id="3409128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 pos  external  module  2  stereo Id 369220617 " fill="rgb(255,53,0)" points="547.798,883.07 566.723,883.07 566.723,871.917 " />
<svg:polygon detid="369220873" count="1" value="102" id="3409129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 pos  external  module  2  stereo Id 369220873 " fill="rgb(255,53,0)" points="547.798,871.917 566.723,871.917 566.723,860.764 " />
<svg:polygon detid="369221129" count="1" value="102" id="3409130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 pos  external  module  2  stereo Id 369221129 " fill="rgb(255,53,0)" points="547.798,860.764 566.723,860.764 566.723,849.611 " />
<svg:polygon detid="369197322" count="1" value="102" id="3410001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  internal  module  2   Id 369197322 " fill="rgb(255,53,0)" points="588.012,1173.04 569.088,1173.04 569.088,1184.2 " />
<svg:polygon detid="369197578" count="1" value="102" id="3410002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  internal  module  2   Id 369197578 " fill="rgb(255,53,0)" points="588.012,1161.89 569.088,1161.89 569.088,1173.04 " />
<svg:polygon detid="369197834" count="1" value="102" id="3410004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  internal  module  2   Id 369197834 " fill="rgb(255,53,0)" points="588.012,1139.58 569.088,1139.58 569.088,1150.74 " />
<svg:polygon detid="369198090" count="1" value="102" id="3410005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  internal  module  2   Id 369198090 " fill="rgb(255,53,0)" points="588.012,1128.43 569.088,1128.43 569.088,1139.58 " />
<svg:polygon detid="369198346" count="1" value="102" id="3410006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  internal  module  2   Id 369198346 " fill="rgb(255,53,0)" points="588.012,1117.28 569.088,1117.28 569.088,1128.43 " />
<svg:polygon detid="369198602" count="1" value="102" id="3410007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  internal  module  2   Id 369198602 " fill="rgb(255,53,0)" points="588.012,1106.13 569.088,1106.13 569.088,1117.28 " />
<svg:polygon detid="369198858" count="1" value="102" id="3410008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  internal  module  2   Id 369198858 " fill="rgb(255,53,0)" points="588.012,1094.97 569.088,1094.97 569.088,1106.13 " />
<svg:polygon detid="369199114" count="1" value="102" id="3410009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  internal  module  2   Id 369199114 " fill="rgb(255,53,0)" points="588.012,1083.82 569.088,1083.82 569.088,1094.97 " />
<svg:polygon detid="369199370" count="1" value="102" id="3410010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  internal  module  2   Id 369199370 " fill="rgb(255,53,0)" points="588.012,1072.67 569.088,1072.67 569.088,1083.82 " />
<svg:polygon detid="369199626" count="1" value="102" id="3410012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  internal  module  2   Id 369199626 " fill="rgb(255,53,0)" points="588.012,1050.36 569.088,1050.36 569.088,1061.52 " />
<svg:polygon detid="369199882" count="1" value="102" id="3410013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  internal  module  2   Id 369199882 " fill="rgb(255,53,0)" points="588.012,1039.21 569.088,1039.21 569.088,1050.36 " />
<svg:polygon detid="369200138" count="1" value="102" id="3410014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  internal  module  2   Id 369200138 " fill="rgb(255,53,0)" points="588.012,1028.06 569.088,1028.06 569.088,1039.21 " />
<svg:polygon detid="369200394" count="1" value="102" id="3410015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  internal  module  2   Id 369200394 " fill="rgb(255,53,0)" points="588.012,1016.9 569.088,1016.9 569.088,1028.06 " />
<svg:polygon detid="369200650" count="1" value="102" id="3410016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  internal  module  2   Id 369200650 " fill="rgb(255,53,0)" points="588.012,1005.75 569.088,1005.75 569.088,1016.9 " />
<svg:polygon detid="369200906" count="1" value="102" id="3410017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  internal  module  2   Id 369200906 " fill="rgb(255,53,0)" points="588.012,994.598 569.088,994.598 569.088,1005.75 " />
<svg:polygon detid="369201162" count="1" value="102" id="3410019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  internal  module  2   Id 369201162 " fill="rgb(255,53,0)" points="588.012,972.292 569.088,972.292 569.088,983.445 " />
<svg:polygon detid="369201418" count="1" value="102" id="3410020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  internal  module  2   Id 369201418 " fill="rgb(255,53,0)" points="588.012,961.14 569.088,961.14 569.088,972.292 " />
<svg:polygon detid="369201674" count="1" value="102" id="3410021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  internal  module  2   Id 369201674 " fill="rgb(255,53,0)" points="588.012,949.987 569.088,949.987 569.088,961.14 " />
<svg:polygon detid="369201930" count="1" value="102" id="3410022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  internal  module  2   Id 369201930 " fill="rgb(255,53,0)" points="588.012,938.834 569.088,938.834 569.088,949.987 " />
<svg:polygon detid="369202186" count="1" value="102" id="3410023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  internal  module  2   Id 369202186 " fill="rgb(255,53,0)" points="588.012,927.681 569.088,927.681 569.088,938.834 " />
<svg:polygon detid="369202442" count="1" value="102" id="3410024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  internal  module  2   Id 369202442 " fill="rgb(255,53,0)" points="588.012,916.528 569.088,916.528 569.088,927.681 " />
<svg:polygon detid="369202698" count="1" value="102" id="3410025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  internal  module  2   Id 369202698 " fill="rgb(255,53,0)" points="588.012,905.376 569.088,905.376 569.088,916.528 " />
<svg:polygon detid="369202954" count="1" value="102" id="3410027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  internal  module  2   Id 369202954 " fill="rgb(255,53,0)" points="588.012,883.07 569.088,883.07 569.088,894.223 " />
<svg:polygon detid="369203210" count="1" value="102" id="3410028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  internal  module  2   Id 369203210 " fill="rgb(255,53,0)" points="588.012,871.917 569.088,871.917 569.088,883.07 " />
<svg:polygon detid="369203466" count="1" value="102" id="3410029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  internal  module  2   Id 369203466 " fill="rgb(255,53,0)" points="588.012,860.764 569.088,860.764 569.088,871.917 " />
<svg:polygon detid="369203722" count="1" value="102" id="3410030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  internal  module  2   Id 369203722 " fill="rgb(255,53,0)" points="588.012,849.611 569.088,849.611 569.088,860.764 " />
<svg:polygon detid="369197321" count="1" value="102" id="3410101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  internal  module  2  stereo Id 369197321 " fill="rgb(255,53,0)" points="569.088,1184.2 588.012,1184.2 588.012,1173.04 " />
<svg:polygon detid="369197577" count="1" value="102" id="3410102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  internal  module  2  stereo Id 369197577 " fill="rgb(255,53,0)" points="569.088,1173.04 588.012,1173.04 588.012,1161.89 " />
<svg:polygon detid="369197833" count="1" value="102" id="3410104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  internal  module  2  stereo Id 369197833 " fill="rgb(255,53,0)" points="569.088,1150.74 588.012,1150.74 588.012,1139.58 " />
<svg:polygon detid="369198089" count="1" value="102" id="3410105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  internal  module  2  stereo Id 369198089 " fill="rgb(255,53,0)" points="569.088,1139.58 588.012,1139.58 588.012,1128.43 " />
<svg:polygon detid="369198345" count="1" value="102" id="3410106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  internal  module  2  stereo Id 369198345 " fill="rgb(255,53,0)" points="569.088,1128.43 588.012,1128.43 588.012,1117.28 " />
<svg:polygon detid="369198601" count="1" value="102" id="3410107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  internal  module  2  stereo Id 369198601 " fill="rgb(255,53,0)" points="569.088,1117.28 588.012,1117.28 588.012,1106.13 " />
<svg:polygon detid="369198857" count="1" value="102" id="3410108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  internal  module  2  stereo Id 369198857 " fill="rgb(255,53,0)" points="569.088,1106.13 588.012,1106.13 588.012,1094.97 " />
<svg:polygon detid="369199113" count="1" value="102" id="3410109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  internal  module  2  stereo Id 369199113 " fill="rgb(255,53,0)" points="569.088,1094.97 588.012,1094.97 588.012,1083.82 " />
<svg:polygon detid="369199369" count="1" value="102" id="3410110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  internal  module  2  stereo Id 369199369 " fill="rgb(255,53,0)" points="569.088,1083.82 588.012,1083.82 588.012,1072.67 " />
<svg:polygon detid="369199625" count="1" value="102" id="3410112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  internal  module  2  stereo Id 369199625 " fill="rgb(255,53,0)" points="569.088,1061.52 588.012,1061.52 588.012,1050.36 " />
<svg:polygon detid="369199881" count="1" value="102" id="3410113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  internal  module  2  stereo Id 369199881 " fill="rgb(255,53,0)" points="569.088,1050.36 588.012,1050.36 588.012,1039.21 " />
<svg:polygon detid="369200137" count="1" value="102" id="3410114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  internal  module  2  stereo Id 369200137 " fill="rgb(255,53,0)" points="569.088,1039.21 588.012,1039.21 588.012,1028.06 " />
<svg:polygon detid="369200393" count="1" value="102" id="3410115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  internal  module  2  stereo Id 369200393 " fill="rgb(255,53,0)" points="569.088,1028.06 588.012,1028.06 588.012,1016.9 " />
<svg:polygon detid="369200649" count="1" value="102" id="3410116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  internal  module  2  stereo Id 369200649 " fill="rgb(255,53,0)" points="569.088,1016.9 588.012,1016.9 588.012,1005.75 " />
<svg:polygon detid="369200905" count="1" value="102" id="3410117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  internal  module  2  stereo Id 369200905 " fill="rgb(255,53,0)" points="569.088,1005.75 588.012,1005.75 588.012,994.598 " />
<svg:polygon detid="369201161" count="1" value="102" id="3410119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  internal  module  2  stereo Id 369201161 " fill="rgb(255,53,0)" points="569.088,983.445 588.012,983.445 588.012,972.292 " />
<svg:polygon detid="369201417" count="1" value="102" id="3410120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  internal  module  2  stereo Id 369201417 " fill="rgb(255,53,0)" points="569.088,972.292 588.012,972.292 588.012,961.14 " />
<svg:polygon detid="369201673" count="1" value="102" id="3410121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  internal  module  2  stereo Id 369201673 " fill="rgb(255,53,0)" points="569.088,961.14 588.012,961.14 588.012,949.987 " />
<svg:polygon detid="369201929" count="1" value="102" id="3410122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  internal  module  2  stereo Id 369201929 " fill="rgb(255,53,0)" points="569.088,949.987 588.012,949.987 588.012,938.834 " />
<svg:polygon detid="369202185" count="1" value="102" id="3410123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  internal  module  2  stereo Id 369202185 " fill="rgb(255,53,0)" points="569.088,938.834 588.012,938.834 588.012,927.681 " />
<svg:polygon detid="369202441" count="1" value="102" id="3410124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  internal  module  2  stereo Id 369202441 " fill="rgb(255,53,0)" points="569.088,927.681 588.012,927.681 588.012,916.528 " />
<svg:polygon detid="369202697" count="1" value="102" id="3410125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  internal  module  2  stereo Id 369202697 " fill="rgb(255,53,0)" points="569.088,916.528 588.012,916.528 588.012,905.376 " />
<svg:polygon detid="369202953" count="1" value="102" id="3410127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  internal  module  2  stereo Id 369202953 " fill="rgb(255,53,0)" points="569.088,894.223 588.012,894.223 588.012,883.07 " />
<svg:polygon detid="369203209" count="1" value="102" id="3410128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  internal  module  2  stereo Id 369203209 " fill="rgb(255,53,0)" points="569.088,883.07 588.012,883.07 588.012,871.917 " />
<svg:polygon detid="369203465" count="1" value="102" id="3410129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  internal  module  2  stereo Id 369203465 " fill="rgb(255,53,0)" points="569.088,871.917 588.012,871.917 588.012,860.764 " />
<svg:polygon detid="369203721" count="1" value="102" id="3410130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  internal  module  2  stereo Id 369203721 " fill="rgb(255,53,0)" points="569.088,860.764 588.012,860.764 588.012,849.611 " />
<svg:polygon detid="369213710" count="1" value="102" id="3411001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  external  module  3   Id 369213710 " fill="rgb(255,53,0)" points="609.302,1173.04 590.378,1173.04 590.378,1184.2 " />
<svg:polygon detid="369213966" count="1" value="102" id="3411002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  external  module  3   Id 369213966 " fill="rgb(255,53,0)" points="609.302,1161.89 590.378,1161.89 590.378,1173.04 " />
<svg:polygon detid="369214222" count="1" value="102" id="3411003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  external  module  3   Id 369214222 " fill="rgb(255,53,0)" points="609.302,1150.74 590.378,1150.74 590.378,1161.89 " />
<svg:polygon detid="369214478" count="1" value="102" id="3411004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  external  module  3   Id 369214478 " fill="rgb(255,53,0)" points="609.302,1139.58 590.378,1139.58 590.378,1150.74 " />
<svg:polygon detid="369214734" count="1" value="102" id="3411005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  external  module  3   Id 369214734 " fill="rgb(255,53,0)" points="609.302,1128.43 590.378,1128.43 590.378,1139.58 " />
<svg:polygon detid="369214990" count="1" value="102" id="3411006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  external  module  3   Id 369214990 " fill="rgb(255,53,0)" points="609.302,1117.28 590.378,1117.28 590.378,1128.43 " />
<svg:polygon detid="369215246" count="1" value="102" id="3411007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  external  module  3   Id 369215246 " fill="rgb(255,53,0)" points="609.302,1106.13 590.378,1106.13 590.378,1117.28 " />
<svg:polygon detid="369215502" count="1" value="102" id="3411008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  external  module  3   Id 369215502 " fill="rgb(255,53,0)" points="609.302,1094.97 590.378,1094.97 590.378,1106.13 " />
<svg:polygon detid="369215758" count="1" value="102" id="3411009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  external  module  3   Id 369215758 " fill="rgb(255,53,0)" points="609.302,1083.82 590.378,1083.82 590.378,1094.97 " />
<svg:polygon detid="369216014" count="1" value="102" id="3411010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  external  module  3   Id 369216014 " fill="rgb(255,53,0)" points="609.302,1072.67 590.378,1072.67 590.378,1083.82 " />
<svg:polygon detid="369216270" count="1" value="102" id="3411011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  external  module  3   Id 369216270 " fill="rgb(255,53,0)" points="609.302,1061.52 590.378,1061.52 590.378,1072.67 " />
<svg:polygon detid="369216526" count="1" value="102" id="3411012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  external  module  3   Id 369216526 " fill="rgb(255,53,0)" points="609.302,1050.36 590.378,1050.36 590.378,1061.52 " />
<svg:polygon detid="369216782" count="1" value="102" id="3411013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  external  module  3   Id 369216782 " fill="rgb(255,53,0)" points="609.302,1039.21 590.378,1039.21 590.378,1050.36 " />
<svg:polygon detid="369217038" count="1" value="102" id="3411014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  external  module  3   Id 369217038 " fill="rgb(255,53,0)" points="609.302,1028.06 590.378,1028.06 590.378,1039.21 " />
<svg:polygon detid="369217294" count="1" value="102" id="3411015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  external  module  3   Id 369217294 " fill="rgb(255,53,0)" points="609.302,1016.9 590.378,1016.9 590.378,1028.06 " />
<svg:polygon detid="369217550" count="1" value="102" id="3411016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  external  module  3   Id 369217550 " fill="rgb(255,53,0)" points="609.302,1005.75 590.378,1005.75 590.378,1016.9 " />
<svg:polygon detid="369217806" count="1" value="102" id="3411017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  external  module  3   Id 369217806 " fill="rgb(255,53,0)" points="609.302,994.598 590.378,994.598 590.378,1005.75 " />
<svg:polygon detid="369218062" count="1" value="102" id="3411018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  external  module  3   Id 369218062 " fill="rgb(255,53,0)" points="609.302,983.445 590.378,983.445 590.378,994.598 " />
<svg:polygon detid="369218318" count="1" value="102" id="3411019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  external  module  3   Id 369218318 " fill="rgb(255,53,0)" points="609.302,972.292 590.378,972.292 590.378,983.445 " />
<svg:polygon detid="369218574" count="1" value="102" id="3411020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  external  module  3   Id 369218574 " fill="rgb(255,53,0)" points="609.302,961.14 590.378,961.14 590.378,972.292 " />
<svg:polygon detid="369218830" count="1" value="102" id="3411021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  external  module  3   Id 369218830 " fill="rgb(255,53,0)" points="609.302,949.987 590.378,949.987 590.378,961.14 " />
<svg:polygon detid="369219086" count="1" value="102" id="3411022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  external  module  3   Id 369219086 " fill="rgb(255,53,0)" points="609.302,938.834 590.378,938.834 590.378,949.987 " />
<svg:polygon detid="369219342" count="1" value="102" id="3411023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  external  module  3   Id 369219342 " fill="rgb(255,53,0)" points="609.302,927.681 590.378,927.681 590.378,938.834 " />
<svg:polygon detid="369219598" count="1" value="102" id="3411024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  external  module  3   Id 369219598 " fill="rgb(255,53,0)" points="609.302,916.528 590.378,916.528 590.378,927.681 " />
<svg:polygon detid="369219854" count="1" value="102" id="3411025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  external  module  3   Id 369219854 " fill="rgb(255,53,0)" points="609.302,905.376 590.378,905.376 590.378,916.528 " />
<svg:polygon detid="369220110" count="1" value="102" id="3411026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  external  module  3   Id 369220110 " fill="rgb(255,53,0)" points="609.302,894.223 590.378,894.223 590.378,905.376 " />
<svg:polygon detid="369220366" count="1" value="102" id="3411027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 pos  external  module  3   Id 369220366 " fill="rgb(255,53,0)" points="609.302,883.07 590.378,883.07 590.378,894.223 " />
<svg:polygon detid="369220622" count="1" value="102" id="3411028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 pos  external  module  3   Id 369220622 " fill="rgb(255,53,0)" points="609.302,871.917 590.378,871.917 590.378,883.07 " />
<svg:polygon detid="369220878" count="1" value="102" id="3411029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 pos  external  module  3   Id 369220878 " fill="rgb(255,53,0)" points="609.302,860.764 590.378,860.764 590.378,871.917 " />
<svg:polygon detid="369221134" count="1" value="102" id="3411030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 pos  external  module  3   Id 369221134 " fill="rgb(255,53,0)" points="609.302,849.611 590.378,849.611 590.378,860.764 " />
<svg:polygon detid="369213709" count="1" value="102" id="3411101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  external  module  3  stereo Id 369213709 " fill="rgb(255,53,0)" points="590.378,1184.2 609.302,1184.2 609.302,1173.04 " />
<svg:polygon detid="369213965" count="1" value="102" id="3411102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  external  module  3  stereo Id 369213965 " fill="rgb(255,53,0)" points="590.378,1173.04 609.302,1173.04 609.302,1161.89 " />
<svg:polygon detid="369214221" count="1" value="102" id="3411103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  external  module  3  stereo Id 369214221 " fill="rgb(255,53,0)" points="590.378,1161.89 609.302,1161.89 609.302,1150.74 " />
<svg:polygon detid="369214477" count="1" value="102" id="3411104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  external  module  3  stereo Id 369214477 " fill="rgb(255,53,0)" points="590.378,1150.74 609.302,1150.74 609.302,1139.58 " />
<svg:polygon detid="369214733" count="1" value="102" id="3411105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  external  module  3  stereo Id 369214733 " fill="rgb(255,53,0)" points="590.378,1139.58 609.302,1139.58 609.302,1128.43 " />
<svg:polygon detid="369214989" count="1" value="102" id="3411106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  external  module  3  stereo Id 369214989 " fill="rgb(255,53,0)" points="590.378,1128.43 609.302,1128.43 609.302,1117.28 " />
<svg:polygon detid="369215245" count="1" value="102" id="3411107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  external  module  3  stereo Id 369215245 " fill="rgb(255,53,0)" points="590.378,1117.28 609.302,1117.28 609.302,1106.13 " />
<svg:polygon detid="369215501" count="1" value="102" id="3411108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  external  module  3  stereo Id 369215501 " fill="rgb(255,53,0)" points="590.378,1106.13 609.302,1106.13 609.302,1094.97 " />
<svg:polygon detid="369215757" count="1" value="102" id="3411109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  external  module  3  stereo Id 369215757 " fill="rgb(255,53,0)" points="590.378,1094.97 609.302,1094.97 609.302,1083.82 " />
<svg:polygon detid="369216013" count="1" value="102" id="3411110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  external  module  3  stereo Id 369216013 " fill="rgb(255,53,0)" points="590.378,1083.82 609.302,1083.82 609.302,1072.67 " />
<svg:polygon detid="369216269" count="1" value="102" id="3411111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  external  module  3  stereo Id 369216269 " fill="rgb(255,53,0)" points="590.378,1072.67 609.302,1072.67 609.302,1061.52 " />
<svg:polygon detid="369216525" count="1" value="102" id="3411112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  external  module  3  stereo Id 369216525 " fill="rgb(255,53,0)" points="590.378,1061.52 609.302,1061.52 609.302,1050.36 " />
<svg:polygon detid="369216781" count="1" value="102" id="3411113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  external  module  3  stereo Id 369216781 " fill="rgb(255,53,0)" points="590.378,1050.36 609.302,1050.36 609.302,1039.21 " />
<svg:polygon detid="369217037" count="1" value="102" id="3411114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  external  module  3  stereo Id 369217037 " fill="rgb(255,53,0)" points="590.378,1039.21 609.302,1039.21 609.302,1028.06 " />
<svg:polygon detid="369217293" count="1" value="102" id="3411115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  external  module  3  stereo Id 369217293 " fill="rgb(255,53,0)" points="590.378,1028.06 609.302,1028.06 609.302,1016.9 " />
<svg:polygon detid="369217549" count="1" value="102" id="3411116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  external  module  3  stereo Id 369217549 " fill="rgb(255,53,0)" points="590.378,1016.9 609.302,1016.9 609.302,1005.75 " />
<svg:polygon detid="369217805" count="1" value="102" id="3411117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  external  module  3  stereo Id 369217805 " fill="rgb(255,53,0)" points="590.378,1005.75 609.302,1005.75 609.302,994.598 " />
<svg:polygon detid="369218061" count="1" value="102" id="3411118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  external  module  3  stereo Id 369218061 " fill="rgb(255,53,0)" points="590.378,994.598 609.302,994.598 609.302,983.445 " />
<svg:polygon detid="369218317" count="1" value="102" id="3411119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  external  module  3  stereo Id 369218317 " fill="rgb(255,53,0)" points="590.378,983.445 609.302,983.445 609.302,972.292 " />
<svg:polygon detid="369218573" count="1" value="102" id="3411120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  external  module  3  stereo Id 369218573 " fill="rgb(255,53,0)" points="590.378,972.292 609.302,972.292 609.302,961.14 " />
<svg:polygon detid="369218829" count="1" value="102" id="3411121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  external  module  3  stereo Id 369218829 " fill="rgb(255,53,0)" points="590.378,961.14 609.302,961.14 609.302,949.987 " />
<svg:polygon detid="369219085" count="1" value="102" id="3411122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  external  module  3  stereo Id 369219085 " fill="rgb(255,53,0)" points="590.378,949.987 609.302,949.987 609.302,938.834 " />
<svg:polygon detid="369219341" count="1" value="102" id="3411123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  external  module  3  stereo Id 369219341 " fill="rgb(255,53,0)" points="590.378,938.834 609.302,938.834 609.302,927.681 " />
<svg:polygon detid="369219597" count="1" value="102" id="3411124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  external  module  3  stereo Id 369219597 " fill="rgb(255,53,0)" points="590.378,927.681 609.302,927.681 609.302,916.528 " />
<svg:polygon detid="369219853" count="1" value="102" id="3411125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  external  module  3  stereo Id 369219853 " fill="rgb(255,53,0)" points="590.378,916.528 609.302,916.528 609.302,905.376 " />
<svg:polygon detid="369220109" count="1" value="102" id="3411126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  external  module  3  stereo Id 369220109 " fill="rgb(255,53,0)" points="590.378,905.376 609.302,905.376 609.302,894.223 " />
<svg:polygon detid="369220365" count="1" value="102" id="3411127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 27 pos  external  module  3  stereo Id 369220365 " fill="rgb(255,53,0)" points="590.378,894.223 609.302,894.223 609.302,883.07 " />
<svg:polygon detid="369220621" count="1" value="102" id="3411128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 28 pos  external  module  3  stereo Id 369220621 " fill="rgb(255,53,0)" points="590.378,883.07 609.302,883.07 609.302,871.917 " />
<svg:polygon detid="369220877" count="1" value="102" id="3411129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 29 pos  external  module  3  stereo Id 369220877 " fill="rgb(255,53,0)" points="590.378,871.917 609.302,871.917 609.302,860.764 " />
<svg:polygon detid="369221133" count="1" value="102" id="3411130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 30 pos  external  module  3  stereo Id 369221133 " fill="rgb(255,53,0)" points="590.378,860.764 609.302,860.764 609.302,849.611 " />
<svg:polygon detid="369197326" count="1" value="102" id="3412001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  internal  module  3   Id 369197326 " fill="rgb(255,53,0)" points="630.592,1173.04 611.668,1173.04 611.668,1184.2 " />
<svg:polygon detid="369197582" count="1" value="102" id="3412002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  internal  module  3   Id 369197582 " fill="rgb(255,53,0)" points="630.592,1161.89 611.668,1161.89 611.668,1173.04 " />
<svg:polygon detid="369197838" count="1" value="102" id="3412004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  internal  module  3   Id 369197838 " fill="rgb(255,53,0)" points="630.592,1139.58 611.668,1139.58 611.668,1150.74 " />
<svg:polygon detid="369198094" count="1" value="102" id="3412005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  internal  module  3   Id 369198094 " fill="rgb(255,53,0)" points="630.592,1128.43 611.668,1128.43 611.668,1139.58 " />
<svg:polygon detid="369198350" count="1" value="102" id="3412006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  internal  module  3   Id 369198350 " fill="rgb(255,53,0)" points="630.592,1117.28 611.668,1117.28 611.668,1128.43 " />
<svg:polygon detid="369198606" count="1" value="102" id="3412007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  internal  module  3   Id 369198606 " fill="rgb(255,53,0)" points="630.592,1106.13 611.668,1106.13 611.668,1117.28 " />
<svg:polygon detid="369198862" count="1" value="102" id="3412008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  internal  module  3   Id 369198862 " fill="rgb(255,53,0)" points="630.592,1094.97 611.668,1094.97 611.668,1106.13 " />
<svg:polygon detid="369199118" count="1" value="102" id="3412009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  internal  module  3   Id 369199118 " fill="rgb(255,53,0)" points="630.592,1083.82 611.668,1083.82 611.668,1094.97 " />
<svg:polygon detid="369199374" count="1" value="102" id="3412010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  internal  module  3   Id 369199374 " fill="rgb(255,53,0)" points="630.592,1072.67 611.668,1072.67 611.668,1083.82 " />
<svg:polygon detid="369199630" count="1" value="102" id="3412012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  internal  module  3   Id 369199630 " fill="rgb(255,53,0)" points="630.592,1050.36 611.668,1050.36 611.668,1061.52 " />
<svg:polygon detid="369199886" count="1" value="102" id="3412013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  internal  module  3   Id 369199886 " fill="rgb(255,53,0)" points="630.592,1039.21 611.668,1039.21 611.668,1050.36 " />
<svg:polygon detid="369200142" count="1" value="102" id="3412014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  internal  module  3   Id 369200142 " fill="rgb(255,53,0)" points="630.592,1028.06 611.668,1028.06 611.668,1039.21 " />
<svg:polygon detid="369200398" count="1" value="102" id="3412015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  internal  module  3   Id 369200398 " fill="rgb(255,53,0)" points="630.592,1016.9 611.668,1016.9 611.668,1028.06 " />
<svg:polygon detid="369200654" count="1" value="102" id="3412016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  internal  module  3   Id 369200654 " fill="rgb(255,53,0)" points="630.592,1005.75 611.668,1005.75 611.668,1016.9 " />
<svg:polygon detid="369200910" count="1" value="102" id="3412017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  internal  module  3   Id 369200910 " fill="rgb(255,53,0)" points="630.592,994.598 611.668,994.598 611.668,1005.75 " />
<svg:polygon detid="369201166" count="1" value="102" id="3412019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  internal  module  3   Id 369201166 " fill="rgb(255,53,0)" points="630.592,972.292 611.668,972.292 611.668,983.445 " />
<svg:polygon detid="369201422" count="1" value="102" id="3412020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  internal  module  3   Id 369201422 " fill="rgb(255,53,0)" points="630.592,961.14 611.668,961.14 611.668,972.292 " />
<svg:polygon detid="369201678" count="1" value="102" id="3412021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  internal  module  3   Id 369201678 " fill="rgb(255,53,0)" points="630.592,949.987 611.668,949.987 611.668,961.14 " />
<svg:polygon detid="369201934" count="1" value="102" id="3412022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  internal  module  3   Id 369201934 " fill="rgb(255,53,0)" points="630.592,938.834 611.668,938.834 611.668,949.987 " />
<svg:polygon detid="369202190" count="1" value="102" id="3412023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  internal  module  3   Id 369202190 " fill="rgb(255,53,0)" points="630.592,927.681 611.668,927.681 611.668,938.834 " />
<svg:polygon detid="369202446" count="1" value="102" id="3412024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  internal  module  3   Id 369202446 " fill="rgb(255,53,0)" points="630.592,916.528 611.668,916.528 611.668,927.681 " />
<svg:polygon detid="369202702" count="1" value="102" id="3412025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  internal  module  3   Id 369202702 " fill="rgb(255,53,0)" points="630.592,905.376 611.668,905.376 611.668,916.528 " />
<svg:polygon detid="369202958" count="1" value="102" id="3412027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  internal  module  3   Id 369202958 " fill="rgb(255,53,0)" points="630.592,883.07 611.668,883.07 611.668,894.223 " />
<svg:polygon detid="369203214" count="1" value="102" id="3412028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  internal  module  3   Id 369203214 " fill="rgb(255,53,0)" points="630.592,871.917 611.668,871.917 611.668,883.07 " />
<svg:polygon detid="369203470" count="1" value="102" id="3412029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  internal  module  3   Id 369203470 " fill="rgb(255,53,0)" points="630.592,860.764 611.668,860.764 611.668,871.917 " />
<svg:polygon detid="369203726" count="1" value="102" id="3412030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  internal  module  3   Id 369203726 " fill="rgb(255,53,0)" points="630.592,849.611 611.668,849.611 611.668,860.764 " />
<svg:polygon detid="369197325" count="1" value="102" id="3412101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 1 pos  internal  module  3  stereo Id 369197325 " fill="rgb(255,53,0)" points="611.668,1184.2 630.592,1184.2 630.592,1173.04 " />
<svg:polygon detid="369197581" count="1" value="102" id="3412102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 2 pos  internal  module  3  stereo Id 369197581 " fill="rgb(255,53,0)" points="611.668,1173.04 630.592,1173.04 630.592,1161.89 " />
<svg:polygon detid="369197837" count="1" value="102" id="3412104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 3 pos  internal  module  3  stereo Id 369197837 " fill="rgb(255,53,0)" points="611.668,1150.74 630.592,1150.74 630.592,1139.58 " />
<svg:polygon detid="369198093" count="1" value="102" id="3412105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 4 pos  internal  module  3  stereo Id 369198093 " fill="rgb(255,53,0)" points="611.668,1139.58 630.592,1139.58 630.592,1128.43 " />
<svg:polygon detid="369198349" count="1" value="102" id="3412106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 5 pos  internal  module  3  stereo Id 369198349 " fill="rgb(255,53,0)" points="611.668,1128.43 630.592,1128.43 630.592,1117.28 " />
<svg:polygon detid="369198605" count="1" value="102" id="3412107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 6 pos  internal  module  3  stereo Id 369198605 " fill="rgb(255,53,0)" points="611.668,1117.28 630.592,1117.28 630.592,1106.13 " />
<svg:polygon detid="369198861" count="1" value="102" id="3412108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 7 pos  internal  module  3  stereo Id 369198861 " fill="rgb(255,53,0)" points="611.668,1106.13 630.592,1106.13 630.592,1094.97 " />
<svg:polygon detid="369199117" count="1" value="102" id="3412109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 8 pos  internal  module  3  stereo Id 369199117 " fill="rgb(255,53,0)" points="611.668,1094.97 630.592,1094.97 630.592,1083.82 " />
<svg:polygon detid="369199373" count="1" value="102" id="3412110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 9 pos  internal  module  3  stereo Id 369199373 " fill="rgb(255,53,0)" points="611.668,1083.82 630.592,1083.82 630.592,1072.67 " />
<svg:polygon detid="369199629" count="1" value="102" id="3412112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 10 pos  internal  module  3  stereo Id 369199629 " fill="rgb(255,53,0)" points="611.668,1061.52 630.592,1061.52 630.592,1050.36 " />
<svg:polygon detid="369199885" count="1" value="102" id="3412113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 11 pos  internal  module  3  stereo Id 369199885 " fill="rgb(255,53,0)" points="611.668,1050.36 630.592,1050.36 630.592,1039.21 " />
<svg:polygon detid="369200141" count="1" value="102" id="3412114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 12 pos  internal  module  3  stereo Id 369200141 " fill="rgb(255,53,0)" points="611.668,1039.21 630.592,1039.21 630.592,1028.06 " />
<svg:polygon detid="369200397" count="1" value="102" id="3412115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 13 pos  internal  module  3  stereo Id 369200397 " fill="rgb(255,53,0)" points="611.668,1028.06 630.592,1028.06 630.592,1016.9 " />
<svg:polygon detid="369200653" count="1" value="102" id="3412116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 14 pos  internal  module  3  stereo Id 369200653 " fill="rgb(255,53,0)" points="611.668,1016.9 630.592,1016.9 630.592,1005.75 " />
<svg:polygon detid="369200909" count="1" value="102" id="3412117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 15 pos  internal  module  3  stereo Id 369200909 " fill="rgb(255,53,0)" points="611.668,1005.75 630.592,1005.75 630.592,994.598 " />
<svg:polygon detid="369201165" count="1" value="102" id="3412119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 16 pos  internal  module  3  stereo Id 369201165 " fill="rgb(255,53,0)" points="611.668,983.445 630.592,983.445 630.592,972.292 " />
<svg:polygon detid="369201421" count="1" value="102" id="3412120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 17 pos  internal  module  3  stereo Id 369201421 " fill="rgb(255,53,0)" points="611.668,972.292 630.592,972.292 630.592,961.14 " />
<svg:polygon detid="369201677" count="1" value="102" id="3412121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 18 pos  internal  module  3  stereo Id 369201677 " fill="rgb(255,53,0)" points="611.668,961.14 630.592,961.14 630.592,949.987 " />
<svg:polygon detid="369201933" count="1" value="102" id="3412122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 19 pos  internal  module  3  stereo Id 369201933 " fill="rgb(255,53,0)" points="611.668,949.987 630.592,949.987 630.592,938.834 " />
<svg:polygon detid="369202189" count="1" value="102" id="3412123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 20 pos  internal  module  3  stereo Id 369202189 " fill="rgb(255,53,0)" points="611.668,938.834 630.592,938.834 630.592,927.681 " />
<svg:polygon detid="369202445" count="1" value="102" id="3412124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 21 pos  internal  module  3  stereo Id 369202445 " fill="rgb(255,53,0)" points="611.668,927.681 630.592,927.681 630.592,916.528 " />
<svg:polygon detid="369202701" count="1" value="102" id="3412125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 22 pos  internal  module  3  stereo Id 369202701 " fill="rgb(255,53,0)" points="611.668,916.528 630.592,916.528 630.592,905.376 " />
<svg:polygon detid="369202957" count="1" value="102" id="3412127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 23 pos  internal  module  3  stereo Id 369202957 " fill="rgb(255,53,0)" points="611.668,894.223 630.592,894.223 630.592,883.07 " />
<svg:polygon detid="369203213" count="1" value="102" id="3412128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 24 pos  internal  module  3  stereo Id 369203213 " fill="rgb(255,53,0)" points="611.668,883.07 630.592,883.07 630.592,871.917 " />
<svg:polygon detid="369203469" count="1" value="102" id="3412129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 25 pos  internal  module  3  stereo Id 369203469 " fill="rgb(255,53,0)" points="611.668,871.917 630.592,871.917 630.592,860.764 " />
<svg:polygon detid="369203725" count="1" value="102" id="3412130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 1 string 26 pos  internal  module  3  stereo Id 369203725 " fill="rgb(255,53,0)" points="611.668,860.764 630.592,860.764 630.592,849.611 " />
<svg:polygon detid="369230086" count="1" value="105" id="3501001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  internal  module  1   Id 369230086 " fill="rgb(255,47,0)" points="736.404,1178.58 717.48,1178.58 717.48,1186.97 " />
<svg:polygon detid="369230342" count="1" value="105" id="3501002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  internal  module  1   Id 369230342 " fill="rgb(255,47,0)" points="736.404,1170.2 717.48,1170.2 717.48,1178.58 " />
<svg:polygon detid="369230598" count="1" value="105" id="3501003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  internal  module  1   Id 369230598 " fill="rgb(255,47,0)" points="736.404,1161.82 717.48,1161.82 717.48,1170.2 " />
<svg:polygon detid="369230854" count="1" value="105" id="3501005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  internal  module  1   Id 369230854 " fill="rgb(255,47,0)" points="736.404,1145.06 717.48,1145.06 717.48,1153.44 " />
<svg:polygon detid="369231110" count="1" value="105" id="3501006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  internal  module  1   Id 369231110 " fill="rgb(255,47,0)" points="736.404,1136.67 717.48,1136.67 717.48,1145.06 " />
<svg:polygon detid="369231366" count="1" value="105" id="3501007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  internal  module  1   Id 369231366 " fill="rgb(255,47,0)" points="736.404,1128.29 717.48,1128.29 717.48,1136.67 " />
<svg:polygon detid="369231622" count="1" value="105" id="3501008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  internal  module  1   Id 369231622 " fill="rgb(255,47,0)" points="736.404,1119.91 717.48,1119.91 717.48,1128.29 " />
<svg:polygon detid="369231878" count="1" value="105" id="3501009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  internal  module  1   Id 369231878 " fill="rgb(255,47,0)" points="736.404,1111.53 717.48,1111.53 717.48,1119.91 " />
<svg:polygon detid="369232134" count="1" value="105" id="3501010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  internal  module  1   Id 369232134 " fill="rgb(255,47,0)" points="736.404,1103.15 717.48,1103.15 717.48,1111.53 " />
<svg:polygon detid="369232390" count="1" value="105" id="3501011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  internal  module  1   Id 369232390 " fill="rgb(255,47,0)" points="736.404,1094.76 717.48,1094.76 717.48,1103.15 " />
<svg:polygon detid="369232646" count="1" value="105" id="3501012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  internal  module  1   Id 369232646 " fill="rgb(255,47,0)" points="736.404,1086.38 717.48,1086.38 717.48,1094.76 " />
<svg:polygon detid="369232902" count="1" value="105" id="3501013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  internal  module  1   Id 369232902 " fill="rgb(255,47,0)" points="736.404,1078 717.48,1078 717.48,1086.38 " />
<svg:polygon detid="369233158" count="1" value="105" id="3501015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  internal  module  1   Id 369233158 " fill="rgb(255,47,0)" points="736.404,1061.23 717.48,1061.23 717.48,1069.62 " />
<svg:polygon detid="369233414" count="1" value="105" id="3501016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  internal  module  1   Id 369233414 " fill="rgb(255,47,0)" points="736.404,1052.85 717.48,1052.85 717.48,1061.23 " />
<svg:polygon detid="369233670" count="1" value="105" id="3501017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  internal  module  1   Id 369233670 " fill="rgb(255,47,0)" points="736.404,1044.47 717.48,1044.47 717.48,1052.85 " />
<svg:polygon detid="369233926" count="1" value="105" id="3501018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  internal  module  1   Id 369233926 " fill="rgb(255,47,0)" points="736.404,1036.09 717.48,1036.09 717.48,1044.47 " />
<svg:polygon detid="369234182" count="1" value="105" id="3501019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  internal  module  1   Id 369234182 " fill="rgb(255,47,0)" points="736.404,1027.71 717.48,1027.71 717.48,1036.09 " />
<svg:polygon detid="369234438" count="1" value="105" id="3501020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  internal  module  1   Id 369234438 " fill="rgb(255,47,0)" points="736.404,1019.32 717.48,1019.32 717.48,1027.71 " />
<svg:polygon detid="369234694" count="1" value="105" id="3501021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  internal  module  1   Id 369234694 " fill="rgb(255,47,0)" points="736.404,1010.94 717.48,1010.94 717.48,1019.32 " />
<svg:polygon detid="369234950" count="1" value="105" id="3501022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  internal  module  1   Id 369234950 " fill="rgb(255,47,0)" points="736.404,1002.56 717.48,1002.56 717.48,1010.94 " />
<svg:polygon detid="369235206" count="1" value="105" id="3501024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  internal  module  1   Id 369235206 " fill="rgb(255,47,0)" points="736.404,985.795 717.48,985.795 717.48,994.177 " />
<svg:polygon detid="369235462" count="1" value="105" id="3501025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  internal  module  1   Id 369235462 " fill="rgb(255,47,0)" points="736.404,977.413 717.48,977.413 717.48,985.795 " />
<svg:polygon detid="369235718" count="1" value="105" id="3501026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  internal  module  1   Id 369235718 " fill="rgb(255,47,0)" points="736.404,969.03 717.48,969.03 717.48,977.413 " />
<svg:polygon detid="369235974" count="1" value="105" id="3501027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  internal  module  1   Id 369235974 " fill="rgb(255,47,0)" points="736.404,960.648 717.48,960.648 717.48,969.03 " />
<svg:polygon detid="369236230" count="1" value="105" id="3501028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  internal  module  1   Id 369236230 " fill="rgb(255,47,0)" points="736.404,952.266 717.48,952.266 717.48,960.648 " />
<svg:polygon detid="369236486" count="1" value="105" id="3501029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  internal  module  1   Id 369236486 " fill="rgb(255,47,0)" points="736.404,943.884 717.48,943.884 717.48,952.266 " />
<svg:polygon detid="369236742" count="1" value="105" id="3501030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  internal  module  1   Id 369236742 " fill="rgb(255,47,0)" points="736.404,935.502 717.48,935.502 717.48,943.884 " />
<svg:polygon detid="369236998" count="1" value="105" id="3501031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  internal  module  1   Id 369236998 " fill="rgb(255,47,0)" points="736.404,927.12 717.48,927.12 717.48,935.502 " />
<svg:polygon detid="369237254" count="1" value="105" id="3501032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  internal  module  1   Id 369237254 " fill="rgb(255,47,0)" points="736.404,918.737 717.48,918.737 717.48,927.12 " />
<svg:polygon detid="369237510" count="1" value="105" id="3501034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  internal  module  1   Id 369237510 " fill="rgb(255,47,0)" points="736.404,901.973 717.48,901.973 717.48,910.355 " />
<svg:polygon detid="369237766" count="1" value="105" id="3501035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  internal  module  1   Id 369237766 " fill="rgb(255,47,0)" points="736.404,893.591 717.48,893.591 717.48,901.973 " />
<svg:polygon detid="369238022" count="1" value="105" id="3501036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  internal  module  1   Id 369238022 " fill="rgb(255,47,0)" points="736.404,885.209 717.48,885.209 717.48,893.591 " />
<svg:polygon detid="369238278" count="1" value="105" id="3501037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  internal  module  1   Id 369238278 " fill="rgb(255,47,0)" points="736.404,876.827 717.48,876.827 717.48,885.209 " />
<svg:polygon detid="369238534" count="1" value="105" id="3501038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  internal  module  1   Id 369238534 " fill="rgb(255,47,0)" points="736.404,868.444 717.48,868.444 717.48,876.827 " />
<svg:polygon detid="369230085" count="1" value="105" id="3501101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  internal  module  1  stereo Id 369230085 " fill="rgb(255,47,0)" points="717.48,1186.97 736.404,1186.97 736.404,1178.58 " />
<svg:polygon detid="369230341" count="1" value="105" id="3501102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  internal  module  1  stereo Id 369230341 " fill="rgb(255,47,0)" points="717.48,1178.58 736.404,1178.58 736.404,1170.2 " />
<svg:polygon detid="369230597" count="1" value="105" id="3501103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  internal  module  1  stereo Id 369230597 " fill="rgb(255,47,0)" points="717.48,1170.2 736.404,1170.2 736.404,1161.82 " />
<svg:polygon detid="369230853" count="1" value="105" id="3501105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  internal  module  1  stereo Id 369230853 " fill="rgb(255,47,0)" points="717.48,1153.44 736.404,1153.44 736.404,1145.06 " />
<svg:polygon detid="369231109" count="1" value="105" id="3501106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  internal  module  1  stereo Id 369231109 " fill="rgb(255,47,0)" points="717.48,1145.06 736.404,1145.06 736.404,1136.67 " />
<svg:polygon detid="369231365" count="1" value="105" id="3501107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  internal  module  1  stereo Id 369231365 " fill="rgb(255,47,0)" points="717.48,1136.67 736.404,1136.67 736.404,1128.29 " />
<svg:polygon detid="369231621" count="1" value="105" id="3501108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  internal  module  1  stereo Id 369231621 " fill="rgb(255,47,0)" points="717.48,1128.29 736.404,1128.29 736.404,1119.91 " />
<svg:polygon detid="369231877" count="1" value="105" id="3501109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  internal  module  1  stereo Id 369231877 " fill="rgb(255,47,0)" points="717.48,1119.91 736.404,1119.91 736.404,1111.53 " />
<svg:polygon detid="369232133" count="1" value="105" id="3501110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  internal  module  1  stereo Id 369232133 " fill="rgb(255,47,0)" points="717.48,1111.53 736.404,1111.53 736.404,1103.15 " />
<svg:polygon detid="369232389" count="1" value="105" id="3501111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  internal  module  1  stereo Id 369232389 " fill="rgb(255,47,0)" points="717.48,1103.15 736.404,1103.15 736.404,1094.76 " />
<svg:polygon detid="369232645" count="1" value="105" id="3501112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  internal  module  1  stereo Id 369232645 " fill="rgb(255,47,0)" points="717.48,1094.76 736.404,1094.76 736.404,1086.38 " />
<svg:polygon detid="369232901" count="1" value="105" id="3501113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  internal  module  1  stereo Id 369232901 " fill="rgb(255,47,0)" points="717.48,1086.38 736.404,1086.38 736.404,1078 " />
<svg:polygon detid="369233157" count="1" value="105" id="3501115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  internal  module  1  stereo Id 369233157 " fill="rgb(255,47,0)" points="717.48,1069.62 736.404,1069.62 736.404,1061.23 " />
<svg:polygon detid="369233413" count="1" value="105" id="3501116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  internal  module  1  stereo Id 369233413 " fill="rgb(255,47,0)" points="717.48,1061.23 736.404,1061.23 736.404,1052.85 " />
<svg:polygon detid="369233669" count="1" value="105" id="3501117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  internal  module  1  stereo Id 369233669 " fill="rgb(255,47,0)" points="717.48,1052.85 736.404,1052.85 736.404,1044.47 " />
<svg:polygon detid="369233925" count="1" value="105" id="3501118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  internal  module  1  stereo Id 369233925 " fill="rgb(255,47,0)" points="717.48,1044.47 736.404,1044.47 736.404,1036.09 " />
<svg:polygon detid="369234181" count="1" value="105" id="3501119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  internal  module  1  stereo Id 369234181 " fill="rgb(255,47,0)" points="717.48,1036.09 736.404,1036.09 736.404,1027.71 " />
<svg:polygon detid="369234437" count="1" value="105" id="3501120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  internal  module  1  stereo Id 369234437 " fill="rgb(255,47,0)" points="717.48,1027.71 736.404,1027.71 736.404,1019.32 " />
<svg:polygon detid="369234693" count="1" value="105" id="3501121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  internal  module  1  stereo Id 369234693 " fill="rgb(255,47,0)" points="717.48,1019.32 736.404,1019.32 736.404,1010.94 " />
<svg:polygon detid="369234949" count="1" value="105" id="3501122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  internal  module  1  stereo Id 369234949 " fill="rgb(255,47,0)" points="717.48,1010.94 736.404,1010.94 736.404,1002.56 " />
<svg:polygon detid="369235205" count="1" value="105" id="3501124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  internal  module  1  stereo Id 369235205 " fill="rgb(255,47,0)" points="717.48,994.177 736.404,994.177 736.404,985.795 " />
<svg:polygon detid="369235461" count="1" value="105" id="3501125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  internal  module  1  stereo Id 369235461 " fill="rgb(255,47,0)" points="717.48,985.795 736.404,985.795 736.404,977.413 " />
<svg:polygon detid="369235717" count="1" value="105" id="3501126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  internal  module  1  stereo Id 369235717 " fill="rgb(255,47,0)" points="717.48,977.413 736.404,977.413 736.404,969.03 " />
<svg:polygon detid="369235973" count="1" value="105" id="3501127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  internal  module  1  stereo Id 369235973 " fill="rgb(255,47,0)" points="717.48,969.03 736.404,969.03 736.404,960.648 " />
<svg:polygon detid="369236229" count="1" value="105" id="3501128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  internal  module  1  stereo Id 369236229 " fill="rgb(255,47,0)" points="717.48,960.648 736.404,960.648 736.404,952.266 " />
<svg:polygon detid="369236485" count="1" value="105" id="3501129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  internal  module  1  stereo Id 369236485 " fill="rgb(255,47,0)" points="717.48,952.266 736.404,952.266 736.404,943.884 " />
<svg:polygon detid="369236741" count="1" value="105" id="3501130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  internal  module  1  stereo Id 369236741 " fill="rgb(255,47,0)" points="717.48,943.884 736.404,943.884 736.404,935.502 " />
<svg:polygon detid="369236997" count="1" value="105" id="3501131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  internal  module  1  stereo Id 369236997 " fill="rgb(255,47,0)" points="717.48,935.502 736.404,935.502 736.404,927.12 " />
<svg:polygon detid="369237253" count="1" value="105" id="3501132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  internal  module  1  stereo Id 369237253 " fill="rgb(255,47,0)" points="717.48,927.12 736.404,927.12 736.404,918.737 " />
<svg:polygon detid="369237509" count="1" value="105" id="3501134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  internal  module  1  stereo Id 369237509 " fill="rgb(255,47,0)" points="717.48,910.355 736.404,910.355 736.404,901.973 " />
<svg:polygon detid="369237765" count="1" value="105" id="3501135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  internal  module  1  stereo Id 369237765 " fill="rgb(255,47,0)" points="717.48,901.973 736.404,901.973 736.404,893.591 " />
<svg:polygon detid="369238021" count="1" value="105" id="3501136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  internal  module  1  stereo Id 369238021 " fill="rgb(255,47,0)" points="717.48,893.591 736.404,893.591 736.404,885.209 " />
<svg:polygon detid="369238277" count="1" value="105" id="3501137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  internal  module  1  stereo Id 369238277 " fill="rgb(255,47,0)" points="717.48,885.209 736.404,885.209 736.404,876.827 " />
<svg:polygon detid="369238533" count="1" value="105" id="3501138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  internal  module  1  stereo Id 369238533 " fill="rgb(255,47,0)" points="717.48,876.827 736.404,876.827 736.404,868.444 " />
<svg:polygon detid="369246470" count="1" value="105" id="3502001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  external  module  1   Id 369246470 " fill="rgb(255,47,0)" points="757.694,1178.58 738.77,1178.58 738.77,1186.97 " />
<svg:polygon detid="369246726" count="1" value="105" id="3502002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  external  module  1   Id 369246726 " fill="rgb(255,47,0)" points="757.694,1170.2 738.77,1170.2 738.77,1178.58 " />
<svg:polygon detid="369246982" count="1" value="105" id="3502003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  external  module  1   Id 369246982 " fill="rgb(255,47,0)" points="757.694,1161.82 738.77,1161.82 738.77,1170.2 " />
<svg:polygon detid="369247238" count="1" value="105" id="3502004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  external  module  1   Id 369247238 " fill="rgb(255,47,0)" points="757.694,1153.44 738.77,1153.44 738.77,1161.82 " />
<svg:polygon detid="369247494" count="1" value="105" id="3502005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  external  module  1   Id 369247494 " fill="rgb(255,47,0)" points="757.694,1145.06 738.77,1145.06 738.77,1153.44 " />
<svg:polygon detid="369247750" count="1" value="105" id="3502006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  external  module  1   Id 369247750 " fill="rgb(255,47,0)" points="757.694,1136.67 738.77,1136.67 738.77,1145.06 " />
<svg:polygon detid="369248006" count="1" value="105" id="3502007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  external  module  1   Id 369248006 " fill="rgb(255,47,0)" points="757.694,1128.29 738.77,1128.29 738.77,1136.67 " />
<svg:polygon detid="369248262" count="1" value="105" id="3502008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  external  module  1   Id 369248262 " fill="rgb(255,47,0)" points="757.694,1119.91 738.77,1119.91 738.77,1128.29 " />
<svg:polygon detid="369248518" count="1" value="105" id="3502009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  external  module  1   Id 369248518 " fill="rgb(255,47,0)" points="757.694,1111.53 738.77,1111.53 738.77,1119.91 " />
<svg:polygon detid="369248774" count="1" value="105" id="3502010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  external  module  1   Id 369248774 " fill="rgb(255,47,0)" points="757.694,1103.15 738.77,1103.15 738.77,1111.53 " />
<svg:polygon detid="369249030" count="1" value="105" id="3502011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  external  module  1   Id 369249030 " fill="rgb(255,47,0)" points="757.694,1094.76 738.77,1094.76 738.77,1103.15 " />
<svg:polygon detid="369249286" count="1" value="105" id="3502012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  external  module  1   Id 369249286 " fill="rgb(255,47,0)" points="757.694,1086.38 738.77,1086.38 738.77,1094.76 " />
<svg:polygon detid="369249542" count="1" value="105" id="3502013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  external  module  1   Id 369249542 " fill="rgb(255,47,0)" points="757.694,1078 738.77,1078 738.77,1086.38 " />
<svg:polygon detid="369249798" count="1" value="105" id="3502014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  external  module  1   Id 369249798 " fill="rgb(255,47,0)" points="757.694,1069.62 738.77,1069.62 738.77,1078 " />
<svg:polygon detid="369250054" count="1" value="105" id="3502015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  external  module  1   Id 369250054 " fill="rgb(255,47,0)" points="757.694,1061.23 738.77,1061.23 738.77,1069.62 " />
<svg:polygon detid="369250310" count="1" value="105" id="3502016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  external  module  1   Id 369250310 " fill="rgb(255,47,0)" points="757.694,1052.85 738.77,1052.85 738.77,1061.23 " />
<svg:polygon detid="369250566" count="1" value="105" id="3502017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  external  module  1   Id 369250566 " fill="rgb(255,47,0)" points="757.694,1044.47 738.77,1044.47 738.77,1052.85 " />
<svg:polygon detid="369250822" count="1" value="105" id="3502018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  external  module  1   Id 369250822 " fill="rgb(255,47,0)" points="757.694,1036.09 738.77,1036.09 738.77,1044.47 " />
<svg:polygon detid="369251078" count="1" value="105" id="3502019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  external  module  1   Id 369251078 " fill="rgb(255,47,0)" points="757.694,1027.71 738.77,1027.71 738.77,1036.09 " />
<svg:polygon detid="369251334" count="1" value="105" id="3502020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  external  module  1   Id 369251334 " fill="rgb(255,47,0)" points="757.694,1019.32 738.77,1019.32 738.77,1027.71 " />
<svg:polygon detid="369251590" count="1" value="105" id="3502021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  external  module  1   Id 369251590 " fill="rgb(255,47,0)" points="757.694,1010.94 738.77,1010.94 738.77,1019.32 " />
<svg:polygon detid="369251846" count="1" value="105" id="3502022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  external  module  1   Id 369251846 " fill="rgb(255,47,0)" points="757.694,1002.56 738.77,1002.56 738.77,1010.94 " />
<svg:polygon detid="369252102" count="1" value="105" id="3502023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  external  module  1   Id 369252102 " fill="rgb(255,47,0)" points="757.694,994.177 738.77,994.177 738.77,1002.56 " />
<svg:polygon detid="369252358" count="1" value="105" id="3502024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  external  module  1   Id 369252358 " fill="rgb(255,47,0)" points="757.694,985.795 738.77,985.795 738.77,994.177 " />
<svg:polygon detid="369252614" count="1" value="105" id="3502025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  external  module  1   Id 369252614 " fill="rgb(255,47,0)" points="757.694,977.413 738.77,977.413 738.77,985.795 " />
<svg:polygon detid="369252870" count="1" value="105" id="3502026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  external  module  1   Id 369252870 " fill="rgb(255,47,0)" points="757.694,969.03 738.77,969.03 738.77,977.413 " />
<svg:polygon detid="369253126" count="1" value="105" id="3502027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  external  module  1   Id 369253126 " fill="rgb(255,47,0)" points="757.694,960.648 738.77,960.648 738.77,969.03 " />
<svg:polygon detid="369253382" count="1" value="105" id="3502028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  external  module  1   Id 369253382 " fill="rgb(255,47,0)" points="757.694,952.266 738.77,952.266 738.77,960.648 " />
<svg:polygon detid="369253638" count="1" value="105" id="3502029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  external  module  1   Id 369253638 " fill="rgb(255,47,0)" points="757.694,943.884 738.77,943.884 738.77,952.266 " />
<svg:polygon detid="369253894" count="1" value="105" id="3502030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  external  module  1   Id 369253894 " fill="rgb(255,47,0)" points="757.694,935.502 738.77,935.502 738.77,943.884 " />
<svg:polygon detid="369254150" count="1" value="105" id="3502031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  external  module  1   Id 369254150 " fill="rgb(255,47,0)" points="757.694,927.12 738.77,927.12 738.77,935.502 " />
<svg:polygon detid="369254406" count="1" value="105" id="3502032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  external  module  1   Id 369254406 " fill="rgb(255,47,0)" points="757.694,918.737 738.77,918.737 738.77,927.12 " />
<svg:polygon detid="369254662" count="1" value="105" id="3502033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  external  module  1   Id 369254662 " fill="rgb(255,47,0)" points="757.694,910.355 738.77,910.355 738.77,918.737 " />
<svg:polygon detid="369254918" count="1" value="105" id="3502034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  external  module  1   Id 369254918 " fill="rgb(255,47,0)" points="757.694,901.973 738.77,901.973 738.77,910.355 " />
<svg:polygon detid="369255174" count="1" value="105" id="3502035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 neg  external  module  1   Id 369255174 " fill="rgb(255,47,0)" points="757.694,893.591 738.77,893.591 738.77,901.973 " />
<svg:polygon detid="369255430" count="1" value="105" id="3502036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 neg  external  module  1   Id 369255430 " fill="rgb(255,47,0)" points="757.694,885.209 738.77,885.209 738.77,893.591 " />
<svg:polygon detid="369255686" count="1" value="105" id="3502037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 neg  external  module  1   Id 369255686 " fill="rgb(255,47,0)" points="757.694,876.827 738.77,876.827 738.77,885.209 " />
<svg:polygon detid="369255942" count="1" value="105" id="3502038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 neg  external  module  1   Id 369255942 " fill="rgb(255,47,0)" points="757.694,868.444 738.77,868.444 738.77,876.827 " />
<svg:polygon detid="369246469" count="1" value="105" id="3502101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  external  module  1  stereo Id 369246469 " fill="rgb(255,47,0)" points="738.77,1186.97 757.694,1186.97 757.694,1178.58 " />
<svg:polygon detid="369246725" count="1" value="105" id="3502102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  external  module  1  stereo Id 369246725 " fill="rgb(255,47,0)" points="738.77,1178.58 757.694,1178.58 757.694,1170.2 " />
<svg:polygon detid="369246981" count="1" value="105" id="3502103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  external  module  1  stereo Id 369246981 " fill="rgb(255,47,0)" points="738.77,1170.2 757.694,1170.2 757.694,1161.82 " />
<svg:polygon detid="369247237" count="1" value="105" id="3502104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  external  module  1  stereo Id 369247237 " fill="rgb(255,47,0)" points="738.77,1161.82 757.694,1161.82 757.694,1153.44 " />
<svg:polygon detid="369247493" count="1" value="105" id="3502105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  external  module  1  stereo Id 369247493 " fill="rgb(255,47,0)" points="738.77,1153.44 757.694,1153.44 757.694,1145.06 " />
<svg:polygon detid="369247749" count="1" value="105" id="3502106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  external  module  1  stereo Id 369247749 " fill="rgb(255,47,0)" points="738.77,1145.06 757.694,1145.06 757.694,1136.67 " />
<svg:polygon detid="369248005" count="1" value="105" id="3502107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  external  module  1  stereo Id 369248005 " fill="rgb(255,47,0)" points="738.77,1136.67 757.694,1136.67 757.694,1128.29 " />
<svg:polygon detid="369248261" count="1" value="105" id="3502108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  external  module  1  stereo Id 369248261 " fill="rgb(255,47,0)" points="738.77,1128.29 757.694,1128.29 757.694,1119.91 " />
<svg:polygon detid="369248517" count="1" value="105" id="3502109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  external  module  1  stereo Id 369248517 " fill="rgb(255,47,0)" points="738.77,1119.91 757.694,1119.91 757.694,1111.53 " />
<svg:polygon detid="369248773" count="1" value="105" id="3502110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  external  module  1  stereo Id 369248773 " fill="rgb(255,47,0)" points="738.77,1111.53 757.694,1111.53 757.694,1103.15 " />
<svg:polygon detid="369249029" count="1" value="105" id="3502111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  external  module  1  stereo Id 369249029 " fill="rgb(255,47,0)" points="738.77,1103.15 757.694,1103.15 757.694,1094.76 " />
<svg:polygon detid="369249285" count="1" value="105" id="3502112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  external  module  1  stereo Id 369249285 " fill="rgb(255,47,0)" points="738.77,1094.76 757.694,1094.76 757.694,1086.38 " />
<svg:polygon detid="369249541" count="1" value="105" id="3502113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  external  module  1  stereo Id 369249541 " fill="rgb(255,47,0)" points="738.77,1086.38 757.694,1086.38 757.694,1078 " />
<svg:polygon detid="369249797" count="1" value="105" id="3502114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  external  module  1  stereo Id 369249797 " fill="rgb(255,47,0)" points="738.77,1078 757.694,1078 757.694,1069.62 " />
<svg:polygon detid="369250053" count="1" value="105" id="3502115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  external  module  1  stereo Id 369250053 " fill="rgb(255,47,0)" points="738.77,1069.62 757.694,1069.62 757.694,1061.23 " />
<svg:polygon detid="369250309" count="1" value="105" id="3502116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  external  module  1  stereo Id 369250309 " fill="rgb(255,47,0)" points="738.77,1061.23 757.694,1061.23 757.694,1052.85 " />
<svg:polygon detid="369250565" count="1" value="105" id="3502117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  external  module  1  stereo Id 369250565 " fill="rgb(255,47,0)" points="738.77,1052.85 757.694,1052.85 757.694,1044.47 " />
<svg:polygon detid="369250821" count="1" value="105" id="3502118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  external  module  1  stereo Id 369250821 " fill="rgb(255,47,0)" points="738.77,1044.47 757.694,1044.47 757.694,1036.09 " />
<svg:polygon detid="369251077" count="1" value="105" id="3502119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  external  module  1  stereo Id 369251077 " fill="rgb(255,47,0)" points="738.77,1036.09 757.694,1036.09 757.694,1027.71 " />
<svg:polygon detid="369251333" count="1" value="105" id="3502120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  external  module  1  stereo Id 369251333 " fill="rgb(255,47,0)" points="738.77,1027.71 757.694,1027.71 757.694,1019.32 " />
<svg:polygon detid="369251589" count="1" value="105" id="3502121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  external  module  1  stereo Id 369251589 " fill="rgb(255,47,0)" points="738.77,1019.32 757.694,1019.32 757.694,1010.94 " />
<svg:polygon detid="369251845" count="1" value="105" id="3502122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  external  module  1  stereo Id 369251845 " fill="rgb(255,47,0)" points="738.77,1010.94 757.694,1010.94 757.694,1002.56 " />
<svg:polygon detid="369252101" count="1" value="105" id="3502123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  external  module  1  stereo Id 369252101 " fill="rgb(255,47,0)" points="738.77,1002.56 757.694,1002.56 757.694,994.177 " />
<svg:polygon detid="369252357" count="1" value="105" id="3502124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  external  module  1  stereo Id 369252357 " fill="rgb(255,47,0)" points="738.77,994.177 757.694,994.177 757.694,985.795 " />
<svg:polygon detid="369252613" count="1" value="105" id="3502125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  external  module  1  stereo Id 369252613 " fill="rgb(255,47,0)" points="738.77,985.795 757.694,985.795 757.694,977.413 " />
<svg:polygon detid="369252869" count="1" value="105" id="3502126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  external  module  1  stereo Id 369252869 " fill="rgb(255,47,0)" points="738.77,977.413 757.694,977.413 757.694,969.03 " />
<svg:polygon detid="369253125" count="1" value="105" id="3502127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  external  module  1  stereo Id 369253125 " fill="rgb(255,47,0)" points="738.77,969.03 757.694,969.03 757.694,960.648 " />
<svg:polygon detid="369253381" count="1" value="105" id="3502128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  external  module  1  stereo Id 369253381 " fill="rgb(255,47,0)" points="738.77,960.648 757.694,960.648 757.694,952.266 " />
<svg:polygon detid="369253637" count="1" value="105" id="3502129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  external  module  1  stereo Id 369253637 " fill="rgb(255,47,0)" points="738.77,952.266 757.694,952.266 757.694,943.884 " />
<svg:polygon detid="369253893" count="1" value="105" id="3502130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  external  module  1  stereo Id 369253893 " fill="rgb(255,47,0)" points="738.77,943.884 757.694,943.884 757.694,935.502 " />
<svg:polygon detid="369254149" count="1" value="105" id="3502131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  external  module  1  stereo Id 369254149 " fill="rgb(255,47,0)" points="738.77,935.502 757.694,935.502 757.694,927.12 " />
<svg:polygon detid="369254405" count="1" value="105" id="3502132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  external  module  1  stereo Id 369254405 " fill="rgb(255,47,0)" points="738.77,927.12 757.694,927.12 757.694,918.737 " />
<svg:polygon detid="369254661" count="1" value="105" id="3502133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  external  module  1  stereo Id 369254661 " fill="rgb(255,47,0)" points="738.77,918.737 757.694,918.737 757.694,910.355 " />
<svg:polygon detid="369254917" count="1" value="105" id="3502134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  external  module  1  stereo Id 369254917 " fill="rgb(255,47,0)" points="738.77,910.355 757.694,910.355 757.694,901.973 " />
<svg:polygon detid="369255173" count="1" value="105" id="3502135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 neg  external  module  1  stereo Id 369255173 " fill="rgb(255,47,0)" points="738.77,901.973 757.694,901.973 757.694,893.591 " />
<svg:polygon detid="369255429" count="1" value="105" id="3502136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 neg  external  module  1  stereo Id 369255429 " fill="rgb(255,47,0)" points="738.77,893.591 757.694,893.591 757.694,885.209 " />
<svg:polygon detid="369255685" count="1" value="105" id="3502137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 neg  external  module  1  stereo Id 369255685 " fill="rgb(255,47,0)" points="738.77,885.209 757.694,885.209 757.694,876.827 " />
<svg:polygon detid="369255941" count="1" value="105" id="3502138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 neg  external  module  1  stereo Id 369255941 " fill="rgb(255,47,0)" points="738.77,876.827 757.694,876.827 757.694,868.444 " />
<svg:polygon detid="369230090" count="1" value="105" id="3503001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  internal  module  2   Id 369230090 " fill="rgb(255,47,0)" points="778.984,1178.58 760.06,1178.58 760.06,1186.97 " />
<svg:polygon detid="369230346" count="1" value="105" id="3503002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  internal  module  2   Id 369230346 " fill="rgb(255,47,0)" points="778.984,1170.2 760.06,1170.2 760.06,1178.58 " />
<svg:polygon detid="369230602" count="1" value="105" id="3503003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  internal  module  2   Id 369230602 " fill="rgb(255,47,0)" points="778.984,1161.82 760.06,1161.82 760.06,1170.2 " />
<svg:polygon detid="369230858" count="1" value="105" id="3503005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  internal  module  2   Id 369230858 " fill="rgb(255,47,0)" points="778.984,1145.06 760.06,1145.06 760.06,1153.44 " />
<svg:polygon detid="369231114" count="1" value="105" id="3503006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  internal  module  2   Id 369231114 " fill="rgb(255,47,0)" points="778.984,1136.67 760.06,1136.67 760.06,1145.06 " />
<svg:polygon detid="369231370" count="1" value="105" id="3503007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  internal  module  2   Id 369231370 " fill="rgb(255,47,0)" points="778.984,1128.29 760.06,1128.29 760.06,1136.67 " />
<svg:polygon detid="369231626" count="1" value="105" id="3503008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  internal  module  2   Id 369231626 " fill="rgb(255,47,0)" points="778.984,1119.91 760.06,1119.91 760.06,1128.29 " />
<svg:polygon detid="369231882" count="1" value="105" id="3503009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  internal  module  2   Id 369231882 " fill="rgb(255,47,0)" points="778.984,1111.53 760.06,1111.53 760.06,1119.91 " />
<svg:polygon detid="369232138" count="1" value="105" id="3503010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  internal  module  2   Id 369232138 " fill="rgb(255,47,0)" points="778.984,1103.15 760.06,1103.15 760.06,1111.53 " />
<svg:polygon detid="369232394" count="1" value="105" id="3503011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  internal  module  2   Id 369232394 " fill="rgb(255,47,0)" points="778.984,1094.76 760.06,1094.76 760.06,1103.15 " />
<svg:polygon detid="369232650" count="1" value="105" id="3503012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  internal  module  2   Id 369232650 " fill="rgb(255,47,0)" points="778.984,1086.38 760.06,1086.38 760.06,1094.76 " />
<svg:polygon detid="369232906" count="1" value="105" id="3503013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  internal  module  2   Id 369232906 " fill="rgb(255,47,0)" points="778.984,1078 760.06,1078 760.06,1086.38 " />
<svg:polygon detid="369233162" count="1" value="105" id="3503015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  internal  module  2   Id 369233162 " fill="rgb(255,47,0)" points="778.984,1061.23 760.06,1061.23 760.06,1069.62 " />
<svg:polygon detid="369233418" count="1" value="105" id="3503016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  internal  module  2   Id 369233418 " fill="rgb(255,47,0)" points="778.984,1052.85 760.06,1052.85 760.06,1061.23 " />
<svg:polygon detid="369233674" count="1" value="105" id="3503017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  internal  module  2   Id 369233674 " fill="rgb(255,47,0)" points="778.984,1044.47 760.06,1044.47 760.06,1052.85 " />
<svg:polygon detid="369233930" count="1" value="105" id="3503018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  internal  module  2   Id 369233930 " fill="rgb(255,47,0)" points="778.984,1036.09 760.06,1036.09 760.06,1044.47 " />
<svg:polygon detid="369234186" count="1" value="105" id="3503019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  internal  module  2   Id 369234186 " fill="rgb(255,47,0)" points="778.984,1027.71 760.06,1027.71 760.06,1036.09 " />
<svg:polygon detid="369234442" count="1" value="105" id="3503020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  internal  module  2   Id 369234442 " fill="rgb(255,47,0)" points="778.984,1019.32 760.06,1019.32 760.06,1027.71 " />
<svg:polygon detid="369234698" count="1" value="105" id="3503021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  internal  module  2   Id 369234698 " fill="rgb(255,47,0)" points="778.984,1010.94 760.06,1010.94 760.06,1019.32 " />
<svg:polygon detid="369234954" count="1" value="105" id="3503022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  internal  module  2   Id 369234954 " fill="rgb(255,47,0)" points="778.984,1002.56 760.06,1002.56 760.06,1010.94 " />
<svg:polygon detid="369235210" count="1" value="105" id="3503024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  internal  module  2   Id 369235210 " fill="rgb(255,47,0)" points="778.984,985.795 760.06,985.795 760.06,994.177 " />
<svg:polygon detid="369235466" count="1" value="105" id="3503025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  internal  module  2   Id 369235466 " fill="rgb(255,47,0)" points="778.984,977.413 760.06,977.413 760.06,985.795 " />
<svg:polygon detid="369235722" count="1" value="105" id="3503026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  internal  module  2   Id 369235722 " fill="rgb(255,47,0)" points="778.984,969.03 760.06,969.03 760.06,977.413 " />
<svg:polygon detid="369235978" count="1" value="105" id="3503027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  internal  module  2   Id 369235978 " fill="rgb(255,47,0)" points="778.984,960.648 760.06,960.648 760.06,969.03 " />
<svg:polygon detid="369236234" count="1" value="105" id="3503028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  internal  module  2   Id 369236234 " fill="rgb(255,47,0)" points="778.984,952.266 760.06,952.266 760.06,960.648 " />
<svg:polygon detid="369236490" count="1" value="105" id="3503029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  internal  module  2   Id 369236490 " fill="rgb(255,47,0)" points="778.984,943.884 760.06,943.884 760.06,952.266 " />
<svg:polygon detid="369236746" count="1" value="105" id="3503030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  internal  module  2   Id 369236746 " fill="rgb(255,47,0)" points="778.984,935.502 760.06,935.502 760.06,943.884 " />
<svg:polygon detid="369237002" count="1" value="105" id="3503031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  internal  module  2   Id 369237002 " fill="rgb(255,47,0)" points="778.984,927.12 760.06,927.12 760.06,935.502 " />
<svg:polygon detid="369237258" count="1" value="105" id="3503032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  internal  module  2   Id 369237258 " fill="rgb(255,47,0)" points="778.984,918.737 760.06,918.737 760.06,927.12 " />
<svg:polygon detid="369237514" count="1" value="105" id="3503034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  internal  module  2   Id 369237514 " fill="rgb(255,47,0)" points="778.984,901.973 760.06,901.973 760.06,910.355 " />
<svg:polygon detid="369237770" count="1" value="105" id="3503035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  internal  module  2   Id 369237770 " fill="rgb(255,47,0)" points="778.984,893.591 760.06,893.591 760.06,901.973 " />
<svg:polygon detid="369238026" count="1" value="105" id="3503036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  internal  module  2   Id 369238026 " fill="rgb(255,47,0)" points="778.984,885.209 760.06,885.209 760.06,893.591 " />
<svg:polygon detid="369238282" count="1" value="105" id="3503037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  internal  module  2   Id 369238282 " fill="rgb(255,47,0)" points="778.984,876.827 760.06,876.827 760.06,885.209 " />
<svg:polygon detid="369238538" count="1" value="105" id="3503038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  internal  module  2   Id 369238538 " fill="rgb(255,47,0)" points="778.984,868.444 760.06,868.444 760.06,876.827 " />
<svg:polygon detid="369230089" count="1" value="105" id="3503101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  internal  module  2  stereo Id 369230089 " fill="rgb(255,47,0)" points="760.06,1186.97 778.984,1186.97 778.984,1178.58 " />
<svg:polygon detid="369230345" count="1" value="105" id="3503102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  internal  module  2  stereo Id 369230345 " fill="rgb(255,47,0)" points="760.06,1178.58 778.984,1178.58 778.984,1170.2 " />
<svg:polygon detid="369230601" count="1" value="105" id="3503103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  internal  module  2  stereo Id 369230601 " fill="rgb(255,47,0)" points="760.06,1170.2 778.984,1170.2 778.984,1161.82 " />
<svg:polygon detid="369230857" count="1" value="105" id="3503105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  internal  module  2  stereo Id 369230857 " fill="rgb(255,47,0)" points="760.06,1153.44 778.984,1153.44 778.984,1145.06 " />
<svg:polygon detid="369231113" count="1" value="105" id="3503106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  internal  module  2  stereo Id 369231113 " fill="rgb(255,47,0)" points="760.06,1145.06 778.984,1145.06 778.984,1136.67 " />
<svg:polygon detid="369231369" count="1" value="105" id="3503107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  internal  module  2  stereo Id 369231369 " fill="rgb(255,47,0)" points="760.06,1136.67 778.984,1136.67 778.984,1128.29 " />
<svg:polygon detid="369231625" count="1" value="105" id="3503108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  internal  module  2  stereo Id 369231625 " fill="rgb(255,47,0)" points="760.06,1128.29 778.984,1128.29 778.984,1119.91 " />
<svg:polygon detid="369231881" count="1" value="105" id="3503109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  internal  module  2  stereo Id 369231881 " fill="rgb(255,47,0)" points="760.06,1119.91 778.984,1119.91 778.984,1111.53 " />
<svg:polygon detid="369232137" count="1" value="105" id="3503110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  internal  module  2  stereo Id 369232137 " fill="rgb(255,47,0)" points="760.06,1111.53 778.984,1111.53 778.984,1103.15 " />
<svg:polygon detid="369232393" count="1" value="105" id="3503111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  internal  module  2  stereo Id 369232393 " fill="rgb(255,47,0)" points="760.06,1103.15 778.984,1103.15 778.984,1094.76 " />
<svg:polygon detid="369232649" count="1" value="105" id="3503112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  internal  module  2  stereo Id 369232649 " fill="rgb(255,47,0)" points="760.06,1094.76 778.984,1094.76 778.984,1086.38 " />
<svg:polygon detid="369232905" count="1" value="105" id="3503113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  internal  module  2  stereo Id 369232905 " fill="rgb(255,47,0)" points="760.06,1086.38 778.984,1086.38 778.984,1078 " />
<svg:polygon detid="369233161" count="1" value="105" id="3503115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  internal  module  2  stereo Id 369233161 " fill="rgb(255,47,0)" points="760.06,1069.62 778.984,1069.62 778.984,1061.23 " />
<svg:polygon detid="369233417" count="1" value="105" id="3503116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  internal  module  2  stereo Id 369233417 " fill="rgb(255,47,0)" points="760.06,1061.23 778.984,1061.23 778.984,1052.85 " />
<svg:polygon detid="369233673" count="1" value="105" id="3503117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  internal  module  2  stereo Id 369233673 " fill="rgb(255,47,0)" points="760.06,1052.85 778.984,1052.85 778.984,1044.47 " />
<svg:polygon detid="369233929" count="1" value="105" id="3503118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  internal  module  2  stereo Id 369233929 " fill="rgb(255,47,0)" points="760.06,1044.47 778.984,1044.47 778.984,1036.09 " />
<svg:polygon detid="369234185" count="1" value="105" id="3503119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  internal  module  2  stereo Id 369234185 " fill="rgb(255,47,0)" points="760.06,1036.09 778.984,1036.09 778.984,1027.71 " />
<svg:polygon detid="369234441" count="1" value="105" id="3503120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  internal  module  2  stereo Id 369234441 " fill="rgb(255,47,0)" points="760.06,1027.71 778.984,1027.71 778.984,1019.32 " />
<svg:polygon detid="369234697" count="1" value="105" id="3503121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  internal  module  2  stereo Id 369234697 " fill="rgb(255,47,0)" points="760.06,1019.32 778.984,1019.32 778.984,1010.94 " />
<svg:polygon detid="369234953" count="1" value="105" id="3503122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  internal  module  2  stereo Id 369234953 " fill="rgb(255,47,0)" points="760.06,1010.94 778.984,1010.94 778.984,1002.56 " />
<svg:polygon detid="369235209" count="1" value="105" id="3503124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  internal  module  2  stereo Id 369235209 " fill="rgb(255,47,0)" points="760.06,994.177 778.984,994.177 778.984,985.795 " />
<svg:polygon detid="369235465" count="1" value="105" id="3503125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  internal  module  2  stereo Id 369235465 " fill="rgb(255,47,0)" points="760.06,985.795 778.984,985.795 778.984,977.413 " />
<svg:polygon detid="369235721" count="1" value="105" id="3503126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  internal  module  2  stereo Id 369235721 " fill="rgb(255,47,0)" points="760.06,977.413 778.984,977.413 778.984,969.03 " />
<svg:polygon detid="369235977" count="1" value="105" id="3503127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  internal  module  2  stereo Id 369235977 " fill="rgb(255,47,0)" points="760.06,969.03 778.984,969.03 778.984,960.648 " />
<svg:polygon detid="369236233" count="1" value="105" id="3503128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  internal  module  2  stereo Id 369236233 " fill="rgb(255,47,0)" points="760.06,960.648 778.984,960.648 778.984,952.266 " />
<svg:polygon detid="369236489" count="1" value="105" id="3503129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  internal  module  2  stereo Id 369236489 " fill="rgb(255,47,0)" points="760.06,952.266 778.984,952.266 778.984,943.884 " />
<svg:polygon detid="369236745" count="1" value="105" id="3503130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  internal  module  2  stereo Id 369236745 " fill="rgb(255,47,0)" points="760.06,943.884 778.984,943.884 778.984,935.502 " />
<svg:polygon detid="369237001" count="1" value="105" id="3503131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  internal  module  2  stereo Id 369237001 " fill="rgb(255,47,0)" points="760.06,935.502 778.984,935.502 778.984,927.12 " />
<svg:polygon detid="369237257" count="1" value="105" id="3503132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  internal  module  2  stereo Id 369237257 " fill="rgb(255,47,0)" points="760.06,927.12 778.984,927.12 778.984,918.737 " />
<svg:polygon detid="369237513" count="1" value="105" id="3503134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  internal  module  2  stereo Id 369237513 " fill="rgb(255,47,0)" points="760.06,910.355 778.984,910.355 778.984,901.973 " />
<svg:polygon detid="369237769" count="1" value="105" id="3503135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  internal  module  2  stereo Id 369237769 " fill="rgb(255,47,0)" points="760.06,901.973 778.984,901.973 778.984,893.591 " />
<svg:polygon detid="369238025" count="1" value="105" id="3503136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  internal  module  2  stereo Id 369238025 " fill="rgb(255,47,0)" points="760.06,893.591 778.984,893.591 778.984,885.209 " />
<svg:polygon detid="369238281" count="1" value="105" id="3503137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  internal  module  2  stereo Id 369238281 " fill="rgb(255,47,0)" points="760.06,885.209 778.984,885.209 778.984,876.827 " />
<svg:polygon detid="369238537" count="1" value="105" id="3503138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  internal  module  2  stereo Id 369238537 " fill="rgb(255,47,0)" points="760.06,876.827 778.984,876.827 778.984,868.444 " />
<svg:polygon detid="369246474" count="1" value="105" id="3504001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  external  module  2   Id 369246474 " fill="rgb(255,47,0)" points="800.274,1178.58 781.35,1178.58 781.35,1186.97 " />
<svg:polygon detid="369246730" count="1" value="105" id="3504002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  external  module  2   Id 369246730 " fill="rgb(255,47,0)" points="800.274,1170.2 781.35,1170.2 781.35,1178.58 " />
<svg:polygon detid="369246986" count="1" value="105" id="3504003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  external  module  2   Id 369246986 " fill="rgb(255,47,0)" points="800.274,1161.82 781.35,1161.82 781.35,1170.2 " />
<svg:polygon detid="369247242" count="1" value="105" id="3504004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  external  module  2   Id 369247242 " fill="rgb(255,47,0)" points="800.274,1153.44 781.35,1153.44 781.35,1161.82 " />
<svg:polygon detid="369247498" count="1" value="105" id="3504005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  external  module  2   Id 369247498 " fill="rgb(255,47,0)" points="800.274,1145.06 781.35,1145.06 781.35,1153.44 " />
<svg:polygon detid="369247754" count="1" value="105" id="3504006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  external  module  2   Id 369247754 " fill="rgb(255,47,0)" points="800.274,1136.67 781.35,1136.67 781.35,1145.06 " />
<svg:polygon detid="369248010" count="1" value="105" id="3504007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  external  module  2   Id 369248010 " fill="rgb(255,47,0)" points="800.274,1128.29 781.35,1128.29 781.35,1136.67 " />
<svg:polygon detid="369248266" count="1" value="105" id="3504008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  external  module  2   Id 369248266 " fill="rgb(255,47,0)" points="800.274,1119.91 781.35,1119.91 781.35,1128.29 " />
<svg:polygon detid="369248522" count="1" value="105" id="3504009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  external  module  2   Id 369248522 " fill="rgb(255,47,0)" points="800.274,1111.53 781.35,1111.53 781.35,1119.91 " />
<svg:polygon detid="369248778" count="1" value="105" id="3504010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  external  module  2   Id 369248778 " fill="rgb(255,47,0)" points="800.274,1103.15 781.35,1103.15 781.35,1111.53 " />
<svg:polygon detid="369249034" count="1" value="105" id="3504011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  external  module  2   Id 369249034 " fill="rgb(255,47,0)" points="800.274,1094.76 781.35,1094.76 781.35,1103.15 " />
<svg:polygon detid="369249290" count="1" value="105" id="3504012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  external  module  2   Id 369249290 " fill="rgb(255,47,0)" points="800.274,1086.38 781.35,1086.38 781.35,1094.76 " />
<svg:polygon detid="369249546" count="1" value="105" id="3504013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  external  module  2   Id 369249546 " fill="rgb(255,47,0)" points="800.274,1078 781.35,1078 781.35,1086.38 " />
<svg:polygon detid="369249802" count="1" value="105" id="3504014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  external  module  2   Id 369249802 " fill="rgb(255,47,0)" points="800.274,1069.62 781.35,1069.62 781.35,1078 " />
<svg:polygon detid="369250058" count="1" value="105" id="3504015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  external  module  2   Id 369250058 " fill="rgb(255,47,0)" points="800.274,1061.23 781.35,1061.23 781.35,1069.62 " />
<svg:polygon detid="369250314" count="1" value="105" id="3504016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  external  module  2   Id 369250314 " fill="rgb(255,47,0)" points="800.274,1052.85 781.35,1052.85 781.35,1061.23 " />
<svg:polygon detid="369250570" count="1" value="105" id="3504017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  external  module  2   Id 369250570 " fill="rgb(255,47,0)" points="800.274,1044.47 781.35,1044.47 781.35,1052.85 " />
<svg:polygon detid="369250826" count="1" value="105" id="3504018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  external  module  2   Id 369250826 " fill="rgb(255,47,0)" points="800.274,1036.09 781.35,1036.09 781.35,1044.47 " />
<svg:polygon detid="369251082" count="1" value="105" id="3504019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  external  module  2   Id 369251082 " fill="rgb(255,47,0)" points="800.274,1027.71 781.35,1027.71 781.35,1036.09 " />
<svg:polygon detid="369251338" count="1" value="105" id="3504020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  external  module  2   Id 369251338 " fill="rgb(255,47,0)" points="800.274,1019.32 781.35,1019.32 781.35,1027.71 " />
<svg:polygon detid="369251594" count="1" value="105" id="3504021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  external  module  2   Id 369251594 " fill="rgb(255,47,0)" points="800.274,1010.94 781.35,1010.94 781.35,1019.32 " />
<svg:polygon detid="369251850" count="1" value="105" id="3504022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  external  module  2   Id 369251850 " fill="rgb(255,47,0)" points="800.274,1002.56 781.35,1002.56 781.35,1010.94 " />
<svg:polygon detid="369252106" count="1" value="105" id="3504023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  external  module  2   Id 369252106 " fill="rgb(255,47,0)" points="800.274,994.177 781.35,994.177 781.35,1002.56 " />
<svg:polygon detid="369252362" count="1" value="105" id="3504024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  external  module  2   Id 369252362 " fill="rgb(255,47,0)" points="800.274,985.795 781.35,985.795 781.35,994.177 " />
<svg:polygon detid="369252618" count="1" value="105" id="3504025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  external  module  2   Id 369252618 " fill="rgb(255,47,0)" points="800.274,977.413 781.35,977.413 781.35,985.795 " />
<svg:polygon detid="369252874" count="1" value="105" id="3504026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  external  module  2   Id 369252874 " fill="rgb(255,47,0)" points="800.274,969.03 781.35,969.03 781.35,977.413 " />
<svg:polygon detid="369253130" count="1" value="105" id="3504027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  external  module  2   Id 369253130 " fill="rgb(255,47,0)" points="800.274,960.648 781.35,960.648 781.35,969.03 " />
<svg:polygon detid="369253386" count="1" value="105" id="3504028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  external  module  2   Id 369253386 " fill="rgb(255,47,0)" points="800.274,952.266 781.35,952.266 781.35,960.648 " />
<svg:polygon detid="369253642" count="1" value="105" id="3504029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  external  module  2   Id 369253642 " fill="rgb(255,47,0)" points="800.274,943.884 781.35,943.884 781.35,952.266 " />
<svg:polygon detid="369253898" count="1" value="105" id="3504030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  external  module  2   Id 369253898 " fill="rgb(255,47,0)" points="800.274,935.502 781.35,935.502 781.35,943.884 " />
<svg:polygon detid="369254154" count="1" value="105" id="3504031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  external  module  2   Id 369254154 " fill="rgb(255,47,0)" points="800.274,927.12 781.35,927.12 781.35,935.502 " />
<svg:polygon detid="369254410" count="1" value="105" id="3504032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  external  module  2   Id 369254410 " fill="rgb(255,47,0)" points="800.274,918.737 781.35,918.737 781.35,927.12 " />
<svg:polygon detid="369254666" count="1" value="105" id="3504033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  external  module  2   Id 369254666 " fill="rgb(255,47,0)" points="800.274,910.355 781.35,910.355 781.35,918.737 " />
<svg:polygon detid="369254922" count="1" value="105" id="3504034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  external  module  2   Id 369254922 " fill="rgb(255,47,0)" points="800.274,901.973 781.35,901.973 781.35,910.355 " />
<svg:polygon detid="369255178" count="1" value="105" id="3504035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 neg  external  module  2   Id 369255178 " fill="rgb(255,47,0)" points="800.274,893.591 781.35,893.591 781.35,901.973 " />
<svg:polygon detid="369255434" count="1" value="105" id="3504036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 neg  external  module  2   Id 369255434 " fill="rgb(255,47,0)" points="800.274,885.209 781.35,885.209 781.35,893.591 " />
<svg:polygon detid="369255690" count="1" value="105" id="3504037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 neg  external  module  2   Id 369255690 " fill="rgb(255,47,0)" points="800.274,876.827 781.35,876.827 781.35,885.209 " />
<svg:polygon detid="369255946" count="1" value="105" id="3504038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 neg  external  module  2   Id 369255946 " fill="rgb(255,47,0)" points="800.274,868.444 781.35,868.444 781.35,876.827 " />
<svg:polygon detid="369246473" count="1" value="105" id="3504101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  external  module  2  stereo Id 369246473 " fill="rgb(255,47,0)" points="781.35,1186.97 800.274,1186.97 800.274,1178.58 " />
<svg:polygon detid="369246729" count="1" value="105" id="3504102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  external  module  2  stereo Id 369246729 " fill="rgb(255,47,0)" points="781.35,1178.58 800.274,1178.58 800.274,1170.2 " />
<svg:polygon detid="369246985" count="1" value="105" id="3504103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  external  module  2  stereo Id 369246985 " fill="rgb(255,47,0)" points="781.35,1170.2 800.274,1170.2 800.274,1161.82 " />
<svg:polygon detid="369247241" count="1" value="105" id="3504104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  external  module  2  stereo Id 369247241 " fill="rgb(255,47,0)" points="781.35,1161.82 800.274,1161.82 800.274,1153.44 " />
<svg:polygon detid="369247497" count="1" value="105" id="3504105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  external  module  2  stereo Id 369247497 " fill="rgb(255,47,0)" points="781.35,1153.44 800.274,1153.44 800.274,1145.06 " />
<svg:polygon detid="369247753" count="1" value="105" id="3504106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  external  module  2  stereo Id 369247753 " fill="rgb(255,47,0)" points="781.35,1145.06 800.274,1145.06 800.274,1136.67 " />
<svg:polygon detid="369248009" count="1" value="105" id="3504107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  external  module  2  stereo Id 369248009 " fill="rgb(255,47,0)" points="781.35,1136.67 800.274,1136.67 800.274,1128.29 " />
<svg:polygon detid="369248265" count="1" value="105" id="3504108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  external  module  2  stereo Id 369248265 " fill="rgb(255,47,0)" points="781.35,1128.29 800.274,1128.29 800.274,1119.91 " />
<svg:polygon detid="369248521" count="1" value="105" id="3504109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  external  module  2  stereo Id 369248521 " fill="rgb(255,47,0)" points="781.35,1119.91 800.274,1119.91 800.274,1111.53 " />
<svg:polygon detid="369248777" count="1" value="105" id="3504110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  external  module  2  stereo Id 369248777 " fill="rgb(255,47,0)" points="781.35,1111.53 800.274,1111.53 800.274,1103.15 " />
<svg:polygon detid="369249033" count="1" value="105" id="3504111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  external  module  2  stereo Id 369249033 " fill="rgb(255,47,0)" points="781.35,1103.15 800.274,1103.15 800.274,1094.76 " />
<svg:polygon detid="369249289" count="1" value="105" id="3504112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  external  module  2  stereo Id 369249289 " fill="rgb(255,47,0)" points="781.35,1094.76 800.274,1094.76 800.274,1086.38 " />
<svg:polygon detid="369249545" count="1" value="105" id="3504113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  external  module  2  stereo Id 369249545 " fill="rgb(255,47,0)" points="781.35,1086.38 800.274,1086.38 800.274,1078 " />
<svg:polygon detid="369249801" count="1" value="105" id="3504114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  external  module  2  stereo Id 369249801 " fill="rgb(255,47,0)" points="781.35,1078 800.274,1078 800.274,1069.62 " />
<svg:polygon detid="369250057" count="1" value="105" id="3504115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  external  module  2  stereo Id 369250057 " fill="rgb(255,47,0)" points="781.35,1069.62 800.274,1069.62 800.274,1061.23 " />
<svg:polygon detid="369250313" count="1" value="105" id="3504116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  external  module  2  stereo Id 369250313 " fill="rgb(255,47,0)" points="781.35,1061.23 800.274,1061.23 800.274,1052.85 " />
<svg:polygon detid="369250569" count="1" value="105" id="3504117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  external  module  2  stereo Id 369250569 " fill="rgb(255,47,0)" points="781.35,1052.85 800.274,1052.85 800.274,1044.47 " />
<svg:polygon detid="369250825" count="1" value="105" id="3504118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  external  module  2  stereo Id 369250825 " fill="rgb(255,47,0)" points="781.35,1044.47 800.274,1044.47 800.274,1036.09 " />
<svg:polygon detid="369251081" count="1" value="105" id="3504119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  external  module  2  stereo Id 369251081 " fill="rgb(255,47,0)" points="781.35,1036.09 800.274,1036.09 800.274,1027.71 " />
<svg:polygon detid="369251337" count="1" value="105" id="3504120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  external  module  2  stereo Id 369251337 " fill="rgb(255,47,0)" points="781.35,1027.71 800.274,1027.71 800.274,1019.32 " />
<svg:polygon detid="369251593" count="1" value="105" id="3504121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  external  module  2  stereo Id 369251593 " fill="rgb(255,47,0)" points="781.35,1019.32 800.274,1019.32 800.274,1010.94 " />
<svg:polygon detid="369251849" count="1" value="105" id="3504122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  external  module  2  stereo Id 369251849 " fill="rgb(255,47,0)" points="781.35,1010.94 800.274,1010.94 800.274,1002.56 " />
<svg:polygon detid="369252105" count="1" value="105" id="3504123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  external  module  2  stereo Id 369252105 " fill="rgb(255,47,0)" points="781.35,1002.56 800.274,1002.56 800.274,994.177 " />
<svg:polygon detid="369252361" count="1" value="105" id="3504124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  external  module  2  stereo Id 369252361 " fill="rgb(255,47,0)" points="781.35,994.177 800.274,994.177 800.274,985.795 " />
<svg:polygon detid="369252617" count="1" value="105" id="3504125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  external  module  2  stereo Id 369252617 " fill="rgb(255,47,0)" points="781.35,985.795 800.274,985.795 800.274,977.413 " />
<svg:polygon detid="369252873" count="1" value="105" id="3504126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  external  module  2  stereo Id 369252873 " fill="rgb(255,47,0)" points="781.35,977.413 800.274,977.413 800.274,969.03 " />
<svg:polygon detid="369253129" count="1" value="105" id="3504127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  external  module  2  stereo Id 369253129 " fill="rgb(255,47,0)" points="781.35,969.03 800.274,969.03 800.274,960.648 " />
<svg:polygon detid="369253385" count="1" value="105" id="3504128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  external  module  2  stereo Id 369253385 " fill="rgb(255,47,0)" points="781.35,960.648 800.274,960.648 800.274,952.266 " />
<svg:polygon detid="369253641" count="1" value="105" id="3504129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  external  module  2  stereo Id 369253641 " fill="rgb(255,47,0)" points="781.35,952.266 800.274,952.266 800.274,943.884 " />
<svg:polygon detid="369253897" count="1" value="105" id="3504130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  external  module  2  stereo Id 369253897 " fill="rgb(255,47,0)" points="781.35,943.884 800.274,943.884 800.274,935.502 " />
<svg:polygon detid="369254153" count="1" value="105" id="3504131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  external  module  2  stereo Id 369254153 " fill="rgb(255,47,0)" points="781.35,935.502 800.274,935.502 800.274,927.12 " />
<svg:polygon detid="369254409" count="1" value="105" id="3504132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  external  module  2  stereo Id 369254409 " fill="rgb(255,47,0)" points="781.35,927.12 800.274,927.12 800.274,918.737 " />
<svg:polygon detid="369254665" count="1" value="105" id="3504133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  external  module  2  stereo Id 369254665 " fill="rgb(255,47,0)" points="781.35,918.737 800.274,918.737 800.274,910.355 " />
<svg:polygon detid="369254921" count="1" value="105" id="3504134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  external  module  2  stereo Id 369254921 " fill="rgb(255,47,0)" points="781.35,910.355 800.274,910.355 800.274,901.973 " />
<svg:polygon detid="369255177" count="1" value="105" id="3504135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 neg  external  module  2  stereo Id 369255177 " fill="rgb(255,47,0)" points="781.35,901.973 800.274,901.973 800.274,893.591 " />
<svg:polygon detid="369255433" count="1" value="105" id="3504136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 neg  external  module  2  stereo Id 369255433 " fill="rgb(255,47,0)" points="781.35,893.591 800.274,893.591 800.274,885.209 " />
<svg:polygon detid="369255689" count="1" value="105" id="3504137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 neg  external  module  2  stereo Id 369255689 " fill="rgb(255,47,0)" points="781.35,885.209 800.274,885.209 800.274,876.827 " />
<svg:polygon detid="369255945" count="1" value="105" id="3504138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 neg  external  module  2  stereo Id 369255945 " fill="rgb(255,47,0)" points="781.35,876.827 800.274,876.827 800.274,868.444 " />
<svg:polygon detid="369230094" count="1" value="105" id="3505001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  internal  module  3   Id 369230094 " fill="rgb(255,47,0)" points="821.564,1178.58 802.639,1178.58 802.639,1186.97 " />
<svg:polygon detid="369230350" count="1" value="105" id="3505002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  internal  module  3   Id 369230350 " fill="rgb(255,47,0)" points="821.564,1170.2 802.639,1170.2 802.639,1178.58 " />
<svg:polygon detid="369230606" count="1" value="105" id="3505003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  internal  module  3   Id 369230606 " fill="rgb(255,47,0)" points="821.564,1161.82 802.639,1161.82 802.639,1170.2 " />
<svg:polygon detid="369230862" count="1" value="105" id="3505005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  internal  module  3   Id 369230862 " fill="rgb(255,47,0)" points="821.564,1145.06 802.639,1145.06 802.639,1153.44 " />
<svg:polygon detid="369231118" count="1" value="105" id="3505006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  internal  module  3   Id 369231118 " fill="rgb(255,47,0)" points="821.564,1136.67 802.639,1136.67 802.639,1145.06 " />
<svg:polygon detid="369231374" count="1" value="105" id="3505007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  internal  module  3   Id 369231374 " fill="rgb(255,47,0)" points="821.564,1128.29 802.639,1128.29 802.639,1136.67 " />
<svg:polygon detid="369231630" count="1" value="105" id="3505008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  internal  module  3   Id 369231630 " fill="rgb(255,47,0)" points="821.564,1119.91 802.639,1119.91 802.639,1128.29 " />
<svg:polygon detid="369231886" count="1" value="105" id="3505009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  internal  module  3   Id 369231886 " fill="rgb(255,47,0)" points="821.564,1111.53 802.639,1111.53 802.639,1119.91 " />
<svg:polygon detid="369232142" count="1" value="105" id="3505010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  internal  module  3   Id 369232142 " fill="rgb(255,47,0)" points="821.564,1103.15 802.639,1103.15 802.639,1111.53 " />
<svg:polygon detid="369232398" count="1" value="105" id="3505011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  internal  module  3   Id 369232398 " fill="rgb(255,47,0)" points="821.564,1094.76 802.639,1094.76 802.639,1103.15 " />
<svg:polygon detid="369232654" count="1" value="105" id="3505012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  internal  module  3   Id 369232654 " fill="rgb(255,47,0)" points="821.564,1086.38 802.639,1086.38 802.639,1094.76 " />
<svg:polygon detid="369232910" count="1" value="105" id="3505013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  internal  module  3   Id 369232910 " fill="rgb(255,47,0)" points="821.564,1078 802.639,1078 802.639,1086.38 " />
<svg:polygon detid="369233166" count="1" value="105" id="3505015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  internal  module  3   Id 369233166 " fill="rgb(255,47,0)" points="821.564,1061.23 802.639,1061.23 802.639,1069.62 " />
<svg:polygon detid="369233422" count="1" value="105" id="3505016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  internal  module  3   Id 369233422 " fill="rgb(255,47,0)" points="821.564,1052.85 802.639,1052.85 802.639,1061.23 " />
<svg:polygon detid="369233678" count="1" value="105" id="3505017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  internal  module  3   Id 369233678 " fill="rgb(255,47,0)" points="821.564,1044.47 802.639,1044.47 802.639,1052.85 " />
<svg:polygon detid="369233934" count="1" value="105" id="3505018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  internal  module  3   Id 369233934 " fill="rgb(255,47,0)" points="821.564,1036.09 802.639,1036.09 802.639,1044.47 " />
<svg:polygon detid="369234190" count="1" value="105" id="3505019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  internal  module  3   Id 369234190 " fill="rgb(255,47,0)" points="821.564,1027.71 802.639,1027.71 802.639,1036.09 " />
<svg:polygon detid="369234446" count="1" value="105" id="3505020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  internal  module  3   Id 369234446 " fill="rgb(255,47,0)" points="821.564,1019.32 802.639,1019.32 802.639,1027.71 " />
<svg:polygon detid="369234702" count="1" value="105" id="3505021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  internal  module  3   Id 369234702 " fill="rgb(255,47,0)" points="821.564,1010.94 802.639,1010.94 802.639,1019.32 " />
<svg:polygon detid="369234958" count="1" value="105" id="3505022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  internal  module  3   Id 369234958 " fill="rgb(255,47,0)" points="821.564,1002.56 802.639,1002.56 802.639,1010.94 " />
<svg:polygon detid="369235214" count="1" value="105" id="3505024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  internal  module  3   Id 369235214 " fill="rgb(255,47,0)" points="821.564,985.795 802.639,985.795 802.639,994.177 " />
<svg:polygon detid="369235470" count="1" value="105" id="3505025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  internal  module  3   Id 369235470 " fill="rgb(255,47,0)" points="821.564,977.413 802.639,977.413 802.639,985.795 " />
<svg:polygon detid="369235726" count="1" value="105" id="3505026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  internal  module  3   Id 369235726 " fill="rgb(255,47,0)" points="821.564,969.03 802.639,969.03 802.639,977.413 " />
<svg:polygon detid="369235982" count="1" value="105" id="3505027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  internal  module  3   Id 369235982 " fill="rgb(255,47,0)" points="821.564,960.648 802.639,960.648 802.639,969.03 " />
<svg:polygon detid="369236238" count="1" value="105" id="3505028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  internal  module  3   Id 369236238 " fill="rgb(255,47,0)" points="821.564,952.266 802.639,952.266 802.639,960.648 " />
<svg:polygon detid="369236494" count="1" value="105" id="3505029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  internal  module  3   Id 369236494 " fill="rgb(255,47,0)" points="821.564,943.884 802.639,943.884 802.639,952.266 " />
<svg:polygon detid="369236750" count="1" value="105" id="3505030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  internal  module  3   Id 369236750 " fill="rgb(255,47,0)" points="821.564,935.502 802.639,935.502 802.639,943.884 " />
<svg:polygon detid="369237006" count="1" value="105" id="3505031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  internal  module  3   Id 369237006 " fill="rgb(255,47,0)" points="821.564,927.12 802.639,927.12 802.639,935.502 " />
<svg:polygon detid="369237262" count="1" value="105" id="3505032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  internal  module  3   Id 369237262 " fill="rgb(255,47,0)" points="821.564,918.737 802.639,918.737 802.639,927.12 " />
<svg:polygon detid="369237518" count="1" value="105" id="3505034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  internal  module  3   Id 369237518 " fill="rgb(255,47,0)" points="821.564,901.973 802.639,901.973 802.639,910.355 " />
<svg:polygon detid="369237774" count="1" value="105" id="3505035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  internal  module  3   Id 369237774 " fill="rgb(255,47,0)" points="821.564,893.591 802.639,893.591 802.639,901.973 " />
<svg:polygon detid="369238030" count="1" value="105" id="3505036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  internal  module  3   Id 369238030 " fill="rgb(255,47,0)" points="821.564,885.209 802.639,885.209 802.639,893.591 " />
<svg:polygon detid="369238286" count="1" value="105" id="3505037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  internal  module  3   Id 369238286 " fill="rgb(255,47,0)" points="821.564,876.827 802.639,876.827 802.639,885.209 " />
<svg:polygon detid="369238542" count="1" value="105" id="3505038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  internal  module  3   Id 369238542 " fill="rgb(255,47,0)" points="821.564,868.444 802.639,868.444 802.639,876.827 " />
<svg:polygon detid="369230093" count="1" value="105" id="3505101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  internal  module  3  stereo Id 369230093 " fill="rgb(255,47,0)" points="802.639,1186.97 821.564,1186.97 821.564,1178.58 " />
<svg:polygon detid="369230349" count="1" value="105" id="3505102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  internal  module  3  stereo Id 369230349 " fill="rgb(255,47,0)" points="802.639,1178.58 821.564,1178.58 821.564,1170.2 " />
<svg:polygon detid="369230605" count="1" value="105" id="3505103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  internal  module  3  stereo Id 369230605 " fill="rgb(255,47,0)" points="802.639,1170.2 821.564,1170.2 821.564,1161.82 " />
<svg:polygon detid="369230861" count="1" value="105" id="3505105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  internal  module  3  stereo Id 369230861 " fill="rgb(255,47,0)" points="802.639,1153.44 821.564,1153.44 821.564,1145.06 " />
<svg:polygon detid="369231117" count="1" value="105" id="3505106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  internal  module  3  stereo Id 369231117 " fill="rgb(255,47,0)" points="802.639,1145.06 821.564,1145.06 821.564,1136.67 " />
<svg:polygon detid="369231373" count="1" value="105" id="3505107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  internal  module  3  stereo Id 369231373 " fill="rgb(255,47,0)" points="802.639,1136.67 821.564,1136.67 821.564,1128.29 " />
<svg:polygon detid="369231629" count="1" value="105" id="3505108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  internal  module  3  stereo Id 369231629 " fill="rgb(255,47,0)" points="802.639,1128.29 821.564,1128.29 821.564,1119.91 " />
<svg:polygon detid="369231885" count="1" value="105" id="3505109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  internal  module  3  stereo Id 369231885 " fill="rgb(255,47,0)" points="802.639,1119.91 821.564,1119.91 821.564,1111.53 " />
<svg:polygon detid="369232141" count="1" value="105" id="3505110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  internal  module  3  stereo Id 369232141 " fill="rgb(255,47,0)" points="802.639,1111.53 821.564,1111.53 821.564,1103.15 " />
<svg:polygon detid="369232397" count="1" value="105" id="3505111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  internal  module  3  stereo Id 369232397 " fill="rgb(255,47,0)" points="802.639,1103.15 821.564,1103.15 821.564,1094.76 " />
<svg:polygon detid="369232653" count="1" value="105" id="3505112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  internal  module  3  stereo Id 369232653 " fill="rgb(255,47,0)" points="802.639,1094.76 821.564,1094.76 821.564,1086.38 " />
<svg:polygon detid="369232909" count="1" value="105" id="3505113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  internal  module  3  stereo Id 369232909 " fill="rgb(255,47,0)" points="802.639,1086.38 821.564,1086.38 821.564,1078 " />
<svg:polygon detid="369233165" count="1" value="105" id="3505115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  internal  module  3  stereo Id 369233165 " fill="rgb(255,47,0)" points="802.639,1069.62 821.564,1069.62 821.564,1061.23 " />
<svg:polygon detid="369233421" count="1" value="105" id="3505116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  internal  module  3  stereo Id 369233421 " fill="rgb(255,47,0)" points="802.639,1061.23 821.564,1061.23 821.564,1052.85 " />
<svg:polygon detid="369233677" count="1" value="105" id="3505117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  internal  module  3  stereo Id 369233677 " fill="rgb(255,47,0)" points="802.639,1052.85 821.564,1052.85 821.564,1044.47 " />
<svg:polygon detid="369233933" count="1" value="105" id="3505118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  internal  module  3  stereo Id 369233933 " fill="rgb(255,47,0)" points="802.639,1044.47 821.564,1044.47 821.564,1036.09 " />
<svg:polygon detid="369234189" count="1" value="105" id="3505119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  internal  module  3  stereo Id 369234189 " fill="rgb(255,47,0)" points="802.639,1036.09 821.564,1036.09 821.564,1027.71 " />
<svg:polygon detid="369234445" count="1" value="105" id="3505120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  internal  module  3  stereo Id 369234445 " fill="rgb(255,47,0)" points="802.639,1027.71 821.564,1027.71 821.564,1019.32 " />
<svg:polygon detid="369234701" count="1" value="105" id="3505121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  internal  module  3  stereo Id 369234701 " fill="rgb(255,47,0)" points="802.639,1019.32 821.564,1019.32 821.564,1010.94 " />
<svg:polygon detid="369234957" count="1" value="105" id="3505122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  internal  module  3  stereo Id 369234957 " fill="rgb(255,47,0)" points="802.639,1010.94 821.564,1010.94 821.564,1002.56 " />
<svg:polygon detid="369235213" count="1" value="105" id="3505124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  internal  module  3  stereo Id 369235213 " fill="rgb(255,47,0)" points="802.639,994.177 821.564,994.177 821.564,985.795 " />
<svg:polygon detid="369235469" count="1" value="105" id="3505125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  internal  module  3  stereo Id 369235469 " fill="rgb(255,47,0)" points="802.639,985.795 821.564,985.795 821.564,977.413 " />
<svg:polygon detid="369235725" count="1" value="105" id="3505126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  internal  module  3  stereo Id 369235725 " fill="rgb(255,47,0)" points="802.639,977.413 821.564,977.413 821.564,969.03 " />
<svg:polygon detid="369235981" count="1" value="105" id="3505127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  internal  module  3  stereo Id 369235981 " fill="rgb(255,47,0)" points="802.639,969.03 821.564,969.03 821.564,960.648 " />
<svg:polygon detid="369236237" count="1" value="105" id="3505128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  internal  module  3  stereo Id 369236237 " fill="rgb(255,47,0)" points="802.639,960.648 821.564,960.648 821.564,952.266 " />
<svg:polygon detid="369236493" count="1" value="105" id="3505129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  internal  module  3  stereo Id 369236493 " fill="rgb(255,47,0)" points="802.639,952.266 821.564,952.266 821.564,943.884 " />
<svg:polygon detid="369236749" count="1" value="105" id="3505130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  internal  module  3  stereo Id 369236749 " fill="rgb(255,47,0)" points="802.639,943.884 821.564,943.884 821.564,935.502 " />
<svg:polygon detid="369237005" count="1" value="105" id="3505131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  internal  module  3  stereo Id 369237005 " fill="rgb(255,47,0)" points="802.639,935.502 821.564,935.502 821.564,927.12 " />
<svg:polygon detid="369237261" count="1" value="105" id="3505132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  internal  module  3  stereo Id 369237261 " fill="rgb(255,47,0)" points="802.639,927.12 821.564,927.12 821.564,918.737 " />
<svg:polygon detid="369237517" count="1" value="105" id="3505134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  internal  module  3  stereo Id 369237517 " fill="rgb(255,47,0)" points="802.639,910.355 821.564,910.355 821.564,901.973 " />
<svg:polygon detid="369237773" count="1" value="105" id="3505135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  internal  module  3  stereo Id 369237773 " fill="rgb(255,47,0)" points="802.639,901.973 821.564,901.973 821.564,893.591 " />
<svg:polygon detid="369238029" count="1" value="105" id="3505136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  internal  module  3  stereo Id 369238029 " fill="rgb(255,47,0)" points="802.639,893.591 821.564,893.591 821.564,885.209 " />
<svg:polygon detid="369238285" count="1" value="105" id="3505137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  internal  module  3  stereo Id 369238285 " fill="rgb(255,47,0)" points="802.639,885.209 821.564,885.209 821.564,876.827 " />
<svg:polygon detid="369238541" count="1" value="105" id="3505138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  internal  module  3  stereo Id 369238541 " fill="rgb(255,47,0)" points="802.639,876.827 821.564,876.827 821.564,868.444 " />
<svg:polygon detid="369246478" count="1" value="105" id="3506001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  external  module  3   Id 369246478 " fill="rgb(255,47,0)" points="842.853,1178.58 823.929,1178.58 823.929,1186.97 " />
<svg:polygon detid="369246734" count="1" value="105" id="3506002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  external  module  3   Id 369246734 " fill="rgb(255,47,0)" points="842.853,1170.2 823.929,1170.2 823.929,1178.58 " />
<svg:polygon detid="369246990" count="1" value="105" id="3506003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  external  module  3   Id 369246990 " fill="rgb(255,47,0)" points="842.853,1161.82 823.929,1161.82 823.929,1170.2 " />
<svg:polygon detid="369247246" count="1" value="105" id="3506004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  external  module  3   Id 369247246 " fill="rgb(255,47,0)" points="842.853,1153.44 823.929,1153.44 823.929,1161.82 " />
<svg:polygon detid="369247502" count="1" value="105" id="3506005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  external  module  3   Id 369247502 " fill="rgb(255,47,0)" points="842.853,1145.06 823.929,1145.06 823.929,1153.44 " />
<svg:polygon detid="369247758" count="1" value="105" id="3506006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  external  module  3   Id 369247758 " fill="rgb(255,47,0)" points="842.853,1136.67 823.929,1136.67 823.929,1145.06 " />
<svg:polygon detid="369248014" count="1" value="105" id="3506007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  external  module  3   Id 369248014 " fill="rgb(255,47,0)" points="842.853,1128.29 823.929,1128.29 823.929,1136.67 " />
<svg:polygon detid="369248270" count="1" value="105" id="3506008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  external  module  3   Id 369248270 " fill="rgb(255,47,0)" points="842.853,1119.91 823.929,1119.91 823.929,1128.29 " />
<svg:polygon detid="369248526" count="1" value="105" id="3506009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  external  module  3   Id 369248526 " fill="rgb(255,47,0)" points="842.853,1111.53 823.929,1111.53 823.929,1119.91 " />
<svg:polygon detid="369248782" count="1" value="105" id="3506010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  external  module  3   Id 369248782 " fill="rgb(255,47,0)" points="842.853,1103.15 823.929,1103.15 823.929,1111.53 " />
<svg:polygon detid="369249038" count="1" value="105" id="3506011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  external  module  3   Id 369249038 " fill="rgb(255,47,0)" points="842.853,1094.76 823.929,1094.76 823.929,1103.15 " />
<svg:polygon detid="369249294" count="1" value="105" id="3506012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  external  module  3   Id 369249294 " fill="rgb(255,47,0)" points="842.853,1086.38 823.929,1086.38 823.929,1094.76 " />
<svg:polygon detid="369249550" count="1" value="105" id="3506013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  external  module  3   Id 369249550 " fill="rgb(255,47,0)" points="842.853,1078 823.929,1078 823.929,1086.38 " />
<svg:polygon detid="369249806" count="1" value="105" id="3506014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  external  module  3   Id 369249806 " fill="rgb(255,47,0)" points="842.853,1069.62 823.929,1069.62 823.929,1078 " />
<svg:polygon detid="369250062" count="1" value="105" id="3506015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  external  module  3   Id 369250062 " fill="rgb(255,47,0)" points="842.853,1061.23 823.929,1061.23 823.929,1069.62 " />
<svg:polygon detid="369250318" count="1" value="105" id="3506016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  external  module  3   Id 369250318 " fill="rgb(255,47,0)" points="842.853,1052.85 823.929,1052.85 823.929,1061.23 " />
<svg:polygon detid="369250574" count="1" value="105" id="3506017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  external  module  3   Id 369250574 " fill="rgb(255,47,0)" points="842.853,1044.47 823.929,1044.47 823.929,1052.85 " />
<svg:polygon detid="369250830" count="1" value="105" id="3506018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  external  module  3   Id 369250830 " fill="rgb(255,47,0)" points="842.853,1036.09 823.929,1036.09 823.929,1044.47 " />
<svg:polygon detid="369251086" count="1" value="105" id="3506019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  external  module  3   Id 369251086 " fill="rgb(255,47,0)" points="842.853,1027.71 823.929,1027.71 823.929,1036.09 " />
<svg:polygon detid="369251342" count="1" value="105" id="3506020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  external  module  3   Id 369251342 " fill="rgb(255,47,0)" points="842.853,1019.32 823.929,1019.32 823.929,1027.71 " />
<svg:polygon detid="369251598" count="1" value="105" id="3506021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  external  module  3   Id 369251598 " fill="rgb(255,47,0)" points="842.853,1010.94 823.929,1010.94 823.929,1019.32 " />
<svg:polygon detid="369251854" count="1" value="105" id="3506022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  external  module  3   Id 369251854 " fill="rgb(255,47,0)" points="842.853,1002.56 823.929,1002.56 823.929,1010.94 " />
<svg:polygon detid="369252110" count="1" value="105" id="3506023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  external  module  3   Id 369252110 " fill="rgb(255,47,0)" points="842.853,994.177 823.929,994.177 823.929,1002.56 " />
<svg:polygon detid="369252366" count="1" value="105" id="3506024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  external  module  3   Id 369252366 " fill="rgb(255,47,0)" points="842.853,985.795 823.929,985.795 823.929,994.177 " />
<svg:polygon detid="369252622" count="1" value="105" id="3506025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  external  module  3   Id 369252622 " fill="rgb(255,47,0)" points="842.853,977.413 823.929,977.413 823.929,985.795 " />
<svg:polygon detid="369252878" count="1" value="105" id="3506026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  external  module  3   Id 369252878 " fill="rgb(255,47,0)" points="842.853,969.03 823.929,969.03 823.929,977.413 " />
<svg:polygon detid="369253134" count="1" value="105" id="3506027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  external  module  3   Id 369253134 " fill="rgb(255,47,0)" points="842.853,960.648 823.929,960.648 823.929,969.03 " />
<svg:polygon detid="369253390" count="1" value="105" id="3506028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  external  module  3   Id 369253390 " fill="rgb(255,47,0)" points="842.853,952.266 823.929,952.266 823.929,960.648 " />
<svg:polygon detid="369253646" count="1" value="105" id="3506029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  external  module  3   Id 369253646 " fill="rgb(255,47,0)" points="842.853,943.884 823.929,943.884 823.929,952.266 " />
<svg:polygon detid="369253902" count="1" value="105" id="3506030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  external  module  3   Id 369253902 " fill="rgb(255,47,0)" points="842.853,935.502 823.929,935.502 823.929,943.884 " />
<svg:polygon detid="369254158" count="1" value="105" id="3506031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  external  module  3   Id 369254158 " fill="rgb(255,47,0)" points="842.853,927.12 823.929,927.12 823.929,935.502 " />
<svg:polygon detid="369254414" count="1" value="105" id="3506032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  external  module  3   Id 369254414 " fill="rgb(255,47,0)" points="842.853,918.737 823.929,918.737 823.929,927.12 " />
<svg:polygon detid="369254670" count="1" value="105" id="3506033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  external  module  3   Id 369254670 " fill="rgb(255,47,0)" points="842.853,910.355 823.929,910.355 823.929,918.737 " />
<svg:polygon detid="369254926" count="1" value="105" id="3506034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  external  module  3   Id 369254926 " fill="rgb(255,47,0)" points="842.853,901.973 823.929,901.973 823.929,910.355 " />
<svg:polygon detid="369255182" count="1" value="105" id="3506035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 neg  external  module  3   Id 369255182 " fill="rgb(255,47,0)" points="842.853,893.591 823.929,893.591 823.929,901.973 " />
<svg:polygon detid="369255438" count="1" value="105" id="3506036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 neg  external  module  3   Id 369255438 " fill="rgb(255,47,0)" points="842.853,885.209 823.929,885.209 823.929,893.591 " />
<svg:polygon detid="369255694" count="1" value="105" id="3506037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 neg  external  module  3   Id 369255694 " fill="rgb(255,47,0)" points="842.853,876.827 823.929,876.827 823.929,885.209 " />
<svg:polygon detid="369255950" count="1" value="105" id="3506038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 neg  external  module  3   Id 369255950 " fill="rgb(255,47,0)" points="842.853,868.444 823.929,868.444 823.929,876.827 " />
<svg:polygon detid="369246477" count="1" value="105" id="3506101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 neg  external  module  3  stereo Id 369246477 " fill="rgb(255,47,0)" points="823.929,1186.97 842.853,1186.97 842.853,1178.58 " />
<svg:polygon detid="369246733" count="1" value="105" id="3506102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 neg  external  module  3  stereo Id 369246733 " fill="rgb(255,47,0)" points="823.929,1178.58 842.853,1178.58 842.853,1170.2 " />
<svg:polygon detid="369246989" count="1" value="105" id="3506103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 neg  external  module  3  stereo Id 369246989 " fill="rgb(255,47,0)" points="823.929,1170.2 842.853,1170.2 842.853,1161.82 " />
<svg:polygon detid="369247245" count="1" value="105" id="3506104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 neg  external  module  3  stereo Id 369247245 " fill="rgb(255,47,0)" points="823.929,1161.82 842.853,1161.82 842.853,1153.44 " />
<svg:polygon detid="369247501" count="1" value="105" id="3506105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 neg  external  module  3  stereo Id 369247501 " fill="rgb(255,47,0)" points="823.929,1153.44 842.853,1153.44 842.853,1145.06 " />
<svg:polygon detid="369247757" count="1" value="105" id="3506106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 neg  external  module  3  stereo Id 369247757 " fill="rgb(255,47,0)" points="823.929,1145.06 842.853,1145.06 842.853,1136.67 " />
<svg:polygon detid="369248013" count="1" value="105" id="3506107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 neg  external  module  3  stereo Id 369248013 " fill="rgb(255,47,0)" points="823.929,1136.67 842.853,1136.67 842.853,1128.29 " />
<svg:polygon detid="369248269" count="1" value="105" id="3506108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 neg  external  module  3  stereo Id 369248269 " fill="rgb(255,47,0)" points="823.929,1128.29 842.853,1128.29 842.853,1119.91 " />
<svg:polygon detid="369248525" count="1" value="105" id="3506109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 neg  external  module  3  stereo Id 369248525 " fill="rgb(255,47,0)" points="823.929,1119.91 842.853,1119.91 842.853,1111.53 " />
<svg:polygon detid="369248781" count="1" value="105" id="3506110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 neg  external  module  3  stereo Id 369248781 " fill="rgb(255,47,0)" points="823.929,1111.53 842.853,1111.53 842.853,1103.15 " />
<svg:polygon detid="369249037" count="1" value="105" id="3506111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 neg  external  module  3  stereo Id 369249037 " fill="rgb(255,47,0)" points="823.929,1103.15 842.853,1103.15 842.853,1094.76 " />
<svg:polygon detid="369249293" count="1" value="105" id="3506112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 neg  external  module  3  stereo Id 369249293 " fill="rgb(255,47,0)" points="823.929,1094.76 842.853,1094.76 842.853,1086.38 " />
<svg:polygon detid="369249549" count="1" value="105" id="3506113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 neg  external  module  3  stereo Id 369249549 " fill="rgb(255,47,0)" points="823.929,1086.38 842.853,1086.38 842.853,1078 " />
<svg:polygon detid="369249805" count="1" value="105" id="3506114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 neg  external  module  3  stereo Id 369249805 " fill="rgb(255,47,0)" points="823.929,1078 842.853,1078 842.853,1069.62 " />
<svg:polygon detid="369250061" count="1" value="105" id="3506115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 neg  external  module  3  stereo Id 369250061 " fill="rgb(255,47,0)" points="823.929,1069.62 842.853,1069.62 842.853,1061.23 " />
<svg:polygon detid="369250317" count="1" value="105" id="3506116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 neg  external  module  3  stereo Id 369250317 " fill="rgb(255,47,0)" points="823.929,1061.23 842.853,1061.23 842.853,1052.85 " />
<svg:polygon detid="369250573" count="1" value="105" id="3506117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 neg  external  module  3  stereo Id 369250573 " fill="rgb(255,47,0)" points="823.929,1052.85 842.853,1052.85 842.853,1044.47 " />
<svg:polygon detid="369250829" count="1" value="105" id="3506118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 neg  external  module  3  stereo Id 369250829 " fill="rgb(255,47,0)" points="823.929,1044.47 842.853,1044.47 842.853,1036.09 " />
<svg:polygon detid="369251085" count="1" value="105" id="3506119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 neg  external  module  3  stereo Id 369251085 " fill="rgb(255,47,0)" points="823.929,1036.09 842.853,1036.09 842.853,1027.71 " />
<svg:polygon detid="369251341" count="1" value="105" id="3506120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 neg  external  module  3  stereo Id 369251341 " fill="rgb(255,47,0)" points="823.929,1027.71 842.853,1027.71 842.853,1019.32 " />
<svg:polygon detid="369251597" count="1" value="105" id="3506121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 neg  external  module  3  stereo Id 369251597 " fill="rgb(255,47,0)" points="823.929,1019.32 842.853,1019.32 842.853,1010.94 " />
<svg:polygon detid="369251853" count="1" value="105" id="3506122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 neg  external  module  3  stereo Id 369251853 " fill="rgb(255,47,0)" points="823.929,1010.94 842.853,1010.94 842.853,1002.56 " />
<svg:polygon detid="369252109" count="1" value="105" id="3506123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 neg  external  module  3  stereo Id 369252109 " fill="rgb(255,47,0)" points="823.929,1002.56 842.853,1002.56 842.853,994.177 " />
<svg:polygon detid="369252365" count="1" value="105" id="3506124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 neg  external  module  3  stereo Id 369252365 " fill="rgb(255,47,0)" points="823.929,994.177 842.853,994.177 842.853,985.795 " />
<svg:polygon detid="369252621" count="1" value="105" id="3506125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 neg  external  module  3  stereo Id 369252621 " fill="rgb(255,47,0)" points="823.929,985.795 842.853,985.795 842.853,977.413 " />
<svg:polygon detid="369252877" count="1" value="105" id="3506126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 neg  external  module  3  stereo Id 369252877 " fill="rgb(255,47,0)" points="823.929,977.413 842.853,977.413 842.853,969.03 " />
<svg:polygon detid="369253133" count="1" value="105" id="3506127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 neg  external  module  3  stereo Id 369253133 " fill="rgb(255,47,0)" points="823.929,969.03 842.853,969.03 842.853,960.648 " />
<svg:polygon detid="369253389" count="1" value="105" id="3506128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 neg  external  module  3  stereo Id 369253389 " fill="rgb(255,47,0)" points="823.929,960.648 842.853,960.648 842.853,952.266 " />
<svg:polygon detid="369253645" count="1" value="105" id="3506129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 neg  external  module  3  stereo Id 369253645 " fill="rgb(255,47,0)" points="823.929,952.266 842.853,952.266 842.853,943.884 " />
<svg:polygon detid="369253901" count="1" value="105" id="3506130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 neg  external  module  3  stereo Id 369253901 " fill="rgb(255,47,0)" points="823.929,943.884 842.853,943.884 842.853,935.502 " />
<svg:polygon detid="369254157" count="1" value="105" id="3506131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 neg  external  module  3  stereo Id 369254157 " fill="rgb(255,47,0)" points="823.929,935.502 842.853,935.502 842.853,927.12 " />
<svg:polygon detid="369254413" count="1" value="105" id="3506132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 neg  external  module  3  stereo Id 369254413 " fill="rgb(255,47,0)" points="823.929,927.12 842.853,927.12 842.853,918.737 " />
<svg:polygon detid="369254669" count="1" value="105" id="3506133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 neg  external  module  3  stereo Id 369254669 " fill="rgb(255,47,0)" points="823.929,918.737 842.853,918.737 842.853,910.355 " />
<svg:polygon detid="369254925" count="1" value="105" id="3506134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 neg  external  module  3  stereo Id 369254925 " fill="rgb(255,47,0)" points="823.929,910.355 842.853,910.355 842.853,901.973 " />
<svg:polygon detid="369255181" count="1" value="105" id="3506135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 neg  external  module  3  stereo Id 369255181 " fill="rgb(255,47,0)" points="823.929,901.973 842.853,901.973 842.853,893.591 " />
<svg:polygon detid="369255437" count="1" value="105" id="3506136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 neg  external  module  3  stereo Id 369255437 " fill="rgb(255,47,0)" points="823.929,893.591 842.853,893.591 842.853,885.209 " />
<svg:polygon detid="369255693" count="1" value="105" id="3506137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 neg  external  module  3  stereo Id 369255693 " fill="rgb(255,47,0)" points="823.929,885.209 842.853,885.209 842.853,876.827 " />
<svg:polygon detid="369255949" count="1" value="105" id="3506138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 neg  external  module  3  stereo Id 369255949 " fill="rgb(255,47,0)" points="823.929,876.827 842.853,876.827 842.853,868.444 " />
<svg:polygon detid="369262854" count="1" value="105" id="3507001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  internal  module  1   Id 369262854 " fill="rgb(255,47,0)" points="864.143,1178.58 845.219,1178.58 845.219,1186.97 " />
<svg:polygon detid="369263110" count="1" value="105" id="3507002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  internal  module  1   Id 369263110 " fill="rgb(255,47,0)" points="864.143,1170.2 845.219,1170.2 845.219,1178.58 " />
<svg:polygon detid="369263366" count="1" value="105" id="3507003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  internal  module  1   Id 369263366 " fill="rgb(255,47,0)" points="864.143,1161.82 845.219,1161.82 845.219,1170.2 " />
<svg:polygon detid="369263622" count="1" value="105" id="3507005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  internal  module  1   Id 369263622 " fill="rgb(255,47,0)" points="864.143,1145.06 845.219,1145.06 845.219,1153.44 " />
<svg:polygon detid="369263878" count="1" value="105" id="3507006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  internal  module  1   Id 369263878 " fill="rgb(255,47,0)" points="864.143,1136.67 845.219,1136.67 845.219,1145.06 " />
<svg:polygon detid="369264134" count="1" value="105" id="3507007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  internal  module  1   Id 369264134 " fill="rgb(255,47,0)" points="864.143,1128.29 845.219,1128.29 845.219,1136.67 " />
<svg:polygon detid="369264390" count="1" value="105" id="3507008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  internal  module  1   Id 369264390 " fill="rgb(255,47,0)" points="864.143,1119.91 845.219,1119.91 845.219,1128.29 " />
<svg:polygon detid="369264646" count="1" value="105" id="3507009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  internal  module  1   Id 369264646 " fill="rgb(255,47,0)" points="864.143,1111.53 845.219,1111.53 845.219,1119.91 " />
<svg:polygon detid="369264902" count="1" value="105" id="3507010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  internal  module  1   Id 369264902 " fill="rgb(255,47,0)" points="864.143,1103.15 845.219,1103.15 845.219,1111.53 " />
<svg:polygon detid="369265158" count="1" value="105" id="3507011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  internal  module  1   Id 369265158 " fill="rgb(255,47,0)" points="864.143,1094.76 845.219,1094.76 845.219,1103.15 " />
<svg:polygon detid="369265414" count="1" value="105" id="3507012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  internal  module  1   Id 369265414 " fill="rgb(255,47,0)" points="864.143,1086.38 845.219,1086.38 845.219,1094.76 " />
<svg:polygon detid="369265670" count="1" value="105" id="3507013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  internal  module  1   Id 369265670 " fill="rgb(255,47,0)" points="864.143,1078 845.219,1078 845.219,1086.38 " />
<svg:polygon detid="369265926" count="1" value="105" id="3507015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  internal  module  1   Id 369265926 " fill="rgb(255,47,0)" points="864.143,1061.23 845.219,1061.23 845.219,1069.62 " />
<svg:polygon detid="369266182" count="1" value="105" id="3507016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  internal  module  1   Id 369266182 " fill="rgb(255,47,0)" points="864.143,1052.85 845.219,1052.85 845.219,1061.23 " />
<svg:polygon detid="369266438" count="1" value="105" id="3507017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  internal  module  1   Id 369266438 " fill="rgb(255,47,0)" points="864.143,1044.47 845.219,1044.47 845.219,1052.85 " />
<svg:polygon detid="369266694" count="1" value="105" id="3507018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  internal  module  1   Id 369266694 " fill="rgb(255,47,0)" points="864.143,1036.09 845.219,1036.09 845.219,1044.47 " />
<svg:polygon detid="369266950" count="1" value="105" id="3507019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  internal  module  1   Id 369266950 " fill="rgb(255,47,0)" points="864.143,1027.71 845.219,1027.71 845.219,1036.09 " />
<svg:polygon detid="369267206" count="1" value="105" id="3507020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  internal  module  1   Id 369267206 " fill="rgb(255,47,0)" points="864.143,1019.32 845.219,1019.32 845.219,1027.71 " />
<svg:polygon detid="369267462" count="1" value="105" id="3507021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  internal  module  1   Id 369267462 " fill="rgb(255,47,0)" points="864.143,1010.94 845.219,1010.94 845.219,1019.32 " />
<svg:polygon detid="369267718" count="1" value="105" id="3507022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  internal  module  1   Id 369267718 " fill="rgb(255,47,0)" points="864.143,1002.56 845.219,1002.56 845.219,1010.94 " />
<svg:polygon detid="369267974" count="1" value="105" id="3507024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  internal  module  1   Id 369267974 " fill="rgb(255,47,0)" points="864.143,985.795 845.219,985.795 845.219,994.177 " />
<svg:polygon detid="369268230" count="1" value="105" id="3507025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  internal  module  1   Id 369268230 " fill="rgb(255,47,0)" points="864.143,977.413 845.219,977.413 845.219,985.795 " />
<svg:polygon detid="369268486" count="1" value="105" id="3507026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  internal  module  1   Id 369268486 " fill="rgb(255,47,0)" points="864.143,969.03 845.219,969.03 845.219,977.413 " />
<svg:polygon detid="369268742" count="1" value="105" id="3507027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  internal  module  1   Id 369268742 " fill="rgb(255,47,0)" points="864.143,960.648 845.219,960.648 845.219,969.03 " />
<svg:polygon detid="369268998" count="1" value="105" id="3507028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  internal  module  1   Id 369268998 " fill="rgb(255,47,0)" points="864.143,952.266 845.219,952.266 845.219,960.648 " />
<svg:polygon detid="369269254" count="1" value="105" id="3507029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  internal  module  1   Id 369269254 " fill="rgb(255,47,0)" points="864.143,943.884 845.219,943.884 845.219,952.266 " />
<svg:polygon detid="369269510" count="1" value="105" id="3507030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  internal  module  1   Id 369269510 " fill="rgb(255,47,0)" points="864.143,935.502 845.219,935.502 845.219,943.884 " />
<svg:polygon detid="369269766" count="1" value="105" id="3507031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  internal  module  1   Id 369269766 " fill="rgb(255,47,0)" points="864.143,927.12 845.219,927.12 845.219,935.502 " />
<svg:polygon detid="369270022" count="1" value="105" id="3507032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  internal  module  1   Id 369270022 " fill="rgb(255,47,0)" points="864.143,918.737 845.219,918.737 845.219,927.12 " />
<svg:polygon detid="369270278" count="1" value="105" id="3507034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  internal  module  1   Id 369270278 " fill="rgb(255,47,0)" points="864.143,901.973 845.219,901.973 845.219,910.355 " />
<svg:polygon detid="369270534" count="1" value="105" id="3507035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  internal  module  1   Id 369270534 " fill="rgb(255,47,0)" points="864.143,893.591 845.219,893.591 845.219,901.973 " />
<svg:polygon detid="369270790" count="1" value="105" id="3507036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  internal  module  1   Id 369270790 " fill="rgb(255,47,0)" points="864.143,885.209 845.219,885.209 845.219,893.591 " />
<svg:polygon detid="369271046" count="1" value="105" id="3507037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  internal  module  1   Id 369271046 " fill="rgb(255,47,0)" points="864.143,876.827 845.219,876.827 845.219,885.209 " />
<svg:polygon detid="369271302" count="1" value="105" id="3507038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  internal  module  1   Id 369271302 " fill="rgb(255,47,0)" points="864.143,868.444 845.219,868.444 845.219,876.827 " />
<svg:polygon detid="369262853" count="1" value="105" id="3507101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  internal  module  1  stereo Id 369262853 " fill="rgb(255,47,0)" points="845.219,1186.97 864.143,1186.97 864.143,1178.58 " />
<svg:polygon detid="369263109" count="1" value="105" id="3507102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  internal  module  1  stereo Id 369263109 " fill="rgb(255,47,0)" points="845.219,1178.58 864.143,1178.58 864.143,1170.2 " />
<svg:polygon detid="369263365" count="1" value="105" id="3507103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  internal  module  1  stereo Id 369263365 " fill="rgb(255,47,0)" points="845.219,1170.2 864.143,1170.2 864.143,1161.82 " />
<svg:polygon detid="369263621" count="1" value="105" id="3507105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  internal  module  1  stereo Id 369263621 " fill="rgb(255,47,0)" points="845.219,1153.44 864.143,1153.44 864.143,1145.06 " />
<svg:polygon detid="369263877" count="1" value="105" id="3507106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  internal  module  1  stereo Id 369263877 " fill="rgb(255,47,0)" points="845.219,1145.06 864.143,1145.06 864.143,1136.67 " />
<svg:polygon detid="369264133" count="1" value="105" id="3507107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  internal  module  1  stereo Id 369264133 " fill="rgb(255,47,0)" points="845.219,1136.67 864.143,1136.67 864.143,1128.29 " />
<svg:polygon detid="369264389" count="1" value="105" id="3507108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  internal  module  1  stereo Id 369264389 " fill="rgb(255,47,0)" points="845.219,1128.29 864.143,1128.29 864.143,1119.91 " />
<svg:polygon detid="369264645" count="1" value="105" id="3507109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  internal  module  1  stereo Id 369264645 " fill="rgb(255,47,0)" points="845.219,1119.91 864.143,1119.91 864.143,1111.53 " />
<svg:polygon detid="369264901" count="1" value="105" id="3507110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  internal  module  1  stereo Id 369264901 " fill="rgb(255,47,0)" points="845.219,1111.53 864.143,1111.53 864.143,1103.15 " />
<svg:polygon detid="369265157" count="1" value="105" id="3507111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  internal  module  1  stereo Id 369265157 " fill="rgb(255,47,0)" points="845.219,1103.15 864.143,1103.15 864.143,1094.76 " />
<svg:polygon detid="369265413" count="1" value="105" id="3507112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  internal  module  1  stereo Id 369265413 " fill="rgb(255,47,0)" points="845.219,1094.76 864.143,1094.76 864.143,1086.38 " />
<svg:polygon detid="369265669" count="1" value="105" id="3507113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  internal  module  1  stereo Id 369265669 " fill="rgb(255,47,0)" points="845.219,1086.38 864.143,1086.38 864.143,1078 " />
<svg:polygon detid="369265925" count="1" value="105" id="3507115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  internal  module  1  stereo Id 369265925 " fill="rgb(255,47,0)" points="845.219,1069.62 864.143,1069.62 864.143,1061.23 " />
<svg:polygon detid="369266181" count="1" value="105" id="3507116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  internal  module  1  stereo Id 369266181 " fill="rgb(255,47,0)" points="845.219,1061.23 864.143,1061.23 864.143,1052.85 " />
<svg:polygon detid="369266437" count="1" value="105" id="3507117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  internal  module  1  stereo Id 369266437 " fill="rgb(255,47,0)" points="845.219,1052.85 864.143,1052.85 864.143,1044.47 " />
<svg:polygon detid="369266693" count="1" value="105" id="3507118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  internal  module  1  stereo Id 369266693 " fill="rgb(255,47,0)" points="845.219,1044.47 864.143,1044.47 864.143,1036.09 " />
<svg:polygon detid="369266949" count="1" value="105" id="3507119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  internal  module  1  stereo Id 369266949 " fill="rgb(255,47,0)" points="845.219,1036.09 864.143,1036.09 864.143,1027.71 " />
<svg:polygon detid="369267205" count="1" value="105" id="3507120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  internal  module  1  stereo Id 369267205 " fill="rgb(255,47,0)" points="845.219,1027.71 864.143,1027.71 864.143,1019.32 " />
<svg:polygon detid="369267461" count="1" value="105" id="3507121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  internal  module  1  stereo Id 369267461 " fill="rgb(255,47,0)" points="845.219,1019.32 864.143,1019.32 864.143,1010.94 " />
<svg:polygon detid="369267717" count="1" value="105" id="3507122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  internal  module  1  stereo Id 369267717 " fill="rgb(255,47,0)" points="845.219,1010.94 864.143,1010.94 864.143,1002.56 " />
<svg:polygon detid="369267973" count="1" value="105" id="3507124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  internal  module  1  stereo Id 369267973 " fill="rgb(255,47,0)" points="845.219,994.177 864.143,994.177 864.143,985.795 " />
<svg:polygon detid="369268229" count="1" value="105" id="3507125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  internal  module  1  stereo Id 369268229 " fill="rgb(255,47,0)" points="845.219,985.795 864.143,985.795 864.143,977.413 " />
<svg:polygon detid="369268485" count="1" value="105" id="3507126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  internal  module  1  stereo Id 369268485 " fill="rgb(255,47,0)" points="845.219,977.413 864.143,977.413 864.143,969.03 " />
<svg:polygon detid="369268741" count="1" value="105" id="3507127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  internal  module  1  stereo Id 369268741 " fill="rgb(255,47,0)" points="845.219,969.03 864.143,969.03 864.143,960.648 " />
<svg:polygon detid="369268997" count="1" value="105" id="3507128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  internal  module  1  stereo Id 369268997 " fill="rgb(255,47,0)" points="845.219,960.648 864.143,960.648 864.143,952.266 " />
<svg:polygon detid="369269253" count="1" value="105" id="3507129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  internal  module  1  stereo Id 369269253 " fill="rgb(255,47,0)" points="845.219,952.266 864.143,952.266 864.143,943.884 " />
<svg:polygon detid="369269509" count="1" value="105" id="3507130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  internal  module  1  stereo Id 369269509 " fill="rgb(255,47,0)" points="845.219,943.884 864.143,943.884 864.143,935.502 " />
<svg:polygon detid="369269765" count="1" value="105" id="3507131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  internal  module  1  stereo Id 369269765 " fill="rgb(255,47,0)" points="845.219,935.502 864.143,935.502 864.143,927.12 " />
<svg:polygon detid="369270021" count="1" value="105" id="3507132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  internal  module  1  stereo Id 369270021 " fill="rgb(255,47,0)" points="845.219,927.12 864.143,927.12 864.143,918.737 " />
<svg:polygon detid="369270277" count="1" value="105" id="3507134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  internal  module  1  stereo Id 369270277 " fill="rgb(255,47,0)" points="845.219,910.355 864.143,910.355 864.143,901.973 " />
<svg:polygon detid="369270533" count="1" value="105" id="3507135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  internal  module  1  stereo Id 369270533 " fill="rgb(255,47,0)" points="845.219,901.973 864.143,901.973 864.143,893.591 " />
<svg:polygon detid="369270789" count="1" value="105" id="3507136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  internal  module  1  stereo Id 369270789 " fill="rgb(255,47,0)" points="845.219,893.591 864.143,893.591 864.143,885.209 " />
<svg:polygon detid="369271045" count="1" value="105" id="3507137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  internal  module  1  stereo Id 369271045 " fill="rgb(255,47,0)" points="845.219,885.209 864.143,885.209 864.143,876.827 " />
<svg:polygon detid="369271301" count="1" value="105" id="3507138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  internal  module  1  stereo Id 369271301 " fill="rgb(255,47,0)" points="845.219,876.827 864.143,876.827 864.143,868.444 " />
<svg:polygon detid="369279238" count="1" value="105" id="3508001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  external  module  1   Id 369279238 " fill="rgb(255,47,0)" points="885.433,1178.58 866.509,1178.58 866.509,1186.97 " />
<svg:polygon detid="369279494" count="1" value="105" id="3508002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  external  module  1   Id 369279494 " fill="rgb(255,47,0)" points="885.433,1170.2 866.509,1170.2 866.509,1178.58 " />
<svg:polygon detid="369279750" count="1" value="105" id="3508003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  external  module  1   Id 369279750 " fill="rgb(255,47,0)" points="885.433,1161.82 866.509,1161.82 866.509,1170.2 " />
<svg:polygon detid="369280006" count="1" value="105" id="3508004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  external  module  1   Id 369280006 " fill="rgb(255,47,0)" points="885.433,1153.44 866.509,1153.44 866.509,1161.82 " />
<svg:polygon detid="369280262" count="1" value="105" id="3508005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  external  module  1   Id 369280262 " fill="rgb(255,47,0)" points="885.433,1145.06 866.509,1145.06 866.509,1153.44 " />
<svg:polygon detid="369280518" count="1" value="105" id="3508006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  external  module  1   Id 369280518 " fill="rgb(255,47,0)" points="885.433,1136.67 866.509,1136.67 866.509,1145.06 " />
<svg:polygon detid="369280774" count="1" value="105" id="3508007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  external  module  1   Id 369280774 " fill="rgb(255,47,0)" points="885.433,1128.29 866.509,1128.29 866.509,1136.67 " />
<svg:polygon detid="369281030" count="1" value="105" id="3508008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  external  module  1   Id 369281030 " fill="rgb(255,47,0)" points="885.433,1119.91 866.509,1119.91 866.509,1128.29 " />
<svg:polygon detid="369281286" count="1" value="105" id="3508009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  external  module  1   Id 369281286 " fill="rgb(255,47,0)" points="885.433,1111.53 866.509,1111.53 866.509,1119.91 " />
<svg:polygon detid="369281542" count="1" value="105" id="3508010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  external  module  1   Id 369281542 " fill="rgb(255,47,0)" points="885.433,1103.15 866.509,1103.15 866.509,1111.53 " />
<svg:polygon detid="369281798" count="1" value="105" id="3508011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  external  module  1   Id 369281798 " fill="rgb(255,47,0)" points="885.433,1094.76 866.509,1094.76 866.509,1103.15 " />
<svg:polygon detid="369282054" count="1" value="105" id="3508012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  external  module  1   Id 369282054 " fill="rgb(255,47,0)" points="885.433,1086.38 866.509,1086.38 866.509,1094.76 " />
<svg:polygon detid="369282310" count="1" value="105" id="3508013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  external  module  1   Id 369282310 " fill="rgb(255,47,0)" points="885.433,1078 866.509,1078 866.509,1086.38 " />
<svg:polygon detid="369282566" count="1" value="105" id="3508014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  external  module  1   Id 369282566 " fill="rgb(255,47,0)" points="885.433,1069.62 866.509,1069.62 866.509,1078 " />
<svg:polygon detid="369282822" count="1" value="105" id="3508015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  external  module  1   Id 369282822 " fill="rgb(255,47,0)" points="885.433,1061.23 866.509,1061.23 866.509,1069.62 " />
<svg:polygon detid="369283078" count="1" value="105" id="3508016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  external  module  1   Id 369283078 " fill="rgb(255,47,0)" points="885.433,1052.85 866.509,1052.85 866.509,1061.23 " />
<svg:polygon detid="369283334" count="1" value="105" id="3508017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  external  module  1   Id 369283334 " fill="rgb(255,47,0)" points="885.433,1044.47 866.509,1044.47 866.509,1052.85 " />
<svg:polygon detid="369283590" count="1" value="105" id="3508018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  external  module  1   Id 369283590 " fill="rgb(255,47,0)" points="885.433,1036.09 866.509,1036.09 866.509,1044.47 " />
<svg:polygon detid="369283846" count="1" value="105" id="3508019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  external  module  1   Id 369283846 " fill="rgb(255,47,0)" points="885.433,1027.71 866.509,1027.71 866.509,1036.09 " />
<svg:polygon detid="369284102" count="1" value="105" id="3508020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  external  module  1   Id 369284102 " fill="rgb(255,47,0)" points="885.433,1019.32 866.509,1019.32 866.509,1027.71 " />
<svg:polygon detid="369284358" count="1" value="105" id="3508021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  external  module  1   Id 369284358 " fill="rgb(255,47,0)" points="885.433,1010.94 866.509,1010.94 866.509,1019.32 " />
<svg:polygon detid="369284614" count="1" value="105" id="3508022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  external  module  1   Id 369284614 " fill="rgb(255,47,0)" points="885.433,1002.56 866.509,1002.56 866.509,1010.94 " />
<svg:polygon detid="369284870" count="1" value="105" id="3508023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  external  module  1   Id 369284870 " fill="rgb(255,47,0)" points="885.433,994.177 866.509,994.177 866.509,1002.56 " />
<svg:polygon detid="369285126" count="1" value="105" id="3508024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  external  module  1   Id 369285126 " fill="rgb(255,47,0)" points="885.433,985.795 866.509,985.795 866.509,994.177 " />
<svg:polygon detid="369285382" count="1" value="105" id="3508025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  external  module  1   Id 369285382 " fill="rgb(255,47,0)" points="885.433,977.413 866.509,977.413 866.509,985.795 " />
<svg:polygon detid="369285638" count="1" value="105" id="3508026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  external  module  1   Id 369285638 " fill="rgb(255,47,0)" points="885.433,969.03 866.509,969.03 866.509,977.413 " />
<svg:polygon detid="369285894" count="1" value="105" id="3508027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  external  module  1   Id 369285894 " fill="rgb(255,47,0)" points="885.433,960.648 866.509,960.648 866.509,969.03 " />
<svg:polygon detid="369286150" count="1" value="105" id="3508028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  external  module  1   Id 369286150 " fill="rgb(255,47,0)" points="885.433,952.266 866.509,952.266 866.509,960.648 " />
<svg:polygon detid="369286406" count="1" value="105" id="3508029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  external  module  1   Id 369286406 " fill="rgb(255,47,0)" points="885.433,943.884 866.509,943.884 866.509,952.266 " />
<svg:polygon detid="369286662" count="1" value="105" id="3508030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  external  module  1   Id 369286662 " fill="rgb(255,47,0)" points="885.433,935.502 866.509,935.502 866.509,943.884 " />
<svg:polygon detid="369286918" count="1" value="105" id="3508031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  external  module  1   Id 369286918 " fill="rgb(255,47,0)" points="885.433,927.12 866.509,927.12 866.509,935.502 " />
<svg:polygon detid="369287174" count="1" value="105" id="3508032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  external  module  1   Id 369287174 " fill="rgb(255,47,0)" points="885.433,918.737 866.509,918.737 866.509,927.12 " />
<svg:polygon detid="369287430" count="1" value="105" id="3508033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  external  module  1   Id 369287430 " fill="rgb(255,47,0)" points="885.433,910.355 866.509,910.355 866.509,918.737 " />
<svg:polygon detid="369287686" count="1" value="105" id="3508034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  external  module  1   Id 369287686 " fill="rgb(255,47,0)" points="885.433,901.973 866.509,901.973 866.509,910.355 " />
<svg:polygon detid="369287942" count="1" value="105" id="3508035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 pos  external  module  1   Id 369287942 " fill="rgb(255,47,0)" points="885.433,893.591 866.509,893.591 866.509,901.973 " />
<svg:polygon detid="369288198" count="1" value="105" id="3508036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 pos  external  module  1   Id 369288198 " fill="rgb(255,47,0)" points="885.433,885.209 866.509,885.209 866.509,893.591 " />
<svg:polygon detid="369288454" count="1" value="105" id="3508037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 pos  external  module  1   Id 369288454 " fill="rgb(255,47,0)" points="885.433,876.827 866.509,876.827 866.509,885.209 " />
<svg:polygon detid="369288710" count="1" value="105" id="3508038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 pos  external  module  1   Id 369288710 " fill="rgb(255,47,0)" points="885.433,868.444 866.509,868.444 866.509,876.827 " />
<svg:polygon detid="369279237" count="1" value="105" id="3508101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  external  module  1  stereo Id 369279237 " fill="rgb(255,47,0)" points="866.509,1186.97 885.433,1186.97 885.433,1178.58 " />
<svg:polygon detid="369279493" count="1" value="105" id="3508102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  external  module  1  stereo Id 369279493 " fill="rgb(255,47,0)" points="866.509,1178.58 885.433,1178.58 885.433,1170.2 " />
<svg:polygon detid="369279749" count="1" value="105" id="3508103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  external  module  1  stereo Id 369279749 " fill="rgb(255,47,0)" points="866.509,1170.2 885.433,1170.2 885.433,1161.82 " />
<svg:polygon detid="369280005" count="1" value="105" id="3508104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  external  module  1  stereo Id 369280005 " fill="rgb(255,47,0)" points="866.509,1161.82 885.433,1161.82 885.433,1153.44 " />
<svg:polygon detid="369280261" count="1" value="105" id="3508105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  external  module  1  stereo Id 369280261 " fill="rgb(255,47,0)" points="866.509,1153.44 885.433,1153.44 885.433,1145.06 " />
<svg:polygon detid="369280517" count="1" value="105" id="3508106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  external  module  1  stereo Id 369280517 " fill="rgb(255,47,0)" points="866.509,1145.06 885.433,1145.06 885.433,1136.67 " />
<svg:polygon detid="369280773" count="1" value="105" id="3508107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  external  module  1  stereo Id 369280773 " fill="rgb(255,47,0)" points="866.509,1136.67 885.433,1136.67 885.433,1128.29 " />
<svg:polygon detid="369281029" count="1" value="105" id="3508108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  external  module  1  stereo Id 369281029 " fill="rgb(255,47,0)" points="866.509,1128.29 885.433,1128.29 885.433,1119.91 " />
<svg:polygon detid="369281285" count="1" value="105" id="3508109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  external  module  1  stereo Id 369281285 " fill="rgb(255,47,0)" points="866.509,1119.91 885.433,1119.91 885.433,1111.53 " />
<svg:polygon detid="369281541" count="1" value="105" id="3508110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  external  module  1  stereo Id 369281541 " fill="rgb(255,47,0)" points="866.509,1111.53 885.433,1111.53 885.433,1103.15 " />
<svg:polygon detid="369281797" count="1" value="105" id="3508111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  external  module  1  stereo Id 369281797 " fill="rgb(255,47,0)" points="866.509,1103.15 885.433,1103.15 885.433,1094.76 " />
<svg:polygon detid="369282053" count="1" value="105" id="3508112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  external  module  1  stereo Id 369282053 " fill="rgb(255,47,0)" points="866.509,1094.76 885.433,1094.76 885.433,1086.38 " />
<svg:polygon detid="369282309" count="1" value="105" id="3508113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  external  module  1  stereo Id 369282309 " fill="rgb(255,47,0)" points="866.509,1086.38 885.433,1086.38 885.433,1078 " />
<svg:polygon detid="369282565" count="1" value="105" id="3508114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  external  module  1  stereo Id 369282565 " fill="rgb(255,47,0)" points="866.509,1078 885.433,1078 885.433,1069.62 " />
<svg:polygon detid="369282821" count="1" value="105" id="3508115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  external  module  1  stereo Id 369282821 " fill="rgb(255,47,0)" points="866.509,1069.62 885.433,1069.62 885.433,1061.23 " />
<svg:polygon detid="369283077" count="1" value="105" id="3508116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  external  module  1  stereo Id 369283077 " fill="rgb(255,47,0)" points="866.509,1061.23 885.433,1061.23 885.433,1052.85 " />
<svg:polygon detid="369283333" count="1" value="105" id="3508117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  external  module  1  stereo Id 369283333 " fill="rgb(255,47,0)" points="866.509,1052.85 885.433,1052.85 885.433,1044.47 " />
<svg:polygon detid="369283589" count="1" value="105" id="3508118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  external  module  1  stereo Id 369283589 " fill="rgb(255,47,0)" points="866.509,1044.47 885.433,1044.47 885.433,1036.09 " />
<svg:polygon detid="369283845" count="1" value="105" id="3508119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  external  module  1  stereo Id 369283845 " fill="rgb(255,47,0)" points="866.509,1036.09 885.433,1036.09 885.433,1027.71 " />
<svg:polygon detid="369284101" count="1" value="105" id="3508120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  external  module  1  stereo Id 369284101 " fill="rgb(255,47,0)" points="866.509,1027.71 885.433,1027.71 885.433,1019.32 " />
<svg:polygon detid="369284357" count="1" value="105" id="3508121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  external  module  1  stereo Id 369284357 " fill="rgb(255,47,0)" points="866.509,1019.32 885.433,1019.32 885.433,1010.94 " />
<svg:polygon detid="369284613" count="1" value="105" id="3508122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  external  module  1  stereo Id 369284613 " fill="rgb(255,47,0)" points="866.509,1010.94 885.433,1010.94 885.433,1002.56 " />
<svg:polygon detid="369284869" count="1" value="105" id="3508123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  external  module  1  stereo Id 369284869 " fill="rgb(255,47,0)" points="866.509,1002.56 885.433,1002.56 885.433,994.177 " />
<svg:polygon detid="369285125" count="1" value="105" id="3508124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  external  module  1  stereo Id 369285125 " fill="rgb(255,47,0)" points="866.509,994.177 885.433,994.177 885.433,985.795 " />
<svg:polygon detid="369285381" count="1" value="105" id="3508125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  external  module  1  stereo Id 369285381 " fill="rgb(255,47,0)" points="866.509,985.795 885.433,985.795 885.433,977.413 " />
<svg:polygon detid="369285637" count="1" value="105" id="3508126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  external  module  1  stereo Id 369285637 " fill="rgb(255,47,0)" points="866.509,977.413 885.433,977.413 885.433,969.03 " />
<svg:polygon detid="369285893" count="1" value="105" id="3508127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  external  module  1  stereo Id 369285893 " fill="rgb(255,47,0)" points="866.509,969.03 885.433,969.03 885.433,960.648 " />
<svg:polygon detid="369286149" count="1" value="105" id="3508128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  external  module  1  stereo Id 369286149 " fill="rgb(255,47,0)" points="866.509,960.648 885.433,960.648 885.433,952.266 " />
<svg:polygon detid="369286405" count="1" value="105" id="3508129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  external  module  1  stereo Id 369286405 " fill="rgb(255,47,0)" points="866.509,952.266 885.433,952.266 885.433,943.884 " />
<svg:polygon detid="369286661" count="1" value="105" id="3508130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  external  module  1  stereo Id 369286661 " fill="rgb(255,47,0)" points="866.509,943.884 885.433,943.884 885.433,935.502 " />
<svg:polygon detid="369286917" count="1" value="105" id="3508131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  external  module  1  stereo Id 369286917 " fill="rgb(255,47,0)" points="866.509,935.502 885.433,935.502 885.433,927.12 " />
<svg:polygon detid="369287173" count="1" value="105" id="3508132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  external  module  1  stereo Id 369287173 " fill="rgb(255,47,0)" points="866.509,927.12 885.433,927.12 885.433,918.737 " />
<svg:polygon detid="369287429" count="1" value="105" id="3508133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  external  module  1  stereo Id 369287429 " fill="rgb(255,47,0)" points="866.509,918.737 885.433,918.737 885.433,910.355 " />
<svg:polygon detid="369287685" count="1" value="105" id="3508134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  external  module  1  stereo Id 369287685 " fill="rgb(255,47,0)" points="866.509,910.355 885.433,910.355 885.433,901.973 " />
<svg:polygon detid="369287941" count="1" value="105" id="3508135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 pos  external  module  1  stereo Id 369287941 " fill="rgb(255,47,0)" points="866.509,901.973 885.433,901.973 885.433,893.591 " />
<svg:polygon detid="369288197" count="1" value="105" id="3508136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 pos  external  module  1  stereo Id 369288197 " fill="rgb(255,47,0)" points="866.509,893.591 885.433,893.591 885.433,885.209 " />
<svg:polygon detid="369288453" count="1" value="105" id="3508137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 pos  external  module  1  stereo Id 369288453 " fill="rgb(255,47,0)" points="866.509,885.209 885.433,885.209 885.433,876.827 " />
<svg:polygon detid="369288709" count="1" value="105" id="3508138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 pos  external  module  1  stereo Id 369288709 " fill="rgb(255,47,0)" points="866.509,876.827 885.433,876.827 885.433,868.444 " />
<svg:polygon detid="369262858" count="1" value="105" id="3509001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  internal  module  2   Id 369262858 " fill="rgb(255,47,0)" points="906.723,1178.58 887.798,1178.58 887.798,1186.97 " />
<svg:polygon detid="369263114" count="1" value="105" id="3509002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  internal  module  2   Id 369263114 " fill="rgb(255,47,0)" points="906.723,1170.2 887.798,1170.2 887.798,1178.58 " />
<svg:polygon detid="369263370" count="1" value="105" id="3509003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  internal  module  2   Id 369263370 " fill="rgb(255,47,0)" points="906.723,1161.82 887.798,1161.82 887.798,1170.2 " />
<svg:polygon detid="369263626" count="1" value="105" id="3509005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  internal  module  2   Id 369263626 " fill="rgb(255,47,0)" points="906.723,1145.06 887.798,1145.06 887.798,1153.44 " />
<svg:polygon detid="369263882" count="1" value="105" id="3509006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  internal  module  2   Id 369263882 " fill="rgb(255,47,0)" points="906.723,1136.67 887.798,1136.67 887.798,1145.06 " />
<svg:polygon detid="369264138" count="1" value="105" id="3509007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  internal  module  2   Id 369264138 " fill="rgb(255,47,0)" points="906.723,1128.29 887.798,1128.29 887.798,1136.67 " />
<svg:polygon detid="369264394" count="1" value="105" id="3509008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  internal  module  2   Id 369264394 " fill="rgb(255,47,0)" points="906.723,1119.91 887.798,1119.91 887.798,1128.29 " />
<svg:polygon detid="369264650" count="1" value="105" id="3509009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  internal  module  2   Id 369264650 " fill="rgb(255,47,0)" points="906.723,1111.53 887.798,1111.53 887.798,1119.91 " />
<svg:polygon detid="369264906" count="1" value="105" id="3509010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  internal  module  2   Id 369264906 " fill="rgb(255,47,0)" points="906.723,1103.15 887.798,1103.15 887.798,1111.53 " />
<svg:polygon detid="369265162" count="1" value="105" id="3509011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  internal  module  2   Id 369265162 " fill="rgb(255,47,0)" points="906.723,1094.76 887.798,1094.76 887.798,1103.15 " />
<svg:polygon detid="369265418" count="1" value="105" id="3509012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  internal  module  2   Id 369265418 " fill="rgb(255,47,0)" points="906.723,1086.38 887.798,1086.38 887.798,1094.76 " />
<svg:polygon detid="369265674" count="1" value="105" id="3509013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  internal  module  2   Id 369265674 " fill="rgb(255,47,0)" points="906.723,1078 887.798,1078 887.798,1086.38 " />
<svg:polygon detid="369265930" count="1" value="105" id="3509015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  internal  module  2   Id 369265930 " fill="rgb(255,47,0)" points="906.723,1061.23 887.798,1061.23 887.798,1069.62 " />
<svg:polygon detid="369266186" count="1" value="105" id="3509016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  internal  module  2   Id 369266186 " fill="rgb(255,47,0)" points="906.723,1052.85 887.798,1052.85 887.798,1061.23 " />
<svg:polygon detid="369266442" count="1" value="105" id="3509017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  internal  module  2   Id 369266442 " fill="rgb(255,47,0)" points="906.723,1044.47 887.798,1044.47 887.798,1052.85 " />
<svg:polygon detid="369266698" count="1" value="105" id="3509018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  internal  module  2   Id 369266698 " fill="rgb(255,47,0)" points="906.723,1036.09 887.798,1036.09 887.798,1044.47 " />
<svg:polygon detid="369266954" count="1" value="105" id="3509019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  internal  module  2   Id 369266954 " fill="rgb(255,47,0)" points="906.723,1027.71 887.798,1027.71 887.798,1036.09 " />
<svg:polygon detid="369267210" count="1" value="105" id="3509020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  internal  module  2   Id 369267210 " fill="rgb(255,47,0)" points="906.723,1019.32 887.798,1019.32 887.798,1027.71 " />
<svg:polygon detid="369267466" count="1" value="105" id="3509021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  internal  module  2   Id 369267466 " fill="rgb(255,47,0)" points="906.723,1010.94 887.798,1010.94 887.798,1019.32 " />
<svg:polygon detid="369267722" count="1" value="105" id="3509022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  internal  module  2   Id 369267722 " fill="rgb(255,47,0)" points="906.723,1002.56 887.798,1002.56 887.798,1010.94 " />
<svg:polygon detid="369267978" count="1" value="105" id="3509024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  internal  module  2   Id 369267978 " fill="rgb(255,47,0)" points="906.723,985.795 887.798,985.795 887.798,994.177 " />
<svg:polygon detid="369268234" count="1" value="105" id="3509025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  internal  module  2   Id 369268234 " fill="rgb(255,47,0)" points="906.723,977.413 887.798,977.413 887.798,985.795 " />
<svg:polygon detid="369268490" count="1" value="105" id="3509026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  internal  module  2   Id 369268490 " fill="rgb(255,47,0)" points="906.723,969.03 887.798,969.03 887.798,977.413 " />
<svg:polygon detid="369268746" count="1" value="105" id="3509027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  internal  module  2   Id 369268746 " fill="rgb(255,47,0)" points="906.723,960.648 887.798,960.648 887.798,969.03 " />
<svg:polygon detid="369269002" count="1" value="105" id="3509028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  internal  module  2   Id 369269002 " fill="rgb(255,47,0)" points="906.723,952.266 887.798,952.266 887.798,960.648 " />
<svg:polygon detid="369269258" count="1" value="105" id="3509029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  internal  module  2   Id 369269258 " fill="rgb(255,47,0)" points="906.723,943.884 887.798,943.884 887.798,952.266 " />
<svg:polygon detid="369269514" count="1" value="105" id="3509030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  internal  module  2   Id 369269514 " fill="rgb(255,47,0)" points="906.723,935.502 887.798,935.502 887.798,943.884 " />
<svg:polygon detid="369269770" count="1" value="105" id="3509031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  internal  module  2   Id 369269770 " fill="rgb(255,47,0)" points="906.723,927.12 887.798,927.12 887.798,935.502 " />
<svg:polygon detid="369270026" count="1" value="105" id="3509032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  internal  module  2   Id 369270026 " fill="rgb(255,47,0)" points="906.723,918.737 887.798,918.737 887.798,927.12 " />
<svg:polygon detid="369270282" count="1" value="105" id="3509034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  internal  module  2   Id 369270282 " fill="rgb(255,47,0)" points="906.723,901.973 887.798,901.973 887.798,910.355 " />
<svg:polygon detid="369270538" count="1" value="105" id="3509035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  internal  module  2   Id 369270538 " fill="rgb(255,47,0)" points="906.723,893.591 887.798,893.591 887.798,901.973 " />
<svg:polygon detid="369270794" count="1" value="105" id="3509036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  internal  module  2   Id 369270794 " fill="rgb(255,47,0)" points="906.723,885.209 887.798,885.209 887.798,893.591 " />
<svg:polygon detid="369271050" count="1" value="105" id="3509037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  internal  module  2   Id 369271050 " fill="rgb(255,47,0)" points="906.723,876.827 887.798,876.827 887.798,885.209 " />
<svg:polygon detid="369271306" count="1" value="105" id="3509038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  internal  module  2   Id 369271306 " fill="rgb(255,47,0)" points="906.723,868.444 887.798,868.444 887.798,876.827 " />
<svg:polygon detid="369262857" count="1" value="105" id="3509101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  internal  module  2  stereo Id 369262857 " fill="rgb(255,47,0)" points="887.798,1186.97 906.723,1186.97 906.723,1178.58 " />
<svg:polygon detid="369263113" count="1" value="105" id="3509102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  internal  module  2  stereo Id 369263113 " fill="rgb(255,47,0)" points="887.798,1178.58 906.723,1178.58 906.723,1170.2 " />
<svg:polygon detid="369263369" count="1" value="105" id="3509103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  internal  module  2  stereo Id 369263369 " fill="rgb(255,47,0)" points="887.798,1170.2 906.723,1170.2 906.723,1161.82 " />
<svg:polygon detid="369263625" count="1" value="105" id="3509105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  internal  module  2  stereo Id 369263625 " fill="rgb(255,47,0)" points="887.798,1153.44 906.723,1153.44 906.723,1145.06 " />
<svg:polygon detid="369263881" count="1" value="105" id="3509106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  internal  module  2  stereo Id 369263881 " fill="rgb(255,47,0)" points="887.798,1145.06 906.723,1145.06 906.723,1136.67 " />
<svg:polygon detid="369264137" count="1" value="105" id="3509107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  internal  module  2  stereo Id 369264137 " fill="rgb(255,47,0)" points="887.798,1136.67 906.723,1136.67 906.723,1128.29 " />
<svg:polygon detid="369264393" count="1" value="105" id="3509108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  internal  module  2  stereo Id 369264393 " fill="rgb(255,47,0)" points="887.798,1128.29 906.723,1128.29 906.723,1119.91 " />
<svg:polygon detid="369264649" count="1" value="105" id="3509109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  internal  module  2  stereo Id 369264649 " fill="rgb(255,47,0)" points="887.798,1119.91 906.723,1119.91 906.723,1111.53 " />
<svg:polygon detid="369264905" count="1" value="105" id="3509110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  internal  module  2  stereo Id 369264905 " fill="rgb(255,47,0)" points="887.798,1111.53 906.723,1111.53 906.723,1103.15 " />
<svg:polygon detid="369265161" count="1" value="105" id="3509111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  internal  module  2  stereo Id 369265161 " fill="rgb(255,47,0)" points="887.798,1103.15 906.723,1103.15 906.723,1094.76 " />
<svg:polygon detid="369265417" count="1" value="105" id="3509112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  internal  module  2  stereo Id 369265417 " fill="rgb(255,47,0)" points="887.798,1094.76 906.723,1094.76 906.723,1086.38 " />
<svg:polygon detid="369265673" count="1" value="105" id="3509113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  internal  module  2  stereo Id 369265673 " fill="rgb(255,47,0)" points="887.798,1086.38 906.723,1086.38 906.723,1078 " />
<svg:polygon detid="369265929" count="1" value="105" id="3509115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  internal  module  2  stereo Id 369265929 " fill="rgb(255,47,0)" points="887.798,1069.62 906.723,1069.62 906.723,1061.23 " />
<svg:polygon detid="369266185" count="1" value="105" id="3509116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  internal  module  2  stereo Id 369266185 " fill="rgb(255,47,0)" points="887.798,1061.23 906.723,1061.23 906.723,1052.85 " />
<svg:polygon detid="369266441" count="1" value="105" id="3509117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  internal  module  2  stereo Id 369266441 " fill="rgb(255,47,0)" points="887.798,1052.85 906.723,1052.85 906.723,1044.47 " />
<svg:polygon detid="369266697" count="1" value="105" id="3509118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  internal  module  2  stereo Id 369266697 " fill="rgb(255,47,0)" points="887.798,1044.47 906.723,1044.47 906.723,1036.09 " />
<svg:polygon detid="369266953" count="1" value="105" id="3509119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  internal  module  2  stereo Id 369266953 " fill="rgb(255,47,0)" points="887.798,1036.09 906.723,1036.09 906.723,1027.71 " />
<svg:polygon detid="369267209" count="1" value="105" id="3509120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  internal  module  2  stereo Id 369267209 " fill="rgb(255,47,0)" points="887.798,1027.71 906.723,1027.71 906.723,1019.32 " />
<svg:polygon detid="369267465" count="1" value="105" id="3509121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  internal  module  2  stereo Id 369267465 " fill="rgb(255,47,0)" points="887.798,1019.32 906.723,1019.32 906.723,1010.94 " />
<svg:polygon detid="369267721" count="1" value="105" id="3509122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  internal  module  2  stereo Id 369267721 " fill="rgb(255,47,0)" points="887.798,1010.94 906.723,1010.94 906.723,1002.56 " />
<svg:polygon detid="369267977" count="1" value="105" id="3509124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  internal  module  2  stereo Id 369267977 " fill="rgb(255,47,0)" points="887.798,994.177 906.723,994.177 906.723,985.795 " />
<svg:polygon detid="369268233" count="1" value="105" id="3509125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  internal  module  2  stereo Id 369268233 " fill="rgb(255,47,0)" points="887.798,985.795 906.723,985.795 906.723,977.413 " />
<svg:polygon detid="369268489" count="1" value="105" id="3509126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  internal  module  2  stereo Id 369268489 " fill="rgb(255,47,0)" points="887.798,977.413 906.723,977.413 906.723,969.03 " />
<svg:polygon detid="369268745" count="1" value="105" id="3509127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  internal  module  2  stereo Id 369268745 " fill="rgb(255,47,0)" points="887.798,969.03 906.723,969.03 906.723,960.648 " />
<svg:polygon detid="369269001" count="1" value="105" id="3509128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  internal  module  2  stereo Id 369269001 " fill="rgb(255,47,0)" points="887.798,960.648 906.723,960.648 906.723,952.266 " />
<svg:polygon detid="369269257" count="1" value="105" id="3509129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  internal  module  2  stereo Id 369269257 " fill="rgb(255,47,0)" points="887.798,952.266 906.723,952.266 906.723,943.884 " />
<svg:polygon detid="369269513" count="1" value="105" id="3509130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  internal  module  2  stereo Id 369269513 " fill="rgb(255,47,0)" points="887.798,943.884 906.723,943.884 906.723,935.502 " />
<svg:polygon detid="369269769" count="1" value="105" id="3509131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  internal  module  2  stereo Id 369269769 " fill="rgb(255,47,0)" points="887.798,935.502 906.723,935.502 906.723,927.12 " />
<svg:polygon detid="369270025" count="1" value="105" id="3509132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  internal  module  2  stereo Id 369270025 " fill="rgb(255,47,0)" points="887.798,927.12 906.723,927.12 906.723,918.737 " />
<svg:polygon detid="369270281" count="1" value="105" id="3509134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  internal  module  2  stereo Id 369270281 " fill="rgb(255,47,0)" points="887.798,910.355 906.723,910.355 906.723,901.973 " />
<svg:polygon detid="369270537" count="1" value="105" id="3509135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  internal  module  2  stereo Id 369270537 " fill="rgb(255,47,0)" points="887.798,901.973 906.723,901.973 906.723,893.591 " />
<svg:polygon detid="369270793" count="1" value="105" id="3509136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  internal  module  2  stereo Id 369270793 " fill="rgb(255,47,0)" points="887.798,893.591 906.723,893.591 906.723,885.209 " />
<svg:polygon detid="369271049" count="1" value="105" id="3509137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  internal  module  2  stereo Id 369271049 " fill="rgb(255,47,0)" points="887.798,885.209 906.723,885.209 906.723,876.827 " />
<svg:polygon detid="369271305" count="1" value="105" id="3509138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  internal  module  2  stereo Id 369271305 " fill="rgb(255,47,0)" points="887.798,876.827 906.723,876.827 906.723,868.444 " />
<svg:polygon detid="369279242" count="1" value="105" id="3510001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  external  module  2   Id 369279242 " fill="rgb(255,47,0)" points="928.012,1178.58 909.088,1178.58 909.088,1186.97 " />
<svg:polygon detid="369279498" count="1" value="105" id="3510002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  external  module  2   Id 369279498 " fill="rgb(255,47,0)" points="928.012,1170.2 909.088,1170.2 909.088,1178.58 " />
<svg:polygon detid="369279754" count="1" value="105" id="3510003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  external  module  2   Id 369279754 " fill="rgb(255,47,0)" points="928.012,1161.82 909.088,1161.82 909.088,1170.2 " />
<svg:polygon detid="369280010" count="1" value="105" id="3510004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  external  module  2   Id 369280010 " fill="rgb(255,47,0)" points="928.012,1153.44 909.088,1153.44 909.088,1161.82 " />
<svg:polygon detid="369280266" count="1" value="105" id="3510005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  external  module  2   Id 369280266 " fill="rgb(255,47,0)" points="928.012,1145.06 909.088,1145.06 909.088,1153.44 " />
<svg:polygon detid="369280522" count="1" value="105" id="3510006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  external  module  2   Id 369280522 " fill="rgb(255,47,0)" points="928.012,1136.67 909.088,1136.67 909.088,1145.06 " />
<svg:polygon detid="369280778" count="1" value="105" id="3510007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  external  module  2   Id 369280778 " fill="rgb(255,47,0)" points="928.012,1128.29 909.088,1128.29 909.088,1136.67 " />
<svg:polygon detid="369281034" count="1" value="105" id="3510008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  external  module  2   Id 369281034 " fill="rgb(255,47,0)" points="928.012,1119.91 909.088,1119.91 909.088,1128.29 " />
<svg:polygon detid="369281290" count="1" value="105" id="3510009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  external  module  2   Id 369281290 " fill="rgb(255,47,0)" points="928.012,1111.53 909.088,1111.53 909.088,1119.91 " />
<svg:polygon detid="369281546" count="1" value="105" id="3510010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  external  module  2   Id 369281546 " fill="rgb(255,47,0)" points="928.012,1103.15 909.088,1103.15 909.088,1111.53 " />
<svg:polygon detid="369281802" count="1" value="105" id="3510011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  external  module  2   Id 369281802 " fill="rgb(255,47,0)" points="928.012,1094.76 909.088,1094.76 909.088,1103.15 " />
<svg:polygon detid="369282058" count="1" value="105" id="3510012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  external  module  2   Id 369282058 " fill="rgb(255,47,0)" points="928.012,1086.38 909.088,1086.38 909.088,1094.76 " />
<svg:polygon detid="369282314" count="1" value="105" id="3510013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  external  module  2   Id 369282314 " fill="rgb(255,47,0)" points="928.012,1078 909.088,1078 909.088,1086.38 " />
<svg:polygon detid="369282570" count="1" value="105" id="3510014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  external  module  2   Id 369282570 " fill="rgb(255,47,0)" points="928.012,1069.62 909.088,1069.62 909.088,1078 " />
<svg:polygon detid="369282826" count="1" value="105" id="3510015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  external  module  2   Id 369282826 " fill="rgb(255,47,0)" points="928.012,1061.23 909.088,1061.23 909.088,1069.62 " />
<svg:polygon detid="369283082" count="1" value="105" id="3510016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  external  module  2   Id 369283082 " fill="rgb(255,47,0)" points="928.012,1052.85 909.088,1052.85 909.088,1061.23 " />
<svg:polygon detid="369283338" count="1" value="105" id="3510017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  external  module  2   Id 369283338 " fill="rgb(255,47,0)" points="928.012,1044.47 909.088,1044.47 909.088,1052.85 " />
<svg:polygon detid="369283594" count="1" value="105" id="3510018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  external  module  2   Id 369283594 " fill="rgb(255,47,0)" points="928.012,1036.09 909.088,1036.09 909.088,1044.47 " />
<svg:polygon detid="369283850" count="1" value="105" id="3510019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  external  module  2   Id 369283850 " fill="rgb(255,47,0)" points="928.012,1027.71 909.088,1027.71 909.088,1036.09 " />
<svg:polygon detid="369284106" count="1" value="105" id="3510020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  external  module  2   Id 369284106 " fill="rgb(255,47,0)" points="928.012,1019.32 909.088,1019.32 909.088,1027.71 " />
<svg:polygon detid="369284362" count="1" value="105" id="3510021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  external  module  2   Id 369284362 " fill="rgb(255,47,0)" points="928.012,1010.94 909.088,1010.94 909.088,1019.32 " />
<svg:polygon detid="369284618" count="1" value="105" id="3510022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  external  module  2   Id 369284618 " fill="rgb(255,47,0)" points="928.012,1002.56 909.088,1002.56 909.088,1010.94 " />
<svg:polygon detid="369284874" count="1" value="105" id="3510023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  external  module  2   Id 369284874 " fill="rgb(255,47,0)" points="928.012,994.177 909.088,994.177 909.088,1002.56 " />
<svg:polygon detid="369285130" count="1" value="105" id="3510024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  external  module  2   Id 369285130 " fill="rgb(255,47,0)" points="928.012,985.795 909.088,985.795 909.088,994.177 " />
<svg:polygon detid="369285386" count="1" value="105" id="3510025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  external  module  2   Id 369285386 " fill="rgb(255,47,0)" points="928.012,977.413 909.088,977.413 909.088,985.795 " />
<svg:polygon detid="369285642" count="1" value="105" id="3510026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  external  module  2   Id 369285642 " fill="rgb(255,47,0)" points="928.012,969.03 909.088,969.03 909.088,977.413 " />
<svg:polygon detid="369285898" count="1" value="105" id="3510027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  external  module  2   Id 369285898 " fill="rgb(255,47,0)" points="928.012,960.648 909.088,960.648 909.088,969.03 " />
<svg:polygon detid="369286154" count="1" value="105" id="3510028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  external  module  2   Id 369286154 " fill="rgb(255,47,0)" points="928.012,952.266 909.088,952.266 909.088,960.648 " />
<svg:polygon detid="369286410" count="1" value="105" id="3510029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  external  module  2   Id 369286410 " fill="rgb(255,47,0)" points="928.012,943.884 909.088,943.884 909.088,952.266 " />
<svg:polygon detid="369286666" count="1" value="105" id="3510030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  external  module  2   Id 369286666 " fill="rgb(255,47,0)" points="928.012,935.502 909.088,935.502 909.088,943.884 " />
<svg:polygon detid="369286922" count="1" value="105" id="3510031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  external  module  2   Id 369286922 " fill="rgb(255,47,0)" points="928.012,927.12 909.088,927.12 909.088,935.502 " />
<svg:polygon detid="369287178" count="1" value="105" id="3510032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  external  module  2   Id 369287178 " fill="rgb(255,47,0)" points="928.012,918.737 909.088,918.737 909.088,927.12 " />
<svg:polygon detid="369287434" count="1" value="105" id="3510033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  external  module  2   Id 369287434 " fill="rgb(255,47,0)" points="928.012,910.355 909.088,910.355 909.088,918.737 " />
<svg:polygon detid="369287690" count="1" value="105" id="3510034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  external  module  2   Id 369287690 " fill="rgb(255,47,0)" points="928.012,901.973 909.088,901.973 909.088,910.355 " />
<svg:polygon detid="369287946" count="1" value="105" id="3510035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 pos  external  module  2   Id 369287946 " fill="rgb(255,47,0)" points="928.012,893.591 909.088,893.591 909.088,901.973 " />
<svg:polygon detid="369288202" count="1" value="105" id="3510036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 pos  external  module  2   Id 369288202 " fill="rgb(255,47,0)" points="928.012,885.209 909.088,885.209 909.088,893.591 " />
<svg:polygon detid="369288458" count="1" value="105" id="3510037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 pos  external  module  2   Id 369288458 " fill="rgb(255,47,0)" points="928.012,876.827 909.088,876.827 909.088,885.209 " />
<svg:polygon detid="369288714" count="1" value="105" id="3510038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 pos  external  module  2   Id 369288714 " fill="rgb(255,47,0)" points="928.012,868.444 909.088,868.444 909.088,876.827 " />
<svg:polygon detid="369279241" count="1" value="105" id="3510101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  external  module  2  stereo Id 369279241 " fill="rgb(255,47,0)" points="909.088,1186.97 928.012,1186.97 928.012,1178.58 " />
<svg:polygon detid="369279497" count="1" value="105" id="3510102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  external  module  2  stereo Id 369279497 " fill="rgb(255,47,0)" points="909.088,1178.58 928.012,1178.58 928.012,1170.2 " />
<svg:polygon detid="369279753" count="1" value="105" id="3510103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  external  module  2  stereo Id 369279753 " fill="rgb(255,47,0)" points="909.088,1170.2 928.012,1170.2 928.012,1161.82 " />
<svg:polygon detid="369280009" count="1" value="105" id="3510104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  external  module  2  stereo Id 369280009 " fill="rgb(255,47,0)" points="909.088,1161.82 928.012,1161.82 928.012,1153.44 " />
<svg:polygon detid="369280265" count="1" value="105" id="3510105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  external  module  2  stereo Id 369280265 " fill="rgb(255,47,0)" points="909.088,1153.44 928.012,1153.44 928.012,1145.06 " />
<svg:polygon detid="369280521" count="1" value="105" id="3510106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  external  module  2  stereo Id 369280521 " fill="rgb(255,47,0)" points="909.088,1145.06 928.012,1145.06 928.012,1136.67 " />
<svg:polygon detid="369280777" count="1" value="105" id="3510107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  external  module  2  stereo Id 369280777 " fill="rgb(255,47,0)" points="909.088,1136.67 928.012,1136.67 928.012,1128.29 " />
<svg:polygon detid="369281033" count="1" value="105" id="3510108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  external  module  2  stereo Id 369281033 " fill="rgb(255,47,0)" points="909.088,1128.29 928.012,1128.29 928.012,1119.91 " />
<svg:polygon detid="369281289" count="1" value="105" id="3510109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  external  module  2  stereo Id 369281289 " fill="rgb(255,47,0)" points="909.088,1119.91 928.012,1119.91 928.012,1111.53 " />
<svg:polygon detid="369281545" count="1" value="105" id="3510110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  external  module  2  stereo Id 369281545 " fill="rgb(255,47,0)" points="909.088,1111.53 928.012,1111.53 928.012,1103.15 " />
<svg:polygon detid="369281801" count="1" value="105" id="3510111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  external  module  2  stereo Id 369281801 " fill="rgb(255,47,0)" points="909.088,1103.15 928.012,1103.15 928.012,1094.76 " />
<svg:polygon detid="369282057" count="1" value="105" id="3510112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  external  module  2  stereo Id 369282057 " fill="rgb(255,47,0)" points="909.088,1094.76 928.012,1094.76 928.012,1086.38 " />
<svg:polygon detid="369282313" count="1" value="105" id="3510113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  external  module  2  stereo Id 369282313 " fill="rgb(255,47,0)" points="909.088,1086.38 928.012,1086.38 928.012,1078 " />
<svg:polygon detid="369282569" count="1" value="105" id="3510114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  external  module  2  stereo Id 369282569 " fill="rgb(255,47,0)" points="909.088,1078 928.012,1078 928.012,1069.62 " />
<svg:polygon detid="369282825" count="1" value="105" id="3510115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  external  module  2  stereo Id 369282825 " fill="rgb(255,47,0)" points="909.088,1069.62 928.012,1069.62 928.012,1061.23 " />
<svg:polygon detid="369283081" count="1" value="105" id="3510116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  external  module  2  stereo Id 369283081 " fill="rgb(255,47,0)" points="909.088,1061.23 928.012,1061.23 928.012,1052.85 " />
<svg:polygon detid="369283337" count="1" value="105" id="3510117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  external  module  2  stereo Id 369283337 " fill="rgb(255,47,0)" points="909.088,1052.85 928.012,1052.85 928.012,1044.47 " />
<svg:polygon detid="369283593" count="1" value="105" id="3510118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  external  module  2  stereo Id 369283593 " fill="rgb(255,47,0)" points="909.088,1044.47 928.012,1044.47 928.012,1036.09 " />
<svg:polygon detid="369283849" count="1" value="105" id="3510119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  external  module  2  stereo Id 369283849 " fill="rgb(255,47,0)" points="909.088,1036.09 928.012,1036.09 928.012,1027.71 " />
<svg:polygon detid="369284105" count="1" value="105" id="3510120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  external  module  2  stereo Id 369284105 " fill="rgb(255,47,0)" points="909.088,1027.71 928.012,1027.71 928.012,1019.32 " />
<svg:polygon detid="369284361" count="1" value="105" id="3510121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  external  module  2  stereo Id 369284361 " fill="rgb(255,47,0)" points="909.088,1019.32 928.012,1019.32 928.012,1010.94 " />
<svg:polygon detid="369284617" count="1" value="105" id="3510122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  external  module  2  stereo Id 369284617 " fill="rgb(255,47,0)" points="909.088,1010.94 928.012,1010.94 928.012,1002.56 " />
<svg:polygon detid="369284873" count="1" value="105" id="3510123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  external  module  2  stereo Id 369284873 " fill="rgb(255,47,0)" points="909.088,1002.56 928.012,1002.56 928.012,994.177 " />
<svg:polygon detid="369285129" count="1" value="105" id="3510124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  external  module  2  stereo Id 369285129 " fill="rgb(255,47,0)" points="909.088,994.177 928.012,994.177 928.012,985.795 " />
<svg:polygon detid="369285385" count="1" value="105" id="3510125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  external  module  2  stereo Id 369285385 " fill="rgb(255,47,0)" points="909.088,985.795 928.012,985.795 928.012,977.413 " />
<svg:polygon detid="369285641" count="1" value="105" id="3510126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  external  module  2  stereo Id 369285641 " fill="rgb(255,47,0)" points="909.088,977.413 928.012,977.413 928.012,969.03 " />
<svg:polygon detid="369285897" count="1" value="105" id="3510127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  external  module  2  stereo Id 369285897 " fill="rgb(255,47,0)" points="909.088,969.03 928.012,969.03 928.012,960.648 " />
<svg:polygon detid="369286153" count="1" value="105" id="3510128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  external  module  2  stereo Id 369286153 " fill="rgb(255,47,0)" points="909.088,960.648 928.012,960.648 928.012,952.266 " />
<svg:polygon detid="369286409" count="1" value="105" id="3510129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  external  module  2  stereo Id 369286409 " fill="rgb(255,47,0)" points="909.088,952.266 928.012,952.266 928.012,943.884 " />
<svg:polygon detid="369286665" count="1" value="105" id="3510130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  external  module  2  stereo Id 369286665 " fill="rgb(255,47,0)" points="909.088,943.884 928.012,943.884 928.012,935.502 " />
<svg:polygon detid="369286921" count="1" value="105" id="3510131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  external  module  2  stereo Id 369286921 " fill="rgb(255,47,0)" points="909.088,935.502 928.012,935.502 928.012,927.12 " />
<svg:polygon detid="369287177" count="1" value="105" id="3510132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  external  module  2  stereo Id 369287177 " fill="rgb(255,47,0)" points="909.088,927.12 928.012,927.12 928.012,918.737 " />
<svg:polygon detid="369287433" count="1" value="105" id="3510133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  external  module  2  stereo Id 369287433 " fill="rgb(255,47,0)" points="909.088,918.737 928.012,918.737 928.012,910.355 " />
<svg:polygon detid="369287689" count="1" value="105" id="3510134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  external  module  2  stereo Id 369287689 " fill="rgb(255,47,0)" points="909.088,910.355 928.012,910.355 928.012,901.973 " />
<svg:polygon detid="369287945" count="1" value="105" id="3510135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 pos  external  module  2  stereo Id 369287945 " fill="rgb(255,47,0)" points="909.088,901.973 928.012,901.973 928.012,893.591 " />
<svg:polygon detid="369288201" count="1" value="105" id="3510136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 pos  external  module  2  stereo Id 369288201 " fill="rgb(255,47,0)" points="909.088,893.591 928.012,893.591 928.012,885.209 " />
<svg:polygon detid="369288457" count="1" value="105" id="3510137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 pos  external  module  2  stereo Id 369288457 " fill="rgb(255,47,0)" points="909.088,885.209 928.012,885.209 928.012,876.827 " />
<svg:polygon detid="369288713" count="1" value="105" id="3510138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 pos  external  module  2  stereo Id 369288713 " fill="rgb(255,47,0)" points="909.088,876.827 928.012,876.827 928.012,868.444 " />
<svg:polygon detid="369262862" count="1" value="105" id="3511001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  internal  module  3   Id 369262862 " fill="rgb(255,47,0)" points="949.302,1178.58 930.378,1178.58 930.378,1186.97 " />
<svg:polygon detid="369263118" count="1" value="105" id="3511002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  internal  module  3   Id 369263118 " fill="rgb(255,47,0)" points="949.302,1170.2 930.378,1170.2 930.378,1178.58 " />
<svg:polygon detid="369263374" count="1" value="105" id="3511003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  internal  module  3   Id 369263374 " fill="rgb(255,47,0)" points="949.302,1161.82 930.378,1161.82 930.378,1170.2 " />
<svg:polygon detid="369263630" count="1" value="105" id="3511005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  internal  module  3   Id 369263630 " fill="rgb(255,47,0)" points="949.302,1145.06 930.378,1145.06 930.378,1153.44 " />
<svg:polygon detid="369263886" count="1" value="105" id="3511006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  internal  module  3   Id 369263886 " fill="rgb(255,47,0)" points="949.302,1136.67 930.378,1136.67 930.378,1145.06 " />
<svg:polygon detid="369264142" count="1" value="105" id="3511007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  internal  module  3   Id 369264142 " fill="rgb(255,47,0)" points="949.302,1128.29 930.378,1128.29 930.378,1136.67 " />
<svg:polygon detid="369264398" count="1" value="105" id="3511008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  internal  module  3   Id 369264398 " fill="rgb(255,47,0)" points="949.302,1119.91 930.378,1119.91 930.378,1128.29 " />
<svg:polygon detid="369264654" count="1" value="105" id="3511009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  internal  module  3   Id 369264654 " fill="rgb(255,47,0)" points="949.302,1111.53 930.378,1111.53 930.378,1119.91 " />
<svg:polygon detid="369264910" count="1" value="105" id="3511010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  internal  module  3   Id 369264910 " fill="rgb(255,47,0)" points="949.302,1103.15 930.378,1103.15 930.378,1111.53 " />
<svg:polygon detid="369265166" count="1" value="105" id="3511011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  internal  module  3   Id 369265166 " fill="rgb(255,47,0)" points="949.302,1094.76 930.378,1094.76 930.378,1103.15 " />
<svg:polygon detid="369265422" count="1" value="105" id="3511012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  internal  module  3   Id 369265422 " fill="rgb(255,47,0)" points="949.302,1086.38 930.378,1086.38 930.378,1094.76 " />
<svg:polygon detid="369265678" count="1" value="105" id="3511013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  internal  module  3   Id 369265678 " fill="rgb(255,47,0)" points="949.302,1078 930.378,1078 930.378,1086.38 " />
<svg:polygon detid="369265934" count="1" value="105" id="3511015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  internal  module  3   Id 369265934 " fill="rgb(255,47,0)" points="949.302,1061.23 930.378,1061.23 930.378,1069.62 " />
<svg:polygon detid="369266190" count="1" value="105" id="3511016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  internal  module  3   Id 369266190 " fill="rgb(255,47,0)" points="949.302,1052.85 930.378,1052.85 930.378,1061.23 " />
<svg:polygon detid="369266446" count="1" value="105" id="3511017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  internal  module  3   Id 369266446 " fill="rgb(255,47,0)" points="949.302,1044.47 930.378,1044.47 930.378,1052.85 " />
<svg:polygon detid="369266702" count="1" value="105" id="3511018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  internal  module  3   Id 369266702 " fill="rgb(255,47,0)" points="949.302,1036.09 930.378,1036.09 930.378,1044.47 " />
<svg:polygon detid="369266958" count="1" value="105" id="3511019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  internal  module  3   Id 369266958 " fill="rgb(255,47,0)" points="949.302,1027.71 930.378,1027.71 930.378,1036.09 " />
<svg:polygon detid="369267214" count="1" value="105" id="3511020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  internal  module  3   Id 369267214 " fill="rgb(255,47,0)" points="949.302,1019.32 930.378,1019.32 930.378,1027.71 " />
<svg:polygon detid="369267470" count="1" value="105" id="3511021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  internal  module  3   Id 369267470 " fill="rgb(255,47,0)" points="949.302,1010.94 930.378,1010.94 930.378,1019.32 " />
<svg:polygon detid="369267726" count="1" value="105" id="3511022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  internal  module  3   Id 369267726 " fill="rgb(255,47,0)" points="949.302,1002.56 930.378,1002.56 930.378,1010.94 " />
<svg:polygon detid="369267982" count="1" value="105" id="3511024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  internal  module  3   Id 369267982 " fill="rgb(255,47,0)" points="949.302,985.795 930.378,985.795 930.378,994.177 " />
<svg:polygon detid="369268238" count="1" value="105" id="3511025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  internal  module  3   Id 369268238 " fill="rgb(255,47,0)" points="949.302,977.413 930.378,977.413 930.378,985.795 " />
<svg:polygon detid="369268494" count="1" value="105" id="3511026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  internal  module  3   Id 369268494 " fill="rgb(255,47,0)" points="949.302,969.03 930.378,969.03 930.378,977.413 " />
<svg:polygon detid="369268750" count="1" value="105" id="3511027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  internal  module  3   Id 369268750 " fill="rgb(255,47,0)" points="949.302,960.648 930.378,960.648 930.378,969.03 " />
<svg:polygon detid="369269006" count="1" value="105" id="3511028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  internal  module  3   Id 369269006 " fill="rgb(255,47,0)" points="949.302,952.266 930.378,952.266 930.378,960.648 " />
<svg:polygon detid="369269262" count="1" value="105" id="3511029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  internal  module  3   Id 369269262 " fill="rgb(255,47,0)" points="949.302,943.884 930.378,943.884 930.378,952.266 " />
<svg:polygon detid="369269518" count="1" value="105" id="3511030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  internal  module  3   Id 369269518 " fill="rgb(255,47,0)" points="949.302,935.502 930.378,935.502 930.378,943.884 " />
<svg:polygon detid="369269774" count="1" value="105" id="3511031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  internal  module  3   Id 369269774 " fill="rgb(255,47,0)" points="949.302,927.12 930.378,927.12 930.378,935.502 " />
<svg:polygon detid="369270030" count="1" value="105" id="3511032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  internal  module  3   Id 369270030 " fill="rgb(255,47,0)" points="949.302,918.737 930.378,918.737 930.378,927.12 " />
<svg:polygon detid="369270286" count="1" value="105" id="3511034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  internal  module  3   Id 369270286 " fill="rgb(255,47,0)" points="949.302,901.973 930.378,901.973 930.378,910.355 " />
<svg:polygon detid="369270542" count="1" value="105" id="3511035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  internal  module  3   Id 369270542 " fill="rgb(255,47,0)" points="949.302,893.591 930.378,893.591 930.378,901.973 " />
<svg:polygon detid="369270798" count="1" value="105" id="3511036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  internal  module  3   Id 369270798 " fill="rgb(255,47,0)" points="949.302,885.209 930.378,885.209 930.378,893.591 " />
<svg:polygon detid="369271054" count="1" value="105" id="3511037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  internal  module  3   Id 369271054 " fill="rgb(255,47,0)" points="949.302,876.827 930.378,876.827 930.378,885.209 " />
<svg:polygon detid="369271310" count="1" value="105" id="3511038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  internal  module  3   Id 369271310 " fill="rgb(255,47,0)" points="949.302,868.444 930.378,868.444 930.378,876.827 " />
<svg:polygon detid="369262861" count="1" value="105" id="3511101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  internal  module  3  stereo Id 369262861 " fill="rgb(255,47,0)" points="930.378,1186.97 949.302,1186.97 949.302,1178.58 " />
<svg:polygon detid="369263117" count="1" value="105" id="3511102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  internal  module  3  stereo Id 369263117 " fill="rgb(255,47,0)" points="930.378,1178.58 949.302,1178.58 949.302,1170.2 " />
<svg:polygon detid="369263373" count="1" value="105" id="3511103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  internal  module  3  stereo Id 369263373 " fill="rgb(255,47,0)" points="930.378,1170.2 949.302,1170.2 949.302,1161.82 " />
<svg:polygon detid="369263629" count="1" value="105" id="3511105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  internal  module  3  stereo Id 369263629 " fill="rgb(255,47,0)" points="930.378,1153.44 949.302,1153.44 949.302,1145.06 " />
<svg:polygon detid="369263885" count="1" value="105" id="3511106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  internal  module  3  stereo Id 369263885 " fill="rgb(255,47,0)" points="930.378,1145.06 949.302,1145.06 949.302,1136.67 " />
<svg:polygon detid="369264141" count="1" value="105" id="3511107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  internal  module  3  stereo Id 369264141 " fill="rgb(255,47,0)" points="930.378,1136.67 949.302,1136.67 949.302,1128.29 " />
<svg:polygon detid="369264397" count="1" value="105" id="3511108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  internal  module  3  stereo Id 369264397 " fill="rgb(255,47,0)" points="930.378,1128.29 949.302,1128.29 949.302,1119.91 " />
<svg:polygon detid="369264653" count="1" value="105" id="3511109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  internal  module  3  stereo Id 369264653 " fill="rgb(255,47,0)" points="930.378,1119.91 949.302,1119.91 949.302,1111.53 " />
<svg:polygon detid="369264909" count="1" value="105" id="3511110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  internal  module  3  stereo Id 369264909 " fill="rgb(255,47,0)" points="930.378,1111.53 949.302,1111.53 949.302,1103.15 " />
<svg:polygon detid="369265165" count="1" value="105" id="3511111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  internal  module  3  stereo Id 369265165 " fill="rgb(255,47,0)" points="930.378,1103.15 949.302,1103.15 949.302,1094.76 " />
<svg:polygon detid="369265421" count="1" value="105" id="3511112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  internal  module  3  stereo Id 369265421 " fill="rgb(255,47,0)" points="930.378,1094.76 949.302,1094.76 949.302,1086.38 " />
<svg:polygon detid="369265677" count="1" value="105" id="3511113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  internal  module  3  stereo Id 369265677 " fill="rgb(255,47,0)" points="930.378,1086.38 949.302,1086.38 949.302,1078 " />
<svg:polygon detid="369265933" count="1" value="105" id="3511115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  internal  module  3  stereo Id 369265933 " fill="rgb(255,47,0)" points="930.378,1069.62 949.302,1069.62 949.302,1061.23 " />
<svg:polygon detid="369266189" count="1" value="105" id="3511116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  internal  module  3  stereo Id 369266189 " fill="rgb(255,47,0)" points="930.378,1061.23 949.302,1061.23 949.302,1052.85 " />
<svg:polygon detid="369266445" count="1" value="105" id="3511117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  internal  module  3  stereo Id 369266445 " fill="rgb(255,47,0)" points="930.378,1052.85 949.302,1052.85 949.302,1044.47 " />
<svg:polygon detid="369266701" count="1" value="105" id="3511118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  internal  module  3  stereo Id 369266701 " fill="rgb(255,47,0)" points="930.378,1044.47 949.302,1044.47 949.302,1036.09 " />
<svg:polygon detid="369266957" count="1" value="105" id="3511119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  internal  module  3  stereo Id 369266957 " fill="rgb(255,47,0)" points="930.378,1036.09 949.302,1036.09 949.302,1027.71 " />
<svg:polygon detid="369267213" count="1" value="105" id="3511120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  internal  module  3  stereo Id 369267213 " fill="rgb(255,47,0)" points="930.378,1027.71 949.302,1027.71 949.302,1019.32 " />
<svg:polygon detid="369267469" count="1" value="105" id="3511121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  internal  module  3  stereo Id 369267469 " fill="rgb(255,47,0)" points="930.378,1019.32 949.302,1019.32 949.302,1010.94 " />
<svg:polygon detid="369267725" count="1" value="105" id="3511122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  internal  module  3  stereo Id 369267725 " fill="rgb(255,47,0)" points="930.378,1010.94 949.302,1010.94 949.302,1002.56 " />
<svg:polygon detid="369267981" count="1" value="105" id="3511124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  internal  module  3  stereo Id 369267981 " fill="rgb(255,47,0)" points="930.378,994.177 949.302,994.177 949.302,985.795 " />
<svg:polygon detid="369268237" count="1" value="105" id="3511125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  internal  module  3  stereo Id 369268237 " fill="rgb(255,47,0)" points="930.378,985.795 949.302,985.795 949.302,977.413 " />
<svg:polygon detid="369268493" count="1" value="105" id="3511126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  internal  module  3  stereo Id 369268493 " fill="rgb(255,47,0)" points="930.378,977.413 949.302,977.413 949.302,969.03 " />
<svg:polygon detid="369268749" count="1" value="105" id="3511127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  internal  module  3  stereo Id 369268749 " fill="rgb(255,47,0)" points="930.378,969.03 949.302,969.03 949.302,960.648 " />
<svg:polygon detid="369269005" count="1" value="105" id="3511128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  internal  module  3  stereo Id 369269005 " fill="rgb(255,47,0)" points="930.378,960.648 949.302,960.648 949.302,952.266 " />
<svg:polygon detid="369269261" count="1" value="105" id="3511129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  internal  module  3  stereo Id 369269261 " fill="rgb(255,47,0)" points="930.378,952.266 949.302,952.266 949.302,943.884 " />
<svg:polygon detid="369269517" count="1" value="105" id="3511130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  internal  module  3  stereo Id 369269517 " fill="rgb(255,47,0)" points="930.378,943.884 949.302,943.884 949.302,935.502 " />
<svg:polygon detid="369269773" count="1" value="105" id="3511131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  internal  module  3  stereo Id 369269773 " fill="rgb(255,47,0)" points="930.378,935.502 949.302,935.502 949.302,927.12 " />
<svg:polygon detid="369270029" count="1" value="105" id="3511132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  internal  module  3  stereo Id 369270029 " fill="rgb(255,47,0)" points="930.378,927.12 949.302,927.12 949.302,918.737 " />
<svg:polygon detid="369270285" count="1" value="105" id="3511134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  internal  module  3  stereo Id 369270285 " fill="rgb(255,47,0)" points="930.378,910.355 949.302,910.355 949.302,901.973 " />
<svg:polygon detid="369270541" count="1" value="105" id="3511135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  internal  module  3  stereo Id 369270541 " fill="rgb(255,47,0)" points="930.378,901.973 949.302,901.973 949.302,893.591 " />
<svg:polygon detid="369270797" count="1" value="105" id="3511136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  internal  module  3  stereo Id 369270797 " fill="rgb(255,47,0)" points="930.378,893.591 949.302,893.591 949.302,885.209 " />
<svg:polygon detid="369271053" count="1" value="105" id="3511137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  internal  module  3  stereo Id 369271053 " fill="rgb(255,47,0)" points="930.378,885.209 949.302,885.209 949.302,876.827 " />
<svg:polygon detid="369271309" count="1" value="105" id="3511138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  internal  module  3  stereo Id 369271309 " fill="rgb(255,47,0)" points="930.378,876.827 949.302,876.827 949.302,868.444 " />
<svg:polygon detid="369279246" count="1" value="105" id="3512001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  external  module  3   Id 369279246 " fill="rgb(255,47,0)" points="970.592,1178.58 951.668,1178.58 951.668,1186.97 " />
<svg:polygon detid="369279502" count="1" value="105" id="3512002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  external  module  3   Id 369279502 " fill="rgb(255,47,0)" points="970.592,1170.2 951.668,1170.2 951.668,1178.58 " />
<svg:polygon detid="369279758" count="1" value="105" id="3512003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  external  module  3   Id 369279758 " fill="rgb(255,47,0)" points="970.592,1161.82 951.668,1161.82 951.668,1170.2 " />
<svg:polygon detid="369280014" count="1" value="105" id="3512004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  external  module  3   Id 369280014 " fill="rgb(255,47,0)" points="970.592,1153.44 951.668,1153.44 951.668,1161.82 " />
<svg:polygon detid="369280270" count="1" value="105" id="3512005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  external  module  3   Id 369280270 " fill="rgb(255,47,0)" points="970.592,1145.06 951.668,1145.06 951.668,1153.44 " />
<svg:polygon detid="369280526" count="1" value="105" id="3512006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  external  module  3   Id 369280526 " fill="rgb(255,47,0)" points="970.592,1136.67 951.668,1136.67 951.668,1145.06 " />
<svg:polygon detid="369280782" count="1" value="105" id="3512007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  external  module  3   Id 369280782 " fill="rgb(255,47,0)" points="970.592,1128.29 951.668,1128.29 951.668,1136.67 " />
<svg:polygon detid="369281038" count="1" value="105" id="3512008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  external  module  3   Id 369281038 " fill="rgb(255,47,0)" points="970.592,1119.91 951.668,1119.91 951.668,1128.29 " />
<svg:polygon detid="369281294" count="1" value="105" id="3512009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  external  module  3   Id 369281294 " fill="rgb(255,47,0)" points="970.592,1111.53 951.668,1111.53 951.668,1119.91 " />
<svg:polygon detid="369281550" count="1" value="105" id="3512010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  external  module  3   Id 369281550 " fill="rgb(255,47,0)" points="970.592,1103.15 951.668,1103.15 951.668,1111.53 " />
<svg:polygon detid="369281806" count="1" value="105" id="3512011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  external  module  3   Id 369281806 " fill="rgb(255,47,0)" points="970.592,1094.76 951.668,1094.76 951.668,1103.15 " />
<svg:polygon detid="369282062" count="1" value="105" id="3512012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  external  module  3   Id 369282062 " fill="rgb(255,47,0)" points="970.592,1086.38 951.668,1086.38 951.668,1094.76 " />
<svg:polygon detid="369282318" count="1" value="105" id="3512013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  external  module  3   Id 369282318 " fill="rgb(255,47,0)" points="970.592,1078 951.668,1078 951.668,1086.38 " />
<svg:polygon detid="369282574" count="1" value="105" id="3512014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  external  module  3   Id 369282574 " fill="rgb(255,47,0)" points="970.592,1069.62 951.668,1069.62 951.668,1078 " />
<svg:polygon detid="369282830" count="1" value="105" id="3512015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  external  module  3   Id 369282830 " fill="rgb(255,47,0)" points="970.592,1061.23 951.668,1061.23 951.668,1069.62 " />
<svg:polygon detid="369283086" count="1" value="105" id="3512016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  external  module  3   Id 369283086 " fill="rgb(255,47,0)" points="970.592,1052.85 951.668,1052.85 951.668,1061.23 " />
<svg:polygon detid="369283342" count="1" value="105" id="3512017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  external  module  3   Id 369283342 " fill="rgb(255,47,0)" points="970.592,1044.47 951.668,1044.47 951.668,1052.85 " />
<svg:polygon detid="369283598" count="1" value="105" id="3512018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  external  module  3   Id 369283598 " fill="rgb(255,47,0)" points="970.592,1036.09 951.668,1036.09 951.668,1044.47 " />
<svg:polygon detid="369283854" count="1" value="105" id="3512019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  external  module  3   Id 369283854 " fill="rgb(255,47,0)" points="970.592,1027.71 951.668,1027.71 951.668,1036.09 " />
<svg:polygon detid="369284110" count="1" value="105" id="3512020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  external  module  3   Id 369284110 " fill="rgb(255,47,0)" points="970.592,1019.32 951.668,1019.32 951.668,1027.71 " />
<svg:polygon detid="369284366" count="1" value="105" id="3512021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  external  module  3   Id 369284366 " fill="rgb(255,47,0)" points="970.592,1010.94 951.668,1010.94 951.668,1019.32 " />
<svg:polygon detid="369284622" count="1" value="105" id="3512022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  external  module  3   Id 369284622 " fill="rgb(255,47,0)" points="970.592,1002.56 951.668,1002.56 951.668,1010.94 " />
<svg:polygon detid="369284878" count="1" value="105" id="3512023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  external  module  3   Id 369284878 " fill="rgb(255,47,0)" points="970.592,994.177 951.668,994.177 951.668,1002.56 " />
<svg:polygon detid="369285134" count="1" value="105" id="3512024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  external  module  3   Id 369285134 " fill="rgb(255,47,0)" points="970.592,985.795 951.668,985.795 951.668,994.177 " />
<svg:polygon detid="369285390" count="1" value="105" id="3512025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  external  module  3   Id 369285390 " fill="rgb(255,47,0)" points="970.592,977.413 951.668,977.413 951.668,985.795 " />
<svg:polygon detid="369285646" count="1" value="105" id="3512026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  external  module  3   Id 369285646 " fill="rgb(255,47,0)" points="970.592,969.03 951.668,969.03 951.668,977.413 " />
<svg:polygon detid="369285902" count="1" value="105" id="3512027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  external  module  3   Id 369285902 " fill="rgb(255,47,0)" points="970.592,960.648 951.668,960.648 951.668,969.03 " />
<svg:polygon detid="369286158" count="1" value="105" id="3512028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  external  module  3   Id 369286158 " fill="rgb(255,47,0)" points="970.592,952.266 951.668,952.266 951.668,960.648 " />
<svg:polygon detid="369286414" count="1" value="105" id="3512029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  external  module  3   Id 369286414 " fill="rgb(255,47,0)" points="970.592,943.884 951.668,943.884 951.668,952.266 " />
<svg:polygon detid="369286670" count="1" value="105" id="3512030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  external  module  3   Id 369286670 " fill="rgb(255,47,0)" points="970.592,935.502 951.668,935.502 951.668,943.884 " />
<svg:polygon detid="369286926" count="1" value="105" id="3512031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  external  module  3   Id 369286926 " fill="rgb(255,47,0)" points="970.592,927.12 951.668,927.12 951.668,935.502 " />
<svg:polygon detid="369287182" count="1" value="105" id="3512032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  external  module  3   Id 369287182 " fill="rgb(255,47,0)" points="970.592,918.737 951.668,918.737 951.668,927.12 " />
<svg:polygon detid="369287438" count="1" value="105" id="3512033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  external  module  3   Id 369287438 " fill="rgb(255,47,0)" points="970.592,910.355 951.668,910.355 951.668,918.737 " />
<svg:polygon detid="369287694" count="1" value="105" id="3512034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  external  module  3   Id 369287694 " fill="rgb(255,47,0)" points="970.592,901.973 951.668,901.973 951.668,910.355 " />
<svg:polygon detid="369287950" count="1" value="105" id="3512035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 pos  external  module  3   Id 369287950 " fill="rgb(255,47,0)" points="970.592,893.591 951.668,893.591 951.668,901.973 " />
<svg:polygon detid="369288206" count="1" value="105" id="3512036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 pos  external  module  3   Id 369288206 " fill="rgb(255,47,0)" points="970.592,885.209 951.668,885.209 951.668,893.591 " />
<svg:polygon detid="369288462" count="1" value="105" id="3512037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 pos  external  module  3   Id 369288462 " fill="rgb(255,47,0)" points="970.592,876.827 951.668,876.827 951.668,885.209 " />
<svg:polygon detid="369288718" count="1" value="105" id="3512038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 pos  external  module  3   Id 369288718 " fill="rgb(255,47,0)" points="970.592,868.444 951.668,868.444 951.668,876.827 " />
<svg:polygon detid="369279245" count="1" value="105" id="3512101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 1 pos  external  module  3  stereo Id 369279245 " fill="rgb(255,47,0)" points="951.668,1186.97 970.592,1186.97 970.592,1178.58 " />
<svg:polygon detid="369279501" count="1" value="105" id="3512102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 2 pos  external  module  3  stereo Id 369279501 " fill="rgb(255,47,0)" points="951.668,1178.58 970.592,1178.58 970.592,1170.2 " />
<svg:polygon detid="369279757" count="1" value="105" id="3512103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 3 pos  external  module  3  stereo Id 369279757 " fill="rgb(255,47,0)" points="951.668,1170.2 970.592,1170.2 970.592,1161.82 " />
<svg:polygon detid="369280013" count="1" value="105" id="3512104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 4 pos  external  module  3  stereo Id 369280013 " fill="rgb(255,47,0)" points="951.668,1161.82 970.592,1161.82 970.592,1153.44 " />
<svg:polygon detid="369280269" count="1" value="105" id="3512105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 5 pos  external  module  3  stereo Id 369280269 " fill="rgb(255,47,0)" points="951.668,1153.44 970.592,1153.44 970.592,1145.06 " />
<svg:polygon detid="369280525" count="1" value="105" id="3512106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 6 pos  external  module  3  stereo Id 369280525 " fill="rgb(255,47,0)" points="951.668,1145.06 970.592,1145.06 970.592,1136.67 " />
<svg:polygon detid="369280781" count="1" value="105" id="3512107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 7 pos  external  module  3  stereo Id 369280781 " fill="rgb(255,47,0)" points="951.668,1136.67 970.592,1136.67 970.592,1128.29 " />
<svg:polygon detid="369281037" count="1" value="105" id="3512108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 8 pos  external  module  3  stereo Id 369281037 " fill="rgb(255,47,0)" points="951.668,1128.29 970.592,1128.29 970.592,1119.91 " />
<svg:polygon detid="369281293" count="1" value="105" id="3512109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 9 pos  external  module  3  stereo Id 369281293 " fill="rgb(255,47,0)" points="951.668,1119.91 970.592,1119.91 970.592,1111.53 " />
<svg:polygon detid="369281549" count="1" value="105" id="3512110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 10 pos  external  module  3  stereo Id 369281549 " fill="rgb(255,47,0)" points="951.668,1111.53 970.592,1111.53 970.592,1103.15 " />
<svg:polygon detid="369281805" count="1" value="105" id="3512111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 11 pos  external  module  3  stereo Id 369281805 " fill="rgb(255,47,0)" points="951.668,1103.15 970.592,1103.15 970.592,1094.76 " />
<svg:polygon detid="369282061" count="1" value="105" id="3512112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 12 pos  external  module  3  stereo Id 369282061 " fill="rgb(255,47,0)" points="951.668,1094.76 970.592,1094.76 970.592,1086.38 " />
<svg:polygon detid="369282317" count="1" value="105" id="3512113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 13 pos  external  module  3  stereo Id 369282317 " fill="rgb(255,47,0)" points="951.668,1086.38 970.592,1086.38 970.592,1078 " />
<svg:polygon detid="369282573" count="1" value="105" id="3512114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 14 pos  external  module  3  stereo Id 369282573 " fill="rgb(255,47,0)" points="951.668,1078 970.592,1078 970.592,1069.62 " />
<svg:polygon detid="369282829" count="1" value="105" id="3512115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 15 pos  external  module  3  stereo Id 369282829 " fill="rgb(255,47,0)" points="951.668,1069.62 970.592,1069.62 970.592,1061.23 " />
<svg:polygon detid="369283085" count="1" value="105" id="3512116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 16 pos  external  module  3  stereo Id 369283085 " fill="rgb(255,47,0)" points="951.668,1061.23 970.592,1061.23 970.592,1052.85 " />
<svg:polygon detid="369283341" count="1" value="105" id="3512117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 17 pos  external  module  3  stereo Id 369283341 " fill="rgb(255,47,0)" points="951.668,1052.85 970.592,1052.85 970.592,1044.47 " />
<svg:polygon detid="369283597" count="1" value="105" id="3512118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 18 pos  external  module  3  stereo Id 369283597 " fill="rgb(255,47,0)" points="951.668,1044.47 970.592,1044.47 970.592,1036.09 " />
<svg:polygon detid="369283853" count="1" value="105" id="3512119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 19 pos  external  module  3  stereo Id 369283853 " fill="rgb(255,47,0)" points="951.668,1036.09 970.592,1036.09 970.592,1027.71 " />
<svg:polygon detid="369284109" count="1" value="105" id="3512120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 20 pos  external  module  3  stereo Id 369284109 " fill="rgb(255,47,0)" points="951.668,1027.71 970.592,1027.71 970.592,1019.32 " />
<svg:polygon detid="369284365" count="1" value="105" id="3512121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 21 pos  external  module  3  stereo Id 369284365 " fill="rgb(255,47,0)" points="951.668,1019.32 970.592,1019.32 970.592,1010.94 " />
<svg:polygon detid="369284621" count="1" value="105" id="3512122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 22 pos  external  module  3  stereo Id 369284621 " fill="rgb(255,47,0)" points="951.668,1010.94 970.592,1010.94 970.592,1002.56 " />
<svg:polygon detid="369284877" count="1" value="105" id="3512123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 23 pos  external  module  3  stereo Id 369284877 " fill="rgb(255,47,0)" points="951.668,1002.56 970.592,1002.56 970.592,994.177 " />
<svg:polygon detid="369285133" count="1" value="105" id="3512124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 24 pos  external  module  3  stereo Id 369285133 " fill="rgb(255,47,0)" points="951.668,994.177 970.592,994.177 970.592,985.795 " />
<svg:polygon detid="369285389" count="1" value="105" id="3512125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 25 pos  external  module  3  stereo Id 369285389 " fill="rgb(255,47,0)" points="951.668,985.795 970.592,985.795 970.592,977.413 " />
<svg:polygon detid="369285645" count="1" value="105" id="3512126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 26 pos  external  module  3  stereo Id 369285645 " fill="rgb(255,47,0)" points="951.668,977.413 970.592,977.413 970.592,969.03 " />
<svg:polygon detid="369285901" count="1" value="105" id="3512127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 27 pos  external  module  3  stereo Id 369285901 " fill="rgb(255,47,0)" points="951.668,969.03 970.592,969.03 970.592,960.648 " />
<svg:polygon detid="369286157" count="1" value="105" id="3512128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 28 pos  external  module  3  stereo Id 369286157 " fill="rgb(255,47,0)" points="951.668,960.648 970.592,960.648 970.592,952.266 " />
<svg:polygon detid="369286413" count="1" value="105" id="3512129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 29 pos  external  module  3  stereo Id 369286413 " fill="rgb(255,47,0)" points="951.668,952.266 970.592,952.266 970.592,943.884 " />
<svg:polygon detid="369286669" count="1" value="105" id="3512130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 30 pos  external  module  3  stereo Id 369286669 " fill="rgb(255,47,0)" points="951.668,943.884 970.592,943.884 970.592,935.502 " />
<svg:polygon detid="369286925" count="1" value="105" id="3512131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 31 pos  external  module  3  stereo Id 369286925 " fill="rgb(255,47,0)" points="951.668,935.502 970.592,935.502 970.592,927.12 " />
<svg:polygon detid="369287181" count="1" value="105" id="3512132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 32 pos  external  module  3  stereo Id 369287181 " fill="rgb(255,47,0)" points="951.668,927.12 970.592,927.12 970.592,918.737 " />
<svg:polygon detid="369287437" count="1" value="105" id="3512133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 33 pos  external  module  3  stereo Id 369287437 " fill="rgb(255,47,0)" points="951.668,918.737 970.592,918.737 970.592,910.355 " />
<svg:polygon detid="369287693" count="1" value="105" id="3512134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 34 pos  external  module  3  stereo Id 369287693 " fill="rgb(255,47,0)" points="951.668,910.355 970.592,910.355 970.592,901.973 " />
<svg:polygon detid="369287949" count="1" value="105" id="3512135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 35 pos  external  module  3  stereo Id 369287949 " fill="rgb(255,47,0)" points="951.668,901.973 970.592,901.973 970.592,893.591 " />
<svg:polygon detid="369288205" count="1" value="105" id="3512136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 36 pos  external  module  3  stereo Id 369288205 " fill="rgb(255,47,0)" points="951.668,893.591 970.592,893.591 970.592,885.209 " />
<svg:polygon detid="369288461" count="1" value="105" id="3512137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 37 pos  external  module  3  stereo Id 369288461 " fill="rgb(255,47,0)" points="951.668,885.209 970.592,885.209 970.592,876.827 " />
<svg:polygon detid="369288717" count="1" value="105" id="3512138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 2 string 38 pos  external  module  3  stereo Id 369288717 " fill="rgb(255,47,0)" points="951.668,876.827 970.592,876.827 970.592,868.444 " />
<svg:polygon detid="369312004" count="1" value="108" id="3601001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 neg  external  module  1   Id 369312004 " fill="rgb(255,41,0)" points="377.48,1588.71 396.404,1588.71 396.404,1582.08 377.48,1582.08 " />
<svg:polygon detid="369312260" count="1" value="108" id="3601002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 neg  external  module  1   Id 369312260 " fill="rgb(255,41,0)" points="377.48,1582.08 396.404,1582.08 396.404,1575.45 377.48,1575.45 " />
<svg:polygon detid="369312516" count="1" value="108" id="3601003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 neg  external  module  1   Id 369312516 " fill="rgb(255,41,0)" points="377.48,1575.45 396.404,1575.45 396.404,1568.81 377.48,1568.81 " />
<svg:polygon detid="369312772" count="1" value="108" id="3601004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 neg  external  module  1   Id 369312772 " fill="rgb(255,41,0)" points="377.48,1568.81 396.404,1568.81 396.404,1562.18 377.48,1562.18 " />
<svg:polygon detid="369313028" count="1" value="108" id="3601005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 neg  external  module  1   Id 369313028 " fill="rgb(255,41,0)" points="377.48,1562.18 396.404,1562.18 396.404,1555.54 377.48,1555.54 " />
<svg:polygon detid="369313284" count="1" value="108" id="3601006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 neg  external  module  1   Id 369313284 " fill="rgb(255,41,0)" points="377.48,1555.54 396.404,1555.54 396.404,1548.91 377.48,1548.91 " />
<svg:polygon detid="369313540" count="1" value="108" id="3601007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 neg  external  module  1   Id 369313540 " fill="rgb(255,41,0)" points="377.48,1548.91 396.404,1548.91 396.404,1542.27 377.48,1542.27 " />
<svg:polygon detid="369313796" count="1" value="108" id="3601008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 neg  external  module  1   Id 369313796 " fill="rgb(255,41,0)" points="377.48,1542.27 396.404,1542.27 396.404,1535.64 377.48,1535.64 " />
<svg:polygon detid="369314052" count="1" value="108" id="3601009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 neg  external  module  1   Id 369314052 " fill="rgb(255,41,0)" points="377.48,1535.64 396.404,1535.64 396.404,1529 377.48,1529 " />
<svg:polygon detid="369314308" count="1" value="108" id="3601010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 neg  external  module  1   Id 369314308 " fill="rgb(255,41,0)" points="377.48,1529 396.404,1529 396.404,1522.37 377.48,1522.37 " />
<svg:polygon detid="369314564" count="1" value="108" id="3601011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 neg  external  module  1   Id 369314564 " fill="rgb(255,41,0)" points="377.48,1522.37 396.404,1522.37 396.404,1515.74 377.48,1515.74 " />
<svg:polygon detid="369314820" count="1" value="108" id="3601012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 neg  external  module  1   Id 369314820 " fill="rgb(255,41,0)" points="377.48,1515.74 396.404,1515.74 396.404,1509.1 377.48,1509.1 " />
<svg:polygon detid="369315076" count="1" value="108" id="3601013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 neg  external  module  1   Id 369315076 " fill="rgb(255,41,0)" points="377.48,1509.1 396.404,1509.1 396.404,1502.47 377.48,1502.47 " />
<svg:polygon detid="369315332" count="1" value="108" id="3601014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 neg  external  module  1   Id 369315332 " fill="rgb(255,41,0)" points="377.48,1502.47 396.404,1502.47 396.404,1495.83 377.48,1495.83 " />
<svg:polygon detid="369315588" count="1" value="108" id="3601015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 neg  external  module  1   Id 369315588 " fill="rgb(255,41,0)" points="377.48,1495.83 396.404,1495.83 396.404,1489.2 377.48,1489.2 " />
<svg:polygon detid="369315844" count="1" value="108" id="3601016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 neg  external  module  1   Id 369315844 " fill="rgb(255,41,0)" points="377.48,1489.2 396.404,1489.2 396.404,1482.56 377.48,1482.56 " />
<svg:polygon detid="369316100" count="1" value="108" id="3601017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 neg  external  module  1   Id 369316100 " fill="rgb(255,41,0)" points="377.48,1482.56 396.404,1482.56 396.404,1475.93 377.48,1475.93 " />
<svg:polygon detid="369316356" count="1" value="108" id="3601018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 neg  external  module  1   Id 369316356 " fill="rgb(255,41,0)" points="377.48,1475.93 396.404,1475.93 396.404,1469.29 377.48,1469.29 " />
<svg:polygon detid="369316612" count="1" value="108" id="3601019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 neg  external  module  1   Id 369316612 " fill="rgb(255,41,0)" points="377.48,1469.29 396.404,1469.29 396.404,1462.66 377.48,1462.66 " />
<svg:polygon detid="369316868" count="1" value="108" id="3601020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 neg  external  module  1   Id 369316868 " fill="rgb(255,41,0)" points="377.48,1462.66 396.404,1462.66 396.404,1456.02 377.48,1456.02 " />
<svg:polygon detid="369317124" count="1" value="108" id="3601021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 neg  external  module  1   Id 369317124 " fill="rgb(255,41,0)" points="377.48,1456.02 396.404,1456.02 396.404,1449.39 377.48,1449.39 " />
<svg:polygon detid="369317380" count="1" value="108" id="3601022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 neg  external  module  1   Id 369317380 " fill="rgb(255,41,0)" points="377.48,1449.39 396.404,1449.39 396.404,1442.76 377.48,1442.76 " />
<svg:polygon detid="369317636" count="1" value="108" id="3601023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 neg  external  module  1   Id 369317636 " fill="rgb(255,41,0)" points="377.48,1442.76 396.404,1442.76 396.404,1436.12 377.48,1436.12 " />
<svg:polygon detid="369317892" count="1" value="108" id="3601024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 neg  external  module  1   Id 369317892 " fill="rgb(255,41,0)" points="377.48,1436.12 396.404,1436.12 396.404,1429.49 377.48,1429.49 " />
<svg:polygon detid="369318148" count="1" value="108" id="3601025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 neg  external  module  1   Id 369318148 " fill="rgb(255,41,0)" points="377.48,1429.49 396.404,1429.49 396.404,1422.85 377.48,1422.85 " />
<svg:polygon detid="369318404" count="1" value="108" id="3601026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 neg  external  module  1   Id 369318404 " fill="rgb(255,41,0)" points="377.48,1422.85 396.404,1422.85 396.404,1416.22 377.48,1416.22 " />
<svg:polygon detid="369318660" count="1" value="108" id="3601027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 neg  external  module  1   Id 369318660 " fill="rgb(255,41,0)" points="377.48,1416.22 396.404,1416.22 396.404,1409.58 377.48,1409.58 " />
<svg:polygon detid="369318916" count="1" value="108" id="3601028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 neg  external  module  1   Id 369318916 " fill="rgb(255,41,0)" points="377.48,1409.58 396.404,1409.58 396.404,1402.95 377.48,1402.95 " />
<svg:polygon detid="369319172" count="1" value="108" id="3601029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 neg  external  module  1   Id 369319172 " fill="rgb(255,41,0)" points="377.48,1402.95 396.404,1402.95 396.404,1396.31 377.48,1396.31 " />
<svg:polygon detid="369319428" count="1" value="108" id="3601030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 neg  external  module  1   Id 369319428 " fill="rgb(255,41,0)" points="377.48,1396.31 396.404,1396.31 396.404,1389.68 377.48,1389.68 " />
<svg:polygon detid="369319684" count="1" value="108" id="3601031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 neg  external  module  1   Id 369319684 " fill="rgb(255,41,0)" points="377.48,1389.68 396.404,1389.68 396.404,1383.05 377.48,1383.05 " />
<svg:polygon detid="369319940" count="1" value="108" id="3601032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 neg  external  module  1   Id 369319940 " fill="rgb(255,41,0)" points="377.48,1383.05 396.404,1383.05 396.404,1376.41 377.48,1376.41 " />
<svg:polygon detid="369320196" count="1" value="108" id="3601033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 neg  external  module  1   Id 369320196 " fill="rgb(255,41,0)" points="377.48,1376.41 396.404,1376.41 396.404,1369.78 377.48,1369.78 " />
<svg:polygon detid="369320452" count="1" value="108" id="3601034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 neg  external  module  1   Id 369320452 " fill="rgb(255,41,0)" points="377.48,1369.78 396.404,1369.78 396.404,1363.14 377.48,1363.14 " />
<svg:polygon detid="369320708" count="1" value="108" id="3601035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 neg  external  module  1   Id 369320708 " fill="rgb(255,41,0)" points="377.48,1363.14 396.404,1363.14 396.404,1356.51 377.48,1356.51 " />
<svg:polygon detid="369320964" count="1" value="108" id="3601036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 neg  external  module  1   Id 369320964 " fill="rgb(255,41,0)" points="377.48,1356.51 396.404,1356.51 396.404,1349.87 377.48,1349.87 " />
<svg:polygon detid="369321220" count="1" value="108" id="3601037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 neg  external  module  1   Id 369321220 " fill="rgb(255,41,0)" points="377.48,1349.87 396.404,1349.87 396.404,1343.24 377.48,1343.24 " />
<svg:polygon detid="369321476" count="1" value="108" id="3601038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 neg  external  module  1   Id 369321476 " fill="rgb(255,41,0)" points="377.48,1343.24 396.404,1343.24 396.404,1336.6 377.48,1336.6 " />
<svg:polygon detid="369321732" count="1" value="108" id="3601039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 neg  external  module  1   Id 369321732 " fill="rgb(255,41,0)" points="377.48,1336.6 396.404,1336.6 396.404,1329.97 377.48,1329.97 " />
<svg:polygon detid="369321988" count="1" value="108" id="3601040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 neg  external  module  1   Id 369321988 " fill="rgb(255,41,0)" points="377.48,1329.97 396.404,1329.97 396.404,1323.34 377.48,1323.34 " />
<svg:polygon detid="369322244" count="1" value="108" id="3601041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 neg  external  module  1   Id 369322244 " fill="rgb(255,41,0)" points="377.48,1323.34 396.404,1323.34 396.404,1316.7 377.48,1316.7 " />
<svg:polygon detid="369322500" count="1" value="108" id="3601042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 neg  external  module  1   Id 369322500 " fill="rgb(255,41,0)" points="377.48,1316.7 396.404,1316.7 396.404,1310.07 377.48,1310.07 " />
<svg:polygon detid="369322756" count="1" value="108" id="3601043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 neg  external  module  1   Id 369322756 " fill="rgb(255,41,0)" points="377.48,1310.07 396.404,1310.07 396.404,1303.43 377.48,1303.43 " />
<svg:polygon detid="369323012" count="1" value="108" id="3601044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 neg  external  module  1   Id 369323012 " fill="rgb(255,41,0)" points="377.48,1303.43 396.404,1303.43 396.404,1296.8 377.48,1296.8 " />
<svg:polygon detid="369323268" count="1" value="108" id="3601045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 45 neg  external  module  1   Id 369323268 " fill="rgb(255,41,0)" points="377.48,1296.8 396.404,1296.8 396.404,1290.16 377.48,1290.16 " />
<svg:polygon detid="369323524" count="1" value="108" id="3601046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 46 neg  external  module  1   Id 369323524 " fill="rgb(255,41,0)" points="377.48,1290.16 396.404,1290.16 396.404,1283.53 377.48,1283.53 " />
<svg:polygon detid="369295620" count="1" value="108" id="3602001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 neg  internal  module  1   Id 369295620 " fill="rgb(255,41,0)" points="398.77,1588.71 417.694,1588.71 417.694,1582.08 398.77,1582.08 " />
<svg:polygon detid="369295876" count="1" value="108" id="3602002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 neg  internal  module  1   Id 369295876 " fill="rgb(255,41,0)" points="398.77,1582.08 417.694,1582.08 417.694,1575.45 398.77,1575.45 " />
<svg:polygon detid="369296132" count="1" value="108" id="3602003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 neg  internal  module  1   Id 369296132 " fill="rgb(255,41,0)" points="398.77,1575.45 417.694,1575.45 417.694,1568.81 398.77,1568.81 " />
<svg:polygon detid="369296388" count="1" value="108" id="3602004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 neg  internal  module  1   Id 369296388 " fill="rgb(255,41,0)" points="398.77,1568.81 417.694,1568.81 417.694,1562.18 398.77,1562.18 " />
<svg:polygon detid="369296644" count="1" value="108" id="3602005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 neg  internal  module  1   Id 369296644 " fill="rgb(255,41,0)" points="398.77,1562.18 417.694,1562.18 417.694,1555.54 398.77,1555.54 " />
<svg:polygon detid="369296900" count="1" value="108" id="3602006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 neg  internal  module  1   Id 369296900 " fill="rgb(255,41,0)" points="398.77,1555.54 417.694,1555.54 417.694,1548.91 398.77,1548.91 " />
<svg:polygon detid="369297156" count="1" value="108" id="3602007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 neg  internal  module  1   Id 369297156 " fill="rgb(255,41,0)" points="398.77,1548.91 417.694,1548.91 417.694,1542.27 398.77,1542.27 " />
<svg:polygon detid="369297412" count="1" value="108" id="3602008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 neg  internal  module  1   Id 369297412 " fill="rgb(255,41,0)" points="398.77,1542.27 417.694,1542.27 417.694,1535.64 398.77,1535.64 " />
<svg:polygon detid="369297668" count="1" value="108" id="3602010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 neg  internal  module  1   Id 369297668 " fill="rgb(255,41,0)" points="398.77,1529 417.694,1529 417.694,1522.37 398.77,1522.37 " />
<svg:polygon detid="369297924" count="1" value="108" id="3602011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 neg  internal  module  1   Id 369297924 " fill="rgb(255,41,0)" points="398.77,1522.37 417.694,1522.37 417.694,1515.74 398.77,1515.74 " />
<svg:polygon detid="369298180" count="1" value="108" id="3602012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 neg  internal  module  1   Id 369298180 " fill="rgb(255,41,0)" points="398.77,1515.74 417.694,1515.74 417.694,1509.1 398.77,1509.1 " />
<svg:polygon detid="369298436" count="1" value="108" id="3602013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 neg  internal  module  1   Id 369298436 " fill="rgb(255,41,0)" points="398.77,1509.1 417.694,1509.1 417.694,1502.47 398.77,1502.47 " />
<svg:polygon detid="369298692" count="1" value="108" id="3602014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 neg  internal  module  1   Id 369298692 " fill="rgb(255,41,0)" points="398.77,1502.47 417.694,1502.47 417.694,1495.83 398.77,1495.83 " />
<svg:polygon detid="369298948" count="1" value="108" id="3602015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 neg  internal  module  1   Id 369298948 " fill="rgb(255,41,0)" points="398.77,1495.83 417.694,1495.83 417.694,1489.2 398.77,1489.2 " />
<svg:polygon detid="369299204" count="1" value="108" id="3602016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 neg  internal  module  1   Id 369299204 " fill="rgb(255,41,0)" points="398.77,1489.2 417.694,1489.2 417.694,1482.56 398.77,1482.56 " />
<svg:polygon detid="369299460" count="1" value="108" id="3602017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 neg  internal  module  1   Id 369299460 " fill="rgb(255,41,0)" points="398.77,1482.56 417.694,1482.56 417.694,1475.93 398.77,1475.93 " />
<svg:polygon detid="369299716" count="1" value="108" id="3602018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 neg  internal  module  1   Id 369299716 " fill="rgb(255,41,0)" points="398.77,1475.93 417.694,1475.93 417.694,1469.29 398.77,1469.29 " />
<svg:polygon detid="369299972" count="1" value="108" id="3602019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 neg  internal  module  1   Id 369299972 " fill="rgb(255,41,0)" points="398.77,1469.29 417.694,1469.29 417.694,1462.66 398.77,1462.66 " />
<svg:polygon detid="369300228" count="1" value="108" id="3602020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 neg  internal  module  1   Id 369300228 " fill="rgb(255,41,0)" points="398.77,1462.66 417.694,1462.66 417.694,1456.02 398.77,1456.02 " />
<svg:polygon detid="369300484" count="1" value="108" id="3602021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 neg  internal  module  1   Id 369300484 " fill="rgb(255,41,0)" points="398.77,1456.02 417.694,1456.02 417.694,1449.39 398.77,1449.39 " />
<svg:polygon detid="369300740" count="1" value="108" id="3602022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 neg  internal  module  1   Id 369300740 " fill="rgb(255,41,0)" points="398.77,1449.39 417.694,1449.39 417.694,1442.76 398.77,1442.76 " />
<svg:polygon detid="369300996" count="1" value="108" id="3602023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 neg  internal  module  1   Id 369300996 " fill="rgb(255,41,0)" points="398.77,1442.76 417.694,1442.76 417.694,1436.12 398.77,1436.12 " />
<svg:polygon detid="369301252" count="1" value="108" id="3602024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 neg  internal  module  1   Id 369301252 " fill="rgb(255,41,0)" points="398.77,1436.12 417.694,1436.12 417.694,1429.49 398.77,1429.49 " />
<svg:polygon detid="369301508" count="1" value="108" id="3602025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 neg  internal  module  1   Id 369301508 " fill="rgb(255,41,0)" points="398.77,1429.49 417.694,1429.49 417.694,1422.85 398.77,1422.85 " />
<svg:polygon detid="369301764" count="1" value="108" id="3602026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 neg  internal  module  1   Id 369301764 " fill="rgb(255,41,0)" points="398.77,1422.85 417.694,1422.85 417.694,1416.22 398.77,1416.22 " />
<svg:polygon detid="369302020" count="1" value="108" id="3602027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 neg  internal  module  1   Id 369302020 " fill="rgb(255,41,0)" points="398.77,1416.22 417.694,1416.22 417.694,1409.58 398.77,1409.58 " />
<svg:polygon detid="369302276" count="1" value="108" id="3602028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 neg  internal  module  1   Id 369302276 " fill="rgb(255,41,0)" points="398.77,1409.58 417.694,1409.58 417.694,1402.95 398.77,1402.95 " />
<svg:polygon detid="369302532" count="1" value="108" id="3602029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 neg  internal  module  1   Id 369302532 " fill="rgb(255,41,0)" points="398.77,1402.95 417.694,1402.95 417.694,1396.31 398.77,1396.31 " />
<svg:polygon detid="369302788" count="1" value="108" id="3602030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 neg  internal  module  1   Id 369302788 " fill="rgb(255,41,0)" points="398.77,1396.31 417.694,1396.31 417.694,1389.68 398.77,1389.68 " />
<svg:polygon detid="369303044" count="1" value="108" id="3602031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 neg  internal  module  1   Id 369303044 " fill="rgb(255,41,0)" points="398.77,1389.68 417.694,1389.68 417.694,1383.05 398.77,1383.05 " />
<svg:polygon detid="369303300" count="1" value="108" id="3602033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 neg  internal  module  1   Id 369303300 " fill="rgb(255,41,0)" points="398.77,1376.41 417.694,1376.41 417.694,1369.78 398.77,1369.78 " />
<svg:polygon detid="369303556" count="1" value="108" id="3602034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 neg  internal  module  1   Id 369303556 " fill="rgb(255,41,0)" points="398.77,1369.78 417.694,1369.78 417.694,1363.14 398.77,1363.14 " />
<svg:polygon detid="369303812" count="1" value="108" id="3602035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 neg  internal  module  1   Id 369303812 " fill="rgb(255,41,0)" points="398.77,1363.14 417.694,1363.14 417.694,1356.51 398.77,1356.51 " />
<svg:polygon detid="369304068" count="1" value="108" id="3602036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 neg  internal  module  1   Id 369304068 " fill="rgb(255,41,0)" points="398.77,1356.51 417.694,1356.51 417.694,1349.87 398.77,1349.87 " />
<svg:polygon detid="369304324" count="1" value="108" id="3602037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 neg  internal  module  1   Id 369304324 " fill="rgb(255,41,0)" points="398.77,1349.87 417.694,1349.87 417.694,1343.24 398.77,1343.24 " />
<svg:polygon detid="369304580" count="1" value="108" id="3602038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 neg  internal  module  1   Id 369304580 " fill="rgb(255,41,0)" points="398.77,1343.24 417.694,1343.24 417.694,1336.6 398.77,1336.6 " />
<svg:polygon detid="369304836" count="1" value="108" id="3602039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 neg  internal  module  1   Id 369304836 " fill="rgb(255,41,0)" points="398.77,1336.6 417.694,1336.6 417.694,1329.97 398.77,1329.97 " />
<svg:polygon detid="369305092" count="1" value="108" id="3602040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 neg  internal  module  1   Id 369305092 " fill="rgb(255,41,0)" points="398.77,1329.97 417.694,1329.97 417.694,1323.34 398.77,1323.34 " />
<svg:polygon detid="369305348" count="1" value="108" id="3602041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 neg  internal  module  1   Id 369305348 " fill="rgb(255,41,0)" points="398.77,1323.34 417.694,1323.34 417.694,1316.7 398.77,1316.7 " />
<svg:polygon detid="369305604" count="1" value="108" id="3602042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 neg  internal  module  1   Id 369305604 " fill="rgb(255,41,0)" points="398.77,1316.7 417.694,1316.7 417.694,1310.07 398.77,1310.07 " />
<svg:polygon detid="369305860" count="1" value="108" id="3602043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 neg  internal  module  1   Id 369305860 " fill="rgb(255,41,0)" points="398.77,1310.07 417.694,1310.07 417.694,1303.43 398.77,1303.43 " />
<svg:polygon detid="369306116" count="1" value="108" id="3602044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 neg  internal  module  1   Id 369306116 " fill="rgb(255,41,0)" points="398.77,1303.43 417.694,1303.43 417.694,1296.8 398.77,1296.8 " />
<svg:polygon detid="369306372" count="1" value="108" id="3602045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 neg  internal  module  1   Id 369306372 " fill="rgb(255,41,0)" points="398.77,1296.8 417.694,1296.8 417.694,1290.16 398.77,1290.16 " />
<svg:polygon detid="369306628" count="1" value="108" id="3602046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 neg  internal  module  1   Id 369306628 " fill="rgb(255,41,0)" points="398.77,1290.16 417.694,1290.16 417.694,1283.53 398.77,1283.53 " />
<svg:polygon detid="369312008" count="1" value="108" id="3603001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 neg  external  module  2   Id 369312008 " fill="rgb(255,41,0)" points="420.06,1588.71 438.984,1588.71 438.984,1582.08 420.06,1582.08 " />
<svg:polygon detid="369312264" count="1" value="108" id="3603002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 neg  external  module  2   Id 369312264 " fill="rgb(255,41,0)" points="420.06,1582.08 438.984,1582.08 438.984,1575.45 420.06,1575.45 " />
<svg:polygon detid="369312520" count="1" value="108" id="3603003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 neg  external  module  2   Id 369312520 " fill="rgb(255,41,0)" points="420.06,1575.45 438.984,1575.45 438.984,1568.81 420.06,1568.81 " />
<svg:polygon detid="369312776" count="1" value="108" id="3603004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 neg  external  module  2   Id 369312776 " fill="rgb(255,41,0)" points="420.06,1568.81 438.984,1568.81 438.984,1562.18 420.06,1562.18 " />
<svg:polygon detid="369313032" count="1" value="108" id="3603005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 neg  external  module  2   Id 369313032 " fill="rgb(255,41,0)" points="420.06,1562.18 438.984,1562.18 438.984,1555.54 420.06,1555.54 " />
<svg:polygon detid="369313288" count="1" value="108" id="3603006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 neg  external  module  2   Id 369313288 " fill="rgb(255,41,0)" points="420.06,1555.54 438.984,1555.54 438.984,1548.91 420.06,1548.91 " />
<svg:polygon detid="369313544" count="1" value="108" id="3603007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 neg  external  module  2   Id 369313544 " fill="rgb(255,41,0)" points="420.06,1548.91 438.984,1548.91 438.984,1542.27 420.06,1542.27 " />
<svg:polygon detid="369313800" count="1" value="108" id="3603008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 neg  external  module  2   Id 369313800 " fill="rgb(255,41,0)" points="420.06,1542.27 438.984,1542.27 438.984,1535.64 420.06,1535.64 " />
<svg:polygon detid="369314056" count="1" value="108" id="3603009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 neg  external  module  2   Id 369314056 " fill="rgb(255,41,0)" points="420.06,1535.64 438.984,1535.64 438.984,1529 420.06,1529 " />
<svg:polygon detid="369314312" count="1" value="108" id="3603010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 neg  external  module  2   Id 369314312 " fill="rgb(255,41,0)" points="420.06,1529 438.984,1529 438.984,1522.37 420.06,1522.37 " />
<svg:polygon detid="369314568" count="1" value="108" id="3603011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 neg  external  module  2   Id 369314568 " fill="rgb(255,41,0)" points="420.06,1522.37 438.984,1522.37 438.984,1515.74 420.06,1515.74 " />
<svg:polygon detid="369314824" count="1" value="108" id="3603012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 neg  external  module  2   Id 369314824 " fill="rgb(255,41,0)" points="420.06,1515.74 438.984,1515.74 438.984,1509.1 420.06,1509.1 " />
<svg:polygon detid="369315080" count="1" value="108" id="3603013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 neg  external  module  2   Id 369315080 " fill="rgb(255,41,0)" points="420.06,1509.1 438.984,1509.1 438.984,1502.47 420.06,1502.47 " />
<svg:polygon detid="369315336" count="1" value="108" id="3603014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 neg  external  module  2   Id 369315336 " fill="rgb(255,41,0)" points="420.06,1502.47 438.984,1502.47 438.984,1495.83 420.06,1495.83 " />
<svg:polygon detid="369315592" count="1" value="108" id="3603015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 neg  external  module  2   Id 369315592 " fill="rgb(255,41,0)" points="420.06,1495.83 438.984,1495.83 438.984,1489.2 420.06,1489.2 " />
<svg:polygon detid="369315848" count="1" value="108" id="3603016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 neg  external  module  2   Id 369315848 " fill="rgb(255,41,0)" points="420.06,1489.2 438.984,1489.2 438.984,1482.56 420.06,1482.56 " />
<svg:polygon detid="369316104" count="1" value="108" id="3603017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 neg  external  module  2   Id 369316104 " fill="rgb(255,41,0)" points="420.06,1482.56 438.984,1482.56 438.984,1475.93 420.06,1475.93 " />
<svg:polygon detid="369316360" count="1" value="108" id="3603018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 neg  external  module  2   Id 369316360 " fill="rgb(255,41,0)" points="420.06,1475.93 438.984,1475.93 438.984,1469.29 420.06,1469.29 " />
<svg:polygon detid="369316616" count="1" value="108" id="3603019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 neg  external  module  2   Id 369316616 " fill="rgb(255,41,0)" points="420.06,1469.29 438.984,1469.29 438.984,1462.66 420.06,1462.66 " />
<svg:polygon detid="369316872" count="1" value="108" id="3603020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 neg  external  module  2   Id 369316872 " fill="rgb(255,41,0)" points="420.06,1462.66 438.984,1462.66 438.984,1456.02 420.06,1456.02 " />
<svg:polygon detid="369317128" count="1" value="108" id="3603021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 neg  external  module  2   Id 369317128 " fill="rgb(255,41,0)" points="420.06,1456.02 438.984,1456.02 438.984,1449.39 420.06,1449.39 " />
<svg:polygon detid="369317384" count="1" value="108" id="3603022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 neg  external  module  2   Id 369317384 " fill="rgb(255,41,0)" points="420.06,1449.39 438.984,1449.39 438.984,1442.76 420.06,1442.76 " />
<svg:polygon detid="369317640" count="1" value="108" id="3603023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 neg  external  module  2   Id 369317640 " fill="rgb(255,41,0)" points="420.06,1442.76 438.984,1442.76 438.984,1436.12 420.06,1436.12 " />
<svg:polygon detid="369317896" count="1" value="108" id="3603024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 neg  external  module  2   Id 369317896 " fill="rgb(255,41,0)" points="420.06,1436.12 438.984,1436.12 438.984,1429.49 420.06,1429.49 " />
<svg:polygon detid="369318152" count="1" value="108" id="3603025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 neg  external  module  2   Id 369318152 " fill="rgb(255,41,0)" points="420.06,1429.49 438.984,1429.49 438.984,1422.85 420.06,1422.85 " />
<svg:polygon detid="369318408" count="1" value="108" id="3603026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 neg  external  module  2   Id 369318408 " fill="rgb(255,41,0)" points="420.06,1422.85 438.984,1422.85 438.984,1416.22 420.06,1416.22 " />
<svg:polygon detid="369318664" count="1" value="108" id="3603027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 neg  external  module  2   Id 369318664 " fill="rgb(255,41,0)" points="420.06,1416.22 438.984,1416.22 438.984,1409.58 420.06,1409.58 " />
<svg:polygon detid="369318920" count="1" value="108" id="3603028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 neg  external  module  2   Id 369318920 " fill="rgb(255,41,0)" points="420.06,1409.58 438.984,1409.58 438.984,1402.95 420.06,1402.95 " />
<svg:polygon detid="369319176" count="1" value="108" id="3603029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 neg  external  module  2   Id 369319176 " fill="rgb(255,41,0)" points="420.06,1402.95 438.984,1402.95 438.984,1396.31 420.06,1396.31 " />
<svg:polygon detid="369319432" count="1" value="108" id="3603030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 neg  external  module  2   Id 369319432 " fill="rgb(255,41,0)" points="420.06,1396.31 438.984,1396.31 438.984,1389.68 420.06,1389.68 " />
<svg:polygon detid="369319688" count="1" value="108" id="3603031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 neg  external  module  2   Id 369319688 " fill="rgb(255,41,0)" points="420.06,1389.68 438.984,1389.68 438.984,1383.05 420.06,1383.05 " />
<svg:polygon detid="369319944" count="1" value="108" id="3603032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 neg  external  module  2   Id 369319944 " fill="rgb(255,41,0)" points="420.06,1383.05 438.984,1383.05 438.984,1376.41 420.06,1376.41 " />
<svg:polygon detid="369320200" count="1" value="108" id="3603033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 neg  external  module  2   Id 369320200 " fill="rgb(255,41,0)" points="420.06,1376.41 438.984,1376.41 438.984,1369.78 420.06,1369.78 " />
<svg:polygon detid="369320456" count="1" value="108" id="3603034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 neg  external  module  2   Id 369320456 " fill="rgb(255,41,0)" points="420.06,1369.78 438.984,1369.78 438.984,1363.14 420.06,1363.14 " />
<svg:polygon detid="369320712" count="1" value="108" id="3603035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 neg  external  module  2   Id 369320712 " fill="rgb(255,41,0)" points="420.06,1363.14 438.984,1363.14 438.984,1356.51 420.06,1356.51 " />
<svg:polygon detid="369320968" count="1" value="108" id="3603036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 neg  external  module  2   Id 369320968 " fill="rgb(255,41,0)" points="420.06,1356.51 438.984,1356.51 438.984,1349.87 420.06,1349.87 " />
<svg:polygon detid="369321224" count="1" value="108" id="3603037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 neg  external  module  2   Id 369321224 " fill="rgb(255,41,0)" points="420.06,1349.87 438.984,1349.87 438.984,1343.24 420.06,1343.24 " />
<svg:polygon detid="369321480" count="1" value="108" id="3603038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 neg  external  module  2   Id 369321480 " fill="rgb(255,41,0)" points="420.06,1343.24 438.984,1343.24 438.984,1336.6 420.06,1336.6 " />
<svg:polygon detid="369321736" count="1" value="108" id="3603039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 neg  external  module  2   Id 369321736 " fill="rgb(255,41,0)" points="420.06,1336.6 438.984,1336.6 438.984,1329.97 420.06,1329.97 " />
<svg:polygon detid="369321992" count="1" value="108" id="3603040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 neg  external  module  2   Id 369321992 " fill="rgb(255,41,0)" points="420.06,1329.97 438.984,1329.97 438.984,1323.34 420.06,1323.34 " />
<svg:polygon detid="369322248" count="1" value="108" id="3603041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 neg  external  module  2   Id 369322248 " fill="rgb(255,41,0)" points="420.06,1323.34 438.984,1323.34 438.984,1316.7 420.06,1316.7 " />
<svg:polygon detid="369322504" count="1" value="108" id="3603042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 neg  external  module  2   Id 369322504 " fill="rgb(255,41,0)" points="420.06,1316.7 438.984,1316.7 438.984,1310.07 420.06,1310.07 " />
<svg:polygon detid="369322760" count="1" value="108" id="3603043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 neg  external  module  2   Id 369322760 " fill="rgb(255,41,0)" points="420.06,1310.07 438.984,1310.07 438.984,1303.43 420.06,1303.43 " />
<svg:polygon detid="369323016" count="1" value="108" id="3603044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 neg  external  module  2   Id 369323016 " fill="rgb(255,41,0)" points="420.06,1303.43 438.984,1303.43 438.984,1296.8 420.06,1296.8 " />
<svg:polygon detid="369323272" count="1" value="108" id="3603045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 45 neg  external  module  2   Id 369323272 " fill="rgb(255,41,0)" points="420.06,1296.8 438.984,1296.8 438.984,1290.16 420.06,1290.16 " />
<svg:polygon detid="369323528" count="1" value="108" id="3603046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 46 neg  external  module  2   Id 369323528 " fill="rgb(255,41,0)" points="420.06,1290.16 438.984,1290.16 438.984,1283.53 420.06,1283.53 " />
<svg:polygon detid="369295624" count="1" value="108" id="3604001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 neg  internal  module  2   Id 369295624 " fill="rgb(255,41,0)" points="441.35,1588.71 460.274,1588.71 460.274,1582.08 441.35,1582.08 " />
<svg:polygon detid="369295880" count="1" value="108" id="3604002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 neg  internal  module  2   Id 369295880 " fill="rgb(255,41,0)" points="441.35,1582.08 460.274,1582.08 460.274,1575.45 441.35,1575.45 " />
<svg:polygon detid="369296136" count="1" value="108" id="3604003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 neg  internal  module  2   Id 369296136 " fill="rgb(255,41,0)" points="441.35,1575.45 460.274,1575.45 460.274,1568.81 441.35,1568.81 " />
<svg:polygon detid="369296392" count="1" value="108" id="3604004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 neg  internal  module  2   Id 369296392 " fill="rgb(255,41,0)" points="441.35,1568.81 460.274,1568.81 460.274,1562.18 441.35,1562.18 " />
<svg:polygon detid="369296648" count="1" value="108" id="3604005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 neg  internal  module  2   Id 369296648 " fill="rgb(255,41,0)" points="441.35,1562.18 460.274,1562.18 460.274,1555.54 441.35,1555.54 " />
<svg:polygon detid="369296904" count="1" value="108" id="3604006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 neg  internal  module  2   Id 369296904 " fill="rgb(255,41,0)" points="441.35,1555.54 460.274,1555.54 460.274,1548.91 441.35,1548.91 " />
<svg:polygon detid="369297160" count="1" value="108" id="3604007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 neg  internal  module  2   Id 369297160 " fill="rgb(255,41,0)" points="441.35,1548.91 460.274,1548.91 460.274,1542.27 441.35,1542.27 " />
<svg:polygon detid="369297416" count="1" value="108" id="3604008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 neg  internal  module  2   Id 369297416 " fill="rgb(255,41,0)" points="441.35,1542.27 460.274,1542.27 460.274,1535.64 441.35,1535.64 " />
<svg:polygon detid="369297672" count="1" value="108" id="3604010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 neg  internal  module  2   Id 369297672 " fill="rgb(255,41,0)" points="441.35,1529 460.274,1529 460.274,1522.37 441.35,1522.37 " />
<svg:polygon detid="369297928" count="1" value="108" id="3604011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 neg  internal  module  2   Id 369297928 " fill="rgb(255,41,0)" points="441.35,1522.37 460.274,1522.37 460.274,1515.74 441.35,1515.74 " />
<svg:polygon detid="369298184" count="1" value="108" id="3604012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 neg  internal  module  2   Id 369298184 " fill="rgb(255,41,0)" points="441.35,1515.74 460.274,1515.74 460.274,1509.1 441.35,1509.1 " />
<svg:polygon detid="369298440" count="1" value="108" id="3604013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 neg  internal  module  2   Id 369298440 " fill="rgb(255,41,0)" points="441.35,1509.1 460.274,1509.1 460.274,1502.47 441.35,1502.47 " />
<svg:polygon detid="369298696" count="1" value="108" id="3604014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 neg  internal  module  2   Id 369298696 " fill="rgb(255,41,0)" points="441.35,1502.47 460.274,1502.47 460.274,1495.83 441.35,1495.83 " />
<svg:polygon detid="369298952" count="1" value="108" id="3604015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 neg  internal  module  2   Id 369298952 " fill="rgb(255,41,0)" points="441.35,1495.83 460.274,1495.83 460.274,1489.2 441.35,1489.2 " />
<svg:polygon detid="369299208" count="1" value="108" id="3604016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 neg  internal  module  2   Id 369299208 " fill="rgb(255,41,0)" points="441.35,1489.2 460.274,1489.2 460.274,1482.56 441.35,1482.56 " />
<svg:polygon detid="369299464" count="1" value="108" id="3604017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 neg  internal  module  2   Id 369299464 " fill="rgb(255,41,0)" points="441.35,1482.56 460.274,1482.56 460.274,1475.93 441.35,1475.93 " />
<svg:polygon detid="369299720" count="1" value="108" id="3604018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 neg  internal  module  2   Id 369299720 " fill="rgb(255,41,0)" points="441.35,1475.93 460.274,1475.93 460.274,1469.29 441.35,1469.29 " />
<svg:polygon detid="369299976" count="1" value="108" id="3604019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 neg  internal  module  2   Id 369299976 " fill="rgb(255,41,0)" points="441.35,1469.29 460.274,1469.29 460.274,1462.66 441.35,1462.66 " />
<svg:polygon detid="369300232" count="1" value="108" id="3604020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 neg  internal  module  2   Id 369300232 " fill="rgb(255,41,0)" points="441.35,1462.66 460.274,1462.66 460.274,1456.02 441.35,1456.02 " />
<svg:polygon detid="369300488" count="1" value="108" id="3604021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 neg  internal  module  2   Id 369300488 " fill="rgb(255,41,0)" points="441.35,1456.02 460.274,1456.02 460.274,1449.39 441.35,1449.39 " />
<svg:polygon detid="369300744" count="1" value="108" id="3604022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 neg  internal  module  2   Id 369300744 " fill="rgb(255,41,0)" points="441.35,1449.39 460.274,1449.39 460.274,1442.76 441.35,1442.76 " />
<svg:polygon detid="369301000" count="1" value="108" id="3604023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 neg  internal  module  2   Id 369301000 " fill="rgb(255,41,0)" points="441.35,1442.76 460.274,1442.76 460.274,1436.12 441.35,1436.12 " />
<svg:polygon detid="369301256" count="1" value="108" id="3604024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 neg  internal  module  2   Id 369301256 " fill="rgb(255,41,0)" points="441.35,1436.12 460.274,1436.12 460.274,1429.49 441.35,1429.49 " />
<svg:polygon detid="369301512" count="1" value="108" id="3604025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 neg  internal  module  2   Id 369301512 " fill="rgb(255,41,0)" points="441.35,1429.49 460.274,1429.49 460.274,1422.85 441.35,1422.85 " />
<svg:polygon detid="369301768" count="1" value="108" id="3604026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 neg  internal  module  2   Id 369301768 " fill="rgb(255,41,0)" points="441.35,1422.85 460.274,1422.85 460.274,1416.22 441.35,1416.22 " />
<svg:polygon detid="369302024" count="1" value="108" id="3604027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 neg  internal  module  2   Id 369302024 " fill="rgb(255,41,0)" points="441.35,1416.22 460.274,1416.22 460.274,1409.58 441.35,1409.58 " />
<svg:polygon detid="369302280" count="1" value="108" id="3604028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 neg  internal  module  2   Id 369302280 " fill="rgb(255,41,0)" points="441.35,1409.58 460.274,1409.58 460.274,1402.95 441.35,1402.95 " />
<svg:polygon detid="369302536" count="1" value="108" id="3604029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 neg  internal  module  2   Id 369302536 " fill="rgb(255,41,0)" points="441.35,1402.95 460.274,1402.95 460.274,1396.31 441.35,1396.31 " />
<svg:polygon detid="369302792" count="1" value="108" id="3604030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 neg  internal  module  2   Id 369302792 " fill="rgb(255,41,0)" points="441.35,1396.31 460.274,1396.31 460.274,1389.68 441.35,1389.68 " />
<svg:polygon detid="369303048" count="1" value="108" id="3604031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 neg  internal  module  2   Id 369303048 " fill="rgb(255,41,0)" points="441.35,1389.68 460.274,1389.68 460.274,1383.05 441.35,1383.05 " />
<svg:polygon detid="369303304" count="1" value="108" id="3604033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 neg  internal  module  2   Id 369303304 " fill="rgb(255,41,0)" points="441.35,1376.41 460.274,1376.41 460.274,1369.78 441.35,1369.78 " />
<svg:polygon detid="369303560" count="1" value="108" id="3604034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 neg  internal  module  2   Id 369303560 " fill="rgb(255,41,0)" points="441.35,1369.78 460.274,1369.78 460.274,1363.14 441.35,1363.14 " />
<svg:polygon detid="369303816" count="1" value="108" id="3604035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 neg  internal  module  2   Id 369303816 " fill="rgb(255,41,0)" points="441.35,1363.14 460.274,1363.14 460.274,1356.51 441.35,1356.51 " />
<svg:polygon detid="369304072" count="1" value="108" id="3604036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 neg  internal  module  2   Id 369304072 " fill="rgb(255,41,0)" points="441.35,1356.51 460.274,1356.51 460.274,1349.87 441.35,1349.87 " />
<svg:polygon detid="369304328" count="1" value="108" id="3604037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 neg  internal  module  2   Id 369304328 " fill="rgb(255,41,0)" points="441.35,1349.87 460.274,1349.87 460.274,1343.24 441.35,1343.24 " />
<svg:polygon detid="369304584" count="1" value="108" id="3604038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 neg  internal  module  2   Id 369304584 " fill="rgb(255,41,0)" points="441.35,1343.24 460.274,1343.24 460.274,1336.6 441.35,1336.6 " />
<svg:polygon detid="369304840" count="1" value="108" id="3604039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 neg  internal  module  2   Id 369304840 " fill="rgb(255,41,0)" points="441.35,1336.6 460.274,1336.6 460.274,1329.97 441.35,1329.97 " />
<svg:polygon detid="369305096" count="1" value="108" id="3604040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 neg  internal  module  2   Id 369305096 " fill="rgb(255,41,0)" points="441.35,1329.97 460.274,1329.97 460.274,1323.34 441.35,1323.34 " />
<svg:polygon detid="369305352" count="1" value="108" id="3604041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 neg  internal  module  2   Id 369305352 " fill="rgb(255,41,0)" points="441.35,1323.34 460.274,1323.34 460.274,1316.7 441.35,1316.7 " />
<svg:polygon detid="369305608" count="1" value="108" id="3604042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 neg  internal  module  2   Id 369305608 " fill="rgb(255,41,0)" points="441.35,1316.7 460.274,1316.7 460.274,1310.07 441.35,1310.07 " />
<svg:polygon detid="369305864" count="1" value="108" id="3604043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 neg  internal  module  2   Id 369305864 " fill="rgb(255,41,0)" points="441.35,1310.07 460.274,1310.07 460.274,1303.43 441.35,1303.43 " />
<svg:polygon detid="369306120" count="1" value="108" id="3604044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 neg  internal  module  2   Id 369306120 " fill="rgb(255,41,0)" points="441.35,1303.43 460.274,1303.43 460.274,1296.8 441.35,1296.8 " />
<svg:polygon detid="369306376" count="1" value="108" id="3604045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 neg  internal  module  2   Id 369306376 " fill="rgb(255,41,0)" points="441.35,1296.8 460.274,1296.8 460.274,1290.16 441.35,1290.16 " />
<svg:polygon detid="369306632" count="1" value="108" id="3604046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 neg  internal  module  2   Id 369306632 " fill="rgb(255,41,0)" points="441.35,1290.16 460.274,1290.16 460.274,1283.53 441.35,1283.53 " />
<svg:polygon detid="369312012" count="1" value="108" id="3605001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 neg  external  module  3   Id 369312012 " fill="rgb(255,41,0)" points="462.639,1588.71 481.564,1588.71 481.564,1582.08 462.639,1582.08 " />
<svg:polygon detid="369312268" count="1" value="108" id="3605002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 neg  external  module  3   Id 369312268 " fill="rgb(255,41,0)" points="462.639,1582.08 481.564,1582.08 481.564,1575.45 462.639,1575.45 " />
<svg:polygon detid="369312524" count="1" value="108" id="3605003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 neg  external  module  3   Id 369312524 " fill="rgb(255,41,0)" points="462.639,1575.45 481.564,1575.45 481.564,1568.81 462.639,1568.81 " />
<svg:polygon detid="369312780" count="1" value="108" id="3605004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 neg  external  module  3   Id 369312780 " fill="rgb(255,41,0)" points="462.639,1568.81 481.564,1568.81 481.564,1562.18 462.639,1562.18 " />
<svg:polygon detid="369313036" count="1" value="108" id="3605005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 neg  external  module  3   Id 369313036 " fill="rgb(255,41,0)" points="462.639,1562.18 481.564,1562.18 481.564,1555.54 462.639,1555.54 " />
<svg:polygon detid="369313292" count="1" value="108" id="3605006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 neg  external  module  3   Id 369313292 " fill="rgb(255,41,0)" points="462.639,1555.54 481.564,1555.54 481.564,1548.91 462.639,1548.91 " />
<svg:polygon detid="369313548" count="1" value="108" id="3605007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 neg  external  module  3   Id 369313548 " fill="rgb(255,41,0)" points="462.639,1548.91 481.564,1548.91 481.564,1542.27 462.639,1542.27 " />
<svg:polygon detid="369313804" count="1" value="108" id="3605008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 neg  external  module  3   Id 369313804 " fill="rgb(255,41,0)" points="462.639,1542.27 481.564,1542.27 481.564,1535.64 462.639,1535.64 " />
<svg:polygon detid="369314060" count="1" value="108" id="3605009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 neg  external  module  3   Id 369314060 " fill="rgb(255,41,0)" points="462.639,1535.64 481.564,1535.64 481.564,1529 462.639,1529 " />
<svg:polygon detid="369314316" count="1" value="108" id="3605010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 neg  external  module  3   Id 369314316 " fill="rgb(255,41,0)" points="462.639,1529 481.564,1529 481.564,1522.37 462.639,1522.37 " />
<svg:polygon detid="369314572" count="1" value="108" id="3605011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 neg  external  module  3   Id 369314572 " fill="rgb(255,41,0)" points="462.639,1522.37 481.564,1522.37 481.564,1515.74 462.639,1515.74 " />
<svg:polygon detid="369314828" count="1" value="108" id="3605012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 neg  external  module  3   Id 369314828 " fill="rgb(255,41,0)" points="462.639,1515.74 481.564,1515.74 481.564,1509.1 462.639,1509.1 " />
<svg:polygon detid="369315084" count="1" value="108" id="3605013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 neg  external  module  3   Id 369315084 " fill="rgb(255,41,0)" points="462.639,1509.1 481.564,1509.1 481.564,1502.47 462.639,1502.47 " />
<svg:polygon detid="369315340" count="1" value="108" id="3605014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 neg  external  module  3   Id 369315340 " fill="rgb(255,41,0)" points="462.639,1502.47 481.564,1502.47 481.564,1495.83 462.639,1495.83 " />
<svg:polygon detid="369315596" count="1" value="108" id="3605015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 neg  external  module  3   Id 369315596 " fill="rgb(255,41,0)" points="462.639,1495.83 481.564,1495.83 481.564,1489.2 462.639,1489.2 " />
<svg:polygon detid="369315852" count="1" value="108" id="3605016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 neg  external  module  3   Id 369315852 " fill="rgb(255,41,0)" points="462.639,1489.2 481.564,1489.2 481.564,1482.56 462.639,1482.56 " />
<svg:polygon detid="369316108" count="1" value="108" id="3605017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 neg  external  module  3   Id 369316108 " fill="rgb(255,41,0)" points="462.639,1482.56 481.564,1482.56 481.564,1475.93 462.639,1475.93 " />
<svg:polygon detid="369316364" count="1" value="108" id="3605018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 neg  external  module  3   Id 369316364 " fill="rgb(255,41,0)" points="462.639,1475.93 481.564,1475.93 481.564,1469.29 462.639,1469.29 " />
<svg:polygon detid="369316620" count="1" value="108" id="3605019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 neg  external  module  3   Id 369316620 " fill="rgb(255,41,0)" points="462.639,1469.29 481.564,1469.29 481.564,1462.66 462.639,1462.66 " />
<svg:polygon detid="369316876" count="1" value="108" id="3605020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 neg  external  module  3   Id 369316876 " fill="rgb(255,41,0)" points="462.639,1462.66 481.564,1462.66 481.564,1456.02 462.639,1456.02 " />
<svg:polygon detid="369317132" count="1" value="108" id="3605021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 neg  external  module  3   Id 369317132 " fill="rgb(255,41,0)" points="462.639,1456.02 481.564,1456.02 481.564,1449.39 462.639,1449.39 " />
<svg:polygon detid="369317388" count="1" value="108" id="3605022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 neg  external  module  3   Id 369317388 " fill="rgb(255,41,0)" points="462.639,1449.39 481.564,1449.39 481.564,1442.76 462.639,1442.76 " />
<svg:polygon detid="369317644" count="1" value="108" id="3605023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 neg  external  module  3   Id 369317644 " fill="rgb(255,41,0)" points="462.639,1442.76 481.564,1442.76 481.564,1436.12 462.639,1436.12 " />
<svg:polygon detid="369317900" count="1" value="108" id="3605024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 neg  external  module  3   Id 369317900 " fill="rgb(255,41,0)" points="462.639,1436.12 481.564,1436.12 481.564,1429.49 462.639,1429.49 " />
<svg:polygon detid="369318156" count="1" value="108" id="3605025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 neg  external  module  3   Id 369318156 " fill="rgb(255,41,0)" points="462.639,1429.49 481.564,1429.49 481.564,1422.85 462.639,1422.85 " />
<svg:polygon detid="369318412" count="1" value="108" id="3605026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 neg  external  module  3   Id 369318412 " fill="rgb(255,41,0)" points="462.639,1422.85 481.564,1422.85 481.564,1416.22 462.639,1416.22 " />
<svg:polygon detid="369318668" count="1" value="108" id="3605027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 neg  external  module  3   Id 369318668 " fill="rgb(255,41,0)" points="462.639,1416.22 481.564,1416.22 481.564,1409.58 462.639,1409.58 " />
<svg:polygon detid="369318924" count="1" value="108" id="3605028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 neg  external  module  3   Id 369318924 " fill="rgb(255,41,0)" points="462.639,1409.58 481.564,1409.58 481.564,1402.95 462.639,1402.95 " />
<svg:polygon detid="369319180" count="1" value="108" id="3605029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 neg  external  module  3   Id 369319180 " fill="rgb(255,41,0)" points="462.639,1402.95 481.564,1402.95 481.564,1396.31 462.639,1396.31 " />
<svg:polygon detid="369319436" count="1" value="108" id="3605030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 neg  external  module  3   Id 369319436 " fill="rgb(255,41,0)" points="462.639,1396.31 481.564,1396.31 481.564,1389.68 462.639,1389.68 " />
<svg:polygon detid="369319692" count="1" value="108" id="3605031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 neg  external  module  3   Id 369319692 " fill="rgb(255,41,0)" points="462.639,1389.68 481.564,1389.68 481.564,1383.05 462.639,1383.05 " />
<svg:polygon detid="369319948" count="1" value="108" id="3605032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 neg  external  module  3   Id 369319948 " fill="rgb(255,41,0)" points="462.639,1383.05 481.564,1383.05 481.564,1376.41 462.639,1376.41 " />
<svg:polygon detid="369320204" count="1" value="108" id="3605033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 neg  external  module  3   Id 369320204 " fill="rgb(255,41,0)" points="462.639,1376.41 481.564,1376.41 481.564,1369.78 462.639,1369.78 " />
<svg:polygon detid="369320460" count="1" value="108" id="3605034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 neg  external  module  3   Id 369320460 " fill="rgb(255,41,0)" points="462.639,1369.78 481.564,1369.78 481.564,1363.14 462.639,1363.14 " />
<svg:polygon detid="369320716" count="1" value="108" id="3605035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 neg  external  module  3   Id 369320716 " fill="rgb(255,41,0)" points="462.639,1363.14 481.564,1363.14 481.564,1356.51 462.639,1356.51 " />
<svg:polygon detid="369320972" count="1" value="108" id="3605036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 neg  external  module  3   Id 369320972 " fill="rgb(255,41,0)" points="462.639,1356.51 481.564,1356.51 481.564,1349.87 462.639,1349.87 " />
<svg:polygon detid="369321228" count="1" value="108" id="3605037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 neg  external  module  3   Id 369321228 " fill="rgb(255,41,0)" points="462.639,1349.87 481.564,1349.87 481.564,1343.24 462.639,1343.24 " />
<svg:polygon detid="369321484" count="1" value="108" id="3605038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 neg  external  module  3   Id 369321484 " fill="rgb(255,41,0)" points="462.639,1343.24 481.564,1343.24 481.564,1336.6 462.639,1336.6 " />
<svg:polygon detid="369321740" count="1" value="108" id="3605039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 neg  external  module  3   Id 369321740 " fill="rgb(255,41,0)" points="462.639,1336.6 481.564,1336.6 481.564,1329.97 462.639,1329.97 " />
<svg:polygon detid="369321996" count="1" value="108" id="3605040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 neg  external  module  3   Id 369321996 " fill="rgb(255,41,0)" points="462.639,1329.97 481.564,1329.97 481.564,1323.34 462.639,1323.34 " />
<svg:polygon detid="369322252" count="1" value="108" id="3605041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 neg  external  module  3   Id 369322252 " fill="rgb(255,41,0)" points="462.639,1323.34 481.564,1323.34 481.564,1316.7 462.639,1316.7 " />
<svg:polygon detid="369322508" count="1" value="108" id="3605042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 neg  external  module  3   Id 369322508 " fill="rgb(255,41,0)" points="462.639,1316.7 481.564,1316.7 481.564,1310.07 462.639,1310.07 " />
<svg:polygon detid="369322764" count="1" value="108" id="3605043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 neg  external  module  3   Id 369322764 " fill="rgb(255,41,0)" points="462.639,1310.07 481.564,1310.07 481.564,1303.43 462.639,1303.43 " />
<svg:polygon detid="369323020" count="1" value="108" id="3605044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 neg  external  module  3   Id 369323020 " fill="rgb(255,41,0)" points="462.639,1303.43 481.564,1303.43 481.564,1296.8 462.639,1296.8 " />
<svg:polygon detid="369323276" count="1" value="108" id="3605045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 45 neg  external  module  3   Id 369323276 " fill="rgb(255,41,0)" points="462.639,1296.8 481.564,1296.8 481.564,1290.16 462.639,1290.16 " />
<svg:polygon detid="369323532" count="1" value="108" id="3605046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 46 neg  external  module  3   Id 369323532 " fill="rgb(255,41,0)" points="462.639,1290.16 481.564,1290.16 481.564,1283.53 462.639,1283.53 " />
<svg:polygon detid="369295628" count="1" value="108" id="3606001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 neg  internal  module  3   Id 369295628 " fill="rgb(255,41,0)" points="483.929,1588.71 502.853,1588.71 502.853,1582.08 483.929,1582.08 " />
<svg:polygon detid="369295884" count="1" value="108" id="3606002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 neg  internal  module  3   Id 369295884 " fill="rgb(255,41,0)" points="483.929,1582.08 502.853,1582.08 502.853,1575.45 483.929,1575.45 " />
<svg:polygon detid="369296140" count="1" value="108" id="3606003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 neg  internal  module  3   Id 369296140 " fill="rgb(255,41,0)" points="483.929,1575.45 502.853,1575.45 502.853,1568.81 483.929,1568.81 " />
<svg:polygon detid="369296396" count="1" value="108" id="3606004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 neg  internal  module  3   Id 369296396 " fill="rgb(255,41,0)" points="483.929,1568.81 502.853,1568.81 502.853,1562.18 483.929,1562.18 " />
<svg:polygon detid="369296652" count="1" value="108" id="3606005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 neg  internal  module  3   Id 369296652 " fill="rgb(255,41,0)" points="483.929,1562.18 502.853,1562.18 502.853,1555.54 483.929,1555.54 " />
<svg:polygon detid="369296908" count="1" value="108" id="3606006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 neg  internal  module  3   Id 369296908 " fill="rgb(255,41,0)" points="483.929,1555.54 502.853,1555.54 502.853,1548.91 483.929,1548.91 " />
<svg:polygon detid="369297164" count="1" value="108" id="3606007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 neg  internal  module  3   Id 369297164 " fill="rgb(255,41,0)" points="483.929,1548.91 502.853,1548.91 502.853,1542.27 483.929,1542.27 " />
<svg:polygon detid="369297420" count="1" value="108" id="3606008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 neg  internal  module  3   Id 369297420 " fill="rgb(255,41,0)" points="483.929,1542.27 502.853,1542.27 502.853,1535.64 483.929,1535.64 " />
<svg:polygon detid="369297676" count="1" value="108" id="3606010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 neg  internal  module  3   Id 369297676 " fill="rgb(255,41,0)" points="483.929,1529 502.853,1529 502.853,1522.37 483.929,1522.37 " />
<svg:polygon detid="369297932" count="1" value="108" id="3606011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 neg  internal  module  3   Id 369297932 " fill="rgb(255,41,0)" points="483.929,1522.37 502.853,1522.37 502.853,1515.74 483.929,1515.74 " />
<svg:polygon detid="369298188" count="1" value="108" id="3606012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 neg  internal  module  3   Id 369298188 " fill="rgb(255,41,0)" points="483.929,1515.74 502.853,1515.74 502.853,1509.1 483.929,1509.1 " />
<svg:polygon detid="369298444" count="1" value="108" id="3606013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 neg  internal  module  3   Id 369298444 " fill="rgb(255,41,0)" points="483.929,1509.1 502.853,1509.1 502.853,1502.47 483.929,1502.47 " />
<svg:polygon detid="369298700" count="1" value="108" id="3606014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 neg  internal  module  3   Id 369298700 " fill="rgb(255,41,0)" points="483.929,1502.47 502.853,1502.47 502.853,1495.83 483.929,1495.83 " />
<svg:polygon detid="369298956" count="1" value="108" id="3606015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 neg  internal  module  3   Id 369298956 " fill="rgb(255,41,0)" points="483.929,1495.83 502.853,1495.83 502.853,1489.2 483.929,1489.2 " />
<svg:polygon detid="369299212" count="1" value="108" id="3606016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 neg  internal  module  3   Id 369299212 " fill="rgb(255,41,0)" points="483.929,1489.2 502.853,1489.2 502.853,1482.56 483.929,1482.56 " />
<svg:polygon detid="369299468" count="1" value="108" id="3606017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 neg  internal  module  3   Id 369299468 " fill="rgb(255,41,0)" points="483.929,1482.56 502.853,1482.56 502.853,1475.93 483.929,1475.93 " />
<svg:polygon detid="369299724" count="1" value="108" id="3606018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 neg  internal  module  3   Id 369299724 " fill="rgb(255,41,0)" points="483.929,1475.93 502.853,1475.93 502.853,1469.29 483.929,1469.29 " />
<svg:polygon detid="369299980" count="1" value="108" id="3606019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 neg  internal  module  3   Id 369299980 " fill="rgb(255,41,0)" points="483.929,1469.29 502.853,1469.29 502.853,1462.66 483.929,1462.66 " />
<svg:polygon detid="369300236" count="1" value="108" id="3606020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 neg  internal  module  3   Id 369300236 " fill="rgb(255,41,0)" points="483.929,1462.66 502.853,1462.66 502.853,1456.02 483.929,1456.02 " />
<svg:polygon detid="369300492" count="1" value="108" id="3606021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 neg  internal  module  3   Id 369300492 " fill="rgb(255,41,0)" points="483.929,1456.02 502.853,1456.02 502.853,1449.39 483.929,1449.39 " />
<svg:polygon detid="369300748" count="1" value="108" id="3606022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 neg  internal  module  3   Id 369300748 " fill="rgb(255,41,0)" points="483.929,1449.39 502.853,1449.39 502.853,1442.76 483.929,1442.76 " />
<svg:polygon detid="369301004" count="1" value="108" id="3606023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 neg  internal  module  3   Id 369301004 " fill="rgb(255,41,0)" points="483.929,1442.76 502.853,1442.76 502.853,1436.12 483.929,1436.12 " />
<svg:polygon detid="369301260" count="1" value="108" id="3606024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 neg  internal  module  3   Id 369301260 " fill="rgb(255,41,0)" points="483.929,1436.12 502.853,1436.12 502.853,1429.49 483.929,1429.49 " />
<svg:polygon detid="369301516" count="1" value="108" id="3606025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 neg  internal  module  3   Id 369301516 " fill="rgb(255,41,0)" points="483.929,1429.49 502.853,1429.49 502.853,1422.85 483.929,1422.85 " />
<svg:polygon detid="369301772" count="1" value="108" id="3606026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 neg  internal  module  3   Id 369301772 " fill="rgb(255,41,0)" points="483.929,1422.85 502.853,1422.85 502.853,1416.22 483.929,1416.22 " />
<svg:polygon detid="369302028" count="1" value="108" id="3606027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 neg  internal  module  3   Id 369302028 " fill="rgb(255,41,0)" points="483.929,1416.22 502.853,1416.22 502.853,1409.58 483.929,1409.58 " />
<svg:polygon detid="369302284" count="1" value="108" id="3606028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 neg  internal  module  3   Id 369302284 " fill="rgb(255,41,0)" points="483.929,1409.58 502.853,1409.58 502.853,1402.95 483.929,1402.95 " />
<svg:polygon detid="369302540" count="1" value="108" id="3606029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 neg  internal  module  3   Id 369302540 " fill="rgb(255,41,0)" points="483.929,1402.95 502.853,1402.95 502.853,1396.31 483.929,1396.31 " />
<svg:polygon detid="369302796" count="1" value="108" id="3606030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 neg  internal  module  3   Id 369302796 " fill="rgb(255,41,0)" points="483.929,1396.31 502.853,1396.31 502.853,1389.68 483.929,1389.68 " />
<svg:polygon detid="369303052" count="1" value="108" id="3606031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 neg  internal  module  3   Id 369303052 " fill="rgb(255,41,0)" points="483.929,1389.68 502.853,1389.68 502.853,1383.05 483.929,1383.05 " />
<svg:polygon detid="369303308" count="1" value="108" id="3606033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 neg  internal  module  3   Id 369303308 " fill="rgb(255,41,0)" points="483.929,1376.41 502.853,1376.41 502.853,1369.78 483.929,1369.78 " />
<svg:polygon detid="369303564" count="1" value="108" id="3606034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 neg  internal  module  3   Id 369303564 " fill="rgb(255,41,0)" points="483.929,1369.78 502.853,1369.78 502.853,1363.14 483.929,1363.14 " />
<svg:polygon detid="369303820" count="1" value="108" id="3606035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 neg  internal  module  3   Id 369303820 " fill="rgb(255,41,0)" points="483.929,1363.14 502.853,1363.14 502.853,1356.51 483.929,1356.51 " />
<svg:polygon detid="369304076" count="1" value="108" id="3606036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 neg  internal  module  3   Id 369304076 " fill="rgb(255,41,0)" points="483.929,1356.51 502.853,1356.51 502.853,1349.87 483.929,1349.87 " />
<svg:polygon detid="369304332" count="1" value="108" id="3606037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 neg  internal  module  3   Id 369304332 " fill="rgb(255,41,0)" points="483.929,1349.87 502.853,1349.87 502.853,1343.24 483.929,1343.24 " />
<svg:polygon detid="369304588" count="1" value="108" id="3606038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 neg  internal  module  3   Id 369304588 " fill="rgb(255,41,0)" points="483.929,1343.24 502.853,1343.24 502.853,1336.6 483.929,1336.6 " />
<svg:polygon detid="369304844" count="1" value="108" id="3606039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 neg  internal  module  3   Id 369304844 " fill="rgb(255,41,0)" points="483.929,1336.6 502.853,1336.6 502.853,1329.97 483.929,1329.97 " />
<svg:polygon detid="369305100" count="1" value="108" id="3606040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 neg  internal  module  3   Id 369305100 " fill="rgb(255,41,0)" points="483.929,1329.97 502.853,1329.97 502.853,1323.34 483.929,1323.34 " />
<svg:polygon detid="369305356" count="1" value="108" id="3606041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 neg  internal  module  3   Id 369305356 " fill="rgb(255,41,0)" points="483.929,1323.34 502.853,1323.34 502.853,1316.7 483.929,1316.7 " />
<svg:polygon detid="369305612" count="1" value="108" id="3606042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 neg  internal  module  3   Id 369305612 " fill="rgb(255,41,0)" points="483.929,1316.7 502.853,1316.7 502.853,1310.07 483.929,1310.07 " />
<svg:polygon detid="369305868" count="1" value="108" id="3606043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 neg  internal  module  3   Id 369305868 " fill="rgb(255,41,0)" points="483.929,1310.07 502.853,1310.07 502.853,1303.43 483.929,1303.43 " />
<svg:polygon detid="369306124" count="1" value="108" id="3606044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 neg  internal  module  3   Id 369306124 " fill="rgb(255,41,0)" points="483.929,1303.43 502.853,1303.43 502.853,1296.8 483.929,1296.8 " />
<svg:polygon detid="369306380" count="1" value="108" id="3606045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 neg  internal  module  3   Id 369306380 " fill="rgb(255,41,0)" points="483.929,1296.8 502.853,1296.8 502.853,1290.16 483.929,1290.16 " />
<svg:polygon detid="369306636" count="1" value="108" id="3606046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 neg  internal  module  3   Id 369306636 " fill="rgb(255,41,0)" points="483.929,1290.16 502.853,1290.16 502.853,1283.53 483.929,1283.53 " />
<svg:polygon detid="369344772" count="1" value="108" id="3607001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 pos  external  module  1   Id 369344772 " fill="rgb(255,41,0)" points="505.219,1588.71 524.143,1588.71 524.143,1582.08 505.219,1582.08 " />
<svg:polygon detid="369345028" count="1" value="108" id="3607002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 pos  external  module  1   Id 369345028 " fill="rgb(255,41,0)" points="505.219,1582.08 524.143,1582.08 524.143,1575.45 505.219,1575.45 " />
<svg:polygon detid="369345284" count="1" value="108" id="3607003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 pos  external  module  1   Id 369345284 " fill="rgb(255,41,0)" points="505.219,1575.45 524.143,1575.45 524.143,1568.81 505.219,1568.81 " />
<svg:polygon detid="369345540" count="1" value="108" id="3607004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 pos  external  module  1   Id 369345540 " fill="rgb(255,41,0)" points="505.219,1568.81 524.143,1568.81 524.143,1562.18 505.219,1562.18 " />
<svg:polygon detid="369345796" count="1" value="108" id="3607005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 pos  external  module  1   Id 369345796 " fill="rgb(255,41,0)" points="505.219,1562.18 524.143,1562.18 524.143,1555.54 505.219,1555.54 " />
<svg:polygon detid="369346052" count="1" value="108" id="3607006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 pos  external  module  1   Id 369346052 " fill="rgb(255,41,0)" points="505.219,1555.54 524.143,1555.54 524.143,1548.91 505.219,1548.91 " />
<svg:polygon detid="369346308" count="1" value="108" id="3607007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 pos  external  module  1   Id 369346308 " fill="rgb(255,41,0)" points="505.219,1548.91 524.143,1548.91 524.143,1542.27 505.219,1542.27 " />
<svg:polygon detid="369346564" count="1" value="108" id="3607008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 pos  external  module  1   Id 369346564 " fill="rgb(255,41,0)" points="505.219,1542.27 524.143,1542.27 524.143,1535.64 505.219,1535.64 " />
<svg:polygon detid="369346820" count="1" value="108" id="3607009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 pos  external  module  1   Id 369346820 " fill="rgb(255,41,0)" points="505.219,1535.64 524.143,1535.64 524.143,1529 505.219,1529 " />
<svg:polygon detid="369347076" count="1" value="108" id="3607010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 pos  external  module  1   Id 369347076 " fill="rgb(255,41,0)" points="505.219,1529 524.143,1529 524.143,1522.37 505.219,1522.37 " />
<svg:polygon detid="369347332" count="1" value="108" id="3607011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 pos  external  module  1   Id 369347332 " fill="rgb(255,41,0)" points="505.219,1522.37 524.143,1522.37 524.143,1515.74 505.219,1515.74 " />
<svg:polygon detid="369347588" count="1" value="108" id="3607012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 pos  external  module  1   Id 369347588 " fill="rgb(255,41,0)" points="505.219,1515.74 524.143,1515.74 524.143,1509.1 505.219,1509.1 " />
<svg:polygon detid="369347844" count="1" value="108" id="3607013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 pos  external  module  1   Id 369347844 " fill="rgb(255,41,0)" points="505.219,1509.1 524.143,1509.1 524.143,1502.47 505.219,1502.47 " />
<svg:polygon detid="369348100" count="1" value="108" id="3607014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 pos  external  module  1   Id 369348100 " fill="rgb(255,41,0)" points="505.219,1502.47 524.143,1502.47 524.143,1495.83 505.219,1495.83 " />
<svg:polygon detid="369348356" count="1" value="108" id="3607015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 pos  external  module  1   Id 369348356 " fill="rgb(255,41,0)" points="505.219,1495.83 524.143,1495.83 524.143,1489.2 505.219,1489.2 " />
<svg:polygon detid="369348612" count="1" value="108" id="3607016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 pos  external  module  1   Id 369348612 " fill="rgb(255,41,0)" points="505.219,1489.2 524.143,1489.2 524.143,1482.56 505.219,1482.56 " />
<svg:polygon detid="369348868" count="1" value="108" id="3607017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 pos  external  module  1   Id 369348868 " fill="rgb(255,41,0)" points="505.219,1482.56 524.143,1482.56 524.143,1475.93 505.219,1475.93 " />
<svg:polygon detid="369349124" count="1" value="108" id="3607018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 pos  external  module  1   Id 369349124 " fill="rgb(255,41,0)" points="505.219,1475.93 524.143,1475.93 524.143,1469.29 505.219,1469.29 " />
<svg:polygon detid="369349380" count="1" value="108" id="3607019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 pos  external  module  1   Id 369349380 " fill="rgb(255,41,0)" points="505.219,1469.29 524.143,1469.29 524.143,1462.66 505.219,1462.66 " />
<svg:polygon detid="369349636" count="1" value="108" id="3607020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 pos  external  module  1   Id 369349636 " fill="rgb(255,41,0)" points="505.219,1462.66 524.143,1462.66 524.143,1456.02 505.219,1456.02 " />
<svg:polygon detid="369349892" count="1" value="108" id="3607021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 pos  external  module  1   Id 369349892 " fill="rgb(255,41,0)" points="505.219,1456.02 524.143,1456.02 524.143,1449.39 505.219,1449.39 " />
<svg:polygon detid="369350148" count="1" value="108" id="3607022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 pos  external  module  1   Id 369350148 " fill="rgb(255,41,0)" points="505.219,1449.39 524.143,1449.39 524.143,1442.76 505.219,1442.76 " />
<svg:polygon detid="369350404" count="1" value="108" id="3607023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 pos  external  module  1   Id 369350404 " fill="rgb(255,41,0)" points="505.219,1442.76 524.143,1442.76 524.143,1436.12 505.219,1436.12 " />
<svg:polygon detid="369350660" count="1" value="108" id="3607024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 pos  external  module  1   Id 369350660 " fill="rgb(255,41,0)" points="505.219,1436.12 524.143,1436.12 524.143,1429.49 505.219,1429.49 " />
<svg:polygon detid="369350916" count="1" value="108" id="3607025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 pos  external  module  1   Id 369350916 " fill="rgb(255,41,0)" points="505.219,1429.49 524.143,1429.49 524.143,1422.85 505.219,1422.85 " />
<svg:polygon detid="369351172" count="1" value="108" id="3607026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 pos  external  module  1   Id 369351172 " fill="rgb(255,41,0)" points="505.219,1422.85 524.143,1422.85 524.143,1416.22 505.219,1416.22 " />
<svg:polygon detid="369351428" count="1" value="108" id="3607027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 pos  external  module  1   Id 369351428 " fill="rgb(255,41,0)" points="505.219,1416.22 524.143,1416.22 524.143,1409.58 505.219,1409.58 " />
<svg:polygon detid="369351684" count="1" value="108" id="3607028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 pos  external  module  1   Id 369351684 " fill="rgb(255,41,0)" points="505.219,1409.58 524.143,1409.58 524.143,1402.95 505.219,1402.95 " />
<svg:polygon detid="369351940" count="1" value="108" id="3607029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 pos  external  module  1   Id 369351940 " fill="rgb(255,41,0)" points="505.219,1402.95 524.143,1402.95 524.143,1396.31 505.219,1396.31 " />
<svg:polygon detid="369352196" count="1" value="108" id="3607030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 pos  external  module  1   Id 369352196 " fill="rgb(255,41,0)" points="505.219,1396.31 524.143,1396.31 524.143,1389.68 505.219,1389.68 " />
<svg:polygon detid="369352452" count="1" value="108" id="3607031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 pos  external  module  1   Id 369352452 " fill="rgb(255,41,0)" points="505.219,1389.68 524.143,1389.68 524.143,1383.05 505.219,1383.05 " />
<svg:polygon detid="369352708" count="1" value="108" id="3607032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 pos  external  module  1   Id 369352708 " fill="rgb(255,41,0)" points="505.219,1383.05 524.143,1383.05 524.143,1376.41 505.219,1376.41 " />
<svg:polygon detid="369352964" count="1" value="108" id="3607033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 pos  external  module  1   Id 369352964 " fill="rgb(255,41,0)" points="505.219,1376.41 524.143,1376.41 524.143,1369.78 505.219,1369.78 " />
<svg:polygon detid="369353220" count="1" value="108" id="3607034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 pos  external  module  1   Id 369353220 " fill="rgb(255,41,0)" points="505.219,1369.78 524.143,1369.78 524.143,1363.14 505.219,1363.14 " />
<svg:polygon detid="369353476" count="1" value="108" id="3607035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 pos  external  module  1   Id 369353476 " fill="rgb(255,41,0)" points="505.219,1363.14 524.143,1363.14 524.143,1356.51 505.219,1356.51 " />
<svg:polygon detid="369353732" count="1" value="108" id="3607036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 pos  external  module  1   Id 369353732 " fill="rgb(255,41,0)" points="505.219,1356.51 524.143,1356.51 524.143,1349.87 505.219,1349.87 " />
<svg:polygon detid="369353988" count="1" value="108" id="3607037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 pos  external  module  1   Id 369353988 " fill="rgb(255,41,0)" points="505.219,1349.87 524.143,1349.87 524.143,1343.24 505.219,1343.24 " />
<svg:polygon detid="369354244" count="1" value="108" id="3607038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 pos  external  module  1   Id 369354244 " fill="rgb(255,41,0)" points="505.219,1343.24 524.143,1343.24 524.143,1336.6 505.219,1336.6 " />
<svg:polygon detid="369354500" count="1" value="108" id="3607039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 pos  external  module  1   Id 369354500 " fill="rgb(255,41,0)" points="505.219,1336.6 524.143,1336.6 524.143,1329.97 505.219,1329.97 " />
<svg:polygon detid="369354756" count="1" value="108" id="3607040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 pos  external  module  1   Id 369354756 " fill="rgb(255,41,0)" points="505.219,1329.97 524.143,1329.97 524.143,1323.34 505.219,1323.34 " />
<svg:polygon detid="369355012" count="1" value="108" id="3607041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 pos  external  module  1   Id 369355012 " fill="rgb(255,41,0)" points="505.219,1323.34 524.143,1323.34 524.143,1316.7 505.219,1316.7 " />
<svg:polygon detid="369355268" count="1" value="108" id="3607042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 pos  external  module  1   Id 369355268 " fill="rgb(255,41,0)" points="505.219,1316.7 524.143,1316.7 524.143,1310.07 505.219,1310.07 " />
<svg:polygon detid="369355524" count="1" value="108" id="3607043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 pos  external  module  1   Id 369355524 " fill="rgb(255,41,0)" points="505.219,1310.07 524.143,1310.07 524.143,1303.43 505.219,1303.43 " />
<svg:polygon detid="369355780" count="1" value="108" id="3607044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 pos  external  module  1   Id 369355780 " fill="rgb(255,41,0)" points="505.219,1303.43 524.143,1303.43 524.143,1296.8 505.219,1296.8 " />
<svg:polygon detid="369356036" count="1" value="108" id="3607045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 45 pos  external  module  1   Id 369356036 " fill="rgb(255,41,0)" points="505.219,1296.8 524.143,1296.8 524.143,1290.16 505.219,1290.16 " />
<svg:polygon detid="369356292" count="1" value="108" id="3607046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 46 pos  external  module  1   Id 369356292 " fill="rgb(255,41,0)" points="505.219,1290.16 524.143,1290.16 524.143,1283.53 505.219,1283.53 " />
<svg:polygon detid="369328388" count="1" value="108" id="3608001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 pos  internal  module  1   Id 369328388 " fill="rgb(255,41,0)" points="526.509,1588.71 545.433,1588.71 545.433,1582.08 526.509,1582.08 " />
<svg:polygon detid="369328644" count="1" value="108" id="3608002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 pos  internal  module  1   Id 369328644 " fill="rgb(255,41,0)" points="526.509,1582.08 545.433,1582.08 545.433,1575.45 526.509,1575.45 " />
<svg:polygon detid="369328900" count="1" value="108" id="3608003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 pos  internal  module  1   Id 369328900 " fill="rgb(255,41,0)" points="526.509,1575.45 545.433,1575.45 545.433,1568.81 526.509,1568.81 " />
<svg:polygon detid="369329156" count="1" value="108" id="3608004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 pos  internal  module  1   Id 369329156 " fill="rgb(255,41,0)" points="526.509,1568.81 545.433,1568.81 545.433,1562.18 526.509,1562.18 " />
<svg:polygon detid="369329412" count="1" value="108" id="3608005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 pos  internal  module  1   Id 369329412 " fill="rgb(255,41,0)" points="526.509,1562.18 545.433,1562.18 545.433,1555.54 526.509,1555.54 " />
<svg:polygon detid="369329668" count="1" value="108" id="3608006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 pos  internal  module  1   Id 369329668 " fill="rgb(255,41,0)" points="526.509,1555.54 545.433,1555.54 545.433,1548.91 526.509,1548.91 " />
<svg:polygon detid="369329924" count="1" value="108" id="3608007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 pos  internal  module  1   Id 369329924 " fill="rgb(255,41,0)" points="526.509,1548.91 545.433,1548.91 545.433,1542.27 526.509,1542.27 " />
<svg:polygon detid="369330180" count="1" value="108" id="3608008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 pos  internal  module  1   Id 369330180 " fill="rgb(255,41,0)" points="526.509,1542.27 545.433,1542.27 545.433,1535.64 526.509,1535.64 " />
<svg:polygon detid="369330436" count="1" value="108" id="3608010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 pos  internal  module  1   Id 369330436 " fill="rgb(255,41,0)" points="526.509,1529 545.433,1529 545.433,1522.37 526.509,1522.37 " />
<svg:polygon detid="369330692" count="1" value="108" id="3608011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 pos  internal  module  1   Id 369330692 " fill="rgb(255,41,0)" points="526.509,1522.37 545.433,1522.37 545.433,1515.74 526.509,1515.74 " />
<svg:polygon detid="369330948" count="1" value="108" id="3608012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 pos  internal  module  1   Id 369330948 " fill="rgb(255,41,0)" points="526.509,1515.74 545.433,1515.74 545.433,1509.1 526.509,1509.1 " />
<svg:polygon detid="369331204" count="1" value="108" id="3608013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 pos  internal  module  1   Id 369331204 " fill="rgb(255,41,0)" points="526.509,1509.1 545.433,1509.1 545.433,1502.47 526.509,1502.47 " />
<svg:polygon detid="369331460" count="1" value="108" id="3608014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 pos  internal  module  1   Id 369331460 " fill="rgb(255,41,0)" points="526.509,1502.47 545.433,1502.47 545.433,1495.83 526.509,1495.83 " />
<svg:polygon detid="369331716" count="1" value="108" id="3608015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 pos  internal  module  1   Id 369331716 " fill="rgb(255,41,0)" points="526.509,1495.83 545.433,1495.83 545.433,1489.2 526.509,1489.2 " />
<svg:polygon detid="369331972" count="1" value="108" id="3608016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 pos  internal  module  1   Id 369331972 " fill="rgb(255,41,0)" points="526.509,1489.2 545.433,1489.2 545.433,1482.56 526.509,1482.56 " />
<svg:polygon detid="369332228" count="1" value="108" id="3608017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 pos  internal  module  1   Id 369332228 " fill="rgb(255,41,0)" points="526.509,1482.56 545.433,1482.56 545.433,1475.93 526.509,1475.93 " />
<svg:polygon detid="369332484" count="1" value="108" id="3608018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 pos  internal  module  1   Id 369332484 " fill="rgb(255,41,0)" points="526.509,1475.93 545.433,1475.93 545.433,1469.29 526.509,1469.29 " />
<svg:polygon detid="369332740" count="1" value="108" id="3608019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 pos  internal  module  1   Id 369332740 " fill="rgb(255,41,0)" points="526.509,1469.29 545.433,1469.29 545.433,1462.66 526.509,1462.66 " />
<svg:polygon detid="369332996" count="1" value="108" id="3608020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 pos  internal  module  1   Id 369332996 " fill="rgb(255,41,0)" points="526.509,1462.66 545.433,1462.66 545.433,1456.02 526.509,1456.02 " />
<svg:polygon detid="369333252" count="1" value="108" id="3608021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 pos  internal  module  1   Id 369333252 " fill="rgb(255,41,0)" points="526.509,1456.02 545.433,1456.02 545.433,1449.39 526.509,1449.39 " />
<svg:polygon detid="369333508" count="1" value="108" id="3608022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 pos  internal  module  1   Id 369333508 " fill="rgb(255,41,0)" points="526.509,1449.39 545.433,1449.39 545.433,1442.76 526.509,1442.76 " />
<svg:polygon detid="369333764" count="1" value="108" id="3608023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 pos  internal  module  1   Id 369333764 " fill="rgb(255,41,0)" points="526.509,1442.76 545.433,1442.76 545.433,1436.12 526.509,1436.12 " />
<svg:polygon detid="369334020" count="1" value="108" id="3608024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 pos  internal  module  1   Id 369334020 " fill="rgb(255,41,0)" points="526.509,1436.12 545.433,1436.12 545.433,1429.49 526.509,1429.49 " />
<svg:polygon detid="369334276" count="1" value="108" id="3608025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 pos  internal  module  1   Id 369334276 " fill="rgb(255,41,0)" points="526.509,1429.49 545.433,1429.49 545.433,1422.85 526.509,1422.85 " />
<svg:polygon detid="369334532" count="1" value="108" id="3608026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 pos  internal  module  1   Id 369334532 " fill="rgb(255,41,0)" points="526.509,1422.85 545.433,1422.85 545.433,1416.22 526.509,1416.22 " />
<svg:polygon detid="369334788" count="1" value="108" id="3608027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 pos  internal  module  1   Id 369334788 " fill="rgb(255,41,0)" points="526.509,1416.22 545.433,1416.22 545.433,1409.58 526.509,1409.58 " />
<svg:polygon detid="369335044" count="1" value="108" id="3608028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 pos  internal  module  1   Id 369335044 " fill="rgb(255,41,0)" points="526.509,1409.58 545.433,1409.58 545.433,1402.95 526.509,1402.95 " />
<svg:polygon detid="369335300" count="1" value="108" id="3608029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 pos  internal  module  1   Id 369335300 " fill="rgb(255,41,0)" points="526.509,1402.95 545.433,1402.95 545.433,1396.31 526.509,1396.31 " />
<svg:polygon detid="369335556" count="1" value="108" id="3608030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 pos  internal  module  1   Id 369335556 " fill="rgb(255,41,0)" points="526.509,1396.31 545.433,1396.31 545.433,1389.68 526.509,1389.68 " />
<svg:polygon detid="369335812" count="1" value="108" id="3608031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 pos  internal  module  1   Id 369335812 " fill="rgb(255,41,0)" points="526.509,1389.68 545.433,1389.68 545.433,1383.05 526.509,1383.05 " />
<svg:polygon detid="369336068" count="1" value="108" id="3608033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 pos  internal  module  1   Id 369336068 " fill="rgb(255,41,0)" points="526.509,1376.41 545.433,1376.41 545.433,1369.78 526.509,1369.78 " />
<svg:polygon detid="369336324" count="1" value="108" id="3608034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 pos  internal  module  1   Id 369336324 " fill="rgb(255,41,0)" points="526.509,1369.78 545.433,1369.78 545.433,1363.14 526.509,1363.14 " />
<svg:polygon detid="369336580" count="1" value="108" id="3608035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 pos  internal  module  1   Id 369336580 " fill="rgb(255,41,0)" points="526.509,1363.14 545.433,1363.14 545.433,1356.51 526.509,1356.51 " />
<svg:polygon detid="369336836" count="1" value="108" id="3608036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 pos  internal  module  1   Id 369336836 " fill="rgb(255,41,0)" points="526.509,1356.51 545.433,1356.51 545.433,1349.87 526.509,1349.87 " />
<svg:polygon detid="369337092" count="1" value="108" id="3608037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 pos  internal  module  1   Id 369337092 " fill="rgb(255,41,0)" points="526.509,1349.87 545.433,1349.87 545.433,1343.24 526.509,1343.24 " />
<svg:polygon detid="369337348" count="1" value="108" id="3608038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 pos  internal  module  1   Id 369337348 " fill="rgb(255,41,0)" points="526.509,1343.24 545.433,1343.24 545.433,1336.6 526.509,1336.6 " />
<svg:polygon detid="369337604" count="1" value="108" id="3608039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 pos  internal  module  1   Id 369337604 " fill="rgb(255,41,0)" points="526.509,1336.6 545.433,1336.6 545.433,1329.97 526.509,1329.97 " />
<svg:polygon detid="369337860" count="1" value="108" id="3608040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 pos  internal  module  1   Id 369337860 " fill="rgb(255,41,0)" points="526.509,1329.97 545.433,1329.97 545.433,1323.34 526.509,1323.34 " />
<svg:polygon detid="369338116" count="1" value="108" id="3608041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 pos  internal  module  1   Id 369338116 " fill="rgb(255,41,0)" points="526.509,1323.34 545.433,1323.34 545.433,1316.7 526.509,1316.7 " />
<svg:polygon detid="369338372" count="1" value="108" id="3608042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 pos  internal  module  1   Id 369338372 " fill="rgb(255,41,0)" points="526.509,1316.7 545.433,1316.7 545.433,1310.07 526.509,1310.07 " />
<svg:polygon detid="369338628" count="1" value="108" id="3608043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 pos  internal  module  1   Id 369338628 " fill="rgb(255,41,0)" points="526.509,1310.07 545.433,1310.07 545.433,1303.43 526.509,1303.43 " />
<svg:polygon detid="369338884" count="1" value="108" id="3608044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 pos  internal  module  1   Id 369338884 " fill="rgb(255,41,0)" points="526.509,1303.43 545.433,1303.43 545.433,1296.8 526.509,1296.8 " />
<svg:polygon detid="369339140" count="1" value="108" id="3608045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 pos  internal  module  1   Id 369339140 " fill="rgb(255,41,0)" points="526.509,1296.8 545.433,1296.8 545.433,1290.16 526.509,1290.16 " />
<svg:polygon detid="369339396" count="1" value="108" id="3608046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 pos  internal  module  1   Id 369339396 " fill="rgb(255,41,0)" points="526.509,1290.16 545.433,1290.16 545.433,1283.53 526.509,1283.53 " />
<svg:polygon detid="369344776" count="1" value="108" id="3609001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 pos  external  module  2   Id 369344776 " fill="rgb(255,41,0)" points="547.798,1588.71 566.723,1588.71 566.723,1582.08 547.798,1582.08 " />
<svg:polygon detid="369345032" count="1" value="108" id="3609002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 pos  external  module  2   Id 369345032 " fill="rgb(255,41,0)" points="547.798,1582.08 566.723,1582.08 566.723,1575.45 547.798,1575.45 " />
<svg:polygon detid="369345288" count="1" value="108" id="3609003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 pos  external  module  2   Id 369345288 " fill="rgb(255,41,0)" points="547.798,1575.45 566.723,1575.45 566.723,1568.81 547.798,1568.81 " />
<svg:polygon detid="369345544" count="1" value="108" id="3609004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 pos  external  module  2   Id 369345544 " fill="rgb(255,41,0)" points="547.798,1568.81 566.723,1568.81 566.723,1562.18 547.798,1562.18 " />
<svg:polygon detid="369345800" count="1" value="108" id="3609005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 pos  external  module  2   Id 369345800 " fill="rgb(255,41,0)" points="547.798,1562.18 566.723,1562.18 566.723,1555.54 547.798,1555.54 " />
<svg:polygon detid="369346056" count="1" value="108" id="3609006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 pos  external  module  2   Id 369346056 " fill="rgb(255,41,0)" points="547.798,1555.54 566.723,1555.54 566.723,1548.91 547.798,1548.91 " />
<svg:polygon detid="369346312" count="1" value="108" id="3609007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 pos  external  module  2   Id 369346312 " fill="rgb(255,41,0)" points="547.798,1548.91 566.723,1548.91 566.723,1542.27 547.798,1542.27 " />
<svg:polygon detid="369346568" count="1" value="108" id="3609008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 pos  external  module  2   Id 369346568 " fill="rgb(255,41,0)" points="547.798,1542.27 566.723,1542.27 566.723,1535.64 547.798,1535.64 " />
<svg:polygon detid="369346824" count="1" value="108" id="3609009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 pos  external  module  2   Id 369346824 " fill="rgb(255,41,0)" points="547.798,1535.64 566.723,1535.64 566.723,1529 547.798,1529 " />
<svg:polygon detid="369347080" count="1" value="108" id="3609010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 pos  external  module  2   Id 369347080 " fill="rgb(255,41,0)" points="547.798,1529 566.723,1529 566.723,1522.37 547.798,1522.37 " />
<svg:polygon detid="369347336" count="1" value="108" id="3609011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 pos  external  module  2   Id 369347336 " fill="rgb(255,41,0)" points="547.798,1522.37 566.723,1522.37 566.723,1515.74 547.798,1515.74 " />
<svg:polygon detid="369347592" count="1" value="108" id="3609012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 pos  external  module  2   Id 369347592 " fill="rgb(255,41,0)" points="547.798,1515.74 566.723,1515.74 566.723,1509.1 547.798,1509.1 " />
<svg:polygon detid="369347848" count="1" value="108" id="3609013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 pos  external  module  2   Id 369347848 " fill="rgb(255,41,0)" points="547.798,1509.1 566.723,1509.1 566.723,1502.47 547.798,1502.47 " />
<svg:polygon detid="369348104" count="1" value="108" id="3609014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 pos  external  module  2   Id 369348104 " fill="rgb(255,41,0)" points="547.798,1502.47 566.723,1502.47 566.723,1495.83 547.798,1495.83 " />
<svg:polygon detid="369348360" count="1" value="108" id="3609015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 pos  external  module  2   Id 369348360 " fill="rgb(255,41,0)" points="547.798,1495.83 566.723,1495.83 566.723,1489.2 547.798,1489.2 " />
<svg:polygon detid="369348616" count="1" value="108" id="3609016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 pos  external  module  2   Id 369348616 " fill="rgb(255,41,0)" points="547.798,1489.2 566.723,1489.2 566.723,1482.56 547.798,1482.56 " />
<svg:polygon detid="369348872" count="1" value="108" id="3609017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 pos  external  module  2   Id 369348872 " fill="rgb(255,41,0)" points="547.798,1482.56 566.723,1482.56 566.723,1475.93 547.798,1475.93 " />
<svg:polygon detid="369349128" count="1" value="108" id="3609018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 pos  external  module  2   Id 369349128 " fill="rgb(255,41,0)" points="547.798,1475.93 566.723,1475.93 566.723,1469.29 547.798,1469.29 " />
<svg:polygon detid="369349384" count="1" value="108" id="3609019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 pos  external  module  2   Id 369349384 " fill="rgb(255,41,0)" points="547.798,1469.29 566.723,1469.29 566.723,1462.66 547.798,1462.66 " />
<svg:polygon detid="369349640" count="1" value="108" id="3609020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 pos  external  module  2   Id 369349640 " fill="rgb(255,41,0)" points="547.798,1462.66 566.723,1462.66 566.723,1456.02 547.798,1456.02 " />
<svg:polygon detid="369349896" count="1" value="108" id="3609021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 pos  external  module  2   Id 369349896 " fill="rgb(255,41,0)" points="547.798,1456.02 566.723,1456.02 566.723,1449.39 547.798,1449.39 " />
<svg:polygon detid="369350152" count="1" value="108" id="3609022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 pos  external  module  2   Id 369350152 " fill="rgb(255,41,0)" points="547.798,1449.39 566.723,1449.39 566.723,1442.76 547.798,1442.76 " />
<svg:polygon detid="369350408" count="1" value="108" id="3609023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 pos  external  module  2   Id 369350408 " fill="rgb(255,41,0)" points="547.798,1442.76 566.723,1442.76 566.723,1436.12 547.798,1436.12 " />
<svg:polygon detid="369350664" count="1" value="108" id="3609024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 pos  external  module  2   Id 369350664 " fill="rgb(255,41,0)" points="547.798,1436.12 566.723,1436.12 566.723,1429.49 547.798,1429.49 " />
<svg:polygon detid="369350920" count="1" value="108" id="3609025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 pos  external  module  2   Id 369350920 " fill="rgb(255,41,0)" points="547.798,1429.49 566.723,1429.49 566.723,1422.85 547.798,1422.85 " />
<svg:polygon detid="369351176" count="1" value="108" id="3609026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 pos  external  module  2   Id 369351176 " fill="rgb(255,41,0)" points="547.798,1422.85 566.723,1422.85 566.723,1416.22 547.798,1416.22 " />
<svg:polygon detid="369351432" count="1" value="108" id="3609027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 pos  external  module  2   Id 369351432 " fill="rgb(255,41,0)" points="547.798,1416.22 566.723,1416.22 566.723,1409.58 547.798,1409.58 " />
<svg:polygon detid="369351688" count="1" value="108" id="3609028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 pos  external  module  2   Id 369351688 " fill="rgb(255,41,0)" points="547.798,1409.58 566.723,1409.58 566.723,1402.95 547.798,1402.95 " />
<svg:polygon detid="369351944" count="1" value="108" id="3609029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 pos  external  module  2   Id 369351944 " fill="rgb(255,41,0)" points="547.798,1402.95 566.723,1402.95 566.723,1396.31 547.798,1396.31 " />
<svg:polygon detid="369352200" count="1" value="108" id="3609030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 pos  external  module  2   Id 369352200 " fill="rgb(255,41,0)" points="547.798,1396.31 566.723,1396.31 566.723,1389.68 547.798,1389.68 " />
<svg:polygon detid="369352456" count="1" value="108" id="3609031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 pos  external  module  2   Id 369352456 " fill="rgb(255,41,0)" points="547.798,1389.68 566.723,1389.68 566.723,1383.05 547.798,1383.05 " />
<svg:polygon detid="369352712" count="1" value="108" id="3609032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 pos  external  module  2   Id 369352712 " fill="rgb(255,41,0)" points="547.798,1383.05 566.723,1383.05 566.723,1376.41 547.798,1376.41 " />
<svg:polygon detid="369352968" count="1" value="108" id="3609033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 pos  external  module  2   Id 369352968 " fill="rgb(255,41,0)" points="547.798,1376.41 566.723,1376.41 566.723,1369.78 547.798,1369.78 " />
<svg:polygon detid="369353224" count="1" value="108" id="3609034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 pos  external  module  2   Id 369353224 " fill="rgb(255,41,0)" points="547.798,1369.78 566.723,1369.78 566.723,1363.14 547.798,1363.14 " />
<svg:polygon detid="369353480" count="1" value="108" id="3609035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 pos  external  module  2   Id 369353480 " fill="rgb(255,41,0)" points="547.798,1363.14 566.723,1363.14 566.723,1356.51 547.798,1356.51 " />
<svg:polygon detid="369353736" count="1" value="108" id="3609036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 pos  external  module  2   Id 369353736 " fill="rgb(255,41,0)" points="547.798,1356.51 566.723,1356.51 566.723,1349.87 547.798,1349.87 " />
<svg:polygon detid="369353992" count="1" value="108" id="3609037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 pos  external  module  2   Id 369353992 " fill="rgb(255,41,0)" points="547.798,1349.87 566.723,1349.87 566.723,1343.24 547.798,1343.24 " />
<svg:polygon detid="369354248" count="1" value="108" id="3609038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 pos  external  module  2   Id 369354248 " fill="rgb(255,41,0)" points="547.798,1343.24 566.723,1343.24 566.723,1336.6 547.798,1336.6 " />
<svg:polygon detid="369354504" count="1" value="108" id="3609039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 pos  external  module  2   Id 369354504 " fill="rgb(255,41,0)" points="547.798,1336.6 566.723,1336.6 566.723,1329.97 547.798,1329.97 " />
<svg:polygon detid="369354760" count="1" value="108" id="3609040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 pos  external  module  2   Id 369354760 " fill="rgb(255,41,0)" points="547.798,1329.97 566.723,1329.97 566.723,1323.34 547.798,1323.34 " />
<svg:polygon detid="369355016" count="1" value="108" id="3609041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 pos  external  module  2   Id 369355016 " fill="rgb(255,41,0)" points="547.798,1323.34 566.723,1323.34 566.723,1316.7 547.798,1316.7 " />
<svg:polygon detid="369355272" count="1" value="108" id="3609042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 pos  external  module  2   Id 369355272 " fill="rgb(255,41,0)" points="547.798,1316.7 566.723,1316.7 566.723,1310.07 547.798,1310.07 " />
<svg:polygon detid="369355528" count="1" value="108" id="3609043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 pos  external  module  2   Id 369355528 " fill="rgb(255,41,0)" points="547.798,1310.07 566.723,1310.07 566.723,1303.43 547.798,1303.43 " />
<svg:polygon detid="369355784" count="1" value="108" id="3609044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 pos  external  module  2   Id 369355784 " fill="rgb(255,41,0)" points="547.798,1303.43 566.723,1303.43 566.723,1296.8 547.798,1296.8 " />
<svg:polygon detid="369356040" count="1" value="108" id="3609045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 45 pos  external  module  2   Id 369356040 " fill="rgb(255,41,0)" points="547.798,1296.8 566.723,1296.8 566.723,1290.16 547.798,1290.16 " />
<svg:polygon detid="369356296" count="1" value="108" id="3609046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 46 pos  external  module  2   Id 369356296 " fill="rgb(255,41,0)" points="547.798,1290.16 566.723,1290.16 566.723,1283.53 547.798,1283.53 " />
<svg:polygon detid="369328392" count="1" value="108" id="3610001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 pos  internal  module  2   Id 369328392 " fill="rgb(255,41,0)" points="569.088,1588.71 588.012,1588.71 588.012,1582.08 569.088,1582.08 " />
<svg:polygon detid="369328648" count="1" value="108" id="3610002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 pos  internal  module  2   Id 369328648 " fill="rgb(255,41,0)" points="569.088,1582.08 588.012,1582.08 588.012,1575.45 569.088,1575.45 " />
<svg:polygon detid="369328904" count="1" value="108" id="3610003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 pos  internal  module  2   Id 369328904 " fill="rgb(255,41,0)" points="569.088,1575.45 588.012,1575.45 588.012,1568.81 569.088,1568.81 " />
<svg:polygon detid="369329160" count="1" value="108" id="3610004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 pos  internal  module  2   Id 369329160 " fill="rgb(255,41,0)" points="569.088,1568.81 588.012,1568.81 588.012,1562.18 569.088,1562.18 " />
<svg:polygon detid="369329416" count="1" value="108" id="3610005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 pos  internal  module  2   Id 369329416 " fill="rgb(255,41,0)" points="569.088,1562.18 588.012,1562.18 588.012,1555.54 569.088,1555.54 " />
<svg:polygon detid="369329672" count="1" value="108" id="3610006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 pos  internal  module  2   Id 369329672 " fill="rgb(255,41,0)" points="569.088,1555.54 588.012,1555.54 588.012,1548.91 569.088,1548.91 " />
<svg:polygon detid="369329928" count="1" value="108" id="3610007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 pos  internal  module  2   Id 369329928 " fill="rgb(255,41,0)" points="569.088,1548.91 588.012,1548.91 588.012,1542.27 569.088,1542.27 " />
<svg:polygon detid="369330184" count="1" value="108" id="3610008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 pos  internal  module  2   Id 369330184 " fill="rgb(255,41,0)" points="569.088,1542.27 588.012,1542.27 588.012,1535.64 569.088,1535.64 " />
<svg:polygon detid="369330440" count="1" value="108" id="3610010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 pos  internal  module  2   Id 369330440 " fill="rgb(255,41,0)" points="569.088,1529 588.012,1529 588.012,1522.37 569.088,1522.37 " />
<svg:polygon detid="369330696" count="1" value="108" id="3610011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 pos  internal  module  2   Id 369330696 " fill="rgb(255,41,0)" points="569.088,1522.37 588.012,1522.37 588.012,1515.74 569.088,1515.74 " />
<svg:polygon detid="369330952" count="1" value="108" id="3610012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 pos  internal  module  2   Id 369330952 " fill="rgb(255,41,0)" points="569.088,1515.74 588.012,1515.74 588.012,1509.1 569.088,1509.1 " />
<svg:polygon detid="369331208" count="1" value="108" id="3610013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 pos  internal  module  2   Id 369331208 " fill="rgb(255,41,0)" points="569.088,1509.1 588.012,1509.1 588.012,1502.47 569.088,1502.47 " />
<svg:polygon detid="369331464" count="1" value="108" id="3610014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 pos  internal  module  2   Id 369331464 " fill="rgb(255,41,0)" points="569.088,1502.47 588.012,1502.47 588.012,1495.83 569.088,1495.83 " />
<svg:polygon detid="369331720" count="1" value="108" id="3610015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 pos  internal  module  2   Id 369331720 " fill="rgb(255,41,0)" points="569.088,1495.83 588.012,1495.83 588.012,1489.2 569.088,1489.2 " />
<svg:polygon detid="369331976" count="1" value="108" id="3610016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 pos  internal  module  2   Id 369331976 " fill="rgb(255,41,0)" points="569.088,1489.2 588.012,1489.2 588.012,1482.56 569.088,1482.56 " />
<svg:polygon detid="369332232" count="1" value="108" id="3610017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 pos  internal  module  2   Id 369332232 " fill="rgb(255,41,0)" points="569.088,1482.56 588.012,1482.56 588.012,1475.93 569.088,1475.93 " />
<svg:polygon detid="369332488" count="1" value="108" id="3610018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 pos  internal  module  2   Id 369332488 " fill="rgb(255,41,0)" points="569.088,1475.93 588.012,1475.93 588.012,1469.29 569.088,1469.29 " />
<svg:polygon detid="369332744" count="1" value="108" id="3610019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 pos  internal  module  2   Id 369332744 " fill="rgb(255,41,0)" points="569.088,1469.29 588.012,1469.29 588.012,1462.66 569.088,1462.66 " />
<svg:polygon detid="369333000" count="1" value="108" id="3610020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 pos  internal  module  2   Id 369333000 " fill="rgb(255,41,0)" points="569.088,1462.66 588.012,1462.66 588.012,1456.02 569.088,1456.02 " />
<svg:polygon detid="369333256" count="1" value="108" id="3610021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 pos  internal  module  2   Id 369333256 " fill="rgb(255,41,0)" points="569.088,1456.02 588.012,1456.02 588.012,1449.39 569.088,1449.39 " />
<svg:polygon detid="369333512" count="1" value="108" id="3610022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 pos  internal  module  2   Id 369333512 " fill="rgb(255,41,0)" points="569.088,1449.39 588.012,1449.39 588.012,1442.76 569.088,1442.76 " />
<svg:polygon detid="369333768" count="1" value="108" id="3610023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 pos  internal  module  2   Id 369333768 " fill="rgb(255,41,0)" points="569.088,1442.76 588.012,1442.76 588.012,1436.12 569.088,1436.12 " />
<svg:polygon detid="369334024" count="1" value="108" id="3610024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 pos  internal  module  2   Id 369334024 " fill="rgb(255,41,0)" points="569.088,1436.12 588.012,1436.12 588.012,1429.49 569.088,1429.49 " />
<svg:polygon detid="369334280" count="1" value="108" id="3610025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 pos  internal  module  2   Id 369334280 " fill="rgb(255,41,0)" points="569.088,1429.49 588.012,1429.49 588.012,1422.85 569.088,1422.85 " />
<svg:polygon detid="369334536" count="1" value="108" id="3610026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 pos  internal  module  2   Id 369334536 " fill="rgb(255,41,0)" points="569.088,1422.85 588.012,1422.85 588.012,1416.22 569.088,1416.22 " />
<svg:polygon detid="369334792" count="1" value="108" id="3610027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 pos  internal  module  2   Id 369334792 " fill="rgb(255,41,0)" points="569.088,1416.22 588.012,1416.22 588.012,1409.58 569.088,1409.58 " />
<svg:polygon detid="369335048" count="1" value="108" id="3610028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 pos  internal  module  2   Id 369335048 " fill="rgb(255,41,0)" points="569.088,1409.58 588.012,1409.58 588.012,1402.95 569.088,1402.95 " />
<svg:polygon detid="369335304" count="1" value="108" id="3610029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 pos  internal  module  2   Id 369335304 " fill="rgb(255,41,0)" points="569.088,1402.95 588.012,1402.95 588.012,1396.31 569.088,1396.31 " />
<svg:polygon detid="369335560" count="1" value="108" id="3610030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 pos  internal  module  2   Id 369335560 " fill="rgb(255,41,0)" points="569.088,1396.31 588.012,1396.31 588.012,1389.68 569.088,1389.68 " />
<svg:polygon detid="369335816" count="1" value="108" id="3610031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 pos  internal  module  2   Id 369335816 " fill="rgb(255,41,0)" points="569.088,1389.68 588.012,1389.68 588.012,1383.05 569.088,1383.05 " />
<svg:polygon detid="369336072" count="1" value="108" id="3610033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 pos  internal  module  2   Id 369336072 " fill="rgb(255,41,0)" points="569.088,1376.41 588.012,1376.41 588.012,1369.78 569.088,1369.78 " />
<svg:polygon detid="369336328" count="1" value="108" id="3610034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 pos  internal  module  2   Id 369336328 " fill="rgb(255,41,0)" points="569.088,1369.78 588.012,1369.78 588.012,1363.14 569.088,1363.14 " />
<svg:polygon detid="369336584" count="1" value="108" id="3610035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 pos  internal  module  2   Id 369336584 " fill="rgb(255,41,0)" points="569.088,1363.14 588.012,1363.14 588.012,1356.51 569.088,1356.51 " />
<svg:polygon detid="369336840" count="1" value="108" id="3610036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 pos  internal  module  2   Id 369336840 " fill="rgb(255,41,0)" points="569.088,1356.51 588.012,1356.51 588.012,1349.87 569.088,1349.87 " />
<svg:polygon detid="369337096" count="1" value="108" id="3610037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 pos  internal  module  2   Id 369337096 " fill="rgb(255,41,0)" points="569.088,1349.87 588.012,1349.87 588.012,1343.24 569.088,1343.24 " />
<svg:polygon detid="369337352" count="1" value="108" id="3610038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 pos  internal  module  2   Id 369337352 " fill="rgb(255,41,0)" points="569.088,1343.24 588.012,1343.24 588.012,1336.6 569.088,1336.6 " />
<svg:polygon detid="369337608" count="1" value="108" id="3610039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 pos  internal  module  2   Id 369337608 " fill="rgb(255,41,0)" points="569.088,1336.6 588.012,1336.6 588.012,1329.97 569.088,1329.97 " />
<svg:polygon detid="369337864" count="1" value="108" id="3610040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 pos  internal  module  2   Id 369337864 " fill="rgb(255,41,0)" points="569.088,1329.97 588.012,1329.97 588.012,1323.34 569.088,1323.34 " />
<svg:polygon detid="369338120" count="1" value="108" id="3610041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 pos  internal  module  2   Id 369338120 " fill="rgb(255,41,0)" points="569.088,1323.34 588.012,1323.34 588.012,1316.7 569.088,1316.7 " />
<svg:polygon detid="369338376" count="1" value="108" id="3610042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 pos  internal  module  2   Id 369338376 " fill="rgb(255,41,0)" points="569.088,1316.7 588.012,1316.7 588.012,1310.07 569.088,1310.07 " />
<svg:polygon detid="369338632" count="1" value="108" id="3610043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 pos  internal  module  2   Id 369338632 " fill="rgb(255,41,0)" points="569.088,1310.07 588.012,1310.07 588.012,1303.43 569.088,1303.43 " />
<svg:polygon detid="369338888" count="1" value="108" id="3610044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 pos  internal  module  2   Id 369338888 " fill="rgb(255,41,0)" points="569.088,1303.43 588.012,1303.43 588.012,1296.8 569.088,1296.8 " />
<svg:polygon detid="369339144" count="1" value="108" id="3610045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 pos  internal  module  2   Id 369339144 " fill="rgb(255,41,0)" points="569.088,1296.8 588.012,1296.8 588.012,1290.16 569.088,1290.16 " />
<svg:polygon detid="369339400" count="1" value="108" id="3610046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 pos  internal  module  2   Id 369339400 " fill="rgb(255,41,0)" points="569.088,1290.16 588.012,1290.16 588.012,1283.53 569.088,1283.53 " />
<svg:polygon detid="369344780" count="1" value="108" id="3611001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 pos  external  module  3   Id 369344780 " fill="rgb(255,41,0)" points="590.378,1588.71 609.302,1588.71 609.302,1582.08 590.378,1582.08 " />
<svg:polygon detid="369345036" count="1" value="108" id="3611002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 pos  external  module  3   Id 369345036 " fill="rgb(255,41,0)" points="590.378,1582.08 609.302,1582.08 609.302,1575.45 590.378,1575.45 " />
<svg:polygon detid="369345292" count="1" value="108" id="3611003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 pos  external  module  3   Id 369345292 " fill="rgb(255,41,0)" points="590.378,1575.45 609.302,1575.45 609.302,1568.81 590.378,1568.81 " />
<svg:polygon detid="369345548" count="1" value="108" id="3611004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 pos  external  module  3   Id 369345548 " fill="rgb(255,41,0)" points="590.378,1568.81 609.302,1568.81 609.302,1562.18 590.378,1562.18 " />
<svg:polygon detid="369345804" count="1" value="108" id="3611005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 pos  external  module  3   Id 369345804 " fill="rgb(255,41,0)" points="590.378,1562.18 609.302,1562.18 609.302,1555.54 590.378,1555.54 " />
<svg:polygon detid="369346060" count="1" value="108" id="3611006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 pos  external  module  3   Id 369346060 " fill="rgb(255,41,0)" points="590.378,1555.54 609.302,1555.54 609.302,1548.91 590.378,1548.91 " />
<svg:polygon detid="369346316" count="1" value="108" id="3611007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 pos  external  module  3   Id 369346316 " fill="rgb(255,41,0)" points="590.378,1548.91 609.302,1548.91 609.302,1542.27 590.378,1542.27 " />
<svg:polygon detid="369346572" count="1" value="108" id="3611008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 pos  external  module  3   Id 369346572 " fill="rgb(255,41,0)" points="590.378,1542.27 609.302,1542.27 609.302,1535.64 590.378,1535.64 " />
<svg:polygon detid="369346828" count="1" value="108" id="3611009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 pos  external  module  3   Id 369346828 " fill="rgb(255,41,0)" points="590.378,1535.64 609.302,1535.64 609.302,1529 590.378,1529 " />
<svg:polygon detid="369347084" count="1" value="108" id="3611010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 pos  external  module  3   Id 369347084 " fill="rgb(255,41,0)" points="590.378,1529 609.302,1529 609.302,1522.37 590.378,1522.37 " />
<svg:polygon detid="369347340" count="1" value="108" id="3611011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 pos  external  module  3   Id 369347340 " fill="rgb(255,41,0)" points="590.378,1522.37 609.302,1522.37 609.302,1515.74 590.378,1515.74 " />
<svg:polygon detid="369347596" count="1" value="108" id="3611012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 pos  external  module  3   Id 369347596 " fill="rgb(255,41,0)" points="590.378,1515.74 609.302,1515.74 609.302,1509.1 590.378,1509.1 " />
<svg:polygon detid="369347852" count="1" value="108" id="3611013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 pos  external  module  3   Id 369347852 " fill="rgb(255,41,0)" points="590.378,1509.1 609.302,1509.1 609.302,1502.47 590.378,1502.47 " />
<svg:polygon detid="369348108" count="1" value="108" id="3611014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 pos  external  module  3   Id 369348108 " fill="rgb(255,41,0)" points="590.378,1502.47 609.302,1502.47 609.302,1495.83 590.378,1495.83 " />
<svg:polygon detid="369348364" count="1" value="108" id="3611015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 pos  external  module  3   Id 369348364 " fill="rgb(255,41,0)" points="590.378,1495.83 609.302,1495.83 609.302,1489.2 590.378,1489.2 " />
<svg:polygon detid="369348620" count="1" value="108" id="3611016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 pos  external  module  3   Id 369348620 " fill="rgb(255,41,0)" points="590.378,1489.2 609.302,1489.2 609.302,1482.56 590.378,1482.56 " />
<svg:polygon detid="369348876" count="1" value="108" id="3611017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 pos  external  module  3   Id 369348876 " fill="rgb(255,41,0)" points="590.378,1482.56 609.302,1482.56 609.302,1475.93 590.378,1475.93 " />
<svg:polygon detid="369349132" count="1" value="108" id="3611018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 pos  external  module  3   Id 369349132 " fill="rgb(255,41,0)" points="590.378,1475.93 609.302,1475.93 609.302,1469.29 590.378,1469.29 " />
<svg:polygon detid="369349388" count="1" value="108" id="3611019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 pos  external  module  3   Id 369349388 " fill="rgb(255,41,0)" points="590.378,1469.29 609.302,1469.29 609.302,1462.66 590.378,1462.66 " />
<svg:polygon detid="369349644" count="1" value="108" id="3611020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 pos  external  module  3   Id 369349644 " fill="rgb(255,41,0)" points="590.378,1462.66 609.302,1462.66 609.302,1456.02 590.378,1456.02 " />
<svg:polygon detid="369349900" count="1" value="108" id="3611021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 pos  external  module  3   Id 369349900 " fill="rgb(255,41,0)" points="590.378,1456.02 609.302,1456.02 609.302,1449.39 590.378,1449.39 " />
<svg:polygon detid="369350156" count="1" value="108" id="3611022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 pos  external  module  3   Id 369350156 " fill="rgb(255,41,0)" points="590.378,1449.39 609.302,1449.39 609.302,1442.76 590.378,1442.76 " />
<svg:polygon detid="369350412" count="1" value="108" id="3611023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 pos  external  module  3   Id 369350412 " fill="rgb(255,41,0)" points="590.378,1442.76 609.302,1442.76 609.302,1436.12 590.378,1436.12 " />
<svg:polygon detid="369350668" count="1" value="108" id="3611024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 pos  external  module  3   Id 369350668 " fill="rgb(255,41,0)" points="590.378,1436.12 609.302,1436.12 609.302,1429.49 590.378,1429.49 " />
<svg:polygon detid="369350924" count="1" value="108" id="3611025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 pos  external  module  3   Id 369350924 " fill="rgb(255,41,0)" points="590.378,1429.49 609.302,1429.49 609.302,1422.85 590.378,1422.85 " />
<svg:polygon detid="369351180" count="1" value="108" id="3611026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 pos  external  module  3   Id 369351180 " fill="rgb(255,41,0)" points="590.378,1422.85 609.302,1422.85 609.302,1416.22 590.378,1416.22 " />
<svg:polygon detid="369351436" count="1" value="108" id="3611027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 pos  external  module  3   Id 369351436 " fill="rgb(255,41,0)" points="590.378,1416.22 609.302,1416.22 609.302,1409.58 590.378,1409.58 " />
<svg:polygon detid="369351692" count="1" value="108" id="3611028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 pos  external  module  3   Id 369351692 " fill="rgb(255,41,0)" points="590.378,1409.58 609.302,1409.58 609.302,1402.95 590.378,1402.95 " />
<svg:polygon detid="369351948" count="1" value="108" id="3611029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 pos  external  module  3   Id 369351948 " fill="rgb(255,41,0)" points="590.378,1402.95 609.302,1402.95 609.302,1396.31 590.378,1396.31 " />
<svg:polygon detid="369352204" count="1" value="108" id="3611030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 pos  external  module  3   Id 369352204 " fill="rgb(255,41,0)" points="590.378,1396.31 609.302,1396.31 609.302,1389.68 590.378,1389.68 " />
<svg:polygon detid="369352460" count="1" value="108" id="3611031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 pos  external  module  3   Id 369352460 " fill="rgb(255,41,0)" points="590.378,1389.68 609.302,1389.68 609.302,1383.05 590.378,1383.05 " />
<svg:polygon detid="369352716" count="1" value="108" id="3611032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 pos  external  module  3   Id 369352716 " fill="rgb(255,41,0)" points="590.378,1383.05 609.302,1383.05 609.302,1376.41 590.378,1376.41 " />
<svg:polygon detid="369352972" count="1" value="108" id="3611033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 pos  external  module  3   Id 369352972 " fill="rgb(255,41,0)" points="590.378,1376.41 609.302,1376.41 609.302,1369.78 590.378,1369.78 " />
<svg:polygon detid="369353228" count="1" value="108" id="3611034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 pos  external  module  3   Id 369353228 " fill="rgb(255,41,0)" points="590.378,1369.78 609.302,1369.78 609.302,1363.14 590.378,1363.14 " />
<svg:polygon detid="369353484" count="1" value="108" id="3611035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 pos  external  module  3   Id 369353484 " fill="rgb(255,41,0)" points="590.378,1363.14 609.302,1363.14 609.302,1356.51 590.378,1356.51 " />
<svg:polygon detid="369353740" count="1" value="108" id="3611036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 pos  external  module  3   Id 369353740 " fill="rgb(255,41,0)" points="590.378,1356.51 609.302,1356.51 609.302,1349.87 590.378,1349.87 " />
<svg:polygon detid="369353996" count="1" value="108" id="3611037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 pos  external  module  3   Id 369353996 " fill="rgb(255,41,0)" points="590.378,1349.87 609.302,1349.87 609.302,1343.24 590.378,1343.24 " />
<svg:polygon detid="369354252" count="1" value="108" id="3611038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 pos  external  module  3   Id 369354252 " fill="rgb(255,41,0)" points="590.378,1343.24 609.302,1343.24 609.302,1336.6 590.378,1336.6 " />
<svg:polygon detid="369354508" count="1" value="108" id="3611039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 pos  external  module  3   Id 369354508 " fill="rgb(255,41,0)" points="590.378,1336.6 609.302,1336.6 609.302,1329.97 590.378,1329.97 " />
<svg:polygon detid="369354764" count="1" value="108" id="3611040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 pos  external  module  3   Id 369354764 " fill="rgb(255,41,0)" points="590.378,1329.97 609.302,1329.97 609.302,1323.34 590.378,1323.34 " />
<svg:polygon detid="369355020" count="1" value="108" id="3611041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 pos  external  module  3   Id 369355020 " fill="rgb(255,41,0)" points="590.378,1323.34 609.302,1323.34 609.302,1316.7 590.378,1316.7 " />
<svg:polygon detid="369355276" count="1" value="108" id="3611042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 pos  external  module  3   Id 369355276 " fill="rgb(255,41,0)" points="590.378,1316.7 609.302,1316.7 609.302,1310.07 590.378,1310.07 " />
<svg:polygon detid="369355532" count="1" value="108" id="3611043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 pos  external  module  3   Id 369355532 " fill="rgb(255,41,0)" points="590.378,1310.07 609.302,1310.07 609.302,1303.43 590.378,1303.43 " />
<svg:polygon detid="369355788" count="1" value="108" id="3611044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 pos  external  module  3   Id 369355788 " fill="rgb(255,41,0)" points="590.378,1303.43 609.302,1303.43 609.302,1296.8 590.378,1296.8 " />
<svg:polygon detid="369356044" count="1" value="108" id="3611045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 45 pos  external  module  3   Id 369356044 " fill="rgb(255,41,0)" points="590.378,1296.8 609.302,1296.8 609.302,1290.16 590.378,1290.16 " />
<svg:polygon detid="369356300" count="1" value="108" id="3611046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 46 pos  external  module  3   Id 369356300 " fill="rgb(255,41,0)" points="590.378,1290.16 609.302,1290.16 609.302,1283.53 590.378,1283.53 " />
<svg:polygon detid="369328396" count="1" value="108" id="3612001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 1 pos  internal  module  3   Id 369328396 " fill="rgb(255,41,0)" points="611.668,1588.71 630.592,1588.71 630.592,1582.08 611.668,1582.08 " />
<svg:polygon detid="369328652" count="1" value="108" id="3612002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 2 pos  internal  module  3   Id 369328652 " fill="rgb(255,41,0)" points="611.668,1582.08 630.592,1582.08 630.592,1575.45 611.668,1575.45 " />
<svg:polygon detid="369328908" count="1" value="108" id="3612003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 3 pos  internal  module  3   Id 369328908 " fill="rgb(255,41,0)" points="611.668,1575.45 630.592,1575.45 630.592,1568.81 611.668,1568.81 " />
<svg:polygon detid="369329164" count="1" value="108" id="3612004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 4 pos  internal  module  3   Id 369329164 " fill="rgb(255,41,0)" points="611.668,1568.81 630.592,1568.81 630.592,1562.18 611.668,1562.18 " />
<svg:polygon detid="369329420" count="1" value="108" id="3612005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 5 pos  internal  module  3   Id 369329420 " fill="rgb(255,41,0)" points="611.668,1562.18 630.592,1562.18 630.592,1555.54 611.668,1555.54 " />
<svg:polygon detid="369329676" count="1" value="108" id="3612006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 6 pos  internal  module  3   Id 369329676 " fill="rgb(255,41,0)" points="611.668,1555.54 630.592,1555.54 630.592,1548.91 611.668,1548.91 " />
<svg:polygon detid="369329932" count="1" value="108" id="3612007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 7 pos  internal  module  3   Id 369329932 " fill="rgb(255,41,0)" points="611.668,1548.91 630.592,1548.91 630.592,1542.27 611.668,1542.27 " />
<svg:polygon detid="369330188" count="1" value="108" id="3612008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 8 pos  internal  module  3   Id 369330188 " fill="rgb(255,41,0)" points="611.668,1542.27 630.592,1542.27 630.592,1535.64 611.668,1535.64 " />
<svg:polygon detid="369330444" count="1" value="108" id="3612010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 9 pos  internal  module  3   Id 369330444 " fill="rgb(255,41,0)" points="611.668,1529 630.592,1529 630.592,1522.37 611.668,1522.37 " />
<svg:polygon detid="369330700" count="1" value="108" id="3612011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 10 pos  internal  module  3   Id 369330700 " fill="rgb(255,41,0)" points="611.668,1522.37 630.592,1522.37 630.592,1515.74 611.668,1515.74 " />
<svg:polygon detid="369330956" count="1" value="108" id="3612012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 11 pos  internal  module  3   Id 369330956 " fill="rgb(255,41,0)" points="611.668,1515.74 630.592,1515.74 630.592,1509.1 611.668,1509.1 " />
<svg:polygon detid="369331212" count="1" value="108" id="3612013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 12 pos  internal  module  3   Id 369331212 " fill="rgb(255,41,0)" points="611.668,1509.1 630.592,1509.1 630.592,1502.47 611.668,1502.47 " />
<svg:polygon detid="369331468" count="1" value="108" id="3612014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 13 pos  internal  module  3   Id 369331468 " fill="rgb(255,41,0)" points="611.668,1502.47 630.592,1502.47 630.592,1495.83 611.668,1495.83 " />
<svg:polygon detid="369331724" count="1" value="108" id="3612015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 14 pos  internal  module  3   Id 369331724 " fill="rgb(255,41,0)" points="611.668,1495.83 630.592,1495.83 630.592,1489.2 611.668,1489.2 " />
<svg:polygon detid="369331980" count="1" value="108" id="3612016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 15 pos  internal  module  3   Id 369331980 " fill="rgb(255,41,0)" points="611.668,1489.2 630.592,1489.2 630.592,1482.56 611.668,1482.56 " />
<svg:polygon detid="369332236" count="1" value="108" id="3612017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 16 pos  internal  module  3   Id 369332236 " fill="rgb(255,41,0)" points="611.668,1482.56 630.592,1482.56 630.592,1475.93 611.668,1475.93 " />
<svg:polygon detid="369332492" count="1" value="108" id="3612018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 17 pos  internal  module  3   Id 369332492 " fill="rgb(255,41,0)" points="611.668,1475.93 630.592,1475.93 630.592,1469.29 611.668,1469.29 " />
<svg:polygon detid="369332748" count="1" value="108" id="3612019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 18 pos  internal  module  3   Id 369332748 " fill="rgb(255,41,0)" points="611.668,1469.29 630.592,1469.29 630.592,1462.66 611.668,1462.66 " />
<svg:polygon detid="369333004" count="1" value="108" id="3612020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 19 pos  internal  module  3   Id 369333004 " fill="rgb(255,41,0)" points="611.668,1462.66 630.592,1462.66 630.592,1456.02 611.668,1456.02 " />
<svg:polygon detid="369333260" count="1" value="108" id="3612021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 20 pos  internal  module  3   Id 369333260 " fill="rgb(255,41,0)" points="611.668,1456.02 630.592,1456.02 630.592,1449.39 611.668,1449.39 " />
<svg:polygon detid="369333516" count="1" value="108" id="3612022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 21 pos  internal  module  3   Id 369333516 " fill="rgb(255,41,0)" points="611.668,1449.39 630.592,1449.39 630.592,1442.76 611.668,1442.76 " />
<svg:polygon detid="369333772" count="1" value="108" id="3612023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 22 pos  internal  module  3   Id 369333772 " fill="rgb(255,41,0)" points="611.668,1442.76 630.592,1442.76 630.592,1436.12 611.668,1436.12 " />
<svg:polygon detid="369334028" count="1" value="108" id="3612024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 23 pos  internal  module  3   Id 369334028 " fill="rgb(255,41,0)" points="611.668,1436.12 630.592,1436.12 630.592,1429.49 611.668,1429.49 " />
<svg:polygon detid="369334284" count="1" value="108" id="3612025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 24 pos  internal  module  3   Id 369334284 " fill="rgb(255,41,0)" points="611.668,1429.49 630.592,1429.49 630.592,1422.85 611.668,1422.85 " />
<svg:polygon detid="369334540" count="1" value="108" id="3612026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 25 pos  internal  module  3   Id 369334540 " fill="rgb(255,41,0)" points="611.668,1422.85 630.592,1422.85 630.592,1416.22 611.668,1416.22 " />
<svg:polygon detid="369334796" count="1" value="108" id="3612027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 26 pos  internal  module  3   Id 369334796 " fill="rgb(255,41,0)" points="611.668,1416.22 630.592,1416.22 630.592,1409.58 611.668,1409.58 " />
<svg:polygon detid="369335052" count="1" value="108" id="3612028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 27 pos  internal  module  3   Id 369335052 " fill="rgb(255,41,0)" points="611.668,1409.58 630.592,1409.58 630.592,1402.95 611.668,1402.95 " />
<svg:polygon detid="369335308" count="1" value="108" id="3612029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 28 pos  internal  module  3   Id 369335308 " fill="rgb(255,41,0)" points="611.668,1402.95 630.592,1402.95 630.592,1396.31 611.668,1396.31 " />
<svg:polygon detid="369335564" count="1" value="108" id="3612030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 29 pos  internal  module  3   Id 369335564 " fill="rgb(255,41,0)" points="611.668,1396.31 630.592,1396.31 630.592,1389.68 611.668,1389.68 " />
<svg:polygon detid="369335820" count="1" value="108" id="3612031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 30 pos  internal  module  3   Id 369335820 " fill="rgb(255,41,0)" points="611.668,1389.68 630.592,1389.68 630.592,1383.05 611.668,1383.05 " />
<svg:polygon detid="369336076" count="1" value="108" id="3612033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 31 pos  internal  module  3   Id 369336076 " fill="rgb(255,41,0)" points="611.668,1376.41 630.592,1376.41 630.592,1369.78 611.668,1369.78 " />
<svg:polygon detid="369336332" count="1" value="108" id="3612034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 32 pos  internal  module  3   Id 369336332 " fill="rgb(255,41,0)" points="611.668,1369.78 630.592,1369.78 630.592,1363.14 611.668,1363.14 " />
<svg:polygon detid="369336588" count="1" value="108" id="3612035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 33 pos  internal  module  3   Id 369336588 " fill="rgb(255,41,0)" points="611.668,1363.14 630.592,1363.14 630.592,1356.51 611.668,1356.51 " />
<svg:polygon detid="369336844" count="1" value="108" id="3612036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 34 pos  internal  module  3   Id 369336844 " fill="rgb(255,41,0)" points="611.668,1356.51 630.592,1356.51 630.592,1349.87 611.668,1349.87 " />
<svg:polygon detid="369337100" count="1" value="108" id="3612037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 35 pos  internal  module  3   Id 369337100 " fill="rgb(255,41,0)" points="611.668,1349.87 630.592,1349.87 630.592,1343.24 611.668,1343.24 " />
<svg:polygon detid="369337356" count="1" value="108" id="3612038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 36 pos  internal  module  3   Id 369337356 " fill="rgb(255,41,0)" points="611.668,1343.24 630.592,1343.24 630.592,1336.6 611.668,1336.6 " />
<svg:polygon detid="369337612" count="1" value="108" id="3612039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 37 pos  internal  module  3   Id 369337612 " fill="rgb(255,41,0)" points="611.668,1336.6 630.592,1336.6 630.592,1329.97 611.668,1329.97 " />
<svg:polygon detid="369337868" count="1" value="108" id="3612040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 38 pos  internal  module  3   Id 369337868 " fill="rgb(255,41,0)" points="611.668,1329.97 630.592,1329.97 630.592,1323.34 611.668,1323.34 " />
<svg:polygon detid="369338124" count="1" value="108" id="3612041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 39 pos  internal  module  3   Id 369338124 " fill="rgb(255,41,0)" points="611.668,1323.34 630.592,1323.34 630.592,1316.7 611.668,1316.7 " />
<svg:polygon detid="369338380" count="1" value="108" id="3612042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 40 pos  internal  module  3   Id 369338380 " fill="rgb(255,41,0)" points="611.668,1316.7 630.592,1316.7 630.592,1310.07 611.668,1310.07 " />
<svg:polygon detid="369338636" count="1" value="108" id="3612043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 41 pos  internal  module  3   Id 369338636 " fill="rgb(255,41,0)" points="611.668,1310.07 630.592,1310.07 630.592,1303.43 611.668,1303.43 " />
<svg:polygon detid="369338892" count="1" value="108" id="3612044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 42 pos  internal  module  3   Id 369338892 " fill="rgb(255,41,0)" points="611.668,1303.43 630.592,1303.43 630.592,1296.8 611.668,1296.8 " />
<svg:polygon detid="369339148" count="1" value="108" id="3612045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 43 pos  internal  module  3   Id 369339148 " fill="rgb(255,41,0)" points="611.668,1296.8 630.592,1296.8 630.592,1290.16 611.668,1290.16 " />
<svg:polygon detid="369339404" count="1" value="108" id="3612046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 3 string 44 pos  internal  module  3   Id 369339404 " fill="rgb(255,41,0)" points="611.668,1290.16 630.592,1290.16 630.592,1283.53 611.668,1283.53 " />
<svg:polygon detid="369361156" count="1" value="111" id="3701001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 neg  internal  module  1   Id 369361156 " fill="rgb(255,35,0)" points="717.48,1589.86 736.404,1589.86 736.404,1584.37 717.48,1584.37 " />
<svg:polygon detid="369361412" count="1" value="111" id="3701002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 neg  internal  module  1   Id 369361412 " fill="rgb(255,35,0)" points="717.48,1584.37 736.404,1584.37 736.404,1578.88 717.48,1578.88 " />
<svg:polygon detid="369361668" count="1" value="111" id="3701003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 neg  internal  module  1   Id 369361668 " fill="rgb(255,35,0)" points="717.48,1578.88 736.404,1578.88 736.404,1573.39 717.48,1573.39 " />
<svg:polygon detid="369361924" count="1" value="111" id="3701004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 neg  internal  module  1   Id 369361924 " fill="rgb(255,35,0)" points="717.48,1573.39 736.404,1573.39 736.404,1567.9 717.48,1567.9 " />
<svg:polygon detid="369362180" count="1" value="111" id="3701005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 neg  internal  module  1   Id 369362180 " fill="rgb(255,35,0)" points="717.48,1567.9 736.404,1567.9 736.404,1562.41 717.48,1562.41 " />
<svg:polygon detid="369362436" count="1" value="111" id="3701007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 neg  internal  module  1   Id 369362436 " fill="rgb(255,35,0)" points="717.48,1556.92 736.404,1556.92 736.404,1551.44 717.48,1551.44 " />
<svg:polygon detid="369362692" count="1" value="111" id="3701008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 neg  internal  module  1   Id 369362692 " fill="rgb(255,35,0)" points="717.48,1551.44 736.404,1551.44 736.404,1545.95 717.48,1545.95 " />
<svg:polygon detid="369362948" count="1" value="111" id="3701009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 neg  internal  module  1   Id 369362948 " fill="rgb(255,35,0)" points="717.48,1545.95 736.404,1545.95 736.404,1540.46 717.48,1540.46 " />
<svg:polygon detid="369363204" count="1" value="111" id="3701010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 neg  internal  module  1   Id 369363204 " fill="rgb(255,35,0)" points="717.48,1540.46 736.404,1540.46 736.404,1534.97 717.48,1534.97 " />
<svg:polygon detid="369363460" count="1" value="111" id="3701011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 neg  internal  module  1   Id 369363460 " fill="rgb(255,35,0)" points="717.48,1534.97 736.404,1534.97 736.404,1529.48 717.48,1529.48 " />
<svg:polygon detid="369363716" count="1" value="111" id="3701012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 neg  internal  module  1   Id 369363716 " fill="rgb(255,35,0)" points="717.48,1529.48 736.404,1529.48 736.404,1523.99 717.48,1523.99 " />
<svg:polygon detid="369363972" count="1" value="111" id="3701013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 neg  internal  module  1   Id 369363972 " fill="rgb(255,35,0)" points="717.48,1523.99 736.404,1523.99 736.404,1518.5 717.48,1518.5 " />
<svg:polygon detid="369364228" count="1" value="111" id="3701014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 neg  internal  module  1   Id 369364228 " fill="rgb(255,35,0)" points="717.48,1518.5 736.404,1518.5 736.404,1513.01 717.48,1513.01 " />
<svg:polygon detid="369364484" count="1" value="111" id="3701015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 neg  internal  module  1   Id 369364484 " fill="rgb(255,35,0)" points="717.48,1513.01 736.404,1513.01 736.404,1507.52 717.48,1507.52 " />
<svg:polygon detid="369364740" count="1" value="111" id="3701016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 neg  internal  module  1   Id 369364740 " fill="rgb(255,35,0)" points="717.48,1507.52 736.404,1507.52 736.404,1502.03 717.48,1502.03 " />
<svg:polygon detid="369364996" count="1" value="111" id="3701017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 neg  internal  module  1   Id 369364996 " fill="rgb(255,35,0)" points="717.48,1502.03 736.404,1502.03 736.404,1496.54 717.48,1496.54 " />
<svg:polygon detid="369365252" count="1" value="111" id="3701018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 neg  internal  module  1   Id 369365252 " fill="rgb(255,35,0)" points="717.48,1496.54 736.404,1496.54 736.404,1491.06 717.48,1491.06 " />
<svg:polygon detid="369365508" count="1" value="111" id="3701019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 neg  internal  module  1   Id 369365508 " fill="rgb(255,35,0)" points="717.48,1491.06 736.404,1491.06 736.404,1485.57 717.48,1485.57 " />
<svg:polygon detid="369365764" count="1" value="111" id="3701021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 neg  internal  module  1   Id 369365764 " fill="rgb(255,35,0)" points="717.48,1480.08 736.404,1480.08 736.404,1474.59 717.48,1474.59 " />
<svg:polygon detid="369366020" count="1" value="111" id="3701022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 neg  internal  module  1   Id 369366020 " fill="rgb(255,35,0)" points="717.48,1474.59 736.404,1474.59 736.404,1469.1 717.48,1469.1 " />
<svg:polygon detid="369366276" count="1" value="111" id="3701023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 neg  internal  module  1   Id 369366276 " fill="rgb(255,35,0)" points="717.48,1469.1 736.404,1469.1 736.404,1463.61 717.48,1463.61 " />
<svg:polygon detid="369366532" count="1" value="111" id="3701024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 neg  internal  module  1   Id 369366532 " fill="rgb(255,35,0)" points="717.48,1463.61 736.404,1463.61 736.404,1458.12 717.48,1458.12 " />
<svg:polygon detid="369366788" count="1" value="111" id="3701025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 neg  internal  module  1   Id 369366788 " fill="rgb(255,35,0)" points="717.48,1458.12 736.404,1458.12 736.404,1452.63 717.48,1452.63 " />
<svg:polygon detid="369367044" count="1" value="111" id="3701026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 neg  internal  module  1   Id 369367044 " fill="rgb(255,35,0)" points="717.48,1452.63 736.404,1452.63 736.404,1447.14 717.48,1447.14 " />
<svg:polygon detid="369367300" count="1" value="111" id="3701027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 neg  internal  module  1   Id 369367300 " fill="rgb(255,35,0)" points="717.48,1447.14 736.404,1447.14 736.404,1441.65 717.48,1441.65 " />
<svg:polygon detid="369367556" count="1" value="111" id="3701028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 neg  internal  module  1   Id 369367556 " fill="rgb(255,35,0)" points="717.48,1441.65 736.404,1441.65 736.404,1436.16 717.48,1436.16 " />
<svg:polygon detid="369367812" count="1" value="111" id="3701029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 neg  internal  module  1   Id 369367812 " fill="rgb(255,35,0)" points="717.48,1436.16 736.404,1436.16 736.404,1430.67 717.48,1430.67 " />
<svg:polygon detid="369368068" count="1" value="111" id="3701030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 neg  internal  module  1   Id 369368068 " fill="rgb(255,35,0)" points="717.48,1430.67 736.404,1430.67 736.404,1425.19 717.48,1425.19 " />
<svg:polygon detid="369368324" count="1" value="111" id="3701031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 neg  internal  module  1   Id 369368324 " fill="rgb(255,35,0)" points="717.48,1425.19 736.404,1425.19 736.404,1419.7 717.48,1419.7 " />
<svg:polygon detid="369368580" count="1" value="111" id="3701032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 neg  internal  module  1   Id 369368580 " fill="rgb(255,35,0)" points="717.48,1419.7 736.404,1419.7 736.404,1414.21 717.48,1414.21 " />
<svg:polygon detid="369368836" count="1" value="111" id="3701033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 neg  internal  module  1   Id 369368836 " fill="rgb(255,35,0)" points="717.48,1414.21 736.404,1414.21 736.404,1408.72 717.48,1408.72 " />
<svg:polygon detid="369369092" count="1" value="111" id="3701035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 neg  internal  module  1   Id 369369092 " fill="rgb(255,35,0)" points="717.48,1403.23 736.404,1403.23 736.404,1397.74 717.48,1397.74 " />
<svg:polygon detid="369369348" count="1" value="111" id="3701036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 neg  internal  module  1   Id 369369348 " fill="rgb(255,35,0)" points="717.48,1397.74 736.404,1397.74 736.404,1392.25 717.48,1392.25 " />
<svg:polygon detid="369369604" count="1" value="111" id="3701037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 neg  internal  module  1   Id 369369604 " fill="rgb(255,35,0)" points="717.48,1392.25 736.404,1392.25 736.404,1386.76 717.48,1386.76 " />
<svg:polygon detid="369369860" count="1" value="111" id="3701038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 neg  internal  module  1   Id 369369860 " fill="rgb(255,35,0)" points="717.48,1386.76 736.404,1386.76 736.404,1381.27 717.48,1381.27 " />
<svg:polygon detid="369370116" count="1" value="111" id="3701039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 neg  internal  module  1   Id 369370116 " fill="rgb(255,35,0)" points="717.48,1381.27 736.404,1381.27 736.404,1375.78 717.48,1375.78 " />
<svg:polygon detid="369370372" count="1" value="111" id="3701040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 neg  internal  module  1   Id 369370372 " fill="rgb(255,35,0)" points="717.48,1375.78 736.404,1375.78 736.404,1370.29 717.48,1370.29 " />
<svg:polygon detid="369370628" count="1" value="111" id="3701041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 neg  internal  module  1   Id 369370628 " fill="rgb(255,35,0)" points="717.48,1370.29 736.404,1370.29 736.404,1364.8 717.48,1364.8 " />
<svg:polygon detid="369370884" count="1" value="111" id="3701042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 neg  internal  module  1   Id 369370884 " fill="rgb(255,35,0)" points="717.48,1364.8 736.404,1364.8 736.404,1359.32 717.48,1359.32 " />
<svg:polygon detid="369371140" count="1" value="111" id="3701043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 neg  internal  module  1   Id 369371140 " fill="rgb(255,35,0)" points="717.48,1359.32 736.404,1359.32 736.404,1353.83 717.48,1353.83 " />
<svg:polygon detid="369371396" count="1" value="111" id="3701044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 neg  internal  module  1   Id 369371396 " fill="rgb(255,35,0)" points="717.48,1353.83 736.404,1353.83 736.404,1348.34 717.48,1348.34 " />
<svg:polygon detid="369371652" count="1" value="111" id="3701045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 neg  internal  module  1   Id 369371652 " fill="rgb(255,35,0)" points="717.48,1348.34 736.404,1348.34 736.404,1342.85 717.48,1342.85 " />
<svg:polygon detid="369371908" count="1" value="111" id="3701046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 neg  internal  module  1   Id 369371908 " fill="rgb(255,35,0)" points="717.48,1342.85 736.404,1342.85 736.404,1337.36 717.48,1337.36 " />
<svg:polygon detid="369372164" count="1" value="111" id="3701047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 neg  internal  module  1   Id 369372164 " fill="rgb(255,35,0)" points="717.48,1337.36 736.404,1337.36 736.404,1331.87 717.48,1331.87 " />
<svg:polygon detid="369372420" count="1" value="111" id="3701049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 neg  internal  module  1   Id 369372420 " fill="rgb(255,35,0)" points="717.48,1326.38 736.404,1326.38 736.404,1320.89 717.48,1320.89 " />
<svg:polygon detid="369372676" count="1" value="111" id="3701050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 neg  internal  module  1   Id 369372676 " fill="rgb(255,35,0)" points="717.48,1320.89 736.404,1320.89 736.404,1315.4 717.48,1315.4 " />
<svg:polygon detid="369372932" count="1" value="111" id="3701051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 neg  internal  module  1   Id 369372932 " fill="rgb(255,35,0)" points="717.48,1315.4 736.404,1315.4 736.404,1309.91 717.48,1309.91 " />
<svg:polygon detid="369373188" count="1" value="111" id="3701052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 neg  internal  module  1   Id 369373188 " fill="rgb(255,35,0)" points="717.48,1309.91 736.404,1309.91 736.404,1304.42 717.48,1304.42 " />
<svg:polygon detid="369373444" count="1" value="111" id="3701053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 neg  internal  module  1   Id 369373444 " fill="rgb(255,35,0)" points="717.48,1304.42 736.404,1304.42 736.404,1298.93 717.48,1298.93 " />
<svg:polygon detid="369373700" count="1" value="111" id="3701054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 neg  internal  module  1   Id 369373700 " fill="rgb(255,35,0)" points="717.48,1298.93 736.404,1298.93 736.404,1293.45 717.48,1293.45 " />
<svg:polygon detid="369373956" count="1" value="111" id="3701055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 neg  internal  module  1   Id 369373956 " fill="rgb(255,35,0)" points="717.48,1293.45 736.404,1293.45 736.404,1287.96 717.48,1287.96 " />
<svg:polygon detid="369374212" count="1" value="111" id="3701056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 neg  internal  module  1   Id 369374212 " fill="rgb(255,35,0)" points="717.48,1287.96 736.404,1287.96 736.404,1282.47 717.48,1282.47 " />
<svg:polygon detid="369377540" count="1" value="111" id="3702001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 neg  external  module  1   Id 369377540 " fill="rgb(255,35,0)" points="738.77,1589.86 757.694,1589.86 757.694,1584.37 738.77,1584.37 " />
<svg:polygon detid="369377796" count="1" value="111" id="3702002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 neg  external  module  1   Id 369377796 " fill="rgb(255,35,0)" points="738.77,1584.37 757.694,1584.37 757.694,1578.88 738.77,1578.88 " />
<svg:polygon detid="369378052" count="1" value="111" id="3702003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 neg  external  module  1   Id 369378052 " fill="rgb(255,35,0)" points="738.77,1578.88 757.694,1578.88 757.694,1573.39 738.77,1573.39 " />
<svg:polygon detid="369378308" count="1" value="111" id="3702004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 neg  external  module  1   Id 369378308 " fill="rgb(255,35,0)" points="738.77,1573.39 757.694,1573.39 757.694,1567.9 738.77,1567.9 " />
<svg:polygon detid="369378564" count="1" value="111" id="3702005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 neg  external  module  1   Id 369378564 " fill="rgb(255,35,0)" points="738.77,1567.9 757.694,1567.9 757.694,1562.41 738.77,1562.41 " />
<svg:polygon detid="369378820" count="1" value="111" id="3702006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 neg  external  module  1   Id 369378820 " fill="rgb(255,35,0)" points="738.77,1562.41 757.694,1562.41 757.694,1556.92 738.77,1556.92 " />
<svg:polygon detid="369379076" count="1" value="111" id="3702007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 neg  external  module  1   Id 369379076 " fill="rgb(255,35,0)" points="738.77,1556.92 757.694,1556.92 757.694,1551.44 738.77,1551.44 " />
<svg:polygon detid="369379332" count="1" value="111" id="3702008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 neg  external  module  1   Id 369379332 " fill="rgb(255,35,0)" points="738.77,1551.44 757.694,1551.44 757.694,1545.95 738.77,1545.95 " />
<svg:polygon detid="369379588" count="1" value="111" id="3702009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 neg  external  module  1   Id 369379588 " fill="rgb(255,35,0)" points="738.77,1545.95 757.694,1545.95 757.694,1540.46 738.77,1540.46 " />
<svg:polygon detid="369379844" count="1" value="111" id="3702010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 neg  external  module  1   Id 369379844 " fill="rgb(255,35,0)" points="738.77,1540.46 757.694,1540.46 757.694,1534.97 738.77,1534.97 " />
<svg:polygon detid="369380100" count="1" value="111" id="3702011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 neg  external  module  1   Id 369380100 " fill="rgb(255,35,0)" points="738.77,1534.97 757.694,1534.97 757.694,1529.48 738.77,1529.48 " />
<svg:polygon detid="369380356" count="1" value="111" id="3702012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 neg  external  module  1   Id 369380356 " fill="rgb(255,35,0)" points="738.77,1529.48 757.694,1529.48 757.694,1523.99 738.77,1523.99 " />
<svg:polygon detid="369380612" count="1" value="111" id="3702013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 neg  external  module  1   Id 369380612 " fill="rgb(255,35,0)" points="738.77,1523.99 757.694,1523.99 757.694,1518.5 738.77,1518.5 " />
<svg:polygon detid="369380868" count="1" value="111" id="3702014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 neg  external  module  1   Id 369380868 " fill="rgb(255,35,0)" points="738.77,1518.5 757.694,1518.5 757.694,1513.01 738.77,1513.01 " />
<svg:polygon detid="369381124" count="1" value="111" id="3702015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 neg  external  module  1   Id 369381124 " fill="rgb(255,35,0)" points="738.77,1513.01 757.694,1513.01 757.694,1507.52 738.77,1507.52 " />
<svg:polygon detid="369381380" count="1" value="111" id="3702016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 neg  external  module  1   Id 369381380 " fill="rgb(255,35,0)" points="738.77,1507.52 757.694,1507.52 757.694,1502.03 738.77,1502.03 " />
<svg:polygon detid="369381636" count="1" value="111" id="3702017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 neg  external  module  1   Id 369381636 " fill="rgb(255,35,0)" points="738.77,1502.03 757.694,1502.03 757.694,1496.54 738.77,1496.54 " />
<svg:polygon detid="369381892" count="1" value="111" id="3702018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 neg  external  module  1   Id 369381892 " fill="rgb(255,35,0)" points="738.77,1496.54 757.694,1496.54 757.694,1491.06 738.77,1491.06 " />
<svg:polygon detid="369382148" count="1" value="111" id="3702019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 neg  external  module  1   Id 369382148 " fill="rgb(255,35,0)" points="738.77,1491.06 757.694,1491.06 757.694,1485.57 738.77,1485.57 " />
<svg:polygon detid="369382404" count="1" value="111" id="3702020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 neg  external  module  1   Id 369382404 " fill="rgb(255,35,0)" points="738.77,1485.57 757.694,1485.57 757.694,1480.08 738.77,1480.08 " />
<svg:polygon detid="369382660" count="1" value="111" id="3702021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 neg  external  module  1   Id 369382660 " fill="rgb(255,35,0)" points="738.77,1480.08 757.694,1480.08 757.694,1474.59 738.77,1474.59 " />
<svg:polygon detid="369382916" count="1" value="111" id="3702022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 neg  external  module  1   Id 369382916 " fill="rgb(255,35,0)" points="738.77,1474.59 757.694,1474.59 757.694,1469.1 738.77,1469.1 " />
<svg:polygon detid="369383172" count="1" value="111" id="3702023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 neg  external  module  1   Id 369383172 " fill="rgb(255,35,0)" points="738.77,1469.1 757.694,1469.1 757.694,1463.61 738.77,1463.61 " />
<svg:polygon detid="369383428" count="1" value="111" id="3702024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 neg  external  module  1   Id 369383428 " fill="rgb(255,35,0)" points="738.77,1463.61 757.694,1463.61 757.694,1458.12 738.77,1458.12 " />
<svg:polygon detid="369383684" count="1" value="111" id="3702025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 neg  external  module  1   Id 369383684 " fill="rgb(255,35,0)" points="738.77,1458.12 757.694,1458.12 757.694,1452.63 738.77,1452.63 " />
<svg:polygon detid="369383940" count="1" value="111" id="3702026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 neg  external  module  1   Id 369383940 " fill="rgb(255,35,0)" points="738.77,1452.63 757.694,1452.63 757.694,1447.14 738.77,1447.14 " />
<svg:polygon detid="369384196" count="1" value="111" id="3702027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 neg  external  module  1   Id 369384196 " fill="rgb(255,35,0)" points="738.77,1447.14 757.694,1447.14 757.694,1441.65 738.77,1441.65 " />
<svg:polygon detid="369384452" count="1" value="111" id="3702028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 neg  external  module  1   Id 369384452 " fill="rgb(255,35,0)" points="738.77,1441.65 757.694,1441.65 757.694,1436.16 738.77,1436.16 " />
<svg:polygon detid="369384708" count="1" value="111" id="3702029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 neg  external  module  1   Id 369384708 " fill="rgb(255,35,0)" points="738.77,1436.16 757.694,1436.16 757.694,1430.67 738.77,1430.67 " />
<svg:polygon detid="369384964" count="1" value="111" id="3702030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 neg  external  module  1   Id 369384964 " fill="rgb(255,35,0)" points="738.77,1430.67 757.694,1430.67 757.694,1425.19 738.77,1425.19 " />
<svg:polygon detid="369385220" count="1" value="111" id="3702031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 neg  external  module  1   Id 369385220 " fill="rgb(255,35,0)" points="738.77,1425.19 757.694,1425.19 757.694,1419.7 738.77,1419.7 " />
<svg:polygon detid="369385476" count="1" value="111" id="3702032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 neg  external  module  1   Id 369385476 " fill="rgb(255,35,0)" points="738.77,1419.7 757.694,1419.7 757.694,1414.21 738.77,1414.21 " />
<svg:polygon detid="369385732" count="1" value="111" id="3702033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 neg  external  module  1   Id 369385732 " fill="rgb(255,35,0)" points="738.77,1414.21 757.694,1414.21 757.694,1408.72 738.77,1408.72 " />
<svg:polygon detid="369385988" count="1" value="111" id="3702034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 neg  external  module  1   Id 369385988 " fill="rgb(255,35,0)" points="738.77,1408.72 757.694,1408.72 757.694,1403.23 738.77,1403.23 " />
<svg:polygon detid="369386244" count="1" value="111" id="3702035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 neg  external  module  1   Id 369386244 " fill="rgb(255,35,0)" points="738.77,1403.23 757.694,1403.23 757.694,1397.74 738.77,1397.74 " />
<svg:polygon detid="369386500" count="1" value="111" id="3702036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 neg  external  module  1   Id 369386500 " fill="rgb(255,35,0)" points="738.77,1397.74 757.694,1397.74 757.694,1392.25 738.77,1392.25 " />
<svg:polygon detid="369386756" count="1" value="111" id="3702037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 neg  external  module  1   Id 369386756 " fill="rgb(255,35,0)" points="738.77,1392.25 757.694,1392.25 757.694,1386.76 738.77,1386.76 " />
<svg:polygon detid="369387012" count="1" value="111" id="3702038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 neg  external  module  1   Id 369387012 " fill="rgb(255,35,0)" points="738.77,1386.76 757.694,1386.76 757.694,1381.27 738.77,1381.27 " />
<svg:polygon detid="369387268" count="1" value="111" id="3702039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 neg  external  module  1   Id 369387268 " fill="rgb(255,35,0)" points="738.77,1381.27 757.694,1381.27 757.694,1375.78 738.77,1375.78 " />
<svg:polygon detid="369387524" count="1" value="111" id="3702040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 neg  external  module  1   Id 369387524 " fill="rgb(255,35,0)" points="738.77,1375.78 757.694,1375.78 757.694,1370.29 738.77,1370.29 " />
<svg:polygon detid="369387780" count="1" value="111" id="3702041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 neg  external  module  1   Id 369387780 " fill="rgb(255,35,0)" points="738.77,1370.29 757.694,1370.29 757.694,1364.8 738.77,1364.8 " />
<svg:polygon detid="369388036" count="1" value="111" id="3702042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 neg  external  module  1   Id 369388036 " fill="rgb(255,35,0)" points="738.77,1364.8 757.694,1364.8 757.694,1359.32 738.77,1359.32 " />
<svg:polygon detid="369388292" count="1" value="111" id="3702043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 neg  external  module  1   Id 369388292 " fill="rgb(255,35,0)" points="738.77,1359.32 757.694,1359.32 757.694,1353.83 738.77,1353.83 " />
<svg:polygon detid="369388548" count="1" value="111" id="3702044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 neg  external  module  1   Id 369388548 " fill="rgb(255,35,0)" points="738.77,1353.83 757.694,1353.83 757.694,1348.34 738.77,1348.34 " />
<svg:polygon detid="369388804" count="1" value="111" id="3702045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 neg  external  module  1   Id 369388804 " fill="rgb(255,35,0)" points="738.77,1348.34 757.694,1348.34 757.694,1342.85 738.77,1342.85 " />
<svg:polygon detid="369389060" count="1" value="111" id="3702046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 neg  external  module  1   Id 369389060 " fill="rgb(255,35,0)" points="738.77,1342.85 757.694,1342.85 757.694,1337.36 738.77,1337.36 " />
<svg:polygon detid="369389316" count="1" value="111" id="3702047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 neg  external  module  1   Id 369389316 " fill="rgb(255,35,0)" points="738.77,1337.36 757.694,1337.36 757.694,1331.87 738.77,1331.87 " />
<svg:polygon detid="369389572" count="1" value="111" id="3702048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 neg  external  module  1   Id 369389572 " fill="rgb(255,35,0)" points="738.77,1331.87 757.694,1331.87 757.694,1326.38 738.77,1326.38 " />
<svg:polygon detid="369389828" count="1" value="111" id="3702049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 neg  external  module  1   Id 369389828 " fill="rgb(255,35,0)" points="738.77,1326.38 757.694,1326.38 757.694,1320.89 738.77,1320.89 " />
<svg:polygon detid="369390084" count="1" value="111" id="3702050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 neg  external  module  1   Id 369390084 " fill="rgb(255,35,0)" points="738.77,1320.89 757.694,1320.89 757.694,1315.4 738.77,1315.4 " />
<svg:polygon detid="369390340" count="1" value="111" id="3702051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 neg  external  module  1   Id 369390340 " fill="rgb(255,35,0)" points="738.77,1315.4 757.694,1315.4 757.694,1309.91 738.77,1309.91 " />
<svg:polygon detid="369390596" count="1" value="111" id="3702052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 neg  external  module  1   Id 369390596 " fill="rgb(255,35,0)" points="738.77,1309.91 757.694,1309.91 757.694,1304.42 738.77,1304.42 " />
<svg:polygon detid="369390852" count="1" value="111" id="3702053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 53 neg  external  module  1   Id 369390852 " fill="rgb(255,35,0)" points="738.77,1304.42 757.694,1304.42 757.694,1298.93 738.77,1298.93 " />
<svg:polygon detid="369391108" count="1" value="111" id="3702054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 54 neg  external  module  1   Id 369391108 " fill="rgb(255,35,0)" points="738.77,1298.93 757.694,1298.93 757.694,1293.45 738.77,1293.45 " />
<svg:polygon detid="369391364" count="1" value="111" id="3702055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 55 neg  external  module  1   Id 369391364 " fill="rgb(255,35,0)" points="738.77,1293.45 757.694,1293.45 757.694,1287.96 738.77,1287.96 " />
<svg:polygon detid="369391620" count="1" value="111" id="3702056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 56 neg  external  module  1   Id 369391620 " fill="rgb(255,35,0)" points="738.77,1287.96 757.694,1287.96 757.694,1282.47 738.77,1282.47 " />
<svg:polygon detid="369361160" count="1" value="111" id="3703001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 neg  internal  module  2   Id 369361160 " fill="rgb(255,35,0)" points="760.06,1589.86 778.984,1589.86 778.984,1584.37 760.06,1584.37 " />
<svg:polygon detid="369361416" count="1" value="111" id="3703002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 neg  internal  module  2   Id 369361416 " fill="rgb(255,35,0)" points="760.06,1584.37 778.984,1584.37 778.984,1578.88 760.06,1578.88 " />
<svg:polygon detid="369361672" count="1" value="111" id="3703003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 neg  internal  module  2   Id 369361672 " fill="rgb(255,35,0)" points="760.06,1578.88 778.984,1578.88 778.984,1573.39 760.06,1573.39 " />
<svg:polygon detid="369361928" count="1" value="111" id="3703004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 neg  internal  module  2   Id 369361928 " fill="rgb(255,35,0)" points="760.06,1573.39 778.984,1573.39 778.984,1567.9 760.06,1567.9 " />
<svg:polygon detid="369362184" count="1" value="111" id="3703005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 neg  internal  module  2   Id 369362184 " fill="rgb(255,35,0)" points="760.06,1567.9 778.984,1567.9 778.984,1562.41 760.06,1562.41 " />
<svg:polygon detid="369362440" count="1" value="111" id="3703007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 neg  internal  module  2   Id 369362440 " fill="rgb(255,35,0)" points="760.06,1556.92 778.984,1556.92 778.984,1551.44 760.06,1551.44 " />
<svg:polygon detid="369362696" count="1" value="111" id="3703008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 neg  internal  module  2   Id 369362696 " fill="rgb(255,35,0)" points="760.06,1551.44 778.984,1551.44 778.984,1545.95 760.06,1545.95 " />
<svg:polygon detid="369362952" count="1" value="111" id="3703009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 neg  internal  module  2   Id 369362952 " fill="rgb(255,35,0)" points="760.06,1545.95 778.984,1545.95 778.984,1540.46 760.06,1540.46 " />
<svg:polygon detid="369363208" count="1" value="111" id="3703010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 neg  internal  module  2   Id 369363208 " fill="rgb(255,35,0)" points="760.06,1540.46 778.984,1540.46 778.984,1534.97 760.06,1534.97 " />
<svg:polygon detid="369363464" count="1" value="111" id="3703011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 neg  internal  module  2   Id 369363464 " fill="rgb(255,35,0)" points="760.06,1534.97 778.984,1534.97 778.984,1529.48 760.06,1529.48 " />
<svg:polygon detid="369363720" count="1" value="111" id="3703012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 neg  internal  module  2   Id 369363720 " fill="rgb(255,35,0)" points="760.06,1529.48 778.984,1529.48 778.984,1523.99 760.06,1523.99 " />
<svg:polygon detid="369363976" count="1" value="111" id="3703013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 neg  internal  module  2   Id 369363976 " fill="rgb(255,35,0)" points="760.06,1523.99 778.984,1523.99 778.984,1518.5 760.06,1518.5 " />
<svg:polygon detid="369364232" count="1" value="111" id="3703014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 neg  internal  module  2   Id 369364232 " fill="rgb(255,35,0)" points="760.06,1518.5 778.984,1518.5 778.984,1513.01 760.06,1513.01 " />
<svg:polygon detid="369364488" count="1" value="111" id="3703015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 neg  internal  module  2   Id 369364488 " fill="rgb(255,35,0)" points="760.06,1513.01 778.984,1513.01 778.984,1507.52 760.06,1507.52 " />
<svg:polygon detid="369364744" count="1" value="111" id="3703016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 neg  internal  module  2   Id 369364744 " fill="rgb(255,35,0)" points="760.06,1507.52 778.984,1507.52 778.984,1502.03 760.06,1502.03 " />
<svg:polygon detid="369365000" count="1" value="111" id="3703017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 neg  internal  module  2   Id 369365000 " fill="rgb(255,35,0)" points="760.06,1502.03 778.984,1502.03 778.984,1496.54 760.06,1496.54 " />
<svg:polygon detid="369365256" count="1" value="111" id="3703018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 neg  internal  module  2   Id 369365256 " fill="rgb(255,35,0)" points="760.06,1496.54 778.984,1496.54 778.984,1491.06 760.06,1491.06 " />
<svg:polygon detid="369365512" count="1" value="111" id="3703019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 neg  internal  module  2   Id 369365512 " fill="rgb(255,35,0)" points="760.06,1491.06 778.984,1491.06 778.984,1485.57 760.06,1485.57 " />
<svg:polygon detid="369365768" count="1" value="111" id="3703021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 neg  internal  module  2   Id 369365768 " fill="rgb(255,35,0)" points="760.06,1480.08 778.984,1480.08 778.984,1474.59 760.06,1474.59 " />
<svg:polygon detid="369366024" count="1" value="111" id="3703022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 neg  internal  module  2   Id 369366024 " fill="rgb(255,35,0)" points="760.06,1474.59 778.984,1474.59 778.984,1469.1 760.06,1469.1 " />
<svg:polygon detid="369366280" count="1" value="111" id="3703023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 neg  internal  module  2   Id 369366280 " fill="rgb(255,35,0)" points="760.06,1469.1 778.984,1469.1 778.984,1463.61 760.06,1463.61 " />
<svg:polygon detid="369366536" count="1" value="111" id="3703024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 neg  internal  module  2   Id 369366536 " fill="rgb(255,35,0)" points="760.06,1463.61 778.984,1463.61 778.984,1458.12 760.06,1458.12 " />
<svg:polygon detid="369366792" count="1" value="111" id="3703025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 neg  internal  module  2   Id 369366792 " fill="rgb(255,35,0)" points="760.06,1458.12 778.984,1458.12 778.984,1452.63 760.06,1452.63 " />
<svg:polygon detid="369367048" count="1" value="111" id="3703026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 neg  internal  module  2   Id 369367048 " fill="rgb(255,35,0)" points="760.06,1452.63 778.984,1452.63 778.984,1447.14 760.06,1447.14 " />
<svg:polygon detid="369367304" count="1" value="111" id="3703027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 neg  internal  module  2   Id 369367304 " fill="rgb(255,35,0)" points="760.06,1447.14 778.984,1447.14 778.984,1441.65 760.06,1441.65 " />
<svg:polygon detid="369367560" count="1" value="111" id="3703028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 neg  internal  module  2   Id 369367560 " fill="rgb(255,35,0)" points="760.06,1441.65 778.984,1441.65 778.984,1436.16 760.06,1436.16 " />
<svg:polygon detid="369367816" count="1" value="111" id="3703029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 neg  internal  module  2   Id 369367816 " fill="rgb(255,35,0)" points="760.06,1436.16 778.984,1436.16 778.984,1430.67 760.06,1430.67 " />
<svg:polygon detid="369368072" count="1" value="111" id="3703030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 neg  internal  module  2   Id 369368072 " fill="rgb(255,35,0)" points="760.06,1430.67 778.984,1430.67 778.984,1425.19 760.06,1425.19 " />
<svg:polygon detid="369368328" count="1" value="111" id="3703031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 neg  internal  module  2   Id 369368328 " fill="rgb(255,35,0)" points="760.06,1425.19 778.984,1425.19 778.984,1419.7 760.06,1419.7 " />
<svg:polygon detid="369368584" count="1" value="111" id="3703032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 neg  internal  module  2   Id 369368584 " fill="rgb(255,35,0)" points="760.06,1419.7 778.984,1419.7 778.984,1414.21 760.06,1414.21 " />
<svg:polygon detid="369368840" count="1" value="111" id="3703033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 neg  internal  module  2   Id 369368840 " fill="rgb(255,35,0)" points="760.06,1414.21 778.984,1414.21 778.984,1408.72 760.06,1408.72 " />
<svg:polygon detid="369369096" count="1" value="111" id="3703035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 neg  internal  module  2   Id 369369096 " fill="rgb(255,35,0)" points="760.06,1403.23 778.984,1403.23 778.984,1397.74 760.06,1397.74 " />
<svg:polygon detid="369369352" count="1" value="111" id="3703036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 neg  internal  module  2   Id 369369352 " fill="rgb(255,35,0)" points="760.06,1397.74 778.984,1397.74 778.984,1392.25 760.06,1392.25 " />
<svg:polygon detid="369369608" count="1" value="111" id="3703037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 neg  internal  module  2   Id 369369608 " fill="rgb(255,35,0)" points="760.06,1392.25 778.984,1392.25 778.984,1386.76 760.06,1386.76 " />
<svg:polygon detid="369369864" count="1" value="111" id="3703038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 neg  internal  module  2   Id 369369864 " fill="rgb(255,35,0)" points="760.06,1386.76 778.984,1386.76 778.984,1381.27 760.06,1381.27 " />
<svg:polygon detid="369370120" count="1" value="111" id="3703039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 neg  internal  module  2   Id 369370120 " fill="rgb(255,35,0)" points="760.06,1381.27 778.984,1381.27 778.984,1375.78 760.06,1375.78 " />
<svg:polygon detid="369370376" count="1" value="111" id="3703040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 neg  internal  module  2   Id 369370376 " fill="rgb(255,35,0)" points="760.06,1375.78 778.984,1375.78 778.984,1370.29 760.06,1370.29 " />
<svg:polygon detid="369370632" count="1" value="111" id="3703041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 neg  internal  module  2   Id 369370632 " fill="rgb(255,35,0)" points="760.06,1370.29 778.984,1370.29 778.984,1364.8 760.06,1364.8 " />
<svg:polygon detid="369370888" count="1" value="111" id="3703042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 neg  internal  module  2   Id 369370888 " fill="rgb(255,35,0)" points="760.06,1364.8 778.984,1364.8 778.984,1359.32 760.06,1359.32 " />
<svg:polygon detid="369371144" count="1" value="111" id="3703043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 neg  internal  module  2   Id 369371144 " fill="rgb(255,35,0)" points="760.06,1359.32 778.984,1359.32 778.984,1353.83 760.06,1353.83 " />
<svg:polygon detid="369371400" count="1" value="111" id="3703044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 neg  internal  module  2   Id 369371400 " fill="rgb(255,35,0)" points="760.06,1353.83 778.984,1353.83 778.984,1348.34 760.06,1348.34 " />
<svg:polygon detid="369371656" count="1" value="111" id="3703045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 neg  internal  module  2   Id 369371656 " fill="rgb(255,35,0)" points="760.06,1348.34 778.984,1348.34 778.984,1342.85 760.06,1342.85 " />
<svg:polygon detid="369371912" count="1" value="111" id="3703046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 neg  internal  module  2   Id 369371912 " fill="rgb(255,35,0)" points="760.06,1342.85 778.984,1342.85 778.984,1337.36 760.06,1337.36 " />
<svg:polygon detid="369372168" count="1" value="111" id="3703047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 neg  internal  module  2   Id 369372168 " fill="rgb(255,35,0)" points="760.06,1337.36 778.984,1337.36 778.984,1331.87 760.06,1331.87 " />
<svg:polygon detid="369372424" count="1" value="111" id="3703049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 neg  internal  module  2   Id 369372424 " fill="rgb(255,35,0)" points="760.06,1326.38 778.984,1326.38 778.984,1320.89 760.06,1320.89 " />
<svg:polygon detid="369372680" count="1" value="111" id="3703050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 neg  internal  module  2   Id 369372680 " fill="rgb(255,35,0)" points="760.06,1320.89 778.984,1320.89 778.984,1315.4 760.06,1315.4 " />
<svg:polygon detid="369372936" count="1" value="111" id="3703051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 neg  internal  module  2   Id 369372936 " fill="rgb(255,35,0)" points="760.06,1315.4 778.984,1315.4 778.984,1309.91 760.06,1309.91 " />
<svg:polygon detid="369373192" count="1" value="111" id="3703052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 neg  internal  module  2   Id 369373192 " fill="rgb(255,35,0)" points="760.06,1309.91 778.984,1309.91 778.984,1304.42 760.06,1304.42 " />
<svg:polygon detid="369373448" count="1" value="111" id="3703053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 neg  internal  module  2   Id 369373448 " fill="rgb(255,35,0)" points="760.06,1304.42 778.984,1304.42 778.984,1298.93 760.06,1298.93 " />
<svg:polygon detid="369373704" count="1" value="111" id="3703054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 neg  internal  module  2   Id 369373704 " fill="rgb(255,35,0)" points="760.06,1298.93 778.984,1298.93 778.984,1293.45 760.06,1293.45 " />
<svg:polygon detid="369373960" count="1" value="111" id="3703055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 neg  internal  module  2   Id 369373960 " fill="rgb(255,35,0)" points="760.06,1293.45 778.984,1293.45 778.984,1287.96 760.06,1287.96 " />
<svg:polygon detid="369374216" count="1" value="111" id="3703056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 neg  internal  module  2   Id 369374216 " fill="rgb(255,35,0)" points="760.06,1287.96 778.984,1287.96 778.984,1282.47 760.06,1282.47 " />
<svg:polygon detid="369377544" count="1" value="111" id="3704001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 neg  external  module  2   Id 369377544 " fill="rgb(255,35,0)" points="781.35,1589.86 800.274,1589.86 800.274,1584.37 781.35,1584.37 " />
<svg:polygon detid="369377800" count="1" value="111" id="3704002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 neg  external  module  2   Id 369377800 " fill="rgb(255,35,0)" points="781.35,1584.37 800.274,1584.37 800.274,1578.88 781.35,1578.88 " />
<svg:polygon detid="369378056" count="1" value="111" id="3704003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 neg  external  module  2   Id 369378056 " fill="rgb(255,35,0)" points="781.35,1578.88 800.274,1578.88 800.274,1573.39 781.35,1573.39 " />
<svg:polygon detid="369378312" count="1" value="111" id="3704004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 neg  external  module  2   Id 369378312 " fill="rgb(255,35,0)" points="781.35,1573.39 800.274,1573.39 800.274,1567.9 781.35,1567.9 " />
<svg:polygon detid="369378568" count="1" value="111" id="3704005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 neg  external  module  2   Id 369378568 " fill="rgb(255,35,0)" points="781.35,1567.9 800.274,1567.9 800.274,1562.41 781.35,1562.41 " />
<svg:polygon detid="369378824" count="1" value="111" id="3704006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 neg  external  module  2   Id 369378824 " fill="rgb(255,35,0)" points="781.35,1562.41 800.274,1562.41 800.274,1556.92 781.35,1556.92 " />
<svg:polygon detid="369379080" count="1" value="111" id="3704007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 neg  external  module  2   Id 369379080 " fill="rgb(255,35,0)" points="781.35,1556.92 800.274,1556.92 800.274,1551.44 781.35,1551.44 " />
<svg:polygon detid="369379336" count="1" value="111" id="3704008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 neg  external  module  2   Id 369379336 " fill="rgb(255,35,0)" points="781.35,1551.44 800.274,1551.44 800.274,1545.95 781.35,1545.95 " />
<svg:polygon detid="369379592" count="1" value="111" id="3704009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 neg  external  module  2   Id 369379592 " fill="rgb(255,35,0)" points="781.35,1545.95 800.274,1545.95 800.274,1540.46 781.35,1540.46 " />
<svg:polygon detid="369379848" count="1" value="111" id="3704010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 neg  external  module  2   Id 369379848 " fill="rgb(255,35,0)" points="781.35,1540.46 800.274,1540.46 800.274,1534.97 781.35,1534.97 " />
<svg:polygon detid="369380104" count="1" value="111" id="3704011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 neg  external  module  2   Id 369380104 " fill="rgb(255,35,0)" points="781.35,1534.97 800.274,1534.97 800.274,1529.48 781.35,1529.48 " />
<svg:polygon detid="369380360" count="1" value="111" id="3704012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 neg  external  module  2   Id 369380360 " fill="rgb(255,35,0)" points="781.35,1529.48 800.274,1529.48 800.274,1523.99 781.35,1523.99 " />
<svg:polygon detid="369380616" count="1" value="111" id="3704013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 neg  external  module  2   Id 369380616 " fill="rgb(255,35,0)" points="781.35,1523.99 800.274,1523.99 800.274,1518.5 781.35,1518.5 " />
<svg:polygon detid="369380872" count="1" value="111" id="3704014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 neg  external  module  2   Id 369380872 " fill="rgb(255,35,0)" points="781.35,1518.5 800.274,1518.5 800.274,1513.01 781.35,1513.01 " />
<svg:polygon detid="369381128" count="1" value="111" id="3704015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 neg  external  module  2   Id 369381128 " fill="rgb(255,35,0)" points="781.35,1513.01 800.274,1513.01 800.274,1507.52 781.35,1507.52 " />
<svg:polygon detid="369381384" count="1" value="111" id="3704016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 neg  external  module  2   Id 369381384 " fill="rgb(255,35,0)" points="781.35,1507.52 800.274,1507.52 800.274,1502.03 781.35,1502.03 " />
<svg:polygon detid="369381640" count="1" value="111" id="3704017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 neg  external  module  2   Id 369381640 " fill="rgb(255,35,0)" points="781.35,1502.03 800.274,1502.03 800.274,1496.54 781.35,1496.54 " />
<svg:polygon detid="369381896" count="1" value="111" id="3704018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 neg  external  module  2   Id 369381896 " fill="rgb(255,35,0)" points="781.35,1496.54 800.274,1496.54 800.274,1491.06 781.35,1491.06 " />
<svg:polygon detid="369382152" count="1" value="111" id="3704019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 neg  external  module  2   Id 369382152 " fill="rgb(255,35,0)" points="781.35,1491.06 800.274,1491.06 800.274,1485.57 781.35,1485.57 " />
<svg:polygon detid="369382408" count="1" value="111" id="3704020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 neg  external  module  2   Id 369382408 " fill="rgb(255,35,0)" points="781.35,1485.57 800.274,1485.57 800.274,1480.08 781.35,1480.08 " />
<svg:polygon detid="369382664" count="1" value="111" id="3704021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 neg  external  module  2   Id 369382664 " fill="rgb(255,35,0)" points="781.35,1480.08 800.274,1480.08 800.274,1474.59 781.35,1474.59 " />
<svg:polygon detid="369382920" count="1" value="111" id="3704022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 neg  external  module  2   Id 369382920 " fill="rgb(255,35,0)" points="781.35,1474.59 800.274,1474.59 800.274,1469.1 781.35,1469.1 " />
<svg:polygon detid="369383176" count="1" value="111" id="3704023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 neg  external  module  2   Id 369383176 " fill="rgb(255,35,0)" points="781.35,1469.1 800.274,1469.1 800.274,1463.61 781.35,1463.61 " />
<svg:polygon detid="369383432" count="1" value="111" id="3704024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 neg  external  module  2   Id 369383432 " fill="rgb(255,35,0)" points="781.35,1463.61 800.274,1463.61 800.274,1458.12 781.35,1458.12 " />
<svg:polygon detid="369383688" count="1" value="111" id="3704025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 neg  external  module  2   Id 369383688 " fill="rgb(255,35,0)" points="781.35,1458.12 800.274,1458.12 800.274,1452.63 781.35,1452.63 " />
<svg:polygon detid="369383944" count="1" value="111" id="3704026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 neg  external  module  2   Id 369383944 " fill="rgb(255,35,0)" points="781.35,1452.63 800.274,1452.63 800.274,1447.14 781.35,1447.14 " />
<svg:polygon detid="369384200" count="1" value="111" id="3704027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 neg  external  module  2   Id 369384200 " fill="rgb(255,35,0)" points="781.35,1447.14 800.274,1447.14 800.274,1441.65 781.35,1441.65 " />
<svg:polygon detid="369384456" count="1" value="111" id="3704028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 neg  external  module  2   Id 369384456 " fill="rgb(255,35,0)" points="781.35,1441.65 800.274,1441.65 800.274,1436.16 781.35,1436.16 " />
<svg:polygon detid="369384712" count="1" value="111" id="3704029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 neg  external  module  2   Id 369384712 " fill="rgb(255,35,0)" points="781.35,1436.16 800.274,1436.16 800.274,1430.67 781.35,1430.67 " />
<svg:polygon detid="369384968" count="1" value="111" id="3704030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 neg  external  module  2   Id 369384968 " fill="rgb(255,35,0)" points="781.35,1430.67 800.274,1430.67 800.274,1425.19 781.35,1425.19 " />
<svg:polygon detid="369385224" count="1" value="111" id="3704031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 neg  external  module  2   Id 369385224 " fill="rgb(255,35,0)" points="781.35,1425.19 800.274,1425.19 800.274,1419.7 781.35,1419.7 " />
<svg:polygon detid="369385480" count="1" value="111" id="3704032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 neg  external  module  2   Id 369385480 " fill="rgb(255,35,0)" points="781.35,1419.7 800.274,1419.7 800.274,1414.21 781.35,1414.21 " />
<svg:polygon detid="369385736" count="1" value="111" id="3704033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 neg  external  module  2   Id 369385736 " fill="rgb(255,35,0)" points="781.35,1414.21 800.274,1414.21 800.274,1408.72 781.35,1408.72 " />
<svg:polygon detid="369385992" count="1" value="111" id="3704034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 neg  external  module  2   Id 369385992 " fill="rgb(255,35,0)" points="781.35,1408.72 800.274,1408.72 800.274,1403.23 781.35,1403.23 " />
<svg:polygon detid="369386248" count="1" value="111" id="3704035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 neg  external  module  2   Id 369386248 " fill="rgb(255,35,0)" points="781.35,1403.23 800.274,1403.23 800.274,1397.74 781.35,1397.74 " />
<svg:polygon detid="369386504" count="1" value="111" id="3704036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 neg  external  module  2   Id 369386504 " fill="rgb(255,35,0)" points="781.35,1397.74 800.274,1397.74 800.274,1392.25 781.35,1392.25 " />
<svg:polygon detid="369386760" count="1" value="111" id="3704037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 neg  external  module  2   Id 369386760 " fill="rgb(255,35,0)" points="781.35,1392.25 800.274,1392.25 800.274,1386.76 781.35,1386.76 " />
<svg:polygon detid="369387016" count="1" value="111" id="3704038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 neg  external  module  2   Id 369387016 " fill="rgb(255,35,0)" points="781.35,1386.76 800.274,1386.76 800.274,1381.27 781.35,1381.27 " />
<svg:polygon detid="369387272" count="1" value="111" id="3704039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 neg  external  module  2   Id 369387272 " fill="rgb(255,35,0)" points="781.35,1381.27 800.274,1381.27 800.274,1375.78 781.35,1375.78 " />
<svg:polygon detid="369387528" count="1" value="111" id="3704040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 neg  external  module  2   Id 369387528 " fill="rgb(255,35,0)" points="781.35,1375.78 800.274,1375.78 800.274,1370.29 781.35,1370.29 " />
<svg:polygon detid="369387784" count="1" value="111" id="3704041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 neg  external  module  2   Id 369387784 " fill="rgb(255,35,0)" points="781.35,1370.29 800.274,1370.29 800.274,1364.8 781.35,1364.8 " />
<svg:polygon detid="369388040" count="1" value="111" id="3704042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 neg  external  module  2   Id 369388040 " fill="rgb(255,35,0)" points="781.35,1364.8 800.274,1364.8 800.274,1359.32 781.35,1359.32 " />
<svg:polygon detid="369388296" count="1" value="111" id="3704043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 neg  external  module  2   Id 369388296 " fill="rgb(255,35,0)" points="781.35,1359.32 800.274,1359.32 800.274,1353.83 781.35,1353.83 " />
<svg:polygon detid="369388552" count="1" value="111" id="3704044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 neg  external  module  2   Id 369388552 " fill="rgb(255,35,0)" points="781.35,1353.83 800.274,1353.83 800.274,1348.34 781.35,1348.34 " />
<svg:polygon detid="369388808" count="1" value="111" id="3704045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 neg  external  module  2   Id 369388808 " fill="rgb(255,35,0)" points="781.35,1348.34 800.274,1348.34 800.274,1342.85 781.35,1342.85 " />
<svg:polygon detid="369389064" count="1" value="111" id="3704046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 neg  external  module  2   Id 369389064 " fill="rgb(255,35,0)" points="781.35,1342.85 800.274,1342.85 800.274,1337.36 781.35,1337.36 " />
<svg:polygon detid="369389320" count="1" value="111" id="3704047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 neg  external  module  2   Id 369389320 " fill="rgb(255,35,0)" points="781.35,1337.36 800.274,1337.36 800.274,1331.87 781.35,1331.87 " />
<svg:polygon detid="369389576" count="1" value="111" id="3704048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 neg  external  module  2   Id 369389576 " fill="rgb(255,35,0)" points="781.35,1331.87 800.274,1331.87 800.274,1326.38 781.35,1326.38 " />
<svg:polygon detid="369389832" count="1" value="111" id="3704049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 neg  external  module  2   Id 369389832 " fill="rgb(255,35,0)" points="781.35,1326.38 800.274,1326.38 800.274,1320.89 781.35,1320.89 " />
<svg:polygon detid="369390088" count="1" value="111" id="3704050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 neg  external  module  2   Id 369390088 " fill="rgb(255,35,0)" points="781.35,1320.89 800.274,1320.89 800.274,1315.4 781.35,1315.4 " />
<svg:polygon detid="369390344" count="1" value="111" id="3704051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 neg  external  module  2   Id 369390344 " fill="rgb(255,35,0)" points="781.35,1315.4 800.274,1315.4 800.274,1309.91 781.35,1309.91 " />
<svg:polygon detid="369390600" count="1" value="111" id="3704052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 neg  external  module  2   Id 369390600 " fill="rgb(255,35,0)" points="781.35,1309.91 800.274,1309.91 800.274,1304.42 781.35,1304.42 " />
<svg:polygon detid="369390856" count="1" value="111" id="3704053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 53 neg  external  module  2   Id 369390856 " fill="rgb(255,35,0)" points="781.35,1304.42 800.274,1304.42 800.274,1298.93 781.35,1298.93 " />
<svg:polygon detid="369391112" count="1" value="111" id="3704054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 54 neg  external  module  2   Id 369391112 " fill="rgb(255,35,0)" points="781.35,1298.93 800.274,1298.93 800.274,1293.45 781.35,1293.45 " />
<svg:polygon detid="369391368" count="1" value="111" id="3704055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 55 neg  external  module  2   Id 369391368 " fill="rgb(255,35,0)" points="781.35,1293.45 800.274,1293.45 800.274,1287.96 781.35,1287.96 " />
<svg:polygon detid="369391624" count="1" value="111" id="3704056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 56 neg  external  module  2   Id 369391624 " fill="rgb(255,35,0)" points="781.35,1287.96 800.274,1287.96 800.274,1282.47 781.35,1282.47 " />
<svg:polygon detid="369361164" count="1" value="111" id="3705001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 neg  internal  module  3   Id 369361164 " fill="rgb(255,35,0)" points="802.639,1589.86 821.564,1589.86 821.564,1584.37 802.639,1584.37 " />
<svg:polygon detid="369361420" count="1" value="111" id="3705002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 neg  internal  module  3   Id 369361420 " fill="rgb(255,35,0)" points="802.639,1584.37 821.564,1584.37 821.564,1578.88 802.639,1578.88 " />
<svg:polygon detid="369361676" count="1" value="111" id="3705003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 neg  internal  module  3   Id 369361676 " fill="rgb(255,35,0)" points="802.639,1578.88 821.564,1578.88 821.564,1573.39 802.639,1573.39 " />
<svg:polygon detid="369361932" count="1" value="111" id="3705004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 neg  internal  module  3   Id 369361932 " fill="rgb(255,35,0)" points="802.639,1573.39 821.564,1573.39 821.564,1567.9 802.639,1567.9 " />
<svg:polygon detid="369362188" count="1" value="111" id="3705005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 neg  internal  module  3   Id 369362188 " fill="rgb(255,35,0)" points="802.639,1567.9 821.564,1567.9 821.564,1562.41 802.639,1562.41 " />
<svg:polygon detid="369362444" count="1" value="111" id="3705007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 neg  internal  module  3   Id 369362444 " fill="rgb(255,35,0)" points="802.639,1556.92 821.564,1556.92 821.564,1551.44 802.639,1551.44 " />
<svg:polygon detid="369362700" count="1" value="111" id="3705008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 neg  internal  module  3   Id 369362700 " fill="rgb(255,35,0)" points="802.639,1551.44 821.564,1551.44 821.564,1545.95 802.639,1545.95 " />
<svg:polygon detid="369362956" count="1" value="111" id="3705009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 neg  internal  module  3   Id 369362956 " fill="rgb(255,35,0)" points="802.639,1545.95 821.564,1545.95 821.564,1540.46 802.639,1540.46 " />
<svg:polygon detid="369363212" count="1" value="111" id="3705010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 neg  internal  module  3   Id 369363212 " fill="rgb(255,35,0)" points="802.639,1540.46 821.564,1540.46 821.564,1534.97 802.639,1534.97 " />
<svg:polygon detid="369363468" count="1" value="111" id="3705011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 neg  internal  module  3   Id 369363468 " fill="rgb(255,35,0)" points="802.639,1534.97 821.564,1534.97 821.564,1529.48 802.639,1529.48 " />
<svg:polygon detid="369363724" count="1" value="111" id="3705012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 neg  internal  module  3   Id 369363724 " fill="rgb(255,35,0)" points="802.639,1529.48 821.564,1529.48 821.564,1523.99 802.639,1523.99 " />
<svg:polygon detid="369363980" count="1" value="111" id="3705013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 neg  internal  module  3   Id 369363980 " fill="rgb(255,35,0)" points="802.639,1523.99 821.564,1523.99 821.564,1518.5 802.639,1518.5 " />
<svg:polygon detid="369364236" count="1" value="111" id="3705014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 neg  internal  module  3   Id 369364236 " fill="rgb(255,35,0)" points="802.639,1518.5 821.564,1518.5 821.564,1513.01 802.639,1513.01 " />
<svg:polygon detid="369364492" count="1" value="111" id="3705015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 neg  internal  module  3   Id 369364492 " fill="rgb(255,35,0)" points="802.639,1513.01 821.564,1513.01 821.564,1507.52 802.639,1507.52 " />
<svg:polygon detid="369364748" count="1" value="111" id="3705016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 neg  internal  module  3   Id 369364748 " fill="rgb(255,35,0)" points="802.639,1507.52 821.564,1507.52 821.564,1502.03 802.639,1502.03 " />
<svg:polygon detid="369365004" count="1" value="111" id="3705017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 neg  internal  module  3   Id 369365004 " fill="rgb(255,35,0)" points="802.639,1502.03 821.564,1502.03 821.564,1496.54 802.639,1496.54 " />
<svg:polygon detid="369365260" count="1" value="111" id="3705018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 neg  internal  module  3   Id 369365260 " fill="rgb(255,35,0)" points="802.639,1496.54 821.564,1496.54 821.564,1491.06 802.639,1491.06 " />
<svg:polygon detid="369365516" count="1" value="111" id="3705019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 neg  internal  module  3   Id 369365516 " fill="rgb(255,35,0)" points="802.639,1491.06 821.564,1491.06 821.564,1485.57 802.639,1485.57 " />
<svg:polygon detid="369365772" count="1" value="111" id="3705021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 neg  internal  module  3   Id 369365772 " fill="rgb(255,35,0)" points="802.639,1480.08 821.564,1480.08 821.564,1474.59 802.639,1474.59 " />
<svg:polygon detid="369366028" count="1" value="111" id="3705022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 neg  internal  module  3   Id 369366028 " fill="rgb(255,35,0)" points="802.639,1474.59 821.564,1474.59 821.564,1469.1 802.639,1469.1 " />
<svg:polygon detid="369366284" count="1" value="111" id="3705023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 neg  internal  module  3   Id 369366284 " fill="rgb(255,35,0)" points="802.639,1469.1 821.564,1469.1 821.564,1463.61 802.639,1463.61 " />
<svg:polygon detid="369366540" count="1" value="111" id="3705024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 neg  internal  module  3   Id 369366540 " fill="rgb(255,35,0)" points="802.639,1463.61 821.564,1463.61 821.564,1458.12 802.639,1458.12 " />
<svg:polygon detid="369366796" count="1" value="111" id="3705025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 neg  internal  module  3   Id 369366796 " fill="rgb(255,35,0)" points="802.639,1458.12 821.564,1458.12 821.564,1452.63 802.639,1452.63 " />
<svg:polygon detid="369367052" count="1" value="111" id="3705026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 neg  internal  module  3   Id 369367052 " fill="rgb(255,35,0)" points="802.639,1452.63 821.564,1452.63 821.564,1447.14 802.639,1447.14 " />
<svg:polygon detid="369367308" count="1" value="111" id="3705027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 neg  internal  module  3   Id 369367308 " fill="rgb(255,35,0)" points="802.639,1447.14 821.564,1447.14 821.564,1441.65 802.639,1441.65 " />
<svg:polygon detid="369367564" count="1" value="111" id="3705028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 neg  internal  module  3   Id 369367564 " fill="rgb(255,35,0)" points="802.639,1441.65 821.564,1441.65 821.564,1436.16 802.639,1436.16 " />
<svg:polygon detid="369367820" count="1" value="111" id="3705029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 neg  internal  module  3   Id 369367820 " fill="rgb(255,35,0)" points="802.639,1436.16 821.564,1436.16 821.564,1430.67 802.639,1430.67 " />
<svg:polygon detid="369368076" count="1" value="111" id="3705030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 neg  internal  module  3   Id 369368076 " fill="rgb(255,35,0)" points="802.639,1430.67 821.564,1430.67 821.564,1425.19 802.639,1425.19 " />
<svg:polygon detid="369368332" count="1" value="111" id="3705031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 neg  internal  module  3   Id 369368332 " fill="rgb(255,35,0)" points="802.639,1425.19 821.564,1425.19 821.564,1419.7 802.639,1419.7 " />
<svg:polygon detid="369368588" count="1" value="111" id="3705032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 neg  internal  module  3   Id 369368588 " fill="rgb(255,35,0)" points="802.639,1419.7 821.564,1419.7 821.564,1414.21 802.639,1414.21 " />
<svg:polygon detid="369368844" count="1" value="111" id="3705033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 neg  internal  module  3   Id 369368844 " fill="rgb(255,35,0)" points="802.639,1414.21 821.564,1414.21 821.564,1408.72 802.639,1408.72 " />
<svg:polygon detid="369369100" count="1" value="111" id="3705035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 neg  internal  module  3   Id 369369100 " fill="rgb(255,35,0)" points="802.639,1403.23 821.564,1403.23 821.564,1397.74 802.639,1397.74 " />
<svg:polygon detid="369369356" count="1" value="111" id="3705036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 neg  internal  module  3   Id 369369356 " fill="rgb(255,35,0)" points="802.639,1397.74 821.564,1397.74 821.564,1392.25 802.639,1392.25 " />
<svg:polygon detid="369369612" count="1" value="111" id="3705037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 neg  internal  module  3   Id 369369612 " fill="rgb(255,35,0)" points="802.639,1392.25 821.564,1392.25 821.564,1386.76 802.639,1386.76 " />
<svg:polygon detid="369369868" count="1" value="111" id="3705038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 neg  internal  module  3   Id 369369868 " fill="rgb(255,35,0)" points="802.639,1386.76 821.564,1386.76 821.564,1381.27 802.639,1381.27 " />
<svg:polygon detid="369370124" count="1" value="111" id="3705039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 neg  internal  module  3   Id 369370124 " fill="rgb(255,35,0)" points="802.639,1381.27 821.564,1381.27 821.564,1375.78 802.639,1375.78 " />
<svg:polygon detid="369370380" count="1" value="111" id="3705040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 neg  internal  module  3   Id 369370380 " fill="rgb(255,35,0)" points="802.639,1375.78 821.564,1375.78 821.564,1370.29 802.639,1370.29 " />
<svg:polygon detid="369370636" count="1" value="111" id="3705041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 neg  internal  module  3   Id 369370636 " fill="rgb(255,35,0)" points="802.639,1370.29 821.564,1370.29 821.564,1364.8 802.639,1364.8 " />
<svg:polygon detid="369370892" count="1" value="111" id="3705042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 neg  internal  module  3   Id 369370892 " fill="rgb(255,35,0)" points="802.639,1364.8 821.564,1364.8 821.564,1359.32 802.639,1359.32 " />
<svg:polygon detid="369371148" count="1" value="111" id="3705043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 neg  internal  module  3   Id 369371148 " fill="rgb(255,35,0)" points="802.639,1359.32 821.564,1359.32 821.564,1353.83 802.639,1353.83 " />
<svg:polygon detid="369371404" count="1" value="111" id="3705044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 neg  internal  module  3   Id 369371404 " fill="rgb(255,35,0)" points="802.639,1353.83 821.564,1353.83 821.564,1348.34 802.639,1348.34 " />
<svg:polygon detid="369371660" count="1" value="111" id="3705045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 neg  internal  module  3   Id 369371660 " fill="rgb(255,35,0)" points="802.639,1348.34 821.564,1348.34 821.564,1342.85 802.639,1342.85 " />
<svg:polygon detid="369371916" count="1" value="111" id="3705046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 neg  internal  module  3   Id 369371916 " fill="rgb(255,35,0)" points="802.639,1342.85 821.564,1342.85 821.564,1337.36 802.639,1337.36 " />
<svg:polygon detid="369372172" count="1" value="111" id="3705047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 neg  internal  module  3   Id 369372172 " fill="rgb(255,35,0)" points="802.639,1337.36 821.564,1337.36 821.564,1331.87 802.639,1331.87 " />
<svg:polygon detid="369372428" count="1" value="111" id="3705049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 neg  internal  module  3   Id 369372428 " fill="rgb(255,35,0)" points="802.639,1326.38 821.564,1326.38 821.564,1320.89 802.639,1320.89 " />
<svg:polygon detid="369372684" count="1" value="111" id="3705050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 neg  internal  module  3   Id 369372684 " fill="rgb(255,35,0)" points="802.639,1320.89 821.564,1320.89 821.564,1315.4 802.639,1315.4 " />
<svg:polygon detid="369372940" count="1" value="111" id="3705051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 neg  internal  module  3   Id 369372940 " fill="rgb(255,35,0)" points="802.639,1315.4 821.564,1315.4 821.564,1309.91 802.639,1309.91 " />
<svg:polygon detid="369373196" count="1" value="111" id="3705052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 neg  internal  module  3   Id 369373196 " fill="rgb(255,35,0)" points="802.639,1309.91 821.564,1309.91 821.564,1304.42 802.639,1304.42 " />
<svg:polygon detid="369373452" count="1" value="111" id="3705053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 neg  internal  module  3   Id 369373452 " fill="rgb(255,35,0)" points="802.639,1304.42 821.564,1304.42 821.564,1298.93 802.639,1298.93 " />
<svg:polygon detid="369373708" count="1" value="111" id="3705054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 neg  internal  module  3   Id 369373708 " fill="rgb(255,35,0)" points="802.639,1298.93 821.564,1298.93 821.564,1293.45 802.639,1293.45 " />
<svg:polygon detid="369373964" count="1" value="111" id="3705055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 neg  internal  module  3   Id 369373964 " fill="rgb(255,35,0)" points="802.639,1293.45 821.564,1293.45 821.564,1287.96 802.639,1287.96 " />
<svg:polygon detid="369374220" count="1" value="111" id="3705056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 neg  internal  module  3   Id 369374220 " fill="rgb(255,35,0)" points="802.639,1287.96 821.564,1287.96 821.564,1282.47 802.639,1282.47 " />
<svg:polygon detid="369377548" count="1" value="111" id="3706001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 neg  external  module  3   Id 369377548 " fill="rgb(255,35,0)" points="823.929,1589.86 842.853,1589.86 842.853,1584.37 823.929,1584.37 " />
<svg:polygon detid="369377804" count="1" value="111" id="3706002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 neg  external  module  3   Id 369377804 " fill="rgb(255,35,0)" points="823.929,1584.37 842.853,1584.37 842.853,1578.88 823.929,1578.88 " />
<svg:polygon detid="369378060" count="1" value="111" id="3706003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 neg  external  module  3   Id 369378060 " fill="rgb(255,35,0)" points="823.929,1578.88 842.853,1578.88 842.853,1573.39 823.929,1573.39 " />
<svg:polygon detid="369378316" count="1" value="111" id="3706004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 neg  external  module  3   Id 369378316 " fill="rgb(255,35,0)" points="823.929,1573.39 842.853,1573.39 842.853,1567.9 823.929,1567.9 " />
<svg:polygon detid="369378572" count="1" value="111" id="3706005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 neg  external  module  3   Id 369378572 " fill="rgb(255,35,0)" points="823.929,1567.9 842.853,1567.9 842.853,1562.41 823.929,1562.41 " />
<svg:polygon detid="369378828" count="1" value="111" id="3706006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 neg  external  module  3   Id 369378828 " fill="rgb(255,35,0)" points="823.929,1562.41 842.853,1562.41 842.853,1556.92 823.929,1556.92 " />
<svg:polygon detid="369379084" count="1" value="111" id="3706007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 neg  external  module  3   Id 369379084 " fill="rgb(255,35,0)" points="823.929,1556.92 842.853,1556.92 842.853,1551.44 823.929,1551.44 " />
<svg:polygon detid="369379340" count="1" value="111" id="3706008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 neg  external  module  3   Id 369379340 " fill="rgb(255,35,0)" points="823.929,1551.44 842.853,1551.44 842.853,1545.95 823.929,1545.95 " />
<svg:polygon detid="369379596" count="1" value="111" id="3706009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 neg  external  module  3   Id 369379596 " fill="rgb(255,35,0)" points="823.929,1545.95 842.853,1545.95 842.853,1540.46 823.929,1540.46 " />
<svg:polygon detid="369379852" count="1" value="111" id="3706010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 neg  external  module  3   Id 369379852 " fill="rgb(255,35,0)" points="823.929,1540.46 842.853,1540.46 842.853,1534.97 823.929,1534.97 " />
<svg:polygon detid="369380108" count="1" value="111" id="3706011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 neg  external  module  3   Id 369380108 " fill="rgb(255,35,0)" points="823.929,1534.97 842.853,1534.97 842.853,1529.48 823.929,1529.48 " />
<svg:polygon detid="369380364" count="1" value="111" id="3706012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 neg  external  module  3   Id 369380364 " fill="rgb(255,35,0)" points="823.929,1529.48 842.853,1529.48 842.853,1523.99 823.929,1523.99 " />
<svg:polygon detid="369380620" count="1" value="111" id="3706013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 neg  external  module  3   Id 369380620 " fill="rgb(255,35,0)" points="823.929,1523.99 842.853,1523.99 842.853,1518.5 823.929,1518.5 " />
<svg:polygon detid="369380876" count="1" value="111" id="3706014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 neg  external  module  3   Id 369380876 " fill="rgb(255,35,0)" points="823.929,1518.5 842.853,1518.5 842.853,1513.01 823.929,1513.01 " />
<svg:polygon detid="369381132" count="1" value="111" id="3706015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 neg  external  module  3   Id 369381132 " fill="rgb(255,35,0)" points="823.929,1513.01 842.853,1513.01 842.853,1507.52 823.929,1507.52 " />
<svg:polygon detid="369381388" count="1" value="111" id="3706016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 neg  external  module  3   Id 369381388 " fill="rgb(255,35,0)" points="823.929,1507.52 842.853,1507.52 842.853,1502.03 823.929,1502.03 " />
<svg:polygon detid="369381644" count="1" value="111" id="3706017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 neg  external  module  3   Id 369381644 " fill="rgb(255,35,0)" points="823.929,1502.03 842.853,1502.03 842.853,1496.54 823.929,1496.54 " />
<svg:polygon detid="369381900" count="1" value="111" id="3706018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 neg  external  module  3   Id 369381900 " fill="rgb(255,35,0)" points="823.929,1496.54 842.853,1496.54 842.853,1491.06 823.929,1491.06 " />
<svg:polygon detid="369382156" count="1" value="111" id="3706019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 neg  external  module  3   Id 369382156 " fill="rgb(255,35,0)" points="823.929,1491.06 842.853,1491.06 842.853,1485.57 823.929,1485.57 " />
<svg:polygon detid="369382412" count="1" value="111" id="3706020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 neg  external  module  3   Id 369382412 " fill="rgb(255,35,0)" points="823.929,1485.57 842.853,1485.57 842.853,1480.08 823.929,1480.08 " />
<svg:polygon detid="369382668" count="1" value="111" id="3706021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 neg  external  module  3   Id 369382668 " fill="rgb(255,35,0)" points="823.929,1480.08 842.853,1480.08 842.853,1474.59 823.929,1474.59 " />
<svg:polygon detid="369382924" count="1" value="111" id="3706022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 neg  external  module  3   Id 369382924 " fill="rgb(255,35,0)" points="823.929,1474.59 842.853,1474.59 842.853,1469.1 823.929,1469.1 " />
<svg:polygon detid="369383180" count="1" value="111" id="3706023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 neg  external  module  3   Id 369383180 " fill="rgb(255,35,0)" points="823.929,1469.1 842.853,1469.1 842.853,1463.61 823.929,1463.61 " />
<svg:polygon detid="369383436" count="1" value="111" id="3706024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 neg  external  module  3   Id 369383436 " fill="rgb(255,35,0)" points="823.929,1463.61 842.853,1463.61 842.853,1458.12 823.929,1458.12 " />
<svg:polygon detid="369383692" count="1" value="111" id="3706025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 neg  external  module  3   Id 369383692 " fill="rgb(255,35,0)" points="823.929,1458.12 842.853,1458.12 842.853,1452.63 823.929,1452.63 " />
<svg:polygon detid="369383948" count="1" value="111" id="3706026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 neg  external  module  3   Id 369383948 " fill="rgb(255,35,0)" points="823.929,1452.63 842.853,1452.63 842.853,1447.14 823.929,1447.14 " />
<svg:polygon detid="369384204" count="1" value="111" id="3706027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 neg  external  module  3   Id 369384204 " fill="rgb(255,35,0)" points="823.929,1447.14 842.853,1447.14 842.853,1441.65 823.929,1441.65 " />
<svg:polygon detid="369384460" count="1" value="111" id="3706028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 neg  external  module  3   Id 369384460 " fill="rgb(255,35,0)" points="823.929,1441.65 842.853,1441.65 842.853,1436.16 823.929,1436.16 " />
<svg:polygon detid="369384716" count="1" value="111" id="3706029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 neg  external  module  3   Id 369384716 " fill="rgb(255,35,0)" points="823.929,1436.16 842.853,1436.16 842.853,1430.67 823.929,1430.67 " />
<svg:polygon detid="369384972" count="1" value="111" id="3706030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 neg  external  module  3   Id 369384972 " fill="rgb(255,35,0)" points="823.929,1430.67 842.853,1430.67 842.853,1425.19 823.929,1425.19 " />
<svg:polygon detid="369385228" count="1" value="111" id="3706031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 neg  external  module  3   Id 369385228 " fill="rgb(255,35,0)" points="823.929,1425.19 842.853,1425.19 842.853,1419.7 823.929,1419.7 " />
<svg:polygon detid="369385484" count="1" value="111" id="3706032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 neg  external  module  3   Id 369385484 " fill="rgb(255,35,0)" points="823.929,1419.7 842.853,1419.7 842.853,1414.21 823.929,1414.21 " />
<svg:polygon detid="369385740" count="1" value="111" id="3706033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 neg  external  module  3   Id 369385740 " fill="rgb(255,35,0)" points="823.929,1414.21 842.853,1414.21 842.853,1408.72 823.929,1408.72 " />
<svg:polygon detid="369385996" count="1" value="111" id="3706034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 neg  external  module  3   Id 369385996 " fill="rgb(255,35,0)" points="823.929,1408.72 842.853,1408.72 842.853,1403.23 823.929,1403.23 " />
<svg:polygon detid="369386252" count="1" value="111" id="3706035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 neg  external  module  3   Id 369386252 " fill="rgb(255,35,0)" points="823.929,1403.23 842.853,1403.23 842.853,1397.74 823.929,1397.74 " />
<svg:polygon detid="369386508" count="1" value="111" id="3706036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 neg  external  module  3   Id 369386508 " fill="rgb(255,35,0)" points="823.929,1397.74 842.853,1397.74 842.853,1392.25 823.929,1392.25 " />
<svg:polygon detid="369386764" count="1" value="111" id="3706037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 neg  external  module  3   Id 369386764 " fill="rgb(255,35,0)" points="823.929,1392.25 842.853,1392.25 842.853,1386.76 823.929,1386.76 " />
<svg:polygon detid="369387020" count="1" value="111" id="3706038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 neg  external  module  3   Id 369387020 " fill="rgb(255,35,0)" points="823.929,1386.76 842.853,1386.76 842.853,1381.27 823.929,1381.27 " />
<svg:polygon detid="369387276" count="1" value="111" id="3706039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 neg  external  module  3   Id 369387276 " fill="rgb(255,35,0)" points="823.929,1381.27 842.853,1381.27 842.853,1375.78 823.929,1375.78 " />
<svg:polygon detid="369387532" count="1" value="111" id="3706040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 neg  external  module  3   Id 369387532 " fill="rgb(255,35,0)" points="823.929,1375.78 842.853,1375.78 842.853,1370.29 823.929,1370.29 " />
<svg:polygon detid="369387788" count="1" value="111" id="3706041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 neg  external  module  3   Id 369387788 " fill="rgb(255,35,0)" points="823.929,1370.29 842.853,1370.29 842.853,1364.8 823.929,1364.8 " />
<svg:polygon detid="369388044" count="1" value="111" id="3706042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 neg  external  module  3   Id 369388044 " fill="rgb(255,35,0)" points="823.929,1364.8 842.853,1364.8 842.853,1359.32 823.929,1359.32 " />
<svg:polygon detid="369388300" count="1" value="111" id="3706043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 neg  external  module  3   Id 369388300 " fill="rgb(255,35,0)" points="823.929,1359.32 842.853,1359.32 842.853,1353.83 823.929,1353.83 " />
<svg:polygon detid="369388556" count="1" value="111" id="3706044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 neg  external  module  3   Id 369388556 " fill="rgb(255,35,0)" points="823.929,1353.83 842.853,1353.83 842.853,1348.34 823.929,1348.34 " />
<svg:polygon detid="369388812" count="1" value="111" id="3706045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 neg  external  module  3   Id 369388812 " fill="rgb(255,35,0)" points="823.929,1348.34 842.853,1348.34 842.853,1342.85 823.929,1342.85 " />
<svg:polygon detid="369389068" count="1" value="111" id="3706046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 neg  external  module  3   Id 369389068 " fill="rgb(255,35,0)" points="823.929,1342.85 842.853,1342.85 842.853,1337.36 823.929,1337.36 " />
<svg:polygon detid="369389324" count="1" value="111" id="3706047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 neg  external  module  3   Id 369389324 " fill="rgb(255,35,0)" points="823.929,1337.36 842.853,1337.36 842.853,1331.87 823.929,1331.87 " />
<svg:polygon detid="369389580" count="1" value="111" id="3706048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 neg  external  module  3   Id 369389580 " fill="rgb(255,35,0)" points="823.929,1331.87 842.853,1331.87 842.853,1326.38 823.929,1326.38 " />
<svg:polygon detid="369389836" count="1" value="111" id="3706049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 neg  external  module  3   Id 369389836 " fill="rgb(255,35,0)" points="823.929,1326.38 842.853,1326.38 842.853,1320.89 823.929,1320.89 " />
<svg:polygon detid="369390092" count="1" value="111" id="3706050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 neg  external  module  3   Id 369390092 " fill="rgb(255,35,0)" points="823.929,1320.89 842.853,1320.89 842.853,1315.4 823.929,1315.4 " />
<svg:polygon detid="369390348" count="1" value="111" id="3706051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 neg  external  module  3   Id 369390348 " fill="rgb(255,35,0)" points="823.929,1315.4 842.853,1315.4 842.853,1309.91 823.929,1309.91 " />
<svg:polygon detid="369390604" count="1" value="111" id="3706052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 neg  external  module  3   Id 369390604 " fill="rgb(255,35,0)" points="823.929,1309.91 842.853,1309.91 842.853,1304.42 823.929,1304.42 " />
<svg:polygon detid="369390860" count="1" value="111" id="3706053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 53 neg  external  module  3   Id 369390860 " fill="rgb(255,35,0)" points="823.929,1304.42 842.853,1304.42 842.853,1298.93 823.929,1298.93 " />
<svg:polygon detid="369391116" count="1" value="111" id="3706054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 54 neg  external  module  3   Id 369391116 " fill="rgb(255,35,0)" points="823.929,1298.93 842.853,1298.93 842.853,1293.45 823.929,1293.45 " />
<svg:polygon detid="369391372" count="1" value="111" id="3706055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 55 neg  external  module  3   Id 369391372 " fill="rgb(255,35,0)" points="823.929,1293.45 842.853,1293.45 842.853,1287.96 823.929,1287.96 " />
<svg:polygon detid="369391628" count="1" value="111" id="3706056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 56 neg  external  module  3   Id 369391628 " fill="rgb(255,35,0)" points="823.929,1287.96 842.853,1287.96 842.853,1282.47 823.929,1282.47 " />
<svg:polygon detid="369393924" count="1" value="111" id="3707001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 pos  internal  module  1   Id 369393924 " fill="rgb(255,35,0)" points="845.219,1589.86 864.143,1589.86 864.143,1584.37 845.219,1584.37 " />
<svg:polygon detid="369394180" count="1" value="111" id="3707002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 pos  internal  module  1   Id 369394180 " fill="rgb(255,35,0)" points="845.219,1584.37 864.143,1584.37 864.143,1578.88 845.219,1578.88 " />
<svg:polygon detid="369394436" count="1" value="111" id="3707003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 pos  internal  module  1   Id 369394436 " fill="rgb(255,35,0)" points="845.219,1578.88 864.143,1578.88 864.143,1573.39 845.219,1573.39 " />
<svg:polygon detid="369394692" count="1" value="111" id="3707004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 pos  internal  module  1   Id 369394692 " fill="rgb(255,35,0)" points="845.219,1573.39 864.143,1573.39 864.143,1567.9 845.219,1567.9 " />
<svg:polygon detid="369394948" count="1" value="111" id="3707005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 pos  internal  module  1   Id 369394948 " fill="rgb(255,35,0)" points="845.219,1567.9 864.143,1567.9 864.143,1562.41 845.219,1562.41 " />
<svg:polygon detid="369395204" count="1" value="111" id="3707007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 pos  internal  module  1   Id 369395204 " fill="rgb(255,35,0)" points="845.219,1556.92 864.143,1556.92 864.143,1551.44 845.219,1551.44 " />
<svg:polygon detid="369395460" count="1" value="111" id="3707008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 pos  internal  module  1   Id 369395460 " fill="rgb(255,35,0)" points="845.219,1551.44 864.143,1551.44 864.143,1545.95 845.219,1545.95 " />
<svg:polygon detid="369395716" count="1" value="111" id="3707009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 pos  internal  module  1   Id 369395716 " fill="rgb(255,35,0)" points="845.219,1545.95 864.143,1545.95 864.143,1540.46 845.219,1540.46 " />
<svg:polygon detid="369395972" count="1" value="111" id="3707010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 pos  internal  module  1   Id 369395972 " fill="rgb(255,35,0)" points="845.219,1540.46 864.143,1540.46 864.143,1534.97 845.219,1534.97 " />
<svg:polygon detid="369396228" count="1" value="111" id="3707011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 pos  internal  module  1   Id 369396228 " fill="rgb(255,35,0)" points="845.219,1534.97 864.143,1534.97 864.143,1529.48 845.219,1529.48 " />
<svg:polygon detid="369396484" count="1" value="111" id="3707012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 pos  internal  module  1   Id 369396484 " fill="rgb(255,35,0)" points="845.219,1529.48 864.143,1529.48 864.143,1523.99 845.219,1523.99 " />
<svg:polygon detid="369396740" count="1" value="111" id="3707013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 pos  internal  module  1   Id 369396740 " fill="rgb(255,35,0)" points="845.219,1523.99 864.143,1523.99 864.143,1518.5 845.219,1518.5 " />
<svg:polygon detid="369396996" count="1" value="111" id="3707014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 pos  internal  module  1   Id 369396996 " fill="rgb(255,35,0)" points="845.219,1518.5 864.143,1518.5 864.143,1513.01 845.219,1513.01 " />
<svg:polygon detid="369397252" count="1" value="111" id="3707015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 pos  internal  module  1   Id 369397252 " fill="rgb(255,35,0)" points="845.219,1513.01 864.143,1513.01 864.143,1507.52 845.219,1507.52 " />
<svg:polygon detid="369397508" count="1" value="111" id="3707016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 pos  internal  module  1   Id 369397508 " fill="rgb(255,35,0)" points="845.219,1507.52 864.143,1507.52 864.143,1502.03 845.219,1502.03 " />
<svg:polygon detid="369397764" count="1" value="111" id="3707017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 pos  internal  module  1   Id 369397764 " fill="rgb(255,35,0)" points="845.219,1502.03 864.143,1502.03 864.143,1496.54 845.219,1496.54 " />
<svg:polygon detid="369398020" count="1" value="111" id="3707018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 pos  internal  module  1   Id 369398020 " fill="rgb(255,35,0)" points="845.219,1496.54 864.143,1496.54 864.143,1491.06 845.219,1491.06 " />
<svg:polygon detid="369398276" count="1" value="111" id="3707019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 pos  internal  module  1   Id 369398276 " fill="rgb(255,35,0)" points="845.219,1491.06 864.143,1491.06 864.143,1485.57 845.219,1485.57 " />
<svg:polygon detid="369398532" count="1" value="111" id="3707021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 pos  internal  module  1   Id 369398532 " fill="rgb(255,35,0)" points="845.219,1480.08 864.143,1480.08 864.143,1474.59 845.219,1474.59 " />
<svg:polygon detid="369398788" count="1" value="111" id="3707022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 pos  internal  module  1   Id 369398788 " fill="rgb(255,35,0)" points="845.219,1474.59 864.143,1474.59 864.143,1469.1 845.219,1469.1 " />
<svg:polygon detid="369399044" count="1" value="111" id="3707023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 pos  internal  module  1   Id 369399044 " fill="rgb(255,35,0)" points="845.219,1469.1 864.143,1469.1 864.143,1463.61 845.219,1463.61 " />
<svg:polygon detid="369399300" count="1" value="111" id="3707024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 pos  internal  module  1   Id 369399300 " fill="rgb(255,35,0)" points="845.219,1463.61 864.143,1463.61 864.143,1458.12 845.219,1458.12 " />
<svg:polygon detid="369399556" count="1" value="111" id="3707025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 pos  internal  module  1   Id 369399556 " fill="rgb(255,35,0)" points="845.219,1458.12 864.143,1458.12 864.143,1452.63 845.219,1452.63 " />
<svg:polygon detid="369399812" count="1" value="111" id="3707026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 pos  internal  module  1   Id 369399812 " fill="rgb(255,35,0)" points="845.219,1452.63 864.143,1452.63 864.143,1447.14 845.219,1447.14 " />
<svg:polygon detid="369400068" count="1" value="111" id="3707027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 pos  internal  module  1   Id 369400068 " fill="rgb(255,35,0)" points="845.219,1447.14 864.143,1447.14 864.143,1441.65 845.219,1441.65 " />
<svg:polygon detid="369400324" count="1" value="111" id="3707028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 pos  internal  module  1   Id 369400324 " fill="rgb(255,35,0)" points="845.219,1441.65 864.143,1441.65 864.143,1436.16 845.219,1436.16 " />
<svg:polygon detid="369400580" count="1" value="111" id="3707029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 pos  internal  module  1   Id 369400580 " fill="rgb(255,35,0)" points="845.219,1436.16 864.143,1436.16 864.143,1430.67 845.219,1430.67 " />
<svg:polygon detid="369400836" count="1" value="111" id="3707030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 pos  internal  module  1   Id 369400836 " fill="rgb(255,35,0)" points="845.219,1430.67 864.143,1430.67 864.143,1425.19 845.219,1425.19 " />
<svg:polygon detid="369401092" count="1" value="111" id="3707031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 pos  internal  module  1   Id 369401092 " fill="rgb(255,35,0)" points="845.219,1425.19 864.143,1425.19 864.143,1419.7 845.219,1419.7 " />
<svg:polygon detid="369401348" count="1" value="111" id="3707032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 pos  internal  module  1   Id 369401348 " fill="rgb(255,35,0)" points="845.219,1419.7 864.143,1419.7 864.143,1414.21 845.219,1414.21 " />
<svg:polygon detid="369401604" count="1" value="111" id="3707033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 pos  internal  module  1   Id 369401604 " fill="rgb(255,35,0)" points="845.219,1414.21 864.143,1414.21 864.143,1408.72 845.219,1408.72 " />
<svg:polygon detid="369401860" count="1" value="111" id="3707035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 pos  internal  module  1   Id 369401860 " fill="rgb(255,35,0)" points="845.219,1403.23 864.143,1403.23 864.143,1397.74 845.219,1397.74 " />
<svg:polygon detid="369402116" count="1" value="111" id="3707036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 pos  internal  module  1   Id 369402116 " fill="rgb(255,35,0)" points="845.219,1397.74 864.143,1397.74 864.143,1392.25 845.219,1392.25 " />
<svg:polygon detid="369402372" count="1" value="111" id="3707037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 pos  internal  module  1   Id 369402372 " fill="rgb(255,35,0)" points="845.219,1392.25 864.143,1392.25 864.143,1386.76 845.219,1386.76 " />
<svg:polygon detid="369402628" count="1" value="111" id="3707038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 pos  internal  module  1   Id 369402628 " fill="rgb(255,35,0)" points="845.219,1386.76 864.143,1386.76 864.143,1381.27 845.219,1381.27 " />
<svg:polygon detid="369402884" count="1" value="111" id="3707039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 pos  internal  module  1   Id 369402884 " fill="rgb(255,35,0)" points="845.219,1381.27 864.143,1381.27 864.143,1375.78 845.219,1375.78 " />
<svg:polygon detid="369403140" count="1" value="111" id="3707040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 pos  internal  module  1   Id 369403140 " fill="rgb(255,35,0)" points="845.219,1375.78 864.143,1375.78 864.143,1370.29 845.219,1370.29 " />
<svg:polygon detid="369403396" count="1" value="111" id="3707041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 pos  internal  module  1   Id 369403396 " fill="rgb(255,35,0)" points="845.219,1370.29 864.143,1370.29 864.143,1364.8 845.219,1364.8 " />
<svg:polygon detid="369403652" count="1" value="111" id="3707042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 pos  internal  module  1   Id 369403652 " fill="rgb(255,35,0)" points="845.219,1364.8 864.143,1364.8 864.143,1359.32 845.219,1359.32 " />
<svg:polygon detid="369403908" count="1" value="111" id="3707043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 pos  internal  module  1   Id 369403908 " fill="rgb(255,35,0)" points="845.219,1359.32 864.143,1359.32 864.143,1353.83 845.219,1353.83 " />
<svg:polygon detid="369404164" count="1" value="111" id="3707044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 pos  internal  module  1   Id 369404164 " fill="rgb(255,35,0)" points="845.219,1353.83 864.143,1353.83 864.143,1348.34 845.219,1348.34 " />
<svg:polygon detid="369404420" count="1" value="111" id="3707045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 pos  internal  module  1   Id 369404420 " fill="rgb(255,35,0)" points="845.219,1348.34 864.143,1348.34 864.143,1342.85 845.219,1342.85 " />
<svg:polygon detid="369404676" count="1" value="111" id="3707046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 pos  internal  module  1   Id 369404676 " fill="rgb(255,35,0)" points="845.219,1342.85 864.143,1342.85 864.143,1337.36 845.219,1337.36 " />
<svg:polygon detid="369404932" count="1" value="111" id="3707047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 pos  internal  module  1   Id 369404932 " fill="rgb(255,35,0)" points="845.219,1337.36 864.143,1337.36 864.143,1331.87 845.219,1331.87 " />
<svg:polygon detid="369405188" count="1" value="111" id="3707049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 pos  internal  module  1   Id 369405188 " fill="rgb(255,35,0)" points="845.219,1326.38 864.143,1326.38 864.143,1320.89 845.219,1320.89 " />
<svg:polygon detid="369405444" count="1" value="111" id="3707050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 pos  internal  module  1   Id 369405444 " fill="rgb(255,35,0)" points="845.219,1320.89 864.143,1320.89 864.143,1315.4 845.219,1315.4 " />
<svg:polygon detid="369405700" count="1" value="111" id="3707051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 pos  internal  module  1   Id 369405700 " fill="rgb(255,35,0)" points="845.219,1315.4 864.143,1315.4 864.143,1309.91 845.219,1309.91 " />
<svg:polygon detid="369405956" count="1" value="111" id="3707052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 pos  internal  module  1   Id 369405956 " fill="rgb(255,35,0)" points="845.219,1309.91 864.143,1309.91 864.143,1304.42 845.219,1304.42 " />
<svg:polygon detid="369406212" count="1" value="111" id="3707053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 pos  internal  module  1   Id 369406212 " fill="rgb(255,35,0)" points="845.219,1304.42 864.143,1304.42 864.143,1298.93 845.219,1298.93 " />
<svg:polygon detid="369406468" count="1" value="111" id="3707054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 pos  internal  module  1   Id 369406468 " fill="rgb(255,35,0)" points="845.219,1298.93 864.143,1298.93 864.143,1293.45 845.219,1293.45 " />
<svg:polygon detid="369406724" count="1" value="111" id="3707055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 pos  internal  module  1   Id 369406724 " fill="rgb(255,35,0)" points="845.219,1293.45 864.143,1293.45 864.143,1287.96 845.219,1287.96 " />
<svg:polygon detid="369406980" count="1" value="111" id="3707056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 pos  internal  module  1   Id 369406980 " fill="rgb(255,35,0)" points="845.219,1287.96 864.143,1287.96 864.143,1282.47 845.219,1282.47 " />
<svg:polygon detid="369410308" count="1" value="111" id="3708001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 pos  external  module  1   Id 369410308 " fill="rgb(255,35,0)" points="866.509,1589.86 885.433,1589.86 885.433,1584.37 866.509,1584.37 " />
<svg:polygon detid="369410564" count="1" value="111" id="3708002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 pos  external  module  1   Id 369410564 " fill="rgb(255,35,0)" points="866.509,1584.37 885.433,1584.37 885.433,1578.88 866.509,1578.88 " />
<svg:polygon detid="369410820" count="1" value="111" id="3708003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 pos  external  module  1   Id 369410820 " fill="rgb(255,35,0)" points="866.509,1578.88 885.433,1578.88 885.433,1573.39 866.509,1573.39 " />
<svg:polygon detid="369411076" count="1" value="111" id="3708004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 pos  external  module  1   Id 369411076 " fill="rgb(255,35,0)" points="866.509,1573.39 885.433,1573.39 885.433,1567.9 866.509,1567.9 " />
<svg:polygon detid="369411332" count="1" value="111" id="3708005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 pos  external  module  1   Id 369411332 " fill="rgb(255,35,0)" points="866.509,1567.9 885.433,1567.9 885.433,1562.41 866.509,1562.41 " />
<svg:polygon detid="369411588" count="1" value="111" id="3708006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 pos  external  module  1   Id 369411588 " fill="rgb(255,35,0)" points="866.509,1562.41 885.433,1562.41 885.433,1556.92 866.509,1556.92 " />
<svg:polygon detid="369411844" count="1" value="111" id="3708007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 pos  external  module  1   Id 369411844 " fill="rgb(255,35,0)" points="866.509,1556.92 885.433,1556.92 885.433,1551.44 866.509,1551.44 " />
<svg:polygon detid="369412100" count="1" value="111" id="3708008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 pos  external  module  1   Id 369412100 " fill="rgb(255,35,0)" points="866.509,1551.44 885.433,1551.44 885.433,1545.95 866.509,1545.95 " />
<svg:polygon detid="369412356" count="1" value="111" id="3708009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 pos  external  module  1   Id 369412356 " fill="rgb(255,35,0)" points="866.509,1545.95 885.433,1545.95 885.433,1540.46 866.509,1540.46 " />
<svg:polygon detid="369412612" count="1" value="111" id="3708010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 pos  external  module  1   Id 369412612 " fill="rgb(255,35,0)" points="866.509,1540.46 885.433,1540.46 885.433,1534.97 866.509,1534.97 " />
<svg:polygon detid="369412868" count="1" value="111" id="3708011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 pos  external  module  1   Id 369412868 " fill="rgb(255,35,0)" points="866.509,1534.97 885.433,1534.97 885.433,1529.48 866.509,1529.48 " />
<svg:polygon detid="369413124" count="1" value="111" id="3708012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 pos  external  module  1   Id 369413124 " fill="rgb(255,35,0)" points="866.509,1529.48 885.433,1529.48 885.433,1523.99 866.509,1523.99 " />
<svg:polygon detid="369413380" count="1" value="111" id="3708013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 pos  external  module  1   Id 369413380 " fill="rgb(255,35,0)" points="866.509,1523.99 885.433,1523.99 885.433,1518.5 866.509,1518.5 " />
<svg:polygon detid="369413636" count="1" value="111" id="3708014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 pos  external  module  1   Id 369413636 " fill="rgb(255,35,0)" points="866.509,1518.5 885.433,1518.5 885.433,1513.01 866.509,1513.01 " />
<svg:polygon detid="369413892" count="1" value="111" id="3708015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 pos  external  module  1   Id 369413892 " fill="rgb(255,35,0)" points="866.509,1513.01 885.433,1513.01 885.433,1507.52 866.509,1507.52 " />
<svg:polygon detid="369414148" count="1" value="111" id="3708016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 pos  external  module  1   Id 369414148 " fill="rgb(255,35,0)" points="866.509,1507.52 885.433,1507.52 885.433,1502.03 866.509,1502.03 " />
<svg:polygon detid="369414404" count="1" value="111" id="3708017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 pos  external  module  1   Id 369414404 " fill="rgb(255,35,0)" points="866.509,1502.03 885.433,1502.03 885.433,1496.54 866.509,1496.54 " />
<svg:polygon detid="369414660" count="1" value="111" id="3708018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 pos  external  module  1   Id 369414660 " fill="rgb(255,35,0)" points="866.509,1496.54 885.433,1496.54 885.433,1491.06 866.509,1491.06 " />
<svg:polygon detid="369414916" count="1" value="111" id="3708019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 pos  external  module  1   Id 369414916 " fill="rgb(255,35,0)" points="866.509,1491.06 885.433,1491.06 885.433,1485.57 866.509,1485.57 " />
<svg:polygon detid="369415172" count="1" value="111" id="3708020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 pos  external  module  1   Id 369415172 " fill="rgb(255,35,0)" points="866.509,1485.57 885.433,1485.57 885.433,1480.08 866.509,1480.08 " />
<svg:polygon detid="369415428" count="1" value="111" id="3708021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 pos  external  module  1   Id 369415428 " fill="rgb(255,35,0)" points="866.509,1480.08 885.433,1480.08 885.433,1474.59 866.509,1474.59 " />
<svg:polygon detid="369415684" count="1" value="111" id="3708022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 pos  external  module  1   Id 369415684 " fill="rgb(255,35,0)" points="866.509,1474.59 885.433,1474.59 885.433,1469.1 866.509,1469.1 " />
<svg:polygon detid="369415940" count="1" value="111" id="3708023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 pos  external  module  1   Id 369415940 " fill="rgb(255,35,0)" points="866.509,1469.1 885.433,1469.1 885.433,1463.61 866.509,1463.61 " />
<svg:polygon detid="369416196" count="1" value="111" id="3708024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 pos  external  module  1   Id 369416196 " fill="rgb(255,35,0)" points="866.509,1463.61 885.433,1463.61 885.433,1458.12 866.509,1458.12 " />
<svg:polygon detid="369416452" count="1" value="111" id="3708025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 pos  external  module  1   Id 369416452 " fill="rgb(255,35,0)" points="866.509,1458.12 885.433,1458.12 885.433,1452.63 866.509,1452.63 " />
<svg:polygon detid="369416708" count="1" value="111" id="3708026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 pos  external  module  1   Id 369416708 " fill="rgb(255,35,0)" points="866.509,1452.63 885.433,1452.63 885.433,1447.14 866.509,1447.14 " />
<svg:polygon detid="369416964" count="1" value="111" id="3708027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 pos  external  module  1   Id 369416964 " fill="rgb(255,35,0)" points="866.509,1447.14 885.433,1447.14 885.433,1441.65 866.509,1441.65 " />
<svg:polygon detid="369417220" count="1" value="111" id="3708028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 pos  external  module  1   Id 369417220 " fill="rgb(255,35,0)" points="866.509,1441.65 885.433,1441.65 885.433,1436.16 866.509,1436.16 " />
<svg:polygon detid="369417476" count="1" value="111" id="3708029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 pos  external  module  1   Id 369417476 " fill="rgb(255,35,0)" points="866.509,1436.16 885.433,1436.16 885.433,1430.67 866.509,1430.67 " />
<svg:polygon detid="369417732" count="1" value="111" id="3708030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 pos  external  module  1   Id 369417732 " fill="rgb(255,35,0)" points="866.509,1430.67 885.433,1430.67 885.433,1425.19 866.509,1425.19 " />
<svg:polygon detid="369417988" count="1" value="111" id="3708031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 pos  external  module  1   Id 369417988 " fill="rgb(255,35,0)" points="866.509,1425.19 885.433,1425.19 885.433,1419.7 866.509,1419.7 " />
<svg:polygon detid="369418244" count="1" value="111" id="3708032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 pos  external  module  1   Id 369418244 " fill="rgb(255,35,0)" points="866.509,1419.7 885.433,1419.7 885.433,1414.21 866.509,1414.21 " />
<svg:polygon detid="369418500" count="1" value="111" id="3708033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 pos  external  module  1   Id 369418500 " fill="rgb(255,35,0)" points="866.509,1414.21 885.433,1414.21 885.433,1408.72 866.509,1408.72 " />
<svg:polygon detid="369418756" count="1" value="111" id="3708034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 pos  external  module  1   Id 369418756 " fill="rgb(255,35,0)" points="866.509,1408.72 885.433,1408.72 885.433,1403.23 866.509,1403.23 " />
<svg:polygon detid="369419012" count="1" value="111" id="3708035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 pos  external  module  1   Id 369419012 " fill="rgb(255,35,0)" points="866.509,1403.23 885.433,1403.23 885.433,1397.74 866.509,1397.74 " />
<svg:polygon detid="369419268" count="1" value="111" id="3708036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 pos  external  module  1   Id 369419268 " fill="rgb(255,35,0)" points="866.509,1397.74 885.433,1397.74 885.433,1392.25 866.509,1392.25 " />
<svg:polygon detid="369419524" count="1" value="111" id="3708037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 pos  external  module  1   Id 369419524 " fill="rgb(255,35,0)" points="866.509,1392.25 885.433,1392.25 885.433,1386.76 866.509,1386.76 " />
<svg:polygon detid="369419780" count="1" value="111" id="3708038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 pos  external  module  1   Id 369419780 " fill="rgb(255,35,0)" points="866.509,1386.76 885.433,1386.76 885.433,1381.27 866.509,1381.27 " />
<svg:polygon detid="369420036" count="1" value="111" id="3708039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 pos  external  module  1   Id 369420036 " fill="rgb(255,35,0)" points="866.509,1381.27 885.433,1381.27 885.433,1375.78 866.509,1375.78 " />
<svg:polygon detid="369420292" count="1" value="111" id="3708040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 pos  external  module  1   Id 369420292 " fill="rgb(255,35,0)" points="866.509,1375.78 885.433,1375.78 885.433,1370.29 866.509,1370.29 " />
<svg:polygon detid="369420548" count="1" value="111" id="3708041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 pos  external  module  1   Id 369420548 " fill="rgb(255,35,0)" points="866.509,1370.29 885.433,1370.29 885.433,1364.8 866.509,1364.8 " />
<svg:polygon detid="369420804" count="1" value="111" id="3708042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 pos  external  module  1   Id 369420804 " fill="rgb(255,35,0)" points="866.509,1364.8 885.433,1364.8 885.433,1359.32 866.509,1359.32 " />
<svg:polygon detid="369421060" count="1" value="111" id="3708043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 pos  external  module  1   Id 369421060 " fill="rgb(255,35,0)" points="866.509,1359.32 885.433,1359.32 885.433,1353.83 866.509,1353.83 " />
<svg:polygon detid="369421316" count="1" value="111" id="3708044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 pos  external  module  1   Id 369421316 " fill="rgb(255,35,0)" points="866.509,1353.83 885.433,1353.83 885.433,1348.34 866.509,1348.34 " />
<svg:polygon detid="369421572" count="1" value="111" id="3708045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 pos  external  module  1   Id 369421572 " fill="rgb(255,35,0)" points="866.509,1348.34 885.433,1348.34 885.433,1342.85 866.509,1342.85 " />
<svg:polygon detid="369421828" count="1" value="111" id="3708046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 pos  external  module  1   Id 369421828 " fill="rgb(255,35,0)" points="866.509,1342.85 885.433,1342.85 885.433,1337.36 866.509,1337.36 " />
<svg:polygon detid="369422084" count="1" value="111" id="3708047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 pos  external  module  1   Id 369422084 " fill="rgb(255,35,0)" points="866.509,1337.36 885.433,1337.36 885.433,1331.87 866.509,1331.87 " />
<svg:polygon detid="369422340" count="1" value="111" id="3708048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 pos  external  module  1   Id 369422340 " fill="rgb(255,35,0)" points="866.509,1331.87 885.433,1331.87 885.433,1326.38 866.509,1326.38 " />
<svg:polygon detid="369422596" count="1" value="111" id="3708049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 pos  external  module  1   Id 369422596 " fill="rgb(255,35,0)" points="866.509,1326.38 885.433,1326.38 885.433,1320.89 866.509,1320.89 " />
<svg:polygon detid="369422852" count="1" value="111" id="3708050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 pos  external  module  1   Id 369422852 " fill="rgb(255,35,0)" points="866.509,1320.89 885.433,1320.89 885.433,1315.4 866.509,1315.4 " />
<svg:polygon detid="369423108" count="1" value="111" id="3708051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 pos  external  module  1   Id 369423108 " fill="rgb(255,35,0)" points="866.509,1315.4 885.433,1315.4 885.433,1309.91 866.509,1309.91 " />
<svg:polygon detid="369423364" count="1" value="111" id="3708052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 pos  external  module  1   Id 369423364 " fill="rgb(255,35,0)" points="866.509,1309.91 885.433,1309.91 885.433,1304.42 866.509,1304.42 " />
<svg:polygon detid="369423620" count="1" value="111" id="3708053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 53 pos  external  module  1   Id 369423620 " fill="rgb(255,35,0)" points="866.509,1304.42 885.433,1304.42 885.433,1298.93 866.509,1298.93 " />
<svg:polygon detid="369423876" count="1" value="111" id="3708054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 54 pos  external  module  1   Id 369423876 " fill="rgb(255,35,0)" points="866.509,1298.93 885.433,1298.93 885.433,1293.45 866.509,1293.45 " />
<svg:polygon detid="369424132" count="1" value="111" id="3708055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 55 pos  external  module  1   Id 369424132 " fill="rgb(255,35,0)" points="866.509,1293.45 885.433,1293.45 885.433,1287.96 866.509,1287.96 " />
<svg:polygon detid="369424388" count="1" value="111" id="3708056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 56 pos  external  module  1   Id 369424388 " fill="rgb(255,35,0)" points="866.509,1287.96 885.433,1287.96 885.433,1282.47 866.509,1282.47 " />
<svg:polygon detid="369393928" count="1" value="111" id="3709001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 pos  internal  module  2   Id 369393928 " fill="rgb(255,35,0)" points="887.798,1589.86 906.723,1589.86 906.723,1584.37 887.798,1584.37 " />
<svg:polygon detid="369394184" count="1" value="111" id="3709002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 pos  internal  module  2   Id 369394184 " fill="rgb(255,35,0)" points="887.798,1584.37 906.723,1584.37 906.723,1578.88 887.798,1578.88 " />
<svg:polygon detid="369394440" count="1" value="111" id="3709003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 pos  internal  module  2   Id 369394440 " fill="rgb(255,35,0)" points="887.798,1578.88 906.723,1578.88 906.723,1573.39 887.798,1573.39 " />
<svg:polygon detid="369394696" count="1" value="111" id="3709004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 pos  internal  module  2   Id 369394696 " fill="rgb(255,35,0)" points="887.798,1573.39 906.723,1573.39 906.723,1567.9 887.798,1567.9 " />
<svg:polygon detid="369394952" count="1" value="111" id="3709005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 pos  internal  module  2   Id 369394952 " fill="rgb(255,35,0)" points="887.798,1567.9 906.723,1567.9 906.723,1562.41 887.798,1562.41 " />
<svg:polygon detid="369395208" count="1" value="111" id="3709007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 pos  internal  module  2   Id 369395208 " fill="rgb(255,35,0)" points="887.798,1556.92 906.723,1556.92 906.723,1551.44 887.798,1551.44 " />
<svg:polygon detid="369395464" count="1" value="111" id="3709008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 pos  internal  module  2   Id 369395464 " fill="rgb(255,35,0)" points="887.798,1551.44 906.723,1551.44 906.723,1545.95 887.798,1545.95 " />
<svg:polygon detid="369395720" count="1" value="111" id="3709009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 pos  internal  module  2   Id 369395720 " fill="rgb(255,35,0)" points="887.798,1545.95 906.723,1545.95 906.723,1540.46 887.798,1540.46 " />
<svg:polygon detid="369395976" count="1" value="111" id="3709010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 pos  internal  module  2   Id 369395976 " fill="rgb(255,35,0)" points="887.798,1540.46 906.723,1540.46 906.723,1534.97 887.798,1534.97 " />
<svg:polygon detid="369396232" count="1" value="111" id="3709011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 pos  internal  module  2   Id 369396232 " fill="rgb(255,35,0)" points="887.798,1534.97 906.723,1534.97 906.723,1529.48 887.798,1529.48 " />
<svg:polygon detid="369396488" count="1" value="111" id="3709012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 pos  internal  module  2   Id 369396488 " fill="rgb(255,35,0)" points="887.798,1529.48 906.723,1529.48 906.723,1523.99 887.798,1523.99 " />
<svg:polygon detid="369396744" count="1" value="111" id="3709013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 pos  internal  module  2   Id 369396744 " fill="rgb(255,35,0)" points="887.798,1523.99 906.723,1523.99 906.723,1518.5 887.798,1518.5 " />
<svg:polygon detid="369397000" count="1" value="111" id="3709014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 pos  internal  module  2   Id 369397000 " fill="rgb(255,35,0)" points="887.798,1518.5 906.723,1518.5 906.723,1513.01 887.798,1513.01 " />
<svg:polygon detid="369397256" count="1" value="111" id="3709015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 pos  internal  module  2   Id 369397256 " fill="rgb(255,35,0)" points="887.798,1513.01 906.723,1513.01 906.723,1507.52 887.798,1507.52 " />
<svg:polygon detid="369397512" count="1" value="111" id="3709016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 pos  internal  module  2   Id 369397512 " fill="rgb(255,35,0)" points="887.798,1507.52 906.723,1507.52 906.723,1502.03 887.798,1502.03 " />
<svg:polygon detid="369397768" count="1" value="111" id="3709017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 pos  internal  module  2   Id 369397768 " fill="rgb(255,35,0)" points="887.798,1502.03 906.723,1502.03 906.723,1496.54 887.798,1496.54 " />
<svg:polygon detid="369398024" count="1" value="111" id="3709018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 pos  internal  module  2   Id 369398024 " fill="rgb(255,35,0)" points="887.798,1496.54 906.723,1496.54 906.723,1491.06 887.798,1491.06 " />
<svg:polygon detid="369398280" count="1" value="111" id="3709019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 pos  internal  module  2   Id 369398280 " fill="rgb(255,35,0)" points="887.798,1491.06 906.723,1491.06 906.723,1485.57 887.798,1485.57 " />
<svg:polygon detid="369398536" count="1" value="111" id="3709021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 pos  internal  module  2   Id 369398536 " fill="rgb(255,35,0)" points="887.798,1480.08 906.723,1480.08 906.723,1474.59 887.798,1474.59 " />
<svg:polygon detid="369398792" count="1" value="111" id="3709022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 pos  internal  module  2   Id 369398792 " fill="rgb(255,35,0)" points="887.798,1474.59 906.723,1474.59 906.723,1469.1 887.798,1469.1 " />
<svg:polygon detid="369399048" count="1" value="111" id="3709023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 pos  internal  module  2   Id 369399048 " fill="rgb(255,35,0)" points="887.798,1469.1 906.723,1469.1 906.723,1463.61 887.798,1463.61 " />
<svg:polygon detid="369399304" count="1" value="111" id="3709024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 pos  internal  module  2   Id 369399304 " fill="rgb(255,35,0)" points="887.798,1463.61 906.723,1463.61 906.723,1458.12 887.798,1458.12 " />
<svg:polygon detid="369399560" count="1" value="111" id="3709025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 pos  internal  module  2   Id 369399560 " fill="rgb(255,35,0)" points="887.798,1458.12 906.723,1458.12 906.723,1452.63 887.798,1452.63 " />
<svg:polygon detid="369399816" count="1" value="111" id="3709026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 pos  internal  module  2   Id 369399816 " fill="rgb(255,35,0)" points="887.798,1452.63 906.723,1452.63 906.723,1447.14 887.798,1447.14 " />
<svg:polygon detid="369400072" count="1" value="111" id="3709027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 pos  internal  module  2   Id 369400072 " fill="rgb(255,35,0)" points="887.798,1447.14 906.723,1447.14 906.723,1441.65 887.798,1441.65 " />
<svg:polygon detid="369400328" count="1" value="111" id="3709028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 pos  internal  module  2   Id 369400328 " fill="rgb(255,35,0)" points="887.798,1441.65 906.723,1441.65 906.723,1436.16 887.798,1436.16 " />
<svg:polygon detid="369400584" count="1" value="111" id="3709029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 pos  internal  module  2   Id 369400584 " fill="rgb(255,35,0)" points="887.798,1436.16 906.723,1436.16 906.723,1430.67 887.798,1430.67 " />
<svg:polygon detid="369400840" count="1" value="111" id="3709030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 pos  internal  module  2   Id 369400840 " fill="rgb(255,35,0)" points="887.798,1430.67 906.723,1430.67 906.723,1425.19 887.798,1425.19 " />
<svg:polygon detid="369401096" count="1" value="111" id="3709031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 pos  internal  module  2   Id 369401096 " fill="rgb(255,35,0)" points="887.798,1425.19 906.723,1425.19 906.723,1419.7 887.798,1419.7 " />
<svg:polygon detid="369401352" count="1" value="111" id="3709032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 pos  internal  module  2   Id 369401352 " fill="rgb(255,35,0)" points="887.798,1419.7 906.723,1419.7 906.723,1414.21 887.798,1414.21 " />
<svg:polygon detid="369401608" count="1" value="111" id="3709033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 pos  internal  module  2   Id 369401608 " fill="rgb(255,35,0)" points="887.798,1414.21 906.723,1414.21 906.723,1408.72 887.798,1408.72 " />
<svg:polygon detid="369401864" count="1" value="111" id="3709035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 pos  internal  module  2   Id 369401864 " fill="rgb(255,35,0)" points="887.798,1403.23 906.723,1403.23 906.723,1397.74 887.798,1397.74 " />
<svg:polygon detid="369402120" count="1" value="111" id="3709036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 pos  internal  module  2   Id 369402120 " fill="rgb(255,35,0)" points="887.798,1397.74 906.723,1397.74 906.723,1392.25 887.798,1392.25 " />
<svg:polygon detid="369402376" count="1" value="111" id="3709037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 pos  internal  module  2   Id 369402376 " fill="rgb(255,35,0)" points="887.798,1392.25 906.723,1392.25 906.723,1386.76 887.798,1386.76 " />
<svg:polygon detid="369402632" count="1" value="111" id="3709038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 pos  internal  module  2   Id 369402632 " fill="rgb(255,35,0)" points="887.798,1386.76 906.723,1386.76 906.723,1381.27 887.798,1381.27 " />
<svg:polygon detid="369402888" count="1" value="111" id="3709039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 pos  internal  module  2   Id 369402888 " fill="rgb(255,35,0)" points="887.798,1381.27 906.723,1381.27 906.723,1375.78 887.798,1375.78 " />
<svg:polygon detid="369403144" count="1" value="111" id="3709040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 pos  internal  module  2   Id 369403144 " fill="rgb(255,35,0)" points="887.798,1375.78 906.723,1375.78 906.723,1370.29 887.798,1370.29 " />
<svg:polygon detid="369403400" count="1" value="111" id="3709041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 pos  internal  module  2   Id 369403400 " fill="rgb(255,35,0)" points="887.798,1370.29 906.723,1370.29 906.723,1364.8 887.798,1364.8 " />
<svg:polygon detid="369403656" count="1" value="111" id="3709042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 pos  internal  module  2   Id 369403656 " fill="rgb(255,35,0)" points="887.798,1364.8 906.723,1364.8 906.723,1359.32 887.798,1359.32 " />
<svg:polygon detid="369403912" count="1" value="111" id="3709043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 pos  internal  module  2   Id 369403912 " fill="rgb(255,35,0)" points="887.798,1359.32 906.723,1359.32 906.723,1353.83 887.798,1353.83 " />
<svg:polygon detid="369404168" count="1" value="111" id="3709044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 pos  internal  module  2   Id 369404168 " fill="rgb(255,35,0)" points="887.798,1353.83 906.723,1353.83 906.723,1348.34 887.798,1348.34 " />
<svg:polygon detid="369404424" count="1" value="111" id="3709045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 pos  internal  module  2   Id 369404424 " fill="rgb(255,35,0)" points="887.798,1348.34 906.723,1348.34 906.723,1342.85 887.798,1342.85 " />
<svg:polygon detid="369404680" count="1" value="111" id="3709046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 pos  internal  module  2   Id 369404680 " fill="rgb(255,35,0)" points="887.798,1342.85 906.723,1342.85 906.723,1337.36 887.798,1337.36 " />
<svg:polygon detid="369404936" count="1" value="111" id="3709047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 pos  internal  module  2   Id 369404936 " fill="rgb(255,35,0)" points="887.798,1337.36 906.723,1337.36 906.723,1331.87 887.798,1331.87 " />
<svg:polygon detid="369405192" count="1" value="111" id="3709049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 pos  internal  module  2   Id 369405192 " fill="rgb(255,35,0)" points="887.798,1326.38 906.723,1326.38 906.723,1320.89 887.798,1320.89 " />
<svg:polygon detid="369405448" count="1" value="111" id="3709050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 pos  internal  module  2   Id 369405448 " fill="rgb(255,35,0)" points="887.798,1320.89 906.723,1320.89 906.723,1315.4 887.798,1315.4 " />
<svg:polygon detid="369405704" count="1" value="111" id="3709051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 pos  internal  module  2   Id 369405704 " fill="rgb(255,35,0)" points="887.798,1315.4 906.723,1315.4 906.723,1309.91 887.798,1309.91 " />
<svg:polygon detid="369405960" count="1" value="111" id="3709052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 pos  internal  module  2   Id 369405960 " fill="rgb(255,35,0)" points="887.798,1309.91 906.723,1309.91 906.723,1304.42 887.798,1304.42 " />
<svg:polygon detid="369406216" count="1" value="111" id="3709053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 pos  internal  module  2   Id 369406216 " fill="rgb(255,35,0)" points="887.798,1304.42 906.723,1304.42 906.723,1298.93 887.798,1298.93 " />
<svg:polygon detid="369406472" count="1" value="111" id="3709054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 pos  internal  module  2   Id 369406472 " fill="rgb(255,35,0)" points="887.798,1298.93 906.723,1298.93 906.723,1293.45 887.798,1293.45 " />
<svg:polygon detid="369406728" count="1" value="111" id="3709055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 pos  internal  module  2   Id 369406728 " fill="rgb(255,35,0)" points="887.798,1293.45 906.723,1293.45 906.723,1287.96 887.798,1287.96 " />
<svg:polygon detid="369406984" count="1" value="111" id="3709056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 pos  internal  module  2   Id 369406984 " fill="rgb(255,35,0)" points="887.798,1287.96 906.723,1287.96 906.723,1282.47 887.798,1282.47 " />
<svg:polygon detid="369410312" count="1" value="111" id="3710001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 pos  external  module  2   Id 369410312 " fill="rgb(255,35,0)" points="909.088,1589.86 928.012,1589.86 928.012,1584.37 909.088,1584.37 " />
<svg:polygon detid="369410568" count="1" value="111" id="3710002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 pos  external  module  2   Id 369410568 " fill="rgb(255,35,0)" points="909.088,1584.37 928.012,1584.37 928.012,1578.88 909.088,1578.88 " />
<svg:polygon detid="369410824" count="1" value="111" id="3710003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 pos  external  module  2   Id 369410824 " fill="rgb(255,35,0)" points="909.088,1578.88 928.012,1578.88 928.012,1573.39 909.088,1573.39 " />
<svg:polygon detid="369411080" count="1" value="111" id="3710004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 pos  external  module  2   Id 369411080 " fill="rgb(255,35,0)" points="909.088,1573.39 928.012,1573.39 928.012,1567.9 909.088,1567.9 " />
<svg:polygon detid="369411336" count="1" value="111" id="3710005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 pos  external  module  2   Id 369411336 " fill="rgb(255,35,0)" points="909.088,1567.9 928.012,1567.9 928.012,1562.41 909.088,1562.41 " />
<svg:polygon detid="369411592" count="1" value="111" id="3710006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 pos  external  module  2   Id 369411592 " fill="rgb(255,35,0)" points="909.088,1562.41 928.012,1562.41 928.012,1556.92 909.088,1556.92 " />
<svg:polygon detid="369411848" count="1" value="111" id="3710007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 pos  external  module  2   Id 369411848 " fill="rgb(255,35,0)" points="909.088,1556.92 928.012,1556.92 928.012,1551.44 909.088,1551.44 " />
<svg:polygon detid="369412104" count="1" value="111" id="3710008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 pos  external  module  2   Id 369412104 " fill="rgb(255,35,0)" points="909.088,1551.44 928.012,1551.44 928.012,1545.95 909.088,1545.95 " />
<svg:polygon detid="369412360" count="1" value="111" id="3710009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 pos  external  module  2   Id 369412360 " fill="rgb(255,35,0)" points="909.088,1545.95 928.012,1545.95 928.012,1540.46 909.088,1540.46 " />
<svg:polygon detid="369412616" count="1" value="111" id="3710010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 pos  external  module  2   Id 369412616 " fill="rgb(255,35,0)" points="909.088,1540.46 928.012,1540.46 928.012,1534.97 909.088,1534.97 " />
<svg:polygon detid="369412872" count="1" value="111" id="3710011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 pos  external  module  2   Id 369412872 " fill="rgb(255,35,0)" points="909.088,1534.97 928.012,1534.97 928.012,1529.48 909.088,1529.48 " />
<svg:polygon detid="369413128" count="1" value="111" id="3710012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 pos  external  module  2   Id 369413128 " fill="rgb(255,35,0)" points="909.088,1529.48 928.012,1529.48 928.012,1523.99 909.088,1523.99 " />
<svg:polygon detid="369413384" count="1" value="111" id="3710013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 pos  external  module  2   Id 369413384 " fill="rgb(255,35,0)" points="909.088,1523.99 928.012,1523.99 928.012,1518.5 909.088,1518.5 " />
<svg:polygon detid="369413640" count="1" value="111" id="3710014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 pos  external  module  2   Id 369413640 " fill="rgb(255,35,0)" points="909.088,1518.5 928.012,1518.5 928.012,1513.01 909.088,1513.01 " />
<svg:polygon detid="369413896" count="1" value="111" id="3710015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 pos  external  module  2   Id 369413896 " fill="rgb(255,35,0)" points="909.088,1513.01 928.012,1513.01 928.012,1507.52 909.088,1507.52 " />
<svg:polygon detid="369414152" count="1" value="111" id="3710016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 pos  external  module  2   Id 369414152 " fill="rgb(255,35,0)" points="909.088,1507.52 928.012,1507.52 928.012,1502.03 909.088,1502.03 " />
<svg:polygon detid="369414408" count="1" value="111" id="3710017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 pos  external  module  2   Id 369414408 " fill="rgb(255,35,0)" points="909.088,1502.03 928.012,1502.03 928.012,1496.54 909.088,1496.54 " />
<svg:polygon detid="369414664" count="1" value="111" id="3710018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 pos  external  module  2   Id 369414664 " fill="rgb(255,35,0)" points="909.088,1496.54 928.012,1496.54 928.012,1491.06 909.088,1491.06 " />
<svg:polygon detid="369414920" count="1" value="111" id="3710019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 pos  external  module  2   Id 369414920 " fill="rgb(255,35,0)" points="909.088,1491.06 928.012,1491.06 928.012,1485.57 909.088,1485.57 " />
<svg:polygon detid="369415176" count="1" value="111" id="3710020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 pos  external  module  2   Id 369415176 " fill="rgb(255,35,0)" points="909.088,1485.57 928.012,1485.57 928.012,1480.08 909.088,1480.08 " />
<svg:polygon detid="369415432" count="1" value="111" id="3710021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 pos  external  module  2   Id 369415432 " fill="rgb(255,35,0)" points="909.088,1480.08 928.012,1480.08 928.012,1474.59 909.088,1474.59 " />
<svg:polygon detid="369415688" count="1" value="111" id="3710022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 pos  external  module  2   Id 369415688 " fill="rgb(255,35,0)" points="909.088,1474.59 928.012,1474.59 928.012,1469.1 909.088,1469.1 " />
<svg:polygon detid="369415944" count="1" value="111" id="3710023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 pos  external  module  2   Id 369415944 " fill="rgb(255,35,0)" points="909.088,1469.1 928.012,1469.1 928.012,1463.61 909.088,1463.61 " />
<svg:polygon detid="369416200" count="1" value="111" id="3710024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 pos  external  module  2   Id 369416200 " fill="rgb(255,35,0)" points="909.088,1463.61 928.012,1463.61 928.012,1458.12 909.088,1458.12 " />
<svg:polygon detid="369416456" count="1" value="111" id="3710025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 pos  external  module  2   Id 369416456 " fill="rgb(255,35,0)" points="909.088,1458.12 928.012,1458.12 928.012,1452.63 909.088,1452.63 " />
<svg:polygon detid="369416712" count="1" value="111" id="3710026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 pos  external  module  2   Id 369416712 " fill="rgb(255,35,0)" points="909.088,1452.63 928.012,1452.63 928.012,1447.14 909.088,1447.14 " />
<svg:polygon detid="369416968" count="1" value="111" id="3710027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 pos  external  module  2   Id 369416968 " fill="rgb(255,35,0)" points="909.088,1447.14 928.012,1447.14 928.012,1441.65 909.088,1441.65 " />
<svg:polygon detid="369417224" count="1" value="111" id="3710028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 pos  external  module  2   Id 369417224 " fill="rgb(255,35,0)" points="909.088,1441.65 928.012,1441.65 928.012,1436.16 909.088,1436.16 " />
<svg:polygon detid="369417480" count="1" value="111" id="3710029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 pos  external  module  2   Id 369417480 " fill="rgb(255,35,0)" points="909.088,1436.16 928.012,1436.16 928.012,1430.67 909.088,1430.67 " />
<svg:polygon detid="369417736" count="1" value="111" id="3710030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 pos  external  module  2   Id 369417736 " fill="rgb(255,35,0)" points="909.088,1430.67 928.012,1430.67 928.012,1425.19 909.088,1425.19 " />
<svg:polygon detid="369417992" count="1" value="111" id="3710031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 pos  external  module  2   Id 369417992 " fill="rgb(255,35,0)" points="909.088,1425.19 928.012,1425.19 928.012,1419.7 909.088,1419.7 " />
<svg:polygon detid="369418248" count="1" value="111" id="3710032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 pos  external  module  2   Id 369418248 " fill="rgb(255,35,0)" points="909.088,1419.7 928.012,1419.7 928.012,1414.21 909.088,1414.21 " />
<svg:polygon detid="369418504" count="1" value="111" id="3710033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 pos  external  module  2   Id 369418504 " fill="rgb(255,35,0)" points="909.088,1414.21 928.012,1414.21 928.012,1408.72 909.088,1408.72 " />
<svg:polygon detid="369418760" count="1" value="111" id="3710034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 pos  external  module  2   Id 369418760 " fill="rgb(255,35,0)" points="909.088,1408.72 928.012,1408.72 928.012,1403.23 909.088,1403.23 " />
<svg:polygon detid="369419016" count="1" value="111" id="3710035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 pos  external  module  2   Id 369419016 " fill="rgb(255,35,0)" points="909.088,1403.23 928.012,1403.23 928.012,1397.74 909.088,1397.74 " />
<svg:polygon detid="369419272" count="1" value="111" id="3710036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 pos  external  module  2   Id 369419272 " fill="rgb(255,35,0)" points="909.088,1397.74 928.012,1397.74 928.012,1392.25 909.088,1392.25 " />
<svg:polygon detid="369419528" count="1" value="111" id="3710037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 pos  external  module  2   Id 369419528 " fill="rgb(255,35,0)" points="909.088,1392.25 928.012,1392.25 928.012,1386.76 909.088,1386.76 " />
<svg:polygon detid="369419784" count="1" value="111" id="3710038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 pos  external  module  2   Id 369419784 " fill="rgb(255,35,0)" points="909.088,1386.76 928.012,1386.76 928.012,1381.27 909.088,1381.27 " />
<svg:polygon detid="369420040" count="1" value="111" id="3710039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 pos  external  module  2   Id 369420040 " fill="rgb(255,35,0)" points="909.088,1381.27 928.012,1381.27 928.012,1375.78 909.088,1375.78 " />
<svg:polygon detid="369420296" count="1" value="111" id="3710040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 pos  external  module  2   Id 369420296 " fill="rgb(255,35,0)" points="909.088,1375.78 928.012,1375.78 928.012,1370.29 909.088,1370.29 " />
<svg:polygon detid="369420552" count="1" value="111" id="3710041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 pos  external  module  2   Id 369420552 " fill="rgb(255,35,0)" points="909.088,1370.29 928.012,1370.29 928.012,1364.8 909.088,1364.8 " />
<svg:polygon detid="369420808" count="1" value="111" id="3710042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 pos  external  module  2   Id 369420808 " fill="rgb(255,35,0)" points="909.088,1364.8 928.012,1364.8 928.012,1359.32 909.088,1359.32 " />
<svg:polygon detid="369421064" count="1" value="111" id="3710043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 pos  external  module  2   Id 369421064 " fill="rgb(255,35,0)" points="909.088,1359.32 928.012,1359.32 928.012,1353.83 909.088,1353.83 " />
<svg:polygon detid="369421320" count="1" value="111" id="3710044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 pos  external  module  2   Id 369421320 " fill="rgb(255,35,0)" points="909.088,1353.83 928.012,1353.83 928.012,1348.34 909.088,1348.34 " />
<svg:polygon detid="369421576" count="1" value="111" id="3710045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 pos  external  module  2   Id 369421576 " fill="rgb(255,35,0)" points="909.088,1348.34 928.012,1348.34 928.012,1342.85 909.088,1342.85 " />
<svg:polygon detid="369421832" count="1" value="111" id="3710046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 pos  external  module  2   Id 369421832 " fill="rgb(255,35,0)" points="909.088,1342.85 928.012,1342.85 928.012,1337.36 909.088,1337.36 " />
<svg:polygon detid="369422088" count="1" value="111" id="3710047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 pos  external  module  2   Id 369422088 " fill="rgb(255,35,0)" points="909.088,1337.36 928.012,1337.36 928.012,1331.87 909.088,1331.87 " />
<svg:polygon detid="369422344" count="1" value="111" id="3710048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 pos  external  module  2   Id 369422344 " fill="rgb(255,35,0)" points="909.088,1331.87 928.012,1331.87 928.012,1326.38 909.088,1326.38 " />
<svg:polygon detid="369422600" count="1" value="111" id="3710049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 pos  external  module  2   Id 369422600 " fill="rgb(255,35,0)" points="909.088,1326.38 928.012,1326.38 928.012,1320.89 909.088,1320.89 " />
<svg:polygon detid="369422856" count="1" value="111" id="3710050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 pos  external  module  2   Id 369422856 " fill="rgb(255,35,0)" points="909.088,1320.89 928.012,1320.89 928.012,1315.4 909.088,1315.4 " />
<svg:polygon detid="369423112" count="1" value="111" id="3710051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 pos  external  module  2   Id 369423112 " fill="rgb(255,35,0)" points="909.088,1315.4 928.012,1315.4 928.012,1309.91 909.088,1309.91 " />
<svg:polygon detid="369423368" count="1" value="111" id="3710052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 pos  external  module  2   Id 369423368 " fill="rgb(255,35,0)" points="909.088,1309.91 928.012,1309.91 928.012,1304.42 909.088,1304.42 " />
<svg:polygon detid="369423624" count="1" value="111" id="3710053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 53 pos  external  module  2   Id 369423624 " fill="rgb(255,35,0)" points="909.088,1304.42 928.012,1304.42 928.012,1298.93 909.088,1298.93 " />
<svg:polygon detid="369423880" count="1" value="111" id="3710054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 54 pos  external  module  2   Id 369423880 " fill="rgb(255,35,0)" points="909.088,1298.93 928.012,1298.93 928.012,1293.45 909.088,1293.45 " />
<svg:polygon detid="369424136" count="1" value="111" id="3710055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 55 pos  external  module  2   Id 369424136 " fill="rgb(255,35,0)" points="909.088,1293.45 928.012,1293.45 928.012,1287.96 909.088,1287.96 " />
<svg:polygon detid="369424392" count="1" value="111" id="3710056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 56 pos  external  module  2   Id 369424392 " fill="rgb(255,35,0)" points="909.088,1287.96 928.012,1287.96 928.012,1282.47 909.088,1282.47 " />
<svg:polygon detid="369393932" count="1" value="111" id="3711001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 pos  internal  module  3   Id 369393932 " fill="rgb(255,35,0)" points="930.378,1589.86 949.302,1589.86 949.302,1584.37 930.378,1584.37 " />
<svg:polygon detid="369394188" count="1" value="111" id="3711002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 pos  internal  module  3   Id 369394188 " fill="rgb(255,35,0)" points="930.378,1584.37 949.302,1584.37 949.302,1578.88 930.378,1578.88 " />
<svg:polygon detid="369394444" count="1" value="111" id="3711003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 pos  internal  module  3   Id 369394444 " fill="rgb(255,35,0)" points="930.378,1578.88 949.302,1578.88 949.302,1573.39 930.378,1573.39 " />
<svg:polygon detid="369394700" count="1" value="111" id="3711004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 pos  internal  module  3   Id 369394700 " fill="rgb(255,35,0)" points="930.378,1573.39 949.302,1573.39 949.302,1567.9 930.378,1567.9 " />
<svg:polygon detid="369394956" count="1" value="111" id="3711005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 pos  internal  module  3   Id 369394956 " fill="rgb(255,35,0)" points="930.378,1567.9 949.302,1567.9 949.302,1562.41 930.378,1562.41 " />
<svg:polygon detid="369395212" count="1" value="111" id="3711007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 pos  internal  module  3   Id 369395212 " fill="rgb(255,35,0)" points="930.378,1556.92 949.302,1556.92 949.302,1551.44 930.378,1551.44 " />
<svg:polygon detid="369395468" count="1" value="111" id="3711008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 pos  internal  module  3   Id 369395468 " fill="rgb(255,35,0)" points="930.378,1551.44 949.302,1551.44 949.302,1545.95 930.378,1545.95 " />
<svg:polygon detid="369395724" count="1" value="111" id="3711009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 pos  internal  module  3   Id 369395724 " fill="rgb(255,35,0)" points="930.378,1545.95 949.302,1545.95 949.302,1540.46 930.378,1540.46 " />
<svg:polygon detid="369395980" count="1" value="111" id="3711010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 pos  internal  module  3   Id 369395980 " fill="rgb(255,35,0)" points="930.378,1540.46 949.302,1540.46 949.302,1534.97 930.378,1534.97 " />
<svg:polygon detid="369396236" count="1" value="111" id="3711011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 pos  internal  module  3   Id 369396236 " fill="rgb(255,35,0)" points="930.378,1534.97 949.302,1534.97 949.302,1529.48 930.378,1529.48 " />
<svg:polygon detid="369396492" count="1" value="111" id="3711012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 pos  internal  module  3   Id 369396492 " fill="rgb(255,35,0)" points="930.378,1529.48 949.302,1529.48 949.302,1523.99 930.378,1523.99 " />
<svg:polygon detid="369396748" count="1" value="111" id="3711013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 pos  internal  module  3   Id 369396748 " fill="rgb(255,35,0)" points="930.378,1523.99 949.302,1523.99 949.302,1518.5 930.378,1518.5 " />
<svg:polygon detid="369397004" count="1" value="111" id="3711014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 pos  internal  module  3   Id 369397004 " fill="rgb(255,35,0)" points="930.378,1518.5 949.302,1518.5 949.302,1513.01 930.378,1513.01 " />
<svg:polygon detid="369397260" count="1" value="111" id="3711015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 pos  internal  module  3   Id 369397260 " fill="rgb(255,35,0)" points="930.378,1513.01 949.302,1513.01 949.302,1507.52 930.378,1507.52 " />
<svg:polygon detid="369397516" count="1" value="111" id="3711016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 pos  internal  module  3   Id 369397516 " fill="rgb(255,35,0)" points="930.378,1507.52 949.302,1507.52 949.302,1502.03 930.378,1502.03 " />
<svg:polygon detid="369397772" count="1" value="111" id="3711017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 pos  internal  module  3   Id 369397772 " fill="rgb(255,35,0)" points="930.378,1502.03 949.302,1502.03 949.302,1496.54 930.378,1496.54 " />
<svg:polygon detid="369398028" count="1" value="111" id="3711018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 pos  internal  module  3   Id 369398028 " fill="rgb(255,35,0)" points="930.378,1496.54 949.302,1496.54 949.302,1491.06 930.378,1491.06 " />
<svg:polygon detid="369398284" count="1" value="111" id="3711019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 pos  internal  module  3   Id 369398284 " fill="rgb(255,35,0)" points="930.378,1491.06 949.302,1491.06 949.302,1485.57 930.378,1485.57 " />
<svg:polygon detid="369398540" count="1" value="111" id="3711021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 pos  internal  module  3   Id 369398540 " fill="rgb(255,35,0)" points="930.378,1480.08 949.302,1480.08 949.302,1474.59 930.378,1474.59 " />
<svg:polygon detid="369398796" count="1" value="111" id="3711022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 pos  internal  module  3   Id 369398796 " fill="rgb(255,35,0)" points="930.378,1474.59 949.302,1474.59 949.302,1469.1 930.378,1469.1 " />
<svg:polygon detid="369399052" count="1" value="111" id="3711023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 pos  internal  module  3   Id 369399052 " fill="rgb(255,35,0)" points="930.378,1469.1 949.302,1469.1 949.302,1463.61 930.378,1463.61 " />
<svg:polygon detid="369399308" count="1" value="111" id="3711024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 pos  internal  module  3   Id 369399308 " fill="rgb(255,35,0)" points="930.378,1463.61 949.302,1463.61 949.302,1458.12 930.378,1458.12 " />
<svg:polygon detid="369399564" count="1" value="111" id="3711025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 pos  internal  module  3   Id 369399564 " fill="rgb(255,35,0)" points="930.378,1458.12 949.302,1458.12 949.302,1452.63 930.378,1452.63 " />
<svg:polygon detid="369399820" count="1" value="111" id="3711026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 pos  internal  module  3   Id 369399820 " fill="rgb(255,35,0)" points="930.378,1452.63 949.302,1452.63 949.302,1447.14 930.378,1447.14 " />
<svg:polygon detid="369400076" count="1" value="111" id="3711027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 pos  internal  module  3   Id 369400076 " fill="rgb(255,35,0)" points="930.378,1447.14 949.302,1447.14 949.302,1441.65 930.378,1441.65 " />
<svg:polygon detid="369400332" count="1" value="111" id="3711028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 pos  internal  module  3   Id 369400332 " fill="rgb(255,35,0)" points="930.378,1441.65 949.302,1441.65 949.302,1436.16 930.378,1436.16 " />
<svg:polygon detid="369400588" count="1" value="111" id="3711029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 pos  internal  module  3   Id 369400588 " fill="rgb(255,35,0)" points="930.378,1436.16 949.302,1436.16 949.302,1430.67 930.378,1430.67 " />
<svg:polygon detid="369400844" count="1" value="111" id="3711030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 pos  internal  module  3   Id 369400844 " fill="rgb(255,35,0)" points="930.378,1430.67 949.302,1430.67 949.302,1425.19 930.378,1425.19 " />
<svg:polygon detid="369401100" count="1" value="111" id="3711031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 pos  internal  module  3   Id 369401100 " fill="rgb(255,35,0)" points="930.378,1425.19 949.302,1425.19 949.302,1419.7 930.378,1419.7 " />
<svg:polygon detid="369401356" count="1" value="111" id="3711032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 pos  internal  module  3   Id 369401356 " fill="rgb(255,35,0)" points="930.378,1419.7 949.302,1419.7 949.302,1414.21 930.378,1414.21 " />
<svg:polygon detid="369401612" count="1" value="111" id="3711033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 pos  internal  module  3   Id 369401612 " fill="rgb(255,35,0)" points="930.378,1414.21 949.302,1414.21 949.302,1408.72 930.378,1408.72 " />
<svg:polygon detid="369401868" count="1" value="111" id="3711035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 pos  internal  module  3   Id 369401868 " fill="rgb(255,35,0)" points="930.378,1403.23 949.302,1403.23 949.302,1397.74 930.378,1397.74 " />
<svg:polygon detid="369402124" count="1" value="111" id="3711036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 pos  internal  module  3   Id 369402124 " fill="rgb(255,35,0)" points="930.378,1397.74 949.302,1397.74 949.302,1392.25 930.378,1392.25 " />
<svg:polygon detid="369402380" count="1" value="111" id="3711037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 pos  internal  module  3   Id 369402380 " fill="rgb(255,35,0)" points="930.378,1392.25 949.302,1392.25 949.302,1386.76 930.378,1386.76 " />
<svg:polygon detid="369402636" count="1" value="111" id="3711038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 pos  internal  module  3   Id 369402636 " fill="rgb(255,35,0)" points="930.378,1386.76 949.302,1386.76 949.302,1381.27 930.378,1381.27 " />
<svg:polygon detid="369402892" count="1" value="111" id="3711039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 pos  internal  module  3   Id 369402892 " fill="rgb(255,35,0)" points="930.378,1381.27 949.302,1381.27 949.302,1375.78 930.378,1375.78 " />
<svg:polygon detid="369403148" count="1" value="111" id="3711040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 pos  internal  module  3   Id 369403148 " fill="rgb(255,35,0)" points="930.378,1375.78 949.302,1375.78 949.302,1370.29 930.378,1370.29 " />
<svg:polygon detid="369403404" count="1" value="111" id="3711041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 pos  internal  module  3   Id 369403404 " fill="rgb(255,35,0)" points="930.378,1370.29 949.302,1370.29 949.302,1364.8 930.378,1364.8 " />
<svg:polygon detid="369403660" count="1" value="111" id="3711042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 pos  internal  module  3   Id 369403660 " fill="rgb(255,35,0)" points="930.378,1364.8 949.302,1364.8 949.302,1359.32 930.378,1359.32 " />
<svg:polygon detid="369403916" count="1" value="111" id="3711043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 pos  internal  module  3   Id 369403916 " fill="rgb(255,35,0)" points="930.378,1359.32 949.302,1359.32 949.302,1353.83 930.378,1353.83 " />
<svg:polygon detid="369404172" count="1" value="111" id="3711044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 pos  internal  module  3   Id 369404172 " fill="rgb(255,35,0)" points="930.378,1353.83 949.302,1353.83 949.302,1348.34 930.378,1348.34 " />
<svg:polygon detid="369404428" count="1" value="111" id="3711045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 pos  internal  module  3   Id 369404428 " fill="rgb(255,35,0)" points="930.378,1348.34 949.302,1348.34 949.302,1342.85 930.378,1342.85 " />
<svg:polygon detid="369404684" count="1" value="111" id="3711046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 pos  internal  module  3   Id 369404684 " fill="rgb(255,35,0)" points="930.378,1342.85 949.302,1342.85 949.302,1337.36 930.378,1337.36 " />
<svg:polygon detid="369404940" count="1" value="111" id="3711047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 pos  internal  module  3   Id 369404940 " fill="rgb(255,35,0)" points="930.378,1337.36 949.302,1337.36 949.302,1331.87 930.378,1331.87 " />
<svg:polygon detid="369405196" count="1" value="111" id="3711049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 pos  internal  module  3   Id 369405196 " fill="rgb(255,35,0)" points="930.378,1326.38 949.302,1326.38 949.302,1320.89 930.378,1320.89 " />
<svg:polygon detid="369405452" count="1" value="111" id="3711050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 pos  internal  module  3   Id 369405452 " fill="rgb(255,35,0)" points="930.378,1320.89 949.302,1320.89 949.302,1315.4 930.378,1315.4 " />
<svg:polygon detid="369405708" count="1" value="111" id="3711051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 pos  internal  module  3   Id 369405708 " fill="rgb(255,35,0)" points="930.378,1315.4 949.302,1315.4 949.302,1309.91 930.378,1309.91 " />
<svg:polygon detid="369405964" count="1" value="111" id="3711052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 pos  internal  module  3   Id 369405964 " fill="rgb(255,35,0)" points="930.378,1309.91 949.302,1309.91 949.302,1304.42 930.378,1304.42 " />
<svg:polygon detid="369406220" count="1" value="111" id="3711053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 pos  internal  module  3   Id 369406220 " fill="rgb(255,35,0)" points="930.378,1304.42 949.302,1304.42 949.302,1298.93 930.378,1298.93 " />
<svg:polygon detid="369406476" count="1" value="111" id="3711054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 pos  internal  module  3   Id 369406476 " fill="rgb(255,35,0)" points="930.378,1298.93 949.302,1298.93 949.302,1293.45 930.378,1293.45 " />
<svg:polygon detid="369406732" count="1" value="111" id="3711055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 pos  internal  module  3   Id 369406732 " fill="rgb(255,35,0)" points="930.378,1293.45 949.302,1293.45 949.302,1287.96 930.378,1287.96 " />
<svg:polygon detid="369406988" count="1" value="111" id="3711056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 pos  internal  module  3   Id 369406988 " fill="rgb(255,35,0)" points="930.378,1287.96 949.302,1287.96 949.302,1282.47 930.378,1282.47 " />
<svg:polygon detid="369410316" count="1" value="111" id="3712001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 1 pos  external  module  3   Id 369410316 " fill="rgb(255,35,0)" points="951.668,1589.86 970.592,1589.86 970.592,1584.37 951.668,1584.37 " />
<svg:polygon detid="369410572" count="1" value="111" id="3712002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 2 pos  external  module  3   Id 369410572 " fill="rgb(255,35,0)" points="951.668,1584.37 970.592,1584.37 970.592,1578.88 951.668,1578.88 " />
<svg:polygon detid="369410828" count="1" value="111" id="3712003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 3 pos  external  module  3   Id 369410828 " fill="rgb(255,35,0)" points="951.668,1578.88 970.592,1578.88 970.592,1573.39 951.668,1573.39 " />
<svg:polygon detid="369411084" count="1" value="111" id="3712004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 4 pos  external  module  3   Id 369411084 " fill="rgb(255,35,0)" points="951.668,1573.39 970.592,1573.39 970.592,1567.9 951.668,1567.9 " />
<svg:polygon detid="369411340" count="1" value="111" id="3712005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 5 pos  external  module  3   Id 369411340 " fill="rgb(255,35,0)" points="951.668,1567.9 970.592,1567.9 970.592,1562.41 951.668,1562.41 " />
<svg:polygon detid="369411596" count="1" value="111" id="3712006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 6 pos  external  module  3   Id 369411596 " fill="rgb(255,35,0)" points="951.668,1562.41 970.592,1562.41 970.592,1556.92 951.668,1556.92 " />
<svg:polygon detid="369411852" count="1" value="111" id="3712007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 7 pos  external  module  3   Id 369411852 " fill="rgb(255,35,0)" points="951.668,1556.92 970.592,1556.92 970.592,1551.44 951.668,1551.44 " />
<svg:polygon detid="369412108" count="1" value="111" id="3712008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 8 pos  external  module  3   Id 369412108 " fill="rgb(255,35,0)" points="951.668,1551.44 970.592,1551.44 970.592,1545.95 951.668,1545.95 " />
<svg:polygon detid="369412364" count="1" value="111" id="3712009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 9 pos  external  module  3   Id 369412364 " fill="rgb(255,35,0)" points="951.668,1545.95 970.592,1545.95 970.592,1540.46 951.668,1540.46 " />
<svg:polygon detid="369412620" count="1" value="111" id="3712010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 10 pos  external  module  3   Id 369412620 " fill="rgb(255,35,0)" points="951.668,1540.46 970.592,1540.46 970.592,1534.97 951.668,1534.97 " />
<svg:polygon detid="369412876" count="1" value="111" id="3712011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 11 pos  external  module  3   Id 369412876 " fill="rgb(255,35,0)" points="951.668,1534.97 970.592,1534.97 970.592,1529.48 951.668,1529.48 " />
<svg:polygon detid="369413132" count="1" value="111" id="3712012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 12 pos  external  module  3   Id 369413132 " fill="rgb(255,35,0)" points="951.668,1529.48 970.592,1529.48 970.592,1523.99 951.668,1523.99 " />
<svg:polygon detid="369413388" count="1" value="111" id="3712013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 13 pos  external  module  3   Id 369413388 " fill="rgb(255,35,0)" points="951.668,1523.99 970.592,1523.99 970.592,1518.5 951.668,1518.5 " />
<svg:polygon detid="369413644" count="1" value="111" id="3712014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 14 pos  external  module  3   Id 369413644 " fill="rgb(255,35,0)" points="951.668,1518.5 970.592,1518.5 970.592,1513.01 951.668,1513.01 " />
<svg:polygon detid="369413900" count="1" value="111" id="3712015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 15 pos  external  module  3   Id 369413900 " fill="rgb(255,35,0)" points="951.668,1513.01 970.592,1513.01 970.592,1507.52 951.668,1507.52 " />
<svg:polygon detid="369414156" count="1" value="111" id="3712016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 16 pos  external  module  3   Id 369414156 " fill="rgb(255,35,0)" points="951.668,1507.52 970.592,1507.52 970.592,1502.03 951.668,1502.03 " />
<svg:polygon detid="369414412" count="1" value="111" id="3712017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 17 pos  external  module  3   Id 369414412 " fill="rgb(255,35,0)" points="951.668,1502.03 970.592,1502.03 970.592,1496.54 951.668,1496.54 " />
<svg:polygon detid="369414668" count="1" value="111" id="3712018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 18 pos  external  module  3   Id 369414668 " fill="rgb(255,35,0)" points="951.668,1496.54 970.592,1496.54 970.592,1491.06 951.668,1491.06 " />
<svg:polygon detid="369414924" count="1" value="111" id="3712019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 19 pos  external  module  3   Id 369414924 " fill="rgb(255,35,0)" points="951.668,1491.06 970.592,1491.06 970.592,1485.57 951.668,1485.57 " />
<svg:polygon detid="369415180" count="1" value="111" id="3712020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 20 pos  external  module  3   Id 369415180 " fill="rgb(255,35,0)" points="951.668,1485.57 970.592,1485.57 970.592,1480.08 951.668,1480.08 " />
<svg:polygon detid="369415436" count="1" value="111" id="3712021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 21 pos  external  module  3   Id 369415436 " fill="rgb(255,35,0)" points="951.668,1480.08 970.592,1480.08 970.592,1474.59 951.668,1474.59 " />
<svg:polygon detid="369415692" count="1" value="111" id="3712022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 22 pos  external  module  3   Id 369415692 " fill="rgb(255,35,0)" points="951.668,1474.59 970.592,1474.59 970.592,1469.1 951.668,1469.1 " />
<svg:polygon detid="369415948" count="1" value="111" id="3712023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 23 pos  external  module  3   Id 369415948 " fill="rgb(255,35,0)" points="951.668,1469.1 970.592,1469.1 970.592,1463.61 951.668,1463.61 " />
<svg:polygon detid="369416204" count="1" value="111" id="3712024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 24 pos  external  module  3   Id 369416204 " fill="rgb(255,35,0)" points="951.668,1463.61 970.592,1463.61 970.592,1458.12 951.668,1458.12 " />
<svg:polygon detid="369416460" count="1" value="111" id="3712025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 25 pos  external  module  3   Id 369416460 " fill="rgb(255,35,0)" points="951.668,1458.12 970.592,1458.12 970.592,1452.63 951.668,1452.63 " />
<svg:polygon detid="369416716" count="1" value="111" id="3712026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 26 pos  external  module  3   Id 369416716 " fill="rgb(255,35,0)" points="951.668,1452.63 970.592,1452.63 970.592,1447.14 951.668,1447.14 " />
<svg:polygon detid="369416972" count="1" value="111" id="3712027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 27 pos  external  module  3   Id 369416972 " fill="rgb(255,35,0)" points="951.668,1447.14 970.592,1447.14 970.592,1441.65 951.668,1441.65 " />
<svg:polygon detid="369417228" count="1" value="111" id="3712028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 28 pos  external  module  3   Id 369417228 " fill="rgb(255,35,0)" points="951.668,1441.65 970.592,1441.65 970.592,1436.16 951.668,1436.16 " />
<svg:polygon detid="369417484" count="1" value="111" id="3712029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 29 pos  external  module  3   Id 369417484 " fill="rgb(255,35,0)" points="951.668,1436.16 970.592,1436.16 970.592,1430.67 951.668,1430.67 " />
<svg:polygon detid="369417740" count="1" value="111" id="3712030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 30 pos  external  module  3   Id 369417740 " fill="rgb(255,35,0)" points="951.668,1430.67 970.592,1430.67 970.592,1425.19 951.668,1425.19 " />
<svg:polygon detid="369417996" count="1" value="111" id="3712031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 31 pos  external  module  3   Id 369417996 " fill="rgb(255,35,0)" points="951.668,1425.19 970.592,1425.19 970.592,1419.7 951.668,1419.7 " />
<svg:polygon detid="369418252" count="1" value="111" id="3712032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 32 pos  external  module  3   Id 369418252 " fill="rgb(255,35,0)" points="951.668,1419.7 970.592,1419.7 970.592,1414.21 951.668,1414.21 " />
<svg:polygon detid="369418508" count="1" value="111" id="3712033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 33 pos  external  module  3   Id 369418508 " fill="rgb(255,35,0)" points="951.668,1414.21 970.592,1414.21 970.592,1408.72 951.668,1408.72 " />
<svg:polygon detid="369418764" count="1" value="111" id="3712034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 34 pos  external  module  3   Id 369418764 " fill="rgb(255,35,0)" points="951.668,1408.72 970.592,1408.72 970.592,1403.23 951.668,1403.23 " />
<svg:polygon detid="369419020" count="1" value="111" id="3712035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 35 pos  external  module  3   Id 369419020 " fill="rgb(255,35,0)" points="951.668,1403.23 970.592,1403.23 970.592,1397.74 951.668,1397.74 " />
<svg:polygon detid="369419276" count="1" value="111" id="3712036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 36 pos  external  module  3   Id 369419276 " fill="rgb(255,35,0)" points="951.668,1397.74 970.592,1397.74 970.592,1392.25 951.668,1392.25 " />
<svg:polygon detid="369419532" count="1" value="111" id="3712037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 37 pos  external  module  3   Id 369419532 " fill="rgb(255,35,0)" points="951.668,1392.25 970.592,1392.25 970.592,1386.76 951.668,1386.76 " />
<svg:polygon detid="369419788" count="1" value="111" id="3712038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 38 pos  external  module  3   Id 369419788 " fill="rgb(255,35,0)" points="951.668,1386.76 970.592,1386.76 970.592,1381.27 951.668,1381.27 " />
<svg:polygon detid="369420044" count="1" value="111" id="3712039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 39 pos  external  module  3   Id 369420044 " fill="rgb(255,35,0)" points="951.668,1381.27 970.592,1381.27 970.592,1375.78 951.668,1375.78 " />
<svg:polygon detid="369420300" count="1" value="111" id="3712040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 40 pos  external  module  3   Id 369420300 " fill="rgb(255,35,0)" points="951.668,1375.78 970.592,1375.78 970.592,1370.29 951.668,1370.29 " />
<svg:polygon detid="369420556" count="1" value="111" id="3712041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 41 pos  external  module  3   Id 369420556 " fill="rgb(255,35,0)" points="951.668,1370.29 970.592,1370.29 970.592,1364.8 951.668,1364.8 " />
<svg:polygon detid="369420812" count="1" value="111" id="3712042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 42 pos  external  module  3   Id 369420812 " fill="rgb(255,35,0)" points="951.668,1364.8 970.592,1364.8 970.592,1359.32 951.668,1359.32 " />
<svg:polygon detid="369421068" count="1" value="111" id="3712043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 43 pos  external  module  3   Id 369421068 " fill="rgb(255,35,0)" points="951.668,1359.32 970.592,1359.32 970.592,1353.83 951.668,1353.83 " />
<svg:polygon detid="369421324" count="1" value="111" id="3712044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 44 pos  external  module  3   Id 369421324 " fill="rgb(255,35,0)" points="951.668,1353.83 970.592,1353.83 970.592,1348.34 951.668,1348.34 " />
<svg:polygon detid="369421580" count="1" value="111" id="3712045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 45 pos  external  module  3   Id 369421580 " fill="rgb(255,35,0)" points="951.668,1348.34 970.592,1348.34 970.592,1342.85 951.668,1342.85 " />
<svg:polygon detid="369421836" count="1" value="111" id="3712046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 46 pos  external  module  3   Id 369421836 " fill="rgb(255,35,0)" points="951.668,1342.85 970.592,1342.85 970.592,1337.36 951.668,1337.36 " />
<svg:polygon detid="369422092" count="1" value="111" id="3712047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 47 pos  external  module  3   Id 369422092 " fill="rgb(255,35,0)" points="951.668,1337.36 970.592,1337.36 970.592,1331.87 951.668,1331.87 " />
<svg:polygon detid="369422348" count="1" value="111" id="3712048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 48 pos  external  module  3   Id 369422348 " fill="rgb(255,35,0)" points="951.668,1331.87 970.592,1331.87 970.592,1326.38 951.668,1326.38 " />
<svg:polygon detid="369422604" count="1" value="111" id="3712049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 49 pos  external  module  3   Id 369422604 " fill="rgb(255,35,0)" points="951.668,1326.38 970.592,1326.38 970.592,1320.89 951.668,1320.89 " />
<svg:polygon detid="369422860" count="1" value="111" id="3712050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 50 pos  external  module  3   Id 369422860 " fill="rgb(255,35,0)" points="951.668,1320.89 970.592,1320.89 970.592,1315.4 951.668,1315.4 " />
<svg:polygon detid="369423116" count="1" value="111" id="3712051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 51 pos  external  module  3   Id 369423116 " fill="rgb(255,35,0)" points="951.668,1315.4 970.592,1315.4 970.592,1309.91 951.668,1309.91 " />
<svg:polygon detid="369423372" count="1" value="111" id="3712052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 52 pos  external  module  3   Id 369423372 " fill="rgb(255,35,0)" points="951.668,1309.91 970.592,1309.91 970.592,1304.42 951.668,1304.42 " />
<svg:polygon detid="369423628" count="1" value="111" id="3712053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 53 pos  external  module  3   Id 369423628 " fill="rgb(255,35,0)" points="951.668,1304.42 970.592,1304.42 970.592,1298.93 951.668,1298.93 " />
<svg:polygon detid="369423884" count="1" value="111" id="3712054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 54 pos  external  module  3   Id 369423884 " fill="rgb(255,35,0)" points="951.668,1298.93 970.592,1298.93 970.592,1293.45 951.668,1293.45 " />
<svg:polygon detid="369424140" count="1" value="111" id="3712055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 55 pos  external  module  3   Id 369424140 " fill="rgb(255,35,0)" points="951.668,1293.45 970.592,1293.45 970.592,1287.96 951.668,1287.96 " />
<svg:polygon detid="369424396" count="1" value="111" id="3712056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TIB   layer 4 string 56 pos  external  module  3   Id 369424396 " fill="rgb(255,35,0)" points="951.668,1287.96 970.592,1287.96 970.592,1282.47 951.668,1282.47 " />
<svg:polygon detid="436273414" count="1" value="114" id="3801001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  1   Id 436273414 " fill="rgb(255,29,0)" points="394.349,1979.92 373.934,1979.92 373.934,1987.49 " />
<svg:polygon detid="436273670" count="1" value="114" id="3801002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  1   Id 436273670 " fill="rgb(255,29,0)" points="394.349,1972.35 373.934,1972.35 373.934,1979.92 " />
<svg:polygon detid="436273926" count="1" value="114" id="3801003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  1   Id 436273926 " fill="rgb(255,29,0)" points="394.349,1964.78 373.934,1964.78 373.934,1972.35 " />
<svg:polygon detid="436274182" count="1" value="114" id="3801004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  1   Id 436274182 " fill="rgb(255,29,0)" points="394.349,1957.21 373.934,1957.21 373.934,1964.78 " />
<svg:polygon detid="436274438" count="1" value="114" id="3801005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  1   Id 436274438 " fill="rgb(255,29,0)" points="394.349,1949.64 373.934,1949.64 373.934,1957.21 " />
<svg:polygon detid="436274694" count="1" value="114" id="3801006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  1   Id 436274694 " fill="rgb(255,29,0)" points="394.349,1942.07 373.934,1942.07 373.934,1949.64 " />
<svg:polygon detid="436274950" count="1" value="114" id="3801007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  1   Id 436274950 " fill="rgb(255,29,0)" points="394.349,1934.5 373.934,1934.5 373.934,1942.07 " />
<svg:polygon detid="436275206" count="1" value="114" id="3801008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  1   Id 436275206 " fill="rgb(255,29,0)" points="394.349,1926.93 373.934,1926.93 373.934,1934.5 " />
<svg:polygon detid="436275462" count="1" value="114" id="3801009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  1   Id 436275462 " fill="rgb(255,29,0)" points="394.349,1919.36 373.934,1919.36 373.934,1926.93 " />
<svg:polygon detid="436275718" count="1" value="114" id="3801010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  1   Id 436275718 " fill="rgb(255,29,0)" points="394.349,1911.79 373.934,1911.79 373.934,1919.36 " />
<svg:polygon detid="436275974" count="1" value="114" id="3801011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  1   Id 436275974 " fill="rgb(255,29,0)" points="394.349,1904.22 373.934,1904.22 373.934,1911.79 " />
<svg:polygon detid="436276230" count="1" value="114" id="3801012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  1   Id 436276230 " fill="rgb(255,29,0)" points="394.349,1896.65 373.934,1896.65 373.934,1904.22 " />
<svg:polygon detid="436276486" count="1" value="114" id="3801013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  1   Id 436276486 " fill="rgb(255,29,0)" points="394.349,1889.08 373.934,1889.08 373.934,1896.65 " />
<svg:polygon detid="436276742" count="1" value="114" id="3801014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  1   Id 436276742 " fill="rgb(255,29,0)" points="394.349,1881.51 373.934,1881.51 373.934,1889.08 " />
<svg:polygon detid="436276998" count="1" value="114" id="3801015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  1   Id 436276998 " fill="rgb(255,29,0)" points="394.349,1873.94 373.934,1873.94 373.934,1881.51 " />
<svg:polygon detid="436277254" count="1" value="114" id="3801016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  1   Id 436277254 " fill="rgb(255,29,0)" points="394.349,1866.37 373.934,1866.37 373.934,1873.94 " />
<svg:polygon detid="436277510" count="1" value="114" id="3801017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  1   Id 436277510 " fill="rgb(255,29,0)" points="394.349,1858.8 373.934,1858.8 373.934,1866.37 " />
<svg:polygon detid="436277766" count="1" value="114" id="3801018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  1   Id 436277766 " fill="rgb(255,29,0)" points="394.349,1851.23 373.934,1851.23 373.934,1858.8 " />
<svg:polygon detid="436278022" count="1" value="114" id="3801019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  1   Id 436278022 " fill="rgb(255,29,0)" points="394.349,1843.66 373.934,1843.66 373.934,1851.23 " />
<svg:polygon detid="436278278" count="1" value="114" id="3801020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  1   Id 436278278 " fill="rgb(255,29,0)" points="394.349,1836.08 373.934,1836.08 373.934,1843.66 " />
<svg:polygon detid="436278534" count="1" value="114" id="3801021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  1   Id 436278534 " fill="rgb(255,29,0)" points="394.349,1828.51 373.934,1828.51 373.934,1836.08 " />
<svg:polygon detid="436278790" count="1" value="114" id="3801022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  1   Id 436278790 " fill="rgb(255,29,0)" points="394.349,1820.94 373.934,1820.94 373.934,1828.51 " />
<svg:polygon detid="436279046" count="1" value="114" id="3801023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  1   Id 436279046 " fill="rgb(255,29,0)" points="394.349,1813.37 373.934,1813.37 373.934,1820.94 " />
<svg:polygon detid="436279302" count="1" value="114" id="3801024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  1   Id 436279302 " fill="rgb(255,29,0)" points="394.349,1805.8 373.934,1805.8 373.934,1813.37 " />
<svg:polygon detid="436279558" count="1" value="114" id="3801025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  1   Id 436279558 " fill="rgb(255,29,0)" points="394.349,1798.23 373.934,1798.23 373.934,1805.8 " />
<svg:polygon detid="436279814" count="1" value="114" id="3801026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  1   Id 436279814 " fill="rgb(255,29,0)" points="394.349,1790.66 373.934,1790.66 373.934,1798.23 " />
<svg:polygon detid="436280070" count="1" value="114" id="3801027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  1   Id 436280070 " fill="rgb(255,29,0)" points="394.349,1783.09 373.934,1783.09 373.934,1790.66 " />
<svg:polygon detid="436280326" count="1" value="114" id="3801028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  1   Id 436280326 " fill="rgb(255,29,0)" points="394.349,1775.52 373.934,1775.52 373.934,1783.09 " />
<svg:polygon detid="436280582" count="1" value="114" id="3801029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  1   Id 436280582 " fill="rgb(255,29,0)" points="394.349,1767.95 373.934,1767.95 373.934,1775.52 " />
<svg:polygon detid="436280838" count="1" value="114" id="3801030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  1   Id 436280838 " fill="rgb(255,29,0)" points="394.349,1760.38 373.934,1760.38 373.934,1767.95 " />
<svg:polygon detid="436281094" count="1" value="114" id="3801031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  1   Id 436281094 " fill="rgb(255,29,0)" points="394.349,1752.81 373.934,1752.81 373.934,1760.38 " />
<svg:polygon detid="436281350" count="1" value="114" id="3801032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  1   Id 436281350 " fill="rgb(255,29,0)" points="394.349,1745.24 373.934,1745.24 373.934,1752.81 " />
<svg:polygon detid="436281606" count="1" value="114" id="3801033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  1   Id 436281606 " fill="rgb(255,29,0)" points="394.349,1737.67 373.934,1737.67 373.934,1745.24 " />
<svg:polygon detid="436281862" count="1" value="114" id="3801034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  1   Id 436281862 " fill="rgb(255,29,0)" points="394.349,1730.1 373.934,1730.1 373.934,1737.67 " />
<svg:polygon detid="436282118" count="1" value="114" id="3801035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  1   Id 436282118 " fill="rgb(255,29,0)" points="394.349,1722.53 373.934,1722.53 373.934,1730.1 " />
<svg:polygon detid="436282374" count="1" value="114" id="3801036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  1   Id 436282374 " fill="rgb(255,29,0)" points="394.349,1714.96 373.934,1714.96 373.934,1722.53 " />
<svg:polygon detid="436282630" count="1" value="114" id="3801037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  1   Id 436282630 " fill="rgb(255,29,0)" points="394.349,1707.39 373.934,1707.39 373.934,1714.96 " />
<svg:polygon detid="436282886" count="1" value="114" id="3801038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  1   Id 436282886 " fill="rgb(255,29,0)" points="394.349,1699.82 373.934,1699.82 373.934,1707.39 " />
<svg:polygon detid="436283142" count="1" value="114" id="3801039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  1   Id 436283142 " fill="rgb(255,29,0)" points="394.349,1692.25 373.934,1692.25 373.934,1699.82 " />
<svg:polygon detid="436283398" count="1" value="114" id="3801040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  1   Id 436283398 " fill="rgb(255,29,0)" points="394.349,1684.68 373.934,1684.68 373.934,1692.25 " />
<svg:polygon detid="436283654" count="1" value="114" id="3801041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  1   Id 436283654 " fill="rgb(255,29,0)" points="394.349,1677.11 373.934,1677.11 373.934,1684.68 " />
<svg:polygon detid="436283910" count="1" value="114" id="3801042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  1   Id 436283910 " fill="rgb(255,29,0)" points="394.349,1669.54 373.934,1669.54 373.934,1677.11 " />
<svg:polygon detid="436273413" count="1" value="114" id="3801101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  1  stereo Id 436273413 " fill="rgb(255,29,0)" points="373.934,1987.49 394.349,1987.49 394.349,1979.92 " />
<svg:polygon detid="436273669" count="1" value="114" id="3801102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  1  stereo Id 436273669 " fill="rgb(255,29,0)" points="373.934,1979.92 394.349,1979.92 394.349,1972.35 " />
<svg:polygon detid="436273925" count="1" value="114" id="3801103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  1  stereo Id 436273925 " fill="rgb(255,29,0)" points="373.934,1972.35 394.349,1972.35 394.349,1964.78 " />
<svg:polygon detid="436274181" count="1" value="114" id="3801104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  1  stereo Id 436274181 " fill="rgb(255,29,0)" points="373.934,1964.78 394.349,1964.78 394.349,1957.21 " />
<svg:polygon detid="436274437" count="1" value="114" id="3801105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  1  stereo Id 436274437 " fill="rgb(255,29,0)" points="373.934,1957.21 394.349,1957.21 394.349,1949.64 " />
<svg:polygon detid="436274693" count="1" value="114" id="3801106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  1  stereo Id 436274693 " fill="rgb(255,29,0)" points="373.934,1949.64 394.349,1949.64 394.349,1942.07 " />
<svg:polygon detid="436274949" count="1" value="114" id="3801107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  1  stereo Id 436274949 " fill="rgb(255,29,0)" points="373.934,1942.07 394.349,1942.07 394.349,1934.5 " />
<svg:polygon detid="436275205" count="1" value="114" id="3801108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  1  stereo Id 436275205 " fill="rgb(255,29,0)" points="373.934,1934.5 394.349,1934.5 394.349,1926.93 " />
<svg:polygon detid="436275461" count="1" value="114" id="3801109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  1  stereo Id 436275461 " fill="rgb(255,29,0)" points="373.934,1926.93 394.349,1926.93 394.349,1919.36 " />
<svg:polygon detid="436275717" count="1" value="114" id="3801110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  1  stereo Id 436275717 " fill="rgb(255,29,0)" points="373.934,1919.36 394.349,1919.36 394.349,1911.79 " />
<svg:polygon detid="436275973" count="1" value="114" id="3801111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  1  stereo Id 436275973 " fill="rgb(255,29,0)" points="373.934,1911.79 394.349,1911.79 394.349,1904.22 " />
<svg:polygon detid="436276229" count="1" value="114" id="3801112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  1  stereo Id 436276229 " fill="rgb(255,29,0)" points="373.934,1904.22 394.349,1904.22 394.349,1896.65 " />
<svg:polygon detid="436276485" count="1" value="114" id="3801113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  1  stereo Id 436276485 " fill="rgb(255,29,0)" points="373.934,1896.65 394.349,1896.65 394.349,1889.08 " />
<svg:polygon detid="436276741" count="1" value="114" id="3801114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  1  stereo Id 436276741 " fill="rgb(255,29,0)" points="373.934,1889.08 394.349,1889.08 394.349,1881.51 " />
<svg:polygon detid="436276997" count="1" value="114" id="3801115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  1  stereo Id 436276997 " fill="rgb(255,29,0)" points="373.934,1881.51 394.349,1881.51 394.349,1873.94 " />
<svg:polygon detid="436277253" count="1" value="114" id="3801116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  1  stereo Id 436277253 " fill="rgb(255,29,0)" points="373.934,1873.94 394.349,1873.94 394.349,1866.37 " />
<svg:polygon detid="436277509" count="1" value="114" id="3801117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  1  stereo Id 436277509 " fill="rgb(255,29,0)" points="373.934,1866.37 394.349,1866.37 394.349,1858.8 " />
<svg:polygon detid="436277765" count="1" value="114" id="3801118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  1  stereo Id 436277765 " fill="rgb(255,29,0)" points="373.934,1858.8 394.349,1858.8 394.349,1851.23 " />
<svg:polygon detid="436278021" count="1" value="114" id="3801119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  1  stereo Id 436278021 " fill="rgb(255,29,0)" points="373.934,1851.23 394.349,1851.23 394.349,1843.66 " />
<svg:polygon detid="436278277" count="1" value="114" id="3801120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  1  stereo Id 436278277 " fill="rgb(255,29,0)" points="373.934,1843.66 394.349,1843.66 394.349,1836.08 " />
<svg:polygon detid="436278533" count="1" value="114" id="3801121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  1  stereo Id 436278533 " fill="rgb(255,29,0)" points="373.934,1836.08 394.349,1836.08 394.349,1828.51 " />
<svg:polygon detid="436278789" count="1" value="114" id="3801122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  1  stereo Id 436278789 " fill="rgb(255,29,0)" points="373.934,1828.51 394.349,1828.51 394.349,1820.94 " />
<svg:polygon detid="436279045" count="1" value="114" id="3801123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  1  stereo Id 436279045 " fill="rgb(255,29,0)" points="373.934,1820.94 394.349,1820.94 394.349,1813.37 " />
<svg:polygon detid="436279301" count="1" value="114" id="3801124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  1  stereo Id 436279301 " fill="rgb(255,29,0)" points="373.934,1813.37 394.349,1813.37 394.349,1805.8 " />
<svg:polygon detid="436279557" count="1" value="114" id="3801125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  1  stereo Id 436279557 " fill="rgb(255,29,0)" points="373.934,1805.8 394.349,1805.8 394.349,1798.23 " />
<svg:polygon detid="436279813" count="1" value="114" id="3801126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  1  stereo Id 436279813 " fill="rgb(255,29,0)" points="373.934,1798.23 394.349,1798.23 394.349,1790.66 " />
<svg:polygon detid="436280069" count="1" value="114" id="3801127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  1  stereo Id 436280069 " fill="rgb(255,29,0)" points="373.934,1790.66 394.349,1790.66 394.349,1783.09 " />
<svg:polygon detid="436280325" count="1" value="114" id="3801128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  1  stereo Id 436280325 " fill="rgb(255,29,0)" points="373.934,1783.09 394.349,1783.09 394.349,1775.52 " />
<svg:polygon detid="436280581" count="1" value="114" id="3801129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  1  stereo Id 436280581 " fill="rgb(255,29,0)" points="373.934,1775.52 394.349,1775.52 394.349,1767.95 " />
<svg:polygon detid="436280837" count="1" value="114" id="3801130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  1  stereo Id 436280837 " fill="rgb(255,29,0)" points="373.934,1767.95 394.349,1767.95 394.349,1760.38 " />
<svg:polygon detid="436281093" count="1" value="114" id="3801131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  1  stereo Id 436281093 " fill="rgb(255,29,0)" points="373.934,1760.38 394.349,1760.38 394.349,1752.81 " />
<svg:polygon detid="436281349" count="1" value="114" id="3801132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  1  stereo Id 436281349 " fill="rgb(255,29,0)" points="373.934,1752.81 394.349,1752.81 394.349,1745.24 " />
<svg:polygon detid="436281605" count="1" value="114" id="3801133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  1  stereo Id 436281605 " fill="rgb(255,29,0)" points="373.934,1745.24 394.349,1745.24 394.349,1737.67 " />
<svg:polygon detid="436281861" count="1" value="114" id="3801134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  1  stereo Id 436281861 " fill="rgb(255,29,0)" points="373.934,1737.67 394.349,1737.67 394.349,1730.1 " />
<svg:polygon detid="436282117" count="1" value="114" id="3801135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  1  stereo Id 436282117 " fill="rgb(255,29,0)" points="373.934,1730.1 394.349,1730.1 394.349,1722.53 " />
<svg:polygon detid="436282373" count="1" value="114" id="3801136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  1  stereo Id 436282373 " fill="rgb(255,29,0)" points="373.934,1722.53 394.349,1722.53 394.349,1714.96 " />
<svg:polygon detid="436282629" count="1" value="114" id="3801137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  1  stereo Id 436282629 " fill="rgb(255,29,0)" points="373.934,1714.96 394.349,1714.96 394.349,1707.39 " />
<svg:polygon detid="436282885" count="1" value="114" id="3801138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  1  stereo Id 436282885 " fill="rgb(255,29,0)" points="373.934,1707.39 394.349,1707.39 394.349,1699.82 " />
<svg:polygon detid="436283141" count="1" value="114" id="3801139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  1  stereo Id 436283141 " fill="rgb(255,29,0)" points="373.934,1699.82 394.349,1699.82 394.349,1692.25 " />
<svg:polygon detid="436283397" count="1" value="114" id="3801140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  1  stereo Id 436283397 " fill="rgb(255,29,0)" points="373.934,1692.25 394.349,1692.25 394.349,1684.68 " />
<svg:polygon detid="436283653" count="1" value="114" id="3801141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  1  stereo Id 436283653 " fill="rgb(255,29,0)" points="373.934,1684.68 394.349,1684.68 394.349,1677.11 " />
<svg:polygon detid="436283909" count="1" value="114" id="3801142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  1  stereo Id 436283909 " fill="rgb(255,29,0)" points="373.934,1677.11 394.349,1677.11 394.349,1669.54 " />
<svg:polygon detid="436273418" count="1" value="114" id="3802001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  2   Id 436273418 " fill="rgb(255,29,0)" points="417.316,1979.92 396.901,1979.92 396.901,1987.49 " />
<svg:polygon detid="436273674" count="1" value="114" id="3802002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  2   Id 436273674 " fill="rgb(255,29,0)" points="417.316,1972.35 396.901,1972.35 396.901,1979.92 " />
<svg:polygon detid="436273930" count="1" value="114" id="3802003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  2   Id 436273930 " fill="rgb(255,29,0)" points="417.316,1964.78 396.901,1964.78 396.901,1972.35 " />
<svg:polygon detid="436274186" count="1" value="114" id="3802004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  2   Id 436274186 " fill="rgb(255,29,0)" points="417.316,1957.21 396.901,1957.21 396.901,1964.78 " />
<svg:polygon detid="436274442" count="1" value="114" id="3802005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  2   Id 436274442 " fill="rgb(255,29,0)" points="417.316,1949.64 396.901,1949.64 396.901,1957.21 " />
<svg:polygon detid="436274698" count="1" value="114" id="3802006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  2   Id 436274698 " fill="rgb(255,29,0)" points="417.316,1942.07 396.901,1942.07 396.901,1949.64 " />
<svg:polygon detid="436274954" count="1" value="114" id="3802007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  2   Id 436274954 " fill="rgb(255,29,0)" points="417.316,1934.5 396.901,1934.5 396.901,1942.07 " />
<svg:polygon detid="436275210" count="1" value="114" id="3802008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  2   Id 436275210 " fill="rgb(255,29,0)" points="417.316,1926.93 396.901,1926.93 396.901,1934.5 " />
<svg:polygon detid="436275466" count="1" value="114" id="3802009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  2   Id 436275466 " fill="rgb(255,29,0)" points="417.316,1919.36 396.901,1919.36 396.901,1926.93 " />
<svg:polygon detid="436275722" count="1" value="114" id="3802010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  2   Id 436275722 " fill="rgb(255,29,0)" points="417.316,1911.79 396.901,1911.79 396.901,1919.36 " />
<svg:polygon detid="436275978" count="1" value="114" id="3802011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  2   Id 436275978 " fill="rgb(255,29,0)" points="417.316,1904.22 396.901,1904.22 396.901,1911.79 " />
<svg:polygon detid="436276234" count="1" value="114" id="3802012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  2   Id 436276234 " fill="rgb(255,29,0)" points="417.316,1896.65 396.901,1896.65 396.901,1904.22 " />
<svg:polygon detid="436276490" count="1" value="114" id="3802013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  2   Id 436276490 " fill="rgb(255,29,0)" points="417.316,1889.08 396.901,1889.08 396.901,1896.65 " />
<svg:polygon detid="436276746" count="1" value="114" id="3802014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  2   Id 436276746 " fill="rgb(255,29,0)" points="417.316,1881.51 396.901,1881.51 396.901,1889.08 " />
<svg:polygon detid="436277002" count="1" value="114" id="3802015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  2   Id 436277002 " fill="rgb(255,29,0)" points="417.316,1873.94 396.901,1873.94 396.901,1881.51 " />
<svg:polygon detid="436277258" count="1" value="114" id="3802016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  2   Id 436277258 " fill="rgb(255,29,0)" points="417.316,1866.37 396.901,1866.37 396.901,1873.94 " />
<svg:polygon detid="436277514" count="1" value="114" id="3802017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  2   Id 436277514 " fill="rgb(255,29,0)" points="417.316,1858.8 396.901,1858.8 396.901,1866.37 " />
<svg:polygon detid="436277770" count="1" value="114" id="3802018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  2   Id 436277770 " fill="rgb(255,29,0)" points="417.316,1851.23 396.901,1851.23 396.901,1858.8 " />
<svg:polygon detid="436278026" count="1" value="114" id="3802019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  2   Id 436278026 " fill="rgb(255,29,0)" points="417.316,1843.66 396.901,1843.66 396.901,1851.23 " />
<svg:polygon detid="436278282" count="1" value="114" id="3802020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  2   Id 436278282 " fill="rgb(255,29,0)" points="417.316,1836.08 396.901,1836.08 396.901,1843.66 " />
<svg:polygon detid="436278538" count="1" value="114" id="3802021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  2   Id 436278538 " fill="rgb(255,29,0)" points="417.316,1828.51 396.901,1828.51 396.901,1836.08 " />
<svg:polygon detid="436278794" count="1" value="114" id="3802022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  2   Id 436278794 " fill="rgb(255,29,0)" points="417.316,1820.94 396.901,1820.94 396.901,1828.51 " />
<svg:polygon detid="436279050" count="1" value="114" id="3802023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  2   Id 436279050 " fill="rgb(255,29,0)" points="417.316,1813.37 396.901,1813.37 396.901,1820.94 " />
<svg:polygon detid="436279306" count="1" value="114" id="3802024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  2   Id 436279306 " fill="rgb(255,29,0)" points="417.316,1805.8 396.901,1805.8 396.901,1813.37 " />
<svg:polygon detid="436279562" count="1" value="114" id="3802025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  2   Id 436279562 " fill="rgb(255,29,0)" points="417.316,1798.23 396.901,1798.23 396.901,1805.8 " />
<svg:polygon detid="436279818" count="1" value="114" id="3802026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  2   Id 436279818 " fill="rgb(255,29,0)" points="417.316,1790.66 396.901,1790.66 396.901,1798.23 " />
<svg:polygon detid="436280074" count="1" value="114" id="3802027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  2   Id 436280074 " fill="rgb(255,29,0)" points="417.316,1783.09 396.901,1783.09 396.901,1790.66 " />
<svg:polygon detid="436280330" count="1" value="114" id="3802028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  2   Id 436280330 " fill="rgb(255,29,0)" points="417.316,1775.52 396.901,1775.52 396.901,1783.09 " />
<svg:polygon detid="436280586" count="1" value="114" id="3802029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  2   Id 436280586 " fill="rgb(255,29,0)" points="417.316,1767.95 396.901,1767.95 396.901,1775.52 " />
<svg:polygon detid="436280842" count="1" value="114" id="3802030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  2   Id 436280842 " fill="rgb(255,29,0)" points="417.316,1760.38 396.901,1760.38 396.901,1767.95 " />
<svg:polygon detid="436281098" count="1" value="114" id="3802031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  2   Id 436281098 " fill="rgb(255,29,0)" points="417.316,1752.81 396.901,1752.81 396.901,1760.38 " />
<svg:polygon detid="436281354" count="1" value="114" id="3802032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  2   Id 436281354 " fill="rgb(255,29,0)" points="417.316,1745.24 396.901,1745.24 396.901,1752.81 " />
<svg:polygon detid="436281610" count="1" value="114" id="3802033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  2   Id 436281610 " fill="rgb(255,29,0)" points="417.316,1737.67 396.901,1737.67 396.901,1745.24 " />
<svg:polygon detid="436281866" count="1" value="114" id="3802034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  2   Id 436281866 " fill="rgb(255,29,0)" points="417.316,1730.1 396.901,1730.1 396.901,1737.67 " />
<svg:polygon detid="436282122" count="1" value="114" id="3802035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  2   Id 436282122 " fill="rgb(255,29,0)" points="417.316,1722.53 396.901,1722.53 396.901,1730.1 " />
<svg:polygon detid="436282378" count="1" value="114" id="3802036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  2   Id 436282378 " fill="rgb(255,29,0)" points="417.316,1714.96 396.901,1714.96 396.901,1722.53 " />
<svg:polygon detid="436282634" count="1" value="114" id="3802037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  2   Id 436282634 " fill="rgb(255,29,0)" points="417.316,1707.39 396.901,1707.39 396.901,1714.96 " />
<svg:polygon detid="436282890" count="1" value="114" id="3802038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  2   Id 436282890 " fill="rgb(255,29,0)" points="417.316,1699.82 396.901,1699.82 396.901,1707.39 " />
<svg:polygon detid="436283146" count="1" value="114" id="3802039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  2   Id 436283146 " fill="rgb(255,29,0)" points="417.316,1692.25 396.901,1692.25 396.901,1699.82 " />
<svg:polygon detid="436283402" count="1" value="114" id="3802040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  2   Id 436283402 " fill="rgb(255,29,0)" points="417.316,1684.68 396.901,1684.68 396.901,1692.25 " />
<svg:polygon detid="436283658" count="1" value="114" id="3802041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  2   Id 436283658 " fill="rgb(255,29,0)" points="417.316,1677.11 396.901,1677.11 396.901,1684.68 " />
<svg:polygon detid="436283914" count="1" value="114" id="3802042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  2   Id 436283914 " fill="rgb(255,29,0)" points="417.316,1669.54 396.901,1669.54 396.901,1677.11 " />
<svg:polygon detid="436273417" count="1" value="114" id="3802101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  2  stereo Id 436273417 " fill="rgb(255,29,0)" points="396.901,1987.49 417.316,1987.49 417.316,1979.92 " />
<svg:polygon detid="436273673" count="1" value="114" id="3802102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  2  stereo Id 436273673 " fill="rgb(255,29,0)" points="396.901,1979.92 417.316,1979.92 417.316,1972.35 " />
<svg:polygon detid="436273929" count="1" value="114" id="3802103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  2  stereo Id 436273929 " fill="rgb(255,29,0)" points="396.901,1972.35 417.316,1972.35 417.316,1964.78 " />
<svg:polygon detid="436274185" count="1" value="114" id="3802104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  2  stereo Id 436274185 " fill="rgb(255,29,0)" points="396.901,1964.78 417.316,1964.78 417.316,1957.21 " />
<svg:polygon detid="436274441" count="1" value="114" id="3802105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  2  stereo Id 436274441 " fill="rgb(255,29,0)" points="396.901,1957.21 417.316,1957.21 417.316,1949.64 " />
<svg:polygon detid="436274697" count="1" value="114" id="3802106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  2  stereo Id 436274697 " fill="rgb(255,29,0)" points="396.901,1949.64 417.316,1949.64 417.316,1942.07 " />
<svg:polygon detid="436274953" count="1" value="114" id="3802107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  2  stereo Id 436274953 " fill="rgb(255,29,0)" points="396.901,1942.07 417.316,1942.07 417.316,1934.5 " />
<svg:polygon detid="436275209" count="1" value="114" id="3802108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  2  stereo Id 436275209 " fill="rgb(255,29,0)" points="396.901,1934.5 417.316,1934.5 417.316,1926.93 " />
<svg:polygon detid="436275465" count="1" value="114" id="3802109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  2  stereo Id 436275465 " fill="rgb(255,29,0)" points="396.901,1926.93 417.316,1926.93 417.316,1919.36 " />
<svg:polygon detid="436275721" count="1" value="114" id="3802110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  2  stereo Id 436275721 " fill="rgb(255,29,0)" points="396.901,1919.36 417.316,1919.36 417.316,1911.79 " />
<svg:polygon detid="436275977" count="1" value="114" id="3802111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  2  stereo Id 436275977 " fill="rgb(255,29,0)" points="396.901,1911.79 417.316,1911.79 417.316,1904.22 " />
<svg:polygon detid="436276233" count="1" value="114" id="3802112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  2  stereo Id 436276233 " fill="rgb(255,29,0)" points="396.901,1904.22 417.316,1904.22 417.316,1896.65 " />
<svg:polygon detid="436276489" count="1" value="114" id="3802113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  2  stereo Id 436276489 " fill="rgb(255,29,0)" points="396.901,1896.65 417.316,1896.65 417.316,1889.08 " />
<svg:polygon detid="436276745" count="1" value="114" id="3802114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  2  stereo Id 436276745 " fill="rgb(255,29,0)" points="396.901,1889.08 417.316,1889.08 417.316,1881.51 " />
<svg:polygon detid="436277001" count="1" value="114" id="3802115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  2  stereo Id 436277001 " fill="rgb(255,29,0)" points="396.901,1881.51 417.316,1881.51 417.316,1873.94 " />
<svg:polygon detid="436277257" count="1" value="114" id="3802116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  2  stereo Id 436277257 " fill="rgb(255,29,0)" points="396.901,1873.94 417.316,1873.94 417.316,1866.37 " />
<svg:polygon detid="436277513" count="1" value="114" id="3802117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  2  stereo Id 436277513 " fill="rgb(255,29,0)" points="396.901,1866.37 417.316,1866.37 417.316,1858.8 " />
<svg:polygon detid="436277769" count="1" value="114" id="3802118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  2  stereo Id 436277769 " fill="rgb(255,29,0)" points="396.901,1858.8 417.316,1858.8 417.316,1851.23 " />
<svg:polygon detid="436278025" count="1" value="114" id="3802119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  2  stereo Id 436278025 " fill="rgb(255,29,0)" points="396.901,1851.23 417.316,1851.23 417.316,1843.66 " />
<svg:polygon detid="436278281" count="1" value="114" id="3802120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  2  stereo Id 436278281 " fill="rgb(255,29,0)" points="396.901,1843.66 417.316,1843.66 417.316,1836.08 " />
<svg:polygon detid="436278537" count="1" value="114" id="3802121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  2  stereo Id 436278537 " fill="rgb(255,29,0)" points="396.901,1836.08 417.316,1836.08 417.316,1828.51 " />
<svg:polygon detid="436278793" count="1" value="114" id="3802122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  2  stereo Id 436278793 " fill="rgb(255,29,0)" points="396.901,1828.51 417.316,1828.51 417.316,1820.94 " />
<svg:polygon detid="436279049" count="1" value="114" id="3802123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  2  stereo Id 436279049 " fill="rgb(255,29,0)" points="396.901,1820.94 417.316,1820.94 417.316,1813.37 " />
<svg:polygon detid="436279305" count="1" value="114" id="3802124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  2  stereo Id 436279305 " fill="rgb(255,29,0)" points="396.901,1813.37 417.316,1813.37 417.316,1805.8 " />
<svg:polygon detid="436279561" count="1" value="114" id="3802125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  2  stereo Id 436279561 " fill="rgb(255,29,0)" points="396.901,1805.8 417.316,1805.8 417.316,1798.23 " />
<svg:polygon detid="436279817" count="1" value="114" id="3802126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  2  stereo Id 436279817 " fill="rgb(255,29,0)" points="396.901,1798.23 417.316,1798.23 417.316,1790.66 " />
<svg:polygon detid="436280073" count="1" value="114" id="3802127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  2  stereo Id 436280073 " fill="rgb(255,29,0)" points="396.901,1790.66 417.316,1790.66 417.316,1783.09 " />
<svg:polygon detid="436280329" count="1" value="114" id="3802128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  2  stereo Id 436280329 " fill="rgb(255,29,0)" points="396.901,1783.09 417.316,1783.09 417.316,1775.52 " />
<svg:polygon detid="436280585" count="1" value="114" id="3802129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  2  stereo Id 436280585 " fill="rgb(255,29,0)" points="396.901,1775.52 417.316,1775.52 417.316,1767.95 " />
<svg:polygon detid="436280841" count="1" value="114" id="3802130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  2  stereo Id 436280841 " fill="rgb(255,29,0)" points="396.901,1767.95 417.316,1767.95 417.316,1760.38 " />
<svg:polygon detid="436281097" count="1" value="114" id="3802131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  2  stereo Id 436281097 " fill="rgb(255,29,0)" points="396.901,1760.38 417.316,1760.38 417.316,1752.81 " />
<svg:polygon detid="436281353" count="1" value="114" id="3802132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  2  stereo Id 436281353 " fill="rgb(255,29,0)" points="396.901,1752.81 417.316,1752.81 417.316,1745.24 " />
<svg:polygon detid="436281609" count="1" value="114" id="3802133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  2  stereo Id 436281609 " fill="rgb(255,29,0)" points="396.901,1745.24 417.316,1745.24 417.316,1737.67 " />
<svg:polygon detid="436281865" count="1" value="114" id="3802134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  2  stereo Id 436281865 " fill="rgb(255,29,0)" points="396.901,1737.67 417.316,1737.67 417.316,1730.1 " />
<svg:polygon detid="436282121" count="1" value="114" id="3802135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  2  stereo Id 436282121 " fill="rgb(255,29,0)" points="396.901,1730.1 417.316,1730.1 417.316,1722.53 " />
<svg:polygon detid="436282377" count="1" value="114" id="3802136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  2  stereo Id 436282377 " fill="rgb(255,29,0)" points="396.901,1722.53 417.316,1722.53 417.316,1714.96 " />
<svg:polygon detid="436282633" count="1" value="114" id="3802137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  2  stereo Id 436282633 " fill="rgb(255,29,0)" points="396.901,1714.96 417.316,1714.96 417.316,1707.39 " />
<svg:polygon detid="436282889" count="1" value="114" id="3802138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  2  stereo Id 436282889 " fill="rgb(255,29,0)" points="396.901,1707.39 417.316,1707.39 417.316,1699.82 " />
<svg:polygon detid="436283145" count="1" value="114" id="3802139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  2  stereo Id 436283145 " fill="rgb(255,29,0)" points="396.901,1699.82 417.316,1699.82 417.316,1692.25 " />
<svg:polygon detid="436283401" count="1" value="114" id="3802140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  2  stereo Id 436283401 " fill="rgb(255,29,0)" points="396.901,1692.25 417.316,1692.25 417.316,1684.68 " />
<svg:polygon detid="436283657" count="1" value="114" id="3802141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  2  stereo Id 436283657 " fill="rgb(255,29,0)" points="396.901,1684.68 417.316,1684.68 417.316,1677.11 " />
<svg:polygon detid="436283913" count="1" value="114" id="3802142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  2  stereo Id 436283913 " fill="rgb(255,29,0)" points="396.901,1677.11 417.316,1677.11 417.316,1669.54 " />
<svg:polygon detid="436273422" count="1" value="114" id="3803001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  3   Id 436273422 " fill="rgb(255,29,0)" points="440.282,1979.92 419.867,1979.92 419.867,1987.49 " />
<svg:polygon detid="436273678" count="1" value="114" id="3803002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  3   Id 436273678 " fill="rgb(255,29,0)" points="440.282,1972.35 419.867,1972.35 419.867,1979.92 " />
<svg:polygon detid="436273934" count="1" value="114" id="3803003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  3   Id 436273934 " fill="rgb(255,29,0)" points="440.282,1964.78 419.867,1964.78 419.867,1972.35 " />
<svg:polygon detid="436274190" count="1" value="114" id="3803004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  3   Id 436274190 " fill="rgb(255,29,0)" points="440.282,1957.21 419.867,1957.21 419.867,1964.78 " />
<svg:polygon detid="436274446" count="1" value="114" id="3803005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  3   Id 436274446 " fill="rgb(255,29,0)" points="440.282,1949.64 419.867,1949.64 419.867,1957.21 " />
<svg:polygon detid="436274702" count="1" value="114" id="3803006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  3   Id 436274702 " fill="rgb(255,29,0)" points="440.282,1942.07 419.867,1942.07 419.867,1949.64 " />
<svg:polygon detid="436274958" count="1" value="114" id="3803007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  3   Id 436274958 " fill="rgb(255,29,0)" points="440.282,1934.5 419.867,1934.5 419.867,1942.07 " />
<svg:polygon detid="436275214" count="1" value="114" id="3803008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  3   Id 436275214 " fill="rgb(255,29,0)" points="440.282,1926.93 419.867,1926.93 419.867,1934.5 " />
<svg:polygon detid="436275470" count="1" value="114" id="3803009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  3   Id 436275470 " fill="rgb(255,29,0)" points="440.282,1919.36 419.867,1919.36 419.867,1926.93 " />
<svg:polygon detid="436275726" count="1" value="114" id="3803010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  3   Id 436275726 " fill="rgb(255,29,0)" points="440.282,1911.79 419.867,1911.79 419.867,1919.36 " />
<svg:polygon detid="436275982" count="1" value="114" id="3803011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  3   Id 436275982 " fill="rgb(255,29,0)" points="440.282,1904.22 419.867,1904.22 419.867,1911.79 " />
<svg:polygon detid="436276238" count="1" value="114" id="3803012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  3   Id 436276238 " fill="rgb(255,29,0)" points="440.282,1896.65 419.867,1896.65 419.867,1904.22 " />
<svg:polygon detid="436276494" count="1" value="114" id="3803013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  3   Id 436276494 " fill="rgb(255,29,0)" points="440.282,1889.08 419.867,1889.08 419.867,1896.65 " />
<svg:polygon detid="436276750" count="1" value="114" id="3803014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  3   Id 436276750 " fill="rgb(255,29,0)" points="440.282,1881.51 419.867,1881.51 419.867,1889.08 " />
<svg:polygon detid="436277006" count="1" value="114" id="3803015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  3   Id 436277006 " fill="rgb(255,29,0)" points="440.282,1873.94 419.867,1873.94 419.867,1881.51 " />
<svg:polygon detid="436277262" count="1" value="114" id="3803016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  3   Id 436277262 " fill="rgb(255,29,0)" points="440.282,1866.37 419.867,1866.37 419.867,1873.94 " />
<svg:polygon detid="436277518" count="1" value="114" id="3803017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  3   Id 436277518 " fill="rgb(255,29,0)" points="440.282,1858.8 419.867,1858.8 419.867,1866.37 " />
<svg:polygon detid="436277774" count="1" value="114" id="3803018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  3   Id 436277774 " fill="rgb(255,29,0)" points="440.282,1851.23 419.867,1851.23 419.867,1858.8 " />
<svg:polygon detid="436278030" count="1" value="114" id="3803019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  3   Id 436278030 " fill="rgb(255,29,0)" points="440.282,1843.66 419.867,1843.66 419.867,1851.23 " />
<svg:polygon detid="436278286" count="1" value="114" id="3803020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  3   Id 436278286 " fill="rgb(255,29,0)" points="440.282,1836.08 419.867,1836.08 419.867,1843.66 " />
<svg:polygon detid="436278542" count="1" value="114" id="3803021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  3   Id 436278542 " fill="rgb(255,29,0)" points="440.282,1828.51 419.867,1828.51 419.867,1836.08 " />
<svg:polygon detid="436278798" count="1" value="114" id="3803022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  3   Id 436278798 " fill="rgb(255,29,0)" points="440.282,1820.94 419.867,1820.94 419.867,1828.51 " />
<svg:polygon detid="436279054" count="1" value="114" id="3803023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  3   Id 436279054 " fill="rgb(255,29,0)" points="440.282,1813.37 419.867,1813.37 419.867,1820.94 " />
<svg:polygon detid="436279310" count="1" value="114" id="3803024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  3   Id 436279310 " fill="rgb(255,29,0)" points="440.282,1805.8 419.867,1805.8 419.867,1813.37 " />
<svg:polygon detid="436279566" count="1" value="114" id="3803025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  3   Id 436279566 " fill="rgb(255,29,0)" points="440.282,1798.23 419.867,1798.23 419.867,1805.8 " />
<svg:polygon detid="436279822" count="1" value="114" id="3803026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  3   Id 436279822 " fill="rgb(255,29,0)" points="440.282,1790.66 419.867,1790.66 419.867,1798.23 " />
<svg:polygon detid="436280078" count="1" value="114" id="3803027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  3   Id 436280078 " fill="rgb(255,29,0)" points="440.282,1783.09 419.867,1783.09 419.867,1790.66 " />
<svg:polygon detid="436280334" count="1" value="114" id="3803028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  3   Id 436280334 " fill="rgb(255,29,0)" points="440.282,1775.52 419.867,1775.52 419.867,1783.09 " />
<svg:polygon detid="436280590" count="1" value="114" id="3803029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  3   Id 436280590 " fill="rgb(255,29,0)" points="440.282,1767.95 419.867,1767.95 419.867,1775.52 " />
<svg:polygon detid="436280846" count="1" value="114" id="3803030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  3   Id 436280846 " fill="rgb(255,29,0)" points="440.282,1760.38 419.867,1760.38 419.867,1767.95 " />
<svg:polygon detid="436281102" count="1" value="114" id="3803031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  3   Id 436281102 " fill="rgb(255,29,0)" points="440.282,1752.81 419.867,1752.81 419.867,1760.38 " />
<svg:polygon detid="436281358" count="1" value="114" id="3803032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  3   Id 436281358 " fill="rgb(255,29,0)" points="440.282,1745.24 419.867,1745.24 419.867,1752.81 " />
<svg:polygon detid="436281614" count="1" value="114" id="3803033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  3   Id 436281614 " fill="rgb(255,29,0)" points="440.282,1737.67 419.867,1737.67 419.867,1745.24 " />
<svg:polygon detid="436281870" count="1" value="114" id="3803034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  3   Id 436281870 " fill="rgb(255,29,0)" points="440.282,1730.1 419.867,1730.1 419.867,1737.67 " />
<svg:polygon detid="436282126" count="1" value="114" id="3803035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  3   Id 436282126 " fill="rgb(255,29,0)" points="440.282,1722.53 419.867,1722.53 419.867,1730.1 " />
<svg:polygon detid="436282382" count="1" value="114" id="3803036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  3   Id 436282382 " fill="rgb(255,29,0)" points="440.282,1714.96 419.867,1714.96 419.867,1722.53 " />
<svg:polygon detid="436282638" count="1" value="114" id="3803037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  3   Id 436282638 " fill="rgb(255,29,0)" points="440.282,1707.39 419.867,1707.39 419.867,1714.96 " />
<svg:polygon detid="436282894" count="1" value="114" id="3803038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  3   Id 436282894 " fill="rgb(255,29,0)" points="440.282,1699.82 419.867,1699.82 419.867,1707.39 " />
<svg:polygon detid="436283150" count="1" value="114" id="3803039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  3   Id 436283150 " fill="rgb(255,29,0)" points="440.282,1692.25 419.867,1692.25 419.867,1699.82 " />
<svg:polygon detid="436283406" count="1" value="114" id="3803040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  3   Id 436283406 " fill="rgb(255,29,0)" points="440.282,1684.68 419.867,1684.68 419.867,1692.25 " />
<svg:polygon detid="436283662" count="1" value="114" id="3803041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  3   Id 436283662 " fill="rgb(255,29,0)" points="440.282,1677.11 419.867,1677.11 419.867,1684.68 " />
<svg:polygon detid="436283918" count="1" value="114" id="3803042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  3   Id 436283918 " fill="rgb(255,29,0)" points="440.282,1669.54 419.867,1669.54 419.867,1677.11 " />
<svg:polygon detid="436273421" count="1" value="114" id="3803101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  3  stereo Id 436273421 " fill="rgb(255,29,0)" points="419.867,1987.49 440.282,1987.49 440.282,1979.92 " />
<svg:polygon detid="436273677" count="1" value="114" id="3803102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  3  stereo Id 436273677 " fill="rgb(255,29,0)" points="419.867,1979.92 440.282,1979.92 440.282,1972.35 " />
<svg:polygon detid="436273933" count="1" value="114" id="3803103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  3  stereo Id 436273933 " fill="rgb(255,29,0)" points="419.867,1972.35 440.282,1972.35 440.282,1964.78 " />
<svg:polygon detid="436274189" count="1" value="114" id="3803104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  3  stereo Id 436274189 " fill="rgb(255,29,0)" points="419.867,1964.78 440.282,1964.78 440.282,1957.21 " />
<svg:polygon detid="436274445" count="1" value="114" id="3803105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  3  stereo Id 436274445 " fill="rgb(255,29,0)" points="419.867,1957.21 440.282,1957.21 440.282,1949.64 " />
<svg:polygon detid="436274701" count="1" value="114" id="3803106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  3  stereo Id 436274701 " fill="rgb(255,29,0)" points="419.867,1949.64 440.282,1949.64 440.282,1942.07 " />
<svg:polygon detid="436274957" count="1" value="114" id="3803107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  3  stereo Id 436274957 " fill="rgb(255,29,0)" points="419.867,1942.07 440.282,1942.07 440.282,1934.5 " />
<svg:polygon detid="436275213" count="1" value="114" id="3803108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  3  stereo Id 436275213 " fill="rgb(255,29,0)" points="419.867,1934.5 440.282,1934.5 440.282,1926.93 " />
<svg:polygon detid="436275469" count="1" value="114" id="3803109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  3  stereo Id 436275469 " fill="rgb(255,29,0)" points="419.867,1926.93 440.282,1926.93 440.282,1919.36 " />
<svg:polygon detid="436275725" count="1" value="114" id="3803110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  3  stereo Id 436275725 " fill="rgb(255,29,0)" points="419.867,1919.36 440.282,1919.36 440.282,1911.79 " />
<svg:polygon detid="436275981" count="1" value="114" id="3803111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  3  stereo Id 436275981 " fill="rgb(255,29,0)" points="419.867,1911.79 440.282,1911.79 440.282,1904.22 " />
<svg:polygon detid="436276237" count="1" value="114" id="3803112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  3  stereo Id 436276237 " fill="rgb(255,29,0)" points="419.867,1904.22 440.282,1904.22 440.282,1896.65 " />
<svg:polygon detid="436276493" count="1" value="114" id="3803113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  3  stereo Id 436276493 " fill="rgb(255,29,0)" points="419.867,1896.65 440.282,1896.65 440.282,1889.08 " />
<svg:polygon detid="436276749" count="1" value="114" id="3803114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  3  stereo Id 436276749 " fill="rgb(255,29,0)" points="419.867,1889.08 440.282,1889.08 440.282,1881.51 " />
<svg:polygon detid="436277005" count="1" value="114" id="3803115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  3  stereo Id 436277005 " fill="rgb(255,29,0)" points="419.867,1881.51 440.282,1881.51 440.282,1873.94 " />
<svg:polygon detid="436277261" count="1" value="114" id="3803116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  3  stereo Id 436277261 " fill="rgb(255,29,0)" points="419.867,1873.94 440.282,1873.94 440.282,1866.37 " />
<svg:polygon detid="436277517" count="1" value="114" id="3803117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  3  stereo Id 436277517 " fill="rgb(255,29,0)" points="419.867,1866.37 440.282,1866.37 440.282,1858.8 " />
<svg:polygon detid="436277773" count="1" value="114" id="3803118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  3  stereo Id 436277773 " fill="rgb(255,29,0)" points="419.867,1858.8 440.282,1858.8 440.282,1851.23 " />
<svg:polygon detid="436278029" count="1" value="114" id="3803119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  3  stereo Id 436278029 " fill="rgb(255,29,0)" points="419.867,1851.23 440.282,1851.23 440.282,1843.66 " />
<svg:polygon detid="436278285" count="1" value="114" id="3803120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  3  stereo Id 436278285 " fill="rgb(255,29,0)" points="419.867,1843.66 440.282,1843.66 440.282,1836.08 " />
<svg:polygon detid="436278541" count="1" value="114" id="3803121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  3  stereo Id 436278541 " fill="rgb(255,29,0)" points="419.867,1836.08 440.282,1836.08 440.282,1828.51 " />
<svg:polygon detid="436278797" count="1" value="114" id="3803122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  3  stereo Id 436278797 " fill="rgb(255,29,0)" points="419.867,1828.51 440.282,1828.51 440.282,1820.94 " />
<svg:polygon detid="436279053" count="1" value="114" id="3803123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  3  stereo Id 436279053 " fill="rgb(255,29,0)" points="419.867,1820.94 440.282,1820.94 440.282,1813.37 " />
<svg:polygon detid="436279309" count="1" value="114" id="3803124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  3  stereo Id 436279309 " fill="rgb(255,29,0)" points="419.867,1813.37 440.282,1813.37 440.282,1805.8 " />
<svg:polygon detid="436279565" count="1" value="114" id="3803125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  3  stereo Id 436279565 " fill="rgb(255,29,0)" points="419.867,1805.8 440.282,1805.8 440.282,1798.23 " />
<svg:polygon detid="436279821" count="1" value="114" id="3803126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  3  stereo Id 436279821 " fill="rgb(255,29,0)" points="419.867,1798.23 440.282,1798.23 440.282,1790.66 " />
<svg:polygon detid="436280077" count="1" value="114" id="3803127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  3  stereo Id 436280077 " fill="rgb(255,29,0)" points="419.867,1790.66 440.282,1790.66 440.282,1783.09 " />
<svg:polygon detid="436280333" count="1" value="114" id="3803128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  3  stereo Id 436280333 " fill="rgb(255,29,0)" points="419.867,1783.09 440.282,1783.09 440.282,1775.52 " />
<svg:polygon detid="436280589" count="1" value="114" id="3803129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  3  stereo Id 436280589 " fill="rgb(255,29,0)" points="419.867,1775.52 440.282,1775.52 440.282,1767.95 " />
<svg:polygon detid="436280845" count="1" value="114" id="3803130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  3  stereo Id 436280845 " fill="rgb(255,29,0)" points="419.867,1767.95 440.282,1767.95 440.282,1760.38 " />
<svg:polygon detid="436281101" count="1" value="114" id="3803131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  3  stereo Id 436281101 " fill="rgb(255,29,0)" points="419.867,1760.38 440.282,1760.38 440.282,1752.81 " />
<svg:polygon detid="436281357" count="1" value="114" id="3803132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  3  stereo Id 436281357 " fill="rgb(255,29,0)" points="419.867,1752.81 440.282,1752.81 440.282,1745.24 " />
<svg:polygon detid="436281613" count="1" value="114" id="3803133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  3  stereo Id 436281613 " fill="rgb(255,29,0)" points="419.867,1745.24 440.282,1745.24 440.282,1737.67 " />
<svg:polygon detid="436281869" count="1" value="114" id="3803134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  3  stereo Id 436281869 " fill="rgb(255,29,0)" points="419.867,1737.67 440.282,1737.67 440.282,1730.1 " />
<svg:polygon detid="436282125" count="1" value="114" id="3803135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  3  stereo Id 436282125 " fill="rgb(255,29,0)" points="419.867,1730.1 440.282,1730.1 440.282,1722.53 " />
<svg:polygon detid="436282381" count="1" value="114" id="3803136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  3  stereo Id 436282381 " fill="rgb(255,29,0)" points="419.867,1722.53 440.282,1722.53 440.282,1714.96 " />
<svg:polygon detid="436282637" count="1" value="114" id="3803137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  3  stereo Id 436282637 " fill="rgb(255,29,0)" points="419.867,1714.96 440.282,1714.96 440.282,1707.39 " />
<svg:polygon detid="436282893" count="1" value="114" id="3803138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  3  stereo Id 436282893 " fill="rgb(255,29,0)" points="419.867,1707.39 440.282,1707.39 440.282,1699.82 " />
<svg:polygon detid="436283149" count="1" value="114" id="3803139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  3  stereo Id 436283149 " fill="rgb(255,29,0)" points="419.867,1699.82 440.282,1699.82 440.282,1692.25 " />
<svg:polygon detid="436283405" count="1" value="114" id="3803140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  3  stereo Id 436283405 " fill="rgb(255,29,0)" points="419.867,1692.25 440.282,1692.25 440.282,1684.68 " />
<svg:polygon detid="436283661" count="1" value="114" id="3803141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  3  stereo Id 436283661 " fill="rgb(255,29,0)" points="419.867,1684.68 440.282,1684.68 440.282,1677.11 " />
<svg:polygon detid="436283917" count="1" value="114" id="3803142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  3  stereo Id 436283917 " fill="rgb(255,29,0)" points="419.867,1677.11 440.282,1677.11 440.282,1669.54 " />
<svg:polygon detid="436273426" count="1" value="114" id="3804001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  4   Id 436273426 " fill="rgb(255,29,0)" points="463.249,1979.92 442.834,1979.92 442.834,1987.49 " />
<svg:polygon detid="436273682" count="1" value="114" id="3804002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  4   Id 436273682 " fill="rgb(255,29,0)" points="463.249,1972.35 442.834,1972.35 442.834,1979.92 " />
<svg:polygon detid="436273938" count="1" value="114" id="3804003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  4   Id 436273938 " fill="rgb(255,29,0)" points="463.249,1964.78 442.834,1964.78 442.834,1972.35 " />
<svg:polygon detid="436274194" count="1" value="114" id="3804004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  4   Id 436274194 " fill="rgb(255,29,0)" points="463.249,1957.21 442.834,1957.21 442.834,1964.78 " />
<svg:polygon detid="436274450" count="1" value="114" id="3804005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  4   Id 436274450 " fill="rgb(255,29,0)" points="463.249,1949.64 442.834,1949.64 442.834,1957.21 " />
<svg:polygon detid="436274706" count="1" value="114" id="3804006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  4   Id 436274706 " fill="rgb(255,29,0)" points="463.249,1942.07 442.834,1942.07 442.834,1949.64 " />
<svg:polygon detid="436274962" count="1" value="114" id="3804007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  4   Id 436274962 " fill="rgb(255,29,0)" points="463.249,1934.5 442.834,1934.5 442.834,1942.07 " />
<svg:polygon detid="436275218" count="1" value="114" id="3804008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  4   Id 436275218 " fill="rgb(255,29,0)" points="463.249,1926.93 442.834,1926.93 442.834,1934.5 " />
<svg:polygon detid="436275474" count="1" value="114" id="3804009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  4   Id 436275474 " fill="rgb(255,29,0)" points="463.249,1919.36 442.834,1919.36 442.834,1926.93 " />
<svg:polygon detid="436275730" count="1" value="114" id="3804010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  4   Id 436275730 " fill="rgb(255,29,0)" points="463.249,1911.79 442.834,1911.79 442.834,1919.36 " />
<svg:polygon detid="436275986" count="1" value="114" id="3804011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  4   Id 436275986 " fill="rgb(255,29,0)" points="463.249,1904.22 442.834,1904.22 442.834,1911.79 " />
<svg:polygon detid="436276242" count="1" value="114" id="3804012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  4   Id 436276242 " fill="rgb(255,29,0)" points="463.249,1896.65 442.834,1896.65 442.834,1904.22 " />
<svg:polygon detid="436276498" count="1" value="114" id="3804013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  4   Id 436276498 " fill="rgb(255,29,0)" points="463.249,1889.08 442.834,1889.08 442.834,1896.65 " />
<svg:polygon detid="436276754" count="1" value="114" id="3804014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  4   Id 436276754 " fill="rgb(255,29,0)" points="463.249,1881.51 442.834,1881.51 442.834,1889.08 " />
<svg:polygon detid="436277010" count="1" value="114" id="3804015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  4   Id 436277010 " fill="rgb(255,29,0)" points="463.249,1873.94 442.834,1873.94 442.834,1881.51 " />
<svg:polygon detid="436277266" count="1" value="114" id="3804016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  4   Id 436277266 " fill="rgb(255,29,0)" points="463.249,1866.37 442.834,1866.37 442.834,1873.94 " />
<svg:polygon detid="436277522" count="1" value="114" id="3804017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  4   Id 436277522 " fill="rgb(255,29,0)" points="463.249,1858.8 442.834,1858.8 442.834,1866.37 " />
<svg:polygon detid="436277778" count="1" value="114" id="3804018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  4   Id 436277778 " fill="rgb(255,29,0)" points="463.249,1851.23 442.834,1851.23 442.834,1858.8 " />
<svg:polygon detid="436278034" count="1" value="114" id="3804019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  4   Id 436278034 " fill="rgb(255,29,0)" points="463.249,1843.66 442.834,1843.66 442.834,1851.23 " />
<svg:polygon detid="436278290" count="1" value="114" id="3804020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  4   Id 436278290 " fill="rgb(255,29,0)" points="463.249,1836.08 442.834,1836.08 442.834,1843.66 " />
<svg:polygon detid="436278546" count="1" value="114" id="3804021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  4   Id 436278546 " fill="rgb(255,29,0)" points="463.249,1828.51 442.834,1828.51 442.834,1836.08 " />
<svg:polygon detid="436278802" count="1" value="114" id="3804022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  4   Id 436278802 " fill="rgb(255,29,0)" points="463.249,1820.94 442.834,1820.94 442.834,1828.51 " />
<svg:polygon detid="436279058" count="1" value="114" id="3804023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  4   Id 436279058 " fill="rgb(255,29,0)" points="463.249,1813.37 442.834,1813.37 442.834,1820.94 " />
<svg:polygon detid="436279314" count="1" value="114" id="3804024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  4   Id 436279314 " fill="rgb(255,29,0)" points="463.249,1805.8 442.834,1805.8 442.834,1813.37 " />
<svg:polygon detid="436279570" count="1" value="114" id="3804025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  4   Id 436279570 " fill="rgb(255,29,0)" points="463.249,1798.23 442.834,1798.23 442.834,1805.8 " />
<svg:polygon detid="436279826" count="1" value="114" id="3804026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  4   Id 436279826 " fill="rgb(255,29,0)" points="463.249,1790.66 442.834,1790.66 442.834,1798.23 " />
<svg:polygon detid="436280082" count="1" value="114" id="3804027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  4   Id 436280082 " fill="rgb(255,29,0)" points="463.249,1783.09 442.834,1783.09 442.834,1790.66 " />
<svg:polygon detid="436280338" count="1" value="114" id="3804028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  4   Id 436280338 " fill="rgb(255,29,0)" points="463.249,1775.52 442.834,1775.52 442.834,1783.09 " />
<svg:polygon detid="436280594" count="1" value="114" id="3804029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  4   Id 436280594 " fill="rgb(255,29,0)" points="463.249,1767.95 442.834,1767.95 442.834,1775.52 " />
<svg:polygon detid="436280850" count="1" value="114" id="3804030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  4   Id 436280850 " fill="rgb(255,29,0)" points="463.249,1760.38 442.834,1760.38 442.834,1767.95 " />
<svg:polygon detid="436281106" count="1" value="114" id="3804031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  4   Id 436281106 " fill="rgb(255,29,0)" points="463.249,1752.81 442.834,1752.81 442.834,1760.38 " />
<svg:polygon detid="436281362" count="1" value="114" id="3804032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  4   Id 436281362 " fill="rgb(255,29,0)" points="463.249,1745.24 442.834,1745.24 442.834,1752.81 " />
<svg:polygon detid="436281618" count="1" value="114" id="3804033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  4   Id 436281618 " fill="rgb(255,29,0)" points="463.249,1737.67 442.834,1737.67 442.834,1745.24 " />
<svg:polygon detid="436281874" count="1" value="114" id="3804034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  4   Id 436281874 " fill="rgb(255,29,0)" points="463.249,1730.1 442.834,1730.1 442.834,1737.67 " />
<svg:polygon detid="436282130" count="1" value="114" id="3804035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  4   Id 436282130 " fill="rgb(255,29,0)" points="463.249,1722.53 442.834,1722.53 442.834,1730.1 " />
<svg:polygon detid="436282386" count="1" value="114" id="3804036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  4   Id 436282386 " fill="rgb(255,29,0)" points="463.249,1714.96 442.834,1714.96 442.834,1722.53 " />
<svg:polygon detid="436282642" count="1" value="114" id="3804037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  4   Id 436282642 " fill="rgb(255,29,0)" points="463.249,1707.39 442.834,1707.39 442.834,1714.96 " />
<svg:polygon detid="436282898" count="1" value="114" id="3804038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  4   Id 436282898 " fill="rgb(255,29,0)" points="463.249,1699.82 442.834,1699.82 442.834,1707.39 " />
<svg:polygon detid="436283154" count="1" value="114" id="3804039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  4   Id 436283154 " fill="rgb(255,29,0)" points="463.249,1692.25 442.834,1692.25 442.834,1699.82 " />
<svg:polygon detid="436283410" count="1" value="114" id="3804040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  4   Id 436283410 " fill="rgb(255,29,0)" points="463.249,1684.68 442.834,1684.68 442.834,1692.25 " />
<svg:polygon detid="436283666" count="1" value="114" id="3804041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  4   Id 436283666 " fill="rgb(255,29,0)" points="463.249,1677.11 442.834,1677.11 442.834,1684.68 " />
<svg:polygon detid="436283922" count="1" value="114" id="3804042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  4   Id 436283922 " fill="rgb(255,29,0)" points="463.249,1669.54 442.834,1669.54 442.834,1677.11 " />
<svg:polygon detid="436273425" count="1" value="114" id="3804101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  4  stereo Id 436273425 " fill="rgb(255,29,0)" points="442.834,1987.49 463.249,1987.49 463.249,1979.92 " />
<svg:polygon detid="436273681" count="1" value="114" id="3804102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  4  stereo Id 436273681 " fill="rgb(255,29,0)" points="442.834,1979.92 463.249,1979.92 463.249,1972.35 " />
<svg:polygon detid="436273937" count="1" value="114" id="3804103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  4  stereo Id 436273937 " fill="rgb(255,29,0)" points="442.834,1972.35 463.249,1972.35 463.249,1964.78 " />
<svg:polygon detid="436274193" count="1" value="114" id="3804104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  4  stereo Id 436274193 " fill="rgb(255,29,0)" points="442.834,1964.78 463.249,1964.78 463.249,1957.21 " />
<svg:polygon detid="436274449" count="1" value="114" id="3804105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  4  stereo Id 436274449 " fill="rgb(255,29,0)" points="442.834,1957.21 463.249,1957.21 463.249,1949.64 " />
<svg:polygon detid="436274705" count="1" value="114" id="3804106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  4  stereo Id 436274705 " fill="rgb(255,29,0)" points="442.834,1949.64 463.249,1949.64 463.249,1942.07 " />
<svg:polygon detid="436274961" count="1" value="114" id="3804107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  4  stereo Id 436274961 " fill="rgb(255,29,0)" points="442.834,1942.07 463.249,1942.07 463.249,1934.5 " />
<svg:polygon detid="436275217" count="1" value="114" id="3804108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  4  stereo Id 436275217 " fill="rgb(255,29,0)" points="442.834,1934.5 463.249,1934.5 463.249,1926.93 " />
<svg:polygon detid="436275473" count="1" value="114" id="3804109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  4  stereo Id 436275473 " fill="rgb(255,29,0)" points="442.834,1926.93 463.249,1926.93 463.249,1919.36 " />
<svg:polygon detid="436275729" count="1" value="114" id="3804110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  4  stereo Id 436275729 " fill="rgb(255,29,0)" points="442.834,1919.36 463.249,1919.36 463.249,1911.79 " />
<svg:polygon detid="436275985" count="1" value="114" id="3804111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  4  stereo Id 436275985 " fill="rgb(255,29,0)" points="442.834,1911.79 463.249,1911.79 463.249,1904.22 " />
<svg:polygon detid="436276241" count="1" value="114" id="3804112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  4  stereo Id 436276241 " fill="rgb(255,29,0)" points="442.834,1904.22 463.249,1904.22 463.249,1896.65 " />
<svg:polygon detid="436276497" count="1" value="114" id="3804113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  4  stereo Id 436276497 " fill="rgb(255,29,0)" points="442.834,1896.65 463.249,1896.65 463.249,1889.08 " />
<svg:polygon detid="436276753" count="1" value="114" id="3804114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  4  stereo Id 436276753 " fill="rgb(255,29,0)" points="442.834,1889.08 463.249,1889.08 463.249,1881.51 " />
<svg:polygon detid="436277009" count="1" value="114" id="3804115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  4  stereo Id 436277009 " fill="rgb(255,29,0)" points="442.834,1881.51 463.249,1881.51 463.249,1873.94 " />
<svg:polygon detid="436277265" count="1" value="114" id="3804116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  4  stereo Id 436277265 " fill="rgb(255,29,0)" points="442.834,1873.94 463.249,1873.94 463.249,1866.37 " />
<svg:polygon detid="436277521" count="1" value="114" id="3804117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  4  stereo Id 436277521 " fill="rgb(255,29,0)" points="442.834,1866.37 463.249,1866.37 463.249,1858.8 " />
<svg:polygon detid="436277777" count="1" value="114" id="3804118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  4  stereo Id 436277777 " fill="rgb(255,29,0)" points="442.834,1858.8 463.249,1858.8 463.249,1851.23 " />
<svg:polygon detid="436278033" count="1" value="114" id="3804119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  4  stereo Id 436278033 " fill="rgb(255,29,0)" points="442.834,1851.23 463.249,1851.23 463.249,1843.66 " />
<svg:polygon detid="436278289" count="1" value="114" id="3804120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  4  stereo Id 436278289 " fill="rgb(255,29,0)" points="442.834,1843.66 463.249,1843.66 463.249,1836.08 " />
<svg:polygon detid="436278545" count="1" value="114" id="3804121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  4  stereo Id 436278545 " fill="rgb(255,29,0)" points="442.834,1836.08 463.249,1836.08 463.249,1828.51 " />
<svg:polygon detid="436278801" count="1" value="114" id="3804122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  4  stereo Id 436278801 " fill="rgb(255,29,0)" points="442.834,1828.51 463.249,1828.51 463.249,1820.94 " />
<svg:polygon detid="436279057" count="1" value="114" id="3804123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  4  stereo Id 436279057 " fill="rgb(255,29,0)" points="442.834,1820.94 463.249,1820.94 463.249,1813.37 " />
<svg:polygon detid="436279313" count="1" value="114" id="3804124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  4  stereo Id 436279313 " fill="rgb(255,29,0)" points="442.834,1813.37 463.249,1813.37 463.249,1805.8 " />
<svg:polygon detid="436279569" count="1" value="114" id="3804125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  4  stereo Id 436279569 " fill="rgb(255,29,0)" points="442.834,1805.8 463.249,1805.8 463.249,1798.23 " />
<svg:polygon detid="436279825" count="1" value="114" id="3804126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  4  stereo Id 436279825 " fill="rgb(255,29,0)" points="442.834,1798.23 463.249,1798.23 463.249,1790.66 " />
<svg:polygon detid="436280081" count="1" value="114" id="3804127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  4  stereo Id 436280081 " fill="rgb(255,29,0)" points="442.834,1790.66 463.249,1790.66 463.249,1783.09 " />
<svg:polygon detid="436280337" count="1" value="114" id="3804128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  4  stereo Id 436280337 " fill="rgb(255,29,0)" points="442.834,1783.09 463.249,1783.09 463.249,1775.52 " />
<svg:polygon detid="436280593" count="1" value="114" id="3804129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  4  stereo Id 436280593 " fill="rgb(255,29,0)" points="442.834,1775.52 463.249,1775.52 463.249,1767.95 " />
<svg:polygon detid="436280849" count="1" value="114" id="3804130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  4  stereo Id 436280849 " fill="rgb(255,29,0)" points="442.834,1767.95 463.249,1767.95 463.249,1760.38 " />
<svg:polygon detid="436281105" count="1" value="114" id="3804131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  4  stereo Id 436281105 " fill="rgb(255,29,0)" points="442.834,1760.38 463.249,1760.38 463.249,1752.81 " />
<svg:polygon detid="436281361" count="1" value="114" id="3804132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  4  stereo Id 436281361 " fill="rgb(255,29,0)" points="442.834,1752.81 463.249,1752.81 463.249,1745.24 " />
<svg:polygon detid="436281617" count="1" value="114" id="3804133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  4  stereo Id 436281617 " fill="rgb(255,29,0)" points="442.834,1745.24 463.249,1745.24 463.249,1737.67 " />
<svg:polygon detid="436281873" count="1" value="114" id="3804134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  4  stereo Id 436281873 " fill="rgb(255,29,0)" points="442.834,1737.67 463.249,1737.67 463.249,1730.1 " />
<svg:polygon detid="436282129" count="1" value="114" id="3804135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  4  stereo Id 436282129 " fill="rgb(255,29,0)" points="442.834,1730.1 463.249,1730.1 463.249,1722.53 " />
<svg:polygon detid="436282385" count="1" value="114" id="3804136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  4  stereo Id 436282385 " fill="rgb(255,29,0)" points="442.834,1722.53 463.249,1722.53 463.249,1714.96 " />
<svg:polygon detid="436282641" count="1" value="114" id="3804137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  4  stereo Id 436282641 " fill="rgb(255,29,0)" points="442.834,1714.96 463.249,1714.96 463.249,1707.39 " />
<svg:polygon detid="436282897" count="1" value="114" id="3804138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  4  stereo Id 436282897 " fill="rgb(255,29,0)" points="442.834,1707.39 463.249,1707.39 463.249,1699.82 " />
<svg:polygon detid="436283153" count="1" value="114" id="3804139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  4  stereo Id 436283153 " fill="rgb(255,29,0)" points="442.834,1699.82 463.249,1699.82 463.249,1692.25 " />
<svg:polygon detid="436283409" count="1" value="114" id="3804140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  4  stereo Id 436283409 " fill="rgb(255,29,0)" points="442.834,1692.25 463.249,1692.25 463.249,1684.68 " />
<svg:polygon detid="436283665" count="1" value="114" id="3804141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  4  stereo Id 436283665 " fill="rgb(255,29,0)" points="442.834,1684.68 463.249,1684.68 463.249,1677.11 " />
<svg:polygon detid="436283921" count="1" value="114" id="3804142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  4  stereo Id 436283921 " fill="rgb(255,29,0)" points="442.834,1677.11 463.249,1677.11 463.249,1669.54 " />
<svg:polygon detid="436273430" count="1" value="114" id="3805001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  5   Id 436273430 " fill="rgb(255,29,0)" points="486.215,1979.92 465.8,1979.92 465.8,1987.49 " />
<svg:polygon detid="436273686" count="1" value="114" id="3805002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  5   Id 436273686 " fill="rgb(255,29,0)" points="486.215,1972.35 465.8,1972.35 465.8,1979.92 " />
<svg:polygon detid="436273942" count="1" value="114" id="3805003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  5   Id 436273942 " fill="rgb(255,29,0)" points="486.215,1964.78 465.8,1964.78 465.8,1972.35 " />
<svg:polygon detid="436274198" count="1" value="114" id="3805004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  5   Id 436274198 " fill="rgb(255,29,0)" points="486.215,1957.21 465.8,1957.21 465.8,1964.78 " />
<svg:polygon detid="436274454" count="1" value="114" id="3805005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  5   Id 436274454 " fill="rgb(255,29,0)" points="486.215,1949.64 465.8,1949.64 465.8,1957.21 " />
<svg:polygon detid="436274710" count="1" value="114" id="3805006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  5   Id 436274710 " fill="rgb(255,29,0)" points="486.215,1942.07 465.8,1942.07 465.8,1949.64 " />
<svg:polygon detid="436274966" count="1" value="114" id="3805007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  5   Id 436274966 " fill="rgb(255,29,0)" points="486.215,1934.5 465.8,1934.5 465.8,1942.07 " />
<svg:polygon detid="436275222" count="1" value="114" id="3805008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  5   Id 436275222 " fill="rgb(255,29,0)" points="486.215,1926.93 465.8,1926.93 465.8,1934.5 " />
<svg:polygon detid="436275478" count="1" value="114" id="3805009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  5   Id 436275478 " fill="rgb(255,29,0)" points="486.215,1919.36 465.8,1919.36 465.8,1926.93 " />
<svg:polygon detid="436275734" count="1" value="114" id="3805010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  5   Id 436275734 " fill="rgb(255,29,0)" points="486.215,1911.79 465.8,1911.79 465.8,1919.36 " />
<svg:polygon detid="436275990" count="1" value="114" id="3805011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  5   Id 436275990 " fill="rgb(255,29,0)" points="486.215,1904.22 465.8,1904.22 465.8,1911.79 " />
<svg:polygon detid="436276246" count="1" value="114" id="3805012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  5   Id 436276246 " fill="rgb(255,29,0)" points="486.215,1896.65 465.8,1896.65 465.8,1904.22 " />
<svg:polygon detid="436276502" count="1" value="114" id="3805013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  5   Id 436276502 " fill="rgb(255,29,0)" points="486.215,1889.08 465.8,1889.08 465.8,1896.65 " />
<svg:polygon detid="436276758" count="1" value="114" id="3805014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  5   Id 436276758 " fill="rgb(255,29,0)" points="486.215,1881.51 465.8,1881.51 465.8,1889.08 " />
<svg:polygon detid="436277014" count="1" value="114" id="3805015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  5   Id 436277014 " fill="rgb(255,29,0)" points="486.215,1873.94 465.8,1873.94 465.8,1881.51 " />
<svg:polygon detid="436277270" count="1" value="114" id="3805016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  5   Id 436277270 " fill="rgb(255,29,0)" points="486.215,1866.37 465.8,1866.37 465.8,1873.94 " />
<svg:polygon detid="436277526" count="1" value="114" id="3805017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  5   Id 436277526 " fill="rgb(255,29,0)" points="486.215,1858.8 465.8,1858.8 465.8,1866.37 " />
<svg:polygon detid="436277782" count="1" value="114" id="3805018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  5   Id 436277782 " fill="rgb(255,29,0)" points="486.215,1851.23 465.8,1851.23 465.8,1858.8 " />
<svg:polygon detid="436278038" count="1" value="114" id="3805019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  5   Id 436278038 " fill="rgb(255,29,0)" points="486.215,1843.66 465.8,1843.66 465.8,1851.23 " />
<svg:polygon detid="436278294" count="1" value="114" id="3805020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  5   Id 436278294 " fill="rgb(255,29,0)" points="486.215,1836.08 465.8,1836.08 465.8,1843.66 " />
<svg:polygon detid="436278550" count="1" value="114" id="3805021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  5   Id 436278550 " fill="rgb(255,29,0)" points="486.215,1828.51 465.8,1828.51 465.8,1836.08 " />
<svg:polygon detid="436278806" count="1" value="114" id="3805022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  5   Id 436278806 " fill="rgb(255,29,0)" points="486.215,1820.94 465.8,1820.94 465.8,1828.51 " />
<svg:polygon detid="436279062" count="1" value="114" id="3805023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  5   Id 436279062 " fill="rgb(255,29,0)" points="486.215,1813.37 465.8,1813.37 465.8,1820.94 " />
<svg:polygon detid="436279318" count="1" value="114" id="3805024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  5   Id 436279318 " fill="rgb(255,29,0)" points="486.215,1805.8 465.8,1805.8 465.8,1813.37 " />
<svg:polygon detid="436279574" count="1" value="114" id="3805025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  5   Id 436279574 " fill="rgb(255,29,0)" points="486.215,1798.23 465.8,1798.23 465.8,1805.8 " />
<svg:polygon detid="436279830" count="1" value="114" id="3805026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  5   Id 436279830 " fill="rgb(255,29,0)" points="486.215,1790.66 465.8,1790.66 465.8,1798.23 " />
<svg:polygon detid="436280086" count="1" value="114" id="3805027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  5   Id 436280086 " fill="rgb(255,29,0)" points="486.215,1783.09 465.8,1783.09 465.8,1790.66 " />
<svg:polygon detid="436280342" count="1" value="114" id="3805028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  5   Id 436280342 " fill="rgb(255,29,0)" points="486.215,1775.52 465.8,1775.52 465.8,1783.09 " />
<svg:polygon detid="436280598" count="1" value="114" id="3805029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  5   Id 436280598 " fill="rgb(255,29,0)" points="486.215,1767.95 465.8,1767.95 465.8,1775.52 " />
<svg:polygon detid="436280854" count="1" value="114" id="3805030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  5   Id 436280854 " fill="rgb(255,29,0)" points="486.215,1760.38 465.8,1760.38 465.8,1767.95 " />
<svg:polygon detid="436281110" count="1" value="114" id="3805031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  5   Id 436281110 " fill="rgb(255,29,0)" points="486.215,1752.81 465.8,1752.81 465.8,1760.38 " />
<svg:polygon detid="436281366" count="1" value="114" id="3805032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  5   Id 436281366 " fill="rgb(255,29,0)" points="486.215,1745.24 465.8,1745.24 465.8,1752.81 " />
<svg:polygon detid="436281622" count="1" value="114" id="3805033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  5   Id 436281622 " fill="rgb(255,29,0)" points="486.215,1737.67 465.8,1737.67 465.8,1745.24 " />
<svg:polygon detid="436281878" count="1" value="114" id="3805034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  5   Id 436281878 " fill="rgb(255,29,0)" points="486.215,1730.1 465.8,1730.1 465.8,1737.67 " />
<svg:polygon detid="436282134" count="1" value="114" id="3805035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  5   Id 436282134 " fill="rgb(255,29,0)" points="486.215,1722.53 465.8,1722.53 465.8,1730.1 " />
<svg:polygon detid="436282390" count="1" value="114" id="3805036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  5   Id 436282390 " fill="rgb(255,29,0)" points="486.215,1714.96 465.8,1714.96 465.8,1722.53 " />
<svg:polygon detid="436282646" count="1" value="114" id="3805037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  5   Id 436282646 " fill="rgb(255,29,0)" points="486.215,1707.39 465.8,1707.39 465.8,1714.96 " />
<svg:polygon detid="436282902" count="1" value="114" id="3805038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  5   Id 436282902 " fill="rgb(255,29,0)" points="486.215,1699.82 465.8,1699.82 465.8,1707.39 " />
<svg:polygon detid="436283158" count="1" value="114" id="3805039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  5   Id 436283158 " fill="rgb(255,29,0)" points="486.215,1692.25 465.8,1692.25 465.8,1699.82 " />
<svg:polygon detid="436283414" count="1" value="114" id="3805040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  5   Id 436283414 " fill="rgb(255,29,0)" points="486.215,1684.68 465.8,1684.68 465.8,1692.25 " />
<svg:polygon detid="436283670" count="1" value="114" id="3805041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  5   Id 436283670 " fill="rgb(255,29,0)" points="486.215,1677.11 465.8,1677.11 465.8,1684.68 " />
<svg:polygon detid="436283926" count="1" value="114" id="3805042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  5   Id 436283926 " fill="rgb(255,29,0)" points="486.215,1669.54 465.8,1669.54 465.8,1677.11 " />
<svg:polygon detid="436273429" count="1" value="114" id="3805101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  5  stereo Id 436273429 " fill="rgb(255,29,0)" points="465.8,1987.49 486.215,1987.49 486.215,1979.92 " />
<svg:polygon detid="436273685" count="1" value="114" id="3805102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  5  stereo Id 436273685 " fill="rgb(255,29,0)" points="465.8,1979.92 486.215,1979.92 486.215,1972.35 " />
<svg:polygon detid="436273941" count="1" value="114" id="3805103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  5  stereo Id 436273941 " fill="rgb(255,29,0)" points="465.8,1972.35 486.215,1972.35 486.215,1964.78 " />
<svg:polygon detid="436274197" count="1" value="114" id="3805104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  5  stereo Id 436274197 " fill="rgb(255,29,0)" points="465.8,1964.78 486.215,1964.78 486.215,1957.21 " />
<svg:polygon detid="436274453" count="1" value="114" id="3805105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  5  stereo Id 436274453 " fill="rgb(255,29,0)" points="465.8,1957.21 486.215,1957.21 486.215,1949.64 " />
<svg:polygon detid="436274709" count="1" value="114" id="3805106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  5  stereo Id 436274709 " fill="rgb(255,29,0)" points="465.8,1949.64 486.215,1949.64 486.215,1942.07 " />
<svg:polygon detid="436274965" count="1" value="114" id="3805107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  5  stereo Id 436274965 " fill="rgb(255,29,0)" points="465.8,1942.07 486.215,1942.07 486.215,1934.5 " />
<svg:polygon detid="436275221" count="1" value="114" id="3805108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  5  stereo Id 436275221 " fill="rgb(255,29,0)" points="465.8,1934.5 486.215,1934.5 486.215,1926.93 " />
<svg:polygon detid="436275477" count="1" value="114" id="3805109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  5  stereo Id 436275477 " fill="rgb(255,29,0)" points="465.8,1926.93 486.215,1926.93 486.215,1919.36 " />
<svg:polygon detid="436275733" count="1" value="114" id="3805110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  5  stereo Id 436275733 " fill="rgb(255,29,0)" points="465.8,1919.36 486.215,1919.36 486.215,1911.79 " />
<svg:polygon detid="436275989" count="1" value="114" id="3805111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  5  stereo Id 436275989 " fill="rgb(255,29,0)" points="465.8,1911.79 486.215,1911.79 486.215,1904.22 " />
<svg:polygon detid="436276245" count="1" value="114" id="3805112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  5  stereo Id 436276245 " fill="rgb(255,29,0)" points="465.8,1904.22 486.215,1904.22 486.215,1896.65 " />
<svg:polygon detid="436276501" count="1" value="114" id="3805113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  5  stereo Id 436276501 " fill="rgb(255,29,0)" points="465.8,1896.65 486.215,1896.65 486.215,1889.08 " />
<svg:polygon detid="436276757" count="1" value="114" id="3805114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  5  stereo Id 436276757 " fill="rgb(255,29,0)" points="465.8,1889.08 486.215,1889.08 486.215,1881.51 " />
<svg:polygon detid="436277013" count="1" value="114" id="3805115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  5  stereo Id 436277013 " fill="rgb(255,29,0)" points="465.8,1881.51 486.215,1881.51 486.215,1873.94 " />
<svg:polygon detid="436277269" count="1" value="114" id="3805116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  5  stereo Id 436277269 " fill="rgb(255,29,0)" points="465.8,1873.94 486.215,1873.94 486.215,1866.37 " />
<svg:polygon detid="436277525" count="1" value="114" id="3805117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  5  stereo Id 436277525 " fill="rgb(255,29,0)" points="465.8,1866.37 486.215,1866.37 486.215,1858.8 " />
<svg:polygon detid="436277781" count="1" value="114" id="3805118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  5  stereo Id 436277781 " fill="rgb(255,29,0)" points="465.8,1858.8 486.215,1858.8 486.215,1851.23 " />
<svg:polygon detid="436278037" count="1" value="114" id="3805119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  5  stereo Id 436278037 " fill="rgb(255,29,0)" points="465.8,1851.23 486.215,1851.23 486.215,1843.66 " />
<svg:polygon detid="436278293" count="1" value="114" id="3805120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  5  stereo Id 436278293 " fill="rgb(255,29,0)" points="465.8,1843.66 486.215,1843.66 486.215,1836.08 " />
<svg:polygon detid="436278549" count="1" value="114" id="3805121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  5  stereo Id 436278549 " fill="rgb(255,29,0)" points="465.8,1836.08 486.215,1836.08 486.215,1828.51 " />
<svg:polygon detid="436278805" count="1" value="114" id="3805122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  5  stereo Id 436278805 " fill="rgb(255,29,0)" points="465.8,1828.51 486.215,1828.51 486.215,1820.94 " />
<svg:polygon detid="436279061" count="1" value="114" id="3805123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  5  stereo Id 436279061 " fill="rgb(255,29,0)" points="465.8,1820.94 486.215,1820.94 486.215,1813.37 " />
<svg:polygon detid="436279317" count="1" value="114" id="3805124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  5  stereo Id 436279317 " fill="rgb(255,29,0)" points="465.8,1813.37 486.215,1813.37 486.215,1805.8 " />
<svg:polygon detid="436279573" count="1" value="114" id="3805125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  5  stereo Id 436279573 " fill="rgb(255,29,0)" points="465.8,1805.8 486.215,1805.8 486.215,1798.23 " />
<svg:polygon detid="436279829" count="1" value="114" id="3805126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  5  stereo Id 436279829 " fill="rgb(255,29,0)" points="465.8,1798.23 486.215,1798.23 486.215,1790.66 " />
<svg:polygon detid="436280085" count="1" value="114" id="3805127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  5  stereo Id 436280085 " fill="rgb(255,29,0)" points="465.8,1790.66 486.215,1790.66 486.215,1783.09 " />
<svg:polygon detid="436280341" count="1" value="114" id="3805128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  5  stereo Id 436280341 " fill="rgb(255,29,0)" points="465.8,1783.09 486.215,1783.09 486.215,1775.52 " />
<svg:polygon detid="436280597" count="1" value="114" id="3805129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  5  stereo Id 436280597 " fill="rgb(255,29,0)" points="465.8,1775.52 486.215,1775.52 486.215,1767.95 " />
<svg:polygon detid="436280853" count="1" value="114" id="3805130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  5  stereo Id 436280853 " fill="rgb(255,29,0)" points="465.8,1767.95 486.215,1767.95 486.215,1760.38 " />
<svg:polygon detid="436281109" count="1" value="114" id="3805131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  5  stereo Id 436281109 " fill="rgb(255,29,0)" points="465.8,1760.38 486.215,1760.38 486.215,1752.81 " />
<svg:polygon detid="436281365" count="1" value="114" id="3805132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  5  stereo Id 436281365 " fill="rgb(255,29,0)" points="465.8,1752.81 486.215,1752.81 486.215,1745.24 " />
<svg:polygon detid="436281621" count="1" value="114" id="3805133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  5  stereo Id 436281621 " fill="rgb(255,29,0)" points="465.8,1745.24 486.215,1745.24 486.215,1737.67 " />
<svg:polygon detid="436281877" count="1" value="114" id="3805134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  5  stereo Id 436281877 " fill="rgb(255,29,0)" points="465.8,1737.67 486.215,1737.67 486.215,1730.1 " />
<svg:polygon detid="436282133" count="1" value="114" id="3805135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  5  stereo Id 436282133 " fill="rgb(255,29,0)" points="465.8,1730.1 486.215,1730.1 486.215,1722.53 " />
<svg:polygon detid="436282389" count="1" value="114" id="3805136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  5  stereo Id 436282389 " fill="rgb(255,29,0)" points="465.8,1722.53 486.215,1722.53 486.215,1714.96 " />
<svg:polygon detid="436282645" count="1" value="114" id="3805137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  5  stereo Id 436282645 " fill="rgb(255,29,0)" points="465.8,1714.96 486.215,1714.96 486.215,1707.39 " />
<svg:polygon detid="436282901" count="1" value="114" id="3805138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  5  stereo Id 436282901 " fill="rgb(255,29,0)" points="465.8,1707.39 486.215,1707.39 486.215,1699.82 " />
<svg:polygon detid="436283157" count="1" value="114" id="3805139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  5  stereo Id 436283157 " fill="rgb(255,29,0)" points="465.8,1699.82 486.215,1699.82 486.215,1692.25 " />
<svg:polygon detid="436283413" count="1" value="114" id="3805140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  5  stereo Id 436283413 " fill="rgb(255,29,0)" points="465.8,1692.25 486.215,1692.25 486.215,1684.68 " />
<svg:polygon detid="436283669" count="1" value="114" id="3805141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  5  stereo Id 436283669 " fill="rgb(255,29,0)" points="465.8,1684.68 486.215,1684.68 486.215,1677.11 " />
<svg:polygon detid="436283925" count="1" value="114" id="3805142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  5  stereo Id 436283925 " fill="rgb(255,29,0)" points="465.8,1677.11 486.215,1677.11 486.215,1669.54 " />
<svg:polygon detid="436273434" count="1" value="114" id="3806001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  6   Id 436273434 " fill="rgb(255,29,0)" points="509.182,1979.92 488.767,1979.92 488.767,1987.49 " />
<svg:polygon detid="436273690" count="1" value="114" id="3806002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  6   Id 436273690 " fill="rgb(255,29,0)" points="509.182,1972.35 488.767,1972.35 488.767,1979.92 " />
<svg:polygon detid="436273946" count="1" value="114" id="3806003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  6   Id 436273946 " fill="rgb(255,29,0)" points="509.182,1964.78 488.767,1964.78 488.767,1972.35 " />
<svg:polygon detid="436274202" count="1" value="114" id="3806004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  6   Id 436274202 " fill="rgb(255,29,0)" points="509.182,1957.21 488.767,1957.21 488.767,1964.78 " />
<svg:polygon detid="436274458" count="1" value="114" id="3806005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  6   Id 436274458 " fill="rgb(255,29,0)" points="509.182,1949.64 488.767,1949.64 488.767,1957.21 " />
<svg:polygon detid="436274714" count="1" value="114" id="3806006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  6   Id 436274714 " fill="rgb(255,29,0)" points="509.182,1942.07 488.767,1942.07 488.767,1949.64 " />
<svg:polygon detid="436274970" count="1" value="114" id="3806007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  6   Id 436274970 " fill="rgb(255,29,0)" points="509.182,1934.5 488.767,1934.5 488.767,1942.07 " />
<svg:polygon detid="436275226" count="1" value="114" id="3806008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  6   Id 436275226 " fill="rgb(255,29,0)" points="509.182,1926.93 488.767,1926.93 488.767,1934.5 " />
<svg:polygon detid="436275482" count="1" value="114" id="3806009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  6   Id 436275482 " fill="rgb(255,29,0)" points="509.182,1919.36 488.767,1919.36 488.767,1926.93 " />
<svg:polygon detid="436275738" count="1" value="114" id="3806010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  6   Id 436275738 " fill="rgb(255,29,0)" points="509.182,1911.79 488.767,1911.79 488.767,1919.36 " />
<svg:polygon detid="436275994" count="1" value="114" id="3806011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  6   Id 436275994 " fill="rgb(255,29,0)" points="509.182,1904.22 488.767,1904.22 488.767,1911.79 " />
<svg:polygon detid="436276250" count="1" value="114" id="3806012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  6   Id 436276250 " fill="rgb(255,29,0)" points="509.182,1896.65 488.767,1896.65 488.767,1904.22 " />
<svg:polygon detid="436276506" count="1" value="114" id="3806013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  6   Id 436276506 " fill="rgb(255,29,0)" points="509.182,1889.08 488.767,1889.08 488.767,1896.65 " />
<svg:polygon detid="436276762" count="1" value="114" id="3806014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  6   Id 436276762 " fill="rgb(255,29,0)" points="509.182,1881.51 488.767,1881.51 488.767,1889.08 " />
<svg:polygon detid="436277018" count="1" value="114" id="3806015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  6   Id 436277018 " fill="rgb(255,29,0)" points="509.182,1873.94 488.767,1873.94 488.767,1881.51 " />
<svg:polygon detid="436277274" count="1" value="114" id="3806016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  6   Id 436277274 " fill="rgb(255,29,0)" points="509.182,1866.37 488.767,1866.37 488.767,1873.94 " />
<svg:polygon detid="436277530" count="1" value="114" id="3806017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  6   Id 436277530 " fill="rgb(255,29,0)" points="509.182,1858.8 488.767,1858.8 488.767,1866.37 " />
<svg:polygon detid="436277786" count="1" value="114" id="3806018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  6   Id 436277786 " fill="rgb(255,29,0)" points="509.182,1851.23 488.767,1851.23 488.767,1858.8 " />
<svg:polygon detid="436278042" count="1" value="114" id="3806019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  6   Id 436278042 " fill="rgb(255,29,0)" points="509.182,1843.66 488.767,1843.66 488.767,1851.23 " />
<svg:polygon detid="436278298" count="1" value="114" id="3806020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  6   Id 436278298 " fill="rgb(255,29,0)" points="509.182,1836.08 488.767,1836.08 488.767,1843.66 " />
<svg:polygon detid="436278554" count="1" value="114" id="3806021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  6   Id 436278554 " fill="rgb(255,29,0)" points="509.182,1828.51 488.767,1828.51 488.767,1836.08 " />
<svg:polygon detid="436278810" count="1" value="114" id="3806022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  6   Id 436278810 " fill="rgb(255,29,0)" points="509.182,1820.94 488.767,1820.94 488.767,1828.51 " />
<svg:polygon detid="436279066" count="1" value="114" id="3806023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  6   Id 436279066 " fill="rgb(255,29,0)" points="509.182,1813.37 488.767,1813.37 488.767,1820.94 " />
<svg:polygon detid="436279322" count="1" value="114" id="3806024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  6   Id 436279322 " fill="rgb(255,29,0)" points="509.182,1805.8 488.767,1805.8 488.767,1813.37 " />
<svg:polygon detid="436279578" count="1" value="114" id="3806025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  6   Id 436279578 " fill="rgb(255,29,0)" points="509.182,1798.23 488.767,1798.23 488.767,1805.8 " />
<svg:polygon detid="436279834" count="1" value="114" id="3806026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  6   Id 436279834 " fill="rgb(255,29,0)" points="509.182,1790.66 488.767,1790.66 488.767,1798.23 " />
<svg:polygon detid="436280090" count="1" value="114" id="3806027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  6   Id 436280090 " fill="rgb(255,29,0)" points="509.182,1783.09 488.767,1783.09 488.767,1790.66 " />
<svg:polygon detid="436280346" count="1" value="114" id="3806028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  6   Id 436280346 " fill="rgb(255,29,0)" points="509.182,1775.52 488.767,1775.52 488.767,1783.09 " />
<svg:polygon detid="436280602" count="1" value="114" id="3806029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  6   Id 436280602 " fill="rgb(255,29,0)" points="509.182,1767.95 488.767,1767.95 488.767,1775.52 " />
<svg:polygon detid="436280858" count="1" value="114" id="3806030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  6   Id 436280858 " fill="rgb(255,29,0)" points="509.182,1760.38 488.767,1760.38 488.767,1767.95 " />
<svg:polygon detid="436281114" count="1" value="114" id="3806031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  6   Id 436281114 " fill="rgb(255,29,0)" points="509.182,1752.81 488.767,1752.81 488.767,1760.38 " />
<svg:polygon detid="436281370" count="1" value="114" id="3806032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  6   Id 436281370 " fill="rgb(255,29,0)" points="509.182,1745.24 488.767,1745.24 488.767,1752.81 " />
<svg:polygon detid="436281626" count="1" value="114" id="3806033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  6   Id 436281626 " fill="rgb(255,29,0)" points="509.182,1737.67 488.767,1737.67 488.767,1745.24 " />
<svg:polygon detid="436281882" count="1" value="114" id="3806034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  6   Id 436281882 " fill="rgb(255,29,0)" points="509.182,1730.1 488.767,1730.1 488.767,1737.67 " />
<svg:polygon detid="436282138" count="1" value="114" id="3806035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  6   Id 436282138 " fill="rgb(255,29,0)" points="509.182,1722.53 488.767,1722.53 488.767,1730.1 " />
<svg:polygon detid="436282394" count="1" value="114" id="3806036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  6   Id 436282394 " fill="rgb(255,29,0)" points="509.182,1714.96 488.767,1714.96 488.767,1722.53 " />
<svg:polygon detid="436282650" count="1" value="114" id="3806037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  6   Id 436282650 " fill="rgb(255,29,0)" points="509.182,1707.39 488.767,1707.39 488.767,1714.96 " />
<svg:polygon detid="436282906" count="1" value="114" id="3806038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  6   Id 436282906 " fill="rgb(255,29,0)" points="509.182,1699.82 488.767,1699.82 488.767,1707.39 " />
<svg:polygon detid="436283162" count="1" value="114" id="3806039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  6   Id 436283162 " fill="rgb(255,29,0)" points="509.182,1692.25 488.767,1692.25 488.767,1699.82 " />
<svg:polygon detid="436283418" count="1" value="114" id="3806040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  6   Id 436283418 " fill="rgb(255,29,0)" points="509.182,1684.68 488.767,1684.68 488.767,1692.25 " />
<svg:polygon detid="436283674" count="1" value="114" id="3806041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  6   Id 436283674 " fill="rgb(255,29,0)" points="509.182,1677.11 488.767,1677.11 488.767,1684.68 " />
<svg:polygon detid="436283930" count="1" value="114" id="3806042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  6   Id 436283930 " fill="rgb(255,29,0)" points="509.182,1669.54 488.767,1669.54 488.767,1677.11 " />
<svg:polygon detid="436273433" count="1" value="114" id="3806101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 neg   module  6  stereo Id 436273433 " fill="rgb(255,29,0)" points="488.767,1987.49 509.182,1987.49 509.182,1979.92 " />
<svg:polygon detid="436273689" count="1" value="114" id="3806102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 neg   module  6  stereo Id 436273689 " fill="rgb(255,29,0)" points="488.767,1979.92 509.182,1979.92 509.182,1972.35 " />
<svg:polygon detid="436273945" count="1" value="114" id="3806103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 neg   module  6  stereo Id 436273945 " fill="rgb(255,29,0)" points="488.767,1972.35 509.182,1972.35 509.182,1964.78 " />
<svg:polygon detid="436274201" count="1" value="114" id="3806104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 neg   module  6  stereo Id 436274201 " fill="rgb(255,29,0)" points="488.767,1964.78 509.182,1964.78 509.182,1957.21 " />
<svg:polygon detid="436274457" count="1" value="114" id="3806105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 neg   module  6  stereo Id 436274457 " fill="rgb(255,29,0)" points="488.767,1957.21 509.182,1957.21 509.182,1949.64 " />
<svg:polygon detid="436274713" count="1" value="114" id="3806106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 neg   module  6  stereo Id 436274713 " fill="rgb(255,29,0)" points="488.767,1949.64 509.182,1949.64 509.182,1942.07 " />
<svg:polygon detid="436274969" count="1" value="114" id="3806107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 neg   module  6  stereo Id 436274969 " fill="rgb(255,29,0)" points="488.767,1942.07 509.182,1942.07 509.182,1934.5 " />
<svg:polygon detid="436275225" count="1" value="114" id="3806108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 neg   module  6  stereo Id 436275225 " fill="rgb(255,29,0)" points="488.767,1934.5 509.182,1934.5 509.182,1926.93 " />
<svg:polygon detid="436275481" count="1" value="114" id="3806109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 neg   module  6  stereo Id 436275481 " fill="rgb(255,29,0)" points="488.767,1926.93 509.182,1926.93 509.182,1919.36 " />
<svg:polygon detid="436275737" count="1" value="114" id="3806110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 neg   module  6  stereo Id 436275737 " fill="rgb(255,29,0)" points="488.767,1919.36 509.182,1919.36 509.182,1911.79 " />
<svg:polygon detid="436275993" count="1" value="114" id="3806111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 neg   module  6  stereo Id 436275993 " fill="rgb(255,29,0)" points="488.767,1911.79 509.182,1911.79 509.182,1904.22 " />
<svg:polygon detid="436276249" count="1" value="114" id="3806112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 neg   module  6  stereo Id 436276249 " fill="rgb(255,29,0)" points="488.767,1904.22 509.182,1904.22 509.182,1896.65 " />
<svg:polygon detid="436276505" count="1" value="114" id="3806113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 neg   module  6  stereo Id 436276505 " fill="rgb(255,29,0)" points="488.767,1896.65 509.182,1896.65 509.182,1889.08 " />
<svg:polygon detid="436276761" count="1" value="114" id="3806114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 neg   module  6  stereo Id 436276761 " fill="rgb(255,29,0)" points="488.767,1889.08 509.182,1889.08 509.182,1881.51 " />
<svg:polygon detid="436277017" count="1" value="114" id="3806115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 neg   module  6  stereo Id 436277017 " fill="rgb(255,29,0)" points="488.767,1881.51 509.182,1881.51 509.182,1873.94 " />
<svg:polygon detid="436277273" count="1" value="114" id="3806116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 neg   module  6  stereo Id 436277273 " fill="rgb(255,29,0)" points="488.767,1873.94 509.182,1873.94 509.182,1866.37 " />
<svg:polygon detid="436277529" count="1" value="114" id="3806117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 neg   module  6  stereo Id 436277529 " fill="rgb(255,29,0)" points="488.767,1866.37 509.182,1866.37 509.182,1858.8 " />
<svg:polygon detid="436277785" count="1" value="114" id="3806118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 neg   module  6  stereo Id 436277785 " fill="rgb(255,29,0)" points="488.767,1858.8 509.182,1858.8 509.182,1851.23 " />
<svg:polygon detid="436278041" count="1" value="114" id="3806119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 neg   module  6  stereo Id 436278041 " fill="rgb(255,29,0)" points="488.767,1851.23 509.182,1851.23 509.182,1843.66 " />
<svg:polygon detid="436278297" count="1" value="114" id="3806120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 neg   module  6  stereo Id 436278297 " fill="rgb(255,29,0)" points="488.767,1843.66 509.182,1843.66 509.182,1836.08 " />
<svg:polygon detid="436278553" count="1" value="114" id="3806121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 neg   module  6  stereo Id 436278553 " fill="rgb(255,29,0)" points="488.767,1836.08 509.182,1836.08 509.182,1828.51 " />
<svg:polygon detid="436278809" count="1" value="114" id="3806122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 neg   module  6  stereo Id 436278809 " fill="rgb(255,29,0)" points="488.767,1828.51 509.182,1828.51 509.182,1820.94 " />
<svg:polygon detid="436279065" count="1" value="114" id="3806123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 neg   module  6  stereo Id 436279065 " fill="rgb(255,29,0)" points="488.767,1820.94 509.182,1820.94 509.182,1813.37 " />
<svg:polygon detid="436279321" count="1" value="114" id="3806124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 neg   module  6  stereo Id 436279321 " fill="rgb(255,29,0)" points="488.767,1813.37 509.182,1813.37 509.182,1805.8 " />
<svg:polygon detid="436279577" count="1" value="114" id="3806125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 neg   module  6  stereo Id 436279577 " fill="rgb(255,29,0)" points="488.767,1805.8 509.182,1805.8 509.182,1798.23 " />
<svg:polygon detid="436279833" count="1" value="114" id="3806126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 neg   module  6  stereo Id 436279833 " fill="rgb(255,29,0)" points="488.767,1798.23 509.182,1798.23 509.182,1790.66 " />
<svg:polygon detid="436280089" count="1" value="114" id="3806127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 neg   module  6  stereo Id 436280089 " fill="rgb(255,29,0)" points="488.767,1790.66 509.182,1790.66 509.182,1783.09 " />
<svg:polygon detid="436280345" count="1" value="114" id="3806128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 neg   module  6  stereo Id 436280345 " fill="rgb(255,29,0)" points="488.767,1783.09 509.182,1783.09 509.182,1775.52 " />
<svg:polygon detid="436280601" count="1" value="114" id="3806129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 neg   module  6  stereo Id 436280601 " fill="rgb(255,29,0)" points="488.767,1775.52 509.182,1775.52 509.182,1767.95 " />
<svg:polygon detid="436280857" count="1" value="114" id="3806130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 neg   module  6  stereo Id 436280857 " fill="rgb(255,29,0)" points="488.767,1767.95 509.182,1767.95 509.182,1760.38 " />
<svg:polygon detid="436281113" count="1" value="114" id="3806131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 neg   module  6  stereo Id 436281113 " fill="rgb(255,29,0)" points="488.767,1760.38 509.182,1760.38 509.182,1752.81 " />
<svg:polygon detid="436281369" count="1" value="114" id="3806132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 neg   module  6  stereo Id 436281369 " fill="rgb(255,29,0)" points="488.767,1752.81 509.182,1752.81 509.182,1745.24 " />
<svg:polygon detid="436281625" count="1" value="114" id="3806133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 neg   module  6  stereo Id 436281625 " fill="rgb(255,29,0)" points="488.767,1745.24 509.182,1745.24 509.182,1737.67 " />
<svg:polygon detid="436281881" count="1" value="114" id="3806134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 neg   module  6  stereo Id 436281881 " fill="rgb(255,29,0)" points="488.767,1737.67 509.182,1737.67 509.182,1730.1 " />
<svg:polygon detid="436282137" count="1" value="114" id="3806135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 neg   module  6  stereo Id 436282137 " fill="rgb(255,29,0)" points="488.767,1730.1 509.182,1730.1 509.182,1722.53 " />
<svg:polygon detid="436282393" count="1" value="114" id="3806136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 neg   module  6  stereo Id 436282393 " fill="rgb(255,29,0)" points="488.767,1722.53 509.182,1722.53 509.182,1714.96 " />
<svg:polygon detid="436282649" count="1" value="114" id="3806137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 neg   module  6  stereo Id 436282649 " fill="rgb(255,29,0)" points="488.767,1714.96 509.182,1714.96 509.182,1707.39 " />
<svg:polygon detid="436282905" count="1" value="114" id="3806138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 neg   module  6  stereo Id 436282905 " fill="rgb(255,29,0)" points="488.767,1707.39 509.182,1707.39 509.182,1699.82 " />
<svg:polygon detid="436283161" count="1" value="114" id="3806139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 neg   module  6  stereo Id 436283161 " fill="rgb(255,29,0)" points="488.767,1699.82 509.182,1699.82 509.182,1692.25 " />
<svg:polygon detid="436283417" count="1" value="114" id="3806140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 neg   module  6  stereo Id 436283417 " fill="rgb(255,29,0)" points="488.767,1692.25 509.182,1692.25 509.182,1684.68 " />
<svg:polygon detid="436283673" count="1" value="114" id="3806141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 neg   module  6  stereo Id 436283673 " fill="rgb(255,29,0)" points="488.767,1684.68 509.182,1684.68 509.182,1677.11 " />
<svg:polygon detid="436283929" count="1" value="114" id="3806142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 neg   module  6  stereo Id 436283929 " fill="rgb(255,29,0)" points="488.767,1677.11 509.182,1677.11 509.182,1669.54 " />
<svg:polygon detid="436306182" count="1" value="114" id="3807001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  1   Id 436306182 " fill="rgb(255,29,0)" points="532.148,1979.92 511.733,1979.92 511.733,1987.49 " />
<svg:polygon detid="436306438" count="1" value="114" id="3807002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  1   Id 436306438 " fill="rgb(255,29,0)" points="532.148,1972.35 511.733,1972.35 511.733,1979.92 " />
<svg:polygon detid="436306694" count="1" value="114" id="3807003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  1   Id 436306694 " fill="rgb(255,29,0)" points="532.148,1964.78 511.733,1964.78 511.733,1972.35 " />
<svg:polygon detid="436306950" count="1" value="114" id="3807004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  1   Id 436306950 " fill="rgb(255,29,0)" points="532.148,1957.21 511.733,1957.21 511.733,1964.78 " />
<svg:polygon detid="436307206" count="1" value="114" id="3807005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  1   Id 436307206 " fill="rgb(255,29,0)" points="532.148,1949.64 511.733,1949.64 511.733,1957.21 " />
<svg:polygon detid="436307462" count="1" value="114" id="3807006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  1   Id 436307462 " fill="rgb(255,29,0)" points="532.148,1942.07 511.733,1942.07 511.733,1949.64 " />
<svg:polygon detid="436307718" count="1" value="114" id="3807007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  1   Id 436307718 " fill="rgb(255,29,0)" points="532.148,1934.5 511.733,1934.5 511.733,1942.07 " />
<svg:polygon detid="436307974" count="1" value="114" id="3807008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  1   Id 436307974 " fill="rgb(255,29,0)" points="532.148,1926.93 511.733,1926.93 511.733,1934.5 " />
<svg:polygon detid="436308230" count="1" value="114" id="3807009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  1   Id 436308230 " fill="rgb(255,29,0)" points="532.148,1919.36 511.733,1919.36 511.733,1926.93 " />
<svg:polygon detid="436308486" count="1" value="114" id="3807010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  1   Id 436308486 " fill="rgb(255,29,0)" points="532.148,1911.79 511.733,1911.79 511.733,1919.36 " />
<svg:polygon detid="436308742" count="1" value="114" id="3807011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  1   Id 436308742 " fill="rgb(255,29,0)" points="532.148,1904.22 511.733,1904.22 511.733,1911.79 " />
<svg:polygon detid="436308998" count="1" value="114" id="3807012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  1   Id 436308998 " fill="rgb(255,29,0)" points="532.148,1896.65 511.733,1896.65 511.733,1904.22 " />
<svg:polygon detid="436309254" count="1" value="114" id="3807013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  1   Id 436309254 " fill="rgb(255,29,0)" points="532.148,1889.08 511.733,1889.08 511.733,1896.65 " />
<svg:polygon detid="436309510" count="1" value="114" id="3807014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  1   Id 436309510 " fill="rgb(255,29,0)" points="532.148,1881.51 511.733,1881.51 511.733,1889.08 " />
<svg:polygon detid="436309766" count="1" value="114" id="3807015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  1   Id 436309766 " fill="rgb(255,29,0)" points="532.148,1873.94 511.733,1873.94 511.733,1881.51 " />
<svg:polygon detid="436310022" count="1" value="114" id="3807016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  1   Id 436310022 " fill="rgb(255,29,0)" points="532.148,1866.37 511.733,1866.37 511.733,1873.94 " />
<svg:polygon detid="436310278" count="1" value="114" id="3807017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  1   Id 436310278 " fill="rgb(255,29,0)" points="532.148,1858.8 511.733,1858.8 511.733,1866.37 " />
<svg:polygon detid="436310534" count="1" value="114" id="3807018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  1   Id 436310534 " fill="rgb(255,29,0)" points="532.148,1851.23 511.733,1851.23 511.733,1858.8 " />
<svg:polygon detid="436310790" count="1" value="114" id="3807019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  1   Id 436310790 " fill="rgb(255,29,0)" points="532.148,1843.66 511.733,1843.66 511.733,1851.23 " />
<svg:polygon detid="436311046" count="1" value="114" id="3807020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  1   Id 436311046 " fill="rgb(255,29,0)" points="532.148,1836.08 511.733,1836.08 511.733,1843.66 " />
<svg:polygon detid="436311302" count="1" value="114" id="3807021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  1   Id 436311302 " fill="rgb(255,29,0)" points="532.148,1828.51 511.733,1828.51 511.733,1836.08 " />
<svg:polygon detid="436311558" count="1" value="114" id="3807022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  1   Id 436311558 " fill="rgb(255,29,0)" points="532.148,1820.94 511.733,1820.94 511.733,1828.51 " />
<svg:polygon detid="436311814" count="1" value="114" id="3807023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  1   Id 436311814 " fill="rgb(255,29,0)" points="532.148,1813.37 511.733,1813.37 511.733,1820.94 " />
<svg:polygon detid="436312070" count="1" value="114" id="3807024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  1   Id 436312070 " fill="rgb(255,29,0)" points="532.148,1805.8 511.733,1805.8 511.733,1813.37 " />
<svg:polygon detid="436312326" count="1" value="114" id="3807025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  1   Id 436312326 " fill="rgb(255,29,0)" points="532.148,1798.23 511.733,1798.23 511.733,1805.8 " />
<svg:polygon detid="436312582" count="1" value="114" id="3807026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  1   Id 436312582 " fill="rgb(255,29,0)" points="532.148,1790.66 511.733,1790.66 511.733,1798.23 " />
<svg:polygon detid="436312838" count="1" value="114" id="3807027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  1   Id 436312838 " fill="rgb(255,29,0)" points="532.148,1783.09 511.733,1783.09 511.733,1790.66 " />
<svg:polygon detid="436313094" count="1" value="114" id="3807028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  1   Id 436313094 " fill="rgb(255,29,0)" points="532.148,1775.52 511.733,1775.52 511.733,1783.09 " />
<svg:polygon detid="436313350" count="1" value="114" id="3807029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  1   Id 436313350 " fill="rgb(255,29,0)" points="532.148,1767.95 511.733,1767.95 511.733,1775.52 " />
<svg:polygon detid="436313606" count="1" value="114" id="3807030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  1   Id 436313606 " fill="rgb(255,29,0)" points="532.148,1760.38 511.733,1760.38 511.733,1767.95 " />
<svg:polygon detid="436313862" count="1" value="114" id="3807031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  1   Id 436313862 " fill="rgb(255,29,0)" points="532.148,1752.81 511.733,1752.81 511.733,1760.38 " />
<svg:polygon detid="436314118" count="1" value="114" id="3807032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  1   Id 436314118 " fill="rgb(255,29,0)" points="532.148,1745.24 511.733,1745.24 511.733,1752.81 " />
<svg:polygon detid="436314374" count="1" value="114" id="3807033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  1   Id 436314374 " fill="rgb(255,29,0)" points="532.148,1737.67 511.733,1737.67 511.733,1745.24 " />
<svg:polygon detid="436314630" count="1" value="114" id="3807034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  1   Id 436314630 " fill="rgb(255,29,0)" points="532.148,1730.1 511.733,1730.1 511.733,1737.67 " />
<svg:polygon detid="436314886" count="1" value="114" id="3807035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  1   Id 436314886 " fill="rgb(255,29,0)" points="532.148,1722.53 511.733,1722.53 511.733,1730.1 " />
<svg:polygon detid="436315142" count="1" value="114" id="3807036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  1   Id 436315142 " fill="rgb(255,29,0)" points="532.148,1714.96 511.733,1714.96 511.733,1722.53 " />
<svg:polygon detid="436315398" count="1" value="114" id="3807037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  1   Id 436315398 " fill="rgb(255,29,0)" points="532.148,1707.39 511.733,1707.39 511.733,1714.96 " />
<svg:polygon detid="436315654" count="1" value="114" id="3807038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  1   Id 436315654 " fill="rgb(255,29,0)" points="532.148,1699.82 511.733,1699.82 511.733,1707.39 " />
<svg:polygon detid="436315910" count="1" value="114" id="3807039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  1   Id 436315910 " fill="rgb(255,29,0)" points="532.148,1692.25 511.733,1692.25 511.733,1699.82 " />
<svg:polygon detid="436316166" count="1" value="114" id="3807040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  1   Id 436316166 " fill="rgb(255,29,0)" points="532.148,1684.68 511.733,1684.68 511.733,1692.25 " />
<svg:polygon detid="436316422" count="1" value="114" id="3807041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  1   Id 436316422 " fill="rgb(255,29,0)" points="532.148,1677.11 511.733,1677.11 511.733,1684.68 " />
<svg:polygon detid="436316678" count="1" value="114" id="3807042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  1   Id 436316678 " fill="rgb(255,29,0)" points="532.148,1669.54 511.733,1669.54 511.733,1677.11 " />
<svg:polygon detid="436306181" count="1" value="114" id="3807101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  1  stereo Id 436306181 " fill="rgb(255,29,0)" points="511.733,1987.49 532.148,1987.49 532.148,1979.92 " />
<svg:polygon detid="436306437" count="1" value="114" id="3807102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  1  stereo Id 436306437 " fill="rgb(255,29,0)" points="511.733,1979.92 532.148,1979.92 532.148,1972.35 " />
<svg:polygon detid="436306693" count="1" value="114" id="3807103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  1  stereo Id 436306693 " fill="rgb(255,29,0)" points="511.733,1972.35 532.148,1972.35 532.148,1964.78 " />
<svg:polygon detid="436306949" count="1" value="114" id="3807104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  1  stereo Id 436306949 " fill="rgb(255,29,0)" points="511.733,1964.78 532.148,1964.78 532.148,1957.21 " />
<svg:polygon detid="436307205" count="1" value="114" id="3807105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  1  stereo Id 436307205 " fill="rgb(255,29,0)" points="511.733,1957.21 532.148,1957.21 532.148,1949.64 " />
<svg:polygon detid="436307461" count="1" value="114" id="3807106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  1  stereo Id 436307461 " fill="rgb(255,29,0)" points="511.733,1949.64 532.148,1949.64 532.148,1942.07 " />
<svg:polygon detid="436307717" count="1" value="114" id="3807107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  1  stereo Id 436307717 " fill="rgb(255,29,0)" points="511.733,1942.07 532.148,1942.07 532.148,1934.5 " />
<svg:polygon detid="436307973" count="1" value="114" id="3807108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  1  stereo Id 436307973 " fill="rgb(255,29,0)" points="511.733,1934.5 532.148,1934.5 532.148,1926.93 " />
<svg:polygon detid="436308229" count="1" value="114" id="3807109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  1  stereo Id 436308229 " fill="rgb(255,29,0)" points="511.733,1926.93 532.148,1926.93 532.148,1919.36 " />
<svg:polygon detid="436308485" count="1" value="114" id="3807110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  1  stereo Id 436308485 " fill="rgb(255,29,0)" points="511.733,1919.36 532.148,1919.36 532.148,1911.79 " />
<svg:polygon detid="436308741" count="1" value="114" id="3807111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  1  stereo Id 436308741 " fill="rgb(255,29,0)" points="511.733,1911.79 532.148,1911.79 532.148,1904.22 " />
<svg:polygon detid="436308997" count="1" value="114" id="3807112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  1  stereo Id 436308997 " fill="rgb(255,29,0)" points="511.733,1904.22 532.148,1904.22 532.148,1896.65 " />
<svg:polygon detid="436309253" count="1" value="114" id="3807113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  1  stereo Id 436309253 " fill="rgb(255,29,0)" points="511.733,1896.65 532.148,1896.65 532.148,1889.08 " />
<svg:polygon detid="436309509" count="1" value="114" id="3807114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  1  stereo Id 436309509 " fill="rgb(255,29,0)" points="511.733,1889.08 532.148,1889.08 532.148,1881.51 " />
<svg:polygon detid="436309765" count="1" value="114" id="3807115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  1  stereo Id 436309765 " fill="rgb(255,29,0)" points="511.733,1881.51 532.148,1881.51 532.148,1873.94 " />
<svg:polygon detid="436310021" count="1" value="114" id="3807116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  1  stereo Id 436310021 " fill="rgb(255,29,0)" points="511.733,1873.94 532.148,1873.94 532.148,1866.37 " />
<svg:polygon detid="436310277" count="1" value="114" id="3807117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  1  stereo Id 436310277 " fill="rgb(255,29,0)" points="511.733,1866.37 532.148,1866.37 532.148,1858.8 " />
<svg:polygon detid="436310533" count="1" value="114" id="3807118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  1  stereo Id 436310533 " fill="rgb(255,29,0)" points="511.733,1858.8 532.148,1858.8 532.148,1851.23 " />
<svg:polygon detid="436310789" count="1" value="114" id="3807119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  1  stereo Id 436310789 " fill="rgb(255,29,0)" points="511.733,1851.23 532.148,1851.23 532.148,1843.66 " />
<svg:polygon detid="436311045" count="1" value="114" id="3807120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  1  stereo Id 436311045 " fill="rgb(255,29,0)" points="511.733,1843.66 532.148,1843.66 532.148,1836.08 " />
<svg:polygon detid="436311301" count="1" value="114" id="3807121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  1  stereo Id 436311301 " fill="rgb(255,29,0)" points="511.733,1836.08 532.148,1836.08 532.148,1828.51 " />
<svg:polygon detid="436311557" count="1" value="114" id="3807122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  1  stereo Id 436311557 " fill="rgb(255,29,0)" points="511.733,1828.51 532.148,1828.51 532.148,1820.94 " />
<svg:polygon detid="436311813" count="1" value="114" id="3807123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  1  stereo Id 436311813 " fill="rgb(255,29,0)" points="511.733,1820.94 532.148,1820.94 532.148,1813.37 " />
<svg:polygon detid="436312069" count="1" value="114" id="3807124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  1  stereo Id 436312069 " fill="rgb(255,29,0)" points="511.733,1813.37 532.148,1813.37 532.148,1805.8 " />
<svg:polygon detid="436312325" count="1" value="114" id="3807125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  1  stereo Id 436312325 " fill="rgb(255,29,0)" points="511.733,1805.8 532.148,1805.8 532.148,1798.23 " />
<svg:polygon detid="436312581" count="1" value="114" id="3807126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  1  stereo Id 436312581 " fill="rgb(255,29,0)" points="511.733,1798.23 532.148,1798.23 532.148,1790.66 " />
<svg:polygon detid="436312837" count="1" value="114" id="3807127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  1  stereo Id 436312837 " fill="rgb(255,29,0)" points="511.733,1790.66 532.148,1790.66 532.148,1783.09 " />
<svg:polygon detid="436313093" count="1" value="114" id="3807128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  1  stereo Id 436313093 " fill="rgb(255,29,0)" points="511.733,1783.09 532.148,1783.09 532.148,1775.52 " />
<svg:polygon detid="436313349" count="1" value="114" id="3807129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  1  stereo Id 436313349 " fill="rgb(255,29,0)" points="511.733,1775.52 532.148,1775.52 532.148,1767.95 " />
<svg:polygon detid="436313605" count="1" value="114" id="3807130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  1  stereo Id 436313605 " fill="rgb(255,29,0)" points="511.733,1767.95 532.148,1767.95 532.148,1760.38 " />
<svg:polygon detid="436313861" count="1" value="114" id="3807131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  1  stereo Id 436313861 " fill="rgb(255,29,0)" points="511.733,1760.38 532.148,1760.38 532.148,1752.81 " />
<svg:polygon detid="436314117" count="1" value="114" id="3807132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  1  stereo Id 436314117 " fill="rgb(255,29,0)" points="511.733,1752.81 532.148,1752.81 532.148,1745.24 " />
<svg:polygon detid="436314373" count="1" value="114" id="3807133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  1  stereo Id 436314373 " fill="rgb(255,29,0)" points="511.733,1745.24 532.148,1745.24 532.148,1737.67 " />
<svg:polygon detid="436314629" count="1" value="114" id="3807134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  1  stereo Id 436314629 " fill="rgb(255,29,0)" points="511.733,1737.67 532.148,1737.67 532.148,1730.1 " />
<svg:polygon detid="436314885" count="1" value="114" id="3807135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  1  stereo Id 436314885 " fill="rgb(255,29,0)" points="511.733,1730.1 532.148,1730.1 532.148,1722.53 " />
<svg:polygon detid="436315141" count="1" value="114" id="3807136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  1  stereo Id 436315141 " fill="rgb(255,29,0)" points="511.733,1722.53 532.148,1722.53 532.148,1714.96 " />
<svg:polygon detid="436315397" count="1" value="114" id="3807137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  1  stereo Id 436315397 " fill="rgb(255,29,0)" points="511.733,1714.96 532.148,1714.96 532.148,1707.39 " />
<svg:polygon detid="436315653" count="1" value="114" id="3807138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  1  stereo Id 436315653 " fill="rgb(255,29,0)" points="511.733,1707.39 532.148,1707.39 532.148,1699.82 " />
<svg:polygon detid="436315909" count="1" value="114" id="3807139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  1  stereo Id 436315909 " fill="rgb(255,29,0)" points="511.733,1699.82 532.148,1699.82 532.148,1692.25 " />
<svg:polygon detid="436316165" count="1" value="114" id="3807140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  1  stereo Id 436316165 " fill="rgb(255,29,0)" points="511.733,1692.25 532.148,1692.25 532.148,1684.68 " />
<svg:polygon detid="436316421" count="1" value="114" id="3807141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  1  stereo Id 436316421 " fill="rgb(255,29,0)" points="511.733,1684.68 532.148,1684.68 532.148,1677.11 " />
<svg:polygon detid="436316677" count="1" value="114" id="3807142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  1  stereo Id 436316677 " fill="rgb(255,29,0)" points="511.733,1677.11 532.148,1677.11 532.148,1669.54 " />
<svg:polygon detid="436306186" count="1" value="114" id="3808001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  2   Id 436306186 " fill="rgb(255,29,0)" points="555.115,1979.92 534.7,1979.92 534.7,1987.49 " />
<svg:polygon detid="436306442" count="1" value="114" id="3808002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  2   Id 436306442 " fill="rgb(255,29,0)" points="555.115,1972.35 534.7,1972.35 534.7,1979.92 " />
<svg:polygon detid="436306698" count="1" value="114" id="3808003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  2   Id 436306698 " fill="rgb(255,29,0)" points="555.115,1964.78 534.7,1964.78 534.7,1972.35 " />
<svg:polygon detid="436306954" count="1" value="114" id="3808004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  2   Id 436306954 " fill="rgb(255,29,0)" points="555.115,1957.21 534.7,1957.21 534.7,1964.78 " />
<svg:polygon detid="436307210" count="1" value="114" id="3808005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  2   Id 436307210 " fill="rgb(255,29,0)" points="555.115,1949.64 534.7,1949.64 534.7,1957.21 " />
<svg:polygon detid="436307466" count="1" value="114" id="3808006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  2   Id 436307466 " fill="rgb(255,29,0)" points="555.115,1942.07 534.7,1942.07 534.7,1949.64 " />
<svg:polygon detid="436307722" count="1" value="114" id="3808007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  2   Id 436307722 " fill="rgb(255,29,0)" points="555.115,1934.5 534.7,1934.5 534.7,1942.07 " />
<svg:polygon detid="436307978" count="1" value="114" id="3808008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  2   Id 436307978 " fill="rgb(255,29,0)" points="555.115,1926.93 534.7,1926.93 534.7,1934.5 " />
<svg:polygon detid="436308234" count="1" value="114" id="3808009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  2   Id 436308234 " fill="rgb(255,29,0)" points="555.115,1919.36 534.7,1919.36 534.7,1926.93 " />
<svg:polygon detid="436308490" count="1" value="114" id="3808010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  2   Id 436308490 " fill="rgb(255,29,0)" points="555.115,1911.79 534.7,1911.79 534.7,1919.36 " />
<svg:polygon detid="436308746" count="1" value="114" id="3808011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  2   Id 436308746 " fill="rgb(255,29,0)" points="555.115,1904.22 534.7,1904.22 534.7,1911.79 " />
<svg:polygon detid="436309002" count="1" value="114" id="3808012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  2   Id 436309002 " fill="rgb(255,29,0)" points="555.115,1896.65 534.7,1896.65 534.7,1904.22 " />
<svg:polygon detid="436309258" count="1" value="114" id="3808013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  2   Id 436309258 " fill="rgb(255,29,0)" points="555.115,1889.08 534.7,1889.08 534.7,1896.65 " />
<svg:polygon detid="436309514" count="1" value="114" id="3808014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  2   Id 436309514 " fill="rgb(255,29,0)" points="555.115,1881.51 534.7,1881.51 534.7,1889.08 " />
<svg:polygon detid="436309770" count="1" value="114" id="3808015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  2   Id 436309770 " fill="rgb(255,29,0)" points="555.115,1873.94 534.7,1873.94 534.7,1881.51 " />
<svg:polygon detid="436310026" count="1" value="114" id="3808016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  2   Id 436310026 " fill="rgb(255,29,0)" points="555.115,1866.37 534.7,1866.37 534.7,1873.94 " />
<svg:polygon detid="436310282" count="1" value="114" id="3808017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  2   Id 436310282 " fill="rgb(255,29,0)" points="555.115,1858.8 534.7,1858.8 534.7,1866.37 " />
<svg:polygon detid="436310538" count="1" value="114" id="3808018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  2   Id 436310538 " fill="rgb(255,29,0)" points="555.115,1851.23 534.7,1851.23 534.7,1858.8 " />
<svg:polygon detid="436310794" count="1" value="114" id="3808019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  2   Id 436310794 " fill="rgb(255,29,0)" points="555.115,1843.66 534.7,1843.66 534.7,1851.23 " />
<svg:polygon detid="436311050" count="1" value="114" id="3808020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  2   Id 436311050 " fill="rgb(255,29,0)" points="555.115,1836.08 534.7,1836.08 534.7,1843.66 " />
<svg:polygon detid="436311306" count="1" value="114" id="3808021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  2   Id 436311306 " fill="rgb(255,29,0)" points="555.115,1828.51 534.7,1828.51 534.7,1836.08 " />
<svg:polygon detid="436311562" count="1" value="114" id="3808022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  2   Id 436311562 " fill="rgb(255,29,0)" points="555.115,1820.94 534.7,1820.94 534.7,1828.51 " />
<svg:polygon detid="436311818" count="1" value="114" id="3808023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  2   Id 436311818 " fill="rgb(255,29,0)" points="555.115,1813.37 534.7,1813.37 534.7,1820.94 " />
<svg:polygon detid="436312074" count="1" value="114" id="3808024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  2   Id 436312074 " fill="rgb(255,29,0)" points="555.115,1805.8 534.7,1805.8 534.7,1813.37 " />
<svg:polygon detid="436312330" count="1" value="114" id="3808025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  2   Id 436312330 " fill="rgb(255,29,0)" points="555.115,1798.23 534.7,1798.23 534.7,1805.8 " />
<svg:polygon detid="436312586" count="1" value="114" id="3808026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  2   Id 436312586 " fill="rgb(255,29,0)" points="555.115,1790.66 534.7,1790.66 534.7,1798.23 " />
<svg:polygon detid="436312842" count="1" value="114" id="3808027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  2   Id 436312842 " fill="rgb(255,29,0)" points="555.115,1783.09 534.7,1783.09 534.7,1790.66 " />
<svg:polygon detid="436313098" count="1" value="114" id="3808028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  2   Id 436313098 " fill="rgb(255,29,0)" points="555.115,1775.52 534.7,1775.52 534.7,1783.09 " />
<svg:polygon detid="436313354" count="1" value="114" id="3808029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  2   Id 436313354 " fill="rgb(255,29,0)" points="555.115,1767.95 534.7,1767.95 534.7,1775.52 " />
<svg:polygon detid="436313610" count="1" value="114" id="3808030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  2   Id 436313610 " fill="rgb(255,29,0)" points="555.115,1760.38 534.7,1760.38 534.7,1767.95 " />
<svg:polygon detid="436313866" count="1" value="114" id="3808031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  2   Id 436313866 " fill="rgb(255,29,0)" points="555.115,1752.81 534.7,1752.81 534.7,1760.38 " />
<svg:polygon detid="436314122" count="1" value="114" id="3808032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  2   Id 436314122 " fill="rgb(255,29,0)" points="555.115,1745.24 534.7,1745.24 534.7,1752.81 " />
<svg:polygon detid="436314378" count="1" value="114" id="3808033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  2   Id 436314378 " fill="rgb(255,29,0)" points="555.115,1737.67 534.7,1737.67 534.7,1745.24 " />
<svg:polygon detid="436314634" count="1" value="114" id="3808034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  2   Id 436314634 " fill="rgb(255,29,0)" points="555.115,1730.1 534.7,1730.1 534.7,1737.67 " />
<svg:polygon detid="436314890" count="1" value="114" id="3808035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  2   Id 436314890 " fill="rgb(255,29,0)" points="555.115,1722.53 534.7,1722.53 534.7,1730.1 " />
<svg:polygon detid="436315146" count="1" value="114" id="3808036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  2   Id 436315146 " fill="rgb(255,29,0)" points="555.115,1714.96 534.7,1714.96 534.7,1722.53 " />
<svg:polygon detid="436315402" count="1" value="114" id="3808037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  2   Id 436315402 " fill="rgb(255,29,0)" points="555.115,1707.39 534.7,1707.39 534.7,1714.96 " />
<svg:polygon detid="436315658" count="1" value="114" id="3808038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  2   Id 436315658 " fill="rgb(255,29,0)" points="555.115,1699.82 534.7,1699.82 534.7,1707.39 " />
<svg:polygon detid="436315914" count="1" value="114" id="3808039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  2   Id 436315914 " fill="rgb(255,29,0)" points="555.115,1692.25 534.7,1692.25 534.7,1699.82 " />
<svg:polygon detid="436316170" count="1" value="114" id="3808040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  2   Id 436316170 " fill="rgb(255,29,0)" points="555.115,1684.68 534.7,1684.68 534.7,1692.25 " />
<svg:polygon detid="436316426" count="1" value="114" id="3808041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  2   Id 436316426 " fill="rgb(255,29,0)" points="555.115,1677.11 534.7,1677.11 534.7,1684.68 " />
<svg:polygon detid="436316682" count="1" value="114" id="3808042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  2   Id 436316682 " fill="rgb(255,29,0)" points="555.115,1669.54 534.7,1669.54 534.7,1677.11 " />
<svg:polygon detid="436306185" count="1" value="114" id="3808101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  2  stereo Id 436306185 " fill="rgb(255,29,0)" points="534.7,1987.49 555.115,1987.49 555.115,1979.92 " />
<svg:polygon detid="436306441" count="1" value="114" id="3808102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  2  stereo Id 436306441 " fill="rgb(255,29,0)" points="534.7,1979.92 555.115,1979.92 555.115,1972.35 " />
<svg:polygon detid="436306697" count="1" value="114" id="3808103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  2  stereo Id 436306697 " fill="rgb(255,29,0)" points="534.7,1972.35 555.115,1972.35 555.115,1964.78 " />
<svg:polygon detid="436306953" count="1" value="114" id="3808104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  2  stereo Id 436306953 " fill="rgb(255,29,0)" points="534.7,1964.78 555.115,1964.78 555.115,1957.21 " />
<svg:polygon detid="436307209" count="1" value="114" id="3808105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  2  stereo Id 436307209 " fill="rgb(255,29,0)" points="534.7,1957.21 555.115,1957.21 555.115,1949.64 " />
<svg:polygon detid="436307465" count="1" value="114" id="3808106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  2  stereo Id 436307465 " fill="rgb(255,29,0)" points="534.7,1949.64 555.115,1949.64 555.115,1942.07 " />
<svg:polygon detid="436307721" count="1" value="114" id="3808107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  2  stereo Id 436307721 " fill="rgb(255,29,0)" points="534.7,1942.07 555.115,1942.07 555.115,1934.5 " />
<svg:polygon detid="436307977" count="1" value="114" id="3808108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  2  stereo Id 436307977 " fill="rgb(255,29,0)" points="534.7,1934.5 555.115,1934.5 555.115,1926.93 " />
<svg:polygon detid="436308233" count="1" value="114" id="3808109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  2  stereo Id 436308233 " fill="rgb(255,29,0)" points="534.7,1926.93 555.115,1926.93 555.115,1919.36 " />
<svg:polygon detid="436308489" count="1" value="114" id="3808110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  2  stereo Id 436308489 " fill="rgb(255,29,0)" points="534.7,1919.36 555.115,1919.36 555.115,1911.79 " />
<svg:polygon detid="436308745" count="1" value="114" id="3808111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  2  stereo Id 436308745 " fill="rgb(255,29,0)" points="534.7,1911.79 555.115,1911.79 555.115,1904.22 " />
<svg:polygon detid="436309001" count="1" value="114" id="3808112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  2  stereo Id 436309001 " fill="rgb(255,29,0)" points="534.7,1904.22 555.115,1904.22 555.115,1896.65 " />
<svg:polygon detid="436309257" count="1" value="114" id="3808113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  2  stereo Id 436309257 " fill="rgb(255,29,0)" points="534.7,1896.65 555.115,1896.65 555.115,1889.08 " />
<svg:polygon detid="436309513" count="1" value="114" id="3808114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  2  stereo Id 436309513 " fill="rgb(255,29,0)" points="534.7,1889.08 555.115,1889.08 555.115,1881.51 " />
<svg:polygon detid="436309769" count="1" value="114" id="3808115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  2  stereo Id 436309769 " fill="rgb(255,29,0)" points="534.7,1881.51 555.115,1881.51 555.115,1873.94 " />
<svg:polygon detid="436310025" count="1" value="114" id="3808116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  2  stereo Id 436310025 " fill="rgb(255,29,0)" points="534.7,1873.94 555.115,1873.94 555.115,1866.37 " />
<svg:polygon detid="436310281" count="1" value="114" id="3808117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  2  stereo Id 436310281 " fill="rgb(255,29,0)" points="534.7,1866.37 555.115,1866.37 555.115,1858.8 " />
<svg:polygon detid="436310537" count="1" value="114" id="3808118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  2  stereo Id 436310537 " fill="rgb(255,29,0)" points="534.7,1858.8 555.115,1858.8 555.115,1851.23 " />
<svg:polygon detid="436310793" count="1" value="114" id="3808119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  2  stereo Id 436310793 " fill="rgb(255,29,0)" points="534.7,1851.23 555.115,1851.23 555.115,1843.66 " />
<svg:polygon detid="436311049" count="1" value="114" id="3808120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  2  stereo Id 436311049 " fill="rgb(255,29,0)" points="534.7,1843.66 555.115,1843.66 555.115,1836.08 " />
<svg:polygon detid="436311305" count="1" value="114" id="3808121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  2  stereo Id 436311305 " fill="rgb(255,29,0)" points="534.7,1836.08 555.115,1836.08 555.115,1828.51 " />
<svg:polygon detid="436311561" count="1" value="114" id="3808122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  2  stereo Id 436311561 " fill="rgb(255,29,0)" points="534.7,1828.51 555.115,1828.51 555.115,1820.94 " />
<svg:polygon detid="436311817" count="1" value="114" id="3808123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  2  stereo Id 436311817 " fill="rgb(255,29,0)" points="534.7,1820.94 555.115,1820.94 555.115,1813.37 " />
<svg:polygon detid="436312073" count="1" value="114" id="3808124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  2  stereo Id 436312073 " fill="rgb(255,29,0)" points="534.7,1813.37 555.115,1813.37 555.115,1805.8 " />
<svg:polygon detid="436312329" count="1" value="114" id="3808125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  2  stereo Id 436312329 " fill="rgb(255,29,0)" points="534.7,1805.8 555.115,1805.8 555.115,1798.23 " />
<svg:polygon detid="436312585" count="1" value="114" id="3808126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  2  stereo Id 436312585 " fill="rgb(255,29,0)" points="534.7,1798.23 555.115,1798.23 555.115,1790.66 " />
<svg:polygon detid="436312841" count="1" value="114" id="3808127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  2  stereo Id 436312841 " fill="rgb(255,29,0)" points="534.7,1790.66 555.115,1790.66 555.115,1783.09 " />
<svg:polygon detid="436313097" count="1" value="114" id="3808128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  2  stereo Id 436313097 " fill="rgb(255,29,0)" points="534.7,1783.09 555.115,1783.09 555.115,1775.52 " />
<svg:polygon detid="436313353" count="1" value="114" id="3808129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  2  stereo Id 436313353 " fill="rgb(255,29,0)" points="534.7,1775.52 555.115,1775.52 555.115,1767.95 " />
<svg:polygon detid="436313609" count="1" value="114" id="3808130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  2  stereo Id 436313609 " fill="rgb(255,29,0)" points="534.7,1767.95 555.115,1767.95 555.115,1760.38 " />
<svg:polygon detid="436313865" count="1" value="114" id="3808131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  2  stereo Id 436313865 " fill="rgb(255,29,0)" points="534.7,1760.38 555.115,1760.38 555.115,1752.81 " />
<svg:polygon detid="436314121" count="1" value="114" id="3808132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  2  stereo Id 436314121 " fill="rgb(255,29,0)" points="534.7,1752.81 555.115,1752.81 555.115,1745.24 " />
<svg:polygon detid="436314377" count="1" value="114" id="3808133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  2  stereo Id 436314377 " fill="rgb(255,29,0)" points="534.7,1745.24 555.115,1745.24 555.115,1737.67 " />
<svg:polygon detid="436314633" count="1" value="114" id="3808134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  2  stereo Id 436314633 " fill="rgb(255,29,0)" points="534.7,1737.67 555.115,1737.67 555.115,1730.1 " />
<svg:polygon detid="436314889" count="1" value="114" id="3808135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  2  stereo Id 436314889 " fill="rgb(255,29,0)" points="534.7,1730.1 555.115,1730.1 555.115,1722.53 " />
<svg:polygon detid="436315145" count="1" value="114" id="3808136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  2  stereo Id 436315145 " fill="rgb(255,29,0)" points="534.7,1722.53 555.115,1722.53 555.115,1714.96 " />
<svg:polygon detid="436315401" count="1" value="114" id="3808137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  2  stereo Id 436315401 " fill="rgb(255,29,0)" points="534.7,1714.96 555.115,1714.96 555.115,1707.39 " />
<svg:polygon detid="436315657" count="1" value="114" id="3808138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  2  stereo Id 436315657 " fill="rgb(255,29,0)" points="534.7,1707.39 555.115,1707.39 555.115,1699.82 " />
<svg:polygon detid="436315913" count="1" value="114" id="3808139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  2  stereo Id 436315913 " fill="rgb(255,29,0)" points="534.7,1699.82 555.115,1699.82 555.115,1692.25 " />
<svg:polygon detid="436316169" count="1" value="114" id="3808140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  2  stereo Id 436316169 " fill="rgb(255,29,0)" points="534.7,1692.25 555.115,1692.25 555.115,1684.68 " />
<svg:polygon detid="436316425" count="1" value="114" id="3808141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  2  stereo Id 436316425 " fill="rgb(255,29,0)" points="534.7,1684.68 555.115,1684.68 555.115,1677.11 " />
<svg:polygon detid="436316681" count="1" value="114" id="3808142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  2  stereo Id 436316681 " fill="rgb(255,29,0)" points="534.7,1677.11 555.115,1677.11 555.115,1669.54 " />
<svg:polygon detid="436306190" count="1" value="114" id="3809001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  3   Id 436306190 " fill="rgb(255,29,0)" points="578.081,1979.92 557.667,1979.92 557.667,1987.49 " />
<svg:polygon detid="436306446" count="1" value="114" id="3809002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  3   Id 436306446 " fill="rgb(255,29,0)" points="578.081,1972.35 557.667,1972.35 557.667,1979.92 " />
<svg:polygon detid="436306702" count="1" value="114" id="3809003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  3   Id 436306702 " fill="rgb(255,29,0)" points="578.081,1964.78 557.667,1964.78 557.667,1972.35 " />
<svg:polygon detid="436306958" count="1" value="114" id="3809004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  3   Id 436306958 " fill="rgb(255,29,0)" points="578.081,1957.21 557.667,1957.21 557.667,1964.78 " />
<svg:polygon detid="436307214" count="1" value="114" id="3809005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  3   Id 436307214 " fill="rgb(255,29,0)" points="578.081,1949.64 557.667,1949.64 557.667,1957.21 " />
<svg:polygon detid="436307470" count="1" value="114" id="3809006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  3   Id 436307470 " fill="rgb(255,29,0)" points="578.081,1942.07 557.667,1942.07 557.667,1949.64 " />
<svg:polygon detid="436307726" count="1" value="114" id="3809007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  3   Id 436307726 " fill="rgb(255,29,0)" points="578.081,1934.5 557.667,1934.5 557.667,1942.07 " />
<svg:polygon detid="436307982" count="1" value="114" id="3809008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  3   Id 436307982 " fill="rgb(255,29,0)" points="578.081,1926.93 557.667,1926.93 557.667,1934.5 " />
<svg:polygon detid="436308238" count="1" value="114" id="3809009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  3   Id 436308238 " fill="rgb(255,29,0)" points="578.081,1919.36 557.667,1919.36 557.667,1926.93 " />
<svg:polygon detid="436308494" count="1" value="114" id="3809010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  3   Id 436308494 " fill="rgb(255,29,0)" points="578.081,1911.79 557.667,1911.79 557.667,1919.36 " />
<svg:polygon detid="436308750" count="1" value="114" id="3809011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  3   Id 436308750 " fill="rgb(255,29,0)" points="578.081,1904.22 557.667,1904.22 557.667,1911.79 " />
<svg:polygon detid="436309006" count="1" value="114" id="3809012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  3   Id 436309006 " fill="rgb(255,29,0)" points="578.081,1896.65 557.667,1896.65 557.667,1904.22 " />
<svg:polygon detid="436309262" count="1" value="114" id="3809013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  3   Id 436309262 " fill="rgb(255,29,0)" points="578.081,1889.08 557.667,1889.08 557.667,1896.65 " />
<svg:polygon detid="436309518" count="1" value="114" id="3809014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  3   Id 436309518 " fill="rgb(255,29,0)" points="578.081,1881.51 557.667,1881.51 557.667,1889.08 " />
<svg:polygon detid="436309774" count="1" value="114" id="3809015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  3   Id 436309774 " fill="rgb(255,29,0)" points="578.081,1873.94 557.667,1873.94 557.667,1881.51 " />
<svg:polygon detid="436310030" count="1" value="114" id="3809016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  3   Id 436310030 " fill="rgb(255,29,0)" points="578.081,1866.37 557.667,1866.37 557.667,1873.94 " />
<svg:polygon detid="436310286" count="1" value="114" id="3809017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  3   Id 436310286 " fill="rgb(255,29,0)" points="578.081,1858.8 557.667,1858.8 557.667,1866.37 " />
<svg:polygon detid="436310542" count="1" value="114" id="3809018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  3   Id 436310542 " fill="rgb(255,29,0)" points="578.081,1851.23 557.667,1851.23 557.667,1858.8 " />
<svg:polygon detid="436310798" count="1" value="114" id="3809019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  3   Id 436310798 " fill="rgb(255,29,0)" points="578.081,1843.66 557.667,1843.66 557.667,1851.23 " />
<svg:polygon detid="436311054" count="1" value="114" id="3809020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  3   Id 436311054 " fill="rgb(255,29,0)" points="578.081,1836.08 557.667,1836.08 557.667,1843.66 " />
<svg:polygon detid="436311310" count="1" value="114" id="3809021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  3   Id 436311310 " fill="rgb(255,29,0)" points="578.081,1828.51 557.667,1828.51 557.667,1836.08 " />
<svg:polygon detid="436311566" count="1" value="114" id="3809022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  3   Id 436311566 " fill="rgb(255,29,0)" points="578.081,1820.94 557.667,1820.94 557.667,1828.51 " />
<svg:polygon detid="436311822" count="1" value="114" id="3809023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  3   Id 436311822 " fill="rgb(255,29,0)" points="578.081,1813.37 557.667,1813.37 557.667,1820.94 " />
<svg:polygon detid="436312078" count="1" value="114" id="3809024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  3   Id 436312078 " fill="rgb(255,29,0)" points="578.081,1805.8 557.667,1805.8 557.667,1813.37 " />
<svg:polygon detid="436312334" count="1" value="114" id="3809025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  3   Id 436312334 " fill="rgb(255,29,0)" points="578.081,1798.23 557.667,1798.23 557.667,1805.8 " />
<svg:polygon detid="436312590" count="1" value="114" id="3809026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  3   Id 436312590 " fill="rgb(255,29,0)" points="578.081,1790.66 557.667,1790.66 557.667,1798.23 " />
<svg:polygon detid="436312846" count="1" value="114" id="3809027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  3   Id 436312846 " fill="rgb(255,29,0)" points="578.081,1783.09 557.667,1783.09 557.667,1790.66 " />
<svg:polygon detid="436313102" count="1" value="114" id="3809028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  3   Id 436313102 " fill="rgb(255,29,0)" points="578.081,1775.52 557.667,1775.52 557.667,1783.09 " />
<svg:polygon detid="436313358" count="1" value="114" id="3809029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  3   Id 436313358 " fill="rgb(255,29,0)" points="578.081,1767.95 557.667,1767.95 557.667,1775.52 " />
<svg:polygon detid="436313614" count="1" value="114" id="3809030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  3   Id 436313614 " fill="rgb(255,29,0)" points="578.081,1760.38 557.667,1760.38 557.667,1767.95 " />
<svg:polygon detid="436313870" count="1" value="114" id="3809031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  3   Id 436313870 " fill="rgb(255,29,0)" points="578.081,1752.81 557.667,1752.81 557.667,1760.38 " />
<svg:polygon detid="436314126" count="1" value="114" id="3809032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  3   Id 436314126 " fill="rgb(255,29,0)" points="578.081,1745.24 557.667,1745.24 557.667,1752.81 " />
<svg:polygon detid="436314382" count="1" value="114" id="3809033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  3   Id 436314382 " fill="rgb(255,29,0)" points="578.081,1737.67 557.667,1737.67 557.667,1745.24 " />
<svg:polygon detid="436314638" count="1" value="114" id="3809034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  3   Id 436314638 " fill="rgb(255,29,0)" points="578.081,1730.1 557.667,1730.1 557.667,1737.67 " />
<svg:polygon detid="436314894" count="1" value="114" id="3809035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  3   Id 436314894 " fill="rgb(255,29,0)" points="578.081,1722.53 557.667,1722.53 557.667,1730.1 " />
<svg:polygon detid="436315150" count="1" value="114" id="3809036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  3   Id 436315150 " fill="rgb(255,29,0)" points="578.081,1714.96 557.667,1714.96 557.667,1722.53 " />
<svg:polygon detid="436315406" count="1" value="114" id="3809037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  3   Id 436315406 " fill="rgb(255,29,0)" points="578.081,1707.39 557.667,1707.39 557.667,1714.96 " />
<svg:polygon detid="436315662" count="1" value="114" id="3809038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  3   Id 436315662 " fill="rgb(255,29,0)" points="578.081,1699.82 557.667,1699.82 557.667,1707.39 " />
<svg:polygon detid="436315918" count="1" value="114" id="3809039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  3   Id 436315918 " fill="rgb(255,29,0)" points="578.081,1692.25 557.667,1692.25 557.667,1699.82 " />
<svg:polygon detid="436316174" count="1" value="114" id="3809040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  3   Id 436316174 " fill="rgb(255,29,0)" points="578.081,1684.68 557.667,1684.68 557.667,1692.25 " />
<svg:polygon detid="436316430" count="1" value="114" id="3809041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  3   Id 436316430 " fill="rgb(255,29,0)" points="578.081,1677.11 557.667,1677.11 557.667,1684.68 " />
<svg:polygon detid="436316686" count="1" value="114" id="3809042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  3   Id 436316686 " fill="rgb(255,29,0)" points="578.081,1669.54 557.667,1669.54 557.667,1677.11 " />
<svg:polygon detid="436306189" count="1" value="114" id="3809101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  3  stereo Id 436306189 " fill="rgb(255,29,0)" points="557.667,1987.49 578.081,1987.49 578.081,1979.92 " />
<svg:polygon detid="436306445" count="1" value="114" id="3809102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  3  stereo Id 436306445 " fill="rgb(255,29,0)" points="557.667,1979.92 578.081,1979.92 578.081,1972.35 " />
<svg:polygon detid="436306701" count="1" value="114" id="3809103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  3  stereo Id 436306701 " fill="rgb(255,29,0)" points="557.667,1972.35 578.081,1972.35 578.081,1964.78 " />
<svg:polygon detid="436306957" count="1" value="114" id="3809104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  3  stereo Id 436306957 " fill="rgb(255,29,0)" points="557.667,1964.78 578.081,1964.78 578.081,1957.21 " />
<svg:polygon detid="436307213" count="1" value="114" id="3809105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  3  stereo Id 436307213 " fill="rgb(255,29,0)" points="557.667,1957.21 578.081,1957.21 578.081,1949.64 " />
<svg:polygon detid="436307469" count="1" value="114" id="3809106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  3  stereo Id 436307469 " fill="rgb(255,29,0)" points="557.667,1949.64 578.081,1949.64 578.081,1942.07 " />
<svg:polygon detid="436307725" count="1" value="114" id="3809107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  3  stereo Id 436307725 " fill="rgb(255,29,0)" points="557.667,1942.07 578.081,1942.07 578.081,1934.5 " />
<svg:polygon detid="436307981" count="1" value="114" id="3809108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  3  stereo Id 436307981 " fill="rgb(255,29,0)" points="557.667,1934.5 578.081,1934.5 578.081,1926.93 " />
<svg:polygon detid="436308237" count="1" value="114" id="3809109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  3  stereo Id 436308237 " fill="rgb(255,29,0)" points="557.667,1926.93 578.081,1926.93 578.081,1919.36 " />
<svg:polygon detid="436308493" count="1" value="114" id="3809110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  3  stereo Id 436308493 " fill="rgb(255,29,0)" points="557.667,1919.36 578.081,1919.36 578.081,1911.79 " />
<svg:polygon detid="436308749" count="1" value="114" id="3809111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  3  stereo Id 436308749 " fill="rgb(255,29,0)" points="557.667,1911.79 578.081,1911.79 578.081,1904.22 " />
<svg:polygon detid="436309005" count="1" value="114" id="3809112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  3  stereo Id 436309005 " fill="rgb(255,29,0)" points="557.667,1904.22 578.081,1904.22 578.081,1896.65 " />
<svg:polygon detid="436309261" count="1" value="114" id="3809113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  3  stereo Id 436309261 " fill="rgb(255,29,0)" points="557.667,1896.65 578.081,1896.65 578.081,1889.08 " />
<svg:polygon detid="436309517" count="1" value="114" id="3809114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  3  stereo Id 436309517 " fill="rgb(255,29,0)" points="557.667,1889.08 578.081,1889.08 578.081,1881.51 " />
<svg:polygon detid="436309773" count="1" value="114" id="3809115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  3  stereo Id 436309773 " fill="rgb(255,29,0)" points="557.667,1881.51 578.081,1881.51 578.081,1873.94 " />
<svg:polygon detid="436310029" count="1" value="114" id="3809116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  3  stereo Id 436310029 " fill="rgb(255,29,0)" points="557.667,1873.94 578.081,1873.94 578.081,1866.37 " />
<svg:polygon detid="436310285" count="1" value="114" id="3809117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  3  stereo Id 436310285 " fill="rgb(255,29,0)" points="557.667,1866.37 578.081,1866.37 578.081,1858.8 " />
<svg:polygon detid="436310541" count="1" value="114" id="3809118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  3  stereo Id 436310541 " fill="rgb(255,29,0)" points="557.667,1858.8 578.081,1858.8 578.081,1851.23 " />
<svg:polygon detid="436310797" count="1" value="114" id="3809119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  3  stereo Id 436310797 " fill="rgb(255,29,0)" points="557.667,1851.23 578.081,1851.23 578.081,1843.66 " />
<svg:polygon detid="436311053" count="1" value="114" id="3809120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  3  stereo Id 436311053 " fill="rgb(255,29,0)" points="557.667,1843.66 578.081,1843.66 578.081,1836.08 " />
<svg:polygon detid="436311309" count="1" value="114" id="3809121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  3  stereo Id 436311309 " fill="rgb(255,29,0)" points="557.667,1836.08 578.081,1836.08 578.081,1828.51 " />
<svg:polygon detid="436311565" count="1" value="114" id="3809122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  3  stereo Id 436311565 " fill="rgb(255,29,0)" points="557.667,1828.51 578.081,1828.51 578.081,1820.94 " />
<svg:polygon detid="436311821" count="1" value="114" id="3809123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  3  stereo Id 436311821 " fill="rgb(255,29,0)" points="557.667,1820.94 578.081,1820.94 578.081,1813.37 " />
<svg:polygon detid="436312077" count="1" value="114" id="3809124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  3  stereo Id 436312077 " fill="rgb(255,29,0)" points="557.667,1813.37 578.081,1813.37 578.081,1805.8 " />
<svg:polygon detid="436312333" count="1" value="114" id="3809125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  3  stereo Id 436312333 " fill="rgb(255,29,0)" points="557.667,1805.8 578.081,1805.8 578.081,1798.23 " />
<svg:polygon detid="436312589" count="1" value="114" id="3809126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  3  stereo Id 436312589 " fill="rgb(255,29,0)" points="557.667,1798.23 578.081,1798.23 578.081,1790.66 " />
<svg:polygon detid="436312845" count="1" value="114" id="3809127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  3  stereo Id 436312845 " fill="rgb(255,29,0)" points="557.667,1790.66 578.081,1790.66 578.081,1783.09 " />
<svg:polygon detid="436313101" count="1" value="114" id="3809128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  3  stereo Id 436313101 " fill="rgb(255,29,0)" points="557.667,1783.09 578.081,1783.09 578.081,1775.52 " />
<svg:polygon detid="436313357" count="1" value="114" id="3809129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  3  stereo Id 436313357 " fill="rgb(255,29,0)" points="557.667,1775.52 578.081,1775.52 578.081,1767.95 " />
<svg:polygon detid="436313613" count="1" value="114" id="3809130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  3  stereo Id 436313613 " fill="rgb(255,29,0)" points="557.667,1767.95 578.081,1767.95 578.081,1760.38 " />
<svg:polygon detid="436313869" count="1" value="114" id="3809131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  3  stereo Id 436313869 " fill="rgb(255,29,0)" points="557.667,1760.38 578.081,1760.38 578.081,1752.81 " />
<svg:polygon detid="436314125" count="1" value="114" id="3809132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  3  stereo Id 436314125 " fill="rgb(255,29,0)" points="557.667,1752.81 578.081,1752.81 578.081,1745.24 " />
<svg:polygon detid="436314381" count="1" value="114" id="3809133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  3  stereo Id 436314381 " fill="rgb(255,29,0)" points="557.667,1745.24 578.081,1745.24 578.081,1737.67 " />
<svg:polygon detid="436314637" count="1" value="114" id="3809134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  3  stereo Id 436314637 " fill="rgb(255,29,0)" points="557.667,1737.67 578.081,1737.67 578.081,1730.1 " />
<svg:polygon detid="436314893" count="1" value="114" id="3809135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  3  stereo Id 436314893 " fill="rgb(255,29,0)" points="557.667,1730.1 578.081,1730.1 578.081,1722.53 " />
<svg:polygon detid="436315149" count="1" value="114" id="3809136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  3  stereo Id 436315149 " fill="rgb(255,29,0)" points="557.667,1722.53 578.081,1722.53 578.081,1714.96 " />
<svg:polygon detid="436315405" count="1" value="114" id="3809137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  3  stereo Id 436315405 " fill="rgb(255,29,0)" points="557.667,1714.96 578.081,1714.96 578.081,1707.39 " />
<svg:polygon detid="436315661" count="1" value="114" id="3809138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  3  stereo Id 436315661 " fill="rgb(255,29,0)" points="557.667,1707.39 578.081,1707.39 578.081,1699.82 " />
<svg:polygon detid="436315917" count="1" value="114" id="3809139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  3  stereo Id 436315917 " fill="rgb(255,29,0)" points="557.667,1699.82 578.081,1699.82 578.081,1692.25 " />
<svg:polygon detid="436316173" count="1" value="114" id="3809140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  3  stereo Id 436316173 " fill="rgb(255,29,0)" points="557.667,1692.25 578.081,1692.25 578.081,1684.68 " />
<svg:polygon detid="436316429" count="1" value="114" id="3809141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  3  stereo Id 436316429 " fill="rgb(255,29,0)" points="557.667,1684.68 578.081,1684.68 578.081,1677.11 " />
<svg:polygon detid="436316685" count="1" value="114" id="3809142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  3  stereo Id 436316685 " fill="rgb(255,29,0)" points="557.667,1677.11 578.081,1677.11 578.081,1669.54 " />
<svg:polygon detid="436306194" count="1" value="114" id="3810001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  4   Id 436306194 " fill="rgb(255,29,0)" points="601.048,1979.92 580.633,1979.92 580.633,1987.49 " />
<svg:polygon detid="436306450" count="1" value="114" id="3810002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  4   Id 436306450 " fill="rgb(255,29,0)" points="601.048,1972.35 580.633,1972.35 580.633,1979.92 " />
<svg:polygon detid="436306706" count="1" value="114" id="3810003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  4   Id 436306706 " fill="rgb(255,29,0)" points="601.048,1964.78 580.633,1964.78 580.633,1972.35 " />
<svg:polygon detid="436306962" count="1" value="114" id="3810004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  4   Id 436306962 " fill="rgb(255,29,0)" points="601.048,1957.21 580.633,1957.21 580.633,1964.78 " />
<svg:polygon detid="436307218" count="1" value="114" id="3810005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  4   Id 436307218 " fill="rgb(255,29,0)" points="601.048,1949.64 580.633,1949.64 580.633,1957.21 " />
<svg:polygon detid="436307474" count="1" value="114" id="3810006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  4   Id 436307474 " fill="rgb(255,29,0)" points="601.048,1942.07 580.633,1942.07 580.633,1949.64 " />
<svg:polygon detid="436307730" count="1" value="114" id="3810007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  4   Id 436307730 " fill="rgb(255,29,0)" points="601.048,1934.5 580.633,1934.5 580.633,1942.07 " />
<svg:polygon detid="436307986" count="1" value="114" id="3810008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  4   Id 436307986 " fill="rgb(255,29,0)" points="601.048,1926.93 580.633,1926.93 580.633,1934.5 " />
<svg:polygon detid="436308242" count="1" value="114" id="3810009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  4   Id 436308242 " fill="rgb(255,29,0)" points="601.048,1919.36 580.633,1919.36 580.633,1926.93 " />
<svg:polygon detid="436308498" count="1" value="114" id="3810010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  4   Id 436308498 " fill="rgb(255,29,0)" points="601.048,1911.79 580.633,1911.79 580.633,1919.36 " />
<svg:polygon detid="436308754" count="1" value="114" id="3810011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  4   Id 436308754 " fill="rgb(255,29,0)" points="601.048,1904.22 580.633,1904.22 580.633,1911.79 " />
<svg:polygon detid="436309010" count="1" value="114" id="3810012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  4   Id 436309010 " fill="rgb(255,29,0)" points="601.048,1896.65 580.633,1896.65 580.633,1904.22 " />
<svg:polygon detid="436309266" count="1" value="114" id="3810013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  4   Id 436309266 " fill="rgb(255,29,0)" points="601.048,1889.08 580.633,1889.08 580.633,1896.65 " />
<svg:polygon detid="436309522" count="1" value="114" id="3810014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  4   Id 436309522 " fill="rgb(255,29,0)" points="601.048,1881.51 580.633,1881.51 580.633,1889.08 " />
<svg:polygon detid="436309778" count="1" value="114" id="3810015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  4   Id 436309778 " fill="rgb(255,29,0)" points="601.048,1873.94 580.633,1873.94 580.633,1881.51 " />
<svg:polygon detid="436310034" count="1" value="114" id="3810016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  4   Id 436310034 " fill="rgb(255,29,0)" points="601.048,1866.37 580.633,1866.37 580.633,1873.94 " />
<svg:polygon detid="436310290" count="1" value="114" id="3810017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  4   Id 436310290 " fill="rgb(255,29,0)" points="601.048,1858.8 580.633,1858.8 580.633,1866.37 " />
<svg:polygon detid="436310546" count="1" value="114" id="3810018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  4   Id 436310546 " fill="rgb(255,29,0)" points="601.048,1851.23 580.633,1851.23 580.633,1858.8 " />
<svg:polygon detid="436310802" count="1" value="114" id="3810019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  4   Id 436310802 " fill="rgb(255,29,0)" points="601.048,1843.66 580.633,1843.66 580.633,1851.23 " />
<svg:polygon detid="436311058" count="1" value="114" id="3810020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  4   Id 436311058 " fill="rgb(255,29,0)" points="601.048,1836.08 580.633,1836.08 580.633,1843.66 " />
<svg:polygon detid="436311314" count="1" value="114" id="3810021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  4   Id 436311314 " fill="rgb(255,29,0)" points="601.048,1828.51 580.633,1828.51 580.633,1836.08 " />
<svg:polygon detid="436311570" count="1" value="114" id="3810022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  4   Id 436311570 " fill="rgb(255,29,0)" points="601.048,1820.94 580.633,1820.94 580.633,1828.51 " />
<svg:polygon detid="436311826" count="1" value="114" id="3810023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  4   Id 436311826 " fill="rgb(255,29,0)" points="601.048,1813.37 580.633,1813.37 580.633,1820.94 " />
<svg:polygon detid="436312082" count="1" value="114" id="3810024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  4   Id 436312082 " fill="rgb(255,29,0)" points="601.048,1805.8 580.633,1805.8 580.633,1813.37 " />
<svg:polygon detid="436312338" count="1" value="114" id="3810025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  4   Id 436312338 " fill="rgb(255,29,0)" points="601.048,1798.23 580.633,1798.23 580.633,1805.8 " />
<svg:polygon detid="436312594" count="1" value="114" id="3810026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  4   Id 436312594 " fill="rgb(255,29,0)" points="601.048,1790.66 580.633,1790.66 580.633,1798.23 " />
<svg:polygon detid="436312850" count="1" value="114" id="3810027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  4   Id 436312850 " fill="rgb(255,29,0)" points="601.048,1783.09 580.633,1783.09 580.633,1790.66 " />
<svg:polygon detid="436313106" count="1" value="114" id="3810028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  4   Id 436313106 " fill="rgb(255,29,0)" points="601.048,1775.52 580.633,1775.52 580.633,1783.09 " />
<svg:polygon detid="436313362" count="1" value="114" id="3810029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  4   Id 436313362 " fill="rgb(255,29,0)" points="601.048,1767.95 580.633,1767.95 580.633,1775.52 " />
<svg:polygon detid="436313618" count="1" value="114" id="3810030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  4   Id 436313618 " fill="rgb(255,29,0)" points="601.048,1760.38 580.633,1760.38 580.633,1767.95 " />
<svg:polygon detid="436313874" count="1" value="114" id="3810031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  4   Id 436313874 " fill="rgb(255,29,0)" points="601.048,1752.81 580.633,1752.81 580.633,1760.38 " />
<svg:polygon detid="436314130" count="1" value="114" id="3810032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  4   Id 436314130 " fill="rgb(255,29,0)" points="601.048,1745.24 580.633,1745.24 580.633,1752.81 " />
<svg:polygon detid="436314386" count="1" value="114" id="3810033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  4   Id 436314386 " fill="rgb(255,29,0)" points="601.048,1737.67 580.633,1737.67 580.633,1745.24 " />
<svg:polygon detid="436314642" count="1" value="114" id="3810034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  4   Id 436314642 " fill="rgb(255,29,0)" points="601.048,1730.1 580.633,1730.1 580.633,1737.67 " />
<svg:polygon detid="436314898" count="1" value="114" id="3810035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  4   Id 436314898 " fill="rgb(255,29,0)" points="601.048,1722.53 580.633,1722.53 580.633,1730.1 " />
<svg:polygon detid="436315154" count="1" value="114" id="3810036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  4   Id 436315154 " fill="rgb(255,29,0)" points="601.048,1714.96 580.633,1714.96 580.633,1722.53 " />
<svg:polygon detid="436315410" count="1" value="114" id="3810037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  4   Id 436315410 " fill="rgb(255,29,0)" points="601.048,1707.39 580.633,1707.39 580.633,1714.96 " />
<svg:polygon detid="436315666" count="1" value="114" id="3810038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  4   Id 436315666 " fill="rgb(255,29,0)" points="601.048,1699.82 580.633,1699.82 580.633,1707.39 " />
<svg:polygon detid="436315922" count="1" value="114" id="3810039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  4   Id 436315922 " fill="rgb(255,29,0)" points="601.048,1692.25 580.633,1692.25 580.633,1699.82 " />
<svg:polygon detid="436316178" count="1" value="114" id="3810040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  4   Id 436316178 " fill="rgb(255,29,0)" points="601.048,1684.68 580.633,1684.68 580.633,1692.25 " />
<svg:polygon detid="436316434" count="1" value="114" id="3810041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  4   Id 436316434 " fill="rgb(255,29,0)" points="601.048,1677.11 580.633,1677.11 580.633,1684.68 " />
<svg:polygon detid="436316690" count="1" value="114" id="3810042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  4   Id 436316690 " fill="rgb(255,29,0)" points="601.048,1669.54 580.633,1669.54 580.633,1677.11 " />
<svg:polygon detid="436306193" count="1" value="114" id="3810101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  4  stereo Id 436306193 " fill="rgb(255,29,0)" points="580.633,1987.49 601.048,1987.49 601.048,1979.92 " />
<svg:polygon detid="436306449" count="1" value="114" id="3810102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  4  stereo Id 436306449 " fill="rgb(255,29,0)" points="580.633,1979.92 601.048,1979.92 601.048,1972.35 " />
<svg:polygon detid="436306705" count="1" value="114" id="3810103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  4  stereo Id 436306705 " fill="rgb(255,29,0)" points="580.633,1972.35 601.048,1972.35 601.048,1964.78 " />
<svg:polygon detid="436306961" count="1" value="114" id="3810104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  4  stereo Id 436306961 " fill="rgb(255,29,0)" points="580.633,1964.78 601.048,1964.78 601.048,1957.21 " />
<svg:polygon detid="436307217" count="1" value="114" id="3810105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  4  stereo Id 436307217 " fill="rgb(255,29,0)" points="580.633,1957.21 601.048,1957.21 601.048,1949.64 " />
<svg:polygon detid="436307473" count="1" value="114" id="3810106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  4  stereo Id 436307473 " fill="rgb(255,29,0)" points="580.633,1949.64 601.048,1949.64 601.048,1942.07 " />
<svg:polygon detid="436307729" count="1" value="114" id="3810107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  4  stereo Id 436307729 " fill="rgb(255,29,0)" points="580.633,1942.07 601.048,1942.07 601.048,1934.5 " />
<svg:polygon detid="436307985" count="1" value="114" id="3810108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  4  stereo Id 436307985 " fill="rgb(255,29,0)" points="580.633,1934.5 601.048,1934.5 601.048,1926.93 " />
<svg:polygon detid="436308241" count="1" value="114" id="3810109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  4  stereo Id 436308241 " fill="rgb(255,29,0)" points="580.633,1926.93 601.048,1926.93 601.048,1919.36 " />
<svg:polygon detid="436308497" count="1" value="114" id="3810110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  4  stereo Id 436308497 " fill="rgb(255,29,0)" points="580.633,1919.36 601.048,1919.36 601.048,1911.79 " />
<svg:polygon detid="436308753" count="1" value="114" id="3810111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  4  stereo Id 436308753 " fill="rgb(255,29,0)" points="580.633,1911.79 601.048,1911.79 601.048,1904.22 " />
<svg:polygon detid="436309009" count="1" value="114" id="3810112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  4  stereo Id 436309009 " fill="rgb(255,29,0)" points="580.633,1904.22 601.048,1904.22 601.048,1896.65 " />
<svg:polygon detid="436309265" count="1" value="114" id="3810113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  4  stereo Id 436309265 " fill="rgb(255,29,0)" points="580.633,1896.65 601.048,1896.65 601.048,1889.08 " />
<svg:polygon detid="436309521" count="1" value="114" id="3810114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  4  stereo Id 436309521 " fill="rgb(255,29,0)" points="580.633,1889.08 601.048,1889.08 601.048,1881.51 " />
<svg:polygon detid="436309777" count="1" value="114" id="3810115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  4  stereo Id 436309777 " fill="rgb(255,29,0)" points="580.633,1881.51 601.048,1881.51 601.048,1873.94 " />
<svg:polygon detid="436310033" count="1" value="114" id="3810116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  4  stereo Id 436310033 " fill="rgb(255,29,0)" points="580.633,1873.94 601.048,1873.94 601.048,1866.37 " />
<svg:polygon detid="436310289" count="1" value="114" id="3810117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  4  stereo Id 436310289 " fill="rgb(255,29,0)" points="580.633,1866.37 601.048,1866.37 601.048,1858.8 " />
<svg:polygon detid="436310545" count="1" value="114" id="3810118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  4  stereo Id 436310545 " fill="rgb(255,29,0)" points="580.633,1858.8 601.048,1858.8 601.048,1851.23 " />
<svg:polygon detid="436310801" count="1" value="114" id="3810119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  4  stereo Id 436310801 " fill="rgb(255,29,0)" points="580.633,1851.23 601.048,1851.23 601.048,1843.66 " />
<svg:polygon detid="436311057" count="1" value="114" id="3810120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  4  stereo Id 436311057 " fill="rgb(255,29,0)" points="580.633,1843.66 601.048,1843.66 601.048,1836.08 " />
<svg:polygon detid="436311313" count="1" value="114" id="3810121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  4  stereo Id 436311313 " fill="rgb(255,29,0)" points="580.633,1836.08 601.048,1836.08 601.048,1828.51 " />
<svg:polygon detid="436311569" count="1" value="114" id="3810122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  4  stereo Id 436311569 " fill="rgb(255,29,0)" points="580.633,1828.51 601.048,1828.51 601.048,1820.94 " />
<svg:polygon detid="436311825" count="1" value="114" id="3810123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  4  stereo Id 436311825 " fill="rgb(255,29,0)" points="580.633,1820.94 601.048,1820.94 601.048,1813.37 " />
<svg:polygon detid="436312081" count="1" value="114" id="3810124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  4  stereo Id 436312081 " fill="rgb(255,29,0)" points="580.633,1813.37 601.048,1813.37 601.048,1805.8 " />
<svg:polygon detid="436312337" count="1" value="114" id="3810125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  4  stereo Id 436312337 " fill="rgb(255,29,0)" points="580.633,1805.8 601.048,1805.8 601.048,1798.23 " />
<svg:polygon detid="436312593" count="1" value="114" id="3810126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  4  stereo Id 436312593 " fill="rgb(255,29,0)" points="580.633,1798.23 601.048,1798.23 601.048,1790.66 " />
<svg:polygon detid="436312849" count="1" value="114" id="3810127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  4  stereo Id 436312849 " fill="rgb(255,29,0)" points="580.633,1790.66 601.048,1790.66 601.048,1783.09 " />
<svg:polygon detid="436313105" count="1" value="114" id="3810128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  4  stereo Id 436313105 " fill="rgb(255,29,0)" points="580.633,1783.09 601.048,1783.09 601.048,1775.52 " />
<svg:polygon detid="436313361" count="1" value="114" id="3810129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  4  stereo Id 436313361 " fill="rgb(255,29,0)" points="580.633,1775.52 601.048,1775.52 601.048,1767.95 " />
<svg:polygon detid="436313617" count="1" value="114" id="3810130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  4  stereo Id 436313617 " fill="rgb(255,29,0)" points="580.633,1767.95 601.048,1767.95 601.048,1760.38 " />
<svg:polygon detid="436313873" count="1" value="114" id="3810131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  4  stereo Id 436313873 " fill="rgb(255,29,0)" points="580.633,1760.38 601.048,1760.38 601.048,1752.81 " />
<svg:polygon detid="436314129" count="1" value="114" id="3810132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  4  stereo Id 436314129 " fill="rgb(255,29,0)" points="580.633,1752.81 601.048,1752.81 601.048,1745.24 " />
<svg:polygon detid="436314385" count="1" value="114" id="3810133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  4  stereo Id 436314385 " fill="rgb(255,29,0)" points="580.633,1745.24 601.048,1745.24 601.048,1737.67 " />
<svg:polygon detid="436314641" count="1" value="114" id="3810134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  4  stereo Id 436314641 " fill="rgb(255,29,0)" points="580.633,1737.67 601.048,1737.67 601.048,1730.1 " />
<svg:polygon detid="436314897" count="1" value="114" id="3810135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  4  stereo Id 436314897 " fill="rgb(255,29,0)" points="580.633,1730.1 601.048,1730.1 601.048,1722.53 " />
<svg:polygon detid="436315153" count="1" value="114" id="3810136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  4  stereo Id 436315153 " fill="rgb(255,29,0)" points="580.633,1722.53 601.048,1722.53 601.048,1714.96 " />
<svg:polygon detid="436315409" count="1" value="114" id="3810137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  4  stereo Id 436315409 " fill="rgb(255,29,0)" points="580.633,1714.96 601.048,1714.96 601.048,1707.39 " />
<svg:polygon detid="436315665" count="1" value="114" id="3810138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  4  stereo Id 436315665 " fill="rgb(255,29,0)" points="580.633,1707.39 601.048,1707.39 601.048,1699.82 " />
<svg:polygon detid="436315921" count="1" value="114" id="3810139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  4  stereo Id 436315921 " fill="rgb(255,29,0)" points="580.633,1699.82 601.048,1699.82 601.048,1692.25 " />
<svg:polygon detid="436316177" count="1" value="114" id="3810140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  4  stereo Id 436316177 " fill="rgb(255,29,0)" points="580.633,1692.25 601.048,1692.25 601.048,1684.68 " />
<svg:polygon detid="436316433" count="1" value="114" id="3810141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  4  stereo Id 436316433 " fill="rgb(255,29,0)" points="580.633,1684.68 601.048,1684.68 601.048,1677.11 " />
<svg:polygon detid="436316689" count="1" value="114" id="3810142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  4  stereo Id 436316689 " fill="rgb(255,29,0)" points="580.633,1677.11 601.048,1677.11 601.048,1669.54 " />
<svg:polygon detid="436306198" count="1" value="114" id="3811001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  5   Id 436306198 " fill="rgb(255,29,0)" points="624.014,1979.92 603.6,1979.92 603.6,1987.49 " />
<svg:polygon detid="436306454" count="1" value="114" id="3811002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  5   Id 436306454 " fill="rgb(255,29,0)" points="624.014,1972.35 603.6,1972.35 603.6,1979.92 " />
<svg:polygon detid="436306710" count="1" value="114" id="3811003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  5   Id 436306710 " fill="rgb(255,29,0)" points="624.014,1964.78 603.6,1964.78 603.6,1972.35 " />
<svg:polygon detid="436306966" count="1" value="114" id="3811004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  5   Id 436306966 " fill="rgb(255,29,0)" points="624.014,1957.21 603.6,1957.21 603.6,1964.78 " />
<svg:polygon detid="436307222" count="1" value="114" id="3811005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  5   Id 436307222 " fill="rgb(255,29,0)" points="624.014,1949.64 603.6,1949.64 603.6,1957.21 " />
<svg:polygon detid="436307478" count="1" value="114" id="3811006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  5   Id 436307478 " fill="rgb(255,29,0)" points="624.014,1942.07 603.6,1942.07 603.6,1949.64 " />
<svg:polygon detid="436307734" count="1" value="114" id="3811007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  5   Id 436307734 " fill="rgb(255,29,0)" points="624.014,1934.5 603.6,1934.5 603.6,1942.07 " />
<svg:polygon detid="436307990" count="1" value="114" id="3811008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  5   Id 436307990 " fill="rgb(255,29,0)" points="624.014,1926.93 603.6,1926.93 603.6,1934.5 " />
<svg:polygon detid="436308246" count="1" value="114" id="3811009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  5   Id 436308246 " fill="rgb(255,29,0)" points="624.014,1919.36 603.6,1919.36 603.6,1926.93 " />
<svg:polygon detid="436308502" count="1" value="114" id="3811010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  5   Id 436308502 " fill="rgb(255,29,0)" points="624.014,1911.79 603.6,1911.79 603.6,1919.36 " />
<svg:polygon detid="436308758" count="1" value="114" id="3811011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  5   Id 436308758 " fill="rgb(255,29,0)" points="624.014,1904.22 603.6,1904.22 603.6,1911.79 " />
<svg:polygon detid="436309014" count="1" value="114" id="3811012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  5   Id 436309014 " fill="rgb(255,29,0)" points="624.014,1896.65 603.6,1896.65 603.6,1904.22 " />
<svg:polygon detid="436309270" count="1" value="114" id="3811013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  5   Id 436309270 " fill="rgb(255,29,0)" points="624.014,1889.08 603.6,1889.08 603.6,1896.65 " />
<svg:polygon detid="436309526" count="1" value="114" id="3811014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  5   Id 436309526 " fill="rgb(255,29,0)" points="624.014,1881.51 603.6,1881.51 603.6,1889.08 " />
<svg:polygon detid="436309782" count="1" value="114" id="3811015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  5   Id 436309782 " fill="rgb(255,29,0)" points="624.014,1873.94 603.6,1873.94 603.6,1881.51 " />
<svg:polygon detid="436310038" count="1" value="114" id="3811016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  5   Id 436310038 " fill="rgb(255,29,0)" points="624.014,1866.37 603.6,1866.37 603.6,1873.94 " />
<svg:polygon detid="436310294" count="1" value="114" id="3811017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  5   Id 436310294 " fill="rgb(255,29,0)" points="624.014,1858.8 603.6,1858.8 603.6,1866.37 " />
<svg:polygon detid="436310550" count="1" value="114" id="3811018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  5   Id 436310550 " fill="rgb(255,29,0)" points="624.014,1851.23 603.6,1851.23 603.6,1858.8 " />
<svg:polygon detid="436310806" count="1" value="114" id="3811019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  5   Id 436310806 " fill="rgb(255,29,0)" points="624.014,1843.66 603.6,1843.66 603.6,1851.23 " />
<svg:polygon detid="436311062" count="1" value="114" id="3811020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  5   Id 436311062 " fill="rgb(255,29,0)" points="624.014,1836.08 603.6,1836.08 603.6,1843.66 " />
<svg:polygon detid="436311318" count="1" value="114" id="3811021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  5   Id 436311318 " fill="rgb(255,29,0)" points="624.014,1828.51 603.6,1828.51 603.6,1836.08 " />
<svg:polygon detid="436311574" count="1" value="114" id="3811022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  5   Id 436311574 " fill="rgb(255,29,0)" points="624.014,1820.94 603.6,1820.94 603.6,1828.51 " />
<svg:polygon detid="436311830" count="1" value="114" id="3811023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  5   Id 436311830 " fill="rgb(255,29,0)" points="624.014,1813.37 603.6,1813.37 603.6,1820.94 " />
<svg:polygon detid="436312086" count="1" value="114" id="3811024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  5   Id 436312086 " fill="rgb(255,29,0)" points="624.014,1805.8 603.6,1805.8 603.6,1813.37 " />
<svg:polygon detid="436312342" count="1" value="114" id="3811025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  5   Id 436312342 " fill="rgb(255,29,0)" points="624.014,1798.23 603.6,1798.23 603.6,1805.8 " />
<svg:polygon detid="436312598" count="1" value="114" id="3811026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  5   Id 436312598 " fill="rgb(255,29,0)" points="624.014,1790.66 603.6,1790.66 603.6,1798.23 " />
<svg:polygon detid="436312854" count="1" value="114" id="3811027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  5   Id 436312854 " fill="rgb(255,29,0)" points="624.014,1783.09 603.6,1783.09 603.6,1790.66 " />
<svg:polygon detid="436313110" count="1" value="114" id="3811028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  5   Id 436313110 " fill="rgb(255,29,0)" points="624.014,1775.52 603.6,1775.52 603.6,1783.09 " />
<svg:polygon detid="436313366" count="1" value="114" id="3811029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  5   Id 436313366 " fill="rgb(255,29,0)" points="624.014,1767.95 603.6,1767.95 603.6,1775.52 " />
<svg:polygon detid="436313622" count="1" value="114" id="3811030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  5   Id 436313622 " fill="rgb(255,29,0)" points="624.014,1760.38 603.6,1760.38 603.6,1767.95 " />
<svg:polygon detid="436313878" count="1" value="114" id="3811031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  5   Id 436313878 " fill="rgb(255,29,0)" points="624.014,1752.81 603.6,1752.81 603.6,1760.38 " />
<svg:polygon detid="436314134" count="1" value="114" id="3811032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  5   Id 436314134 " fill="rgb(255,29,0)" points="624.014,1745.24 603.6,1745.24 603.6,1752.81 " />
<svg:polygon detid="436314390" count="1" value="114" id="3811033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  5   Id 436314390 " fill="rgb(255,29,0)" points="624.014,1737.67 603.6,1737.67 603.6,1745.24 " />
<svg:polygon detid="436314646" count="1" value="114" id="3811034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  5   Id 436314646 " fill="rgb(255,29,0)" points="624.014,1730.1 603.6,1730.1 603.6,1737.67 " />
<svg:polygon detid="436314902" count="1" value="114" id="3811035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  5   Id 436314902 " fill="rgb(255,29,0)" points="624.014,1722.53 603.6,1722.53 603.6,1730.1 " />
<svg:polygon detid="436315158" count="1" value="114" id="3811036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  5   Id 436315158 " fill="rgb(255,29,0)" points="624.014,1714.96 603.6,1714.96 603.6,1722.53 " />
<svg:polygon detid="436315414" count="1" value="114" id="3811037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  5   Id 436315414 " fill="rgb(255,29,0)" points="624.014,1707.39 603.6,1707.39 603.6,1714.96 " />
<svg:polygon detid="436315670" count="1" value="114" id="3811038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  5   Id 436315670 " fill="rgb(255,29,0)" points="624.014,1699.82 603.6,1699.82 603.6,1707.39 " />
<svg:polygon detid="436315926" count="1" value="114" id="3811039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  5   Id 436315926 " fill="rgb(255,29,0)" points="624.014,1692.25 603.6,1692.25 603.6,1699.82 " />
<svg:polygon detid="436316182" count="1" value="114" id="3811040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  5   Id 436316182 " fill="rgb(255,29,0)" points="624.014,1684.68 603.6,1684.68 603.6,1692.25 " />
<svg:polygon detid="436316438" count="1" value="114" id="3811041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  5   Id 436316438 " fill="rgb(255,29,0)" points="624.014,1677.11 603.6,1677.11 603.6,1684.68 " />
<svg:polygon detid="436316694" count="1" value="114" id="3811042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  5   Id 436316694 " fill="rgb(255,29,0)" points="624.014,1669.54 603.6,1669.54 603.6,1677.11 " />
<svg:polygon detid="436306197" count="1" value="114" id="3811101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  5  stereo Id 436306197 " fill="rgb(255,29,0)" points="603.6,1987.49 624.014,1987.49 624.014,1979.92 " />
<svg:polygon detid="436306453" count="1" value="114" id="3811102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  5  stereo Id 436306453 " fill="rgb(255,29,0)" points="603.6,1979.92 624.014,1979.92 624.014,1972.35 " />
<svg:polygon detid="436306709" count="1" value="114" id="3811103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  5  stereo Id 436306709 " fill="rgb(255,29,0)" points="603.6,1972.35 624.014,1972.35 624.014,1964.78 " />
<svg:polygon detid="436306965" count="1" value="114" id="3811104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  5  stereo Id 436306965 " fill="rgb(255,29,0)" points="603.6,1964.78 624.014,1964.78 624.014,1957.21 " />
<svg:polygon detid="436307221" count="1" value="114" id="3811105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  5  stereo Id 436307221 " fill="rgb(255,29,0)" points="603.6,1957.21 624.014,1957.21 624.014,1949.64 " />
<svg:polygon detid="436307477" count="1" value="114" id="3811106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  5  stereo Id 436307477 " fill="rgb(255,29,0)" points="603.6,1949.64 624.014,1949.64 624.014,1942.07 " />
<svg:polygon detid="436307733" count="1" value="114" id="3811107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  5  stereo Id 436307733 " fill="rgb(255,29,0)" points="603.6,1942.07 624.014,1942.07 624.014,1934.5 " />
<svg:polygon detid="436307989" count="1" value="114" id="3811108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  5  stereo Id 436307989 " fill="rgb(255,29,0)" points="603.6,1934.5 624.014,1934.5 624.014,1926.93 " />
<svg:polygon detid="436308245" count="1" value="114" id="3811109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  5  stereo Id 436308245 " fill="rgb(255,29,0)" points="603.6,1926.93 624.014,1926.93 624.014,1919.36 " />
<svg:polygon detid="436308501" count="1" value="114" id="3811110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  5  stereo Id 436308501 " fill="rgb(255,29,0)" points="603.6,1919.36 624.014,1919.36 624.014,1911.79 " />
<svg:polygon detid="436308757" count="1" value="114" id="3811111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  5  stereo Id 436308757 " fill="rgb(255,29,0)" points="603.6,1911.79 624.014,1911.79 624.014,1904.22 " />
<svg:polygon detid="436309013" count="1" value="114" id="3811112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  5  stereo Id 436309013 " fill="rgb(255,29,0)" points="603.6,1904.22 624.014,1904.22 624.014,1896.65 " />
<svg:polygon detid="436309269" count="1" value="114" id="3811113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  5  stereo Id 436309269 " fill="rgb(255,29,0)" points="603.6,1896.65 624.014,1896.65 624.014,1889.08 " />
<svg:polygon detid="436309525" count="1" value="114" id="3811114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  5  stereo Id 436309525 " fill="rgb(255,29,0)" points="603.6,1889.08 624.014,1889.08 624.014,1881.51 " />
<svg:polygon detid="436309781" count="1" value="114" id="3811115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  5  stereo Id 436309781 " fill="rgb(255,29,0)" points="603.6,1881.51 624.014,1881.51 624.014,1873.94 " />
<svg:polygon detid="436310037" count="1" value="114" id="3811116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  5  stereo Id 436310037 " fill="rgb(255,29,0)" points="603.6,1873.94 624.014,1873.94 624.014,1866.37 " />
<svg:polygon detid="436310293" count="1" value="114" id="3811117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  5  stereo Id 436310293 " fill="rgb(255,29,0)" points="603.6,1866.37 624.014,1866.37 624.014,1858.8 " />
<svg:polygon detid="436310549" count="1" value="114" id="3811118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  5  stereo Id 436310549 " fill="rgb(255,29,0)" points="603.6,1858.8 624.014,1858.8 624.014,1851.23 " />
<svg:polygon detid="436310805" count="1" value="114" id="3811119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  5  stereo Id 436310805 " fill="rgb(255,29,0)" points="603.6,1851.23 624.014,1851.23 624.014,1843.66 " />
<svg:polygon detid="436311061" count="1" value="114" id="3811120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  5  stereo Id 436311061 " fill="rgb(255,29,0)" points="603.6,1843.66 624.014,1843.66 624.014,1836.08 " />
<svg:polygon detid="436311317" count="1" value="114" id="3811121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  5  stereo Id 436311317 " fill="rgb(255,29,0)" points="603.6,1836.08 624.014,1836.08 624.014,1828.51 " />
<svg:polygon detid="436311573" count="1" value="114" id="3811122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  5  stereo Id 436311573 " fill="rgb(255,29,0)" points="603.6,1828.51 624.014,1828.51 624.014,1820.94 " />
<svg:polygon detid="436311829" count="1" value="114" id="3811123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  5  stereo Id 436311829 " fill="rgb(255,29,0)" points="603.6,1820.94 624.014,1820.94 624.014,1813.37 " />
<svg:polygon detid="436312085" count="1" value="114" id="3811124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  5  stereo Id 436312085 " fill="rgb(255,29,0)" points="603.6,1813.37 624.014,1813.37 624.014,1805.8 " />
<svg:polygon detid="436312341" count="1" value="114" id="3811125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  5  stereo Id 436312341 " fill="rgb(255,29,0)" points="603.6,1805.8 624.014,1805.8 624.014,1798.23 " />
<svg:polygon detid="436312597" count="1" value="114" id="3811126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  5  stereo Id 436312597 " fill="rgb(255,29,0)" points="603.6,1798.23 624.014,1798.23 624.014,1790.66 " />
<svg:polygon detid="436312853" count="1" value="114" id="3811127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  5  stereo Id 436312853 " fill="rgb(255,29,0)" points="603.6,1790.66 624.014,1790.66 624.014,1783.09 " />
<svg:polygon detid="436313109" count="1" value="114" id="3811128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  5  stereo Id 436313109 " fill="rgb(255,29,0)" points="603.6,1783.09 624.014,1783.09 624.014,1775.52 " />
<svg:polygon detid="436313365" count="1" value="114" id="3811129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  5  stereo Id 436313365 " fill="rgb(255,29,0)" points="603.6,1775.52 624.014,1775.52 624.014,1767.95 " />
<svg:polygon detid="436313621" count="1" value="114" id="3811130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  5  stereo Id 436313621 " fill="rgb(255,29,0)" points="603.6,1767.95 624.014,1767.95 624.014,1760.38 " />
<svg:polygon detid="436313877" count="1" value="114" id="3811131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  5  stereo Id 436313877 " fill="rgb(255,29,0)" points="603.6,1760.38 624.014,1760.38 624.014,1752.81 " />
<svg:polygon detid="436314133" count="1" value="114" id="3811132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  5  stereo Id 436314133 " fill="rgb(255,29,0)" points="603.6,1752.81 624.014,1752.81 624.014,1745.24 " />
<svg:polygon detid="436314389" count="1" value="114" id="3811133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  5  stereo Id 436314389 " fill="rgb(255,29,0)" points="603.6,1745.24 624.014,1745.24 624.014,1737.67 " />
<svg:polygon detid="436314645" count="1" value="114" id="3811134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  5  stereo Id 436314645 " fill="rgb(255,29,0)" points="603.6,1737.67 624.014,1737.67 624.014,1730.1 " />
<svg:polygon detid="436314901" count="1" value="114" id="3811135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  5  stereo Id 436314901 " fill="rgb(255,29,0)" points="603.6,1730.1 624.014,1730.1 624.014,1722.53 " />
<svg:polygon detid="436315157" count="1" value="114" id="3811136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  5  stereo Id 436315157 " fill="rgb(255,29,0)" points="603.6,1722.53 624.014,1722.53 624.014,1714.96 " />
<svg:polygon detid="436315413" count="1" value="114" id="3811137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  5  stereo Id 436315413 " fill="rgb(255,29,0)" points="603.6,1714.96 624.014,1714.96 624.014,1707.39 " />
<svg:polygon detid="436315669" count="1" value="114" id="3811138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  5  stereo Id 436315669 " fill="rgb(255,29,0)" points="603.6,1707.39 624.014,1707.39 624.014,1699.82 " />
<svg:polygon detid="436315925" count="1" value="114" id="3811139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  5  stereo Id 436315925 " fill="rgb(255,29,0)" points="603.6,1699.82 624.014,1699.82 624.014,1692.25 " />
<svg:polygon detid="436316181" count="1" value="114" id="3811140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  5  stereo Id 436316181 " fill="rgb(255,29,0)" points="603.6,1692.25 624.014,1692.25 624.014,1684.68 " />
<svg:polygon detid="436316437" count="1" value="114" id="3811141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  5  stereo Id 436316437 " fill="rgb(255,29,0)" points="603.6,1684.68 624.014,1684.68 624.014,1677.11 " />
<svg:polygon detid="436316693" count="1" value="114" id="3811142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  5  stereo Id 436316693 " fill="rgb(255,29,0)" points="603.6,1677.11 624.014,1677.11 624.014,1669.54 " />
<svg:polygon detid="436306202" count="1" value="114" id="3812001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  6   Id 436306202 " fill="rgb(255,29,0)" points="646.981,1979.92 626.566,1979.92 626.566,1987.49 " />
<svg:polygon detid="436306458" count="1" value="114" id="3812002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  6   Id 436306458 " fill="rgb(255,29,0)" points="646.981,1972.35 626.566,1972.35 626.566,1979.92 " />
<svg:polygon detid="436306714" count="1" value="114" id="3812003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  6   Id 436306714 " fill="rgb(255,29,0)" points="646.981,1964.78 626.566,1964.78 626.566,1972.35 " />
<svg:polygon detid="436306970" count="1" value="114" id="3812004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  6   Id 436306970 " fill="rgb(255,29,0)" points="646.981,1957.21 626.566,1957.21 626.566,1964.78 " />
<svg:polygon detid="436307226" count="1" value="114" id="3812005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  6   Id 436307226 " fill="rgb(255,29,0)" points="646.981,1949.64 626.566,1949.64 626.566,1957.21 " />
<svg:polygon detid="436307482" count="1" value="114" id="3812006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  6   Id 436307482 " fill="rgb(255,29,0)" points="646.981,1942.07 626.566,1942.07 626.566,1949.64 " />
<svg:polygon detid="436307738" count="1" value="114" id="3812007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  6   Id 436307738 " fill="rgb(255,29,0)" points="646.981,1934.5 626.566,1934.5 626.566,1942.07 " />
<svg:polygon detid="436307994" count="1" value="114" id="3812008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  6   Id 436307994 " fill="rgb(255,29,0)" points="646.981,1926.93 626.566,1926.93 626.566,1934.5 " />
<svg:polygon detid="436308250" count="1" value="114" id="3812009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  6   Id 436308250 " fill="rgb(255,29,0)" points="646.981,1919.36 626.566,1919.36 626.566,1926.93 " />
<svg:polygon detid="436308506" count="1" value="114" id="3812010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  6   Id 436308506 " fill="rgb(255,29,0)" points="646.981,1911.79 626.566,1911.79 626.566,1919.36 " />
<svg:polygon detid="436308762" count="1" value="114" id="3812011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  6   Id 436308762 " fill="rgb(255,29,0)" points="646.981,1904.22 626.566,1904.22 626.566,1911.79 " />
<svg:polygon detid="436309018" count="1" value="114" id="3812012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  6   Id 436309018 " fill="rgb(255,29,0)" points="646.981,1896.65 626.566,1896.65 626.566,1904.22 " />
<svg:polygon detid="436309274" count="1" value="114" id="3812013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  6   Id 436309274 " fill="rgb(255,29,0)" points="646.981,1889.08 626.566,1889.08 626.566,1896.65 " />
<svg:polygon detid="436309530" count="1" value="114" id="3812014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  6   Id 436309530 " fill="rgb(255,29,0)" points="646.981,1881.51 626.566,1881.51 626.566,1889.08 " />
<svg:polygon detid="436309786" count="1" value="114" id="3812015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  6   Id 436309786 " fill="rgb(255,29,0)" points="646.981,1873.94 626.566,1873.94 626.566,1881.51 " />
<svg:polygon detid="436310042" count="1" value="114" id="3812016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  6   Id 436310042 " fill="rgb(255,29,0)" points="646.981,1866.37 626.566,1866.37 626.566,1873.94 " />
<svg:polygon detid="436310298" count="1" value="114" id="3812017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  6   Id 436310298 " fill="rgb(255,29,0)" points="646.981,1858.8 626.566,1858.8 626.566,1866.37 " />
<svg:polygon detid="436310554" count="1" value="114" id="3812018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  6   Id 436310554 " fill="rgb(255,29,0)" points="646.981,1851.23 626.566,1851.23 626.566,1858.8 " />
<svg:polygon detid="436310810" count="1" value="114" id="3812019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  6   Id 436310810 " fill="rgb(255,29,0)" points="646.981,1843.66 626.566,1843.66 626.566,1851.23 " />
<svg:polygon detid="436311066" count="1" value="114" id="3812020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  6   Id 436311066 " fill="rgb(255,29,0)" points="646.981,1836.08 626.566,1836.08 626.566,1843.66 " />
<svg:polygon detid="436311322" count="1" value="114" id="3812021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  6   Id 436311322 " fill="rgb(255,29,0)" points="646.981,1828.51 626.566,1828.51 626.566,1836.08 " />
<svg:polygon detid="436311578" count="1" value="114" id="3812022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  6   Id 436311578 " fill="rgb(255,29,0)" points="646.981,1820.94 626.566,1820.94 626.566,1828.51 " />
<svg:polygon detid="436311834" count="1" value="114" id="3812023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  6   Id 436311834 " fill="rgb(255,29,0)" points="646.981,1813.37 626.566,1813.37 626.566,1820.94 " />
<svg:polygon detid="436312090" count="1" value="114" id="3812024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  6   Id 436312090 " fill="rgb(255,29,0)" points="646.981,1805.8 626.566,1805.8 626.566,1813.37 " />
<svg:polygon detid="436312346" count="1" value="114" id="3812025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  6   Id 436312346 " fill="rgb(255,29,0)" points="646.981,1798.23 626.566,1798.23 626.566,1805.8 " />
<svg:polygon detid="436312602" count="1" value="114" id="3812026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  6   Id 436312602 " fill="rgb(255,29,0)" points="646.981,1790.66 626.566,1790.66 626.566,1798.23 " />
<svg:polygon detid="436312858" count="1" value="114" id="3812027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  6   Id 436312858 " fill="rgb(255,29,0)" points="646.981,1783.09 626.566,1783.09 626.566,1790.66 " />
<svg:polygon detid="436313114" count="1" value="114" id="3812028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  6   Id 436313114 " fill="rgb(255,29,0)" points="646.981,1775.52 626.566,1775.52 626.566,1783.09 " />
<svg:polygon detid="436313370" count="1" value="114" id="3812029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  6   Id 436313370 " fill="rgb(255,29,0)" points="646.981,1767.95 626.566,1767.95 626.566,1775.52 " />
<svg:polygon detid="436313626" count="1" value="114" id="3812030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  6   Id 436313626 " fill="rgb(255,29,0)" points="646.981,1760.38 626.566,1760.38 626.566,1767.95 " />
<svg:polygon detid="436313882" count="1" value="114" id="3812031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  6   Id 436313882 " fill="rgb(255,29,0)" points="646.981,1752.81 626.566,1752.81 626.566,1760.38 " />
<svg:polygon detid="436314138" count="1" value="114" id="3812032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  6   Id 436314138 " fill="rgb(255,29,0)" points="646.981,1745.24 626.566,1745.24 626.566,1752.81 " />
<svg:polygon detid="436314394" count="1" value="114" id="3812033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  6   Id 436314394 " fill="rgb(255,29,0)" points="646.981,1737.67 626.566,1737.67 626.566,1745.24 " />
<svg:polygon detid="436314650" count="1" value="114" id="3812034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  6   Id 436314650 " fill="rgb(255,29,0)" points="646.981,1730.1 626.566,1730.1 626.566,1737.67 " />
<svg:polygon detid="436314906" count="1" value="114" id="3812035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  6   Id 436314906 " fill="rgb(255,29,0)" points="646.981,1722.53 626.566,1722.53 626.566,1730.1 " />
<svg:polygon detid="436315162" count="1" value="114" id="3812036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  6   Id 436315162 " fill="rgb(255,29,0)" points="646.981,1714.96 626.566,1714.96 626.566,1722.53 " />
<svg:polygon detid="436315418" count="1" value="114" id="3812037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  6   Id 436315418 " fill="rgb(255,29,0)" points="646.981,1707.39 626.566,1707.39 626.566,1714.96 " />
<svg:polygon detid="436315674" count="1" value="114" id="3812038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  6   Id 436315674 " fill="rgb(255,29,0)" points="646.981,1699.82 626.566,1699.82 626.566,1707.39 " />
<svg:polygon detid="436315930" count="1" value="114" id="3812039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  6   Id 436315930 " fill="rgb(255,29,0)" points="646.981,1692.25 626.566,1692.25 626.566,1699.82 " />
<svg:polygon detid="436316186" count="1" value="114" id="3812040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  6   Id 436316186 " fill="rgb(255,29,0)" points="646.981,1684.68 626.566,1684.68 626.566,1692.25 " />
<svg:polygon detid="436316442" count="1" value="114" id="3812041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  6   Id 436316442 " fill="rgb(255,29,0)" points="646.981,1677.11 626.566,1677.11 626.566,1684.68 " />
<svg:polygon detid="436316698" count="1" value="114" id="3812042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  6   Id 436316698 " fill="rgb(255,29,0)" points="646.981,1669.54 626.566,1669.54 626.566,1677.11 " />
<svg:polygon detid="436306201" count="1" value="114" id="3812101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 1 pos   module  6  stereo Id 436306201 " fill="rgb(255,29,0)" points="626.566,1987.49 646.981,1987.49 646.981,1979.92 " />
<svg:polygon detid="436306457" count="1" value="114" id="3812102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 2 pos   module  6  stereo Id 436306457 " fill="rgb(255,29,0)" points="626.566,1979.92 646.981,1979.92 646.981,1972.35 " />
<svg:polygon detid="436306713" count="1" value="114" id="3812103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 3 pos   module  6  stereo Id 436306713 " fill="rgb(255,29,0)" points="626.566,1972.35 646.981,1972.35 646.981,1964.78 " />
<svg:polygon detid="436306969" count="1" value="114" id="3812104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 4 pos   module  6  stereo Id 436306969 " fill="rgb(255,29,0)" points="626.566,1964.78 646.981,1964.78 646.981,1957.21 " />
<svg:polygon detid="436307225" count="1" value="114" id="3812105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 5 pos   module  6  stereo Id 436307225 " fill="rgb(255,29,0)" points="626.566,1957.21 646.981,1957.21 646.981,1949.64 " />
<svg:polygon detid="436307481" count="1" value="114" id="3812106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 6 pos   module  6  stereo Id 436307481 " fill="rgb(255,29,0)" points="626.566,1949.64 646.981,1949.64 646.981,1942.07 " />
<svg:polygon detid="436307737" count="1" value="114" id="3812107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 7 pos   module  6  stereo Id 436307737 " fill="rgb(255,29,0)" points="626.566,1942.07 646.981,1942.07 646.981,1934.5 " />
<svg:polygon detid="436307993" count="1" value="114" id="3812108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 8 pos   module  6  stereo Id 436307993 " fill="rgb(255,29,0)" points="626.566,1934.5 646.981,1934.5 646.981,1926.93 " />
<svg:polygon detid="436308249" count="1" value="114" id="3812109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 9 pos   module  6  stereo Id 436308249 " fill="rgb(255,29,0)" points="626.566,1926.93 646.981,1926.93 646.981,1919.36 " />
<svg:polygon detid="436308505" count="1" value="114" id="3812110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 10 pos   module  6  stereo Id 436308505 " fill="rgb(255,29,0)" points="626.566,1919.36 646.981,1919.36 646.981,1911.79 " />
<svg:polygon detid="436308761" count="1" value="114" id="3812111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 11 pos   module  6  stereo Id 436308761 " fill="rgb(255,29,0)" points="626.566,1911.79 646.981,1911.79 646.981,1904.22 " />
<svg:polygon detid="436309017" count="1" value="114" id="3812112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 12 pos   module  6  stereo Id 436309017 " fill="rgb(255,29,0)" points="626.566,1904.22 646.981,1904.22 646.981,1896.65 " />
<svg:polygon detid="436309273" count="1" value="114" id="3812113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 13 pos   module  6  stereo Id 436309273 " fill="rgb(255,29,0)" points="626.566,1896.65 646.981,1896.65 646.981,1889.08 " />
<svg:polygon detid="436309529" count="1" value="114" id="3812114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 14 pos   module  6  stereo Id 436309529 " fill="rgb(255,29,0)" points="626.566,1889.08 646.981,1889.08 646.981,1881.51 " />
<svg:polygon detid="436309785" count="1" value="114" id="3812115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 15 pos   module  6  stereo Id 436309785 " fill="rgb(255,29,0)" points="626.566,1881.51 646.981,1881.51 646.981,1873.94 " />
<svg:polygon detid="436310041" count="1" value="114" id="3812116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 16 pos   module  6  stereo Id 436310041 " fill="rgb(255,29,0)" points="626.566,1873.94 646.981,1873.94 646.981,1866.37 " />
<svg:polygon detid="436310297" count="1" value="114" id="3812117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 17 pos   module  6  stereo Id 436310297 " fill="rgb(255,29,0)" points="626.566,1866.37 646.981,1866.37 646.981,1858.8 " />
<svg:polygon detid="436310553" count="1" value="114" id="3812118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 18 pos   module  6  stereo Id 436310553 " fill="rgb(255,29,0)" points="626.566,1858.8 646.981,1858.8 646.981,1851.23 " />
<svg:polygon detid="436310809" count="1" value="114" id="3812119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 19 pos   module  6  stereo Id 436310809 " fill="rgb(255,29,0)" points="626.566,1851.23 646.981,1851.23 646.981,1843.66 " />
<svg:polygon detid="436311065" count="1" value="114" id="3812120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 20 pos   module  6  stereo Id 436311065 " fill="rgb(255,29,0)" points="626.566,1843.66 646.981,1843.66 646.981,1836.08 " />
<svg:polygon detid="436311321" count="1" value="114" id="3812121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 21 pos   module  6  stereo Id 436311321 " fill="rgb(255,29,0)" points="626.566,1836.08 646.981,1836.08 646.981,1828.51 " />
<svg:polygon detid="436311577" count="1" value="114" id="3812122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 22 pos   module  6  stereo Id 436311577 " fill="rgb(255,29,0)" points="626.566,1828.51 646.981,1828.51 646.981,1820.94 " />
<svg:polygon detid="436311833" count="1" value="114" id="3812123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 23 pos   module  6  stereo Id 436311833 " fill="rgb(255,29,0)" points="626.566,1820.94 646.981,1820.94 646.981,1813.37 " />
<svg:polygon detid="436312089" count="1" value="114" id="3812124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 24 pos   module  6  stereo Id 436312089 " fill="rgb(255,29,0)" points="626.566,1813.37 646.981,1813.37 646.981,1805.8 " />
<svg:polygon detid="436312345" count="1" value="114" id="3812125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 25 pos   module  6  stereo Id 436312345 " fill="rgb(255,29,0)" points="626.566,1805.8 646.981,1805.8 646.981,1798.23 " />
<svg:polygon detid="436312601" count="1" value="114" id="3812126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 26 pos   module  6  stereo Id 436312601 " fill="rgb(255,29,0)" points="626.566,1798.23 646.981,1798.23 646.981,1790.66 " />
<svg:polygon detid="436312857" count="1" value="114" id="3812127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 27 pos   module  6  stereo Id 436312857 " fill="rgb(255,29,0)" points="626.566,1790.66 646.981,1790.66 646.981,1783.09 " />
<svg:polygon detid="436313113" count="1" value="114" id="3812128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 28 pos   module  6  stereo Id 436313113 " fill="rgb(255,29,0)" points="626.566,1783.09 646.981,1783.09 646.981,1775.52 " />
<svg:polygon detid="436313369" count="1" value="114" id="3812129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 29 pos   module  6  stereo Id 436313369 " fill="rgb(255,29,0)" points="626.566,1775.52 646.981,1775.52 646.981,1767.95 " />
<svg:polygon detid="436313625" count="1" value="114" id="3812130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 30 pos   module  6  stereo Id 436313625 " fill="rgb(255,29,0)" points="626.566,1767.95 646.981,1767.95 646.981,1760.38 " />
<svg:polygon detid="436313881" count="1" value="114" id="3812131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 31 pos   module  6  stereo Id 436313881 " fill="rgb(255,29,0)" points="626.566,1760.38 646.981,1760.38 646.981,1752.81 " />
<svg:polygon detid="436314137" count="1" value="114" id="3812132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 32 pos   module  6  stereo Id 436314137 " fill="rgb(255,29,0)" points="626.566,1752.81 646.981,1752.81 646.981,1745.24 " />
<svg:polygon detid="436314393" count="1" value="114" id="3812133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 33 pos   module  6  stereo Id 436314393 " fill="rgb(255,29,0)" points="626.566,1745.24 646.981,1745.24 646.981,1737.67 " />
<svg:polygon detid="436314649" count="1" value="114" id="3812134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 34 pos   module  6  stereo Id 436314649 " fill="rgb(255,29,0)" points="626.566,1737.67 646.981,1737.67 646.981,1730.1 " />
<svg:polygon detid="436314905" count="1" value="114" id="3812135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 35 pos   module  6  stereo Id 436314905 " fill="rgb(255,29,0)" points="626.566,1730.1 646.981,1730.1 646.981,1722.53 " />
<svg:polygon detid="436315161" count="1" value="114" id="3812136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 36 pos   module  6  stereo Id 436315161 " fill="rgb(255,29,0)" points="626.566,1722.53 646.981,1722.53 646.981,1714.96 " />
<svg:polygon detid="436315417" count="1" value="114" id="3812137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 37 pos   module  6  stereo Id 436315417 " fill="rgb(255,29,0)" points="626.566,1714.96 646.981,1714.96 646.981,1707.39 " />
<svg:polygon detid="436315673" count="1" value="114" id="3812138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 38 pos   module  6  stereo Id 436315673 " fill="rgb(255,29,0)" points="626.566,1707.39 646.981,1707.39 646.981,1699.82 " />
<svg:polygon detid="436315929" count="1" value="114" id="3812139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 39 pos   module  6  stereo Id 436315929 " fill="rgb(255,29,0)" points="626.566,1699.82 646.981,1699.82 646.981,1692.25 " />
<svg:polygon detid="436316185" count="1" value="114" id="3812140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 40 pos   module  6  stereo Id 436316185 " fill="rgb(255,29,0)" points="626.566,1692.25 646.981,1692.25 646.981,1684.68 " />
<svg:polygon detid="436316441" count="1" value="114" id="3812141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 41 pos   module  6  stereo Id 436316441 " fill="rgb(255,29,0)" points="626.566,1684.68 646.981,1684.68 646.981,1677.11 " />
<svg:polygon detid="436316697" count="1" value="114" id="3812142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 1 rod 42 pos   module  6  stereo Id 436316697 " fill="rgb(255,29,0)" points="626.566,1677.11 646.981,1677.11 646.981,1669.54 " />
<svg:polygon detid="436338950" count="1" value="117" id="3901001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  1   Id 436338950 " fill="rgb(255,23,0)" points="734.349,1981.79 713.934,1981.79 713.934,1988.42 " />
<svg:polygon detid="436339206" count="1" value="117" id="3901002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  1   Id 436339206 " fill="rgb(255,23,0)" points="734.349,1975.15 713.934,1975.15 713.934,1981.79 " />
<svg:polygon detid="436339462" count="1" value="117" id="3901003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  1   Id 436339462 " fill="rgb(255,23,0)" points="734.349,1968.51 713.934,1968.51 713.934,1975.15 " />
<svg:polygon detid="436339718" count="1" value="117" id="3901004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  1   Id 436339718 " fill="rgb(255,23,0)" points="734.349,1961.87 713.934,1961.87 713.934,1968.51 " />
<svg:polygon detid="436339974" count="1" value="117" id="3901005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  1   Id 436339974 " fill="rgb(255,23,0)" points="734.349,1955.23 713.934,1955.23 713.934,1961.87 " />
<svg:polygon detid="436340230" count="1" value="117" id="3901006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  1   Id 436340230 " fill="rgb(255,23,0)" points="734.349,1948.6 713.934,1948.6 713.934,1955.23 " />
<svg:polygon detid="436340486" count="1" value="117" id="3901007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  1   Id 436340486 " fill="rgb(255,23,0)" points="734.349,1941.96 713.934,1941.96 713.934,1948.6 " />
<svg:polygon detid="436340742" count="1" value="117" id="3901008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  1   Id 436340742 " fill="rgb(255,23,0)" points="734.349,1935.32 713.934,1935.32 713.934,1941.96 " />
<svg:polygon detid="436340998" count="1" value="117" id="3901009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  1   Id 436340998 " fill="rgb(255,23,0)" points="734.349,1928.68 713.934,1928.68 713.934,1935.32 " />
<svg:polygon detid="436341254" count="1" value="117" id="3901010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  1   Id 436341254 " fill="rgb(255,23,0)" points="734.349,1922.04 713.934,1922.04 713.934,1928.68 " />
<svg:polygon detid="436341510" count="1" value="117" id="3901011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  1   Id 436341510 " fill="rgb(255,23,0)" points="734.349,1915.41 713.934,1915.41 713.934,1922.04 " />
<svg:polygon detid="436341766" count="1" value="117" id="3901012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  1   Id 436341766 " fill="rgb(255,23,0)" points="734.349,1908.77 713.934,1908.77 713.934,1915.41 " />
<svg:polygon detid="436342022" count="1" value="117" id="3901013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  1   Id 436342022 " fill="rgb(255,23,0)" points="734.349,1902.13 713.934,1902.13 713.934,1908.77 " />
<svg:polygon detid="436342278" count="1" value="117" id="3901014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  1   Id 436342278 " fill="rgb(255,23,0)" points="734.349,1895.49 713.934,1895.49 713.934,1902.13 " />
<svg:polygon detid="436342534" count="1" value="117" id="3901015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  1   Id 436342534 " fill="rgb(255,23,0)" points="734.349,1888.85 713.934,1888.85 713.934,1895.49 " />
<svg:polygon detid="436342790" count="1" value="117" id="3901016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  1   Id 436342790 " fill="rgb(255,23,0)" points="734.349,1882.22 713.934,1882.22 713.934,1888.85 " />
<svg:polygon detid="436343046" count="1" value="117" id="3901017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  1   Id 436343046 " fill="rgb(255,23,0)" points="734.349,1875.58 713.934,1875.58 713.934,1882.22 " />
<svg:polygon detid="436343302" count="1" value="117" id="3901018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  1   Id 436343302 " fill="rgb(255,23,0)" points="734.349,1868.94 713.934,1868.94 713.934,1875.58 " />
<svg:polygon detid="436343558" count="1" value="117" id="3901019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  1   Id 436343558 " fill="rgb(255,23,0)" points="734.349,1862.3 713.934,1862.3 713.934,1868.94 " />
<svg:polygon detid="436343814" count="1" value="117" id="3901020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  1   Id 436343814 " fill="rgb(255,23,0)" points="734.349,1855.67 713.934,1855.67 713.934,1862.3 " />
<svg:polygon detid="436344070" count="1" value="117" id="3901021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  1   Id 436344070 " fill="rgb(255,23,0)" points="734.349,1849.03 713.934,1849.03 713.934,1855.67 " />
<svg:polygon detid="436344326" count="1" value="117" id="3901022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  1   Id 436344326 " fill="rgb(255,23,0)" points="734.349,1842.39 713.934,1842.39 713.934,1849.03 " />
<svg:polygon detid="436344582" count="1" value="117" id="3901023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  1   Id 436344582 " fill="rgb(255,23,0)" points="734.349,1835.75 713.934,1835.75 713.934,1842.39 " />
<svg:polygon detid="436344838" count="1" value="117" id="3901024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  1   Id 436344838 " fill="rgb(255,23,0)" points="734.349,1829.11 713.934,1829.11 713.934,1835.75 " />
<svg:polygon detid="436345094" count="1" value="117" id="3901025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  1   Id 436345094 " fill="rgb(255,23,0)" points="734.349,1822.48 713.934,1822.48 713.934,1829.11 " />
<svg:polygon detid="436345350" count="1" value="117" id="3901026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  1   Id 436345350 " fill="rgb(255,23,0)" points="734.349,1815.84 713.934,1815.84 713.934,1822.48 " />
<svg:polygon detid="436345606" count="1" value="117" id="3901027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  1   Id 436345606 " fill="rgb(255,23,0)" points="734.349,1809.2 713.934,1809.2 713.934,1815.84 " />
<svg:polygon detid="436345862" count="1" value="117" id="3901028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  1   Id 436345862 " fill="rgb(255,23,0)" points="734.349,1802.56 713.934,1802.56 713.934,1809.2 " />
<svg:polygon detid="436346118" count="1" value="117" id="3901029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  1   Id 436346118 " fill="rgb(255,23,0)" points="734.349,1795.92 713.934,1795.92 713.934,1802.56 " />
<svg:polygon detid="436346374" count="1" value="117" id="3901030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  1   Id 436346374 " fill="rgb(255,23,0)" points="734.349,1789.29 713.934,1789.29 713.934,1795.92 " />
<svg:polygon detid="436346630" count="1" value="117" id="3901031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  1   Id 436346630 " fill="rgb(255,23,0)" points="734.349,1782.65 713.934,1782.65 713.934,1789.29 " />
<svg:polygon detid="436346886" count="1" value="117" id="3901032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  1   Id 436346886 " fill="rgb(255,23,0)" points="734.349,1776.01 713.934,1776.01 713.934,1782.65 " />
<svg:polygon detid="436347142" count="1" value="117" id="3901033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  1   Id 436347142 " fill="rgb(255,23,0)" points="734.349,1769.37 713.934,1769.37 713.934,1776.01 " />
<svg:polygon detid="436347398" count="1" value="117" id="3901034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  1   Id 436347398 " fill="rgb(255,23,0)" points="734.349,1762.73 713.934,1762.73 713.934,1769.37 " />
<svg:polygon detid="436347654" count="1" value="117" id="3901035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  1   Id 436347654 " fill="rgb(255,23,0)" points="734.349,1756.1 713.934,1756.1 713.934,1762.73 " />
<svg:polygon detid="436347910" count="1" value="117" id="3901036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  1   Id 436347910 " fill="rgb(255,23,0)" points="734.349,1749.46 713.934,1749.46 713.934,1756.1 " />
<svg:polygon detid="436348166" count="1" value="117" id="3901037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  1   Id 436348166 " fill="rgb(255,23,0)" points="734.349,1742.82 713.934,1742.82 713.934,1749.46 " />
<svg:polygon detid="436348422" count="1" value="117" id="3901038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  1   Id 436348422 " fill="rgb(255,23,0)" points="734.349,1736.18 713.934,1736.18 713.934,1742.82 " />
<svg:polygon detid="436348678" count="1" value="117" id="3901039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  1   Id 436348678 " fill="rgb(255,23,0)" points="734.349,1729.54 713.934,1729.54 713.934,1736.18 " />
<svg:polygon detid="436348934" count="1" value="117" id="3901040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  1   Id 436348934 " fill="rgb(255,23,0)" points="734.349,1722.91 713.934,1722.91 713.934,1729.54 " />
<svg:polygon detid="436349190" count="1" value="117" id="3901041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  1   Id 436349190 " fill="rgb(255,23,0)" points="734.349,1716.27 713.934,1716.27 713.934,1722.91 " />
<svg:polygon detid="436349446" count="1" value="117" id="3901042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  1   Id 436349446 " fill="rgb(255,23,0)" points="734.349,1709.63 713.934,1709.63 713.934,1716.27 " />
<svg:polygon detid="436349702" count="1" value="117" id="3901043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  1   Id 436349702 " fill="rgb(255,23,0)" points="734.349,1702.99 713.934,1702.99 713.934,1709.63 " />
<svg:polygon detid="436349958" count="1" value="117" id="3901044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  1   Id 436349958 " fill="rgb(255,23,0)" points="734.349,1696.36 713.934,1696.36 713.934,1702.99 " />
<svg:polygon detid="436350214" count="1" value="117" id="3901045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  1   Id 436350214 " fill="rgb(255,23,0)" points="734.349,1689.72 713.934,1689.72 713.934,1696.36 " />
<svg:polygon detid="436350470" count="1" value="117" id="3901046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  1   Id 436350470 " fill="rgb(255,23,0)" points="734.349,1683.08 713.934,1683.08 713.934,1689.72 " />
<svg:polygon detid="436350726" count="1" value="117" id="3901047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  1   Id 436350726 " fill="rgb(255,23,0)" points="734.349,1676.44 713.934,1676.44 713.934,1683.08 " />
<svg:polygon detid="436350982" count="1" value="117" id="3901048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  1   Id 436350982 " fill="rgb(255,23,0)" points="734.349,1669.8 713.934,1669.8 713.934,1676.44 " />
<svg:polygon detid="436338949" count="1" value="117" id="3901101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  1  stereo Id 436338949 " fill="rgb(255,23,0)" points="713.934,1988.42 734.349,1988.42 734.349,1981.79 " />
<svg:polygon detid="436339205" count="1" value="117" id="3901102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  1  stereo Id 436339205 " fill="rgb(255,23,0)" points="713.934,1981.79 734.349,1981.79 734.349,1975.15 " />
<svg:polygon detid="436339461" count="1" value="117" id="3901103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  1  stereo Id 436339461 " fill="rgb(255,23,0)" points="713.934,1975.15 734.349,1975.15 734.349,1968.51 " />
<svg:polygon detid="436339717" count="1" value="117" id="3901104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  1  stereo Id 436339717 " fill="rgb(255,23,0)" points="713.934,1968.51 734.349,1968.51 734.349,1961.87 " />
<svg:polygon detid="436339973" count="1" value="117" id="3901105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  1  stereo Id 436339973 " fill="rgb(255,23,0)" points="713.934,1961.87 734.349,1961.87 734.349,1955.23 " />
<svg:polygon detid="436340229" count="1" value="117" id="3901106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  1  stereo Id 436340229 " fill="rgb(255,23,0)" points="713.934,1955.23 734.349,1955.23 734.349,1948.6 " />
<svg:polygon detid="436340485" count="1" value="117" id="3901107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  1  stereo Id 436340485 " fill="rgb(255,23,0)" points="713.934,1948.6 734.349,1948.6 734.349,1941.96 " />
<svg:polygon detid="436340741" count="1" value="117" id="3901108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  1  stereo Id 436340741 " fill="rgb(255,23,0)" points="713.934,1941.96 734.349,1941.96 734.349,1935.32 " />
<svg:polygon detid="436340997" count="1" value="117" id="3901109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  1  stereo Id 436340997 " fill="rgb(255,23,0)" points="713.934,1935.32 734.349,1935.32 734.349,1928.68 " />
<svg:polygon detid="436341253" count="1" value="117" id="3901110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  1  stereo Id 436341253 " fill="rgb(255,23,0)" points="713.934,1928.68 734.349,1928.68 734.349,1922.04 " />
<svg:polygon detid="436341509" count="1" value="117" id="3901111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  1  stereo Id 436341509 " fill="rgb(255,23,0)" points="713.934,1922.04 734.349,1922.04 734.349,1915.41 " />
<svg:polygon detid="436341765" count="1" value="117" id="3901112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  1  stereo Id 436341765 " fill="rgb(255,23,0)" points="713.934,1915.41 734.349,1915.41 734.349,1908.77 " />
<svg:polygon detid="436342021" count="1" value="117" id="3901113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  1  stereo Id 436342021 " fill="rgb(255,23,0)" points="713.934,1908.77 734.349,1908.77 734.349,1902.13 " />
<svg:polygon detid="436342277" count="1" value="117" id="3901114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  1  stereo Id 436342277 " fill="rgb(255,23,0)" points="713.934,1902.13 734.349,1902.13 734.349,1895.49 " />
<svg:polygon detid="436342533" count="1" value="117" id="3901115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  1  stereo Id 436342533 " fill="rgb(255,23,0)" points="713.934,1895.49 734.349,1895.49 734.349,1888.85 " />
<svg:polygon detid="436342789" count="1" value="117" id="3901116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  1  stereo Id 436342789 " fill="rgb(255,23,0)" points="713.934,1888.85 734.349,1888.85 734.349,1882.22 " />
<svg:polygon detid="436343045" count="1" value="117" id="3901117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  1  stereo Id 436343045 " fill="rgb(255,23,0)" points="713.934,1882.22 734.349,1882.22 734.349,1875.58 " />
<svg:polygon detid="436343301" count="1" value="117" id="3901118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  1  stereo Id 436343301 " fill="rgb(255,23,0)" points="713.934,1875.58 734.349,1875.58 734.349,1868.94 " />
<svg:polygon detid="436343557" count="1" value="117" id="3901119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  1  stereo Id 436343557 " fill="rgb(255,23,0)" points="713.934,1868.94 734.349,1868.94 734.349,1862.3 " />
<svg:polygon detid="436343813" count="1" value="117" id="3901120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  1  stereo Id 436343813 " fill="rgb(255,23,0)" points="713.934,1862.3 734.349,1862.3 734.349,1855.67 " />
<svg:polygon detid="436344069" count="1" value="117" id="3901121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  1  stereo Id 436344069 " fill="rgb(255,23,0)" points="713.934,1855.67 734.349,1855.67 734.349,1849.03 " />
<svg:polygon detid="436344325" count="1" value="117" id="3901122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  1  stereo Id 436344325 " fill="rgb(255,23,0)" points="713.934,1849.03 734.349,1849.03 734.349,1842.39 " />
<svg:polygon detid="436344581" count="1" value="117" id="3901123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  1  stereo Id 436344581 " fill="rgb(255,23,0)" points="713.934,1842.39 734.349,1842.39 734.349,1835.75 " />
<svg:polygon detid="436344837" count="1" value="117" id="3901124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  1  stereo Id 436344837 " fill="rgb(255,23,0)" points="713.934,1835.75 734.349,1835.75 734.349,1829.11 " />
<svg:polygon detid="436345093" count="1" value="117" id="3901125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  1  stereo Id 436345093 " fill="rgb(255,23,0)" points="713.934,1829.11 734.349,1829.11 734.349,1822.48 " />
<svg:polygon detid="436345349" count="1" value="117" id="3901126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  1  stereo Id 436345349 " fill="rgb(255,23,0)" points="713.934,1822.48 734.349,1822.48 734.349,1815.84 " />
<svg:polygon detid="436345605" count="1" value="117" id="3901127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  1  stereo Id 436345605 " fill="rgb(255,23,0)" points="713.934,1815.84 734.349,1815.84 734.349,1809.2 " />
<svg:polygon detid="436345861" count="1" value="117" id="3901128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  1  stereo Id 436345861 " fill="rgb(255,23,0)" points="713.934,1809.2 734.349,1809.2 734.349,1802.56 " />
<svg:polygon detid="436346117" count="1" value="117" id="3901129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  1  stereo Id 436346117 " fill="rgb(255,23,0)" points="713.934,1802.56 734.349,1802.56 734.349,1795.92 " />
<svg:polygon detid="436346373" count="1" value="117" id="3901130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  1  stereo Id 436346373 " fill="rgb(255,23,0)" points="713.934,1795.92 734.349,1795.92 734.349,1789.29 " />
<svg:polygon detid="436346629" count="1" value="117" id="3901131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  1  stereo Id 436346629 " fill="rgb(255,23,0)" points="713.934,1789.29 734.349,1789.29 734.349,1782.65 " />
<svg:polygon detid="436346885" count="1" value="117" id="3901132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  1  stereo Id 436346885 " fill="rgb(255,23,0)" points="713.934,1782.65 734.349,1782.65 734.349,1776.01 " />
<svg:polygon detid="436347141" count="1" value="117" id="3901133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  1  stereo Id 436347141 " fill="rgb(255,23,0)" points="713.934,1776.01 734.349,1776.01 734.349,1769.37 " />
<svg:polygon detid="436347397" count="1" value="117" id="3901134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  1  stereo Id 436347397 " fill="rgb(255,23,0)" points="713.934,1769.37 734.349,1769.37 734.349,1762.73 " />
<svg:polygon detid="436347653" count="1" value="117" id="3901135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  1  stereo Id 436347653 " fill="rgb(255,23,0)" points="713.934,1762.73 734.349,1762.73 734.349,1756.1 " />
<svg:polygon detid="436347909" count="1" value="117" id="3901136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  1  stereo Id 436347909 " fill="rgb(255,23,0)" points="713.934,1756.1 734.349,1756.1 734.349,1749.46 " />
<svg:polygon detid="436348165" count="1" value="117" id="3901137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  1  stereo Id 436348165 " fill="rgb(255,23,0)" points="713.934,1749.46 734.349,1749.46 734.349,1742.82 " />
<svg:polygon detid="436348421" count="1" value="117" id="3901138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  1  stereo Id 436348421 " fill="rgb(255,23,0)" points="713.934,1742.82 734.349,1742.82 734.349,1736.18 " />
<svg:polygon detid="436348677" count="1" value="117" id="3901139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  1  stereo Id 436348677 " fill="rgb(255,23,0)" points="713.934,1736.18 734.349,1736.18 734.349,1729.54 " />
<svg:polygon detid="436348933" count="1" value="117" id="3901140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  1  stereo Id 436348933 " fill="rgb(255,23,0)" points="713.934,1729.54 734.349,1729.54 734.349,1722.91 " />
<svg:polygon detid="436349189" count="1" value="117" id="3901141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  1  stereo Id 436349189 " fill="rgb(255,23,0)" points="713.934,1722.91 734.349,1722.91 734.349,1716.27 " />
<svg:polygon detid="436349445" count="1" value="117" id="3901142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  1  stereo Id 436349445 " fill="rgb(255,23,0)" points="713.934,1716.27 734.349,1716.27 734.349,1709.63 " />
<svg:polygon detid="436349701" count="1" value="117" id="3901143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  1  stereo Id 436349701 " fill="rgb(255,23,0)" points="713.934,1709.63 734.349,1709.63 734.349,1702.99 " />
<svg:polygon detid="436349957" count="1" value="117" id="3901144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  1  stereo Id 436349957 " fill="rgb(255,23,0)" points="713.934,1702.99 734.349,1702.99 734.349,1696.36 " />
<svg:polygon detid="436350213" count="1" value="117" id="3901145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  1  stereo Id 436350213 " fill="rgb(255,23,0)" points="713.934,1696.36 734.349,1696.36 734.349,1689.72 " />
<svg:polygon detid="436350469" count="1" value="117" id="3901146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  1  stereo Id 436350469 " fill="rgb(255,23,0)" points="713.934,1689.72 734.349,1689.72 734.349,1683.08 " />
<svg:polygon detid="436350725" count="1" value="117" id="3901147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  1  stereo Id 436350725 " fill="rgb(255,23,0)" points="713.934,1683.08 734.349,1683.08 734.349,1676.44 " />
<svg:polygon detid="436350981" count="1" value="117" id="3901148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  1  stereo Id 436350981 " fill="rgb(255,23,0)" points="713.934,1676.44 734.349,1676.44 734.349,1669.8 " />
<svg:polygon detid="436338954" count="1" value="117" id="3902001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  2   Id 436338954 " fill="rgb(255,23,0)" points="757.316,1981.79 736.901,1981.79 736.901,1988.42 " />
<svg:polygon detid="436339210" count="1" value="117" id="3902002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  2   Id 436339210 " fill="rgb(255,23,0)" points="757.316,1975.15 736.901,1975.15 736.901,1981.79 " />
<svg:polygon detid="436339466" count="1" value="117" id="3902003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  2   Id 436339466 " fill="rgb(255,23,0)" points="757.316,1968.51 736.901,1968.51 736.901,1975.15 " />
<svg:polygon detid="436339722" count="1" value="117" id="3902004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  2   Id 436339722 " fill="rgb(255,23,0)" points="757.316,1961.87 736.901,1961.87 736.901,1968.51 " />
<svg:polygon detid="436339978" count="1" value="117" id="3902005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  2   Id 436339978 " fill="rgb(255,23,0)" points="757.316,1955.23 736.901,1955.23 736.901,1961.87 " />
<svg:polygon detid="436340234" count="1" value="117" id="3902006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  2   Id 436340234 " fill="rgb(255,23,0)" points="757.316,1948.6 736.901,1948.6 736.901,1955.23 " />
<svg:polygon detid="436340490" count="1" value="117" id="3902007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  2   Id 436340490 " fill="rgb(255,23,0)" points="757.316,1941.96 736.901,1941.96 736.901,1948.6 " />
<svg:polygon detid="436340746" count="1" value="117" id="3902008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  2   Id 436340746 " fill="rgb(255,23,0)" points="757.316,1935.32 736.901,1935.32 736.901,1941.96 " />
<svg:polygon detid="436341002" count="1" value="117" id="3902009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  2   Id 436341002 " fill="rgb(255,23,0)" points="757.316,1928.68 736.901,1928.68 736.901,1935.32 " />
<svg:polygon detid="436341258" count="1" value="117" id="3902010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  2   Id 436341258 " fill="rgb(255,23,0)" points="757.316,1922.04 736.901,1922.04 736.901,1928.68 " />
<svg:polygon detid="436341514" count="1" value="117" id="3902011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  2   Id 436341514 " fill="rgb(255,23,0)" points="757.316,1915.41 736.901,1915.41 736.901,1922.04 " />
<svg:polygon detid="436341770" count="1" value="117" id="3902012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  2   Id 436341770 " fill="rgb(255,23,0)" points="757.316,1908.77 736.901,1908.77 736.901,1915.41 " />
<svg:polygon detid="436342026" count="1" value="117" id="3902013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  2   Id 436342026 " fill="rgb(255,23,0)" points="757.316,1902.13 736.901,1902.13 736.901,1908.77 " />
<svg:polygon detid="436342282" count="1" value="117" id="3902014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  2   Id 436342282 " fill="rgb(255,23,0)" points="757.316,1895.49 736.901,1895.49 736.901,1902.13 " />
<svg:polygon detid="436342538" count="1" value="117" id="3902015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  2   Id 436342538 " fill="rgb(255,23,0)" points="757.316,1888.85 736.901,1888.85 736.901,1895.49 " />
<svg:polygon detid="436342794" count="1" value="117" id="3902016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  2   Id 436342794 " fill="rgb(255,23,0)" points="757.316,1882.22 736.901,1882.22 736.901,1888.85 " />
<svg:polygon detid="436343050" count="1" value="117" id="3902017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  2   Id 436343050 " fill="rgb(255,23,0)" points="757.316,1875.58 736.901,1875.58 736.901,1882.22 " />
<svg:polygon detid="436343306" count="1" value="117" id="3902018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  2   Id 436343306 " fill="rgb(255,23,0)" points="757.316,1868.94 736.901,1868.94 736.901,1875.58 " />
<svg:polygon detid="436343562" count="1" value="117" id="3902019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  2   Id 436343562 " fill="rgb(255,23,0)" points="757.316,1862.3 736.901,1862.3 736.901,1868.94 " />
<svg:polygon detid="436343818" count="1" value="117" id="3902020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  2   Id 436343818 " fill="rgb(255,23,0)" points="757.316,1855.67 736.901,1855.67 736.901,1862.3 " />
<svg:polygon detid="436344074" count="1" value="117" id="3902021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  2   Id 436344074 " fill="rgb(255,23,0)" points="757.316,1849.03 736.901,1849.03 736.901,1855.67 " />
<svg:polygon detid="436344330" count="1" value="117" id="3902022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  2   Id 436344330 " fill="rgb(255,23,0)" points="757.316,1842.39 736.901,1842.39 736.901,1849.03 " />
<svg:polygon detid="436344586" count="1" value="117" id="3902023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  2   Id 436344586 " fill="rgb(255,23,0)" points="757.316,1835.75 736.901,1835.75 736.901,1842.39 " />
<svg:polygon detid="436344842" count="1" value="117" id="3902024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  2   Id 436344842 " fill="rgb(255,23,0)" points="757.316,1829.11 736.901,1829.11 736.901,1835.75 " />
<svg:polygon detid="436345098" count="1" value="117" id="3902025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  2   Id 436345098 " fill="rgb(255,23,0)" points="757.316,1822.48 736.901,1822.48 736.901,1829.11 " />
<svg:polygon detid="436345354" count="1" value="117" id="3902026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  2   Id 436345354 " fill="rgb(255,23,0)" points="757.316,1815.84 736.901,1815.84 736.901,1822.48 " />
<svg:polygon detid="436345610" count="1" value="117" id="3902027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  2   Id 436345610 " fill="rgb(255,23,0)" points="757.316,1809.2 736.901,1809.2 736.901,1815.84 " />
<svg:polygon detid="436345866" count="1" value="117" id="3902028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  2   Id 436345866 " fill="rgb(255,23,0)" points="757.316,1802.56 736.901,1802.56 736.901,1809.2 " />
<svg:polygon detid="436346122" count="1" value="117" id="3902029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  2   Id 436346122 " fill="rgb(255,23,0)" points="757.316,1795.92 736.901,1795.92 736.901,1802.56 " />
<svg:polygon detid="436346378" count="1" value="117" id="3902030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  2   Id 436346378 " fill="rgb(255,23,0)" points="757.316,1789.29 736.901,1789.29 736.901,1795.92 " />
<svg:polygon detid="436346634" count="1" value="117" id="3902031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  2   Id 436346634 " fill="rgb(255,23,0)" points="757.316,1782.65 736.901,1782.65 736.901,1789.29 " />
<svg:polygon detid="436346890" count="1" value="117" id="3902032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  2   Id 436346890 " fill="rgb(255,23,0)" points="757.316,1776.01 736.901,1776.01 736.901,1782.65 " />
<svg:polygon detid="436347146" count="1" value="117" id="3902033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  2   Id 436347146 " fill="rgb(255,23,0)" points="757.316,1769.37 736.901,1769.37 736.901,1776.01 " />
<svg:polygon detid="436347402" count="1" value="117" id="3902034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  2   Id 436347402 " fill="rgb(255,23,0)" points="757.316,1762.73 736.901,1762.73 736.901,1769.37 " />
<svg:polygon detid="436347658" count="1" value="117" id="3902035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  2   Id 436347658 " fill="rgb(255,23,0)" points="757.316,1756.1 736.901,1756.1 736.901,1762.73 " />
<svg:polygon detid="436347914" count="1" value="117" id="3902036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  2   Id 436347914 " fill="rgb(255,23,0)" points="757.316,1749.46 736.901,1749.46 736.901,1756.1 " />
<svg:polygon detid="436348170" count="1" value="117" id="3902037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  2   Id 436348170 " fill="rgb(255,23,0)" points="757.316,1742.82 736.901,1742.82 736.901,1749.46 " />
<svg:polygon detid="436348426" count="1" value="117" id="3902038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  2   Id 436348426 " fill="rgb(255,23,0)" points="757.316,1736.18 736.901,1736.18 736.901,1742.82 " />
<svg:polygon detid="436348682" count="1" value="117" id="3902039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  2   Id 436348682 " fill="rgb(255,23,0)" points="757.316,1729.54 736.901,1729.54 736.901,1736.18 " />
<svg:polygon detid="436348938" count="1" value="117" id="3902040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  2   Id 436348938 " fill="rgb(255,23,0)" points="757.316,1722.91 736.901,1722.91 736.901,1729.54 " />
<svg:polygon detid="436349194" count="1" value="117" id="3902041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  2   Id 436349194 " fill="rgb(255,23,0)" points="757.316,1716.27 736.901,1716.27 736.901,1722.91 " />
<svg:polygon detid="436349450" count="1" value="117" id="3902042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  2   Id 436349450 " fill="rgb(255,23,0)" points="757.316,1709.63 736.901,1709.63 736.901,1716.27 " />
<svg:polygon detid="436349706" count="1" value="117" id="3902043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  2   Id 436349706 " fill="rgb(255,23,0)" points="757.316,1702.99 736.901,1702.99 736.901,1709.63 " />
<svg:polygon detid="436349962" count="1" value="117" id="3902044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  2   Id 436349962 " fill="rgb(255,23,0)" points="757.316,1696.36 736.901,1696.36 736.901,1702.99 " />
<svg:polygon detid="436350218" count="1" value="117" id="3902045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  2   Id 436350218 " fill="rgb(255,23,0)" points="757.316,1689.72 736.901,1689.72 736.901,1696.36 " />
<svg:polygon detid="436350474" count="1" value="117" id="3902046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  2   Id 436350474 " fill="rgb(255,23,0)" points="757.316,1683.08 736.901,1683.08 736.901,1689.72 " />
<svg:polygon detid="436350730" count="1" value="117" id="3902047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  2   Id 436350730 " fill="rgb(255,23,0)" points="757.316,1676.44 736.901,1676.44 736.901,1683.08 " />
<svg:polygon detid="436350986" count="1" value="117" id="3902048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  2   Id 436350986 " fill="rgb(255,23,0)" points="757.316,1669.8 736.901,1669.8 736.901,1676.44 " />
<svg:polygon detid="436338953" count="1" value="117" id="3902101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  2  stereo Id 436338953 " fill="rgb(255,23,0)" points="736.901,1988.42 757.316,1988.42 757.316,1981.79 " />
<svg:polygon detid="436339209" count="1" value="117" id="3902102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  2  stereo Id 436339209 " fill="rgb(255,23,0)" points="736.901,1981.79 757.316,1981.79 757.316,1975.15 " />
<svg:polygon detid="436339465" count="1" value="117" id="3902103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  2  stereo Id 436339465 " fill="rgb(255,23,0)" points="736.901,1975.15 757.316,1975.15 757.316,1968.51 " />
<svg:polygon detid="436339721" count="1" value="117" id="3902104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  2  stereo Id 436339721 " fill="rgb(255,23,0)" points="736.901,1968.51 757.316,1968.51 757.316,1961.87 " />
<svg:polygon detid="436339977" count="1" value="117" id="3902105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  2  stereo Id 436339977 " fill="rgb(255,23,0)" points="736.901,1961.87 757.316,1961.87 757.316,1955.23 " />
<svg:polygon detid="436340233" count="1" value="117" id="3902106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  2  stereo Id 436340233 " fill="rgb(255,23,0)" points="736.901,1955.23 757.316,1955.23 757.316,1948.6 " />
<svg:polygon detid="436340489" count="1" value="117" id="3902107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  2  stereo Id 436340489 " fill="rgb(255,23,0)" points="736.901,1948.6 757.316,1948.6 757.316,1941.96 " />
<svg:polygon detid="436340745" count="1" value="117" id="3902108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  2  stereo Id 436340745 " fill="rgb(255,23,0)" points="736.901,1941.96 757.316,1941.96 757.316,1935.32 " />
<svg:polygon detid="436341001" count="1" value="117" id="3902109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  2  stereo Id 436341001 " fill="rgb(255,23,0)" points="736.901,1935.32 757.316,1935.32 757.316,1928.68 " />
<svg:polygon detid="436341257" count="1" value="117" id="3902110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  2  stereo Id 436341257 " fill="rgb(255,23,0)" points="736.901,1928.68 757.316,1928.68 757.316,1922.04 " />
<svg:polygon detid="436341513" count="1" value="117" id="3902111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  2  stereo Id 436341513 " fill="rgb(255,23,0)" points="736.901,1922.04 757.316,1922.04 757.316,1915.41 " />
<svg:polygon detid="436341769" count="1" value="117" id="3902112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  2  stereo Id 436341769 " fill="rgb(255,23,0)" points="736.901,1915.41 757.316,1915.41 757.316,1908.77 " />
<svg:polygon detid="436342025" count="1" value="117" id="3902113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  2  stereo Id 436342025 " fill="rgb(255,23,0)" points="736.901,1908.77 757.316,1908.77 757.316,1902.13 " />
<svg:polygon detid="436342281" count="1" value="117" id="3902114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  2  stereo Id 436342281 " fill="rgb(255,23,0)" points="736.901,1902.13 757.316,1902.13 757.316,1895.49 " />
<svg:polygon detid="436342537" count="1" value="117" id="3902115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  2  stereo Id 436342537 " fill="rgb(255,23,0)" points="736.901,1895.49 757.316,1895.49 757.316,1888.85 " />
<svg:polygon detid="436342793" count="1" value="117" id="3902116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  2  stereo Id 436342793 " fill="rgb(255,23,0)" points="736.901,1888.85 757.316,1888.85 757.316,1882.22 " />
<svg:polygon detid="436343049" count="1" value="117" id="3902117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  2  stereo Id 436343049 " fill="rgb(255,23,0)" points="736.901,1882.22 757.316,1882.22 757.316,1875.58 " />
<svg:polygon detid="436343305" count="1" value="117" id="3902118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  2  stereo Id 436343305 " fill="rgb(255,23,0)" points="736.901,1875.58 757.316,1875.58 757.316,1868.94 " />
<svg:polygon detid="436343561" count="1" value="117" id="3902119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  2  stereo Id 436343561 " fill="rgb(255,23,0)" points="736.901,1868.94 757.316,1868.94 757.316,1862.3 " />
<svg:polygon detid="436343817" count="1" value="117" id="3902120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  2  stereo Id 436343817 " fill="rgb(255,23,0)" points="736.901,1862.3 757.316,1862.3 757.316,1855.67 " />
<svg:polygon detid="436344073" count="1" value="117" id="3902121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  2  stereo Id 436344073 " fill="rgb(255,23,0)" points="736.901,1855.67 757.316,1855.67 757.316,1849.03 " />
<svg:polygon detid="436344329" count="1" value="117" id="3902122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  2  stereo Id 436344329 " fill="rgb(255,23,0)" points="736.901,1849.03 757.316,1849.03 757.316,1842.39 " />
<svg:polygon detid="436344585" count="1" value="117" id="3902123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  2  stereo Id 436344585 " fill="rgb(255,23,0)" points="736.901,1842.39 757.316,1842.39 757.316,1835.75 " />
<svg:polygon detid="436344841" count="1" value="117" id="3902124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  2  stereo Id 436344841 " fill="rgb(255,23,0)" points="736.901,1835.75 757.316,1835.75 757.316,1829.11 " />
<svg:polygon detid="436345097" count="1" value="117" id="3902125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  2  stereo Id 436345097 " fill="rgb(255,23,0)" points="736.901,1829.11 757.316,1829.11 757.316,1822.48 " />
<svg:polygon detid="436345353" count="1" value="117" id="3902126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  2  stereo Id 436345353 " fill="rgb(255,23,0)" points="736.901,1822.48 757.316,1822.48 757.316,1815.84 " />
<svg:polygon detid="436345609" count="1" value="117" id="3902127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  2  stereo Id 436345609 " fill="rgb(255,23,0)" points="736.901,1815.84 757.316,1815.84 757.316,1809.2 " />
<svg:polygon detid="436345865" count="1" value="117" id="3902128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  2  stereo Id 436345865 " fill="rgb(255,23,0)" points="736.901,1809.2 757.316,1809.2 757.316,1802.56 " />
<svg:polygon detid="436346121" count="1" value="117" id="3902129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  2  stereo Id 436346121 " fill="rgb(255,23,0)" points="736.901,1802.56 757.316,1802.56 757.316,1795.92 " />
<svg:polygon detid="436346377" count="1" value="117" id="3902130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  2  stereo Id 436346377 " fill="rgb(255,23,0)" points="736.901,1795.92 757.316,1795.92 757.316,1789.29 " />
<svg:polygon detid="436346633" count="1" value="117" id="3902131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  2  stereo Id 436346633 " fill="rgb(255,23,0)" points="736.901,1789.29 757.316,1789.29 757.316,1782.65 " />
<svg:polygon detid="436346889" count="1" value="117" id="3902132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  2  stereo Id 436346889 " fill="rgb(255,23,0)" points="736.901,1782.65 757.316,1782.65 757.316,1776.01 " />
<svg:polygon detid="436347145" count="1" value="117" id="3902133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  2  stereo Id 436347145 " fill="rgb(255,23,0)" points="736.901,1776.01 757.316,1776.01 757.316,1769.37 " />
<svg:polygon detid="436347401" count="1" value="117" id="3902134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  2  stereo Id 436347401 " fill="rgb(255,23,0)" points="736.901,1769.37 757.316,1769.37 757.316,1762.73 " />
<svg:polygon detid="436347657" count="1" value="117" id="3902135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  2  stereo Id 436347657 " fill="rgb(255,23,0)" points="736.901,1762.73 757.316,1762.73 757.316,1756.1 " />
<svg:polygon detid="436347913" count="1" value="117" id="3902136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  2  stereo Id 436347913 " fill="rgb(255,23,0)" points="736.901,1756.1 757.316,1756.1 757.316,1749.46 " />
<svg:polygon detid="436348169" count="1" value="117" id="3902137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  2  stereo Id 436348169 " fill="rgb(255,23,0)" points="736.901,1749.46 757.316,1749.46 757.316,1742.82 " />
<svg:polygon detid="436348425" count="1" value="117" id="3902138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  2  stereo Id 436348425 " fill="rgb(255,23,0)" points="736.901,1742.82 757.316,1742.82 757.316,1736.18 " />
<svg:polygon detid="436348681" count="1" value="117" id="3902139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  2  stereo Id 436348681 " fill="rgb(255,23,0)" points="736.901,1736.18 757.316,1736.18 757.316,1729.54 " />
<svg:polygon detid="436348937" count="1" value="117" id="3902140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  2  stereo Id 436348937 " fill="rgb(255,23,0)" points="736.901,1729.54 757.316,1729.54 757.316,1722.91 " />
<svg:polygon detid="436349193" count="1" value="117" id="3902141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  2  stereo Id 436349193 " fill="rgb(255,23,0)" points="736.901,1722.91 757.316,1722.91 757.316,1716.27 " />
<svg:polygon detid="436349449" count="1" value="117" id="3902142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  2  stereo Id 436349449 " fill="rgb(255,23,0)" points="736.901,1716.27 757.316,1716.27 757.316,1709.63 " />
<svg:polygon detid="436349705" count="1" value="117" id="3902143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  2  stereo Id 436349705 " fill="rgb(255,23,0)" points="736.901,1709.63 757.316,1709.63 757.316,1702.99 " />
<svg:polygon detid="436349961" count="1" value="117" id="3902144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  2  stereo Id 436349961 " fill="rgb(255,23,0)" points="736.901,1702.99 757.316,1702.99 757.316,1696.36 " />
<svg:polygon detid="436350217" count="1" value="117" id="3902145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  2  stereo Id 436350217 " fill="rgb(255,23,0)" points="736.901,1696.36 757.316,1696.36 757.316,1689.72 " />
<svg:polygon detid="436350473" count="1" value="117" id="3902146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  2  stereo Id 436350473 " fill="rgb(255,23,0)" points="736.901,1689.72 757.316,1689.72 757.316,1683.08 " />
<svg:polygon detid="436350729" count="1" value="117" id="3902147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  2  stereo Id 436350729 " fill="rgb(255,23,0)" points="736.901,1683.08 757.316,1683.08 757.316,1676.44 " />
<svg:polygon detid="436350985" count="1" value="117" id="3902148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  2  stereo Id 436350985 " fill="rgb(255,23,0)" points="736.901,1676.44 757.316,1676.44 757.316,1669.8 " />
<svg:polygon detid="436338958" count="1" value="117" id="3903001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  3   Id 436338958 " fill="rgb(255,23,0)" points="780.282,1981.79 759.867,1981.79 759.867,1988.42 " />
<svg:polygon detid="436339214" count="1" value="117" id="3903002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  3   Id 436339214 " fill="rgb(255,23,0)" points="780.282,1975.15 759.867,1975.15 759.867,1981.79 " />
<svg:polygon detid="436339470" count="1" value="117" id="3903003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  3   Id 436339470 " fill="rgb(255,23,0)" points="780.282,1968.51 759.867,1968.51 759.867,1975.15 " />
<svg:polygon detid="436339726" count="1" value="117" id="3903004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  3   Id 436339726 " fill="rgb(255,23,0)" points="780.282,1961.87 759.867,1961.87 759.867,1968.51 " />
<svg:polygon detid="436339982" count="1" value="117" id="3903005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  3   Id 436339982 " fill="rgb(255,23,0)" points="780.282,1955.23 759.867,1955.23 759.867,1961.87 " />
<svg:polygon detid="436340238" count="1" value="117" id="3903006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  3   Id 436340238 " fill="rgb(255,23,0)" points="780.282,1948.6 759.867,1948.6 759.867,1955.23 " />
<svg:polygon detid="436340494" count="1" value="117" id="3903007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  3   Id 436340494 " fill="rgb(255,23,0)" points="780.282,1941.96 759.867,1941.96 759.867,1948.6 " />
<svg:polygon detid="436340750" count="1" value="117" id="3903008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  3   Id 436340750 " fill="rgb(255,23,0)" points="780.282,1935.32 759.867,1935.32 759.867,1941.96 " />
<svg:polygon detid="436341006" count="1" value="117" id="3903009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  3   Id 436341006 " fill="rgb(255,23,0)" points="780.282,1928.68 759.867,1928.68 759.867,1935.32 " />
<svg:polygon detid="436341262" count="1" value="117" id="3903010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  3   Id 436341262 " fill="rgb(255,23,0)" points="780.282,1922.04 759.867,1922.04 759.867,1928.68 " />
<svg:polygon detid="436341518" count="1" value="117" id="3903011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  3   Id 436341518 " fill="rgb(255,23,0)" points="780.282,1915.41 759.867,1915.41 759.867,1922.04 " />
<svg:polygon detid="436341774" count="1" value="117" id="3903012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  3   Id 436341774 " fill="rgb(255,23,0)" points="780.282,1908.77 759.867,1908.77 759.867,1915.41 " />
<svg:polygon detid="436342030" count="1" value="117" id="3903013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  3   Id 436342030 " fill="rgb(255,23,0)" points="780.282,1902.13 759.867,1902.13 759.867,1908.77 " />
<svg:polygon detid="436342286" count="1" value="117" id="3903014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  3   Id 436342286 " fill="rgb(255,23,0)" points="780.282,1895.49 759.867,1895.49 759.867,1902.13 " />
<svg:polygon detid="436342542" count="1" value="117" id="3903015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  3   Id 436342542 " fill="rgb(255,23,0)" points="780.282,1888.85 759.867,1888.85 759.867,1895.49 " />
<svg:polygon detid="436342798" count="1" value="117" id="3903016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  3   Id 436342798 " fill="rgb(255,23,0)" points="780.282,1882.22 759.867,1882.22 759.867,1888.85 " />
<svg:polygon detid="436343054" count="1" value="117" id="3903017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  3   Id 436343054 " fill="rgb(255,23,0)" points="780.282,1875.58 759.867,1875.58 759.867,1882.22 " />
<svg:polygon detid="436343310" count="1" value="117" id="3903018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  3   Id 436343310 " fill="rgb(255,23,0)" points="780.282,1868.94 759.867,1868.94 759.867,1875.58 " />
<svg:polygon detid="436343566" count="1" value="117" id="3903019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  3   Id 436343566 " fill="rgb(255,23,0)" points="780.282,1862.3 759.867,1862.3 759.867,1868.94 " />
<svg:polygon detid="436343822" count="1" value="117" id="3903020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  3   Id 436343822 " fill="rgb(255,23,0)" points="780.282,1855.67 759.867,1855.67 759.867,1862.3 " />
<svg:polygon detid="436344078" count="1" value="117" id="3903021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  3   Id 436344078 " fill="rgb(255,23,0)" points="780.282,1849.03 759.867,1849.03 759.867,1855.67 " />
<svg:polygon detid="436344334" count="1" value="117" id="3903022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  3   Id 436344334 " fill="rgb(255,23,0)" points="780.282,1842.39 759.867,1842.39 759.867,1849.03 " />
<svg:polygon detid="436344590" count="1" value="117" id="3903023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  3   Id 436344590 " fill="rgb(255,23,0)" points="780.282,1835.75 759.867,1835.75 759.867,1842.39 " />
<svg:polygon detid="436344846" count="1" value="117" id="3903024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  3   Id 436344846 " fill="rgb(255,23,0)" points="780.282,1829.11 759.867,1829.11 759.867,1835.75 " />
<svg:polygon detid="436345102" count="1" value="117" id="3903025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  3   Id 436345102 " fill="rgb(255,23,0)" points="780.282,1822.48 759.867,1822.48 759.867,1829.11 " />
<svg:polygon detid="436345358" count="1" value="117" id="3903026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  3   Id 436345358 " fill="rgb(255,23,0)" points="780.282,1815.84 759.867,1815.84 759.867,1822.48 " />
<svg:polygon detid="436345614" count="1" value="117" id="3903027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  3   Id 436345614 " fill="rgb(255,23,0)" points="780.282,1809.2 759.867,1809.2 759.867,1815.84 " />
<svg:polygon detid="436345870" count="1" value="117" id="3903028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  3   Id 436345870 " fill="rgb(255,23,0)" points="780.282,1802.56 759.867,1802.56 759.867,1809.2 " />
<svg:polygon detid="436346126" count="1" value="117" id="3903029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  3   Id 436346126 " fill="rgb(255,23,0)" points="780.282,1795.92 759.867,1795.92 759.867,1802.56 " />
<svg:polygon detid="436346382" count="1" value="117" id="3903030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  3   Id 436346382 " fill="rgb(255,23,0)" points="780.282,1789.29 759.867,1789.29 759.867,1795.92 " />
<svg:polygon detid="436346638" count="1" value="117" id="3903031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  3   Id 436346638 " fill="rgb(255,23,0)" points="780.282,1782.65 759.867,1782.65 759.867,1789.29 " />
<svg:polygon detid="436346894" count="1" value="117" id="3903032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  3   Id 436346894 " fill="rgb(255,23,0)" points="780.282,1776.01 759.867,1776.01 759.867,1782.65 " />
<svg:polygon detid="436347150" count="1" value="117" id="3903033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  3   Id 436347150 " fill="rgb(255,23,0)" points="780.282,1769.37 759.867,1769.37 759.867,1776.01 " />
<svg:polygon detid="436347406" count="1" value="117" id="3903034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  3   Id 436347406 " fill="rgb(255,23,0)" points="780.282,1762.73 759.867,1762.73 759.867,1769.37 " />
<svg:polygon detid="436347662" count="1" value="117" id="3903035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  3   Id 436347662 " fill="rgb(255,23,0)" points="780.282,1756.1 759.867,1756.1 759.867,1762.73 " />
<svg:polygon detid="436347918" count="1" value="117" id="3903036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  3   Id 436347918 " fill="rgb(255,23,0)" points="780.282,1749.46 759.867,1749.46 759.867,1756.1 " />
<svg:polygon detid="436348174" count="1" value="117" id="3903037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  3   Id 436348174 " fill="rgb(255,23,0)" points="780.282,1742.82 759.867,1742.82 759.867,1749.46 " />
<svg:polygon detid="436348430" count="1" value="117" id="3903038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  3   Id 436348430 " fill="rgb(255,23,0)" points="780.282,1736.18 759.867,1736.18 759.867,1742.82 " />
<svg:polygon detid="436348686" count="1" value="117" id="3903039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  3   Id 436348686 " fill="rgb(255,23,0)" points="780.282,1729.54 759.867,1729.54 759.867,1736.18 " />
<svg:polygon detid="436348942" count="1" value="117" id="3903040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  3   Id 436348942 " fill="rgb(255,23,0)" points="780.282,1722.91 759.867,1722.91 759.867,1729.54 " />
<svg:polygon detid="436349198" count="1" value="117" id="3903041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  3   Id 436349198 " fill="rgb(255,23,0)" points="780.282,1716.27 759.867,1716.27 759.867,1722.91 " />
<svg:polygon detid="436349454" count="1" value="117" id="3903042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  3   Id 436349454 " fill="rgb(255,23,0)" points="780.282,1709.63 759.867,1709.63 759.867,1716.27 " />
<svg:polygon detid="436349710" count="1" value="117" id="3903043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  3   Id 436349710 " fill="rgb(255,23,0)" points="780.282,1702.99 759.867,1702.99 759.867,1709.63 " />
<svg:polygon detid="436349966" count="1" value="117" id="3903044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  3   Id 436349966 " fill="rgb(255,23,0)" points="780.282,1696.36 759.867,1696.36 759.867,1702.99 " />
<svg:polygon detid="436350222" count="1" value="117" id="3903045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  3   Id 436350222 " fill="rgb(255,23,0)" points="780.282,1689.72 759.867,1689.72 759.867,1696.36 " />
<svg:polygon detid="436350478" count="1" value="117" id="3903046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  3   Id 436350478 " fill="rgb(255,23,0)" points="780.282,1683.08 759.867,1683.08 759.867,1689.72 " />
<svg:polygon detid="436350734" count="1" value="117" id="3903047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  3   Id 436350734 " fill="rgb(255,23,0)" points="780.282,1676.44 759.867,1676.44 759.867,1683.08 " />
<svg:polygon detid="436350990" count="1" value="117" id="3903048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  3   Id 436350990 " fill="rgb(255,23,0)" points="780.282,1669.8 759.867,1669.8 759.867,1676.44 " />
<svg:polygon detid="436338957" count="1" value="117" id="3903101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  3  stereo Id 436338957 " fill="rgb(255,23,0)" points="759.867,1988.42 780.282,1988.42 780.282,1981.79 " />
<svg:polygon detid="436339213" count="1" value="117" id="3903102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  3  stereo Id 436339213 " fill="rgb(255,23,0)" points="759.867,1981.79 780.282,1981.79 780.282,1975.15 " />
<svg:polygon detid="436339469" count="1" value="117" id="3903103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  3  stereo Id 436339469 " fill="rgb(255,23,0)" points="759.867,1975.15 780.282,1975.15 780.282,1968.51 " />
<svg:polygon detid="436339725" count="1" value="117" id="3903104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  3  stereo Id 436339725 " fill="rgb(255,23,0)" points="759.867,1968.51 780.282,1968.51 780.282,1961.87 " />
<svg:polygon detid="436339981" count="1" value="117" id="3903105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  3  stereo Id 436339981 " fill="rgb(255,23,0)" points="759.867,1961.87 780.282,1961.87 780.282,1955.23 " />
<svg:polygon detid="436340237" count="1" value="117" id="3903106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  3  stereo Id 436340237 " fill="rgb(255,23,0)" points="759.867,1955.23 780.282,1955.23 780.282,1948.6 " />
<svg:polygon detid="436340493" count="1" value="117" id="3903107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  3  stereo Id 436340493 " fill="rgb(255,23,0)" points="759.867,1948.6 780.282,1948.6 780.282,1941.96 " />
<svg:polygon detid="436340749" count="1" value="117" id="3903108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  3  stereo Id 436340749 " fill="rgb(255,23,0)" points="759.867,1941.96 780.282,1941.96 780.282,1935.32 " />
<svg:polygon detid="436341005" count="1" value="117" id="3903109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  3  stereo Id 436341005 " fill="rgb(255,23,0)" points="759.867,1935.32 780.282,1935.32 780.282,1928.68 " />
<svg:polygon detid="436341261" count="1" value="117" id="3903110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  3  stereo Id 436341261 " fill="rgb(255,23,0)" points="759.867,1928.68 780.282,1928.68 780.282,1922.04 " />
<svg:polygon detid="436341517" count="1" value="117" id="3903111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  3  stereo Id 436341517 " fill="rgb(255,23,0)" points="759.867,1922.04 780.282,1922.04 780.282,1915.41 " />
<svg:polygon detid="436341773" count="1" value="117" id="3903112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  3  stereo Id 436341773 " fill="rgb(255,23,0)" points="759.867,1915.41 780.282,1915.41 780.282,1908.77 " />
<svg:polygon detid="436342029" count="1" value="117" id="3903113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  3  stereo Id 436342029 " fill="rgb(255,23,0)" points="759.867,1908.77 780.282,1908.77 780.282,1902.13 " />
<svg:polygon detid="436342285" count="1" value="117" id="3903114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  3  stereo Id 436342285 " fill="rgb(255,23,0)" points="759.867,1902.13 780.282,1902.13 780.282,1895.49 " />
<svg:polygon detid="436342541" count="1" value="117" id="3903115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  3  stereo Id 436342541 " fill="rgb(255,23,0)" points="759.867,1895.49 780.282,1895.49 780.282,1888.85 " />
<svg:polygon detid="436342797" count="1" value="117" id="3903116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  3  stereo Id 436342797 " fill="rgb(255,23,0)" points="759.867,1888.85 780.282,1888.85 780.282,1882.22 " />
<svg:polygon detid="436343053" count="1" value="117" id="3903117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  3  stereo Id 436343053 " fill="rgb(255,23,0)" points="759.867,1882.22 780.282,1882.22 780.282,1875.58 " />
<svg:polygon detid="436343309" count="1" value="117" id="3903118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  3  stereo Id 436343309 " fill="rgb(255,23,0)" points="759.867,1875.58 780.282,1875.58 780.282,1868.94 " />
<svg:polygon detid="436343565" count="1" value="117" id="3903119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  3  stereo Id 436343565 " fill="rgb(255,23,0)" points="759.867,1868.94 780.282,1868.94 780.282,1862.3 " />
<svg:polygon detid="436343821" count="1" value="117" id="3903120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  3  stereo Id 436343821 " fill="rgb(255,23,0)" points="759.867,1862.3 780.282,1862.3 780.282,1855.67 " />
<svg:polygon detid="436344077" count="1" value="117" id="3903121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  3  stereo Id 436344077 " fill="rgb(255,23,0)" points="759.867,1855.67 780.282,1855.67 780.282,1849.03 " />
<svg:polygon detid="436344333" count="1" value="117" id="3903122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  3  stereo Id 436344333 " fill="rgb(255,23,0)" points="759.867,1849.03 780.282,1849.03 780.282,1842.39 " />
<svg:polygon detid="436344589" count="1" value="117" id="3903123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  3  stereo Id 436344589 " fill="rgb(255,23,0)" points="759.867,1842.39 780.282,1842.39 780.282,1835.75 " />
<svg:polygon detid="436344845" count="1" value="117" id="3903124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  3  stereo Id 436344845 " fill="rgb(255,23,0)" points="759.867,1835.75 780.282,1835.75 780.282,1829.11 " />
<svg:polygon detid="436345101" count="1" value="117" id="3903125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  3  stereo Id 436345101 " fill="rgb(255,23,0)" points="759.867,1829.11 780.282,1829.11 780.282,1822.48 " />
<svg:polygon detid="436345357" count="1" value="117" id="3903126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  3  stereo Id 436345357 " fill="rgb(255,23,0)" points="759.867,1822.48 780.282,1822.48 780.282,1815.84 " />
<svg:polygon detid="436345613" count="1" value="117" id="3903127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  3  stereo Id 436345613 " fill="rgb(255,23,0)" points="759.867,1815.84 780.282,1815.84 780.282,1809.2 " />
<svg:polygon detid="436345869" count="1" value="117" id="3903128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  3  stereo Id 436345869 " fill="rgb(255,23,0)" points="759.867,1809.2 780.282,1809.2 780.282,1802.56 " />
<svg:polygon detid="436346125" count="1" value="117" id="3903129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  3  stereo Id 436346125 " fill="rgb(255,23,0)" points="759.867,1802.56 780.282,1802.56 780.282,1795.92 " />
<svg:polygon detid="436346381" count="1" value="117" id="3903130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  3  stereo Id 436346381 " fill="rgb(255,23,0)" points="759.867,1795.92 780.282,1795.92 780.282,1789.29 " />
<svg:polygon detid="436346637" count="1" value="117" id="3903131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  3  stereo Id 436346637 " fill="rgb(255,23,0)" points="759.867,1789.29 780.282,1789.29 780.282,1782.65 " />
<svg:polygon detid="436346893" count="1" value="117" id="3903132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  3  stereo Id 436346893 " fill="rgb(255,23,0)" points="759.867,1782.65 780.282,1782.65 780.282,1776.01 " />
<svg:polygon detid="436347149" count="1" value="117" id="3903133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  3  stereo Id 436347149 " fill="rgb(255,23,0)" points="759.867,1776.01 780.282,1776.01 780.282,1769.37 " />
<svg:polygon detid="436347405" count="1" value="117" id="3903134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  3  stereo Id 436347405 " fill="rgb(255,23,0)" points="759.867,1769.37 780.282,1769.37 780.282,1762.73 " />
<svg:polygon detid="436347661" count="1" value="117" id="3903135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  3  stereo Id 436347661 " fill="rgb(255,23,0)" points="759.867,1762.73 780.282,1762.73 780.282,1756.1 " />
<svg:polygon detid="436347917" count="1" value="117" id="3903136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  3  stereo Id 436347917 " fill="rgb(255,23,0)" points="759.867,1756.1 780.282,1756.1 780.282,1749.46 " />
<svg:polygon detid="436348173" count="1" value="117" id="3903137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  3  stereo Id 436348173 " fill="rgb(255,23,0)" points="759.867,1749.46 780.282,1749.46 780.282,1742.82 " />
<svg:polygon detid="436348429" count="1" value="117" id="3903138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  3  stereo Id 436348429 " fill="rgb(255,23,0)" points="759.867,1742.82 780.282,1742.82 780.282,1736.18 " />
<svg:polygon detid="436348685" count="1" value="117" id="3903139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  3  stereo Id 436348685 " fill="rgb(255,23,0)" points="759.867,1736.18 780.282,1736.18 780.282,1729.54 " />
<svg:polygon detid="436348941" count="1" value="117" id="3903140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  3  stereo Id 436348941 " fill="rgb(255,23,0)" points="759.867,1729.54 780.282,1729.54 780.282,1722.91 " />
<svg:polygon detid="436349197" count="1" value="117" id="3903141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  3  stereo Id 436349197 " fill="rgb(255,23,0)" points="759.867,1722.91 780.282,1722.91 780.282,1716.27 " />
<svg:polygon detid="436349453" count="1" value="117" id="3903142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  3  stereo Id 436349453 " fill="rgb(255,23,0)" points="759.867,1716.27 780.282,1716.27 780.282,1709.63 " />
<svg:polygon detid="436349709" count="1" value="117" id="3903143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  3  stereo Id 436349709 " fill="rgb(255,23,0)" points="759.867,1709.63 780.282,1709.63 780.282,1702.99 " />
<svg:polygon detid="436349965" count="1" value="117" id="3903144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  3  stereo Id 436349965 " fill="rgb(255,23,0)" points="759.867,1702.99 780.282,1702.99 780.282,1696.36 " />
<svg:polygon detid="436350221" count="1" value="117" id="3903145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  3  stereo Id 436350221 " fill="rgb(255,23,0)" points="759.867,1696.36 780.282,1696.36 780.282,1689.72 " />
<svg:polygon detid="436350477" count="1" value="117" id="3903146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  3  stereo Id 436350477 " fill="rgb(255,23,0)" points="759.867,1689.72 780.282,1689.72 780.282,1683.08 " />
<svg:polygon detid="436350733" count="1" value="117" id="3903147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  3  stereo Id 436350733 " fill="rgb(255,23,0)" points="759.867,1683.08 780.282,1683.08 780.282,1676.44 " />
<svg:polygon detid="436350989" count="1" value="117" id="3903148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  3  stereo Id 436350989 " fill="rgb(255,23,0)" points="759.867,1676.44 780.282,1676.44 780.282,1669.8 " />
<svg:polygon detid="436338962" count="1" value="117" id="3904001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  4   Id 436338962 " fill="rgb(255,23,0)" points="803.249,1981.79 782.834,1981.79 782.834,1988.42 " />
<svg:polygon detid="436339218" count="1" value="117" id="3904002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  4   Id 436339218 " fill="rgb(255,23,0)" points="803.249,1975.15 782.834,1975.15 782.834,1981.79 " />
<svg:polygon detid="436339474" count="1" value="117" id="3904003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  4   Id 436339474 " fill="rgb(255,23,0)" points="803.249,1968.51 782.834,1968.51 782.834,1975.15 " />
<svg:polygon detid="436339730" count="1" value="117" id="3904004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  4   Id 436339730 " fill="rgb(255,23,0)" points="803.249,1961.87 782.834,1961.87 782.834,1968.51 " />
<svg:polygon detid="436339986" count="1" value="117" id="3904005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  4   Id 436339986 " fill="rgb(255,23,0)" points="803.249,1955.23 782.834,1955.23 782.834,1961.87 " />
<svg:polygon detid="436340242" count="1" value="117" id="3904006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  4   Id 436340242 " fill="rgb(255,23,0)" points="803.249,1948.6 782.834,1948.6 782.834,1955.23 " />
<svg:polygon detid="436340498" count="1" value="117" id="3904007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  4   Id 436340498 " fill="rgb(255,23,0)" points="803.249,1941.96 782.834,1941.96 782.834,1948.6 " />
<svg:polygon detid="436340754" count="1" value="117" id="3904008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  4   Id 436340754 " fill="rgb(255,23,0)" points="803.249,1935.32 782.834,1935.32 782.834,1941.96 " />
<svg:polygon detid="436341010" count="1" value="117" id="3904009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  4   Id 436341010 " fill="rgb(255,23,0)" points="803.249,1928.68 782.834,1928.68 782.834,1935.32 " />
<svg:polygon detid="436341266" count="1" value="117" id="3904010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  4   Id 436341266 " fill="rgb(255,23,0)" points="803.249,1922.04 782.834,1922.04 782.834,1928.68 " />
<svg:polygon detid="436341522" count="1" value="117" id="3904011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  4   Id 436341522 " fill="rgb(255,23,0)" points="803.249,1915.41 782.834,1915.41 782.834,1922.04 " />
<svg:polygon detid="436341778" count="1" value="117" id="3904012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  4   Id 436341778 " fill="rgb(255,23,0)" points="803.249,1908.77 782.834,1908.77 782.834,1915.41 " />
<svg:polygon detid="436342034" count="1" value="117" id="3904013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  4   Id 436342034 " fill="rgb(255,23,0)" points="803.249,1902.13 782.834,1902.13 782.834,1908.77 " />
<svg:polygon detid="436342290" count="1" value="117" id="3904014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  4   Id 436342290 " fill="rgb(255,23,0)" points="803.249,1895.49 782.834,1895.49 782.834,1902.13 " />
<svg:polygon detid="436342546" count="1" value="117" id="3904015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  4   Id 436342546 " fill="rgb(255,23,0)" points="803.249,1888.85 782.834,1888.85 782.834,1895.49 " />
<svg:polygon detid="436342802" count="1" value="117" id="3904016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  4   Id 436342802 " fill="rgb(255,23,0)" points="803.249,1882.22 782.834,1882.22 782.834,1888.85 " />
<svg:polygon detid="436343058" count="1" value="117" id="3904017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  4   Id 436343058 " fill="rgb(255,23,0)" points="803.249,1875.58 782.834,1875.58 782.834,1882.22 " />
<svg:polygon detid="436343314" count="1" value="117" id="3904018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  4   Id 436343314 " fill="rgb(255,23,0)" points="803.249,1868.94 782.834,1868.94 782.834,1875.58 " />
<svg:polygon detid="436343570" count="1" value="117" id="3904019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  4   Id 436343570 " fill="rgb(255,23,0)" points="803.249,1862.3 782.834,1862.3 782.834,1868.94 " />
<svg:polygon detid="436343826" count="1" value="117" id="3904020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  4   Id 436343826 " fill="rgb(255,23,0)" points="803.249,1855.67 782.834,1855.67 782.834,1862.3 " />
<svg:polygon detid="436344082" count="1" value="117" id="3904021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  4   Id 436344082 " fill="rgb(255,23,0)" points="803.249,1849.03 782.834,1849.03 782.834,1855.67 " />
<svg:polygon detid="436344338" count="1" value="117" id="3904022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  4   Id 436344338 " fill="rgb(255,23,0)" points="803.249,1842.39 782.834,1842.39 782.834,1849.03 " />
<svg:polygon detid="436344594" count="1" value="117" id="3904023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  4   Id 436344594 " fill="rgb(255,23,0)" points="803.249,1835.75 782.834,1835.75 782.834,1842.39 " />
<svg:polygon detid="436344850" count="1" value="117" id="3904024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  4   Id 436344850 " fill="rgb(255,23,0)" points="803.249,1829.11 782.834,1829.11 782.834,1835.75 " />
<svg:polygon detid="436345106" count="1" value="117" id="3904025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  4   Id 436345106 " fill="rgb(255,23,0)" points="803.249,1822.48 782.834,1822.48 782.834,1829.11 " />
<svg:polygon detid="436345362" count="1" value="117" id="3904026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  4   Id 436345362 " fill="rgb(255,23,0)" points="803.249,1815.84 782.834,1815.84 782.834,1822.48 " />
<svg:polygon detid="436345618" count="1" value="117" id="3904027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  4   Id 436345618 " fill="rgb(255,23,0)" points="803.249,1809.2 782.834,1809.2 782.834,1815.84 " />
<svg:polygon detid="436345874" count="1" value="117" id="3904028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  4   Id 436345874 " fill="rgb(255,23,0)" points="803.249,1802.56 782.834,1802.56 782.834,1809.2 " />
<svg:polygon detid="436346130" count="1" value="117" id="3904029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  4   Id 436346130 " fill="rgb(255,23,0)" points="803.249,1795.92 782.834,1795.92 782.834,1802.56 " />
<svg:polygon detid="436346386" count="1" value="117" id="3904030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  4   Id 436346386 " fill="rgb(255,23,0)" points="803.249,1789.29 782.834,1789.29 782.834,1795.92 " />
<svg:polygon detid="436346642" count="1" value="117" id="3904031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  4   Id 436346642 " fill="rgb(255,23,0)" points="803.249,1782.65 782.834,1782.65 782.834,1789.29 " />
<svg:polygon detid="436346898" count="1" value="117" id="3904032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  4   Id 436346898 " fill="rgb(255,23,0)" points="803.249,1776.01 782.834,1776.01 782.834,1782.65 " />
<svg:polygon detid="436347154" count="1" value="117" id="3904033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  4   Id 436347154 " fill="rgb(255,23,0)" points="803.249,1769.37 782.834,1769.37 782.834,1776.01 " />
<svg:polygon detid="436347410" count="1" value="117" id="3904034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  4   Id 436347410 " fill="rgb(255,23,0)" points="803.249,1762.73 782.834,1762.73 782.834,1769.37 " />
<svg:polygon detid="436347666" count="1" value="117" id="3904035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  4   Id 436347666 " fill="rgb(255,23,0)" points="803.249,1756.1 782.834,1756.1 782.834,1762.73 " />
<svg:polygon detid="436347922" count="1" value="117" id="3904036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  4   Id 436347922 " fill="rgb(255,23,0)" points="803.249,1749.46 782.834,1749.46 782.834,1756.1 " />
<svg:polygon detid="436348178" count="1" value="117" id="3904037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  4   Id 436348178 " fill="rgb(255,23,0)" points="803.249,1742.82 782.834,1742.82 782.834,1749.46 " />
<svg:polygon detid="436348434" count="1" value="117" id="3904038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  4   Id 436348434 " fill="rgb(255,23,0)" points="803.249,1736.18 782.834,1736.18 782.834,1742.82 " />
<svg:polygon detid="436348690" count="1" value="117" id="3904039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  4   Id 436348690 " fill="rgb(255,23,0)" points="803.249,1729.54 782.834,1729.54 782.834,1736.18 " />
<svg:polygon detid="436348946" count="1" value="117" id="3904040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  4   Id 436348946 " fill="rgb(255,23,0)" points="803.249,1722.91 782.834,1722.91 782.834,1729.54 " />
<svg:polygon detid="436349202" count="1" value="117" id="3904041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  4   Id 436349202 " fill="rgb(255,23,0)" points="803.249,1716.27 782.834,1716.27 782.834,1722.91 " />
<svg:polygon detid="436349458" count="1" value="117" id="3904042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  4   Id 436349458 " fill="rgb(255,23,0)" points="803.249,1709.63 782.834,1709.63 782.834,1716.27 " />
<svg:polygon detid="436349714" count="1" value="117" id="3904043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  4   Id 436349714 " fill="rgb(255,23,0)" points="803.249,1702.99 782.834,1702.99 782.834,1709.63 " />
<svg:polygon detid="436349970" count="1" value="117" id="3904044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  4   Id 436349970 " fill="rgb(255,23,0)" points="803.249,1696.36 782.834,1696.36 782.834,1702.99 " />
<svg:polygon detid="436350226" count="1" value="117" id="3904045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  4   Id 436350226 " fill="rgb(255,23,0)" points="803.249,1689.72 782.834,1689.72 782.834,1696.36 " />
<svg:polygon detid="436350482" count="1" value="117" id="3904046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  4   Id 436350482 " fill="rgb(255,23,0)" points="803.249,1683.08 782.834,1683.08 782.834,1689.72 " />
<svg:polygon detid="436350738" count="1" value="117" id="3904047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  4   Id 436350738 " fill="rgb(255,23,0)" points="803.249,1676.44 782.834,1676.44 782.834,1683.08 " />
<svg:polygon detid="436350994" count="1" value="117" id="3904048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  4   Id 436350994 " fill="rgb(255,23,0)" points="803.249,1669.8 782.834,1669.8 782.834,1676.44 " />
<svg:polygon detid="436338961" count="1" value="117" id="3904101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  4  stereo Id 436338961 " fill="rgb(255,23,0)" points="782.834,1988.42 803.249,1988.42 803.249,1981.79 " />
<svg:polygon detid="436339217" count="1" value="117" id="3904102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  4  stereo Id 436339217 " fill="rgb(255,23,0)" points="782.834,1981.79 803.249,1981.79 803.249,1975.15 " />
<svg:polygon detid="436339473" count="1" value="117" id="3904103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  4  stereo Id 436339473 " fill="rgb(255,23,0)" points="782.834,1975.15 803.249,1975.15 803.249,1968.51 " />
<svg:polygon detid="436339729" count="1" value="117" id="3904104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  4  stereo Id 436339729 " fill="rgb(255,23,0)" points="782.834,1968.51 803.249,1968.51 803.249,1961.87 " />
<svg:polygon detid="436339985" count="1" value="117" id="3904105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  4  stereo Id 436339985 " fill="rgb(255,23,0)" points="782.834,1961.87 803.249,1961.87 803.249,1955.23 " />
<svg:polygon detid="436340241" count="1" value="117" id="3904106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  4  stereo Id 436340241 " fill="rgb(255,23,0)" points="782.834,1955.23 803.249,1955.23 803.249,1948.6 " />
<svg:polygon detid="436340497" count="1" value="117" id="3904107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  4  stereo Id 436340497 " fill="rgb(255,23,0)" points="782.834,1948.6 803.249,1948.6 803.249,1941.96 " />
<svg:polygon detid="436340753" count="1" value="117" id="3904108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  4  stereo Id 436340753 " fill="rgb(255,23,0)" points="782.834,1941.96 803.249,1941.96 803.249,1935.32 " />
<svg:polygon detid="436341009" count="1" value="117" id="3904109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  4  stereo Id 436341009 " fill="rgb(255,23,0)" points="782.834,1935.32 803.249,1935.32 803.249,1928.68 " />
<svg:polygon detid="436341265" count="1" value="117" id="3904110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  4  stereo Id 436341265 " fill="rgb(255,23,0)" points="782.834,1928.68 803.249,1928.68 803.249,1922.04 " />
<svg:polygon detid="436341521" count="1" value="117" id="3904111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  4  stereo Id 436341521 " fill="rgb(255,23,0)" points="782.834,1922.04 803.249,1922.04 803.249,1915.41 " />
<svg:polygon detid="436341777" count="1" value="117" id="3904112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  4  stereo Id 436341777 " fill="rgb(255,23,0)" points="782.834,1915.41 803.249,1915.41 803.249,1908.77 " />
<svg:polygon detid="436342033" count="1" value="117" id="3904113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  4  stereo Id 436342033 " fill="rgb(255,23,0)" points="782.834,1908.77 803.249,1908.77 803.249,1902.13 " />
<svg:polygon detid="436342289" count="1" value="117" id="3904114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  4  stereo Id 436342289 " fill="rgb(255,23,0)" points="782.834,1902.13 803.249,1902.13 803.249,1895.49 " />
<svg:polygon detid="436342545" count="1" value="117" id="3904115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  4  stereo Id 436342545 " fill="rgb(255,23,0)" points="782.834,1895.49 803.249,1895.49 803.249,1888.85 " />
<svg:polygon detid="436342801" count="1" value="117" id="3904116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  4  stereo Id 436342801 " fill="rgb(255,23,0)" points="782.834,1888.85 803.249,1888.85 803.249,1882.22 " />
<svg:polygon detid="436343057" count="1" value="117" id="3904117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  4  stereo Id 436343057 " fill="rgb(255,23,0)" points="782.834,1882.22 803.249,1882.22 803.249,1875.58 " />
<svg:polygon detid="436343313" count="1" value="117" id="3904118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  4  stereo Id 436343313 " fill="rgb(255,23,0)" points="782.834,1875.58 803.249,1875.58 803.249,1868.94 " />
<svg:polygon detid="436343569" count="1" value="117" id="3904119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  4  stereo Id 436343569 " fill="rgb(255,23,0)" points="782.834,1868.94 803.249,1868.94 803.249,1862.3 " />
<svg:polygon detid="436343825" count="1" value="117" id="3904120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  4  stereo Id 436343825 " fill="rgb(255,23,0)" points="782.834,1862.3 803.249,1862.3 803.249,1855.67 " />
<svg:polygon detid="436344081" count="1" value="117" id="3904121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  4  stereo Id 436344081 " fill="rgb(255,23,0)" points="782.834,1855.67 803.249,1855.67 803.249,1849.03 " />
<svg:polygon detid="436344337" count="1" value="117" id="3904122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  4  stereo Id 436344337 " fill="rgb(255,23,0)" points="782.834,1849.03 803.249,1849.03 803.249,1842.39 " />
<svg:polygon detid="436344593" count="1" value="117" id="3904123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  4  stereo Id 436344593 " fill="rgb(255,23,0)" points="782.834,1842.39 803.249,1842.39 803.249,1835.75 " />
<svg:polygon detid="436344849" count="1" value="117" id="3904124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  4  stereo Id 436344849 " fill="rgb(255,23,0)" points="782.834,1835.75 803.249,1835.75 803.249,1829.11 " />
<svg:polygon detid="436345105" count="1" value="117" id="3904125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  4  stereo Id 436345105 " fill="rgb(255,23,0)" points="782.834,1829.11 803.249,1829.11 803.249,1822.48 " />
<svg:polygon detid="436345361" count="1" value="117" id="3904126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  4  stereo Id 436345361 " fill="rgb(255,23,0)" points="782.834,1822.48 803.249,1822.48 803.249,1815.84 " />
<svg:polygon detid="436345617" count="1" value="117" id="3904127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  4  stereo Id 436345617 " fill="rgb(255,23,0)" points="782.834,1815.84 803.249,1815.84 803.249,1809.2 " />
<svg:polygon detid="436345873" count="1" value="117" id="3904128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  4  stereo Id 436345873 " fill="rgb(255,23,0)" points="782.834,1809.2 803.249,1809.2 803.249,1802.56 " />
<svg:polygon detid="436346129" count="1" value="117" id="3904129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  4  stereo Id 436346129 " fill="rgb(255,23,0)" points="782.834,1802.56 803.249,1802.56 803.249,1795.92 " />
<svg:polygon detid="436346385" count="1" value="117" id="3904130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  4  stereo Id 436346385 " fill="rgb(255,23,0)" points="782.834,1795.92 803.249,1795.92 803.249,1789.29 " />
<svg:polygon detid="436346641" count="1" value="117" id="3904131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  4  stereo Id 436346641 " fill="rgb(255,23,0)" points="782.834,1789.29 803.249,1789.29 803.249,1782.65 " />
<svg:polygon detid="436346897" count="1" value="117" id="3904132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  4  stereo Id 436346897 " fill="rgb(255,23,0)" points="782.834,1782.65 803.249,1782.65 803.249,1776.01 " />
<svg:polygon detid="436347153" count="1" value="117" id="3904133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  4  stereo Id 436347153 " fill="rgb(255,23,0)" points="782.834,1776.01 803.249,1776.01 803.249,1769.37 " />
<svg:polygon detid="436347409" count="1" value="117" id="3904134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  4  stereo Id 436347409 " fill="rgb(255,23,0)" points="782.834,1769.37 803.249,1769.37 803.249,1762.73 " />
<svg:polygon detid="436347665" count="1" value="117" id="3904135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  4  stereo Id 436347665 " fill="rgb(255,23,0)" points="782.834,1762.73 803.249,1762.73 803.249,1756.1 " />
<svg:polygon detid="436347921" count="1" value="117" id="3904136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  4  stereo Id 436347921 " fill="rgb(255,23,0)" points="782.834,1756.1 803.249,1756.1 803.249,1749.46 " />
<svg:polygon detid="436348177" count="1" value="117" id="3904137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  4  stereo Id 436348177 " fill="rgb(255,23,0)" points="782.834,1749.46 803.249,1749.46 803.249,1742.82 " />
<svg:polygon detid="436348433" count="1" value="117" id="3904138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  4  stereo Id 436348433 " fill="rgb(255,23,0)" points="782.834,1742.82 803.249,1742.82 803.249,1736.18 " />
<svg:polygon detid="436348689" count="1" value="117" id="3904139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  4  stereo Id 436348689 " fill="rgb(255,23,0)" points="782.834,1736.18 803.249,1736.18 803.249,1729.54 " />
<svg:polygon detid="436348945" count="1" value="117" id="3904140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  4  stereo Id 436348945 " fill="rgb(255,23,0)" points="782.834,1729.54 803.249,1729.54 803.249,1722.91 " />
<svg:polygon detid="436349201" count="1" value="117" id="3904141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  4  stereo Id 436349201 " fill="rgb(255,23,0)" points="782.834,1722.91 803.249,1722.91 803.249,1716.27 " />
<svg:polygon detid="436349457" count="1" value="117" id="3904142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  4  stereo Id 436349457 " fill="rgb(255,23,0)" points="782.834,1716.27 803.249,1716.27 803.249,1709.63 " />
<svg:polygon detid="436349713" count="1" value="117" id="3904143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  4  stereo Id 436349713 " fill="rgb(255,23,0)" points="782.834,1709.63 803.249,1709.63 803.249,1702.99 " />
<svg:polygon detid="436349969" count="1" value="117" id="3904144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  4  stereo Id 436349969 " fill="rgb(255,23,0)" points="782.834,1702.99 803.249,1702.99 803.249,1696.36 " />
<svg:polygon detid="436350225" count="1" value="117" id="3904145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  4  stereo Id 436350225 " fill="rgb(255,23,0)" points="782.834,1696.36 803.249,1696.36 803.249,1689.72 " />
<svg:polygon detid="436350481" count="1" value="117" id="3904146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  4  stereo Id 436350481 " fill="rgb(255,23,0)" points="782.834,1689.72 803.249,1689.72 803.249,1683.08 " />
<svg:polygon detid="436350737" count="1" value="117" id="3904147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  4  stereo Id 436350737 " fill="rgb(255,23,0)" points="782.834,1683.08 803.249,1683.08 803.249,1676.44 " />
<svg:polygon detid="436350993" count="1" value="117" id="3904148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  4  stereo Id 436350993 " fill="rgb(255,23,0)" points="782.834,1676.44 803.249,1676.44 803.249,1669.8 " />
<svg:polygon detid="436338966" count="1" value="117" id="3905001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  5   Id 436338966 " fill="rgb(255,23,0)" points="826.215,1981.79 805.8,1981.79 805.8,1988.42 " />
<svg:polygon detid="436339222" count="1" value="117" id="3905002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  5   Id 436339222 " fill="rgb(255,23,0)" points="826.215,1975.15 805.8,1975.15 805.8,1981.79 " />
<svg:polygon detid="436339478" count="1" value="117" id="3905003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  5   Id 436339478 " fill="rgb(255,23,0)" points="826.215,1968.51 805.8,1968.51 805.8,1975.15 " />
<svg:polygon detid="436339734" count="1" value="117" id="3905004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  5   Id 436339734 " fill="rgb(255,23,0)" points="826.215,1961.87 805.8,1961.87 805.8,1968.51 " />
<svg:polygon detid="436339990" count="1" value="117" id="3905005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  5   Id 436339990 " fill="rgb(255,23,0)" points="826.215,1955.23 805.8,1955.23 805.8,1961.87 " />
<svg:polygon detid="436340246" count="1" value="117" id="3905006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  5   Id 436340246 " fill="rgb(255,23,0)" points="826.215,1948.6 805.8,1948.6 805.8,1955.23 " />
<svg:polygon detid="436340502" count="1" value="117" id="3905007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  5   Id 436340502 " fill="rgb(255,23,0)" points="826.215,1941.96 805.8,1941.96 805.8,1948.6 " />
<svg:polygon detid="436340758" count="1" value="117" id="3905008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  5   Id 436340758 " fill="rgb(255,23,0)" points="826.215,1935.32 805.8,1935.32 805.8,1941.96 " />
<svg:polygon detid="436341014" count="1" value="117" id="3905009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  5   Id 436341014 " fill="rgb(255,23,0)" points="826.215,1928.68 805.8,1928.68 805.8,1935.32 " />
<svg:polygon detid="436341270" count="1" value="117" id="3905010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  5   Id 436341270 " fill="rgb(255,23,0)" points="826.215,1922.04 805.8,1922.04 805.8,1928.68 " />
<svg:polygon detid="436341526" count="1" value="117" id="3905011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  5   Id 436341526 " fill="rgb(255,23,0)" points="826.215,1915.41 805.8,1915.41 805.8,1922.04 " />
<svg:polygon detid="436341782" count="1" value="117" id="3905012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  5   Id 436341782 " fill="rgb(255,23,0)" points="826.215,1908.77 805.8,1908.77 805.8,1915.41 " />
<svg:polygon detid="436342038" count="1" value="117" id="3905013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  5   Id 436342038 " fill="rgb(255,23,0)" points="826.215,1902.13 805.8,1902.13 805.8,1908.77 " />
<svg:polygon detid="436342294" count="1" value="117" id="3905014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  5   Id 436342294 " fill="rgb(255,23,0)" points="826.215,1895.49 805.8,1895.49 805.8,1902.13 " />
<svg:polygon detid="436342550" count="1" value="117" id="3905015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  5   Id 436342550 " fill="rgb(255,23,0)" points="826.215,1888.85 805.8,1888.85 805.8,1895.49 " />
<svg:polygon detid="436342806" count="1" value="117" id="3905016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  5   Id 436342806 " fill="rgb(255,23,0)" points="826.215,1882.22 805.8,1882.22 805.8,1888.85 " />
<svg:polygon detid="436343062" count="1" value="117" id="3905017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  5   Id 436343062 " fill="rgb(255,23,0)" points="826.215,1875.58 805.8,1875.58 805.8,1882.22 " />
<svg:polygon detid="436343318" count="1" value="117" id="3905018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  5   Id 436343318 " fill="rgb(255,23,0)" points="826.215,1868.94 805.8,1868.94 805.8,1875.58 " />
<svg:polygon detid="436343574" count="1" value="117" id="3905019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  5   Id 436343574 " fill="rgb(255,23,0)" points="826.215,1862.3 805.8,1862.3 805.8,1868.94 " />
<svg:polygon detid="436343830" count="1" value="117" id="3905020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  5   Id 436343830 " fill="rgb(255,23,0)" points="826.215,1855.67 805.8,1855.67 805.8,1862.3 " />
<svg:polygon detid="436344086" count="1" value="117" id="3905021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  5   Id 436344086 " fill="rgb(255,23,0)" points="826.215,1849.03 805.8,1849.03 805.8,1855.67 " />
<svg:polygon detid="436344342" count="1" value="117" id="3905022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  5   Id 436344342 " fill="rgb(255,23,0)" points="826.215,1842.39 805.8,1842.39 805.8,1849.03 " />
<svg:polygon detid="436344598" count="1" value="117" id="3905023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  5   Id 436344598 " fill="rgb(255,23,0)" points="826.215,1835.75 805.8,1835.75 805.8,1842.39 " />
<svg:polygon detid="436344854" count="1" value="117" id="3905024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  5   Id 436344854 " fill="rgb(255,23,0)" points="826.215,1829.11 805.8,1829.11 805.8,1835.75 " />
<svg:polygon detid="436345110" count="1" value="117" id="3905025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  5   Id 436345110 " fill="rgb(255,23,0)" points="826.215,1822.48 805.8,1822.48 805.8,1829.11 " />
<svg:polygon detid="436345366" count="1" value="117" id="3905026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  5   Id 436345366 " fill="rgb(255,23,0)" points="826.215,1815.84 805.8,1815.84 805.8,1822.48 " />
<svg:polygon detid="436345622" count="1" value="117" id="3905027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  5   Id 436345622 " fill="rgb(255,23,0)" points="826.215,1809.2 805.8,1809.2 805.8,1815.84 " />
<svg:polygon detid="436345878" count="1" value="117" id="3905028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  5   Id 436345878 " fill="rgb(255,23,0)" points="826.215,1802.56 805.8,1802.56 805.8,1809.2 " />
<svg:polygon detid="436346134" count="1" value="117" id="3905029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  5   Id 436346134 " fill="rgb(255,23,0)" points="826.215,1795.92 805.8,1795.92 805.8,1802.56 " />
<svg:polygon detid="436346390" count="1" value="117" id="3905030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  5   Id 436346390 " fill="rgb(255,23,0)" points="826.215,1789.29 805.8,1789.29 805.8,1795.92 " />
<svg:polygon detid="436346646" count="1" value="117" id="3905031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  5   Id 436346646 " fill="rgb(255,23,0)" points="826.215,1782.65 805.8,1782.65 805.8,1789.29 " />
<svg:polygon detid="436346902" count="1" value="117" id="3905032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  5   Id 436346902 " fill="rgb(255,23,0)" points="826.215,1776.01 805.8,1776.01 805.8,1782.65 " />
<svg:polygon detid="436347158" count="1" value="117" id="3905033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  5   Id 436347158 " fill="rgb(255,23,0)" points="826.215,1769.37 805.8,1769.37 805.8,1776.01 " />
<svg:polygon detid="436347414" count="1" value="117" id="3905034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  5   Id 436347414 " fill="rgb(255,23,0)" points="826.215,1762.73 805.8,1762.73 805.8,1769.37 " />
<svg:polygon detid="436347670" count="1" value="117" id="3905035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  5   Id 436347670 " fill="rgb(255,23,0)" points="826.215,1756.1 805.8,1756.1 805.8,1762.73 " />
<svg:polygon detid="436347926" count="1" value="117" id="3905036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  5   Id 436347926 " fill="rgb(255,23,0)" points="826.215,1749.46 805.8,1749.46 805.8,1756.1 " />
<svg:polygon detid="436348182" count="1" value="117" id="3905037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  5   Id 436348182 " fill="rgb(255,23,0)" points="826.215,1742.82 805.8,1742.82 805.8,1749.46 " />
<svg:polygon detid="436348438" count="1" value="117" id="3905038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  5   Id 436348438 " fill="rgb(255,23,0)" points="826.215,1736.18 805.8,1736.18 805.8,1742.82 " />
<svg:polygon detid="436348694" count="1" value="117" id="3905039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  5   Id 436348694 " fill="rgb(255,23,0)" points="826.215,1729.54 805.8,1729.54 805.8,1736.18 " />
<svg:polygon detid="436348950" count="1" value="117" id="3905040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  5   Id 436348950 " fill="rgb(255,23,0)" points="826.215,1722.91 805.8,1722.91 805.8,1729.54 " />
<svg:polygon detid="436349206" count="1" value="117" id="3905041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  5   Id 436349206 " fill="rgb(255,23,0)" points="826.215,1716.27 805.8,1716.27 805.8,1722.91 " />
<svg:polygon detid="436349462" count="1" value="117" id="3905042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  5   Id 436349462 " fill="rgb(255,23,0)" points="826.215,1709.63 805.8,1709.63 805.8,1716.27 " />
<svg:polygon detid="436349718" count="1" value="117" id="3905043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  5   Id 436349718 " fill="rgb(255,23,0)" points="826.215,1702.99 805.8,1702.99 805.8,1709.63 " />
<svg:polygon detid="436349974" count="1" value="117" id="3905044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  5   Id 436349974 " fill="rgb(255,23,0)" points="826.215,1696.36 805.8,1696.36 805.8,1702.99 " />
<svg:polygon detid="436350230" count="1" value="117" id="3905045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  5   Id 436350230 " fill="rgb(255,23,0)" points="826.215,1689.72 805.8,1689.72 805.8,1696.36 " />
<svg:polygon detid="436350486" count="1" value="117" id="3905046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  5   Id 436350486 " fill="rgb(255,23,0)" points="826.215,1683.08 805.8,1683.08 805.8,1689.72 " />
<svg:polygon detid="436350742" count="1" value="117" id="3905047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  5   Id 436350742 " fill="rgb(255,23,0)" points="826.215,1676.44 805.8,1676.44 805.8,1683.08 " />
<svg:polygon detid="436350998" count="1" value="117" id="3905048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  5   Id 436350998 " fill="rgb(255,23,0)" points="826.215,1669.8 805.8,1669.8 805.8,1676.44 " />
<svg:polygon detid="436338965" count="1" value="117" id="3905101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  5  stereo Id 436338965 " fill="rgb(255,23,0)" points="805.8,1988.42 826.215,1988.42 826.215,1981.79 " />
<svg:polygon detid="436339221" count="1" value="117" id="3905102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  5  stereo Id 436339221 " fill="rgb(255,23,0)" points="805.8,1981.79 826.215,1981.79 826.215,1975.15 " />
<svg:polygon detid="436339477" count="1" value="117" id="3905103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  5  stereo Id 436339477 " fill="rgb(255,23,0)" points="805.8,1975.15 826.215,1975.15 826.215,1968.51 " />
<svg:polygon detid="436339733" count="1" value="117" id="3905104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  5  stereo Id 436339733 " fill="rgb(255,23,0)" points="805.8,1968.51 826.215,1968.51 826.215,1961.87 " />
<svg:polygon detid="436339989" count="1" value="117" id="3905105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  5  stereo Id 436339989 " fill="rgb(255,23,0)" points="805.8,1961.87 826.215,1961.87 826.215,1955.23 " />
<svg:polygon detid="436340245" count="1" value="117" id="3905106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  5  stereo Id 436340245 " fill="rgb(255,23,0)" points="805.8,1955.23 826.215,1955.23 826.215,1948.6 " />
<svg:polygon detid="436340501" count="1" value="117" id="3905107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  5  stereo Id 436340501 " fill="rgb(255,23,0)" points="805.8,1948.6 826.215,1948.6 826.215,1941.96 " />
<svg:polygon detid="436340757" count="1" value="117" id="3905108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  5  stereo Id 436340757 " fill="rgb(255,23,0)" points="805.8,1941.96 826.215,1941.96 826.215,1935.32 " />
<svg:polygon detid="436341013" count="1" value="117" id="3905109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  5  stereo Id 436341013 " fill="rgb(255,23,0)" points="805.8,1935.32 826.215,1935.32 826.215,1928.68 " />
<svg:polygon detid="436341269" count="1" value="117" id="3905110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  5  stereo Id 436341269 " fill="rgb(255,23,0)" points="805.8,1928.68 826.215,1928.68 826.215,1922.04 " />
<svg:polygon detid="436341525" count="1" value="117" id="3905111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  5  stereo Id 436341525 " fill="rgb(255,23,0)" points="805.8,1922.04 826.215,1922.04 826.215,1915.41 " />
<svg:polygon detid="436341781" count="1" value="117" id="3905112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  5  stereo Id 436341781 " fill="rgb(255,23,0)" points="805.8,1915.41 826.215,1915.41 826.215,1908.77 " />
<svg:polygon detid="436342037" count="1" value="117" id="3905113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  5  stereo Id 436342037 " fill="rgb(255,23,0)" points="805.8,1908.77 826.215,1908.77 826.215,1902.13 " />
<svg:polygon detid="436342293" count="1" value="117" id="3905114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  5  stereo Id 436342293 " fill="rgb(255,23,0)" points="805.8,1902.13 826.215,1902.13 826.215,1895.49 " />
<svg:polygon detid="436342549" count="1" value="117" id="3905115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  5  stereo Id 436342549 " fill="rgb(255,23,0)" points="805.8,1895.49 826.215,1895.49 826.215,1888.85 " />
<svg:polygon detid="436342805" count="1" value="117" id="3905116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  5  stereo Id 436342805 " fill="rgb(255,23,0)" points="805.8,1888.85 826.215,1888.85 826.215,1882.22 " />
<svg:polygon detid="436343061" count="1" value="117" id="3905117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  5  stereo Id 436343061 " fill="rgb(255,23,0)" points="805.8,1882.22 826.215,1882.22 826.215,1875.58 " />
<svg:polygon detid="436343317" count="1" value="117" id="3905118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  5  stereo Id 436343317 " fill="rgb(255,23,0)" points="805.8,1875.58 826.215,1875.58 826.215,1868.94 " />
<svg:polygon detid="436343573" count="1" value="117" id="3905119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  5  stereo Id 436343573 " fill="rgb(255,23,0)" points="805.8,1868.94 826.215,1868.94 826.215,1862.3 " />
<svg:polygon detid="436343829" count="1" value="117" id="3905120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  5  stereo Id 436343829 " fill="rgb(255,23,0)" points="805.8,1862.3 826.215,1862.3 826.215,1855.67 " />
<svg:polygon detid="436344085" count="1" value="117" id="3905121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  5  stereo Id 436344085 " fill="rgb(255,23,0)" points="805.8,1855.67 826.215,1855.67 826.215,1849.03 " />
<svg:polygon detid="436344341" count="1" value="117" id="3905122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  5  stereo Id 436344341 " fill="rgb(255,23,0)" points="805.8,1849.03 826.215,1849.03 826.215,1842.39 " />
<svg:polygon detid="436344597" count="1" value="117" id="3905123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  5  stereo Id 436344597 " fill="rgb(255,23,0)" points="805.8,1842.39 826.215,1842.39 826.215,1835.75 " />
<svg:polygon detid="436344853" count="1" value="117" id="3905124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  5  stereo Id 436344853 " fill="rgb(255,23,0)" points="805.8,1835.75 826.215,1835.75 826.215,1829.11 " />
<svg:polygon detid="436345109" count="1" value="117" id="3905125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  5  stereo Id 436345109 " fill="rgb(255,23,0)" points="805.8,1829.11 826.215,1829.11 826.215,1822.48 " />
<svg:polygon detid="436345365" count="1" value="117" id="3905126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  5  stereo Id 436345365 " fill="rgb(255,23,0)" points="805.8,1822.48 826.215,1822.48 826.215,1815.84 " />
<svg:polygon detid="436345621" count="1" value="117" id="3905127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  5  stereo Id 436345621 " fill="rgb(255,23,0)" points="805.8,1815.84 826.215,1815.84 826.215,1809.2 " />
<svg:polygon detid="436345877" count="1" value="117" id="3905128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  5  stereo Id 436345877 " fill="rgb(255,23,0)" points="805.8,1809.2 826.215,1809.2 826.215,1802.56 " />
<svg:polygon detid="436346133" count="1" value="117" id="3905129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  5  stereo Id 436346133 " fill="rgb(255,23,0)" points="805.8,1802.56 826.215,1802.56 826.215,1795.92 " />
<svg:polygon detid="436346389" count="1" value="117" id="3905130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  5  stereo Id 436346389 " fill="rgb(255,23,0)" points="805.8,1795.92 826.215,1795.92 826.215,1789.29 " />
<svg:polygon detid="436346645" count="1" value="117" id="3905131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  5  stereo Id 436346645 " fill="rgb(255,23,0)" points="805.8,1789.29 826.215,1789.29 826.215,1782.65 " />
<svg:polygon detid="436346901" count="1" value="117" id="3905132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  5  stereo Id 436346901 " fill="rgb(255,23,0)" points="805.8,1782.65 826.215,1782.65 826.215,1776.01 " />
<svg:polygon detid="436347157" count="1" value="117" id="3905133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  5  stereo Id 436347157 " fill="rgb(255,23,0)" points="805.8,1776.01 826.215,1776.01 826.215,1769.37 " />
<svg:polygon detid="436347413" count="1" value="117" id="3905134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  5  stereo Id 436347413 " fill="rgb(255,23,0)" points="805.8,1769.37 826.215,1769.37 826.215,1762.73 " />
<svg:polygon detid="436347669" count="1" value="117" id="3905135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  5  stereo Id 436347669 " fill="rgb(255,23,0)" points="805.8,1762.73 826.215,1762.73 826.215,1756.1 " />
<svg:polygon detid="436347925" count="1" value="117" id="3905136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  5  stereo Id 436347925 " fill="rgb(255,23,0)" points="805.8,1756.1 826.215,1756.1 826.215,1749.46 " />
<svg:polygon detid="436348181" count="1" value="117" id="3905137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  5  stereo Id 436348181 " fill="rgb(255,23,0)" points="805.8,1749.46 826.215,1749.46 826.215,1742.82 " />
<svg:polygon detid="436348437" count="1" value="117" id="3905138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  5  stereo Id 436348437 " fill="rgb(255,23,0)" points="805.8,1742.82 826.215,1742.82 826.215,1736.18 " />
<svg:polygon detid="436348693" count="1" value="117" id="3905139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  5  stereo Id 436348693 " fill="rgb(255,23,0)" points="805.8,1736.18 826.215,1736.18 826.215,1729.54 " />
<svg:polygon detid="436348949" count="1" value="117" id="3905140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  5  stereo Id 436348949 " fill="rgb(255,23,0)" points="805.8,1729.54 826.215,1729.54 826.215,1722.91 " />
<svg:polygon detid="436349205" count="1" value="117" id="3905141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  5  stereo Id 436349205 " fill="rgb(255,23,0)" points="805.8,1722.91 826.215,1722.91 826.215,1716.27 " />
<svg:polygon detid="436349461" count="1" value="117" id="3905142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  5  stereo Id 436349461 " fill="rgb(255,23,0)" points="805.8,1716.27 826.215,1716.27 826.215,1709.63 " />
<svg:polygon detid="436349717" count="1" value="117" id="3905143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  5  stereo Id 436349717 " fill="rgb(255,23,0)" points="805.8,1709.63 826.215,1709.63 826.215,1702.99 " />
<svg:polygon detid="436349973" count="1" value="117" id="3905144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  5  stereo Id 436349973 " fill="rgb(255,23,0)" points="805.8,1702.99 826.215,1702.99 826.215,1696.36 " />
<svg:polygon detid="436350229" count="1" value="117" id="3905145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  5  stereo Id 436350229 " fill="rgb(255,23,0)" points="805.8,1696.36 826.215,1696.36 826.215,1689.72 " />
<svg:polygon detid="436350485" count="1" value="117" id="3905146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  5  stereo Id 436350485 " fill="rgb(255,23,0)" points="805.8,1689.72 826.215,1689.72 826.215,1683.08 " />
<svg:polygon detid="436350741" count="1" value="117" id="3905147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  5  stereo Id 436350741 " fill="rgb(255,23,0)" points="805.8,1683.08 826.215,1683.08 826.215,1676.44 " />
<svg:polygon detid="436350997" count="1" value="117" id="3905148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  5  stereo Id 436350997 " fill="rgb(255,23,0)" points="805.8,1676.44 826.215,1676.44 826.215,1669.8 " />
<svg:polygon detid="436338970" count="1" value="117" id="3906001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  6   Id 436338970 " fill="rgb(255,23,0)" points="849.182,1981.79 828.767,1981.79 828.767,1988.42 " />
<svg:polygon detid="436339226" count="1" value="117" id="3906002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  6   Id 436339226 " fill="rgb(255,23,0)" points="849.182,1975.15 828.767,1975.15 828.767,1981.79 " />
<svg:polygon detid="436339482" count="1" value="117" id="3906003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  6   Id 436339482 " fill="rgb(255,23,0)" points="849.182,1968.51 828.767,1968.51 828.767,1975.15 " />
<svg:polygon detid="436339738" count="1" value="117" id="3906004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  6   Id 436339738 " fill="rgb(255,23,0)" points="849.182,1961.87 828.767,1961.87 828.767,1968.51 " />
<svg:polygon detid="436339994" count="1" value="117" id="3906005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  6   Id 436339994 " fill="rgb(255,23,0)" points="849.182,1955.23 828.767,1955.23 828.767,1961.87 " />
<svg:polygon detid="436340250" count="1" value="117" id="3906006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  6   Id 436340250 " fill="rgb(255,23,0)" points="849.182,1948.6 828.767,1948.6 828.767,1955.23 " />
<svg:polygon detid="436340506" count="1" value="117" id="3906007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  6   Id 436340506 " fill="rgb(255,23,0)" points="849.182,1941.96 828.767,1941.96 828.767,1948.6 " />
<svg:polygon detid="436340762" count="1" value="117" id="3906008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  6   Id 436340762 " fill="rgb(255,23,0)" points="849.182,1935.32 828.767,1935.32 828.767,1941.96 " />
<svg:polygon detid="436341018" count="1" value="117" id="3906009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  6   Id 436341018 " fill="rgb(255,23,0)" points="849.182,1928.68 828.767,1928.68 828.767,1935.32 " />
<svg:polygon detid="436341274" count="1" value="117" id="3906010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  6   Id 436341274 " fill="rgb(255,23,0)" points="849.182,1922.04 828.767,1922.04 828.767,1928.68 " />
<svg:polygon detid="436341530" count="1" value="117" id="3906011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  6   Id 436341530 " fill="rgb(255,23,0)" points="849.182,1915.41 828.767,1915.41 828.767,1922.04 " />
<svg:polygon detid="436341786" count="1" value="117" id="3906012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  6   Id 436341786 " fill="rgb(255,23,0)" points="849.182,1908.77 828.767,1908.77 828.767,1915.41 " />
<svg:polygon detid="436342042" count="1" value="117" id="3906013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  6   Id 436342042 " fill="rgb(255,23,0)" points="849.182,1902.13 828.767,1902.13 828.767,1908.77 " />
<svg:polygon detid="436342298" count="1" value="117" id="3906014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  6   Id 436342298 " fill="rgb(255,23,0)" points="849.182,1895.49 828.767,1895.49 828.767,1902.13 " />
<svg:polygon detid="436342554" count="1" value="117" id="3906015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  6   Id 436342554 " fill="rgb(255,23,0)" points="849.182,1888.85 828.767,1888.85 828.767,1895.49 " />
<svg:polygon detid="436342810" count="1" value="117" id="3906016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  6   Id 436342810 " fill="rgb(255,23,0)" points="849.182,1882.22 828.767,1882.22 828.767,1888.85 " />
<svg:polygon detid="436343066" count="1" value="117" id="3906017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  6   Id 436343066 " fill="rgb(255,23,0)" points="849.182,1875.58 828.767,1875.58 828.767,1882.22 " />
<svg:polygon detid="436343322" count="1" value="117" id="3906018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  6   Id 436343322 " fill="rgb(255,23,0)" points="849.182,1868.94 828.767,1868.94 828.767,1875.58 " />
<svg:polygon detid="436343578" count="1" value="117" id="3906019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  6   Id 436343578 " fill="rgb(255,23,0)" points="849.182,1862.3 828.767,1862.3 828.767,1868.94 " />
<svg:polygon detid="436343834" count="1" value="117" id="3906020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  6   Id 436343834 " fill="rgb(255,23,0)" points="849.182,1855.67 828.767,1855.67 828.767,1862.3 " />
<svg:polygon detid="436344090" count="1" value="117" id="3906021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  6   Id 436344090 " fill="rgb(255,23,0)" points="849.182,1849.03 828.767,1849.03 828.767,1855.67 " />
<svg:polygon detid="436344346" count="1" value="117" id="3906022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  6   Id 436344346 " fill="rgb(255,23,0)" points="849.182,1842.39 828.767,1842.39 828.767,1849.03 " />
<svg:polygon detid="436344602" count="1" value="117" id="3906023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  6   Id 436344602 " fill="rgb(255,23,0)" points="849.182,1835.75 828.767,1835.75 828.767,1842.39 " />
<svg:polygon detid="436344858" count="1" value="117" id="3906024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  6   Id 436344858 " fill="rgb(255,23,0)" points="849.182,1829.11 828.767,1829.11 828.767,1835.75 " />
<svg:polygon detid="436345114" count="1" value="117" id="3906025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  6   Id 436345114 " fill="rgb(255,23,0)" points="849.182,1822.48 828.767,1822.48 828.767,1829.11 " />
<svg:polygon detid="436345370" count="1" value="117" id="3906026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  6   Id 436345370 " fill="rgb(255,23,0)" points="849.182,1815.84 828.767,1815.84 828.767,1822.48 " />
<svg:polygon detid="436345626" count="1" value="117" id="3906027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  6   Id 436345626 " fill="rgb(255,23,0)" points="849.182,1809.2 828.767,1809.2 828.767,1815.84 " />
<svg:polygon detid="436345882" count="1" value="117" id="3906028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  6   Id 436345882 " fill="rgb(255,23,0)" points="849.182,1802.56 828.767,1802.56 828.767,1809.2 " />
<svg:polygon detid="436346138" count="1" value="117" id="3906029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  6   Id 436346138 " fill="rgb(255,23,0)" points="849.182,1795.92 828.767,1795.92 828.767,1802.56 " />
<svg:polygon detid="436346394" count="1" value="117" id="3906030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  6   Id 436346394 " fill="rgb(255,23,0)" points="849.182,1789.29 828.767,1789.29 828.767,1795.92 " />
<svg:polygon detid="436346650" count="1" value="117" id="3906031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  6   Id 436346650 " fill="rgb(255,23,0)" points="849.182,1782.65 828.767,1782.65 828.767,1789.29 " />
<svg:polygon detid="436346906" count="1" value="117" id="3906032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  6   Id 436346906 " fill="rgb(255,23,0)" points="849.182,1776.01 828.767,1776.01 828.767,1782.65 " />
<svg:polygon detid="436347162" count="1" value="117" id="3906033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  6   Id 436347162 " fill="rgb(255,23,0)" points="849.182,1769.37 828.767,1769.37 828.767,1776.01 " />
<svg:polygon detid="436347418" count="1" value="117" id="3906034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  6   Id 436347418 " fill="rgb(255,23,0)" points="849.182,1762.73 828.767,1762.73 828.767,1769.37 " />
<svg:polygon detid="436347674" count="1" value="117" id="3906035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  6   Id 436347674 " fill="rgb(255,23,0)" points="849.182,1756.1 828.767,1756.1 828.767,1762.73 " />
<svg:polygon detid="436347930" count="1" value="117" id="3906036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  6   Id 436347930 " fill="rgb(255,23,0)" points="849.182,1749.46 828.767,1749.46 828.767,1756.1 " />
<svg:polygon detid="436348186" count="1" value="117" id="3906037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  6   Id 436348186 " fill="rgb(255,23,0)" points="849.182,1742.82 828.767,1742.82 828.767,1749.46 " />
<svg:polygon detid="436348442" count="1" value="117" id="3906038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  6   Id 436348442 " fill="rgb(255,23,0)" points="849.182,1736.18 828.767,1736.18 828.767,1742.82 " />
<svg:polygon detid="436348698" count="1" value="117" id="3906039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  6   Id 436348698 " fill="rgb(255,23,0)" points="849.182,1729.54 828.767,1729.54 828.767,1736.18 " />
<svg:polygon detid="436348954" count="1" value="117" id="3906040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  6   Id 436348954 " fill="rgb(255,23,0)" points="849.182,1722.91 828.767,1722.91 828.767,1729.54 " />
<svg:polygon detid="436349210" count="1" value="117" id="3906041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  6   Id 436349210 " fill="rgb(255,23,0)" points="849.182,1716.27 828.767,1716.27 828.767,1722.91 " />
<svg:polygon detid="436349466" count="1" value="117" id="3906042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  6   Id 436349466 " fill="rgb(255,23,0)" points="849.182,1709.63 828.767,1709.63 828.767,1716.27 " />
<svg:polygon detid="436349722" count="1" value="117" id="3906043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  6   Id 436349722 " fill="rgb(255,23,0)" points="849.182,1702.99 828.767,1702.99 828.767,1709.63 " />
<svg:polygon detid="436349978" count="1" value="117" id="3906044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  6   Id 436349978 " fill="rgb(255,23,0)" points="849.182,1696.36 828.767,1696.36 828.767,1702.99 " />
<svg:polygon detid="436350234" count="1" value="117" id="3906045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  6   Id 436350234 " fill="rgb(255,23,0)" points="849.182,1689.72 828.767,1689.72 828.767,1696.36 " />
<svg:polygon detid="436350490" count="1" value="117" id="3906046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  6   Id 436350490 " fill="rgb(255,23,0)" points="849.182,1683.08 828.767,1683.08 828.767,1689.72 " />
<svg:polygon detid="436350746" count="1" value="117" id="3906047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  6   Id 436350746 " fill="rgb(255,23,0)" points="849.182,1676.44 828.767,1676.44 828.767,1683.08 " />
<svg:polygon detid="436351002" count="1" value="117" id="3906048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  6   Id 436351002 " fill="rgb(255,23,0)" points="849.182,1669.8 828.767,1669.8 828.767,1676.44 " />
<svg:polygon detid="436338969" count="1" value="117" id="3906101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 neg   module  6  stereo Id 436338969 " fill="rgb(255,23,0)" points="828.767,1988.42 849.182,1988.42 849.182,1981.79 " />
<svg:polygon detid="436339225" count="1" value="117" id="3906102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 neg   module  6  stereo Id 436339225 " fill="rgb(255,23,0)" points="828.767,1981.79 849.182,1981.79 849.182,1975.15 " />
<svg:polygon detid="436339481" count="1" value="117" id="3906103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 neg   module  6  stereo Id 436339481 " fill="rgb(255,23,0)" points="828.767,1975.15 849.182,1975.15 849.182,1968.51 " />
<svg:polygon detid="436339737" count="1" value="117" id="3906104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 neg   module  6  stereo Id 436339737 " fill="rgb(255,23,0)" points="828.767,1968.51 849.182,1968.51 849.182,1961.87 " />
<svg:polygon detid="436339993" count="1" value="117" id="3906105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 neg   module  6  stereo Id 436339993 " fill="rgb(255,23,0)" points="828.767,1961.87 849.182,1961.87 849.182,1955.23 " />
<svg:polygon detid="436340249" count="1" value="117" id="3906106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 neg   module  6  stereo Id 436340249 " fill="rgb(255,23,0)" points="828.767,1955.23 849.182,1955.23 849.182,1948.6 " />
<svg:polygon detid="436340505" count="1" value="117" id="3906107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 neg   module  6  stereo Id 436340505 " fill="rgb(255,23,0)" points="828.767,1948.6 849.182,1948.6 849.182,1941.96 " />
<svg:polygon detid="436340761" count="1" value="117" id="3906108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 neg   module  6  stereo Id 436340761 " fill="rgb(255,23,0)" points="828.767,1941.96 849.182,1941.96 849.182,1935.32 " />
<svg:polygon detid="436341017" count="1" value="117" id="3906109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 neg   module  6  stereo Id 436341017 " fill="rgb(255,23,0)" points="828.767,1935.32 849.182,1935.32 849.182,1928.68 " />
<svg:polygon detid="436341273" count="1" value="117" id="3906110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 neg   module  6  stereo Id 436341273 " fill="rgb(255,23,0)" points="828.767,1928.68 849.182,1928.68 849.182,1922.04 " />
<svg:polygon detid="436341529" count="1" value="117" id="3906111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 neg   module  6  stereo Id 436341529 " fill="rgb(255,23,0)" points="828.767,1922.04 849.182,1922.04 849.182,1915.41 " />
<svg:polygon detid="436341785" count="1" value="117" id="3906112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 neg   module  6  stereo Id 436341785 " fill="rgb(255,23,0)" points="828.767,1915.41 849.182,1915.41 849.182,1908.77 " />
<svg:polygon detid="436342041" count="1" value="117" id="3906113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 neg   module  6  stereo Id 436342041 " fill="rgb(255,23,0)" points="828.767,1908.77 849.182,1908.77 849.182,1902.13 " />
<svg:polygon detid="436342297" count="1" value="117" id="3906114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 neg   module  6  stereo Id 436342297 " fill="rgb(255,23,0)" points="828.767,1902.13 849.182,1902.13 849.182,1895.49 " />
<svg:polygon detid="436342553" count="1" value="117" id="3906115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 neg   module  6  stereo Id 436342553 " fill="rgb(255,23,0)" points="828.767,1895.49 849.182,1895.49 849.182,1888.85 " />
<svg:polygon detid="436342809" count="1" value="117" id="3906116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 neg   module  6  stereo Id 436342809 " fill="rgb(255,23,0)" points="828.767,1888.85 849.182,1888.85 849.182,1882.22 " />
<svg:polygon detid="436343065" count="1" value="117" id="3906117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 neg   module  6  stereo Id 436343065 " fill="rgb(255,23,0)" points="828.767,1882.22 849.182,1882.22 849.182,1875.58 " />
<svg:polygon detid="436343321" count="1" value="117" id="3906118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 neg   module  6  stereo Id 436343321 " fill="rgb(255,23,0)" points="828.767,1875.58 849.182,1875.58 849.182,1868.94 " />
<svg:polygon detid="436343577" count="1" value="117" id="3906119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 neg   module  6  stereo Id 436343577 " fill="rgb(255,23,0)" points="828.767,1868.94 849.182,1868.94 849.182,1862.3 " />
<svg:polygon detid="436343833" count="1" value="117" id="3906120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 neg   module  6  stereo Id 436343833 " fill="rgb(255,23,0)" points="828.767,1862.3 849.182,1862.3 849.182,1855.67 " />
<svg:polygon detid="436344089" count="1" value="117" id="3906121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 neg   module  6  stereo Id 436344089 " fill="rgb(255,23,0)" points="828.767,1855.67 849.182,1855.67 849.182,1849.03 " />
<svg:polygon detid="436344345" count="1" value="117" id="3906122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 neg   module  6  stereo Id 436344345 " fill="rgb(255,23,0)" points="828.767,1849.03 849.182,1849.03 849.182,1842.39 " />
<svg:polygon detid="436344601" count="1" value="117" id="3906123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 neg   module  6  stereo Id 436344601 " fill="rgb(255,23,0)" points="828.767,1842.39 849.182,1842.39 849.182,1835.75 " />
<svg:polygon detid="436344857" count="1" value="117" id="3906124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 neg   module  6  stereo Id 436344857 " fill="rgb(255,23,0)" points="828.767,1835.75 849.182,1835.75 849.182,1829.11 " />
<svg:polygon detid="436345113" count="1" value="117" id="3906125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 neg   module  6  stereo Id 436345113 " fill="rgb(255,23,0)" points="828.767,1829.11 849.182,1829.11 849.182,1822.48 " />
<svg:polygon detid="436345369" count="1" value="117" id="3906126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 neg   module  6  stereo Id 436345369 " fill="rgb(255,23,0)" points="828.767,1822.48 849.182,1822.48 849.182,1815.84 " />
<svg:polygon detid="436345625" count="1" value="117" id="3906127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 neg   module  6  stereo Id 436345625 " fill="rgb(255,23,0)" points="828.767,1815.84 849.182,1815.84 849.182,1809.2 " />
<svg:polygon detid="436345881" count="1" value="117" id="3906128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 neg   module  6  stereo Id 436345881 " fill="rgb(255,23,0)" points="828.767,1809.2 849.182,1809.2 849.182,1802.56 " />
<svg:polygon detid="436346137" count="1" value="117" id="3906129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 neg   module  6  stereo Id 436346137 " fill="rgb(255,23,0)" points="828.767,1802.56 849.182,1802.56 849.182,1795.92 " />
<svg:polygon detid="436346393" count="1" value="117" id="3906130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 neg   module  6  stereo Id 436346393 " fill="rgb(255,23,0)" points="828.767,1795.92 849.182,1795.92 849.182,1789.29 " />
<svg:polygon detid="436346649" count="1" value="117" id="3906131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 neg   module  6  stereo Id 436346649 " fill="rgb(255,23,0)" points="828.767,1789.29 849.182,1789.29 849.182,1782.65 " />
<svg:polygon detid="436346905" count="1" value="117" id="3906132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 neg   module  6  stereo Id 436346905 " fill="rgb(255,23,0)" points="828.767,1782.65 849.182,1782.65 849.182,1776.01 " />
<svg:polygon detid="436347161" count="1" value="117" id="3906133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 neg   module  6  stereo Id 436347161 " fill="rgb(255,23,0)" points="828.767,1776.01 849.182,1776.01 849.182,1769.37 " />
<svg:polygon detid="436347417" count="1" value="117" id="3906134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 neg   module  6  stereo Id 436347417 " fill="rgb(255,23,0)" points="828.767,1769.37 849.182,1769.37 849.182,1762.73 " />
<svg:polygon detid="436347673" count="1" value="117" id="3906135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 neg   module  6  stereo Id 436347673 " fill="rgb(255,23,0)" points="828.767,1762.73 849.182,1762.73 849.182,1756.1 " />
<svg:polygon detid="436347929" count="1" value="117" id="3906136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 neg   module  6  stereo Id 436347929 " fill="rgb(255,23,0)" points="828.767,1756.1 849.182,1756.1 849.182,1749.46 " />
<svg:polygon detid="436348185" count="1" value="117" id="3906137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 neg   module  6  stereo Id 436348185 " fill="rgb(255,23,0)" points="828.767,1749.46 849.182,1749.46 849.182,1742.82 " />
<svg:polygon detid="436348441" count="1" value="117" id="3906138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 neg   module  6  stereo Id 436348441 " fill="rgb(255,23,0)" points="828.767,1742.82 849.182,1742.82 849.182,1736.18 " />
<svg:polygon detid="436348697" count="1" value="117" id="3906139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 neg   module  6  stereo Id 436348697 " fill="rgb(255,23,0)" points="828.767,1736.18 849.182,1736.18 849.182,1729.54 " />
<svg:polygon detid="436348953" count="1" value="117" id="3906140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 neg   module  6  stereo Id 436348953 " fill="rgb(255,23,0)" points="828.767,1729.54 849.182,1729.54 849.182,1722.91 " />
<svg:polygon detid="436349209" count="1" value="117" id="3906141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 neg   module  6  stereo Id 436349209 " fill="rgb(255,23,0)" points="828.767,1722.91 849.182,1722.91 849.182,1716.27 " />
<svg:polygon detid="436349465" count="1" value="117" id="3906142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 neg   module  6  stereo Id 436349465 " fill="rgb(255,23,0)" points="828.767,1716.27 849.182,1716.27 849.182,1709.63 " />
<svg:polygon detid="436349721" count="1" value="117" id="3906143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 neg   module  6  stereo Id 436349721 " fill="rgb(255,23,0)" points="828.767,1709.63 849.182,1709.63 849.182,1702.99 " />
<svg:polygon detid="436349977" count="1" value="117" id="3906144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 neg   module  6  stereo Id 436349977 " fill="rgb(255,23,0)" points="828.767,1702.99 849.182,1702.99 849.182,1696.36 " />
<svg:polygon detid="436350233" count="1" value="117" id="3906145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 neg   module  6  stereo Id 436350233 " fill="rgb(255,23,0)" points="828.767,1696.36 849.182,1696.36 849.182,1689.72 " />
<svg:polygon detid="436350489" count="1" value="117" id="3906146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 neg   module  6  stereo Id 436350489 " fill="rgb(255,23,0)" points="828.767,1689.72 849.182,1689.72 849.182,1683.08 " />
<svg:polygon detid="436350745" count="1" value="117" id="3906147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 neg   module  6  stereo Id 436350745 " fill="rgb(255,23,0)" points="828.767,1683.08 849.182,1683.08 849.182,1676.44 " />
<svg:polygon detid="436351001" count="1" value="117" id="3906148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 neg   module  6  stereo Id 436351001 " fill="rgb(255,23,0)" points="828.767,1676.44 849.182,1676.44 849.182,1669.8 " />
<svg:polygon detid="436371718" count="1" value="117" id="3907001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  1   Id 436371718 " fill="rgb(255,23,0)" points="872.148,1981.79 851.733,1981.79 851.733,1988.42 " />
<svg:polygon detid="436371974" count="1" value="117" id="3907002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  1   Id 436371974 " fill="rgb(255,23,0)" points="872.148,1975.15 851.733,1975.15 851.733,1981.79 " />
<svg:polygon detid="436372230" count="1" value="117" id="3907003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  1   Id 436372230 " fill="rgb(255,23,0)" points="872.148,1968.51 851.733,1968.51 851.733,1975.15 " />
<svg:polygon detid="436372486" count="1" value="117" id="3907004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  1   Id 436372486 " fill="rgb(255,23,0)" points="872.148,1961.87 851.733,1961.87 851.733,1968.51 " />
<svg:polygon detid="436372742" count="1" value="117" id="3907005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  1   Id 436372742 " fill="rgb(255,23,0)" points="872.148,1955.23 851.733,1955.23 851.733,1961.87 " />
<svg:polygon detid="436372998" count="1" value="117" id="3907006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  1   Id 436372998 " fill="rgb(255,23,0)" points="872.148,1948.6 851.733,1948.6 851.733,1955.23 " />
<svg:polygon detid="436373254" count="1" value="117" id="3907007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  1   Id 436373254 " fill="rgb(255,23,0)" points="872.148,1941.96 851.733,1941.96 851.733,1948.6 " />
<svg:polygon detid="436373510" count="1" value="117" id="3907008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  1   Id 436373510 " fill="rgb(255,23,0)" points="872.148,1935.32 851.733,1935.32 851.733,1941.96 " />
<svg:polygon detid="436373766" count="1" value="117" id="3907009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  1   Id 436373766 " fill="rgb(255,23,0)" points="872.148,1928.68 851.733,1928.68 851.733,1935.32 " />
<svg:polygon detid="436374022" count="1" value="117" id="3907010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  1   Id 436374022 " fill="rgb(255,23,0)" points="872.148,1922.04 851.733,1922.04 851.733,1928.68 " />
<svg:polygon detid="436374278" count="1" value="117" id="3907011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  1   Id 436374278 " fill="rgb(255,23,0)" points="872.148,1915.41 851.733,1915.41 851.733,1922.04 " />
<svg:polygon detid="436374534" count="1" value="117" id="3907012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  1   Id 436374534 " fill="rgb(255,23,0)" points="872.148,1908.77 851.733,1908.77 851.733,1915.41 " />
<svg:polygon detid="436374790" count="1" value="117" id="3907013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  1   Id 436374790 " fill="rgb(255,23,0)" points="872.148,1902.13 851.733,1902.13 851.733,1908.77 " />
<svg:polygon detid="436375046" count="1" value="117" id="3907014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  1   Id 436375046 " fill="rgb(255,23,0)" points="872.148,1895.49 851.733,1895.49 851.733,1902.13 " />
<svg:polygon detid="436375302" count="1" value="117" id="3907015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  1   Id 436375302 " fill="rgb(255,23,0)" points="872.148,1888.85 851.733,1888.85 851.733,1895.49 " />
<svg:polygon detid="436375558" count="1" value="117" id="3907016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  1   Id 436375558 " fill="rgb(255,23,0)" points="872.148,1882.22 851.733,1882.22 851.733,1888.85 " />
<svg:polygon detid="436375814" count="1" value="117" id="3907017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  1   Id 436375814 " fill="rgb(255,23,0)" points="872.148,1875.58 851.733,1875.58 851.733,1882.22 " />
<svg:polygon detid="436376070" count="1" value="117" id="3907018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  1   Id 436376070 " fill="rgb(255,23,0)" points="872.148,1868.94 851.733,1868.94 851.733,1875.58 " />
<svg:polygon detid="436376326" count="1" value="117" id="3907019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  1   Id 436376326 " fill="rgb(255,23,0)" points="872.148,1862.3 851.733,1862.3 851.733,1868.94 " />
<svg:polygon detid="436376582" count="1" value="117" id="3907020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  1   Id 436376582 " fill="rgb(255,23,0)" points="872.148,1855.67 851.733,1855.67 851.733,1862.3 " />
<svg:polygon detid="436376838" count="1" value="117" id="3907021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  1   Id 436376838 " fill="rgb(255,23,0)" points="872.148,1849.03 851.733,1849.03 851.733,1855.67 " />
<svg:polygon detid="436377094" count="1" value="117" id="3907022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  1   Id 436377094 " fill="rgb(255,23,0)" points="872.148,1842.39 851.733,1842.39 851.733,1849.03 " />
<svg:polygon detid="436377350" count="1" value="117" id="3907023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  1   Id 436377350 " fill="rgb(255,23,0)" points="872.148,1835.75 851.733,1835.75 851.733,1842.39 " />
<svg:polygon detid="436377606" count="1" value="117" id="3907024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  1   Id 436377606 " fill="rgb(255,23,0)" points="872.148,1829.11 851.733,1829.11 851.733,1835.75 " />
<svg:polygon detid="436377862" count="1" value="117" id="3907025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  1   Id 436377862 " fill="rgb(255,23,0)" points="872.148,1822.48 851.733,1822.48 851.733,1829.11 " />
<svg:polygon detid="436378118" count="1" value="117" id="3907026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  1   Id 436378118 " fill="rgb(255,23,0)" points="872.148,1815.84 851.733,1815.84 851.733,1822.48 " />
<svg:polygon detid="436378374" count="1" value="117" id="3907027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  1   Id 436378374 " fill="rgb(255,23,0)" points="872.148,1809.2 851.733,1809.2 851.733,1815.84 " />
<svg:polygon detid="436378630" count="1" value="117" id="3907028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  1   Id 436378630 " fill="rgb(255,23,0)" points="872.148,1802.56 851.733,1802.56 851.733,1809.2 " />
<svg:polygon detid="436378886" count="1" value="117" id="3907029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  1   Id 436378886 " fill="rgb(255,23,0)" points="872.148,1795.92 851.733,1795.92 851.733,1802.56 " />
<svg:polygon detid="436379142" count="1" value="117" id="3907030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  1   Id 436379142 " fill="rgb(255,23,0)" points="872.148,1789.29 851.733,1789.29 851.733,1795.92 " />
<svg:polygon detid="436379398" count="1" value="117" id="3907031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  1   Id 436379398 " fill="rgb(255,23,0)" points="872.148,1782.65 851.733,1782.65 851.733,1789.29 " />
<svg:polygon detid="436379654" count="1" value="117" id="3907032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  1   Id 436379654 " fill="rgb(255,23,0)" points="872.148,1776.01 851.733,1776.01 851.733,1782.65 " />
<svg:polygon detid="436379910" count="1" value="117" id="3907033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  1   Id 436379910 " fill="rgb(255,23,0)" points="872.148,1769.37 851.733,1769.37 851.733,1776.01 " />
<svg:polygon detid="436380166" count="1" value="117" id="3907034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  1   Id 436380166 " fill="rgb(255,23,0)" points="872.148,1762.73 851.733,1762.73 851.733,1769.37 " />
<svg:polygon detid="436380422" count="1" value="117" id="3907035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  1   Id 436380422 " fill="rgb(255,23,0)" points="872.148,1756.1 851.733,1756.1 851.733,1762.73 " />
<svg:polygon detid="436380678" count="1" value="117" id="3907036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  1   Id 436380678 " fill="rgb(255,23,0)" points="872.148,1749.46 851.733,1749.46 851.733,1756.1 " />
<svg:polygon detid="436380934" count="1" value="117" id="3907037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  1   Id 436380934 " fill="rgb(255,23,0)" points="872.148,1742.82 851.733,1742.82 851.733,1749.46 " />
<svg:polygon detid="436381190" count="1" value="117" id="3907038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  1   Id 436381190 " fill="rgb(255,23,0)" points="872.148,1736.18 851.733,1736.18 851.733,1742.82 " />
<svg:polygon detid="436381446" count="1" value="117" id="3907039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  1   Id 436381446 " fill="rgb(255,23,0)" points="872.148,1729.54 851.733,1729.54 851.733,1736.18 " />
<svg:polygon detid="436381702" count="1" value="117" id="3907040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  1   Id 436381702 " fill="rgb(255,23,0)" points="872.148,1722.91 851.733,1722.91 851.733,1729.54 " />
<svg:polygon detid="436381958" count="1" value="117" id="3907041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  1   Id 436381958 " fill="rgb(255,23,0)" points="872.148,1716.27 851.733,1716.27 851.733,1722.91 " />
<svg:polygon detid="436382214" count="1" value="117" id="3907042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  1   Id 436382214 " fill="rgb(255,23,0)" points="872.148,1709.63 851.733,1709.63 851.733,1716.27 " />
<svg:polygon detid="436382470" count="1" value="117" id="3907043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  1   Id 436382470 " fill="rgb(255,23,0)" points="872.148,1702.99 851.733,1702.99 851.733,1709.63 " />
<svg:polygon detid="436382726" count="1" value="117" id="3907044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  1   Id 436382726 " fill="rgb(255,23,0)" points="872.148,1696.36 851.733,1696.36 851.733,1702.99 " />
<svg:polygon detid="436382982" count="1" value="117" id="3907045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  1   Id 436382982 " fill="rgb(255,23,0)" points="872.148,1689.72 851.733,1689.72 851.733,1696.36 " />
<svg:polygon detid="436383238" count="1" value="117" id="3907046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  1   Id 436383238 " fill="rgb(255,23,0)" points="872.148,1683.08 851.733,1683.08 851.733,1689.72 " />
<svg:polygon detid="436383494" count="1" value="117" id="3907047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  1   Id 436383494 " fill="rgb(255,23,0)" points="872.148,1676.44 851.733,1676.44 851.733,1683.08 " />
<svg:polygon detid="436383750" count="1" value="117" id="3907048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  1   Id 436383750 " fill="rgb(255,23,0)" points="872.148,1669.8 851.733,1669.8 851.733,1676.44 " />
<svg:polygon detid="436371717" count="1" value="117" id="3907101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  1  stereo Id 436371717 " fill="rgb(255,23,0)" points="851.733,1988.42 872.148,1988.42 872.148,1981.79 " />
<svg:polygon detid="436371973" count="1" value="117" id="3907102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  1  stereo Id 436371973 " fill="rgb(255,23,0)" points="851.733,1981.79 872.148,1981.79 872.148,1975.15 " />
<svg:polygon detid="436372229" count="1" value="117" id="3907103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  1  stereo Id 436372229 " fill="rgb(255,23,0)" points="851.733,1975.15 872.148,1975.15 872.148,1968.51 " />
<svg:polygon detid="436372485" count="1" value="117" id="3907104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  1  stereo Id 436372485 " fill="rgb(255,23,0)" points="851.733,1968.51 872.148,1968.51 872.148,1961.87 " />
<svg:polygon detid="436372741" count="1" value="117" id="3907105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  1  stereo Id 436372741 " fill="rgb(255,23,0)" points="851.733,1961.87 872.148,1961.87 872.148,1955.23 " />
<svg:polygon detid="436372997" count="1" value="117" id="3907106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  1  stereo Id 436372997 " fill="rgb(255,23,0)" points="851.733,1955.23 872.148,1955.23 872.148,1948.6 " />
<svg:polygon detid="436373253" count="1" value="117" id="3907107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  1  stereo Id 436373253 " fill="rgb(255,23,0)" points="851.733,1948.6 872.148,1948.6 872.148,1941.96 " />
<svg:polygon detid="436373509" count="1" value="117" id="3907108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  1  stereo Id 436373509 " fill="rgb(255,23,0)" points="851.733,1941.96 872.148,1941.96 872.148,1935.32 " />
<svg:polygon detid="436373765" count="1" value="117" id="3907109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  1  stereo Id 436373765 " fill="rgb(255,23,0)" points="851.733,1935.32 872.148,1935.32 872.148,1928.68 " />
<svg:polygon detid="436374021" count="1" value="117" id="3907110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  1  stereo Id 436374021 " fill="rgb(255,23,0)" points="851.733,1928.68 872.148,1928.68 872.148,1922.04 " />
<svg:polygon detid="436374277" count="1" value="117" id="3907111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  1  stereo Id 436374277 " fill="rgb(255,23,0)" points="851.733,1922.04 872.148,1922.04 872.148,1915.41 " />
<svg:polygon detid="436374533" count="1" value="117" id="3907112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  1  stereo Id 436374533 " fill="rgb(255,23,0)" points="851.733,1915.41 872.148,1915.41 872.148,1908.77 " />
<svg:polygon detid="436374789" count="1" value="117" id="3907113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  1  stereo Id 436374789 " fill="rgb(255,23,0)" points="851.733,1908.77 872.148,1908.77 872.148,1902.13 " />
<svg:polygon detid="436375045" count="1" value="117" id="3907114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  1  stereo Id 436375045 " fill="rgb(255,23,0)" points="851.733,1902.13 872.148,1902.13 872.148,1895.49 " />
<svg:polygon detid="436375301" count="1" value="117" id="3907115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  1  stereo Id 436375301 " fill="rgb(255,23,0)" points="851.733,1895.49 872.148,1895.49 872.148,1888.85 " />
<svg:polygon detid="436375557" count="1" value="117" id="3907116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  1  stereo Id 436375557 " fill="rgb(255,23,0)" points="851.733,1888.85 872.148,1888.85 872.148,1882.22 " />
<svg:polygon detid="436375813" count="1" value="117" id="3907117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  1  stereo Id 436375813 " fill="rgb(255,23,0)" points="851.733,1882.22 872.148,1882.22 872.148,1875.58 " />
<svg:polygon detid="436376069" count="1" value="117" id="3907118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  1  stereo Id 436376069 " fill="rgb(255,23,0)" points="851.733,1875.58 872.148,1875.58 872.148,1868.94 " />
<svg:polygon detid="436376325" count="1" value="117" id="3907119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  1  stereo Id 436376325 " fill="rgb(255,23,0)" points="851.733,1868.94 872.148,1868.94 872.148,1862.3 " />
<svg:polygon detid="436376581" count="1" value="117" id="3907120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  1  stereo Id 436376581 " fill="rgb(255,23,0)" points="851.733,1862.3 872.148,1862.3 872.148,1855.67 " />
<svg:polygon detid="436376837" count="1" value="117" id="3907121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  1  stereo Id 436376837 " fill="rgb(255,23,0)" points="851.733,1855.67 872.148,1855.67 872.148,1849.03 " />
<svg:polygon detid="436377093" count="1" value="117" id="3907122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  1  stereo Id 436377093 " fill="rgb(255,23,0)" points="851.733,1849.03 872.148,1849.03 872.148,1842.39 " />
<svg:polygon detid="436377349" count="1" value="117" id="3907123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  1  stereo Id 436377349 " fill="rgb(255,23,0)" points="851.733,1842.39 872.148,1842.39 872.148,1835.75 " />
<svg:polygon detid="436377605" count="1" value="117" id="3907124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  1  stereo Id 436377605 " fill="rgb(255,23,0)" points="851.733,1835.75 872.148,1835.75 872.148,1829.11 " />
<svg:polygon detid="436377861" count="1" value="117" id="3907125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  1  stereo Id 436377861 " fill="rgb(255,23,0)" points="851.733,1829.11 872.148,1829.11 872.148,1822.48 " />
<svg:polygon detid="436378117" count="1" value="117" id="3907126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  1  stereo Id 436378117 " fill="rgb(255,23,0)" points="851.733,1822.48 872.148,1822.48 872.148,1815.84 " />
<svg:polygon detid="436378373" count="1" value="117" id="3907127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  1  stereo Id 436378373 " fill="rgb(255,23,0)" points="851.733,1815.84 872.148,1815.84 872.148,1809.2 " />
<svg:polygon detid="436378629" count="1" value="117" id="3907128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  1  stereo Id 436378629 " fill="rgb(255,23,0)" points="851.733,1809.2 872.148,1809.2 872.148,1802.56 " />
<svg:polygon detid="436378885" count="1" value="117" id="3907129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  1  stereo Id 436378885 " fill="rgb(255,23,0)" points="851.733,1802.56 872.148,1802.56 872.148,1795.92 " />
<svg:polygon detid="436379141" count="1" value="117" id="3907130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  1  stereo Id 436379141 " fill="rgb(255,23,0)" points="851.733,1795.92 872.148,1795.92 872.148,1789.29 " />
<svg:polygon detid="436379397" count="1" value="117" id="3907131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  1  stereo Id 436379397 " fill="rgb(255,23,0)" points="851.733,1789.29 872.148,1789.29 872.148,1782.65 " />
<svg:polygon detid="436379653" count="1" value="117" id="3907132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  1  stereo Id 436379653 " fill="rgb(255,23,0)" points="851.733,1782.65 872.148,1782.65 872.148,1776.01 " />
<svg:polygon detid="436379909" count="1" value="117" id="3907133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  1  stereo Id 436379909 " fill="rgb(255,23,0)" points="851.733,1776.01 872.148,1776.01 872.148,1769.37 " />
<svg:polygon detid="436380165" count="1" value="117" id="3907134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  1  stereo Id 436380165 " fill="rgb(255,23,0)" points="851.733,1769.37 872.148,1769.37 872.148,1762.73 " />
<svg:polygon detid="436380421" count="1" value="117" id="3907135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  1  stereo Id 436380421 " fill="rgb(255,23,0)" points="851.733,1762.73 872.148,1762.73 872.148,1756.1 " />
<svg:polygon detid="436380677" count="1" value="117" id="3907136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  1  stereo Id 436380677 " fill="rgb(255,23,0)" points="851.733,1756.1 872.148,1756.1 872.148,1749.46 " />
<svg:polygon detid="436380933" count="1" value="117" id="3907137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  1  stereo Id 436380933 " fill="rgb(255,23,0)" points="851.733,1749.46 872.148,1749.46 872.148,1742.82 " />
<svg:polygon detid="436381189" count="1" value="117" id="3907138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  1  stereo Id 436381189 " fill="rgb(255,23,0)" points="851.733,1742.82 872.148,1742.82 872.148,1736.18 " />
<svg:polygon detid="436381445" count="1" value="117" id="3907139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  1  stereo Id 436381445 " fill="rgb(255,23,0)" points="851.733,1736.18 872.148,1736.18 872.148,1729.54 " />
<svg:polygon detid="436381701" count="1" value="117" id="3907140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  1  stereo Id 436381701 " fill="rgb(255,23,0)" points="851.733,1729.54 872.148,1729.54 872.148,1722.91 " />
<svg:polygon detid="436381957" count="1" value="117" id="3907141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  1  stereo Id 436381957 " fill="rgb(255,23,0)" points="851.733,1722.91 872.148,1722.91 872.148,1716.27 " />
<svg:polygon detid="436382213" count="1" value="117" id="3907142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  1  stereo Id 436382213 " fill="rgb(255,23,0)" points="851.733,1716.27 872.148,1716.27 872.148,1709.63 " />
<svg:polygon detid="436382469" count="1" value="117" id="3907143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  1  stereo Id 436382469 " fill="rgb(255,23,0)" points="851.733,1709.63 872.148,1709.63 872.148,1702.99 " />
<svg:polygon detid="436382725" count="1" value="117" id="3907144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  1  stereo Id 436382725 " fill="rgb(255,23,0)" points="851.733,1702.99 872.148,1702.99 872.148,1696.36 " />
<svg:polygon detid="436382981" count="1" value="117" id="3907145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  1  stereo Id 436382981 " fill="rgb(255,23,0)" points="851.733,1696.36 872.148,1696.36 872.148,1689.72 " />
<svg:polygon detid="436383237" count="1" value="117" id="3907146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  1  stereo Id 436383237 " fill="rgb(255,23,0)" points="851.733,1689.72 872.148,1689.72 872.148,1683.08 " />
<svg:polygon detid="436383493" count="1" value="117" id="3907147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  1  stereo Id 436383493 " fill="rgb(255,23,0)" points="851.733,1683.08 872.148,1683.08 872.148,1676.44 " />
<svg:polygon detid="436383749" count="1" value="117" id="3907148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  1  stereo Id 436383749 " fill="rgb(255,23,0)" points="851.733,1676.44 872.148,1676.44 872.148,1669.8 " />
<svg:polygon detid="436371722" count="1" value="117" id="3908001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  2   Id 436371722 " fill="rgb(255,23,0)" points="895.115,1981.79 874.7,1981.79 874.7,1988.42 " />
<svg:polygon detid="436371978" count="1" value="117" id="3908002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  2   Id 436371978 " fill="rgb(255,23,0)" points="895.115,1975.15 874.7,1975.15 874.7,1981.79 " />
<svg:polygon detid="436372234" count="1" value="117" id="3908003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  2   Id 436372234 " fill="rgb(255,23,0)" points="895.115,1968.51 874.7,1968.51 874.7,1975.15 " />
<svg:polygon detid="436372490" count="1" value="117" id="3908004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  2   Id 436372490 " fill="rgb(255,23,0)" points="895.115,1961.87 874.7,1961.87 874.7,1968.51 " />
<svg:polygon detid="436372746" count="1" value="117" id="3908005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  2   Id 436372746 " fill="rgb(255,23,0)" points="895.115,1955.23 874.7,1955.23 874.7,1961.87 " />
<svg:polygon detid="436373002" count="1" value="117" id="3908006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  2   Id 436373002 " fill="rgb(255,23,0)" points="895.115,1948.6 874.7,1948.6 874.7,1955.23 " />
<svg:polygon detid="436373258" count="1" value="117" id="3908007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  2   Id 436373258 " fill="rgb(255,23,0)" points="895.115,1941.96 874.7,1941.96 874.7,1948.6 " />
<svg:polygon detid="436373514" count="1" value="117" id="3908008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  2   Id 436373514 " fill="rgb(255,23,0)" points="895.115,1935.32 874.7,1935.32 874.7,1941.96 " />
<svg:polygon detid="436373770" count="1" value="117" id="3908009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  2   Id 436373770 " fill="rgb(255,23,0)" points="895.115,1928.68 874.7,1928.68 874.7,1935.32 " />
<svg:polygon detid="436374026" count="1" value="117" id="3908010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  2   Id 436374026 " fill="rgb(255,23,0)" points="895.115,1922.04 874.7,1922.04 874.7,1928.68 " />
<svg:polygon detid="436374282" count="1" value="117" id="3908011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  2   Id 436374282 " fill="rgb(255,23,0)" points="895.115,1915.41 874.7,1915.41 874.7,1922.04 " />
<svg:polygon detid="436374538" count="1" value="117" id="3908012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  2   Id 436374538 " fill="rgb(255,23,0)" points="895.115,1908.77 874.7,1908.77 874.7,1915.41 " />
<svg:polygon detid="436374794" count="1" value="117" id="3908013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  2   Id 436374794 " fill="rgb(255,23,0)" points="895.115,1902.13 874.7,1902.13 874.7,1908.77 " />
<svg:polygon detid="436375050" count="1" value="117" id="3908014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  2   Id 436375050 " fill="rgb(255,23,0)" points="895.115,1895.49 874.7,1895.49 874.7,1902.13 " />
<svg:polygon detid="436375306" count="1" value="117" id="3908015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  2   Id 436375306 " fill="rgb(255,23,0)" points="895.115,1888.85 874.7,1888.85 874.7,1895.49 " />
<svg:polygon detid="436375562" count="1" value="117" id="3908016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  2   Id 436375562 " fill="rgb(255,23,0)" points="895.115,1882.22 874.7,1882.22 874.7,1888.85 " />
<svg:polygon detid="436375818" count="1" value="117" id="3908017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  2   Id 436375818 " fill="rgb(255,23,0)" points="895.115,1875.58 874.7,1875.58 874.7,1882.22 " />
<svg:polygon detid="436376074" count="1" value="117" id="3908018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  2   Id 436376074 " fill="rgb(255,23,0)" points="895.115,1868.94 874.7,1868.94 874.7,1875.58 " />
<svg:polygon detid="436376330" count="1" value="117" id="3908019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  2   Id 436376330 " fill="rgb(255,23,0)" points="895.115,1862.3 874.7,1862.3 874.7,1868.94 " />
<svg:polygon detid="436376586" count="1" value="117" id="3908020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  2   Id 436376586 " fill="rgb(255,23,0)" points="895.115,1855.67 874.7,1855.67 874.7,1862.3 " />
<svg:polygon detid="436376842" count="1" value="117" id="3908021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  2   Id 436376842 " fill="rgb(255,23,0)" points="895.115,1849.03 874.7,1849.03 874.7,1855.67 " />
<svg:polygon detid="436377098" count="1" value="117" id="3908022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  2   Id 436377098 " fill="rgb(255,23,0)" points="895.115,1842.39 874.7,1842.39 874.7,1849.03 " />
<svg:polygon detid="436377354" count="1" value="117" id="3908023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  2   Id 436377354 " fill="rgb(255,23,0)" points="895.115,1835.75 874.7,1835.75 874.7,1842.39 " />
<svg:polygon detid="436377610" count="1" value="117" id="3908024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  2   Id 436377610 " fill="rgb(255,23,0)" points="895.115,1829.11 874.7,1829.11 874.7,1835.75 " />
<svg:polygon detid="436377866" count="1" value="117" id="3908025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  2   Id 436377866 " fill="rgb(255,23,0)" points="895.115,1822.48 874.7,1822.48 874.7,1829.11 " />
<svg:polygon detid="436378122" count="1" value="117" id="3908026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  2   Id 436378122 " fill="rgb(255,23,0)" points="895.115,1815.84 874.7,1815.84 874.7,1822.48 " />
<svg:polygon detid="436378378" count="1" value="117" id="3908027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  2   Id 436378378 " fill="rgb(255,23,0)" points="895.115,1809.2 874.7,1809.2 874.7,1815.84 " />
<svg:polygon detid="436378634" count="1" value="117" id="3908028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  2   Id 436378634 " fill="rgb(255,23,0)" points="895.115,1802.56 874.7,1802.56 874.7,1809.2 " />
<svg:polygon detid="436378890" count="1" value="117" id="3908029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  2   Id 436378890 " fill="rgb(255,23,0)" points="895.115,1795.92 874.7,1795.92 874.7,1802.56 " />
<svg:polygon detid="436379146" count="1" value="117" id="3908030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  2   Id 436379146 " fill="rgb(255,23,0)" points="895.115,1789.29 874.7,1789.29 874.7,1795.92 " />
<svg:polygon detid="436379402" count="1" value="117" id="3908031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  2   Id 436379402 " fill="rgb(255,23,0)" points="895.115,1782.65 874.7,1782.65 874.7,1789.29 " />
<svg:polygon detid="436379658" count="1" value="117" id="3908032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  2   Id 436379658 " fill="rgb(255,23,0)" points="895.115,1776.01 874.7,1776.01 874.7,1782.65 " />
<svg:polygon detid="436379914" count="1" value="117" id="3908033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  2   Id 436379914 " fill="rgb(255,23,0)" points="895.115,1769.37 874.7,1769.37 874.7,1776.01 " />
<svg:polygon detid="436380170" count="1" value="117" id="3908034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  2   Id 436380170 " fill="rgb(255,23,0)" points="895.115,1762.73 874.7,1762.73 874.7,1769.37 " />
<svg:polygon detid="436380426" count="1" value="117" id="3908035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  2   Id 436380426 " fill="rgb(255,23,0)" points="895.115,1756.1 874.7,1756.1 874.7,1762.73 " />
<svg:polygon detid="436380682" count="1" value="117" id="3908036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  2   Id 436380682 " fill="rgb(255,23,0)" points="895.115,1749.46 874.7,1749.46 874.7,1756.1 " />
<svg:polygon detid="436380938" count="1" value="117" id="3908037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  2   Id 436380938 " fill="rgb(255,23,0)" points="895.115,1742.82 874.7,1742.82 874.7,1749.46 " />
<svg:polygon detid="436381194" count="1" value="117" id="3908038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  2   Id 436381194 " fill="rgb(255,23,0)" points="895.115,1736.18 874.7,1736.18 874.7,1742.82 " />
<svg:polygon detid="436381450" count="1" value="117" id="3908039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  2   Id 436381450 " fill="rgb(255,23,0)" points="895.115,1729.54 874.7,1729.54 874.7,1736.18 " />
<svg:polygon detid="436381706" count="1" value="117" id="3908040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  2   Id 436381706 " fill="rgb(255,23,0)" points="895.115,1722.91 874.7,1722.91 874.7,1729.54 " />
<svg:polygon detid="436381962" count="1" value="117" id="3908041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  2   Id 436381962 " fill="rgb(255,23,0)" points="895.115,1716.27 874.7,1716.27 874.7,1722.91 " />
<svg:polygon detid="436382218" count="1" value="117" id="3908042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  2   Id 436382218 " fill="rgb(255,23,0)" points="895.115,1709.63 874.7,1709.63 874.7,1716.27 " />
<svg:polygon detid="436382474" count="1" value="117" id="3908043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  2   Id 436382474 " fill="rgb(255,23,0)" points="895.115,1702.99 874.7,1702.99 874.7,1709.63 " />
<svg:polygon detid="436382730" count="1" value="117" id="3908044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  2   Id 436382730 " fill="rgb(255,23,0)" points="895.115,1696.36 874.7,1696.36 874.7,1702.99 " />
<svg:polygon detid="436382986" count="1" value="117" id="3908045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  2   Id 436382986 " fill="rgb(255,23,0)" points="895.115,1689.72 874.7,1689.72 874.7,1696.36 " />
<svg:polygon detid="436383242" count="1" value="117" id="3908046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  2   Id 436383242 " fill="rgb(255,23,0)" points="895.115,1683.08 874.7,1683.08 874.7,1689.72 " />
<svg:polygon detid="436383498" count="1" value="117" id="3908047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  2   Id 436383498 " fill="rgb(255,23,0)" points="895.115,1676.44 874.7,1676.44 874.7,1683.08 " />
<svg:polygon detid="436383754" count="1" value="117" id="3908048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  2   Id 436383754 " fill="rgb(255,23,0)" points="895.115,1669.8 874.7,1669.8 874.7,1676.44 " />
<svg:polygon detid="436371721" count="1" value="117" id="3908101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  2  stereo Id 436371721 " fill="rgb(255,23,0)" points="874.7,1988.42 895.115,1988.42 895.115,1981.79 " />
<svg:polygon detid="436371977" count="1" value="117" id="3908102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  2  stereo Id 436371977 " fill="rgb(255,23,0)" points="874.7,1981.79 895.115,1981.79 895.115,1975.15 " />
<svg:polygon detid="436372233" count="1" value="117" id="3908103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  2  stereo Id 436372233 " fill="rgb(255,23,0)" points="874.7,1975.15 895.115,1975.15 895.115,1968.51 " />
<svg:polygon detid="436372489" count="1" value="117" id="3908104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  2  stereo Id 436372489 " fill="rgb(255,23,0)" points="874.7,1968.51 895.115,1968.51 895.115,1961.87 " />
<svg:polygon detid="436372745" count="1" value="117" id="3908105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  2  stereo Id 436372745 " fill="rgb(255,23,0)" points="874.7,1961.87 895.115,1961.87 895.115,1955.23 " />
<svg:polygon detid="436373001" count="1" value="117" id="3908106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  2  stereo Id 436373001 " fill="rgb(255,23,0)" points="874.7,1955.23 895.115,1955.23 895.115,1948.6 " />
<svg:polygon detid="436373257" count="1" value="117" id="3908107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  2  stereo Id 436373257 " fill="rgb(255,23,0)" points="874.7,1948.6 895.115,1948.6 895.115,1941.96 " />
<svg:polygon detid="436373513" count="1" value="117" id="3908108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  2  stereo Id 436373513 " fill="rgb(255,23,0)" points="874.7,1941.96 895.115,1941.96 895.115,1935.32 " />
<svg:polygon detid="436373769" count="1" value="117" id="3908109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  2  stereo Id 436373769 " fill="rgb(255,23,0)" points="874.7,1935.32 895.115,1935.32 895.115,1928.68 " />
<svg:polygon detid="436374025" count="1" value="117" id="3908110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  2  stereo Id 436374025 " fill="rgb(255,23,0)" points="874.7,1928.68 895.115,1928.68 895.115,1922.04 " />
<svg:polygon detid="436374281" count="1" value="117" id="3908111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  2  stereo Id 436374281 " fill="rgb(255,23,0)" points="874.7,1922.04 895.115,1922.04 895.115,1915.41 " />
<svg:polygon detid="436374537" count="1" value="117" id="3908112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  2  stereo Id 436374537 " fill="rgb(255,23,0)" points="874.7,1915.41 895.115,1915.41 895.115,1908.77 " />
<svg:polygon detid="436374793" count="1" value="117" id="3908113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  2  stereo Id 436374793 " fill="rgb(255,23,0)" points="874.7,1908.77 895.115,1908.77 895.115,1902.13 " />
<svg:polygon detid="436375049" count="1" value="117" id="3908114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  2  stereo Id 436375049 " fill="rgb(255,23,0)" points="874.7,1902.13 895.115,1902.13 895.115,1895.49 " />
<svg:polygon detid="436375305" count="1" value="117" id="3908115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  2  stereo Id 436375305 " fill="rgb(255,23,0)" points="874.7,1895.49 895.115,1895.49 895.115,1888.85 " />
<svg:polygon detid="436375561" count="1" value="117" id="3908116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  2  stereo Id 436375561 " fill="rgb(255,23,0)" points="874.7,1888.85 895.115,1888.85 895.115,1882.22 " />
<svg:polygon detid="436375817" count="1" value="117" id="3908117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  2  stereo Id 436375817 " fill="rgb(255,23,0)" points="874.7,1882.22 895.115,1882.22 895.115,1875.58 " />
<svg:polygon detid="436376073" count="1" value="117" id="3908118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  2  stereo Id 436376073 " fill="rgb(255,23,0)" points="874.7,1875.58 895.115,1875.58 895.115,1868.94 " />
<svg:polygon detid="436376329" count="1" value="117" id="3908119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  2  stereo Id 436376329 " fill="rgb(255,23,0)" points="874.7,1868.94 895.115,1868.94 895.115,1862.3 " />
<svg:polygon detid="436376585" count="1" value="117" id="3908120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  2  stereo Id 436376585 " fill="rgb(255,23,0)" points="874.7,1862.3 895.115,1862.3 895.115,1855.67 " />
<svg:polygon detid="436376841" count="1" value="117" id="3908121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  2  stereo Id 436376841 " fill="rgb(255,23,0)" points="874.7,1855.67 895.115,1855.67 895.115,1849.03 " />
<svg:polygon detid="436377097" count="1" value="117" id="3908122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  2  stereo Id 436377097 " fill="rgb(255,23,0)" points="874.7,1849.03 895.115,1849.03 895.115,1842.39 " />
<svg:polygon detid="436377353" count="1" value="117" id="3908123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  2  stereo Id 436377353 " fill="rgb(255,23,0)" points="874.7,1842.39 895.115,1842.39 895.115,1835.75 " />
<svg:polygon detid="436377609" count="1" value="117" id="3908124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  2  stereo Id 436377609 " fill="rgb(255,23,0)" points="874.7,1835.75 895.115,1835.75 895.115,1829.11 " />
<svg:polygon detid="436377865" count="1" value="117" id="3908125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  2  stereo Id 436377865 " fill="rgb(255,23,0)" points="874.7,1829.11 895.115,1829.11 895.115,1822.48 " />
<svg:polygon detid="436378121" count="1" value="117" id="3908126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  2  stereo Id 436378121 " fill="rgb(255,23,0)" points="874.7,1822.48 895.115,1822.48 895.115,1815.84 " />
<svg:polygon detid="436378377" count="1" value="117" id="3908127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  2  stereo Id 436378377 " fill="rgb(255,23,0)" points="874.7,1815.84 895.115,1815.84 895.115,1809.2 " />
<svg:polygon detid="436378633" count="1" value="117" id="3908128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  2  stereo Id 436378633 " fill="rgb(255,23,0)" points="874.7,1809.2 895.115,1809.2 895.115,1802.56 " />
<svg:polygon detid="436378889" count="1" value="117" id="3908129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  2  stereo Id 436378889 " fill="rgb(255,23,0)" points="874.7,1802.56 895.115,1802.56 895.115,1795.92 " />
<svg:polygon detid="436379145" count="1" value="117" id="3908130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  2  stereo Id 436379145 " fill="rgb(255,23,0)" points="874.7,1795.92 895.115,1795.92 895.115,1789.29 " />
<svg:polygon detid="436379401" count="1" value="117" id="3908131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  2  stereo Id 436379401 " fill="rgb(255,23,0)" points="874.7,1789.29 895.115,1789.29 895.115,1782.65 " />
<svg:polygon detid="436379657" count="1" value="117" id="3908132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  2  stereo Id 436379657 " fill="rgb(255,23,0)" points="874.7,1782.65 895.115,1782.65 895.115,1776.01 " />
<svg:polygon detid="436379913" count="1" value="117" id="3908133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  2  stereo Id 436379913 " fill="rgb(255,23,0)" points="874.7,1776.01 895.115,1776.01 895.115,1769.37 " />
<svg:polygon detid="436380169" count="1" value="117" id="3908134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  2  stereo Id 436380169 " fill="rgb(255,23,0)" points="874.7,1769.37 895.115,1769.37 895.115,1762.73 " />
<svg:polygon detid="436380425" count="1" value="117" id="3908135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  2  stereo Id 436380425 " fill="rgb(255,23,0)" points="874.7,1762.73 895.115,1762.73 895.115,1756.1 " />
<svg:polygon detid="436380681" count="1" value="117" id="3908136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  2  stereo Id 436380681 " fill="rgb(255,23,0)" points="874.7,1756.1 895.115,1756.1 895.115,1749.46 " />
<svg:polygon detid="436380937" count="1" value="117" id="3908137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  2  stereo Id 436380937 " fill="rgb(255,23,0)" points="874.7,1749.46 895.115,1749.46 895.115,1742.82 " />
<svg:polygon detid="436381193" count="1" value="117" id="3908138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  2  stereo Id 436381193 " fill="rgb(255,23,0)" points="874.7,1742.82 895.115,1742.82 895.115,1736.18 " />
<svg:polygon detid="436381449" count="1" value="117" id="3908139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  2  stereo Id 436381449 " fill="rgb(255,23,0)" points="874.7,1736.18 895.115,1736.18 895.115,1729.54 " />
<svg:polygon detid="436381705" count="1" value="117" id="3908140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  2  stereo Id 436381705 " fill="rgb(255,23,0)" points="874.7,1729.54 895.115,1729.54 895.115,1722.91 " />
<svg:polygon detid="436381961" count="1" value="117" id="3908141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  2  stereo Id 436381961 " fill="rgb(255,23,0)" points="874.7,1722.91 895.115,1722.91 895.115,1716.27 " />
<svg:polygon detid="436382217" count="1" value="117" id="3908142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  2  stereo Id 436382217 " fill="rgb(255,23,0)" points="874.7,1716.27 895.115,1716.27 895.115,1709.63 " />
<svg:polygon detid="436382473" count="1" value="117" id="3908143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  2  stereo Id 436382473 " fill="rgb(255,23,0)" points="874.7,1709.63 895.115,1709.63 895.115,1702.99 " />
<svg:polygon detid="436382729" count="1" value="117" id="3908144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  2  stereo Id 436382729 " fill="rgb(255,23,0)" points="874.7,1702.99 895.115,1702.99 895.115,1696.36 " />
<svg:polygon detid="436382985" count="1" value="117" id="3908145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  2  stereo Id 436382985 " fill="rgb(255,23,0)" points="874.7,1696.36 895.115,1696.36 895.115,1689.72 " />
<svg:polygon detid="436383241" count="1" value="117" id="3908146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  2  stereo Id 436383241 " fill="rgb(255,23,0)" points="874.7,1689.72 895.115,1689.72 895.115,1683.08 " />
<svg:polygon detid="436383497" count="1" value="117" id="3908147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  2  stereo Id 436383497 " fill="rgb(255,23,0)" points="874.7,1683.08 895.115,1683.08 895.115,1676.44 " />
<svg:polygon detid="436383753" count="1" value="117" id="3908148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  2  stereo Id 436383753 " fill="rgb(255,23,0)" points="874.7,1676.44 895.115,1676.44 895.115,1669.8 " />
<svg:polygon detid="436371726" count="1" value="117" id="3909001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  3   Id 436371726 " fill="rgb(255,23,0)" points="918.081,1981.79 897.667,1981.79 897.667,1988.42 " />
<svg:polygon detid="436371982" count="1" value="117" id="3909002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  3   Id 436371982 " fill="rgb(255,23,0)" points="918.081,1975.15 897.667,1975.15 897.667,1981.79 " />
<svg:polygon detid="436372238" count="1" value="117" id="3909003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  3   Id 436372238 " fill="rgb(255,23,0)" points="918.081,1968.51 897.667,1968.51 897.667,1975.15 " />
<svg:polygon detid="436372494" count="1" value="117" id="3909004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  3   Id 436372494 " fill="rgb(255,23,0)" points="918.081,1961.87 897.667,1961.87 897.667,1968.51 " />
<svg:polygon detid="436372750" count="1" value="117" id="3909005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  3   Id 436372750 " fill="rgb(255,23,0)" points="918.081,1955.23 897.667,1955.23 897.667,1961.87 " />
<svg:polygon detid="436373006" count="1" value="117" id="3909006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  3   Id 436373006 " fill="rgb(255,23,0)" points="918.081,1948.6 897.667,1948.6 897.667,1955.23 " />
<svg:polygon detid="436373262" count="1" value="117" id="3909007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  3   Id 436373262 " fill="rgb(255,23,0)" points="918.081,1941.96 897.667,1941.96 897.667,1948.6 " />
<svg:polygon detid="436373518" count="1" value="117" id="3909008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  3   Id 436373518 " fill="rgb(255,23,0)" points="918.081,1935.32 897.667,1935.32 897.667,1941.96 " />
<svg:polygon detid="436373774" count="1" value="117" id="3909009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  3   Id 436373774 " fill="rgb(255,23,0)" points="918.081,1928.68 897.667,1928.68 897.667,1935.32 " />
<svg:polygon detid="436374030" count="1" value="117" id="3909010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  3   Id 436374030 " fill="rgb(255,23,0)" points="918.081,1922.04 897.667,1922.04 897.667,1928.68 " />
<svg:polygon detid="436374286" count="1" value="117" id="3909011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  3   Id 436374286 " fill="rgb(255,23,0)" points="918.081,1915.41 897.667,1915.41 897.667,1922.04 " />
<svg:polygon detid="436374542" count="1" value="117" id="3909012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  3   Id 436374542 " fill="rgb(255,23,0)" points="918.081,1908.77 897.667,1908.77 897.667,1915.41 " />
<svg:polygon detid="436374798" count="1" value="117" id="3909013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  3   Id 436374798 " fill="rgb(255,23,0)" points="918.081,1902.13 897.667,1902.13 897.667,1908.77 " />
<svg:polygon detid="436375054" count="1" value="117" id="3909014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  3   Id 436375054 " fill="rgb(255,23,0)" points="918.081,1895.49 897.667,1895.49 897.667,1902.13 " />
<svg:polygon detid="436375310" count="1" value="117" id="3909015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  3   Id 436375310 " fill="rgb(255,23,0)" points="918.081,1888.85 897.667,1888.85 897.667,1895.49 " />
<svg:polygon detid="436375566" count="1" value="117" id="3909016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  3   Id 436375566 " fill="rgb(255,23,0)" points="918.081,1882.22 897.667,1882.22 897.667,1888.85 " />
<svg:polygon detid="436375822" count="1" value="117" id="3909017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  3   Id 436375822 " fill="rgb(255,23,0)" points="918.081,1875.58 897.667,1875.58 897.667,1882.22 " />
<svg:polygon detid="436376078" count="1" value="117" id="3909018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  3   Id 436376078 " fill="rgb(255,23,0)" points="918.081,1868.94 897.667,1868.94 897.667,1875.58 " />
<svg:polygon detid="436376334" count="1" value="117" id="3909019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  3   Id 436376334 " fill="rgb(255,23,0)" points="918.081,1862.3 897.667,1862.3 897.667,1868.94 " />
<svg:polygon detid="436376590" count="1" value="117" id="3909020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  3   Id 436376590 " fill="rgb(255,23,0)" points="918.081,1855.67 897.667,1855.67 897.667,1862.3 " />
<svg:polygon detid="436376846" count="1" value="117" id="3909021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  3   Id 436376846 " fill="rgb(255,23,0)" points="918.081,1849.03 897.667,1849.03 897.667,1855.67 " />
<svg:polygon detid="436377102" count="1" value="117" id="3909022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  3   Id 436377102 " fill="rgb(255,23,0)" points="918.081,1842.39 897.667,1842.39 897.667,1849.03 " />
<svg:polygon detid="436377358" count="1" value="117" id="3909023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  3   Id 436377358 " fill="rgb(255,23,0)" points="918.081,1835.75 897.667,1835.75 897.667,1842.39 " />
<svg:polygon detid="436377614" count="1" value="117" id="3909024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  3   Id 436377614 " fill="rgb(255,23,0)" points="918.081,1829.11 897.667,1829.11 897.667,1835.75 " />
<svg:polygon detid="436377870" count="1" value="117" id="3909025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  3   Id 436377870 " fill="rgb(255,23,0)" points="918.081,1822.48 897.667,1822.48 897.667,1829.11 " />
<svg:polygon detid="436378126" count="1" value="117" id="3909026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  3   Id 436378126 " fill="rgb(255,23,0)" points="918.081,1815.84 897.667,1815.84 897.667,1822.48 " />
<svg:polygon detid="436378382" count="1" value="117" id="3909027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  3   Id 436378382 " fill="rgb(255,23,0)" points="918.081,1809.2 897.667,1809.2 897.667,1815.84 " />
<svg:polygon detid="436378638" count="1" value="117" id="3909028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  3   Id 436378638 " fill="rgb(255,23,0)" points="918.081,1802.56 897.667,1802.56 897.667,1809.2 " />
<svg:polygon detid="436378894" count="1" value="117" id="3909029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  3   Id 436378894 " fill="rgb(255,23,0)" points="918.081,1795.92 897.667,1795.92 897.667,1802.56 " />
<svg:polygon detid="436379150" count="1" value="117" id="3909030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  3   Id 436379150 " fill="rgb(255,23,0)" points="918.081,1789.29 897.667,1789.29 897.667,1795.92 " />
<svg:polygon detid="436379406" count="1" value="117" id="3909031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  3   Id 436379406 " fill="rgb(255,23,0)" points="918.081,1782.65 897.667,1782.65 897.667,1789.29 " />
<svg:polygon detid="436379662" count="1" value="117" id="3909032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  3   Id 436379662 " fill="rgb(255,23,0)" points="918.081,1776.01 897.667,1776.01 897.667,1782.65 " />
<svg:polygon detid="436379918" count="1" value="117" id="3909033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  3   Id 436379918 " fill="rgb(255,23,0)" points="918.081,1769.37 897.667,1769.37 897.667,1776.01 " />
<svg:polygon detid="436380174" count="1" value="117" id="3909034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  3   Id 436380174 " fill="rgb(255,23,0)" points="918.081,1762.73 897.667,1762.73 897.667,1769.37 " />
<svg:polygon detid="436380430" count="1" value="117" id="3909035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  3   Id 436380430 " fill="rgb(255,23,0)" points="918.081,1756.1 897.667,1756.1 897.667,1762.73 " />
<svg:polygon detid="436380686" count="1" value="117" id="3909036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  3   Id 436380686 " fill="rgb(255,23,0)" points="918.081,1749.46 897.667,1749.46 897.667,1756.1 " />
<svg:polygon detid="436380942" count="1" value="117" id="3909037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  3   Id 436380942 " fill="rgb(255,23,0)" points="918.081,1742.82 897.667,1742.82 897.667,1749.46 " />
<svg:polygon detid="436381198" count="1" value="117" id="3909038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  3   Id 436381198 " fill="rgb(255,23,0)" points="918.081,1736.18 897.667,1736.18 897.667,1742.82 " />
<svg:polygon detid="436381454" count="1" value="117" id="3909039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  3   Id 436381454 " fill="rgb(255,23,0)" points="918.081,1729.54 897.667,1729.54 897.667,1736.18 " />
<svg:polygon detid="436381710" count="1" value="117" id="3909040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  3   Id 436381710 " fill="rgb(255,23,0)" points="918.081,1722.91 897.667,1722.91 897.667,1729.54 " />
<svg:polygon detid="436381966" count="1" value="117" id="3909041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  3   Id 436381966 " fill="rgb(255,23,0)" points="918.081,1716.27 897.667,1716.27 897.667,1722.91 " />
<svg:polygon detid="436382222" count="1" value="117" id="3909042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  3   Id 436382222 " fill="rgb(255,23,0)" points="918.081,1709.63 897.667,1709.63 897.667,1716.27 " />
<svg:polygon detid="436382478" count="1" value="117" id="3909043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  3   Id 436382478 " fill="rgb(255,23,0)" points="918.081,1702.99 897.667,1702.99 897.667,1709.63 " />
<svg:polygon detid="436382734" count="1" value="117" id="3909044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  3   Id 436382734 " fill="rgb(255,23,0)" points="918.081,1696.36 897.667,1696.36 897.667,1702.99 " />
<svg:polygon detid="436382990" count="1" value="117" id="3909045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  3   Id 436382990 " fill="rgb(255,23,0)" points="918.081,1689.72 897.667,1689.72 897.667,1696.36 " />
<svg:polygon detid="436383246" count="1" value="117" id="3909046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  3   Id 436383246 " fill="rgb(255,23,0)" points="918.081,1683.08 897.667,1683.08 897.667,1689.72 " />
<svg:polygon detid="436383502" count="1" value="117" id="3909047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  3   Id 436383502 " fill="rgb(255,23,0)" points="918.081,1676.44 897.667,1676.44 897.667,1683.08 " />
<svg:polygon detid="436383758" count="1" value="117" id="3909048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  3   Id 436383758 " fill="rgb(255,23,0)" points="918.081,1669.8 897.667,1669.8 897.667,1676.44 " />
<svg:polygon detid="436371725" count="1" value="117" id="3909101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  3  stereo Id 436371725 " fill="rgb(255,23,0)" points="897.667,1988.42 918.081,1988.42 918.081,1981.79 " />
<svg:polygon detid="436371981" count="1" value="117" id="3909102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  3  stereo Id 436371981 " fill="rgb(255,23,0)" points="897.667,1981.79 918.081,1981.79 918.081,1975.15 " />
<svg:polygon detid="436372237" count="1" value="117" id="3909103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  3  stereo Id 436372237 " fill="rgb(255,23,0)" points="897.667,1975.15 918.081,1975.15 918.081,1968.51 " />
<svg:polygon detid="436372493" count="1" value="117" id="3909104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  3  stereo Id 436372493 " fill="rgb(255,23,0)" points="897.667,1968.51 918.081,1968.51 918.081,1961.87 " />
<svg:polygon detid="436372749" count="1" value="117" id="3909105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  3  stereo Id 436372749 " fill="rgb(255,23,0)" points="897.667,1961.87 918.081,1961.87 918.081,1955.23 " />
<svg:polygon detid="436373005" count="1" value="117" id="3909106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  3  stereo Id 436373005 " fill="rgb(255,23,0)" points="897.667,1955.23 918.081,1955.23 918.081,1948.6 " />
<svg:polygon detid="436373261" count="1" value="117" id="3909107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  3  stereo Id 436373261 " fill="rgb(255,23,0)" points="897.667,1948.6 918.081,1948.6 918.081,1941.96 " />
<svg:polygon detid="436373517" count="1" value="117" id="3909108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  3  stereo Id 436373517 " fill="rgb(255,23,0)" points="897.667,1941.96 918.081,1941.96 918.081,1935.32 " />
<svg:polygon detid="436373773" count="1" value="117" id="3909109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  3  stereo Id 436373773 " fill="rgb(255,23,0)" points="897.667,1935.32 918.081,1935.32 918.081,1928.68 " />
<svg:polygon detid="436374029" count="1" value="117" id="3909110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  3  stereo Id 436374029 " fill="rgb(255,23,0)" points="897.667,1928.68 918.081,1928.68 918.081,1922.04 " />
<svg:polygon detid="436374285" count="1" value="117" id="3909111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  3  stereo Id 436374285 " fill="rgb(255,23,0)" points="897.667,1922.04 918.081,1922.04 918.081,1915.41 " />
<svg:polygon detid="436374541" count="1" value="117" id="3909112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  3  stereo Id 436374541 " fill="rgb(255,23,0)" points="897.667,1915.41 918.081,1915.41 918.081,1908.77 " />
<svg:polygon detid="436374797" count="1" value="117" id="3909113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  3  stereo Id 436374797 " fill="rgb(255,23,0)" points="897.667,1908.77 918.081,1908.77 918.081,1902.13 " />
<svg:polygon detid="436375053" count="1" value="117" id="3909114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  3  stereo Id 436375053 " fill="rgb(255,23,0)" points="897.667,1902.13 918.081,1902.13 918.081,1895.49 " />
<svg:polygon detid="436375309" count="1" value="117" id="3909115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  3  stereo Id 436375309 " fill="rgb(255,23,0)" points="897.667,1895.49 918.081,1895.49 918.081,1888.85 " />
<svg:polygon detid="436375565" count="1" value="117" id="3909116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  3  stereo Id 436375565 " fill="rgb(255,23,0)" points="897.667,1888.85 918.081,1888.85 918.081,1882.22 " />
<svg:polygon detid="436375821" count="1" value="117" id="3909117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  3  stereo Id 436375821 " fill="rgb(255,23,0)" points="897.667,1882.22 918.081,1882.22 918.081,1875.58 " />
<svg:polygon detid="436376077" count="1" value="117" id="3909118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  3  stereo Id 436376077 " fill="rgb(255,23,0)" points="897.667,1875.58 918.081,1875.58 918.081,1868.94 " />
<svg:polygon detid="436376333" count="1" value="117" id="3909119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  3  stereo Id 436376333 " fill="rgb(255,23,0)" points="897.667,1868.94 918.081,1868.94 918.081,1862.3 " />
<svg:polygon detid="436376589" count="1" value="117" id="3909120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  3  stereo Id 436376589 " fill="rgb(255,23,0)" points="897.667,1862.3 918.081,1862.3 918.081,1855.67 " />
<svg:polygon detid="436376845" count="1" value="117" id="3909121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  3  stereo Id 436376845 " fill="rgb(255,23,0)" points="897.667,1855.67 918.081,1855.67 918.081,1849.03 " />
<svg:polygon detid="436377101" count="1" value="117" id="3909122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  3  stereo Id 436377101 " fill="rgb(255,23,0)" points="897.667,1849.03 918.081,1849.03 918.081,1842.39 " />
<svg:polygon detid="436377357" count="1" value="117" id="3909123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  3  stereo Id 436377357 " fill="rgb(255,23,0)" points="897.667,1842.39 918.081,1842.39 918.081,1835.75 " />
<svg:polygon detid="436377613" count="1" value="117" id="3909124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  3  stereo Id 436377613 " fill="rgb(255,23,0)" points="897.667,1835.75 918.081,1835.75 918.081,1829.11 " />
<svg:polygon detid="436377869" count="1" value="117" id="3909125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  3  stereo Id 436377869 " fill="rgb(255,23,0)" points="897.667,1829.11 918.081,1829.11 918.081,1822.48 " />
<svg:polygon detid="436378125" count="1" value="117" id="3909126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  3  stereo Id 436378125 " fill="rgb(255,23,0)" points="897.667,1822.48 918.081,1822.48 918.081,1815.84 " />
<svg:polygon detid="436378381" count="1" value="117" id="3909127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  3  stereo Id 436378381 " fill="rgb(255,23,0)" points="897.667,1815.84 918.081,1815.84 918.081,1809.2 " />
<svg:polygon detid="436378637" count="1" value="117" id="3909128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  3  stereo Id 436378637 " fill="rgb(255,23,0)" points="897.667,1809.2 918.081,1809.2 918.081,1802.56 " />
<svg:polygon detid="436378893" count="1" value="117" id="3909129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  3  stereo Id 436378893 " fill="rgb(255,23,0)" points="897.667,1802.56 918.081,1802.56 918.081,1795.92 " />
<svg:polygon detid="436379149" count="1" value="117" id="3909130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  3  stereo Id 436379149 " fill="rgb(255,23,0)" points="897.667,1795.92 918.081,1795.92 918.081,1789.29 " />
<svg:polygon detid="436379405" count="1" value="117" id="3909131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  3  stereo Id 436379405 " fill="rgb(255,23,0)" points="897.667,1789.29 918.081,1789.29 918.081,1782.65 " />
<svg:polygon detid="436379661" count="1" value="117" id="3909132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  3  stereo Id 436379661 " fill="rgb(255,23,0)" points="897.667,1782.65 918.081,1782.65 918.081,1776.01 " />
<svg:polygon detid="436379917" count="1" value="117" id="3909133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  3  stereo Id 436379917 " fill="rgb(255,23,0)" points="897.667,1776.01 918.081,1776.01 918.081,1769.37 " />
<svg:polygon detid="436380173" count="1" value="117" id="3909134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  3  stereo Id 436380173 " fill="rgb(255,23,0)" points="897.667,1769.37 918.081,1769.37 918.081,1762.73 " />
<svg:polygon detid="436380429" count="1" value="117" id="3909135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  3  stereo Id 436380429 " fill="rgb(255,23,0)" points="897.667,1762.73 918.081,1762.73 918.081,1756.1 " />
<svg:polygon detid="436380685" count="1" value="117" id="3909136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  3  stereo Id 436380685 " fill="rgb(255,23,0)" points="897.667,1756.1 918.081,1756.1 918.081,1749.46 " />
<svg:polygon detid="436380941" count="1" value="117" id="3909137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  3  stereo Id 436380941 " fill="rgb(255,23,0)" points="897.667,1749.46 918.081,1749.46 918.081,1742.82 " />
<svg:polygon detid="436381197" count="1" value="117" id="3909138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  3  stereo Id 436381197 " fill="rgb(255,23,0)" points="897.667,1742.82 918.081,1742.82 918.081,1736.18 " />
<svg:polygon detid="436381453" count="1" value="117" id="3909139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  3  stereo Id 436381453 " fill="rgb(255,23,0)" points="897.667,1736.18 918.081,1736.18 918.081,1729.54 " />
<svg:polygon detid="436381709" count="1" value="117" id="3909140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  3  stereo Id 436381709 " fill="rgb(255,23,0)" points="897.667,1729.54 918.081,1729.54 918.081,1722.91 " />
<svg:polygon detid="436381965" count="1" value="117" id="3909141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  3  stereo Id 436381965 " fill="rgb(255,23,0)" points="897.667,1722.91 918.081,1722.91 918.081,1716.27 " />
<svg:polygon detid="436382221" count="1" value="117" id="3909142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  3  stereo Id 436382221 " fill="rgb(255,23,0)" points="897.667,1716.27 918.081,1716.27 918.081,1709.63 " />
<svg:polygon detid="436382477" count="1" value="117" id="3909143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  3  stereo Id 436382477 " fill="rgb(255,23,0)" points="897.667,1709.63 918.081,1709.63 918.081,1702.99 " />
<svg:polygon detid="436382733" count="1" value="117" id="3909144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  3  stereo Id 436382733 " fill="rgb(255,23,0)" points="897.667,1702.99 918.081,1702.99 918.081,1696.36 " />
<svg:polygon detid="436382989" count="1" value="117" id="3909145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  3  stereo Id 436382989 " fill="rgb(255,23,0)" points="897.667,1696.36 918.081,1696.36 918.081,1689.72 " />
<svg:polygon detid="436383245" count="1" value="117" id="3909146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  3  stereo Id 436383245 " fill="rgb(255,23,0)" points="897.667,1689.72 918.081,1689.72 918.081,1683.08 " />
<svg:polygon detid="436383501" count="1" value="117" id="3909147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  3  stereo Id 436383501 " fill="rgb(255,23,0)" points="897.667,1683.08 918.081,1683.08 918.081,1676.44 " />
<svg:polygon detid="436383757" count="1" value="117" id="3909148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  3  stereo Id 436383757 " fill="rgb(255,23,0)" points="897.667,1676.44 918.081,1676.44 918.081,1669.8 " />
<svg:polygon detid="436371730" count="1" value="117" id="3910001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  4   Id 436371730 " fill="rgb(255,23,0)" points="941.048,1981.79 920.633,1981.79 920.633,1988.42 " />
<svg:polygon detid="436371986" count="1" value="117" id="3910002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  4   Id 436371986 " fill="rgb(255,23,0)" points="941.048,1975.15 920.633,1975.15 920.633,1981.79 " />
<svg:polygon detid="436372242" count="1" value="117" id="3910003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  4   Id 436372242 " fill="rgb(255,23,0)" points="941.048,1968.51 920.633,1968.51 920.633,1975.15 " />
<svg:polygon detid="436372498" count="1" value="117" id="3910004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  4   Id 436372498 " fill="rgb(255,23,0)" points="941.048,1961.87 920.633,1961.87 920.633,1968.51 " />
<svg:polygon detid="436372754" count="1" value="117" id="3910005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  4   Id 436372754 " fill="rgb(255,23,0)" points="941.048,1955.23 920.633,1955.23 920.633,1961.87 " />
<svg:polygon detid="436373010" count="1" value="117" id="3910006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  4   Id 436373010 " fill="rgb(255,23,0)" points="941.048,1948.6 920.633,1948.6 920.633,1955.23 " />
<svg:polygon detid="436373266" count="1" value="117" id="3910007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  4   Id 436373266 " fill="rgb(255,23,0)" points="941.048,1941.96 920.633,1941.96 920.633,1948.6 " />
<svg:polygon detid="436373522" count="1" value="117" id="3910008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  4   Id 436373522 " fill="rgb(255,23,0)" points="941.048,1935.32 920.633,1935.32 920.633,1941.96 " />
<svg:polygon detid="436373778" count="1" value="117" id="3910009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  4   Id 436373778 " fill="rgb(255,23,0)" points="941.048,1928.68 920.633,1928.68 920.633,1935.32 " />
<svg:polygon detid="436374034" count="1" value="117" id="3910010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  4   Id 436374034 " fill="rgb(255,23,0)" points="941.048,1922.04 920.633,1922.04 920.633,1928.68 " />
<svg:polygon detid="436374290" count="1" value="117" id="3910011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  4   Id 436374290 " fill="rgb(255,23,0)" points="941.048,1915.41 920.633,1915.41 920.633,1922.04 " />
<svg:polygon detid="436374546" count="1" value="117" id="3910012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  4   Id 436374546 " fill="rgb(255,23,0)" points="941.048,1908.77 920.633,1908.77 920.633,1915.41 " />
<svg:polygon detid="436374802" count="1" value="117" id="3910013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  4   Id 436374802 " fill="rgb(255,23,0)" points="941.048,1902.13 920.633,1902.13 920.633,1908.77 " />
<svg:polygon detid="436375058" count="1" value="117" id="3910014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  4   Id 436375058 " fill="rgb(255,23,0)" points="941.048,1895.49 920.633,1895.49 920.633,1902.13 " />
<svg:polygon detid="436375314" count="1" value="117" id="3910015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  4   Id 436375314 " fill="rgb(255,23,0)" points="941.048,1888.85 920.633,1888.85 920.633,1895.49 " />
<svg:polygon detid="436375570" count="1" value="117" id="3910016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  4   Id 436375570 " fill="rgb(255,23,0)" points="941.048,1882.22 920.633,1882.22 920.633,1888.85 " />
<svg:polygon detid="436375826" count="1" value="117" id="3910017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  4   Id 436375826 " fill="rgb(255,23,0)" points="941.048,1875.58 920.633,1875.58 920.633,1882.22 " />
<svg:polygon detid="436376082" count="1" value="117" id="3910018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  4   Id 436376082 " fill="rgb(255,23,0)" points="941.048,1868.94 920.633,1868.94 920.633,1875.58 " />
<svg:polygon detid="436376338" count="1" value="117" id="3910019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  4   Id 436376338 " fill="rgb(255,23,0)" points="941.048,1862.3 920.633,1862.3 920.633,1868.94 " />
<svg:polygon detid="436376594" count="1" value="117" id="3910020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  4   Id 436376594 " fill="rgb(255,23,0)" points="941.048,1855.67 920.633,1855.67 920.633,1862.3 " />
<svg:polygon detid="436376850" count="1" value="117" id="3910021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  4   Id 436376850 " fill="rgb(255,23,0)" points="941.048,1849.03 920.633,1849.03 920.633,1855.67 " />
<svg:polygon detid="436377106" count="1" value="117" id="3910022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  4   Id 436377106 " fill="rgb(255,23,0)" points="941.048,1842.39 920.633,1842.39 920.633,1849.03 " />
<svg:polygon detid="436377362" count="1" value="117" id="3910023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  4   Id 436377362 " fill="rgb(255,23,0)" points="941.048,1835.75 920.633,1835.75 920.633,1842.39 " />
<svg:polygon detid="436377618" count="1" value="117" id="3910024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  4   Id 436377618 " fill="rgb(255,23,0)" points="941.048,1829.11 920.633,1829.11 920.633,1835.75 " />
<svg:polygon detid="436377874" count="1" value="117" id="3910025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  4   Id 436377874 " fill="rgb(255,23,0)" points="941.048,1822.48 920.633,1822.48 920.633,1829.11 " />
<svg:polygon detid="436378130" count="1" value="117" id="3910026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  4   Id 436378130 " fill="rgb(255,23,0)" points="941.048,1815.84 920.633,1815.84 920.633,1822.48 " />
<svg:polygon detid="436378386" count="1" value="117" id="3910027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  4   Id 436378386 " fill="rgb(255,23,0)" points="941.048,1809.2 920.633,1809.2 920.633,1815.84 " />
<svg:polygon detid="436378642" count="1" value="117" id="3910028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  4   Id 436378642 " fill="rgb(255,23,0)" points="941.048,1802.56 920.633,1802.56 920.633,1809.2 " />
<svg:polygon detid="436378898" count="1" value="117" id="3910029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  4   Id 436378898 " fill="rgb(255,23,0)" points="941.048,1795.92 920.633,1795.92 920.633,1802.56 " />
<svg:polygon detid="436379154" count="1" value="117" id="3910030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  4   Id 436379154 " fill="rgb(255,23,0)" points="941.048,1789.29 920.633,1789.29 920.633,1795.92 " />
<svg:polygon detid="436379410" count="1" value="117" id="3910031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  4   Id 436379410 " fill="rgb(255,23,0)" points="941.048,1782.65 920.633,1782.65 920.633,1789.29 " />
<svg:polygon detid="436379666" count="1" value="117" id="3910032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  4   Id 436379666 " fill="rgb(255,23,0)" points="941.048,1776.01 920.633,1776.01 920.633,1782.65 " />
<svg:polygon detid="436379922" count="1" value="117" id="3910033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  4   Id 436379922 " fill="rgb(255,23,0)" points="941.048,1769.37 920.633,1769.37 920.633,1776.01 " />
<svg:polygon detid="436380178" count="1" value="117" id="3910034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  4   Id 436380178 " fill="rgb(255,23,0)" points="941.048,1762.73 920.633,1762.73 920.633,1769.37 " />
<svg:polygon detid="436380434" count="1" value="117" id="3910035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  4   Id 436380434 " fill="rgb(255,23,0)" points="941.048,1756.1 920.633,1756.1 920.633,1762.73 " />
<svg:polygon detid="436380690" count="1" value="117" id="3910036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  4   Id 436380690 " fill="rgb(255,23,0)" points="941.048,1749.46 920.633,1749.46 920.633,1756.1 " />
<svg:polygon detid="436380946" count="1" value="117" id="3910037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  4   Id 436380946 " fill="rgb(255,23,0)" points="941.048,1742.82 920.633,1742.82 920.633,1749.46 " />
<svg:polygon detid="436381202" count="1" value="117" id="3910038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  4   Id 436381202 " fill="rgb(255,23,0)" points="941.048,1736.18 920.633,1736.18 920.633,1742.82 " />
<svg:polygon detid="436381458" count="1" value="117" id="3910039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  4   Id 436381458 " fill="rgb(255,23,0)" points="941.048,1729.54 920.633,1729.54 920.633,1736.18 " />
<svg:polygon detid="436381714" count="1" value="117" id="3910040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  4   Id 436381714 " fill="rgb(255,23,0)" points="941.048,1722.91 920.633,1722.91 920.633,1729.54 " />
<svg:polygon detid="436381970" count="1" value="117" id="3910041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  4   Id 436381970 " fill="rgb(255,23,0)" points="941.048,1716.27 920.633,1716.27 920.633,1722.91 " />
<svg:polygon detid="436382226" count="1" value="117" id="3910042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  4   Id 436382226 " fill="rgb(255,23,0)" points="941.048,1709.63 920.633,1709.63 920.633,1716.27 " />
<svg:polygon detid="436382482" count="1" value="117" id="3910043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  4   Id 436382482 " fill="rgb(255,23,0)" points="941.048,1702.99 920.633,1702.99 920.633,1709.63 " />
<svg:polygon detid="436382738" count="1" value="117" id="3910044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  4   Id 436382738 " fill="rgb(255,23,0)" points="941.048,1696.36 920.633,1696.36 920.633,1702.99 " />
<svg:polygon detid="436382994" count="1" value="117" id="3910045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  4   Id 436382994 " fill="rgb(255,23,0)" points="941.048,1689.72 920.633,1689.72 920.633,1696.36 " />
<svg:polygon detid="436383250" count="1" value="117" id="3910046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  4   Id 436383250 " fill="rgb(255,23,0)" points="941.048,1683.08 920.633,1683.08 920.633,1689.72 " />
<svg:polygon detid="436383506" count="1" value="117" id="3910047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  4   Id 436383506 " fill="rgb(255,23,0)" points="941.048,1676.44 920.633,1676.44 920.633,1683.08 " />
<svg:polygon detid="436383762" count="1" value="117" id="3910048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  4   Id 436383762 " fill="rgb(255,23,0)" points="941.048,1669.8 920.633,1669.8 920.633,1676.44 " />
<svg:polygon detid="436371729" count="1" value="117" id="3910101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  4  stereo Id 436371729 " fill="rgb(255,23,0)" points="920.633,1988.42 941.048,1988.42 941.048,1981.79 " />
<svg:polygon detid="436371985" count="1" value="117" id="3910102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  4  stereo Id 436371985 " fill="rgb(255,23,0)" points="920.633,1981.79 941.048,1981.79 941.048,1975.15 " />
<svg:polygon detid="436372241" count="1" value="117" id="3910103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  4  stereo Id 436372241 " fill="rgb(255,23,0)" points="920.633,1975.15 941.048,1975.15 941.048,1968.51 " />
<svg:polygon detid="436372497" count="1" value="117" id="3910104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  4  stereo Id 436372497 " fill="rgb(255,23,0)" points="920.633,1968.51 941.048,1968.51 941.048,1961.87 " />
<svg:polygon detid="436372753" count="1" value="117" id="3910105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  4  stereo Id 436372753 " fill="rgb(255,23,0)" points="920.633,1961.87 941.048,1961.87 941.048,1955.23 " />
<svg:polygon detid="436373009" count="1" value="117" id="3910106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  4  stereo Id 436373009 " fill="rgb(255,23,0)" points="920.633,1955.23 941.048,1955.23 941.048,1948.6 " />
<svg:polygon detid="436373265" count="1" value="117" id="3910107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  4  stereo Id 436373265 " fill="rgb(255,23,0)" points="920.633,1948.6 941.048,1948.6 941.048,1941.96 " />
<svg:polygon detid="436373521" count="1" value="117" id="3910108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  4  stereo Id 436373521 " fill="rgb(255,23,0)" points="920.633,1941.96 941.048,1941.96 941.048,1935.32 " />
<svg:polygon detid="436373777" count="1" value="117" id="3910109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  4  stereo Id 436373777 " fill="rgb(255,23,0)" points="920.633,1935.32 941.048,1935.32 941.048,1928.68 " />
<svg:polygon detid="436374033" count="1" value="117" id="3910110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  4  stereo Id 436374033 " fill="rgb(255,23,0)" points="920.633,1928.68 941.048,1928.68 941.048,1922.04 " />
<svg:polygon detid="436374289" count="1" value="117" id="3910111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  4  stereo Id 436374289 " fill="rgb(255,23,0)" points="920.633,1922.04 941.048,1922.04 941.048,1915.41 " />
<svg:polygon detid="436374545" count="1" value="117" id="3910112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  4  stereo Id 436374545 " fill="rgb(255,23,0)" points="920.633,1915.41 941.048,1915.41 941.048,1908.77 " />
<svg:polygon detid="436374801" count="1" value="117" id="3910113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  4  stereo Id 436374801 " fill="rgb(255,23,0)" points="920.633,1908.77 941.048,1908.77 941.048,1902.13 " />
<svg:polygon detid="436375057" count="1" value="117" id="3910114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  4  stereo Id 436375057 " fill="rgb(255,23,0)" points="920.633,1902.13 941.048,1902.13 941.048,1895.49 " />
<svg:polygon detid="436375313" count="1" value="117" id="3910115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  4  stereo Id 436375313 " fill="rgb(255,23,0)" points="920.633,1895.49 941.048,1895.49 941.048,1888.85 " />
<svg:polygon detid="436375569" count="1" value="117" id="3910116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  4  stereo Id 436375569 " fill="rgb(255,23,0)" points="920.633,1888.85 941.048,1888.85 941.048,1882.22 " />
<svg:polygon detid="436375825" count="1" value="117" id="3910117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  4  stereo Id 436375825 " fill="rgb(255,23,0)" points="920.633,1882.22 941.048,1882.22 941.048,1875.58 " />
<svg:polygon detid="436376081" count="1" value="117" id="3910118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  4  stereo Id 436376081 " fill="rgb(255,23,0)" points="920.633,1875.58 941.048,1875.58 941.048,1868.94 " />
<svg:polygon detid="436376337" count="1" value="117" id="3910119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  4  stereo Id 436376337 " fill="rgb(255,23,0)" points="920.633,1868.94 941.048,1868.94 941.048,1862.3 " />
<svg:polygon detid="436376593" count="1" value="117" id="3910120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  4  stereo Id 436376593 " fill="rgb(255,23,0)" points="920.633,1862.3 941.048,1862.3 941.048,1855.67 " />
<svg:polygon detid="436376849" count="1" value="117" id="3910121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  4  stereo Id 436376849 " fill="rgb(255,23,0)" points="920.633,1855.67 941.048,1855.67 941.048,1849.03 " />
<svg:polygon detid="436377105" count="1" value="117" id="3910122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  4  stereo Id 436377105 " fill="rgb(255,23,0)" points="920.633,1849.03 941.048,1849.03 941.048,1842.39 " />
<svg:polygon detid="436377361" count="1" value="117" id="3910123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  4  stereo Id 436377361 " fill="rgb(255,23,0)" points="920.633,1842.39 941.048,1842.39 941.048,1835.75 " />
<svg:polygon detid="436377617" count="1" value="117" id="3910124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  4  stereo Id 436377617 " fill="rgb(255,23,0)" points="920.633,1835.75 941.048,1835.75 941.048,1829.11 " />
<svg:polygon detid="436377873" count="1" value="117" id="3910125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  4  stereo Id 436377873 " fill="rgb(255,23,0)" points="920.633,1829.11 941.048,1829.11 941.048,1822.48 " />
<svg:polygon detid="436378129" count="1" value="117" id="3910126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  4  stereo Id 436378129 " fill="rgb(255,23,0)" points="920.633,1822.48 941.048,1822.48 941.048,1815.84 " />
<svg:polygon detid="436378385" count="1" value="117" id="3910127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  4  stereo Id 436378385 " fill="rgb(255,23,0)" points="920.633,1815.84 941.048,1815.84 941.048,1809.2 " />
<svg:polygon detid="436378641" count="1" value="117" id="3910128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  4  stereo Id 436378641 " fill="rgb(255,23,0)" points="920.633,1809.2 941.048,1809.2 941.048,1802.56 " />
<svg:polygon detid="436378897" count="1" value="117" id="3910129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  4  stereo Id 436378897 " fill="rgb(255,23,0)" points="920.633,1802.56 941.048,1802.56 941.048,1795.92 " />
<svg:polygon detid="436379153" count="1" value="117" id="3910130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  4  stereo Id 436379153 " fill="rgb(255,23,0)" points="920.633,1795.92 941.048,1795.92 941.048,1789.29 " />
<svg:polygon detid="436379409" count="1" value="117" id="3910131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  4  stereo Id 436379409 " fill="rgb(255,23,0)" points="920.633,1789.29 941.048,1789.29 941.048,1782.65 " />
<svg:polygon detid="436379665" count="1" value="117" id="3910132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  4  stereo Id 436379665 " fill="rgb(255,23,0)" points="920.633,1782.65 941.048,1782.65 941.048,1776.01 " />
<svg:polygon detid="436379921" count="1" value="117" id="3910133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  4  stereo Id 436379921 " fill="rgb(255,23,0)" points="920.633,1776.01 941.048,1776.01 941.048,1769.37 " />
<svg:polygon detid="436380177" count="1" value="117" id="3910134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  4  stereo Id 436380177 " fill="rgb(255,23,0)" points="920.633,1769.37 941.048,1769.37 941.048,1762.73 " />
<svg:polygon detid="436380433" count="1" value="117" id="3910135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  4  stereo Id 436380433 " fill="rgb(255,23,0)" points="920.633,1762.73 941.048,1762.73 941.048,1756.1 " />
<svg:polygon detid="436380689" count="1" value="117" id="3910136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  4  stereo Id 436380689 " fill="rgb(255,23,0)" points="920.633,1756.1 941.048,1756.1 941.048,1749.46 " />
<svg:polygon detid="436380945" count="1" value="117" id="3910137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  4  stereo Id 436380945 " fill="rgb(255,23,0)" points="920.633,1749.46 941.048,1749.46 941.048,1742.82 " />
<svg:polygon detid="436381201" count="1" value="117" id="3910138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  4  stereo Id 436381201 " fill="rgb(255,23,0)" points="920.633,1742.82 941.048,1742.82 941.048,1736.18 " />
<svg:polygon detid="436381457" count="1" value="117" id="3910139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  4  stereo Id 436381457 " fill="rgb(255,23,0)" points="920.633,1736.18 941.048,1736.18 941.048,1729.54 " />
<svg:polygon detid="436381713" count="1" value="117" id="3910140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  4  stereo Id 436381713 " fill="rgb(255,23,0)" points="920.633,1729.54 941.048,1729.54 941.048,1722.91 " />
<svg:polygon detid="436381969" count="1" value="117" id="3910141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  4  stereo Id 436381969 " fill="rgb(255,23,0)" points="920.633,1722.91 941.048,1722.91 941.048,1716.27 " />
<svg:polygon detid="436382225" count="1" value="117" id="3910142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  4  stereo Id 436382225 " fill="rgb(255,23,0)" points="920.633,1716.27 941.048,1716.27 941.048,1709.63 " />
<svg:polygon detid="436382481" count="1" value="117" id="3910143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  4  stereo Id 436382481 " fill="rgb(255,23,0)" points="920.633,1709.63 941.048,1709.63 941.048,1702.99 " />
<svg:polygon detid="436382737" count="1" value="117" id="3910144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  4  stereo Id 436382737 " fill="rgb(255,23,0)" points="920.633,1702.99 941.048,1702.99 941.048,1696.36 " />
<svg:polygon detid="436382993" count="1" value="117" id="3910145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  4  stereo Id 436382993 " fill="rgb(255,23,0)" points="920.633,1696.36 941.048,1696.36 941.048,1689.72 " />
<svg:polygon detid="436383249" count="1" value="117" id="3910146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  4  stereo Id 436383249 " fill="rgb(255,23,0)" points="920.633,1689.72 941.048,1689.72 941.048,1683.08 " />
<svg:polygon detid="436383505" count="1" value="117" id="3910147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  4  stereo Id 436383505 " fill="rgb(255,23,0)" points="920.633,1683.08 941.048,1683.08 941.048,1676.44 " />
<svg:polygon detid="436383761" count="1" value="117" id="3910148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  4  stereo Id 436383761 " fill="rgb(255,23,0)" points="920.633,1676.44 941.048,1676.44 941.048,1669.8 " />
<svg:polygon detid="436371734" count="1" value="117" id="3911001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  5   Id 436371734 " fill="rgb(255,23,0)" points="964.014,1981.79 943.6,1981.79 943.6,1988.42 " />
<svg:polygon detid="436371990" count="1" value="117" id="3911002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  5   Id 436371990 " fill="rgb(255,23,0)" points="964.014,1975.15 943.6,1975.15 943.6,1981.79 " />
<svg:polygon detid="436372246" count="1" value="117" id="3911003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  5   Id 436372246 " fill="rgb(255,23,0)" points="964.014,1968.51 943.6,1968.51 943.6,1975.15 " />
<svg:polygon detid="436372502" count="1" value="117" id="3911004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  5   Id 436372502 " fill="rgb(255,23,0)" points="964.014,1961.87 943.6,1961.87 943.6,1968.51 " />
<svg:polygon detid="436372758" count="1" value="117" id="3911005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  5   Id 436372758 " fill="rgb(255,23,0)" points="964.014,1955.23 943.6,1955.23 943.6,1961.87 " />
<svg:polygon detid="436373014" count="1" value="117" id="3911006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  5   Id 436373014 " fill="rgb(255,23,0)" points="964.014,1948.6 943.6,1948.6 943.6,1955.23 " />
<svg:polygon detid="436373270" count="1" value="117" id="3911007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  5   Id 436373270 " fill="rgb(255,23,0)" points="964.014,1941.96 943.6,1941.96 943.6,1948.6 " />
<svg:polygon detid="436373526" count="1" value="117" id="3911008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  5   Id 436373526 " fill="rgb(255,23,0)" points="964.014,1935.32 943.6,1935.32 943.6,1941.96 " />
<svg:polygon detid="436373782" count="1" value="117" id="3911009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  5   Id 436373782 " fill="rgb(255,23,0)" points="964.014,1928.68 943.6,1928.68 943.6,1935.32 " />
<svg:polygon detid="436374038" count="1" value="117" id="3911010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  5   Id 436374038 " fill="rgb(255,23,0)" points="964.014,1922.04 943.6,1922.04 943.6,1928.68 " />
<svg:polygon detid="436374294" count="1" value="117" id="3911011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  5   Id 436374294 " fill="rgb(255,23,0)" points="964.014,1915.41 943.6,1915.41 943.6,1922.04 " />
<svg:polygon detid="436374550" count="1" value="117" id="3911012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  5   Id 436374550 " fill="rgb(255,23,0)" points="964.014,1908.77 943.6,1908.77 943.6,1915.41 " />
<svg:polygon detid="436374806" count="1" value="117" id="3911013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  5   Id 436374806 " fill="rgb(255,23,0)" points="964.014,1902.13 943.6,1902.13 943.6,1908.77 " />
<svg:polygon detid="436375062" count="1" value="117" id="3911014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  5   Id 436375062 " fill="rgb(255,23,0)" points="964.014,1895.49 943.6,1895.49 943.6,1902.13 " />
<svg:polygon detid="436375318" count="1" value="117" id="3911015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  5   Id 436375318 " fill="rgb(255,23,0)" points="964.014,1888.85 943.6,1888.85 943.6,1895.49 " />
<svg:polygon detid="436375574" count="1" value="117" id="3911016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  5   Id 436375574 " fill="rgb(255,23,0)" points="964.014,1882.22 943.6,1882.22 943.6,1888.85 " />
<svg:polygon detid="436375830" count="1" value="117" id="3911017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  5   Id 436375830 " fill="rgb(255,23,0)" points="964.014,1875.58 943.6,1875.58 943.6,1882.22 " />
<svg:polygon detid="436376086" count="1" value="117" id="3911018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  5   Id 436376086 " fill="rgb(255,23,0)" points="964.014,1868.94 943.6,1868.94 943.6,1875.58 " />
<svg:polygon detid="436376342" count="1" value="117" id="3911019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  5   Id 436376342 " fill="rgb(255,23,0)" points="964.014,1862.3 943.6,1862.3 943.6,1868.94 " />
<svg:polygon detid="436376598" count="1" value="117" id="3911020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  5   Id 436376598 " fill="rgb(255,23,0)" points="964.014,1855.67 943.6,1855.67 943.6,1862.3 " />
<svg:polygon detid="436376854" count="1" value="117" id="3911021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  5   Id 436376854 " fill="rgb(255,23,0)" points="964.014,1849.03 943.6,1849.03 943.6,1855.67 " />
<svg:polygon detid="436377110" count="1" value="117" id="3911022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  5   Id 436377110 " fill="rgb(255,23,0)" points="964.014,1842.39 943.6,1842.39 943.6,1849.03 " />
<svg:polygon detid="436377366" count="1" value="117" id="3911023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  5   Id 436377366 " fill="rgb(255,23,0)" points="964.014,1835.75 943.6,1835.75 943.6,1842.39 " />
<svg:polygon detid="436377622" count="1" value="117" id="3911024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  5   Id 436377622 " fill="rgb(255,23,0)" points="964.014,1829.11 943.6,1829.11 943.6,1835.75 " />
<svg:polygon detid="436377878" count="1" value="117" id="3911025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  5   Id 436377878 " fill="rgb(255,23,0)" points="964.014,1822.48 943.6,1822.48 943.6,1829.11 " />
<svg:polygon detid="436378134" count="1" value="117" id="3911026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  5   Id 436378134 " fill="rgb(255,23,0)" points="964.014,1815.84 943.6,1815.84 943.6,1822.48 " />
<svg:polygon detid="436378390" count="1" value="117" id="3911027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  5   Id 436378390 " fill="rgb(255,23,0)" points="964.014,1809.2 943.6,1809.2 943.6,1815.84 " />
<svg:polygon detid="436378646" count="1" value="117" id="3911028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  5   Id 436378646 " fill="rgb(255,23,0)" points="964.014,1802.56 943.6,1802.56 943.6,1809.2 " />
<svg:polygon detid="436378902" count="1" value="117" id="3911029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  5   Id 436378902 " fill="rgb(255,23,0)" points="964.014,1795.92 943.6,1795.92 943.6,1802.56 " />
<svg:polygon detid="436379158" count="1" value="117" id="3911030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  5   Id 436379158 " fill="rgb(255,23,0)" points="964.014,1789.29 943.6,1789.29 943.6,1795.92 " />
<svg:polygon detid="436379414" count="1" value="117" id="3911031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  5   Id 436379414 " fill="rgb(255,23,0)" points="964.014,1782.65 943.6,1782.65 943.6,1789.29 " />
<svg:polygon detid="436379670" count="1" value="117" id="3911032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  5   Id 436379670 " fill="rgb(255,23,0)" points="964.014,1776.01 943.6,1776.01 943.6,1782.65 " />
<svg:polygon detid="436379926" count="1" value="117" id="3911033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  5   Id 436379926 " fill="rgb(255,23,0)" points="964.014,1769.37 943.6,1769.37 943.6,1776.01 " />
<svg:polygon detid="436380182" count="1" value="117" id="3911034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  5   Id 436380182 " fill="rgb(255,23,0)" points="964.014,1762.73 943.6,1762.73 943.6,1769.37 " />
<svg:polygon detid="436380438" count="1" value="117" id="3911035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  5   Id 436380438 " fill="rgb(255,23,0)" points="964.014,1756.1 943.6,1756.1 943.6,1762.73 " />
<svg:polygon detid="436380694" count="1" value="117" id="3911036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  5   Id 436380694 " fill="rgb(255,23,0)" points="964.014,1749.46 943.6,1749.46 943.6,1756.1 " />
<svg:polygon detid="436380950" count="1" value="117" id="3911037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  5   Id 436380950 " fill="rgb(255,23,0)" points="964.014,1742.82 943.6,1742.82 943.6,1749.46 " />
<svg:polygon detid="436381206" count="1" value="117" id="3911038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  5   Id 436381206 " fill="rgb(255,23,0)" points="964.014,1736.18 943.6,1736.18 943.6,1742.82 " />
<svg:polygon detid="436381462" count="1" value="117" id="3911039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  5   Id 436381462 " fill="rgb(255,23,0)" points="964.014,1729.54 943.6,1729.54 943.6,1736.18 " />
<svg:polygon detid="436381718" count="1" value="117" id="3911040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  5   Id 436381718 " fill="rgb(255,23,0)" points="964.014,1722.91 943.6,1722.91 943.6,1729.54 " />
<svg:polygon detid="436381974" count="1" value="117" id="3911041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  5   Id 436381974 " fill="rgb(255,23,0)" points="964.014,1716.27 943.6,1716.27 943.6,1722.91 " />
<svg:polygon detid="436382230" count="1" value="117" id="3911042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  5   Id 436382230 " fill="rgb(255,23,0)" points="964.014,1709.63 943.6,1709.63 943.6,1716.27 " />
<svg:polygon detid="436382486" count="1" value="117" id="3911043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  5   Id 436382486 " fill="rgb(255,23,0)" points="964.014,1702.99 943.6,1702.99 943.6,1709.63 " />
<svg:polygon detid="436382742" count="1" value="117" id="3911044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  5   Id 436382742 " fill="rgb(255,23,0)" points="964.014,1696.36 943.6,1696.36 943.6,1702.99 " />
<svg:polygon detid="436382998" count="1" value="117" id="3911045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  5   Id 436382998 " fill="rgb(255,23,0)" points="964.014,1689.72 943.6,1689.72 943.6,1696.36 " />
<svg:polygon detid="436383254" count="1" value="117" id="3911046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  5   Id 436383254 " fill="rgb(255,23,0)" points="964.014,1683.08 943.6,1683.08 943.6,1689.72 " />
<svg:polygon detid="436383510" count="1" value="117" id="3911047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  5   Id 436383510 " fill="rgb(255,23,0)" points="964.014,1676.44 943.6,1676.44 943.6,1683.08 " />
<svg:polygon detid="436383766" count="1" value="117" id="3911048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  5   Id 436383766 " fill="rgb(255,23,0)" points="964.014,1669.8 943.6,1669.8 943.6,1676.44 " />
<svg:polygon detid="436371733" count="1" value="117" id="3911101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  5  stereo Id 436371733 " fill="rgb(255,23,0)" points="943.6,1988.42 964.014,1988.42 964.014,1981.79 " />
<svg:polygon detid="436371989" count="1" value="117" id="3911102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  5  stereo Id 436371989 " fill="rgb(255,23,0)" points="943.6,1981.79 964.014,1981.79 964.014,1975.15 " />
<svg:polygon detid="436372245" count="1" value="117" id="3911103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  5  stereo Id 436372245 " fill="rgb(255,23,0)" points="943.6,1975.15 964.014,1975.15 964.014,1968.51 " />
<svg:polygon detid="436372501" count="1" value="117" id="3911104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  5  stereo Id 436372501 " fill="rgb(255,23,0)" points="943.6,1968.51 964.014,1968.51 964.014,1961.87 " />
<svg:polygon detid="436372757" count="1" value="117" id="3911105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  5  stereo Id 436372757 " fill="rgb(255,23,0)" points="943.6,1961.87 964.014,1961.87 964.014,1955.23 " />
<svg:polygon detid="436373013" count="1" value="117" id="3911106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  5  stereo Id 436373013 " fill="rgb(255,23,0)" points="943.6,1955.23 964.014,1955.23 964.014,1948.6 " />
<svg:polygon detid="436373269" count="1" value="117" id="3911107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  5  stereo Id 436373269 " fill="rgb(255,23,0)" points="943.6,1948.6 964.014,1948.6 964.014,1941.96 " />
<svg:polygon detid="436373525" count="1" value="117" id="3911108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  5  stereo Id 436373525 " fill="rgb(255,23,0)" points="943.6,1941.96 964.014,1941.96 964.014,1935.32 " />
<svg:polygon detid="436373781" count="1" value="117" id="3911109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  5  stereo Id 436373781 " fill="rgb(255,23,0)" points="943.6,1935.32 964.014,1935.32 964.014,1928.68 " />
<svg:polygon detid="436374037" count="1" value="117" id="3911110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  5  stereo Id 436374037 " fill="rgb(255,23,0)" points="943.6,1928.68 964.014,1928.68 964.014,1922.04 " />
<svg:polygon detid="436374293" count="1" value="117" id="3911111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  5  stereo Id 436374293 " fill="rgb(255,23,0)" points="943.6,1922.04 964.014,1922.04 964.014,1915.41 " />
<svg:polygon detid="436374549" count="1" value="117" id="3911112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  5  stereo Id 436374549 " fill="rgb(255,23,0)" points="943.6,1915.41 964.014,1915.41 964.014,1908.77 " />
<svg:polygon detid="436374805" count="1" value="117" id="3911113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  5  stereo Id 436374805 " fill="rgb(255,23,0)" points="943.6,1908.77 964.014,1908.77 964.014,1902.13 " />
<svg:polygon detid="436375061" count="1" value="117" id="3911114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  5  stereo Id 436375061 " fill="rgb(255,23,0)" points="943.6,1902.13 964.014,1902.13 964.014,1895.49 " />
<svg:polygon detid="436375317" count="1" value="117" id="3911115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  5  stereo Id 436375317 " fill="rgb(255,23,0)" points="943.6,1895.49 964.014,1895.49 964.014,1888.85 " />
<svg:polygon detid="436375573" count="1" value="117" id="3911116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  5  stereo Id 436375573 " fill="rgb(255,23,0)" points="943.6,1888.85 964.014,1888.85 964.014,1882.22 " />
<svg:polygon detid="436375829" count="1" value="117" id="3911117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  5  stereo Id 436375829 " fill="rgb(255,23,0)" points="943.6,1882.22 964.014,1882.22 964.014,1875.58 " />
<svg:polygon detid="436376085" count="1" value="117" id="3911118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  5  stereo Id 436376085 " fill="rgb(255,23,0)" points="943.6,1875.58 964.014,1875.58 964.014,1868.94 " />
<svg:polygon detid="436376341" count="1" value="117" id="3911119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  5  stereo Id 436376341 " fill="rgb(255,23,0)" points="943.6,1868.94 964.014,1868.94 964.014,1862.3 " />
<svg:polygon detid="436376597" count="1" value="117" id="3911120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  5  stereo Id 436376597 " fill="rgb(255,23,0)" points="943.6,1862.3 964.014,1862.3 964.014,1855.67 " />
<svg:polygon detid="436376853" count="1" value="117" id="3911121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  5  stereo Id 436376853 " fill="rgb(255,23,0)" points="943.6,1855.67 964.014,1855.67 964.014,1849.03 " />
<svg:polygon detid="436377109" count="1" value="117" id="3911122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  5  stereo Id 436377109 " fill="rgb(255,23,0)" points="943.6,1849.03 964.014,1849.03 964.014,1842.39 " />
<svg:polygon detid="436377365" count="1" value="117" id="3911123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  5  stereo Id 436377365 " fill="rgb(255,23,0)" points="943.6,1842.39 964.014,1842.39 964.014,1835.75 " />
<svg:polygon detid="436377621" count="1" value="117" id="3911124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  5  stereo Id 436377621 " fill="rgb(255,23,0)" points="943.6,1835.75 964.014,1835.75 964.014,1829.11 " />
<svg:polygon detid="436377877" count="1" value="117" id="3911125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  5  stereo Id 436377877 " fill="rgb(255,23,0)" points="943.6,1829.11 964.014,1829.11 964.014,1822.48 " />
<svg:polygon detid="436378133" count="1" value="117" id="3911126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  5  stereo Id 436378133 " fill="rgb(255,23,0)" points="943.6,1822.48 964.014,1822.48 964.014,1815.84 " />
<svg:polygon detid="436378389" count="1" value="117" id="3911127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  5  stereo Id 436378389 " fill="rgb(255,23,0)" points="943.6,1815.84 964.014,1815.84 964.014,1809.2 " />
<svg:polygon detid="436378645" count="1" value="117" id="3911128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  5  stereo Id 436378645 " fill="rgb(255,23,0)" points="943.6,1809.2 964.014,1809.2 964.014,1802.56 " />
<svg:polygon detid="436378901" count="1" value="117" id="3911129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  5  stereo Id 436378901 " fill="rgb(255,23,0)" points="943.6,1802.56 964.014,1802.56 964.014,1795.92 " />
<svg:polygon detid="436379157" count="1" value="117" id="3911130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  5  stereo Id 436379157 " fill="rgb(255,23,0)" points="943.6,1795.92 964.014,1795.92 964.014,1789.29 " />
<svg:polygon detid="436379413" count="1" value="117" id="3911131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  5  stereo Id 436379413 " fill="rgb(255,23,0)" points="943.6,1789.29 964.014,1789.29 964.014,1782.65 " />
<svg:polygon detid="436379669" count="1" value="117" id="3911132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  5  stereo Id 436379669 " fill="rgb(255,23,0)" points="943.6,1782.65 964.014,1782.65 964.014,1776.01 " />
<svg:polygon detid="436379925" count="1" value="117" id="3911133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  5  stereo Id 436379925 " fill="rgb(255,23,0)" points="943.6,1776.01 964.014,1776.01 964.014,1769.37 " />
<svg:polygon detid="436380181" count="1" value="117" id="3911134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  5  stereo Id 436380181 " fill="rgb(255,23,0)" points="943.6,1769.37 964.014,1769.37 964.014,1762.73 " />
<svg:polygon detid="436380437" count="1" value="117" id="3911135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  5  stereo Id 436380437 " fill="rgb(255,23,0)" points="943.6,1762.73 964.014,1762.73 964.014,1756.1 " />
<svg:polygon detid="436380693" count="1" value="117" id="3911136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  5  stereo Id 436380693 " fill="rgb(255,23,0)" points="943.6,1756.1 964.014,1756.1 964.014,1749.46 " />
<svg:polygon detid="436380949" count="1" value="117" id="3911137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  5  stereo Id 436380949 " fill="rgb(255,23,0)" points="943.6,1749.46 964.014,1749.46 964.014,1742.82 " />
<svg:polygon detid="436381205" count="1" value="117" id="3911138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  5  stereo Id 436381205 " fill="rgb(255,23,0)" points="943.6,1742.82 964.014,1742.82 964.014,1736.18 " />
<svg:polygon detid="436381461" count="1" value="117" id="3911139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  5  stereo Id 436381461 " fill="rgb(255,23,0)" points="943.6,1736.18 964.014,1736.18 964.014,1729.54 " />
<svg:polygon detid="436381717" count="1" value="117" id="3911140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  5  stereo Id 436381717 " fill="rgb(255,23,0)" points="943.6,1729.54 964.014,1729.54 964.014,1722.91 " />
<svg:polygon detid="436381973" count="1" value="117" id="3911141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  5  stereo Id 436381973 " fill="rgb(255,23,0)" points="943.6,1722.91 964.014,1722.91 964.014,1716.27 " />
<svg:polygon detid="436382229" count="1" value="117" id="3911142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  5  stereo Id 436382229 " fill="rgb(255,23,0)" points="943.6,1716.27 964.014,1716.27 964.014,1709.63 " />
<svg:polygon detid="436382485" count="1" value="117" id="3911143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  5  stereo Id 436382485 " fill="rgb(255,23,0)" points="943.6,1709.63 964.014,1709.63 964.014,1702.99 " />
<svg:polygon detid="436382741" count="1" value="117" id="3911144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  5  stereo Id 436382741 " fill="rgb(255,23,0)" points="943.6,1702.99 964.014,1702.99 964.014,1696.36 " />
<svg:polygon detid="436382997" count="1" value="117" id="3911145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  5  stereo Id 436382997 " fill="rgb(255,23,0)" points="943.6,1696.36 964.014,1696.36 964.014,1689.72 " />
<svg:polygon detid="436383253" count="1" value="117" id="3911146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  5  stereo Id 436383253 " fill="rgb(255,23,0)" points="943.6,1689.72 964.014,1689.72 964.014,1683.08 " />
<svg:polygon detid="436383509" count="1" value="117" id="3911147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  5  stereo Id 436383509 " fill="rgb(255,23,0)" points="943.6,1683.08 964.014,1683.08 964.014,1676.44 " />
<svg:polygon detid="436383765" count="1" value="117" id="3911148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  5  stereo Id 436383765 " fill="rgb(255,23,0)" points="943.6,1676.44 964.014,1676.44 964.014,1669.8 " />
<svg:polygon detid="436371738" count="1" value="117" id="3912001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  6   Id 436371738 " fill="rgb(255,23,0)" points="986.981,1981.79 966.566,1981.79 966.566,1988.42 " />
<svg:polygon detid="436371994" count="1" value="117" id="3912002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  6   Id 436371994 " fill="rgb(255,23,0)" points="986.981,1975.15 966.566,1975.15 966.566,1981.79 " />
<svg:polygon detid="436372250" count="1" value="117" id="3912003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  6   Id 436372250 " fill="rgb(255,23,0)" points="986.981,1968.51 966.566,1968.51 966.566,1975.15 " />
<svg:polygon detid="436372506" count="1" value="117" id="3912004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  6   Id 436372506 " fill="rgb(255,23,0)" points="986.981,1961.87 966.566,1961.87 966.566,1968.51 " />
<svg:polygon detid="436372762" count="1" value="117" id="3912005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  6   Id 436372762 " fill="rgb(255,23,0)" points="986.981,1955.23 966.566,1955.23 966.566,1961.87 " />
<svg:polygon detid="436373018" count="1" value="117" id="3912006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  6   Id 436373018 " fill="rgb(255,23,0)" points="986.981,1948.6 966.566,1948.6 966.566,1955.23 " />
<svg:polygon detid="436373274" count="1" value="117" id="3912007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  6   Id 436373274 " fill="rgb(255,23,0)" points="986.981,1941.96 966.566,1941.96 966.566,1948.6 " />
<svg:polygon detid="436373530" count="1" value="117" id="3912008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  6   Id 436373530 " fill="rgb(255,23,0)" points="986.981,1935.32 966.566,1935.32 966.566,1941.96 " />
<svg:polygon detid="436373786" count="1" value="117" id="3912009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  6   Id 436373786 " fill="rgb(255,23,0)" points="986.981,1928.68 966.566,1928.68 966.566,1935.32 " />
<svg:polygon detid="436374042" count="1" value="117" id="3912010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  6   Id 436374042 " fill="rgb(255,23,0)" points="986.981,1922.04 966.566,1922.04 966.566,1928.68 " />
<svg:polygon detid="436374298" count="1" value="117" id="3912011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  6   Id 436374298 " fill="rgb(255,23,0)" points="986.981,1915.41 966.566,1915.41 966.566,1922.04 " />
<svg:polygon detid="436374554" count="1" value="117" id="3912012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  6   Id 436374554 " fill="rgb(255,23,0)" points="986.981,1908.77 966.566,1908.77 966.566,1915.41 " />
<svg:polygon detid="436374810" count="1" value="117" id="3912013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  6   Id 436374810 " fill="rgb(255,23,0)" points="986.981,1902.13 966.566,1902.13 966.566,1908.77 " />
<svg:polygon detid="436375066" count="1" value="117" id="3912014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  6   Id 436375066 " fill="rgb(255,23,0)" points="986.981,1895.49 966.566,1895.49 966.566,1902.13 " />
<svg:polygon detid="436375322" count="1" value="117" id="3912015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  6   Id 436375322 " fill="rgb(255,23,0)" points="986.981,1888.85 966.566,1888.85 966.566,1895.49 " />
<svg:polygon detid="436375578" count="1" value="117" id="3912016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  6   Id 436375578 " fill="rgb(255,23,0)" points="986.981,1882.22 966.566,1882.22 966.566,1888.85 " />
<svg:polygon detid="436375834" count="1" value="117" id="3912017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  6   Id 436375834 " fill="rgb(255,23,0)" points="986.981,1875.58 966.566,1875.58 966.566,1882.22 " />
<svg:polygon detid="436376090" count="1" value="117" id="3912018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  6   Id 436376090 " fill="rgb(255,23,0)" points="986.981,1868.94 966.566,1868.94 966.566,1875.58 " />
<svg:polygon detid="436376346" count="1" value="117" id="3912019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  6   Id 436376346 " fill="rgb(255,23,0)" points="986.981,1862.3 966.566,1862.3 966.566,1868.94 " />
<svg:polygon detid="436376602" count="1" value="117" id="3912020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  6   Id 436376602 " fill="rgb(255,23,0)" points="986.981,1855.67 966.566,1855.67 966.566,1862.3 " />
<svg:polygon detid="436376858" count="1" value="117" id="3912021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  6   Id 436376858 " fill="rgb(255,23,0)" points="986.981,1849.03 966.566,1849.03 966.566,1855.67 " />
<svg:polygon detid="436377114" count="1" value="117" id="3912022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  6   Id 436377114 " fill="rgb(255,23,0)" points="986.981,1842.39 966.566,1842.39 966.566,1849.03 " />
<svg:polygon detid="436377370" count="1" value="117" id="3912023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  6   Id 436377370 " fill="rgb(255,23,0)" points="986.981,1835.75 966.566,1835.75 966.566,1842.39 " />
<svg:polygon detid="436377626" count="1" value="117" id="3912024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  6   Id 436377626 " fill="rgb(255,23,0)" points="986.981,1829.11 966.566,1829.11 966.566,1835.75 " />
<svg:polygon detid="436377882" count="1" value="117" id="3912025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  6   Id 436377882 " fill="rgb(255,23,0)" points="986.981,1822.48 966.566,1822.48 966.566,1829.11 " />
<svg:polygon detid="436378138" count="1" value="117" id="3912026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  6   Id 436378138 " fill="rgb(255,23,0)" points="986.981,1815.84 966.566,1815.84 966.566,1822.48 " />
<svg:polygon detid="436378394" count="1" value="117" id="3912027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  6   Id 436378394 " fill="rgb(255,23,0)" points="986.981,1809.2 966.566,1809.2 966.566,1815.84 " />
<svg:polygon detid="436378650" count="1" value="117" id="3912028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  6   Id 436378650 " fill="rgb(255,23,0)" points="986.981,1802.56 966.566,1802.56 966.566,1809.2 " />
<svg:polygon detid="436378906" count="1" value="117" id="3912029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  6   Id 436378906 " fill="rgb(255,23,0)" points="986.981,1795.92 966.566,1795.92 966.566,1802.56 " />
<svg:polygon detid="436379162" count="1" value="117" id="3912030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  6   Id 436379162 " fill="rgb(255,23,0)" points="986.981,1789.29 966.566,1789.29 966.566,1795.92 " />
<svg:polygon detid="436379418" count="1" value="117" id="3912031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  6   Id 436379418 " fill="rgb(255,23,0)" points="986.981,1782.65 966.566,1782.65 966.566,1789.29 " />
<svg:polygon detid="436379674" count="1" value="117" id="3912032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  6   Id 436379674 " fill="rgb(255,23,0)" points="986.981,1776.01 966.566,1776.01 966.566,1782.65 " />
<svg:polygon detid="436379930" count="1" value="117" id="3912033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  6   Id 436379930 " fill="rgb(255,23,0)" points="986.981,1769.37 966.566,1769.37 966.566,1776.01 " />
<svg:polygon detid="436380186" count="1" value="117" id="3912034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  6   Id 436380186 " fill="rgb(255,23,0)" points="986.981,1762.73 966.566,1762.73 966.566,1769.37 " />
<svg:polygon detid="436380442" count="1" value="117" id="3912035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  6   Id 436380442 " fill="rgb(255,23,0)" points="986.981,1756.1 966.566,1756.1 966.566,1762.73 " />
<svg:polygon detid="436380698" count="1" value="117" id="3912036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  6   Id 436380698 " fill="rgb(255,23,0)" points="986.981,1749.46 966.566,1749.46 966.566,1756.1 " />
<svg:polygon detid="436380954" count="1" value="117" id="3912037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  6   Id 436380954 " fill="rgb(255,23,0)" points="986.981,1742.82 966.566,1742.82 966.566,1749.46 " />
<svg:polygon detid="436381210" count="1" value="117" id="3912038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  6   Id 436381210 " fill="rgb(255,23,0)" points="986.981,1736.18 966.566,1736.18 966.566,1742.82 " />
<svg:polygon detid="436381466" count="1" value="117" id="3912039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  6   Id 436381466 " fill="rgb(255,23,0)" points="986.981,1729.54 966.566,1729.54 966.566,1736.18 " />
<svg:polygon detid="436381722" count="1" value="117" id="3912040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  6   Id 436381722 " fill="rgb(255,23,0)" points="986.981,1722.91 966.566,1722.91 966.566,1729.54 " />
<svg:polygon detid="436381978" count="1" value="117" id="3912041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  6   Id 436381978 " fill="rgb(255,23,0)" points="986.981,1716.27 966.566,1716.27 966.566,1722.91 " />
<svg:polygon detid="436382234" count="1" value="117" id="3912042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  6   Id 436382234 " fill="rgb(255,23,0)" points="986.981,1709.63 966.566,1709.63 966.566,1716.27 " />
<svg:polygon detid="436382490" count="1" value="117" id="3912043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  6   Id 436382490 " fill="rgb(255,23,0)" points="986.981,1702.99 966.566,1702.99 966.566,1709.63 " />
<svg:polygon detid="436382746" count="1" value="117" id="3912044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  6   Id 436382746 " fill="rgb(255,23,0)" points="986.981,1696.36 966.566,1696.36 966.566,1702.99 " />
<svg:polygon detid="436383002" count="1" value="117" id="3912045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  6   Id 436383002 " fill="rgb(255,23,0)" points="986.981,1689.72 966.566,1689.72 966.566,1696.36 " />
<svg:polygon detid="436383258" count="1" value="117" id="3912046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  6   Id 436383258 " fill="rgb(255,23,0)" points="986.981,1683.08 966.566,1683.08 966.566,1689.72 " />
<svg:polygon detid="436383514" count="1" value="117" id="3912047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  6   Id 436383514 " fill="rgb(255,23,0)" points="986.981,1676.44 966.566,1676.44 966.566,1683.08 " />
<svg:polygon detid="436383770" count="1" value="117" id="3912048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  6   Id 436383770 " fill="rgb(255,23,0)" points="986.981,1669.8 966.566,1669.8 966.566,1676.44 " />
<svg:polygon detid="436371737" count="1" value="117" id="3912101" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 1 pos   module  6  stereo Id 436371737 " fill="rgb(255,23,0)" points="966.566,1988.42 986.981,1988.42 986.981,1981.79 " />
<svg:polygon detid="436371993" count="1" value="117" id="3912102" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 2 pos   module  6  stereo Id 436371993 " fill="rgb(255,23,0)" points="966.566,1981.79 986.981,1981.79 986.981,1975.15 " />
<svg:polygon detid="436372249" count="1" value="117" id="3912103" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 3 pos   module  6  stereo Id 436372249 " fill="rgb(255,23,0)" points="966.566,1975.15 986.981,1975.15 986.981,1968.51 " />
<svg:polygon detid="436372505" count="1" value="117" id="3912104" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 4 pos   module  6  stereo Id 436372505 " fill="rgb(255,23,0)" points="966.566,1968.51 986.981,1968.51 986.981,1961.87 " />
<svg:polygon detid="436372761" count="1" value="117" id="3912105" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 5 pos   module  6  stereo Id 436372761 " fill="rgb(255,23,0)" points="966.566,1961.87 986.981,1961.87 986.981,1955.23 " />
<svg:polygon detid="436373017" count="1" value="117" id="3912106" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 6 pos   module  6  stereo Id 436373017 " fill="rgb(255,23,0)" points="966.566,1955.23 986.981,1955.23 986.981,1948.6 " />
<svg:polygon detid="436373273" count="1" value="117" id="3912107" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 7 pos   module  6  stereo Id 436373273 " fill="rgb(255,23,0)" points="966.566,1948.6 986.981,1948.6 986.981,1941.96 " />
<svg:polygon detid="436373529" count="1" value="117" id="3912108" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 8 pos   module  6  stereo Id 436373529 " fill="rgb(255,23,0)" points="966.566,1941.96 986.981,1941.96 986.981,1935.32 " />
<svg:polygon detid="436373785" count="1" value="117" id="3912109" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 9 pos   module  6  stereo Id 436373785 " fill="rgb(255,23,0)" points="966.566,1935.32 986.981,1935.32 986.981,1928.68 " />
<svg:polygon detid="436374041" count="1" value="117" id="3912110" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 10 pos   module  6  stereo Id 436374041 " fill="rgb(255,23,0)" points="966.566,1928.68 986.981,1928.68 986.981,1922.04 " />
<svg:polygon detid="436374297" count="1" value="117" id="3912111" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 11 pos   module  6  stereo Id 436374297 " fill="rgb(255,23,0)" points="966.566,1922.04 986.981,1922.04 986.981,1915.41 " />
<svg:polygon detid="436374553" count="1" value="117" id="3912112" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 12 pos   module  6  stereo Id 436374553 " fill="rgb(255,23,0)" points="966.566,1915.41 986.981,1915.41 986.981,1908.77 " />
<svg:polygon detid="436374809" count="1" value="117" id="3912113" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 13 pos   module  6  stereo Id 436374809 " fill="rgb(255,23,0)" points="966.566,1908.77 986.981,1908.77 986.981,1902.13 " />
<svg:polygon detid="436375065" count="1" value="117" id="3912114" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 14 pos   module  6  stereo Id 436375065 " fill="rgb(255,23,0)" points="966.566,1902.13 986.981,1902.13 986.981,1895.49 " />
<svg:polygon detid="436375321" count="1" value="117" id="3912115" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 15 pos   module  6  stereo Id 436375321 " fill="rgb(255,23,0)" points="966.566,1895.49 986.981,1895.49 986.981,1888.85 " />
<svg:polygon detid="436375577" count="1" value="117" id="3912116" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 16 pos   module  6  stereo Id 436375577 " fill="rgb(255,23,0)" points="966.566,1888.85 986.981,1888.85 986.981,1882.22 " />
<svg:polygon detid="436375833" count="1" value="117" id="3912117" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 17 pos   module  6  stereo Id 436375833 " fill="rgb(255,23,0)" points="966.566,1882.22 986.981,1882.22 986.981,1875.58 " />
<svg:polygon detid="436376089" count="1" value="117" id="3912118" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 18 pos   module  6  stereo Id 436376089 " fill="rgb(255,23,0)" points="966.566,1875.58 986.981,1875.58 986.981,1868.94 " />
<svg:polygon detid="436376345" count="1" value="117" id="3912119" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 19 pos   module  6  stereo Id 436376345 " fill="rgb(255,23,0)" points="966.566,1868.94 986.981,1868.94 986.981,1862.3 " />
<svg:polygon detid="436376601" count="1" value="117" id="3912120" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 20 pos   module  6  stereo Id 436376601 " fill="rgb(255,23,0)" points="966.566,1862.3 986.981,1862.3 986.981,1855.67 " />
<svg:polygon detid="436376857" count="1" value="117" id="3912121" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 21 pos   module  6  stereo Id 436376857 " fill="rgb(255,23,0)" points="966.566,1855.67 986.981,1855.67 986.981,1849.03 " />
<svg:polygon detid="436377113" count="1" value="117" id="3912122" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 22 pos   module  6  stereo Id 436377113 " fill="rgb(255,23,0)" points="966.566,1849.03 986.981,1849.03 986.981,1842.39 " />
<svg:polygon detid="436377369" count="1" value="117" id="3912123" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 23 pos   module  6  stereo Id 436377369 " fill="rgb(255,23,0)" points="966.566,1842.39 986.981,1842.39 986.981,1835.75 " />
<svg:polygon detid="436377625" count="1" value="117" id="3912124" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 24 pos   module  6  stereo Id 436377625 " fill="rgb(255,23,0)" points="966.566,1835.75 986.981,1835.75 986.981,1829.11 " />
<svg:polygon detid="436377881" count="1" value="117" id="3912125" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 25 pos   module  6  stereo Id 436377881 " fill="rgb(255,23,0)" points="966.566,1829.11 986.981,1829.11 986.981,1822.48 " />
<svg:polygon detid="436378137" count="1" value="117" id="3912126" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 26 pos   module  6  stereo Id 436378137 " fill="rgb(255,23,0)" points="966.566,1822.48 986.981,1822.48 986.981,1815.84 " />
<svg:polygon detid="436378393" count="1" value="117" id="3912127" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 27 pos   module  6  stereo Id 436378393 " fill="rgb(255,23,0)" points="966.566,1815.84 986.981,1815.84 986.981,1809.2 " />
<svg:polygon detid="436378649" count="1" value="117" id="3912128" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 28 pos   module  6  stereo Id 436378649 " fill="rgb(255,23,0)" points="966.566,1809.2 986.981,1809.2 986.981,1802.56 " />
<svg:polygon detid="436378905" count="1" value="117" id="3912129" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 29 pos   module  6  stereo Id 436378905 " fill="rgb(255,23,0)" points="966.566,1802.56 986.981,1802.56 986.981,1795.92 " />
<svg:polygon detid="436379161" count="1" value="117" id="3912130" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 30 pos   module  6  stereo Id 436379161 " fill="rgb(255,23,0)" points="966.566,1795.92 986.981,1795.92 986.981,1789.29 " />
<svg:polygon detid="436379417" count="1" value="117" id="3912131" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 31 pos   module  6  stereo Id 436379417 " fill="rgb(255,23,0)" points="966.566,1789.29 986.981,1789.29 986.981,1782.65 " />
<svg:polygon detid="436379673" count="1" value="117" id="3912132" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 32 pos   module  6  stereo Id 436379673 " fill="rgb(255,23,0)" points="966.566,1782.65 986.981,1782.65 986.981,1776.01 " />
<svg:polygon detid="436379929" count="1" value="117" id="3912133" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 33 pos   module  6  stereo Id 436379929 " fill="rgb(255,23,0)" points="966.566,1776.01 986.981,1776.01 986.981,1769.37 " />
<svg:polygon detid="436380185" count="1" value="117" id="3912134" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 34 pos   module  6  stereo Id 436380185 " fill="rgb(255,23,0)" points="966.566,1769.37 986.981,1769.37 986.981,1762.73 " />
<svg:polygon detid="436380441" count="1" value="117" id="3912135" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 35 pos   module  6  stereo Id 436380441 " fill="rgb(255,23,0)" points="966.566,1762.73 986.981,1762.73 986.981,1756.1 " />
<svg:polygon detid="436380697" count="1" value="117" id="3912136" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 36 pos   module  6  stereo Id 436380697 " fill="rgb(255,23,0)" points="966.566,1756.1 986.981,1756.1 986.981,1749.46 " />
<svg:polygon detid="436380953" count="1" value="117" id="3912137" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 37 pos   module  6  stereo Id 436380953 " fill="rgb(255,23,0)" points="966.566,1749.46 986.981,1749.46 986.981,1742.82 " />
<svg:polygon detid="436381209" count="1" value="117" id="3912138" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 38 pos   module  6  stereo Id 436381209 " fill="rgb(255,23,0)" points="966.566,1742.82 986.981,1742.82 986.981,1736.18 " />
<svg:polygon detid="436381465" count="1" value="117" id="3912139" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 39 pos   module  6  stereo Id 436381465 " fill="rgb(255,23,0)" points="966.566,1736.18 986.981,1736.18 986.981,1729.54 " />
<svg:polygon detid="436381721" count="1" value="117" id="3912140" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 40 pos   module  6  stereo Id 436381721 " fill="rgb(255,23,0)" points="966.566,1729.54 986.981,1729.54 986.981,1722.91 " />
<svg:polygon detid="436381977" count="1" value="117" id="3912141" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 41 pos   module  6  stereo Id 436381977 " fill="rgb(255,23,0)" points="966.566,1722.91 986.981,1722.91 986.981,1716.27 " />
<svg:polygon detid="436382233" count="1" value="117" id="3912142" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 42 pos   module  6  stereo Id 436382233 " fill="rgb(255,23,0)" points="966.566,1716.27 986.981,1716.27 986.981,1709.63 " />
<svg:polygon detid="436382489" count="1" value="117" id="3912143" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 43 pos   module  6  stereo Id 436382489 " fill="rgb(255,23,0)" points="966.566,1709.63 986.981,1709.63 986.981,1702.99 " />
<svg:polygon detid="436382745" count="1" value="117" id="3912144" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 44 pos   module  6  stereo Id 436382745 " fill="rgb(255,23,0)" points="966.566,1702.99 986.981,1702.99 986.981,1696.36 " />
<svg:polygon detid="436383001" count="1" value="117" id="3912145" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 45 pos   module  6  stereo Id 436383001 " fill="rgb(255,23,0)" points="966.566,1696.36 986.981,1696.36 986.981,1689.72 " />
<svg:polygon detid="436383257" count="1" value="117" id="3912146" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 46 pos   module  6  stereo Id 436383257 " fill="rgb(255,23,0)" points="966.566,1689.72 986.981,1689.72 986.981,1683.08 " />
<svg:polygon detid="436383513" count="1" value="117" id="3912147" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 47 pos   module  6  stereo Id 436383513 " fill="rgb(255,23,0)" points="966.566,1683.08 986.981,1683.08 986.981,1676.44 " />
<svg:polygon detid="436383769" count="1" value="117" id="3912148" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 2 rod 48 pos   module  6  stereo Id 436383769 " fill="rgb(255,23,0)" points="966.566,1676.44 986.981,1676.44 986.981,1669.8 " />
<svg:polygon detid="436404484" count="1" value="120" id="4001001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 neg   module  1   Id 436404484 " fill="rgb(255,17,0)" points="373.934,2389.15 394.349,2389.15 394.349,2383.24 373.934,2383.24 " />
<svg:polygon detid="436404740" count="1" value="120" id="4001002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 neg   module  1   Id 436404740 " fill="rgb(255,17,0)" points="373.934,2383.24 394.349,2383.24 394.349,2377.33 373.934,2377.33 " />
<svg:polygon detid="436404996" count="1" value="120" id="4001003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 neg   module  1   Id 436404996 " fill="rgb(255,17,0)" points="373.934,2377.33 394.349,2377.33 394.349,2371.42 373.934,2371.42 " />
<svg:polygon detid="436405252" count="1" value="120" id="4001004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 neg   module  1   Id 436405252 " fill="rgb(255,17,0)" points="373.934,2371.42 394.349,2371.42 394.349,2365.51 373.934,2365.51 " />
<svg:polygon detid="436405508" count="1" value="120" id="4001005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 neg   module  1   Id 436405508 " fill="rgb(255,17,0)" points="373.934,2365.51 394.349,2365.51 394.349,2359.6 373.934,2359.6 " />
<svg:polygon detid="436405764" count="1" value="120" id="4001006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 neg   module  1   Id 436405764 " fill="rgb(255,17,0)" points="373.934,2359.6 394.349,2359.6 394.349,2353.69 373.934,2353.69 " />
<svg:polygon detid="436406020" count="1" value="120" id="4001007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 neg   module  1   Id 436406020 " fill="rgb(255,17,0)" points="373.934,2353.69 394.349,2353.69 394.349,2347.78 373.934,2347.78 " />
<svg:polygon detid="436406276" count="1" value="120" id="4001008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 neg   module  1   Id 436406276 " fill="rgb(255,17,0)" points="373.934,2347.78 394.349,2347.78 394.349,2341.87 373.934,2341.87 " />
<svg:polygon detid="436406532" count="1" value="120" id="4001009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 neg   module  1   Id 436406532 " fill="rgb(255,17,0)" points="373.934,2341.87 394.349,2341.87 394.349,2335.96 373.934,2335.96 " />
<svg:polygon detid="436406788" count="1" value="120" id="4001010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 neg   module  1   Id 436406788 " fill="rgb(255,17,0)" points="373.934,2335.96 394.349,2335.96 394.349,2330.05 373.934,2330.05 " />
<svg:polygon detid="436407044" count="1" value="120" id="4001011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 neg   module  1   Id 436407044 " fill="rgb(255,17,0)" points="373.934,2330.05 394.349,2330.05 394.349,2324.14 373.934,2324.14 " />
<svg:polygon detid="436407300" count="1" value="120" id="4001012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 neg   module  1   Id 436407300 " fill="rgb(255,17,0)" points="373.934,2324.14 394.349,2324.14 394.349,2318.23 373.934,2318.23 " />
<svg:polygon detid="436407556" count="1" value="120" id="4001013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 neg   module  1   Id 436407556 " fill="rgb(255,17,0)" points="373.934,2318.23 394.349,2318.23 394.349,2312.32 373.934,2312.32 " />
<svg:polygon detid="436407812" count="1" value="120" id="4001014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 neg   module  1   Id 436407812 " fill="rgb(255,17,0)" points="373.934,2312.32 394.349,2312.32 394.349,2306.42 373.934,2306.42 " />
<svg:polygon detid="436408068" count="1" value="120" id="4001015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 neg   module  1   Id 436408068 " fill="rgb(255,17,0)" points="373.934,2306.42 394.349,2306.42 394.349,2300.51 373.934,2300.51 " />
<svg:polygon detid="436408324" count="1" value="120" id="4001016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 neg   module  1   Id 436408324 " fill="rgb(255,17,0)" points="373.934,2300.51 394.349,2300.51 394.349,2294.6 373.934,2294.6 " />
<svg:polygon detid="436408580" count="1" value="120" id="4001017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 neg   module  1   Id 436408580 " fill="rgb(255,17,0)" points="373.934,2294.6 394.349,2294.6 394.349,2288.69 373.934,2288.69 " />
<svg:polygon detid="436408836" count="1" value="120" id="4001018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 neg   module  1   Id 436408836 " fill="rgb(255,17,0)" points="373.934,2288.69 394.349,2288.69 394.349,2282.78 373.934,2282.78 " />
<svg:polygon detid="436409092" count="1" value="120" id="4001019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 neg   module  1   Id 436409092 " fill="rgb(255,17,0)" points="373.934,2282.78 394.349,2282.78 394.349,2276.87 373.934,2276.87 " />
<svg:polygon detid="436409348" count="1" value="120" id="4001020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 neg   module  1   Id 436409348 " fill="rgb(255,17,0)" points="373.934,2276.87 394.349,2276.87 394.349,2270.96 373.934,2270.96 " />
<svg:polygon detid="436409604" count="1" value="120" id="4001021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 neg   module  1   Id 436409604 " fill="rgb(255,17,0)" points="373.934,2270.96 394.349,2270.96 394.349,2265.05 373.934,2265.05 " />
<svg:polygon detid="436409860" count="1" value="120" id="4001022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 neg   module  1   Id 436409860 " fill="rgb(255,17,0)" points="373.934,2265.05 394.349,2265.05 394.349,2259.14 373.934,2259.14 " />
<svg:polygon detid="436410116" count="1" value="120" id="4001023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 neg   module  1   Id 436410116 " fill="rgb(255,17,0)" points="373.934,2259.14 394.349,2259.14 394.349,2253.23 373.934,2253.23 " />
<svg:polygon detid="436410372" count="1" value="120" id="4001024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 neg   module  1   Id 436410372 " fill="rgb(255,17,0)" points="373.934,2253.23 394.349,2253.23 394.349,2247.32 373.934,2247.32 " />
<svg:polygon detid="436410628" count="1" value="120" id="4001025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 neg   module  1   Id 436410628 " fill="rgb(255,17,0)" points="373.934,2247.32 394.349,2247.32 394.349,2241.41 373.934,2241.41 " />
<svg:polygon detid="436410884" count="1" value="120" id="4001026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 neg   module  1   Id 436410884 " fill="rgb(255,17,0)" points="373.934,2241.41 394.349,2241.41 394.349,2235.5 373.934,2235.5 " />
<svg:polygon detid="436411140" count="1" value="120" id="4001027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 neg   module  1   Id 436411140 " fill="rgb(255,17,0)" points="373.934,2235.5 394.349,2235.5 394.349,2229.59 373.934,2229.59 " />
<svg:polygon detid="436411396" count="1" value="120" id="4001028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 neg   module  1   Id 436411396 " fill="rgb(255,17,0)" points="373.934,2229.59 394.349,2229.59 394.349,2223.68 373.934,2223.68 " />
<svg:polygon detid="436411652" count="1" value="120" id="4001029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 neg   module  1   Id 436411652 " fill="rgb(255,17,0)" points="373.934,2223.68 394.349,2223.68 394.349,2217.77 373.934,2217.77 " />
<svg:polygon detid="436411908" count="1" value="120" id="4001030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 neg   module  1   Id 436411908 " fill="rgb(255,17,0)" points="373.934,2217.77 394.349,2217.77 394.349,2211.86 373.934,2211.86 " />
<svg:polygon detid="436412164" count="1" value="120" id="4001031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 neg   module  1   Id 436412164 " fill="rgb(255,17,0)" points="373.934,2211.86 394.349,2211.86 394.349,2205.95 373.934,2205.95 " />
<svg:polygon detid="436412420" count="1" value="120" id="4001032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 neg   module  1   Id 436412420 " fill="rgb(255,17,0)" points="373.934,2205.95 394.349,2205.95 394.349,2200.04 373.934,2200.04 " />
<svg:polygon detid="436412676" count="1" value="120" id="4001033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 neg   module  1   Id 436412676 " fill="rgb(255,17,0)" points="373.934,2200.04 394.349,2200.04 394.349,2194.13 373.934,2194.13 " />
<svg:polygon detid="436412932" count="1" value="120" id="4001034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 neg   module  1   Id 436412932 " fill="rgb(255,17,0)" points="373.934,2194.13 394.349,2194.13 394.349,2188.22 373.934,2188.22 " />
<svg:polygon detid="436413188" count="1" value="120" id="4001035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 neg   module  1   Id 436413188 " fill="rgb(255,17,0)" points="373.934,2188.22 394.349,2188.22 394.349,2182.31 373.934,2182.31 " />
<svg:polygon detid="436413444" count="1" value="120" id="4001036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 neg   module  1   Id 436413444 " fill="rgb(255,17,0)" points="373.934,2182.31 394.349,2182.31 394.349,2176.4 373.934,2176.4 " />
<svg:polygon detid="436413700" count="1" value="120" id="4001037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 neg   module  1   Id 436413700 " fill="rgb(255,17,0)" points="373.934,2176.4 394.349,2176.4 394.349,2170.49 373.934,2170.49 " />
<svg:polygon detid="436413956" count="1" value="120" id="4001038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 neg   module  1   Id 436413956 " fill="rgb(255,17,0)" points="373.934,2170.49 394.349,2170.49 394.349,2164.58 373.934,2164.58 " />
<svg:polygon detid="436414212" count="1" value="120" id="4001039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 neg   module  1   Id 436414212 " fill="rgb(255,17,0)" points="373.934,2164.58 394.349,2164.58 394.349,2158.67 373.934,2158.67 " />
<svg:polygon detid="436414468" count="1" value="120" id="4001040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 neg   module  1   Id 436414468 " fill="rgb(255,17,0)" points="373.934,2158.67 394.349,2158.67 394.349,2152.76 373.934,2152.76 " />
<svg:polygon detid="436414724" count="1" value="120" id="4001041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 neg   module  1   Id 436414724 " fill="rgb(255,17,0)" points="373.934,2152.76 394.349,2152.76 394.349,2146.85 373.934,2146.85 " />
<svg:polygon detid="436414980" count="1" value="120" id="4001042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 neg   module  1   Id 436414980 " fill="rgb(255,17,0)" points="373.934,2146.85 394.349,2146.85 394.349,2140.94 373.934,2140.94 " />
<svg:polygon detid="436415236" count="1" value="120" id="4001043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 neg   module  1   Id 436415236 " fill="rgb(255,17,0)" points="373.934,2140.94 394.349,2140.94 394.349,2135.03 373.934,2135.03 " />
<svg:polygon detid="436415492" count="1" value="120" id="4001044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 neg   module  1   Id 436415492 " fill="rgb(255,17,0)" points="373.934,2135.03 394.349,2135.03 394.349,2129.12 373.934,2129.12 " />
<svg:polygon detid="436415748" count="1" value="120" id="4001045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 neg   module  1   Id 436415748 " fill="rgb(255,17,0)" points="373.934,2129.12 394.349,2129.12 394.349,2123.21 373.934,2123.21 " />
<svg:polygon detid="436416004" count="1" value="120" id="4001046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 neg   module  1   Id 436416004 " fill="rgb(255,17,0)" points="373.934,2123.21 394.349,2123.21 394.349,2117.3 373.934,2117.3 " />
<svg:polygon detid="436416260" count="1" value="120" id="4001047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 neg   module  1   Id 436416260 " fill="rgb(255,17,0)" points="373.934,2117.3 394.349,2117.3 394.349,2111.39 373.934,2111.39 " />
<svg:polygon detid="436416516" count="1" value="120" id="4001048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 neg   module  1   Id 436416516 " fill="rgb(255,17,0)" points="373.934,2111.39 394.349,2111.39 394.349,2105.48 373.934,2105.48 " />
<svg:polygon detid="436416772" count="1" value="120" id="4001049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 neg   module  1   Id 436416772 " fill="rgb(255,17,0)" points="373.934,2105.48 394.349,2105.48 394.349,2099.57 373.934,2099.57 " />
<svg:polygon detid="436417028" count="1" value="120" id="4001050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 neg   module  1   Id 436417028 " fill="rgb(255,17,0)" points="373.934,2099.57 394.349,2099.57 394.349,2093.66 373.934,2093.66 " />
<svg:polygon detid="436417284" count="1" value="120" id="4001051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 neg   module  1   Id 436417284 " fill="rgb(255,17,0)" points="373.934,2093.66 394.349,2093.66 394.349,2087.75 373.934,2087.75 " />
<svg:polygon detid="436417540" count="1" value="120" id="4001052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 neg   module  1   Id 436417540 " fill="rgb(255,17,0)" points="373.934,2087.75 394.349,2087.75 394.349,2081.84 373.934,2081.84 " />
<svg:polygon detid="436417796" count="1" value="120" id="4001053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 neg   module  1   Id 436417796 " fill="rgb(255,17,0)" points="373.934,2081.84 394.349,2081.84 394.349,2075.93 373.934,2075.93 " />
<svg:polygon detid="436418052" count="1" value="120" id="4001054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 neg   module  1   Id 436418052 " fill="rgb(255,17,0)" points="373.934,2075.93 394.349,2075.93 394.349,2070.02 373.934,2070.02 " />
<svg:polygon detid="436404488" count="1" value="120" id="4002001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 neg   module  2   Id 436404488 " fill="rgb(255,17,0)" points="396.901,2389.15 417.316,2389.15 417.316,2383.24 396.901,2383.24 " />
<svg:polygon detid="436404744" count="1" value="120" id="4002002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 neg   module  2   Id 436404744 " fill="rgb(255,17,0)" points="396.901,2383.24 417.316,2383.24 417.316,2377.33 396.901,2377.33 " />
<svg:polygon detid="436405000" count="1" value="120" id="4002003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 neg   module  2   Id 436405000 " fill="rgb(255,17,0)" points="396.901,2377.33 417.316,2377.33 417.316,2371.42 396.901,2371.42 " />
<svg:polygon detid="436405256" count="1" value="120" id="4002004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 neg   module  2   Id 436405256 " fill="rgb(255,17,0)" points="396.901,2371.42 417.316,2371.42 417.316,2365.51 396.901,2365.51 " />
<svg:polygon detid="436405512" count="1" value="120" id="4002005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 neg   module  2   Id 436405512 " fill="rgb(255,17,0)" points="396.901,2365.51 417.316,2365.51 417.316,2359.6 396.901,2359.6 " />
<svg:polygon detid="436405768" count="1" value="120" id="4002006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 neg   module  2   Id 436405768 " fill="rgb(255,17,0)" points="396.901,2359.6 417.316,2359.6 417.316,2353.69 396.901,2353.69 " />
<svg:polygon detid="436406024" count="1" value="120" id="4002007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 neg   module  2   Id 436406024 " fill="rgb(255,17,0)" points="396.901,2353.69 417.316,2353.69 417.316,2347.78 396.901,2347.78 " />
<svg:polygon detid="436406280" count="1" value="120" id="4002008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 neg   module  2   Id 436406280 " fill="rgb(255,17,0)" points="396.901,2347.78 417.316,2347.78 417.316,2341.87 396.901,2341.87 " />
<svg:polygon detid="436406536" count="1" value="120" id="4002009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 neg   module  2   Id 436406536 " fill="rgb(255,17,0)" points="396.901,2341.87 417.316,2341.87 417.316,2335.96 396.901,2335.96 " />
<svg:polygon detid="436406792" count="1" value="120" id="4002010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 neg   module  2   Id 436406792 " fill="rgb(255,17,0)" points="396.901,2335.96 417.316,2335.96 417.316,2330.05 396.901,2330.05 " />
<svg:polygon detid="436407048" count="1" value="120" id="4002011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 neg   module  2   Id 436407048 " fill="rgb(255,17,0)" points="396.901,2330.05 417.316,2330.05 417.316,2324.14 396.901,2324.14 " />
<svg:polygon detid="436407304" count="1" value="120" id="4002012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 neg   module  2   Id 436407304 " fill="rgb(255,17,0)" points="396.901,2324.14 417.316,2324.14 417.316,2318.23 396.901,2318.23 " />
<svg:polygon detid="436407560" count="1" value="120" id="4002013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 neg   module  2   Id 436407560 " fill="rgb(255,17,0)" points="396.901,2318.23 417.316,2318.23 417.316,2312.32 396.901,2312.32 " />
<svg:polygon detid="436407816" count="1" value="120" id="4002014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 neg   module  2   Id 436407816 " fill="rgb(255,17,0)" points="396.901,2312.32 417.316,2312.32 417.316,2306.42 396.901,2306.42 " />
<svg:polygon detid="436408072" count="1" value="120" id="4002015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 neg   module  2   Id 436408072 " fill="rgb(255,17,0)" points="396.901,2306.42 417.316,2306.42 417.316,2300.51 396.901,2300.51 " />
<svg:polygon detid="436408328" count="1" value="120" id="4002016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 neg   module  2   Id 436408328 " fill="rgb(255,17,0)" points="396.901,2300.51 417.316,2300.51 417.316,2294.6 396.901,2294.6 " />
<svg:polygon detid="436408584" count="1" value="120" id="4002017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 neg   module  2   Id 436408584 " fill="rgb(255,17,0)" points="396.901,2294.6 417.316,2294.6 417.316,2288.69 396.901,2288.69 " />
<svg:polygon detid="436408840" count="1" value="120" id="4002018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 neg   module  2   Id 436408840 " fill="rgb(255,17,0)" points="396.901,2288.69 417.316,2288.69 417.316,2282.78 396.901,2282.78 " />
<svg:polygon detid="436409096" count="1" value="120" id="4002019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 neg   module  2   Id 436409096 " fill="rgb(255,17,0)" points="396.901,2282.78 417.316,2282.78 417.316,2276.87 396.901,2276.87 " />
<svg:polygon detid="436409352" count="1" value="120" id="4002020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 neg   module  2   Id 436409352 " fill="rgb(255,17,0)" points="396.901,2276.87 417.316,2276.87 417.316,2270.96 396.901,2270.96 " />
<svg:polygon detid="436409608" count="1" value="120" id="4002021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 neg   module  2   Id 436409608 " fill="rgb(255,17,0)" points="396.901,2270.96 417.316,2270.96 417.316,2265.05 396.901,2265.05 " />
<svg:polygon detid="436409864" count="1" value="120" id="4002022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 neg   module  2   Id 436409864 " fill="rgb(255,17,0)" points="396.901,2265.05 417.316,2265.05 417.316,2259.14 396.901,2259.14 " />
<svg:polygon detid="436410120" count="1" value="120" id="4002023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 neg   module  2   Id 436410120 " fill="rgb(255,17,0)" points="396.901,2259.14 417.316,2259.14 417.316,2253.23 396.901,2253.23 " />
<svg:polygon detid="436410376" count="1" value="120" id="4002024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 neg   module  2   Id 436410376 " fill="rgb(255,17,0)" points="396.901,2253.23 417.316,2253.23 417.316,2247.32 396.901,2247.32 " />
<svg:polygon detid="436410632" count="1" value="120" id="4002025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 neg   module  2   Id 436410632 " fill="rgb(255,17,0)" points="396.901,2247.32 417.316,2247.32 417.316,2241.41 396.901,2241.41 " />
<svg:polygon detid="436410888" count="1" value="120" id="4002026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 neg   module  2   Id 436410888 " fill="rgb(255,17,0)" points="396.901,2241.41 417.316,2241.41 417.316,2235.5 396.901,2235.5 " />
<svg:polygon detid="436411144" count="1" value="120" id="4002027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 neg   module  2   Id 436411144 " fill="rgb(255,17,0)" points="396.901,2235.5 417.316,2235.5 417.316,2229.59 396.901,2229.59 " />
<svg:polygon detid="436411400" count="1" value="120" id="4002028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 neg   module  2   Id 436411400 " fill="rgb(255,17,0)" points="396.901,2229.59 417.316,2229.59 417.316,2223.68 396.901,2223.68 " />
<svg:polygon detid="436411656" count="1" value="120" id="4002029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 neg   module  2   Id 436411656 " fill="rgb(255,17,0)" points="396.901,2223.68 417.316,2223.68 417.316,2217.77 396.901,2217.77 " />
<svg:polygon detid="436411912" count="1" value="120" id="4002030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 neg   module  2   Id 436411912 " fill="rgb(255,17,0)" points="396.901,2217.77 417.316,2217.77 417.316,2211.86 396.901,2211.86 " />
<svg:polygon detid="436412168" count="1" value="120" id="4002031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 neg   module  2   Id 436412168 " fill="rgb(255,17,0)" points="396.901,2211.86 417.316,2211.86 417.316,2205.95 396.901,2205.95 " />
<svg:polygon detid="436412424" count="1" value="120" id="4002032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 neg   module  2   Id 436412424 " fill="rgb(255,17,0)" points="396.901,2205.95 417.316,2205.95 417.316,2200.04 396.901,2200.04 " />
<svg:polygon detid="436412680" count="1" value="120" id="4002033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 neg   module  2   Id 436412680 " fill="rgb(255,17,0)" points="396.901,2200.04 417.316,2200.04 417.316,2194.13 396.901,2194.13 " />
<svg:polygon detid="436412936" count="1" value="120" id="4002034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 neg   module  2   Id 436412936 " fill="rgb(255,17,0)" points="396.901,2194.13 417.316,2194.13 417.316,2188.22 396.901,2188.22 " />
<svg:polygon detid="436413192" count="1" value="120" id="4002035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 neg   module  2   Id 436413192 " fill="rgb(255,17,0)" points="396.901,2188.22 417.316,2188.22 417.316,2182.31 396.901,2182.31 " />
<svg:polygon detid="436413448" count="1" value="120" id="4002036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 neg   module  2   Id 436413448 " fill="rgb(255,17,0)" points="396.901,2182.31 417.316,2182.31 417.316,2176.4 396.901,2176.4 " />
<svg:polygon detid="436413704" count="1" value="120" id="4002037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 neg   module  2   Id 436413704 " fill="rgb(255,17,0)" points="396.901,2176.4 417.316,2176.4 417.316,2170.49 396.901,2170.49 " />
<svg:polygon detid="436413960" count="1" value="120" id="4002038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 neg   module  2   Id 436413960 " fill="rgb(255,17,0)" points="396.901,2170.49 417.316,2170.49 417.316,2164.58 396.901,2164.58 " />
<svg:polygon detid="436414216" count="1" value="120" id="4002039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 neg   module  2   Id 436414216 " fill="rgb(255,17,0)" points="396.901,2164.58 417.316,2164.58 417.316,2158.67 396.901,2158.67 " />
<svg:polygon detid="436414472" count="1" value="120" id="4002040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 neg   module  2   Id 436414472 " fill="rgb(255,17,0)" points="396.901,2158.67 417.316,2158.67 417.316,2152.76 396.901,2152.76 " />
<svg:polygon detid="436414728" count="1" value="120" id="4002041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 neg   module  2   Id 436414728 " fill="rgb(255,17,0)" points="396.901,2152.76 417.316,2152.76 417.316,2146.85 396.901,2146.85 " />
<svg:polygon detid="436414984" count="1" value="120" id="4002042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 neg   module  2   Id 436414984 " fill="rgb(255,17,0)" points="396.901,2146.85 417.316,2146.85 417.316,2140.94 396.901,2140.94 " />
<svg:polygon detid="436415240" count="1" value="120" id="4002043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 neg   module  2   Id 436415240 " fill="rgb(255,17,0)" points="396.901,2140.94 417.316,2140.94 417.316,2135.03 396.901,2135.03 " />
<svg:polygon detid="436415496" count="1" value="120" id="4002044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 neg   module  2   Id 436415496 " fill="rgb(255,17,0)" points="396.901,2135.03 417.316,2135.03 417.316,2129.12 396.901,2129.12 " />
<svg:polygon detid="436415752" count="1" value="120" id="4002045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 neg   module  2   Id 436415752 " fill="rgb(255,17,0)" points="396.901,2129.12 417.316,2129.12 417.316,2123.21 396.901,2123.21 " />
<svg:polygon detid="436416008" count="1" value="120" id="4002046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 neg   module  2   Id 436416008 " fill="rgb(255,17,0)" points="396.901,2123.21 417.316,2123.21 417.316,2117.3 396.901,2117.3 " />
<svg:polygon detid="436416264" count="1" value="120" id="4002047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 neg   module  2   Id 436416264 " fill="rgb(255,17,0)" points="396.901,2117.3 417.316,2117.3 417.316,2111.39 396.901,2111.39 " />
<svg:polygon detid="436416520" count="1" value="120" id="4002048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 neg   module  2   Id 436416520 " fill="rgb(255,17,0)" points="396.901,2111.39 417.316,2111.39 417.316,2105.48 396.901,2105.48 " />
<svg:polygon detid="436416776" count="1" value="120" id="4002049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 neg   module  2   Id 436416776 " fill="rgb(255,17,0)" points="396.901,2105.48 417.316,2105.48 417.316,2099.57 396.901,2099.57 " />
<svg:polygon detid="436417032" count="1" value="120" id="4002050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 neg   module  2   Id 436417032 " fill="rgb(255,17,0)" points="396.901,2099.57 417.316,2099.57 417.316,2093.66 396.901,2093.66 " />
<svg:polygon detid="436417288" count="1" value="120" id="4002051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 neg   module  2   Id 436417288 " fill="rgb(255,17,0)" points="396.901,2093.66 417.316,2093.66 417.316,2087.75 396.901,2087.75 " />
<svg:polygon detid="436417544" count="1" value="120" id="4002052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 neg   module  2   Id 436417544 " fill="rgb(255,17,0)" points="396.901,2087.75 417.316,2087.75 417.316,2081.84 396.901,2081.84 " />
<svg:polygon detid="436417800" count="1" value="120" id="4002053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 neg   module  2   Id 436417800 " fill="rgb(255,17,0)" points="396.901,2081.84 417.316,2081.84 417.316,2075.93 396.901,2075.93 " />
<svg:polygon detid="436418056" count="1" value="120" id="4002054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 neg   module  2   Id 436418056 " fill="rgb(255,17,0)" points="396.901,2075.93 417.316,2075.93 417.316,2070.02 396.901,2070.02 " />
<svg:polygon detid="436404492" count="1" value="120" id="4003001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 neg   module  3   Id 436404492 " fill="rgb(255,17,0)" points="419.867,2389.15 440.282,2389.15 440.282,2383.24 419.867,2383.24 " />
<svg:polygon detid="436404748" count="1" value="120" id="4003002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 neg   module  3   Id 436404748 " fill="rgb(255,17,0)" points="419.867,2383.24 440.282,2383.24 440.282,2377.33 419.867,2377.33 " />
<svg:polygon detid="436405004" count="1" value="120" id="4003003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 neg   module  3   Id 436405004 " fill="rgb(255,17,0)" points="419.867,2377.33 440.282,2377.33 440.282,2371.42 419.867,2371.42 " />
<svg:polygon detid="436405260" count="1" value="120" id="4003004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 neg   module  3   Id 436405260 " fill="rgb(255,17,0)" points="419.867,2371.42 440.282,2371.42 440.282,2365.51 419.867,2365.51 " />
<svg:polygon detid="436405516" count="1" value="120" id="4003005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 neg   module  3   Id 436405516 " fill="rgb(255,17,0)" points="419.867,2365.51 440.282,2365.51 440.282,2359.6 419.867,2359.6 " />
<svg:polygon detid="436405772" count="1" value="120" id="4003006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 neg   module  3   Id 436405772 " fill="rgb(255,17,0)" points="419.867,2359.6 440.282,2359.6 440.282,2353.69 419.867,2353.69 " />
<svg:polygon detid="436406028" count="1" value="120" id="4003007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 neg   module  3   Id 436406028 " fill="rgb(255,17,0)" points="419.867,2353.69 440.282,2353.69 440.282,2347.78 419.867,2347.78 " />
<svg:polygon detid="436406284" count="1" value="120" id="4003008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 neg   module  3   Id 436406284 " fill="rgb(255,17,0)" points="419.867,2347.78 440.282,2347.78 440.282,2341.87 419.867,2341.87 " />
<svg:polygon detid="436406540" count="1" value="120" id="4003009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 neg   module  3   Id 436406540 " fill="rgb(255,17,0)" points="419.867,2341.87 440.282,2341.87 440.282,2335.96 419.867,2335.96 " />
<svg:polygon detid="436406796" count="1" value="120" id="4003010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 neg   module  3   Id 436406796 " fill="rgb(255,17,0)" points="419.867,2335.96 440.282,2335.96 440.282,2330.05 419.867,2330.05 " />
<svg:polygon detid="436407052" count="1" value="120" id="4003011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 neg   module  3   Id 436407052 " fill="rgb(255,17,0)" points="419.867,2330.05 440.282,2330.05 440.282,2324.14 419.867,2324.14 " />
<svg:polygon detid="436407308" count="1" value="120" id="4003012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 neg   module  3   Id 436407308 " fill="rgb(255,17,0)" points="419.867,2324.14 440.282,2324.14 440.282,2318.23 419.867,2318.23 " />
<svg:polygon detid="436407564" count="1" value="120" id="4003013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 neg   module  3   Id 436407564 " fill="rgb(255,17,0)" points="419.867,2318.23 440.282,2318.23 440.282,2312.32 419.867,2312.32 " />
<svg:polygon detid="436407820" count="1" value="120" id="4003014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 neg   module  3   Id 436407820 " fill="rgb(255,17,0)" points="419.867,2312.32 440.282,2312.32 440.282,2306.42 419.867,2306.42 " />
<svg:polygon detid="436408076" count="1" value="120" id="4003015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 neg   module  3   Id 436408076 " fill="rgb(255,17,0)" points="419.867,2306.42 440.282,2306.42 440.282,2300.51 419.867,2300.51 " />
<svg:polygon detid="436408332" count="1" value="120" id="4003016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 neg   module  3   Id 436408332 " fill="rgb(255,17,0)" points="419.867,2300.51 440.282,2300.51 440.282,2294.6 419.867,2294.6 " />
<svg:polygon detid="436408588" count="1" value="120" id="4003017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 neg   module  3   Id 436408588 " fill="rgb(255,17,0)" points="419.867,2294.6 440.282,2294.6 440.282,2288.69 419.867,2288.69 " />
<svg:polygon detid="436408844" count="1" value="120" id="4003018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 neg   module  3   Id 436408844 " fill="rgb(255,17,0)" points="419.867,2288.69 440.282,2288.69 440.282,2282.78 419.867,2282.78 " />
<svg:polygon detid="436409100" count="1" value="120" id="4003019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 neg   module  3   Id 436409100 " fill="rgb(255,17,0)" points="419.867,2282.78 440.282,2282.78 440.282,2276.87 419.867,2276.87 " />
<svg:polygon detid="436409356" count="1" value="120" id="4003020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 neg   module  3   Id 436409356 " fill="rgb(255,17,0)" points="419.867,2276.87 440.282,2276.87 440.282,2270.96 419.867,2270.96 " />
<svg:polygon detid="436409612" count="1" value="120" id="4003021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 neg   module  3   Id 436409612 " fill="rgb(255,17,0)" points="419.867,2270.96 440.282,2270.96 440.282,2265.05 419.867,2265.05 " />
<svg:polygon detid="436409868" count="1" value="120" id="4003022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 neg   module  3   Id 436409868 " fill="rgb(255,17,0)" points="419.867,2265.05 440.282,2265.05 440.282,2259.14 419.867,2259.14 " />
<svg:polygon detid="436410124" count="1" value="120" id="4003023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 neg   module  3   Id 436410124 " fill="rgb(255,17,0)" points="419.867,2259.14 440.282,2259.14 440.282,2253.23 419.867,2253.23 " />
<svg:polygon detid="436410380" count="1" value="120" id="4003024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 neg   module  3   Id 436410380 " fill="rgb(255,17,0)" points="419.867,2253.23 440.282,2253.23 440.282,2247.32 419.867,2247.32 " />
<svg:polygon detid="436410636" count="1" value="120" id="4003025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 neg   module  3   Id 436410636 " fill="rgb(255,17,0)" points="419.867,2247.32 440.282,2247.32 440.282,2241.41 419.867,2241.41 " />
<svg:polygon detid="436410892" count="1" value="120" id="4003026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 neg   module  3   Id 436410892 " fill="rgb(255,17,0)" points="419.867,2241.41 440.282,2241.41 440.282,2235.5 419.867,2235.5 " />
<svg:polygon detid="436411148" count="1" value="120" id="4003027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 neg   module  3   Id 436411148 " fill="rgb(255,17,0)" points="419.867,2235.5 440.282,2235.5 440.282,2229.59 419.867,2229.59 " />
<svg:polygon detid="436411404" count="1" value="120" id="4003028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 neg   module  3   Id 436411404 " fill="rgb(255,17,0)" points="419.867,2229.59 440.282,2229.59 440.282,2223.68 419.867,2223.68 " />
<svg:polygon detid="436411660" count="1" value="120" id="4003029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 neg   module  3   Id 436411660 " fill="rgb(255,17,0)" points="419.867,2223.68 440.282,2223.68 440.282,2217.77 419.867,2217.77 " />
<svg:polygon detid="436411916" count="1" value="120" id="4003030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 neg   module  3   Id 436411916 " fill="rgb(255,17,0)" points="419.867,2217.77 440.282,2217.77 440.282,2211.86 419.867,2211.86 " />
<svg:polygon detid="436412172" count="1" value="120" id="4003031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 neg   module  3   Id 436412172 " fill="rgb(255,17,0)" points="419.867,2211.86 440.282,2211.86 440.282,2205.95 419.867,2205.95 " />
<svg:polygon detid="436412428" count="1" value="120" id="4003032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 neg   module  3   Id 436412428 " fill="rgb(255,17,0)" points="419.867,2205.95 440.282,2205.95 440.282,2200.04 419.867,2200.04 " />
<svg:polygon detid="436412684" count="1" value="120" id="4003033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 neg   module  3   Id 436412684 " fill="rgb(255,17,0)" points="419.867,2200.04 440.282,2200.04 440.282,2194.13 419.867,2194.13 " />
<svg:polygon detid="436412940" count="1" value="120" id="4003034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 neg   module  3   Id 436412940 " fill="rgb(255,17,0)" points="419.867,2194.13 440.282,2194.13 440.282,2188.22 419.867,2188.22 " />
<svg:polygon detid="436413196" count="1" value="120" id="4003035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 neg   module  3   Id 436413196 " fill="rgb(255,17,0)" points="419.867,2188.22 440.282,2188.22 440.282,2182.31 419.867,2182.31 " />
<svg:polygon detid="436413452" count="1" value="120" id="4003036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 neg   module  3   Id 436413452 " fill="rgb(255,17,0)" points="419.867,2182.31 440.282,2182.31 440.282,2176.4 419.867,2176.4 " />
<svg:polygon detid="436413708" count="1" value="120" id="4003037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 neg   module  3   Id 436413708 " fill="rgb(255,17,0)" points="419.867,2176.4 440.282,2176.4 440.282,2170.49 419.867,2170.49 " />
<svg:polygon detid="436413964" count="1" value="120" id="4003038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 neg   module  3   Id 436413964 " fill="rgb(255,17,0)" points="419.867,2170.49 440.282,2170.49 440.282,2164.58 419.867,2164.58 " />
<svg:polygon detid="436414220" count="1" value="120" id="4003039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 neg   module  3   Id 436414220 " fill="rgb(255,17,0)" points="419.867,2164.58 440.282,2164.58 440.282,2158.67 419.867,2158.67 " />
<svg:polygon detid="436414476" count="1" value="120" id="4003040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 neg   module  3   Id 436414476 " fill="rgb(255,17,0)" points="419.867,2158.67 440.282,2158.67 440.282,2152.76 419.867,2152.76 " />
<svg:polygon detid="436414732" count="1" value="120" id="4003041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 neg   module  3   Id 436414732 " fill="rgb(255,17,0)" points="419.867,2152.76 440.282,2152.76 440.282,2146.85 419.867,2146.85 " />
<svg:polygon detid="436414988" count="1" value="120" id="4003042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 neg   module  3   Id 436414988 " fill="rgb(255,17,0)" points="419.867,2146.85 440.282,2146.85 440.282,2140.94 419.867,2140.94 " />
<svg:polygon detid="436415244" count="1" value="120" id="4003043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 neg   module  3   Id 436415244 " fill="rgb(255,17,0)" points="419.867,2140.94 440.282,2140.94 440.282,2135.03 419.867,2135.03 " />
<svg:polygon detid="436415500" count="1" value="120" id="4003044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 neg   module  3   Id 436415500 " fill="rgb(255,17,0)" points="419.867,2135.03 440.282,2135.03 440.282,2129.12 419.867,2129.12 " />
<svg:polygon detid="436415756" count="1" value="120" id="4003045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 neg   module  3   Id 436415756 " fill="rgb(255,17,0)" points="419.867,2129.12 440.282,2129.12 440.282,2123.21 419.867,2123.21 " />
<svg:polygon detid="436416012" count="1" value="120" id="4003046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 neg   module  3   Id 436416012 " fill="rgb(255,17,0)" points="419.867,2123.21 440.282,2123.21 440.282,2117.3 419.867,2117.3 " />
<svg:polygon detid="436416268" count="1" value="120" id="4003047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 neg   module  3   Id 436416268 " fill="rgb(255,17,0)" points="419.867,2117.3 440.282,2117.3 440.282,2111.39 419.867,2111.39 " />
<svg:polygon detid="436416524" count="1" value="120" id="4003048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 neg   module  3   Id 436416524 " fill="rgb(255,17,0)" points="419.867,2111.39 440.282,2111.39 440.282,2105.48 419.867,2105.48 " />
<svg:polygon detid="436416780" count="1" value="120" id="4003049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 neg   module  3   Id 436416780 " fill="rgb(255,17,0)" points="419.867,2105.48 440.282,2105.48 440.282,2099.57 419.867,2099.57 " />
<svg:polygon detid="436417036" count="1" value="120" id="4003050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 neg   module  3   Id 436417036 " fill="rgb(255,17,0)" points="419.867,2099.57 440.282,2099.57 440.282,2093.66 419.867,2093.66 " />
<svg:polygon detid="436417292" count="1" value="120" id="4003051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 neg   module  3   Id 436417292 " fill="rgb(255,17,0)" points="419.867,2093.66 440.282,2093.66 440.282,2087.75 419.867,2087.75 " />
<svg:polygon detid="436417548" count="1" value="120" id="4003052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 neg   module  3   Id 436417548 " fill="rgb(255,17,0)" points="419.867,2087.75 440.282,2087.75 440.282,2081.84 419.867,2081.84 " />
<svg:polygon detid="436417804" count="1" value="120" id="4003053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 neg   module  3   Id 436417804 " fill="rgb(255,17,0)" points="419.867,2081.84 440.282,2081.84 440.282,2075.93 419.867,2075.93 " />
<svg:polygon detid="436418060" count="1" value="120" id="4003054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 neg   module  3   Id 436418060 " fill="rgb(255,17,0)" points="419.867,2075.93 440.282,2075.93 440.282,2070.02 419.867,2070.02 " />
<svg:polygon detid="436404496" count="1" value="120" id="4004001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 neg   module  4   Id 436404496 " fill="rgb(255,17,0)" points="442.834,2389.15 463.249,2389.15 463.249,2383.24 442.834,2383.24 " />
<svg:polygon detid="436404752" count="1" value="120" id="4004002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 neg   module  4   Id 436404752 " fill="rgb(255,17,0)" points="442.834,2383.24 463.249,2383.24 463.249,2377.33 442.834,2377.33 " />
<svg:polygon detid="436405008" count="1" value="120" id="4004003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 neg   module  4   Id 436405008 " fill="rgb(255,17,0)" points="442.834,2377.33 463.249,2377.33 463.249,2371.42 442.834,2371.42 " />
<svg:polygon detid="436405264" count="1" value="120" id="4004004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 neg   module  4   Id 436405264 " fill="rgb(255,17,0)" points="442.834,2371.42 463.249,2371.42 463.249,2365.51 442.834,2365.51 " />
<svg:polygon detid="436405520" count="1" value="120" id="4004005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 neg   module  4   Id 436405520 " fill="rgb(255,17,0)" points="442.834,2365.51 463.249,2365.51 463.249,2359.6 442.834,2359.6 " />
<svg:polygon detid="436405776" count="1" value="120" id="4004006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 neg   module  4   Id 436405776 " fill="rgb(255,17,0)" points="442.834,2359.6 463.249,2359.6 463.249,2353.69 442.834,2353.69 " />
<svg:polygon detid="436406032" count="1" value="120" id="4004007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 neg   module  4   Id 436406032 " fill="rgb(255,17,0)" points="442.834,2353.69 463.249,2353.69 463.249,2347.78 442.834,2347.78 " />
<svg:polygon detid="436406288" count="1" value="120" id="4004008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 neg   module  4   Id 436406288 " fill="rgb(255,17,0)" points="442.834,2347.78 463.249,2347.78 463.249,2341.87 442.834,2341.87 " />
<svg:polygon detid="436406544" count="1" value="120" id="4004009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 neg   module  4   Id 436406544 " fill="rgb(255,17,0)" points="442.834,2341.87 463.249,2341.87 463.249,2335.96 442.834,2335.96 " />
<svg:polygon detid="436406800" count="1" value="120" id="4004010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 neg   module  4   Id 436406800 " fill="rgb(255,17,0)" points="442.834,2335.96 463.249,2335.96 463.249,2330.05 442.834,2330.05 " />
<svg:polygon detid="436407056" count="1" value="120" id="4004011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 neg   module  4   Id 436407056 " fill="rgb(255,17,0)" points="442.834,2330.05 463.249,2330.05 463.249,2324.14 442.834,2324.14 " />
<svg:polygon detid="436407312" count="1" value="120" id="4004012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 neg   module  4   Id 436407312 " fill="rgb(255,17,0)" points="442.834,2324.14 463.249,2324.14 463.249,2318.23 442.834,2318.23 " />
<svg:polygon detid="436407568" count="1" value="120" id="4004013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 neg   module  4   Id 436407568 " fill="rgb(255,17,0)" points="442.834,2318.23 463.249,2318.23 463.249,2312.32 442.834,2312.32 " />
<svg:polygon detid="436407824" count="1" value="120" id="4004014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 neg   module  4   Id 436407824 " fill="rgb(255,17,0)" points="442.834,2312.32 463.249,2312.32 463.249,2306.42 442.834,2306.42 " />
<svg:polygon detid="436408080" count="1" value="120" id="4004015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 neg   module  4   Id 436408080 " fill="rgb(255,17,0)" points="442.834,2306.42 463.249,2306.42 463.249,2300.51 442.834,2300.51 " />
<svg:polygon detid="436408336" count="1" value="120" id="4004016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 neg   module  4   Id 436408336 " fill="rgb(255,17,0)" points="442.834,2300.51 463.249,2300.51 463.249,2294.6 442.834,2294.6 " />
<svg:polygon detid="436408592" count="1" value="120" id="4004017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 neg   module  4   Id 436408592 " fill="rgb(255,17,0)" points="442.834,2294.6 463.249,2294.6 463.249,2288.69 442.834,2288.69 " />
<svg:polygon detid="436408848" count="1" value="120" id="4004018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 neg   module  4   Id 436408848 " fill="rgb(255,17,0)" points="442.834,2288.69 463.249,2288.69 463.249,2282.78 442.834,2282.78 " />
<svg:polygon detid="436409104" count="1" value="120" id="4004019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 neg   module  4   Id 436409104 " fill="rgb(255,17,0)" points="442.834,2282.78 463.249,2282.78 463.249,2276.87 442.834,2276.87 " />
<svg:polygon detid="436409360" count="1" value="120" id="4004020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 neg   module  4   Id 436409360 " fill="rgb(255,17,0)" points="442.834,2276.87 463.249,2276.87 463.249,2270.96 442.834,2270.96 " />
<svg:polygon detid="436409616" count="1" value="120" id="4004021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 neg   module  4   Id 436409616 " fill="rgb(255,17,0)" points="442.834,2270.96 463.249,2270.96 463.249,2265.05 442.834,2265.05 " />
<svg:polygon detid="436409872" count="1" value="120" id="4004022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 neg   module  4   Id 436409872 " fill="rgb(255,17,0)" points="442.834,2265.05 463.249,2265.05 463.249,2259.14 442.834,2259.14 " />
<svg:polygon detid="436410128" count="1" value="120" id="4004023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 neg   module  4   Id 436410128 " fill="rgb(255,17,0)" points="442.834,2259.14 463.249,2259.14 463.249,2253.23 442.834,2253.23 " />
<svg:polygon detid="436410384" count="1" value="120" id="4004024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 neg   module  4   Id 436410384 " fill="rgb(255,17,0)" points="442.834,2253.23 463.249,2253.23 463.249,2247.32 442.834,2247.32 " />
<svg:polygon detid="436410640" count="1" value="120" id="4004025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 neg   module  4   Id 436410640 " fill="rgb(255,17,0)" points="442.834,2247.32 463.249,2247.32 463.249,2241.41 442.834,2241.41 " />
<svg:polygon detid="436410896" count="1" value="120" id="4004026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 neg   module  4   Id 436410896 " fill="rgb(255,17,0)" points="442.834,2241.41 463.249,2241.41 463.249,2235.5 442.834,2235.5 " />
<svg:polygon detid="436411152" count="1" value="120" id="4004027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 neg   module  4   Id 436411152 " fill="rgb(255,17,0)" points="442.834,2235.5 463.249,2235.5 463.249,2229.59 442.834,2229.59 " />
<svg:polygon detid="436411408" count="1" value="120" id="4004028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 neg   module  4   Id 436411408 " fill="rgb(255,17,0)" points="442.834,2229.59 463.249,2229.59 463.249,2223.68 442.834,2223.68 " />
<svg:polygon detid="436411664" count="1" value="120" id="4004029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 neg   module  4   Id 436411664 " fill="rgb(255,17,0)" points="442.834,2223.68 463.249,2223.68 463.249,2217.77 442.834,2217.77 " />
<svg:polygon detid="436411920" count="1" value="120" id="4004030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 neg   module  4   Id 436411920 " fill="rgb(255,17,0)" points="442.834,2217.77 463.249,2217.77 463.249,2211.86 442.834,2211.86 " />
<svg:polygon detid="436412176" count="1" value="120" id="4004031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 neg   module  4   Id 436412176 " fill="rgb(255,17,0)" points="442.834,2211.86 463.249,2211.86 463.249,2205.95 442.834,2205.95 " />
<svg:polygon detid="436412432" count="1" value="120" id="4004032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 neg   module  4   Id 436412432 " fill="rgb(255,17,0)" points="442.834,2205.95 463.249,2205.95 463.249,2200.04 442.834,2200.04 " />
<svg:polygon detid="436412688" count="1" value="120" id="4004033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 neg   module  4   Id 436412688 " fill="rgb(255,17,0)" points="442.834,2200.04 463.249,2200.04 463.249,2194.13 442.834,2194.13 " />
<svg:polygon detid="436412944" count="1" value="120" id="4004034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 neg   module  4   Id 436412944 " fill="rgb(255,17,0)" points="442.834,2194.13 463.249,2194.13 463.249,2188.22 442.834,2188.22 " />
<svg:polygon detid="436413200" count="1" value="120" id="4004035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 neg   module  4   Id 436413200 " fill="rgb(255,17,0)" points="442.834,2188.22 463.249,2188.22 463.249,2182.31 442.834,2182.31 " />
<svg:polygon detid="436413456" count="1" value="120" id="4004036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 neg   module  4   Id 436413456 " fill="rgb(255,17,0)" points="442.834,2182.31 463.249,2182.31 463.249,2176.4 442.834,2176.4 " />
<svg:polygon detid="436413712" count="1" value="120" id="4004037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 neg   module  4   Id 436413712 " fill="rgb(255,17,0)" points="442.834,2176.4 463.249,2176.4 463.249,2170.49 442.834,2170.49 " />
<svg:polygon detid="436413968" count="1" value="120" id="4004038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 neg   module  4   Id 436413968 " fill="rgb(255,17,0)" points="442.834,2170.49 463.249,2170.49 463.249,2164.58 442.834,2164.58 " />
<svg:polygon detid="436414224" count="1" value="120" id="4004039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 neg   module  4   Id 436414224 " fill="rgb(255,17,0)" points="442.834,2164.58 463.249,2164.58 463.249,2158.67 442.834,2158.67 " />
<svg:polygon detid="436414480" count="1" value="120" id="4004040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 neg   module  4   Id 436414480 " fill="rgb(255,17,0)" points="442.834,2158.67 463.249,2158.67 463.249,2152.76 442.834,2152.76 " />
<svg:polygon detid="436414736" count="1" value="120" id="4004041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 neg   module  4   Id 436414736 " fill="rgb(255,17,0)" points="442.834,2152.76 463.249,2152.76 463.249,2146.85 442.834,2146.85 " />
<svg:polygon detid="436414992" count="1" value="120" id="4004042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 neg   module  4   Id 436414992 " fill="rgb(255,17,0)" points="442.834,2146.85 463.249,2146.85 463.249,2140.94 442.834,2140.94 " />
<svg:polygon detid="436415248" count="1" value="120" id="4004043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 neg   module  4   Id 436415248 " fill="rgb(255,17,0)" points="442.834,2140.94 463.249,2140.94 463.249,2135.03 442.834,2135.03 " />
<svg:polygon detid="436415504" count="1" value="120" id="4004044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 neg   module  4   Id 436415504 " fill="rgb(255,17,0)" points="442.834,2135.03 463.249,2135.03 463.249,2129.12 442.834,2129.12 " />
<svg:polygon detid="436415760" count="1" value="120" id="4004045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 neg   module  4   Id 436415760 " fill="rgb(255,17,0)" points="442.834,2129.12 463.249,2129.12 463.249,2123.21 442.834,2123.21 " />
<svg:polygon detid="436416016" count="1" value="120" id="4004046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 neg   module  4   Id 436416016 " fill="rgb(255,17,0)" points="442.834,2123.21 463.249,2123.21 463.249,2117.3 442.834,2117.3 " />
<svg:polygon detid="436416272" count="1" value="120" id="4004047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 neg   module  4   Id 436416272 " fill="rgb(255,17,0)" points="442.834,2117.3 463.249,2117.3 463.249,2111.39 442.834,2111.39 " />
<svg:polygon detid="436416528" count="1" value="120" id="4004048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 neg   module  4   Id 436416528 " fill="rgb(255,17,0)" points="442.834,2111.39 463.249,2111.39 463.249,2105.48 442.834,2105.48 " />
<svg:polygon detid="436416784" count="1" value="120" id="4004049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 neg   module  4   Id 436416784 " fill="rgb(255,17,0)" points="442.834,2105.48 463.249,2105.48 463.249,2099.57 442.834,2099.57 " />
<svg:polygon detid="436417040" count="1" value="120" id="4004050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 neg   module  4   Id 436417040 " fill="rgb(255,17,0)" points="442.834,2099.57 463.249,2099.57 463.249,2093.66 442.834,2093.66 " />
<svg:polygon detid="436417296" count="1" value="120" id="4004051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 neg   module  4   Id 436417296 " fill="rgb(255,17,0)" points="442.834,2093.66 463.249,2093.66 463.249,2087.75 442.834,2087.75 " />
<svg:polygon detid="436417552" count="1" value="120" id="4004052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 neg   module  4   Id 436417552 " fill="rgb(255,17,0)" points="442.834,2087.75 463.249,2087.75 463.249,2081.84 442.834,2081.84 " />
<svg:polygon detid="436417808" count="1" value="120" id="4004053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 neg   module  4   Id 436417808 " fill="rgb(255,17,0)" points="442.834,2081.84 463.249,2081.84 463.249,2075.93 442.834,2075.93 " />
<svg:polygon detid="436418064" count="1" value="120" id="4004054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 neg   module  4   Id 436418064 " fill="rgb(255,17,0)" points="442.834,2075.93 463.249,2075.93 463.249,2070.02 442.834,2070.02 " />
<svg:polygon detid="436404500" count="1" value="120" id="4005001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 neg   module  5   Id 436404500 " fill="rgb(255,17,0)" points="465.8,2389.15 486.215,2389.15 486.215,2383.24 465.8,2383.24 " />
<svg:polygon detid="436404756" count="1" value="120" id="4005002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 neg   module  5   Id 436404756 " fill="rgb(255,17,0)" points="465.8,2383.24 486.215,2383.24 486.215,2377.33 465.8,2377.33 " />
<svg:polygon detid="436405012" count="1" value="120" id="4005003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 neg   module  5   Id 436405012 " fill="rgb(255,17,0)" points="465.8,2377.33 486.215,2377.33 486.215,2371.42 465.8,2371.42 " />
<svg:polygon detid="436405268" count="1" value="120" id="4005004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 neg   module  5   Id 436405268 " fill="rgb(255,17,0)" points="465.8,2371.42 486.215,2371.42 486.215,2365.51 465.8,2365.51 " />
<svg:polygon detid="436405524" count="1" value="120" id="4005005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 neg   module  5   Id 436405524 " fill="rgb(255,17,0)" points="465.8,2365.51 486.215,2365.51 486.215,2359.6 465.8,2359.6 " />
<svg:polygon detid="436405780" count="1" value="120" id="4005006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 neg   module  5   Id 436405780 " fill="rgb(255,17,0)" points="465.8,2359.6 486.215,2359.6 486.215,2353.69 465.8,2353.69 " />
<svg:polygon detid="436406036" count="1" value="120" id="4005007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 neg   module  5   Id 436406036 " fill="rgb(255,17,0)" points="465.8,2353.69 486.215,2353.69 486.215,2347.78 465.8,2347.78 " />
<svg:polygon detid="436406292" count="1" value="120" id="4005008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 neg   module  5   Id 436406292 " fill="rgb(255,17,0)" points="465.8,2347.78 486.215,2347.78 486.215,2341.87 465.8,2341.87 " />
<svg:polygon detid="436406548" count="1" value="120" id="4005009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 neg   module  5   Id 436406548 " fill="rgb(255,17,0)" points="465.8,2341.87 486.215,2341.87 486.215,2335.96 465.8,2335.96 " />
<svg:polygon detid="436406804" count="1" value="120" id="4005010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 neg   module  5   Id 436406804 " fill="rgb(255,17,0)" points="465.8,2335.96 486.215,2335.96 486.215,2330.05 465.8,2330.05 " />
<svg:polygon detid="436407060" count="1" value="120" id="4005011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 neg   module  5   Id 436407060 " fill="rgb(255,17,0)" points="465.8,2330.05 486.215,2330.05 486.215,2324.14 465.8,2324.14 " />
<svg:polygon detid="436407316" count="1" value="120" id="4005012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 neg   module  5   Id 436407316 " fill="rgb(255,17,0)" points="465.8,2324.14 486.215,2324.14 486.215,2318.23 465.8,2318.23 " />
<svg:polygon detid="436407572" count="1" value="120" id="4005013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 neg   module  5   Id 436407572 " fill="rgb(255,17,0)" points="465.8,2318.23 486.215,2318.23 486.215,2312.32 465.8,2312.32 " />
<svg:polygon detid="436407828" count="1" value="120" id="4005014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 neg   module  5   Id 436407828 " fill="rgb(255,17,0)" points="465.8,2312.32 486.215,2312.32 486.215,2306.42 465.8,2306.42 " />
<svg:polygon detid="436408084" count="1" value="120" id="4005015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 neg   module  5   Id 436408084 " fill="rgb(255,17,0)" points="465.8,2306.42 486.215,2306.42 486.215,2300.51 465.8,2300.51 " />
<svg:polygon detid="436408340" count="1" value="120" id="4005016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 neg   module  5   Id 436408340 " fill="rgb(255,17,0)" points="465.8,2300.51 486.215,2300.51 486.215,2294.6 465.8,2294.6 " />
<svg:polygon detid="436408596" count="1" value="120" id="4005017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 neg   module  5   Id 436408596 " fill="rgb(255,17,0)" points="465.8,2294.6 486.215,2294.6 486.215,2288.69 465.8,2288.69 " />
<svg:polygon detid="436408852" count="1" value="120" id="4005018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 neg   module  5   Id 436408852 " fill="rgb(255,17,0)" points="465.8,2288.69 486.215,2288.69 486.215,2282.78 465.8,2282.78 " />
<svg:polygon detid="436409108" count="1" value="120" id="4005019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 neg   module  5   Id 436409108 " fill="rgb(255,17,0)" points="465.8,2282.78 486.215,2282.78 486.215,2276.87 465.8,2276.87 " />
<svg:polygon detid="436409364" count="1" value="120" id="4005020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 neg   module  5   Id 436409364 " fill="rgb(255,17,0)" points="465.8,2276.87 486.215,2276.87 486.215,2270.96 465.8,2270.96 " />
<svg:polygon detid="436409620" count="1" value="120" id="4005021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 neg   module  5   Id 436409620 " fill="rgb(255,17,0)" points="465.8,2270.96 486.215,2270.96 486.215,2265.05 465.8,2265.05 " />
<svg:polygon detid="436409876" count="1" value="120" id="4005022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 neg   module  5   Id 436409876 " fill="rgb(255,17,0)" points="465.8,2265.05 486.215,2265.05 486.215,2259.14 465.8,2259.14 " />
<svg:polygon detid="436410132" count="1" value="120" id="4005023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 neg   module  5   Id 436410132 " fill="rgb(255,17,0)" points="465.8,2259.14 486.215,2259.14 486.215,2253.23 465.8,2253.23 " />
<svg:polygon detid="436410388" count="1" value="120" id="4005024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 neg   module  5   Id 436410388 " fill="rgb(255,17,0)" points="465.8,2253.23 486.215,2253.23 486.215,2247.32 465.8,2247.32 " />
<svg:polygon detid="436410644" count="1" value="120" id="4005025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 neg   module  5   Id 436410644 " fill="rgb(255,17,0)" points="465.8,2247.32 486.215,2247.32 486.215,2241.41 465.8,2241.41 " />
<svg:polygon detid="436410900" count="1" value="120" id="4005026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 neg   module  5   Id 436410900 " fill="rgb(255,17,0)" points="465.8,2241.41 486.215,2241.41 486.215,2235.5 465.8,2235.5 " />
<svg:polygon detid="436411156" count="1" value="120" id="4005027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 neg   module  5   Id 436411156 " fill="rgb(255,17,0)" points="465.8,2235.5 486.215,2235.5 486.215,2229.59 465.8,2229.59 " />
<svg:polygon detid="436411412" count="1" value="120" id="4005028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 neg   module  5   Id 436411412 " fill="rgb(255,17,0)" points="465.8,2229.59 486.215,2229.59 486.215,2223.68 465.8,2223.68 " />
<svg:polygon detid="436411668" count="1" value="120" id="4005029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 neg   module  5   Id 436411668 " fill="rgb(255,17,0)" points="465.8,2223.68 486.215,2223.68 486.215,2217.77 465.8,2217.77 " />
<svg:polygon detid="436411924" count="1" value="120" id="4005030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 neg   module  5   Id 436411924 " fill="rgb(255,17,0)" points="465.8,2217.77 486.215,2217.77 486.215,2211.86 465.8,2211.86 " />
<svg:polygon detid="436412180" count="1" value="120" id="4005031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 neg   module  5   Id 436412180 " fill="rgb(255,17,0)" points="465.8,2211.86 486.215,2211.86 486.215,2205.95 465.8,2205.95 " />
<svg:polygon detid="436412436" count="1" value="120" id="4005032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 neg   module  5   Id 436412436 " fill="rgb(255,17,0)" points="465.8,2205.95 486.215,2205.95 486.215,2200.04 465.8,2200.04 " />
<svg:polygon detid="436412692" count="1" value="120" id="4005033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 neg   module  5   Id 436412692 " fill="rgb(255,17,0)" points="465.8,2200.04 486.215,2200.04 486.215,2194.13 465.8,2194.13 " />
<svg:polygon detid="436412948" count="1" value="120" id="4005034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 neg   module  5   Id 436412948 " fill="rgb(255,17,0)" points="465.8,2194.13 486.215,2194.13 486.215,2188.22 465.8,2188.22 " />
<svg:polygon detid="436413204" count="1" value="120" id="4005035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 neg   module  5   Id 436413204 " fill="rgb(255,17,0)" points="465.8,2188.22 486.215,2188.22 486.215,2182.31 465.8,2182.31 " />
<svg:polygon detid="436413460" count="1" value="120" id="4005036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 neg   module  5   Id 436413460 " fill="rgb(255,17,0)" points="465.8,2182.31 486.215,2182.31 486.215,2176.4 465.8,2176.4 " />
<svg:polygon detid="436413716" count="1" value="120" id="4005037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 neg   module  5   Id 436413716 " fill="rgb(255,17,0)" points="465.8,2176.4 486.215,2176.4 486.215,2170.49 465.8,2170.49 " />
<svg:polygon detid="436413972" count="1" value="120" id="4005038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 neg   module  5   Id 436413972 " fill="rgb(255,17,0)" points="465.8,2170.49 486.215,2170.49 486.215,2164.58 465.8,2164.58 " />
<svg:polygon detid="436414228" count="1" value="120" id="4005039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 neg   module  5   Id 436414228 " fill="rgb(255,17,0)" points="465.8,2164.58 486.215,2164.58 486.215,2158.67 465.8,2158.67 " />
<svg:polygon detid="436414484" count="1" value="120" id="4005040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 neg   module  5   Id 436414484 " fill="rgb(255,17,0)" points="465.8,2158.67 486.215,2158.67 486.215,2152.76 465.8,2152.76 " />
<svg:polygon detid="436414740" count="1" value="120" id="4005041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 neg   module  5   Id 436414740 " fill="rgb(255,17,0)" points="465.8,2152.76 486.215,2152.76 486.215,2146.85 465.8,2146.85 " />
<svg:polygon detid="436414996" count="1" value="120" id="4005042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 neg   module  5   Id 436414996 " fill="rgb(255,17,0)" points="465.8,2146.85 486.215,2146.85 486.215,2140.94 465.8,2140.94 " />
<svg:polygon detid="436415252" count="1" value="120" id="4005043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 neg   module  5   Id 436415252 " fill="rgb(255,17,0)" points="465.8,2140.94 486.215,2140.94 486.215,2135.03 465.8,2135.03 " />
<svg:polygon detid="436415508" count="1" value="120" id="4005044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 neg   module  5   Id 436415508 " fill="rgb(255,17,0)" points="465.8,2135.03 486.215,2135.03 486.215,2129.12 465.8,2129.12 " />
<svg:polygon detid="436415764" count="1" value="120" id="4005045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 neg   module  5   Id 436415764 " fill="rgb(255,17,0)" points="465.8,2129.12 486.215,2129.12 486.215,2123.21 465.8,2123.21 " />
<svg:polygon detid="436416020" count="1" value="120" id="4005046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 neg   module  5   Id 436416020 " fill="rgb(255,17,0)" points="465.8,2123.21 486.215,2123.21 486.215,2117.3 465.8,2117.3 " />
<svg:polygon detid="436416276" count="1" value="120" id="4005047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 neg   module  5   Id 436416276 " fill="rgb(255,17,0)" points="465.8,2117.3 486.215,2117.3 486.215,2111.39 465.8,2111.39 " />
<svg:polygon detid="436416532" count="1" value="120" id="4005048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 neg   module  5   Id 436416532 " fill="rgb(255,17,0)" points="465.8,2111.39 486.215,2111.39 486.215,2105.48 465.8,2105.48 " />
<svg:polygon detid="436416788" count="1" value="120" id="4005049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 neg   module  5   Id 436416788 " fill="rgb(255,17,0)" points="465.8,2105.48 486.215,2105.48 486.215,2099.57 465.8,2099.57 " />
<svg:polygon detid="436417044" count="1" value="120" id="4005050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 neg   module  5   Id 436417044 " fill="rgb(255,17,0)" points="465.8,2099.57 486.215,2099.57 486.215,2093.66 465.8,2093.66 " />
<svg:polygon detid="436417300" count="1" value="120" id="4005051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 neg   module  5   Id 436417300 " fill="rgb(255,17,0)" points="465.8,2093.66 486.215,2093.66 486.215,2087.75 465.8,2087.75 " />
<svg:polygon detid="436417556" count="1" value="120" id="4005052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 neg   module  5   Id 436417556 " fill="rgb(255,17,0)" points="465.8,2087.75 486.215,2087.75 486.215,2081.84 465.8,2081.84 " />
<svg:polygon detid="436417812" count="1" value="120" id="4005053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 neg   module  5   Id 436417812 " fill="rgb(255,17,0)" points="465.8,2081.84 486.215,2081.84 486.215,2075.93 465.8,2075.93 " />
<svg:polygon detid="436418068" count="1" value="120" id="4005054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 neg   module  5   Id 436418068 " fill="rgb(255,17,0)" points="465.8,2075.93 486.215,2075.93 486.215,2070.02 465.8,2070.02 " />
<svg:polygon detid="436404504" count="1" value="120" id="4006001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 neg   module  6   Id 436404504 " fill="rgb(255,17,0)" points="488.767,2389.15 509.182,2389.15 509.182,2383.24 488.767,2383.24 " />
<svg:polygon detid="436404760" count="1" value="120" id="4006002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 neg   module  6   Id 436404760 " fill="rgb(255,17,0)" points="488.767,2383.24 509.182,2383.24 509.182,2377.33 488.767,2377.33 " />
<svg:polygon detid="436405016" count="1" value="120" id="4006003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 neg   module  6   Id 436405016 " fill="rgb(255,17,0)" points="488.767,2377.33 509.182,2377.33 509.182,2371.42 488.767,2371.42 " />
<svg:polygon detid="436405272" count="1" value="120" id="4006004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 neg   module  6   Id 436405272 " fill="rgb(255,17,0)" points="488.767,2371.42 509.182,2371.42 509.182,2365.51 488.767,2365.51 " />
<svg:polygon detid="436405528" count="1" value="120" id="4006005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 neg   module  6   Id 436405528 " fill="rgb(255,17,0)" points="488.767,2365.51 509.182,2365.51 509.182,2359.6 488.767,2359.6 " />
<svg:polygon detid="436405784" count="1" value="120" id="4006006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 neg   module  6   Id 436405784 " fill="rgb(255,17,0)" points="488.767,2359.6 509.182,2359.6 509.182,2353.69 488.767,2353.69 " />
<svg:polygon detid="436406040" count="1" value="120" id="4006007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 neg   module  6   Id 436406040 " fill="rgb(255,17,0)" points="488.767,2353.69 509.182,2353.69 509.182,2347.78 488.767,2347.78 " />
<svg:polygon detid="436406296" count="1" value="120" id="4006008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 neg   module  6   Id 436406296 " fill="rgb(255,17,0)" points="488.767,2347.78 509.182,2347.78 509.182,2341.87 488.767,2341.87 " />
<svg:polygon detid="436406552" count="1" value="120" id="4006009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 neg   module  6   Id 436406552 " fill="rgb(255,17,0)" points="488.767,2341.87 509.182,2341.87 509.182,2335.96 488.767,2335.96 " />
<svg:polygon detid="436406808" count="1" value="120" id="4006010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 neg   module  6   Id 436406808 " fill="rgb(255,17,0)" points="488.767,2335.96 509.182,2335.96 509.182,2330.05 488.767,2330.05 " />
<svg:polygon detid="436407064" count="1" value="120" id="4006011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 neg   module  6   Id 436407064 " fill="rgb(255,17,0)" points="488.767,2330.05 509.182,2330.05 509.182,2324.14 488.767,2324.14 " />
<svg:polygon detid="436407320" count="1" value="120" id="4006012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 neg   module  6   Id 436407320 " fill="rgb(255,17,0)" points="488.767,2324.14 509.182,2324.14 509.182,2318.23 488.767,2318.23 " />
<svg:polygon detid="436407576" count="1" value="120" id="4006013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 neg   module  6   Id 436407576 " fill="rgb(255,17,0)" points="488.767,2318.23 509.182,2318.23 509.182,2312.32 488.767,2312.32 " />
<svg:polygon detid="436407832" count="1" value="120" id="4006014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 neg   module  6   Id 436407832 " fill="rgb(255,17,0)" points="488.767,2312.32 509.182,2312.32 509.182,2306.42 488.767,2306.42 " />
<svg:polygon detid="436408088" count="1" value="120" id="4006015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 neg   module  6   Id 436408088 " fill="rgb(255,17,0)" points="488.767,2306.42 509.182,2306.42 509.182,2300.51 488.767,2300.51 " />
<svg:polygon detid="436408344" count="1" value="120" id="4006016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 neg   module  6   Id 436408344 " fill="rgb(255,17,0)" points="488.767,2300.51 509.182,2300.51 509.182,2294.6 488.767,2294.6 " />
<svg:polygon detid="436408600" count="1" value="120" id="4006017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 neg   module  6   Id 436408600 " fill="rgb(255,17,0)" points="488.767,2294.6 509.182,2294.6 509.182,2288.69 488.767,2288.69 " />
<svg:polygon detid="436408856" count="1" value="120" id="4006018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 neg   module  6   Id 436408856 " fill="rgb(255,17,0)" points="488.767,2288.69 509.182,2288.69 509.182,2282.78 488.767,2282.78 " />
<svg:polygon detid="436409112" count="1" value="120" id="4006019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 neg   module  6   Id 436409112 " fill="rgb(255,17,0)" points="488.767,2282.78 509.182,2282.78 509.182,2276.87 488.767,2276.87 " />
<svg:polygon detid="436409368" count="1" value="120" id="4006020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 neg   module  6   Id 436409368 " fill="rgb(255,17,0)" points="488.767,2276.87 509.182,2276.87 509.182,2270.96 488.767,2270.96 " />
<svg:polygon detid="436409624" count="1" value="120" id="4006021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 neg   module  6   Id 436409624 " fill="rgb(255,17,0)" points="488.767,2270.96 509.182,2270.96 509.182,2265.05 488.767,2265.05 " />
<svg:polygon detid="436409880" count="1" value="120" id="4006022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 neg   module  6   Id 436409880 " fill="rgb(255,17,0)" points="488.767,2265.05 509.182,2265.05 509.182,2259.14 488.767,2259.14 " />
<svg:polygon detid="436410136" count="1" value="120" id="4006023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 neg   module  6   Id 436410136 " fill="rgb(255,17,0)" points="488.767,2259.14 509.182,2259.14 509.182,2253.23 488.767,2253.23 " />
<svg:polygon detid="436410392" count="1" value="120" id="4006024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 neg   module  6   Id 436410392 " fill="rgb(255,17,0)" points="488.767,2253.23 509.182,2253.23 509.182,2247.32 488.767,2247.32 " />
<svg:polygon detid="436410648" count="1" value="120" id="4006025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 neg   module  6   Id 436410648 " fill="rgb(255,17,0)" points="488.767,2247.32 509.182,2247.32 509.182,2241.41 488.767,2241.41 " />
<svg:polygon detid="436410904" count="1" value="120" id="4006026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 neg   module  6   Id 436410904 " fill="rgb(255,17,0)" points="488.767,2241.41 509.182,2241.41 509.182,2235.5 488.767,2235.5 " />
<svg:polygon detid="436411160" count="1" value="120" id="4006027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 neg   module  6   Id 436411160 " fill="rgb(255,17,0)" points="488.767,2235.5 509.182,2235.5 509.182,2229.59 488.767,2229.59 " />
<svg:polygon detid="436411416" count="1" value="120" id="4006028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 neg   module  6   Id 436411416 " fill="rgb(255,17,0)" points="488.767,2229.59 509.182,2229.59 509.182,2223.68 488.767,2223.68 " />
<svg:polygon detid="436411672" count="1" value="120" id="4006029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 neg   module  6   Id 436411672 " fill="rgb(255,17,0)" points="488.767,2223.68 509.182,2223.68 509.182,2217.77 488.767,2217.77 " />
<svg:polygon detid="436411928" count="1" value="120" id="4006030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 neg   module  6   Id 436411928 " fill="rgb(255,17,0)" points="488.767,2217.77 509.182,2217.77 509.182,2211.86 488.767,2211.86 " />
<svg:polygon detid="436412184" count="1" value="120" id="4006031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 neg   module  6   Id 436412184 " fill="rgb(255,17,0)" points="488.767,2211.86 509.182,2211.86 509.182,2205.95 488.767,2205.95 " />
<svg:polygon detid="436412440" count="1" value="120" id="4006032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 neg   module  6   Id 436412440 " fill="rgb(255,17,0)" points="488.767,2205.95 509.182,2205.95 509.182,2200.04 488.767,2200.04 " />
<svg:polygon detid="436412696" count="1" value="120" id="4006033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 neg   module  6   Id 436412696 " fill="rgb(255,17,0)" points="488.767,2200.04 509.182,2200.04 509.182,2194.13 488.767,2194.13 " />
<svg:polygon detid="436412952" count="1" value="120" id="4006034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 neg   module  6   Id 436412952 " fill="rgb(255,17,0)" points="488.767,2194.13 509.182,2194.13 509.182,2188.22 488.767,2188.22 " />
<svg:polygon detid="436413208" count="1" value="120" id="4006035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 neg   module  6   Id 436413208 " fill="rgb(255,17,0)" points="488.767,2188.22 509.182,2188.22 509.182,2182.31 488.767,2182.31 " />
<svg:polygon detid="436413464" count="1" value="120" id="4006036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 neg   module  6   Id 436413464 " fill="rgb(255,17,0)" points="488.767,2182.31 509.182,2182.31 509.182,2176.4 488.767,2176.4 " />
<svg:polygon detid="436413720" count="1" value="120" id="4006037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 neg   module  6   Id 436413720 " fill="rgb(255,17,0)" points="488.767,2176.4 509.182,2176.4 509.182,2170.49 488.767,2170.49 " />
<svg:polygon detid="436413976" count="1" value="120" id="4006038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 neg   module  6   Id 436413976 " fill="rgb(255,17,0)" points="488.767,2170.49 509.182,2170.49 509.182,2164.58 488.767,2164.58 " />
<svg:polygon detid="436414232" count="1" value="120" id="4006039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 neg   module  6   Id 436414232 " fill="rgb(255,17,0)" points="488.767,2164.58 509.182,2164.58 509.182,2158.67 488.767,2158.67 " />
<svg:polygon detid="436414488" count="1" value="120" id="4006040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 neg   module  6   Id 436414488 " fill="rgb(255,17,0)" points="488.767,2158.67 509.182,2158.67 509.182,2152.76 488.767,2152.76 " />
<svg:polygon detid="436414744" count="1" value="120" id="4006041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 neg   module  6   Id 436414744 " fill="rgb(255,17,0)" points="488.767,2152.76 509.182,2152.76 509.182,2146.85 488.767,2146.85 " />
<svg:polygon detid="436415000" count="1" value="120" id="4006042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 neg   module  6   Id 436415000 " fill="rgb(255,17,0)" points="488.767,2146.85 509.182,2146.85 509.182,2140.94 488.767,2140.94 " />
<svg:polygon detid="436415256" count="1" value="120" id="4006043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 neg   module  6   Id 436415256 " fill="rgb(255,17,0)" points="488.767,2140.94 509.182,2140.94 509.182,2135.03 488.767,2135.03 " />
<svg:polygon detid="436415512" count="1" value="120" id="4006044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 neg   module  6   Id 436415512 " fill="rgb(255,17,0)" points="488.767,2135.03 509.182,2135.03 509.182,2129.12 488.767,2129.12 " />
<svg:polygon detid="436415768" count="1" value="120" id="4006045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 neg   module  6   Id 436415768 " fill="rgb(255,17,0)" points="488.767,2129.12 509.182,2129.12 509.182,2123.21 488.767,2123.21 " />
<svg:polygon detid="436416024" count="1" value="120" id="4006046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 neg   module  6   Id 436416024 " fill="rgb(255,17,0)" points="488.767,2123.21 509.182,2123.21 509.182,2117.3 488.767,2117.3 " />
<svg:polygon detid="436416280" count="1" value="120" id="4006047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 neg   module  6   Id 436416280 " fill="rgb(255,17,0)" points="488.767,2117.3 509.182,2117.3 509.182,2111.39 488.767,2111.39 " />
<svg:polygon detid="436416536" count="1" value="120" id="4006048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 neg   module  6   Id 436416536 " fill="rgb(255,17,0)" points="488.767,2111.39 509.182,2111.39 509.182,2105.48 488.767,2105.48 " />
<svg:polygon detid="436416792" count="1" value="120" id="4006049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 neg   module  6   Id 436416792 " fill="rgb(255,17,0)" points="488.767,2105.48 509.182,2105.48 509.182,2099.57 488.767,2099.57 " />
<svg:polygon detid="436417048" count="1" value="120" id="4006050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 neg   module  6   Id 436417048 " fill="rgb(255,17,0)" points="488.767,2099.57 509.182,2099.57 509.182,2093.66 488.767,2093.66 " />
<svg:polygon detid="436417304" count="1" value="120" id="4006051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 neg   module  6   Id 436417304 " fill="rgb(255,17,0)" points="488.767,2093.66 509.182,2093.66 509.182,2087.75 488.767,2087.75 " />
<svg:polygon detid="436417560" count="1" value="120" id="4006052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 neg   module  6   Id 436417560 " fill="rgb(255,17,0)" points="488.767,2087.75 509.182,2087.75 509.182,2081.84 488.767,2081.84 " />
<svg:polygon detid="436417816" count="1" value="120" id="4006053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 neg   module  6   Id 436417816 " fill="rgb(255,17,0)" points="488.767,2081.84 509.182,2081.84 509.182,2075.93 488.767,2075.93 " />
<svg:polygon detid="436418072" count="1" value="120" id="4006054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 neg   module  6   Id 436418072 " fill="rgb(255,17,0)" points="488.767,2075.93 509.182,2075.93 509.182,2070.02 488.767,2070.02 " />
<svg:polygon detid="436437252" count="1" value="120" id="4007001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 pos   module  1   Id 436437252 " fill="rgb(255,17,0)" points="511.733,2389.15 532.148,2389.15 532.148,2383.24 511.733,2383.24 " />
<svg:polygon detid="436437508" count="1" value="120" id="4007002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 pos   module  1   Id 436437508 " fill="rgb(255,17,0)" points="511.733,2383.24 532.148,2383.24 532.148,2377.33 511.733,2377.33 " />
<svg:polygon detid="436437764" count="1" value="120" id="4007003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 pos   module  1   Id 436437764 " fill="rgb(255,17,0)" points="511.733,2377.33 532.148,2377.33 532.148,2371.42 511.733,2371.42 " />
<svg:polygon detid="436438020" count="1" value="120" id="4007004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 pos   module  1   Id 436438020 " fill="rgb(255,17,0)" points="511.733,2371.42 532.148,2371.42 532.148,2365.51 511.733,2365.51 " />
<svg:polygon detid="436438276" count="1" value="120" id="4007005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 pos   module  1   Id 436438276 " fill="rgb(255,17,0)" points="511.733,2365.51 532.148,2365.51 532.148,2359.6 511.733,2359.6 " />
<svg:polygon detid="436438532" count="1" value="120" id="4007006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 pos   module  1   Id 436438532 " fill="rgb(255,17,0)" points="511.733,2359.6 532.148,2359.6 532.148,2353.69 511.733,2353.69 " />
<svg:polygon detid="436438788" count="1" value="120" id="4007007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 pos   module  1   Id 436438788 " fill="rgb(255,17,0)" points="511.733,2353.69 532.148,2353.69 532.148,2347.78 511.733,2347.78 " />
<svg:polygon detid="436439044" count="1" value="120" id="4007008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 pos   module  1   Id 436439044 " fill="rgb(255,17,0)" points="511.733,2347.78 532.148,2347.78 532.148,2341.87 511.733,2341.87 " />
<svg:polygon detid="436439300" count="1" value="120" id="4007009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 pos   module  1   Id 436439300 " fill="rgb(255,17,0)" points="511.733,2341.87 532.148,2341.87 532.148,2335.96 511.733,2335.96 " />
<svg:polygon detid="436439556" count="1" value="120" id="4007010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 pos   module  1   Id 436439556 " fill="rgb(255,17,0)" points="511.733,2335.96 532.148,2335.96 532.148,2330.05 511.733,2330.05 " />
<svg:polygon detid="436439812" count="1" value="120" id="4007011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 pos   module  1   Id 436439812 " fill="rgb(255,17,0)" points="511.733,2330.05 532.148,2330.05 532.148,2324.14 511.733,2324.14 " />
<svg:polygon detid="436440068" count="1" value="120" id="4007012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 pos   module  1   Id 436440068 " fill="rgb(255,17,0)" points="511.733,2324.14 532.148,2324.14 532.148,2318.23 511.733,2318.23 " />
<svg:polygon detid="436440324" count="1" value="120" id="4007013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 pos   module  1   Id 436440324 " fill="rgb(255,17,0)" points="511.733,2318.23 532.148,2318.23 532.148,2312.32 511.733,2312.32 " />
<svg:polygon detid="436440580" count="1" value="120" id="4007014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 pos   module  1   Id 436440580 " fill="rgb(255,17,0)" points="511.733,2312.32 532.148,2312.32 532.148,2306.42 511.733,2306.42 " />
<svg:polygon detid="436440836" count="1" value="120" id="4007015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 pos   module  1   Id 436440836 " fill="rgb(255,17,0)" points="511.733,2306.42 532.148,2306.42 532.148,2300.51 511.733,2300.51 " />
<svg:polygon detid="436441092" count="1" value="120" id="4007016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 pos   module  1   Id 436441092 " fill="rgb(255,17,0)" points="511.733,2300.51 532.148,2300.51 532.148,2294.6 511.733,2294.6 " />
<svg:polygon detid="436441348" count="1" value="120" id="4007017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 pos   module  1   Id 436441348 " fill="rgb(255,17,0)" points="511.733,2294.6 532.148,2294.6 532.148,2288.69 511.733,2288.69 " />
<svg:polygon detid="436441604" count="1" value="120" id="4007018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 pos   module  1   Id 436441604 " fill="rgb(255,17,0)" points="511.733,2288.69 532.148,2288.69 532.148,2282.78 511.733,2282.78 " />
<svg:polygon detid="436441860" count="1" value="120" id="4007019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 pos   module  1   Id 436441860 " fill="rgb(255,17,0)" points="511.733,2282.78 532.148,2282.78 532.148,2276.87 511.733,2276.87 " />
<svg:polygon detid="436442116" count="1" value="120" id="4007020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 pos   module  1   Id 436442116 " fill="rgb(255,17,0)" points="511.733,2276.87 532.148,2276.87 532.148,2270.96 511.733,2270.96 " />
<svg:polygon detid="436442372" count="1" value="120" id="4007021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 pos   module  1   Id 436442372 " fill="rgb(255,17,0)" points="511.733,2270.96 532.148,2270.96 532.148,2265.05 511.733,2265.05 " />
<svg:polygon detid="436442628" count="1" value="120" id="4007022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 pos   module  1   Id 436442628 " fill="rgb(255,17,0)" points="511.733,2265.05 532.148,2265.05 532.148,2259.14 511.733,2259.14 " />
<svg:polygon detid="436442884" count="1" value="120" id="4007023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 pos   module  1   Id 436442884 " fill="rgb(255,17,0)" points="511.733,2259.14 532.148,2259.14 532.148,2253.23 511.733,2253.23 " />
<svg:polygon detid="436443140" count="1" value="120" id="4007024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 pos   module  1   Id 436443140 " fill="rgb(255,17,0)" points="511.733,2253.23 532.148,2253.23 532.148,2247.32 511.733,2247.32 " />
<svg:polygon detid="436443396" count="1" value="120" id="4007025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 pos   module  1   Id 436443396 " fill="rgb(255,17,0)" points="511.733,2247.32 532.148,2247.32 532.148,2241.41 511.733,2241.41 " />
<svg:polygon detid="436443652" count="1" value="120" id="4007026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 pos   module  1   Id 436443652 " fill="rgb(255,17,0)" points="511.733,2241.41 532.148,2241.41 532.148,2235.5 511.733,2235.5 " />
<svg:polygon detid="436443908" count="1" value="120" id="4007027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 pos   module  1   Id 436443908 " fill="rgb(255,17,0)" points="511.733,2235.5 532.148,2235.5 532.148,2229.59 511.733,2229.59 " />
<svg:polygon detid="436444164" count="1" value="120" id="4007028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 pos   module  1   Id 436444164 " fill="rgb(255,17,0)" points="511.733,2229.59 532.148,2229.59 532.148,2223.68 511.733,2223.68 " />
<svg:polygon detid="436444420" count="1" value="120" id="4007029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 pos   module  1   Id 436444420 " fill="rgb(255,17,0)" points="511.733,2223.68 532.148,2223.68 532.148,2217.77 511.733,2217.77 " />
<svg:polygon detid="436444676" count="1" value="120" id="4007030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 pos   module  1   Id 436444676 " fill="rgb(255,17,0)" points="511.733,2217.77 532.148,2217.77 532.148,2211.86 511.733,2211.86 " />
<svg:polygon detid="436444932" count="1" value="120" id="4007031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 pos   module  1   Id 436444932 " fill="rgb(255,17,0)" points="511.733,2211.86 532.148,2211.86 532.148,2205.95 511.733,2205.95 " />
<svg:polygon detid="436445188" count="1" value="120" id="4007032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 pos   module  1   Id 436445188 " fill="rgb(255,17,0)" points="511.733,2205.95 532.148,2205.95 532.148,2200.04 511.733,2200.04 " />
<svg:polygon detid="436445444" count="1" value="120" id="4007033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 pos   module  1   Id 436445444 " fill="rgb(255,17,0)" points="511.733,2200.04 532.148,2200.04 532.148,2194.13 511.733,2194.13 " />
<svg:polygon detid="436445700" count="1" value="120" id="4007034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 pos   module  1   Id 436445700 " fill="rgb(255,17,0)" points="511.733,2194.13 532.148,2194.13 532.148,2188.22 511.733,2188.22 " />
<svg:polygon detid="436445956" count="1" value="120" id="4007035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 pos   module  1   Id 436445956 " fill="rgb(255,17,0)" points="511.733,2188.22 532.148,2188.22 532.148,2182.31 511.733,2182.31 " />
<svg:polygon detid="436446212" count="1" value="120" id="4007036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 pos   module  1   Id 436446212 " fill="rgb(255,17,0)" points="511.733,2182.31 532.148,2182.31 532.148,2176.4 511.733,2176.4 " />
<svg:polygon detid="436446468" count="1" value="120" id="4007037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 pos   module  1   Id 436446468 " fill="rgb(255,17,0)" points="511.733,2176.4 532.148,2176.4 532.148,2170.49 511.733,2170.49 " />
<svg:polygon detid="436446724" count="1" value="120" id="4007038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 pos   module  1   Id 436446724 " fill="rgb(255,17,0)" points="511.733,2170.49 532.148,2170.49 532.148,2164.58 511.733,2164.58 " />
<svg:polygon detid="436446980" count="1" value="120" id="4007039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 pos   module  1   Id 436446980 " fill="rgb(255,17,0)" points="511.733,2164.58 532.148,2164.58 532.148,2158.67 511.733,2158.67 " />
<svg:polygon detid="436447236" count="1" value="120" id="4007040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 pos   module  1   Id 436447236 " fill="rgb(255,17,0)" points="511.733,2158.67 532.148,2158.67 532.148,2152.76 511.733,2152.76 " />
<svg:polygon detid="436447492" count="1" value="120" id="4007041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 pos   module  1   Id 436447492 " fill="rgb(255,17,0)" points="511.733,2152.76 532.148,2152.76 532.148,2146.85 511.733,2146.85 " />
<svg:polygon detid="436447748" count="1" value="120" id="4007042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 pos   module  1   Id 436447748 " fill="rgb(255,17,0)" points="511.733,2146.85 532.148,2146.85 532.148,2140.94 511.733,2140.94 " />
<svg:polygon detid="436448004" count="1" value="120" id="4007043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 pos   module  1   Id 436448004 " fill="rgb(255,17,0)" points="511.733,2140.94 532.148,2140.94 532.148,2135.03 511.733,2135.03 " />
<svg:polygon detid="436448260" count="1" value="120" id="4007044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 pos   module  1   Id 436448260 " fill="rgb(255,17,0)" points="511.733,2135.03 532.148,2135.03 532.148,2129.12 511.733,2129.12 " />
<svg:polygon detid="436448516" count="1" value="120" id="4007045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 pos   module  1   Id 436448516 " fill="rgb(255,17,0)" points="511.733,2129.12 532.148,2129.12 532.148,2123.21 511.733,2123.21 " />
<svg:polygon detid="436448772" count="1" value="120" id="4007046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 pos   module  1   Id 436448772 " fill="rgb(255,17,0)" points="511.733,2123.21 532.148,2123.21 532.148,2117.3 511.733,2117.3 " />
<svg:polygon detid="436449028" count="1" value="120" id="4007047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 pos   module  1   Id 436449028 " fill="rgb(255,17,0)" points="511.733,2117.3 532.148,2117.3 532.148,2111.39 511.733,2111.39 " />
<svg:polygon detid="436449284" count="1" value="120" id="4007048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 pos   module  1   Id 436449284 " fill="rgb(255,17,0)" points="511.733,2111.39 532.148,2111.39 532.148,2105.48 511.733,2105.48 " />
<svg:polygon detid="436449540" count="1" value="120" id="4007049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 pos   module  1   Id 436449540 " fill="rgb(255,17,0)" points="511.733,2105.48 532.148,2105.48 532.148,2099.57 511.733,2099.57 " />
<svg:polygon detid="436449796" count="1" value="120" id="4007050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 pos   module  1   Id 436449796 " fill="rgb(255,17,0)" points="511.733,2099.57 532.148,2099.57 532.148,2093.66 511.733,2093.66 " />
<svg:polygon detid="436450052" count="1" value="120" id="4007051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 pos   module  1   Id 436450052 " fill="rgb(255,17,0)" points="511.733,2093.66 532.148,2093.66 532.148,2087.75 511.733,2087.75 " />
<svg:polygon detid="436450308" count="1" value="120" id="4007052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 pos   module  1   Id 436450308 " fill="rgb(255,17,0)" points="511.733,2087.75 532.148,2087.75 532.148,2081.84 511.733,2081.84 " />
<svg:polygon detid="436450564" count="1" value="120" id="4007053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 pos   module  1   Id 436450564 " fill="rgb(255,17,0)" points="511.733,2081.84 532.148,2081.84 532.148,2075.93 511.733,2075.93 " />
<svg:polygon detid="436450820" count="1" value="120" id="4007054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 pos   module  1   Id 436450820 " fill="rgb(255,17,0)" points="511.733,2075.93 532.148,2075.93 532.148,2070.02 511.733,2070.02 " />
<svg:polygon detid="436437256" count="1" value="120" id="4008001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 pos   module  2   Id 436437256 " fill="rgb(255,17,0)" points="534.7,2389.15 555.115,2389.15 555.115,2383.24 534.7,2383.24 " />
<svg:polygon detid="436437512" count="1" value="120" id="4008002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 pos   module  2   Id 436437512 " fill="rgb(255,17,0)" points="534.7,2383.24 555.115,2383.24 555.115,2377.33 534.7,2377.33 " />
<svg:polygon detid="436437768" count="1" value="120" id="4008003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 pos   module  2   Id 436437768 " fill="rgb(255,17,0)" points="534.7,2377.33 555.115,2377.33 555.115,2371.42 534.7,2371.42 " />
<svg:polygon detid="436438024" count="1" value="120" id="4008004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 pos   module  2   Id 436438024 " fill="rgb(255,17,0)" points="534.7,2371.42 555.115,2371.42 555.115,2365.51 534.7,2365.51 " />
<svg:polygon detid="436438280" count="1" value="120" id="4008005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 pos   module  2   Id 436438280 " fill="rgb(255,17,0)" points="534.7,2365.51 555.115,2365.51 555.115,2359.6 534.7,2359.6 " />
<svg:polygon detid="436438536" count="1" value="120" id="4008006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 pos   module  2   Id 436438536 " fill="rgb(255,17,0)" points="534.7,2359.6 555.115,2359.6 555.115,2353.69 534.7,2353.69 " />
<svg:polygon detid="436438792" count="1" value="120" id="4008007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 pos   module  2   Id 436438792 " fill="rgb(255,17,0)" points="534.7,2353.69 555.115,2353.69 555.115,2347.78 534.7,2347.78 " />
<svg:polygon detid="436439048" count="1" value="120" id="4008008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 pos   module  2   Id 436439048 " fill="rgb(255,17,0)" points="534.7,2347.78 555.115,2347.78 555.115,2341.87 534.7,2341.87 " />
<svg:polygon detid="436439304" count="1" value="120" id="4008009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 pos   module  2   Id 436439304 " fill="rgb(255,17,0)" points="534.7,2341.87 555.115,2341.87 555.115,2335.96 534.7,2335.96 " />
<svg:polygon detid="436439560" count="1" value="120" id="4008010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 pos   module  2   Id 436439560 " fill="rgb(255,17,0)" points="534.7,2335.96 555.115,2335.96 555.115,2330.05 534.7,2330.05 " />
<svg:polygon detid="436439816" count="1" value="120" id="4008011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 pos   module  2   Id 436439816 " fill="rgb(255,17,0)" points="534.7,2330.05 555.115,2330.05 555.115,2324.14 534.7,2324.14 " />
<svg:polygon detid="436440072" count="1" value="120" id="4008012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 pos   module  2   Id 436440072 " fill="rgb(255,17,0)" points="534.7,2324.14 555.115,2324.14 555.115,2318.23 534.7,2318.23 " />
<svg:polygon detid="436440328" count="1" value="120" id="4008013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 pos   module  2   Id 436440328 " fill="rgb(255,17,0)" points="534.7,2318.23 555.115,2318.23 555.115,2312.32 534.7,2312.32 " />
<svg:polygon detid="436440584" count="1" value="120" id="4008014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 pos   module  2   Id 436440584 " fill="rgb(255,17,0)" points="534.7,2312.32 555.115,2312.32 555.115,2306.42 534.7,2306.42 " />
<svg:polygon detid="436440840" count="1" value="120" id="4008015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 pos   module  2   Id 436440840 " fill="rgb(255,17,0)" points="534.7,2306.42 555.115,2306.42 555.115,2300.51 534.7,2300.51 " />
<svg:polygon detid="436441096" count="1" value="120" id="4008016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 pos   module  2   Id 436441096 " fill="rgb(255,17,0)" points="534.7,2300.51 555.115,2300.51 555.115,2294.6 534.7,2294.6 " />
<svg:polygon detid="436441352" count="1" value="120" id="4008017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 pos   module  2   Id 436441352 " fill="rgb(255,17,0)" points="534.7,2294.6 555.115,2294.6 555.115,2288.69 534.7,2288.69 " />
<svg:polygon detid="436441608" count="1" value="120" id="4008018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 pos   module  2   Id 436441608 " fill="rgb(255,17,0)" points="534.7,2288.69 555.115,2288.69 555.115,2282.78 534.7,2282.78 " />
<svg:polygon detid="436441864" count="1" value="120" id="4008019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 pos   module  2   Id 436441864 " fill="rgb(255,17,0)" points="534.7,2282.78 555.115,2282.78 555.115,2276.87 534.7,2276.87 " />
<svg:polygon detid="436442120" count="1" value="120" id="4008020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 pos   module  2   Id 436442120 " fill="rgb(255,17,0)" points="534.7,2276.87 555.115,2276.87 555.115,2270.96 534.7,2270.96 " />
<svg:polygon detid="436442376" count="1" value="120" id="4008021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 pos   module  2   Id 436442376 " fill="rgb(255,17,0)" points="534.7,2270.96 555.115,2270.96 555.115,2265.05 534.7,2265.05 " />
<svg:polygon detid="436442632" count="1" value="120" id="4008022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 pos   module  2   Id 436442632 " fill="rgb(255,17,0)" points="534.7,2265.05 555.115,2265.05 555.115,2259.14 534.7,2259.14 " />
<svg:polygon detid="436442888" count="1" value="120" id="4008023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 pos   module  2   Id 436442888 " fill="rgb(255,17,0)" points="534.7,2259.14 555.115,2259.14 555.115,2253.23 534.7,2253.23 " />
<svg:polygon detid="436443144" count="1" value="120" id="4008024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 pos   module  2   Id 436443144 " fill="rgb(255,17,0)" points="534.7,2253.23 555.115,2253.23 555.115,2247.32 534.7,2247.32 " />
<svg:polygon detid="436443400" count="1" value="120" id="4008025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 pos   module  2   Id 436443400 " fill="rgb(255,17,0)" points="534.7,2247.32 555.115,2247.32 555.115,2241.41 534.7,2241.41 " />
<svg:polygon detid="436443656" count="1" value="120" id="4008026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 pos   module  2   Id 436443656 " fill="rgb(255,17,0)" points="534.7,2241.41 555.115,2241.41 555.115,2235.5 534.7,2235.5 " />
<svg:polygon detid="436443912" count="1" value="120" id="4008027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 pos   module  2   Id 436443912 " fill="rgb(255,17,0)" points="534.7,2235.5 555.115,2235.5 555.115,2229.59 534.7,2229.59 " />
<svg:polygon detid="436444168" count="1" value="120" id="4008028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 pos   module  2   Id 436444168 " fill="rgb(255,17,0)" points="534.7,2229.59 555.115,2229.59 555.115,2223.68 534.7,2223.68 " />
<svg:polygon detid="436444424" count="1" value="120" id="4008029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 pos   module  2   Id 436444424 " fill="rgb(255,17,0)" points="534.7,2223.68 555.115,2223.68 555.115,2217.77 534.7,2217.77 " />
<svg:polygon detid="436444680" count="1" value="120" id="4008030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 pos   module  2   Id 436444680 " fill="rgb(255,17,0)" points="534.7,2217.77 555.115,2217.77 555.115,2211.86 534.7,2211.86 " />
<svg:polygon detid="436444936" count="1" value="120" id="4008031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 pos   module  2   Id 436444936 " fill="rgb(255,17,0)" points="534.7,2211.86 555.115,2211.86 555.115,2205.95 534.7,2205.95 " />
<svg:polygon detid="436445192" count="1" value="120" id="4008032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 pos   module  2   Id 436445192 " fill="rgb(255,17,0)" points="534.7,2205.95 555.115,2205.95 555.115,2200.04 534.7,2200.04 " />
<svg:polygon detid="436445448" count="1" value="120" id="4008033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 pos   module  2   Id 436445448 " fill="rgb(255,17,0)" points="534.7,2200.04 555.115,2200.04 555.115,2194.13 534.7,2194.13 " />
<svg:polygon detid="436445704" count="1" value="120" id="4008034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 pos   module  2   Id 436445704 " fill="rgb(255,17,0)" points="534.7,2194.13 555.115,2194.13 555.115,2188.22 534.7,2188.22 " />
<svg:polygon detid="436445960" count="1" value="120" id="4008035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 pos   module  2   Id 436445960 " fill="rgb(255,17,0)" points="534.7,2188.22 555.115,2188.22 555.115,2182.31 534.7,2182.31 " />
<svg:polygon detid="436446216" count="1" value="120" id="4008036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 pos   module  2   Id 436446216 " fill="rgb(255,17,0)" points="534.7,2182.31 555.115,2182.31 555.115,2176.4 534.7,2176.4 " />
<svg:polygon detid="436446472" count="1" value="120" id="4008037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 pos   module  2   Id 436446472 " fill="rgb(255,17,0)" points="534.7,2176.4 555.115,2176.4 555.115,2170.49 534.7,2170.49 " />
<svg:polygon detid="436446728" count="1" value="120" id="4008038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 pos   module  2   Id 436446728 " fill="rgb(255,17,0)" points="534.7,2170.49 555.115,2170.49 555.115,2164.58 534.7,2164.58 " />
<svg:polygon detid="436446984" count="1" value="120" id="4008039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 pos   module  2   Id 436446984 " fill="rgb(255,17,0)" points="534.7,2164.58 555.115,2164.58 555.115,2158.67 534.7,2158.67 " />
<svg:polygon detid="436447240" count="1" value="120" id="4008040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 pos   module  2   Id 436447240 " fill="rgb(255,17,0)" points="534.7,2158.67 555.115,2158.67 555.115,2152.76 534.7,2152.76 " />
<svg:polygon detid="436447496" count="1" value="120" id="4008041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 pos   module  2   Id 436447496 " fill="rgb(255,17,0)" points="534.7,2152.76 555.115,2152.76 555.115,2146.85 534.7,2146.85 " />
<svg:polygon detid="436447752" count="1" value="120" id="4008042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 pos   module  2   Id 436447752 " fill="rgb(255,17,0)" points="534.7,2146.85 555.115,2146.85 555.115,2140.94 534.7,2140.94 " />
<svg:polygon detid="436448008" count="1" value="120" id="4008043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 pos   module  2   Id 436448008 " fill="rgb(255,17,0)" points="534.7,2140.94 555.115,2140.94 555.115,2135.03 534.7,2135.03 " />
<svg:polygon detid="436448264" count="1" value="120" id="4008044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 pos   module  2   Id 436448264 " fill="rgb(255,17,0)" points="534.7,2135.03 555.115,2135.03 555.115,2129.12 534.7,2129.12 " />
<svg:polygon detid="436448520" count="1" value="120" id="4008045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 pos   module  2   Id 436448520 " fill="rgb(255,17,0)" points="534.7,2129.12 555.115,2129.12 555.115,2123.21 534.7,2123.21 " />
<svg:polygon detid="436448776" count="1" value="120" id="4008046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 pos   module  2   Id 436448776 " fill="rgb(255,17,0)" points="534.7,2123.21 555.115,2123.21 555.115,2117.3 534.7,2117.3 " />
<svg:polygon detid="436449032" count="1" value="120" id="4008047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 pos   module  2   Id 436449032 " fill="rgb(255,17,0)" points="534.7,2117.3 555.115,2117.3 555.115,2111.39 534.7,2111.39 " />
<svg:polygon detid="436449288" count="1" value="120" id="4008048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 pos   module  2   Id 436449288 " fill="rgb(255,17,0)" points="534.7,2111.39 555.115,2111.39 555.115,2105.48 534.7,2105.48 " />
<svg:polygon detid="436449544" count="1" value="120" id="4008049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 pos   module  2   Id 436449544 " fill="rgb(255,17,0)" points="534.7,2105.48 555.115,2105.48 555.115,2099.57 534.7,2099.57 " />
<svg:polygon detid="436449800" count="1" value="120" id="4008050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 pos   module  2   Id 436449800 " fill="rgb(255,17,0)" points="534.7,2099.57 555.115,2099.57 555.115,2093.66 534.7,2093.66 " />
<svg:polygon detid="436450056" count="1" value="120" id="4008051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 pos   module  2   Id 436450056 " fill="rgb(255,17,0)" points="534.7,2093.66 555.115,2093.66 555.115,2087.75 534.7,2087.75 " />
<svg:polygon detid="436450312" count="1" value="120" id="4008052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 pos   module  2   Id 436450312 " fill="rgb(255,17,0)" points="534.7,2087.75 555.115,2087.75 555.115,2081.84 534.7,2081.84 " />
<svg:polygon detid="436450568" count="1" value="120" id="4008053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 pos   module  2   Id 436450568 " fill="rgb(255,17,0)" points="534.7,2081.84 555.115,2081.84 555.115,2075.93 534.7,2075.93 " />
<svg:polygon detid="436450824" count="1" value="120" id="4008054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 pos   module  2   Id 436450824 " fill="rgb(255,17,0)" points="534.7,2075.93 555.115,2075.93 555.115,2070.02 534.7,2070.02 " />
<svg:polygon detid="436437260" count="1" value="120" id="4009001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 pos   module  3   Id 436437260 " fill="rgb(255,17,0)" points="557.667,2389.15 578.081,2389.15 578.081,2383.24 557.667,2383.24 " />
<svg:polygon detid="436437516" count="1" value="120" id="4009002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 pos   module  3   Id 436437516 " fill="rgb(255,17,0)" points="557.667,2383.24 578.081,2383.24 578.081,2377.33 557.667,2377.33 " />
<svg:polygon detid="436437772" count="1" value="120" id="4009003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 pos   module  3   Id 436437772 " fill="rgb(255,17,0)" points="557.667,2377.33 578.081,2377.33 578.081,2371.42 557.667,2371.42 " />
<svg:polygon detid="436438028" count="1" value="120" id="4009004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 pos   module  3   Id 436438028 " fill="rgb(255,17,0)" points="557.667,2371.42 578.081,2371.42 578.081,2365.51 557.667,2365.51 " />
<svg:polygon detid="436438284" count="1" value="120" id="4009005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 pos   module  3   Id 436438284 " fill="rgb(255,17,0)" points="557.667,2365.51 578.081,2365.51 578.081,2359.6 557.667,2359.6 " />
<svg:polygon detid="436438540" count="1" value="120" id="4009006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 pos   module  3   Id 436438540 " fill="rgb(255,17,0)" points="557.667,2359.6 578.081,2359.6 578.081,2353.69 557.667,2353.69 " />
<svg:polygon detid="436438796" count="1" value="120" id="4009007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 pos   module  3   Id 436438796 " fill="rgb(255,17,0)" points="557.667,2353.69 578.081,2353.69 578.081,2347.78 557.667,2347.78 " />
<svg:polygon detid="436439052" count="1" value="120" id="4009008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 pos   module  3   Id 436439052 " fill="rgb(255,17,0)" points="557.667,2347.78 578.081,2347.78 578.081,2341.87 557.667,2341.87 " />
<svg:polygon detid="436439308" count="1" value="120" id="4009009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 pos   module  3   Id 436439308 " fill="rgb(255,17,0)" points="557.667,2341.87 578.081,2341.87 578.081,2335.96 557.667,2335.96 " />
<svg:polygon detid="436439564" count="1" value="120" id="4009010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 pos   module  3   Id 436439564 " fill="rgb(255,17,0)" points="557.667,2335.96 578.081,2335.96 578.081,2330.05 557.667,2330.05 " />
<svg:polygon detid="436439820" count="1" value="120" id="4009011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 pos   module  3   Id 436439820 " fill="rgb(255,17,0)" points="557.667,2330.05 578.081,2330.05 578.081,2324.14 557.667,2324.14 " />
<svg:polygon detid="436440076" count="1" value="120" id="4009012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 pos   module  3   Id 436440076 " fill="rgb(255,17,0)" points="557.667,2324.14 578.081,2324.14 578.081,2318.23 557.667,2318.23 " />
<svg:polygon detid="436440332" count="1" value="120" id="4009013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 pos   module  3   Id 436440332 " fill="rgb(255,17,0)" points="557.667,2318.23 578.081,2318.23 578.081,2312.32 557.667,2312.32 " />
<svg:polygon detid="436440588" count="1" value="120" id="4009014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 pos   module  3   Id 436440588 " fill="rgb(255,17,0)" points="557.667,2312.32 578.081,2312.32 578.081,2306.42 557.667,2306.42 " />
<svg:polygon detid="436440844" count="1" value="120" id="4009015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 pos   module  3   Id 436440844 " fill="rgb(255,17,0)" points="557.667,2306.42 578.081,2306.42 578.081,2300.51 557.667,2300.51 " />
<svg:polygon detid="436441100" count="1" value="120" id="4009016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 pos   module  3   Id 436441100 " fill="rgb(255,17,0)" points="557.667,2300.51 578.081,2300.51 578.081,2294.6 557.667,2294.6 " />
<svg:polygon detid="436441356" count="1" value="120" id="4009017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 pos   module  3   Id 436441356 " fill="rgb(255,17,0)" points="557.667,2294.6 578.081,2294.6 578.081,2288.69 557.667,2288.69 " />
<svg:polygon detid="436441612" count="1" value="120" id="4009018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 pos   module  3   Id 436441612 " fill="rgb(255,17,0)" points="557.667,2288.69 578.081,2288.69 578.081,2282.78 557.667,2282.78 " />
<svg:polygon detid="436441868" count="1" value="120" id="4009019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 pos   module  3   Id 436441868 " fill="rgb(255,17,0)" points="557.667,2282.78 578.081,2282.78 578.081,2276.87 557.667,2276.87 " />
<svg:polygon detid="436442124" count="1" value="120" id="4009020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 pos   module  3   Id 436442124 " fill="rgb(255,17,0)" points="557.667,2276.87 578.081,2276.87 578.081,2270.96 557.667,2270.96 " />
<svg:polygon detid="436442380" count="1" value="120" id="4009021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 pos   module  3   Id 436442380 " fill="rgb(255,17,0)" points="557.667,2270.96 578.081,2270.96 578.081,2265.05 557.667,2265.05 " />
<svg:polygon detid="436442636" count="1" value="120" id="4009022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 pos   module  3   Id 436442636 " fill="rgb(255,17,0)" points="557.667,2265.05 578.081,2265.05 578.081,2259.14 557.667,2259.14 " />
<svg:polygon detid="436442892" count="1" value="120" id="4009023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 pos   module  3   Id 436442892 " fill="rgb(255,17,0)" points="557.667,2259.14 578.081,2259.14 578.081,2253.23 557.667,2253.23 " />
<svg:polygon detid="436443148" count="1" value="120" id="4009024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 pos   module  3   Id 436443148 " fill="rgb(255,17,0)" points="557.667,2253.23 578.081,2253.23 578.081,2247.32 557.667,2247.32 " />
<svg:polygon detid="436443404" count="1" value="120" id="4009025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 pos   module  3   Id 436443404 " fill="rgb(255,17,0)" points="557.667,2247.32 578.081,2247.32 578.081,2241.41 557.667,2241.41 " />
<svg:polygon detid="436443660" count="1" value="120" id="4009026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 pos   module  3   Id 436443660 " fill="rgb(255,17,0)" points="557.667,2241.41 578.081,2241.41 578.081,2235.5 557.667,2235.5 " />
<svg:polygon detid="436443916" count="1" value="120" id="4009027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 pos   module  3   Id 436443916 " fill="rgb(255,17,0)" points="557.667,2235.5 578.081,2235.5 578.081,2229.59 557.667,2229.59 " />
<svg:polygon detid="436444172" count="1" value="120" id="4009028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 pos   module  3   Id 436444172 " fill="rgb(255,17,0)" points="557.667,2229.59 578.081,2229.59 578.081,2223.68 557.667,2223.68 " />
<svg:polygon detid="436444428" count="1" value="120" id="4009029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 pos   module  3   Id 436444428 " fill="rgb(255,17,0)" points="557.667,2223.68 578.081,2223.68 578.081,2217.77 557.667,2217.77 " />
<svg:polygon detid="436444684" count="1" value="120" id="4009030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 pos   module  3   Id 436444684 " fill="rgb(255,17,0)" points="557.667,2217.77 578.081,2217.77 578.081,2211.86 557.667,2211.86 " />
<svg:polygon detid="436444940" count="1" value="120" id="4009031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 pos   module  3   Id 436444940 " fill="rgb(255,17,0)" points="557.667,2211.86 578.081,2211.86 578.081,2205.95 557.667,2205.95 " />
<svg:polygon detid="436445196" count="1" value="120" id="4009032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 pos   module  3   Id 436445196 " fill="rgb(255,17,0)" points="557.667,2205.95 578.081,2205.95 578.081,2200.04 557.667,2200.04 " />
<svg:polygon detid="436445452" count="1" value="120" id="4009033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 pos   module  3   Id 436445452 " fill="rgb(255,17,0)" points="557.667,2200.04 578.081,2200.04 578.081,2194.13 557.667,2194.13 " />
<svg:polygon detid="436445708" count="1" value="120" id="4009034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 pos   module  3   Id 436445708 " fill="rgb(255,17,0)" points="557.667,2194.13 578.081,2194.13 578.081,2188.22 557.667,2188.22 " />
<svg:polygon detid="436445964" count="1" value="120" id="4009035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 pos   module  3   Id 436445964 " fill="rgb(255,17,0)" points="557.667,2188.22 578.081,2188.22 578.081,2182.31 557.667,2182.31 " />
<svg:polygon detid="436446220" count="1" value="120" id="4009036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 pos   module  3   Id 436446220 " fill="rgb(255,17,0)" points="557.667,2182.31 578.081,2182.31 578.081,2176.4 557.667,2176.4 " />
<svg:polygon detid="436446476" count="1" value="120" id="4009037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 pos   module  3   Id 436446476 " fill="rgb(255,17,0)" points="557.667,2176.4 578.081,2176.4 578.081,2170.49 557.667,2170.49 " />
<svg:polygon detid="436446732" count="1" value="120" id="4009038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 pos   module  3   Id 436446732 " fill="rgb(255,17,0)" points="557.667,2170.49 578.081,2170.49 578.081,2164.58 557.667,2164.58 " />
<svg:polygon detid="436446988" count="1" value="120" id="4009039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 pos   module  3   Id 436446988 " fill="rgb(255,17,0)" points="557.667,2164.58 578.081,2164.58 578.081,2158.67 557.667,2158.67 " />
<svg:polygon detid="436447244" count="1" value="120" id="4009040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 pos   module  3   Id 436447244 " fill="rgb(255,17,0)" points="557.667,2158.67 578.081,2158.67 578.081,2152.76 557.667,2152.76 " />
<svg:polygon detid="436447500" count="1" value="120" id="4009041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 pos   module  3   Id 436447500 " fill="rgb(255,17,0)" points="557.667,2152.76 578.081,2152.76 578.081,2146.85 557.667,2146.85 " />
<svg:polygon detid="436447756" count="1" value="120" id="4009042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 pos   module  3   Id 436447756 " fill="rgb(255,17,0)" points="557.667,2146.85 578.081,2146.85 578.081,2140.94 557.667,2140.94 " />
<svg:polygon detid="436448012" count="1" value="120" id="4009043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 pos   module  3   Id 436448012 " fill="rgb(255,17,0)" points="557.667,2140.94 578.081,2140.94 578.081,2135.03 557.667,2135.03 " />
<svg:polygon detid="436448268" count="1" value="120" id="4009044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 pos   module  3   Id 436448268 " fill="rgb(255,17,0)" points="557.667,2135.03 578.081,2135.03 578.081,2129.12 557.667,2129.12 " />
<svg:polygon detid="436448524" count="1" value="120" id="4009045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 pos   module  3   Id 436448524 " fill="rgb(255,17,0)" points="557.667,2129.12 578.081,2129.12 578.081,2123.21 557.667,2123.21 " />
<svg:polygon detid="436448780" count="1" value="120" id="4009046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 pos   module  3   Id 436448780 " fill="rgb(255,17,0)" points="557.667,2123.21 578.081,2123.21 578.081,2117.3 557.667,2117.3 " />
<svg:polygon detid="436449036" count="1" value="120" id="4009047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 pos   module  3   Id 436449036 " fill="rgb(255,17,0)" points="557.667,2117.3 578.081,2117.3 578.081,2111.39 557.667,2111.39 " />
<svg:polygon detid="436449292" count="1" value="120" id="4009048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 pos   module  3   Id 436449292 " fill="rgb(255,17,0)" points="557.667,2111.39 578.081,2111.39 578.081,2105.48 557.667,2105.48 " />
<svg:polygon detid="436449548" count="1" value="120" id="4009049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 pos   module  3   Id 436449548 " fill="rgb(255,17,0)" points="557.667,2105.48 578.081,2105.48 578.081,2099.57 557.667,2099.57 " />
<svg:polygon detid="436449804" count="1" value="120" id="4009050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 pos   module  3   Id 436449804 " fill="rgb(255,17,0)" points="557.667,2099.57 578.081,2099.57 578.081,2093.66 557.667,2093.66 " />
<svg:polygon detid="436450060" count="1" value="120" id="4009051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 pos   module  3   Id 436450060 " fill="rgb(255,17,0)" points="557.667,2093.66 578.081,2093.66 578.081,2087.75 557.667,2087.75 " />
<svg:polygon detid="436450316" count="1" value="120" id="4009052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 pos   module  3   Id 436450316 " fill="rgb(255,17,0)" points="557.667,2087.75 578.081,2087.75 578.081,2081.84 557.667,2081.84 " />
<svg:polygon detid="436450572" count="1" value="120" id="4009053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 pos   module  3   Id 436450572 " fill="rgb(255,17,0)" points="557.667,2081.84 578.081,2081.84 578.081,2075.93 557.667,2075.93 " />
<svg:polygon detid="436450828" count="1" value="120" id="4009054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 pos   module  3   Id 436450828 " fill="rgb(255,17,0)" points="557.667,2075.93 578.081,2075.93 578.081,2070.02 557.667,2070.02 " />
<svg:polygon detid="436437264" count="1" value="120" id="4010001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 pos   module  4   Id 436437264 " fill="rgb(255,17,0)" points="580.633,2389.15 601.048,2389.15 601.048,2383.24 580.633,2383.24 " />
<svg:polygon detid="436437520" count="1" value="120" id="4010002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 pos   module  4   Id 436437520 " fill="rgb(255,17,0)" points="580.633,2383.24 601.048,2383.24 601.048,2377.33 580.633,2377.33 " />
<svg:polygon detid="436437776" count="1" value="120" id="4010003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 pos   module  4   Id 436437776 " fill="rgb(255,17,0)" points="580.633,2377.33 601.048,2377.33 601.048,2371.42 580.633,2371.42 " />
<svg:polygon detid="436438032" count="1" value="120" id="4010004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 pos   module  4   Id 436438032 " fill="rgb(255,17,0)" points="580.633,2371.42 601.048,2371.42 601.048,2365.51 580.633,2365.51 " />
<svg:polygon detid="436438288" count="1" value="120" id="4010005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 pos   module  4   Id 436438288 " fill="rgb(255,17,0)" points="580.633,2365.51 601.048,2365.51 601.048,2359.6 580.633,2359.6 " />
<svg:polygon detid="436438544" count="1" value="120" id="4010006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 pos   module  4   Id 436438544 " fill="rgb(255,17,0)" points="580.633,2359.6 601.048,2359.6 601.048,2353.69 580.633,2353.69 " />
<svg:polygon detid="436438800" count="1" value="120" id="4010007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 pos   module  4   Id 436438800 " fill="rgb(255,17,0)" points="580.633,2353.69 601.048,2353.69 601.048,2347.78 580.633,2347.78 " />
<svg:polygon detid="436439056" count="1" value="120" id="4010008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 pos   module  4   Id 436439056 " fill="rgb(255,17,0)" points="580.633,2347.78 601.048,2347.78 601.048,2341.87 580.633,2341.87 " />
<svg:polygon detid="436439312" count="1" value="120" id="4010009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 pos   module  4   Id 436439312 " fill="rgb(255,17,0)" points="580.633,2341.87 601.048,2341.87 601.048,2335.96 580.633,2335.96 " />
<svg:polygon detid="436439568" count="1" value="120" id="4010010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 pos   module  4   Id 436439568 " fill="rgb(255,17,0)" points="580.633,2335.96 601.048,2335.96 601.048,2330.05 580.633,2330.05 " />
<svg:polygon detid="436439824" count="1" value="120" id="4010011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 pos   module  4   Id 436439824 " fill="rgb(255,17,0)" points="580.633,2330.05 601.048,2330.05 601.048,2324.14 580.633,2324.14 " />
<svg:polygon detid="436440080" count="1" value="120" id="4010012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 pos   module  4   Id 436440080 " fill="rgb(255,17,0)" points="580.633,2324.14 601.048,2324.14 601.048,2318.23 580.633,2318.23 " />
<svg:polygon detid="436440336" count="1" value="120" id="4010013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 pos   module  4   Id 436440336 " fill="rgb(255,17,0)" points="580.633,2318.23 601.048,2318.23 601.048,2312.32 580.633,2312.32 " />
<svg:polygon detid="436440592" count="1" value="120" id="4010014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 pos   module  4   Id 436440592 " fill="rgb(255,17,0)" points="580.633,2312.32 601.048,2312.32 601.048,2306.42 580.633,2306.42 " />
<svg:polygon detid="436440848" count="1" value="120" id="4010015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 pos   module  4   Id 436440848 " fill="rgb(255,17,0)" points="580.633,2306.42 601.048,2306.42 601.048,2300.51 580.633,2300.51 " />
<svg:polygon detid="436441104" count="1" value="120" id="4010016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 pos   module  4   Id 436441104 " fill="rgb(255,17,0)" points="580.633,2300.51 601.048,2300.51 601.048,2294.6 580.633,2294.6 " />
<svg:polygon detid="436441360" count="1" value="120" id="4010017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 pos   module  4   Id 436441360 " fill="rgb(255,17,0)" points="580.633,2294.6 601.048,2294.6 601.048,2288.69 580.633,2288.69 " />
<svg:polygon detid="436441616" count="1" value="120" id="4010018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 pos   module  4   Id 436441616 " fill="rgb(255,17,0)" points="580.633,2288.69 601.048,2288.69 601.048,2282.78 580.633,2282.78 " />
<svg:polygon detid="436441872" count="1" value="120" id="4010019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 pos   module  4   Id 436441872 " fill="rgb(255,17,0)" points="580.633,2282.78 601.048,2282.78 601.048,2276.87 580.633,2276.87 " />
<svg:polygon detid="436442128" count="1" value="120" id="4010020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 pos   module  4   Id 436442128 " fill="rgb(255,17,0)" points="580.633,2276.87 601.048,2276.87 601.048,2270.96 580.633,2270.96 " />
<svg:polygon detid="436442384" count="1" value="120" id="4010021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 pos   module  4   Id 436442384 " fill="rgb(255,17,0)" points="580.633,2270.96 601.048,2270.96 601.048,2265.05 580.633,2265.05 " />
<svg:polygon detid="436442640" count="1" value="120" id="4010022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 pos   module  4   Id 436442640 " fill="rgb(255,17,0)" points="580.633,2265.05 601.048,2265.05 601.048,2259.14 580.633,2259.14 " />
<svg:polygon detid="436442896" count="1" value="120" id="4010023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 pos   module  4   Id 436442896 " fill="rgb(255,17,0)" points="580.633,2259.14 601.048,2259.14 601.048,2253.23 580.633,2253.23 " />
<svg:polygon detid="436443152" count="1" value="120" id="4010024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 pos   module  4   Id 436443152 " fill="rgb(255,17,0)" points="580.633,2253.23 601.048,2253.23 601.048,2247.32 580.633,2247.32 " />
<svg:polygon detid="436443408" count="1" value="120" id="4010025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 pos   module  4   Id 436443408 " fill="rgb(255,17,0)" points="580.633,2247.32 601.048,2247.32 601.048,2241.41 580.633,2241.41 " />
<svg:polygon detid="436443664" count="1" value="120" id="4010026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 pos   module  4   Id 436443664 " fill="rgb(255,17,0)" points="580.633,2241.41 601.048,2241.41 601.048,2235.5 580.633,2235.5 " />
<svg:polygon detid="436443920" count="1" value="120" id="4010027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 pos   module  4   Id 436443920 " fill="rgb(255,17,0)" points="580.633,2235.5 601.048,2235.5 601.048,2229.59 580.633,2229.59 " />
<svg:polygon detid="436444176" count="1" value="120" id="4010028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 pos   module  4   Id 436444176 " fill="rgb(255,17,0)" points="580.633,2229.59 601.048,2229.59 601.048,2223.68 580.633,2223.68 " />
<svg:polygon detid="436444432" count="1" value="120" id="4010029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 pos   module  4   Id 436444432 " fill="rgb(255,17,0)" points="580.633,2223.68 601.048,2223.68 601.048,2217.77 580.633,2217.77 " />
<svg:polygon detid="436444688" count="1" value="120" id="4010030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 pos   module  4   Id 436444688 " fill="rgb(255,17,0)" points="580.633,2217.77 601.048,2217.77 601.048,2211.86 580.633,2211.86 " />
<svg:polygon detid="436444944" count="1" value="120" id="4010031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 pos   module  4   Id 436444944 " fill="rgb(255,17,0)" points="580.633,2211.86 601.048,2211.86 601.048,2205.95 580.633,2205.95 " />
<svg:polygon detid="436445200" count="1" value="120" id="4010032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 pos   module  4   Id 436445200 " fill="rgb(255,17,0)" points="580.633,2205.95 601.048,2205.95 601.048,2200.04 580.633,2200.04 " />
<svg:polygon detid="436445456" count="1" value="120" id="4010033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 pos   module  4   Id 436445456 " fill="rgb(255,17,0)" points="580.633,2200.04 601.048,2200.04 601.048,2194.13 580.633,2194.13 " />
<svg:polygon detid="436445712" count="1" value="120" id="4010034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 pos   module  4   Id 436445712 " fill="rgb(255,17,0)" points="580.633,2194.13 601.048,2194.13 601.048,2188.22 580.633,2188.22 " />
<svg:polygon detid="436445968" count="1" value="120" id="4010035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 pos   module  4   Id 436445968 " fill="rgb(255,17,0)" points="580.633,2188.22 601.048,2188.22 601.048,2182.31 580.633,2182.31 " />
<svg:polygon detid="436446224" count="1" value="120" id="4010036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 pos   module  4   Id 436446224 " fill="rgb(255,17,0)" points="580.633,2182.31 601.048,2182.31 601.048,2176.4 580.633,2176.4 " />
<svg:polygon detid="436446480" count="1" value="120" id="4010037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 pos   module  4   Id 436446480 " fill="rgb(255,17,0)" points="580.633,2176.4 601.048,2176.4 601.048,2170.49 580.633,2170.49 " />
<svg:polygon detid="436446736" count="1" value="120" id="4010038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 pos   module  4   Id 436446736 " fill="rgb(255,17,0)" points="580.633,2170.49 601.048,2170.49 601.048,2164.58 580.633,2164.58 " />
<svg:polygon detid="436446992" count="1" value="120" id="4010039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 pos   module  4   Id 436446992 " fill="rgb(255,17,0)" points="580.633,2164.58 601.048,2164.58 601.048,2158.67 580.633,2158.67 " />
<svg:polygon detid="436447248" count="1" value="120" id="4010040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 pos   module  4   Id 436447248 " fill="rgb(255,17,0)" points="580.633,2158.67 601.048,2158.67 601.048,2152.76 580.633,2152.76 " />
<svg:polygon detid="436447504" count="1" value="120" id="4010041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 pos   module  4   Id 436447504 " fill="rgb(255,17,0)" points="580.633,2152.76 601.048,2152.76 601.048,2146.85 580.633,2146.85 " />
<svg:polygon detid="436447760" count="1" value="120" id="4010042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 pos   module  4   Id 436447760 " fill="rgb(255,17,0)" points="580.633,2146.85 601.048,2146.85 601.048,2140.94 580.633,2140.94 " />
<svg:polygon detid="436448016" count="1" value="120" id="4010043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 pos   module  4   Id 436448016 " fill="rgb(255,17,0)" points="580.633,2140.94 601.048,2140.94 601.048,2135.03 580.633,2135.03 " />
<svg:polygon detid="436448272" count="1" value="120" id="4010044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 pos   module  4   Id 436448272 " fill="rgb(255,17,0)" points="580.633,2135.03 601.048,2135.03 601.048,2129.12 580.633,2129.12 " />
<svg:polygon detid="436448528" count="1" value="120" id="4010045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 pos   module  4   Id 436448528 " fill="rgb(255,17,0)" points="580.633,2129.12 601.048,2129.12 601.048,2123.21 580.633,2123.21 " />
<svg:polygon detid="436448784" count="1" value="120" id="4010046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 pos   module  4   Id 436448784 " fill="rgb(255,17,0)" points="580.633,2123.21 601.048,2123.21 601.048,2117.3 580.633,2117.3 " />
<svg:polygon detid="436449040" count="1" value="120" id="4010047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 pos   module  4   Id 436449040 " fill="rgb(255,17,0)" points="580.633,2117.3 601.048,2117.3 601.048,2111.39 580.633,2111.39 " />
<svg:polygon detid="436449296" count="1" value="120" id="4010048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 pos   module  4   Id 436449296 " fill="rgb(255,17,0)" points="580.633,2111.39 601.048,2111.39 601.048,2105.48 580.633,2105.48 " />
<svg:polygon detid="436449552" count="1" value="120" id="4010049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 pos   module  4   Id 436449552 " fill="rgb(255,17,0)" points="580.633,2105.48 601.048,2105.48 601.048,2099.57 580.633,2099.57 " />
<svg:polygon detid="436449808" count="1" value="120" id="4010050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 pos   module  4   Id 436449808 " fill="rgb(255,17,0)" points="580.633,2099.57 601.048,2099.57 601.048,2093.66 580.633,2093.66 " />
<svg:polygon detid="436450064" count="1" value="120" id="4010051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 pos   module  4   Id 436450064 " fill="rgb(255,17,0)" points="580.633,2093.66 601.048,2093.66 601.048,2087.75 580.633,2087.75 " />
<svg:polygon detid="436450320" count="1" value="120" id="4010052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 pos   module  4   Id 436450320 " fill="rgb(255,17,0)" points="580.633,2087.75 601.048,2087.75 601.048,2081.84 580.633,2081.84 " />
<svg:polygon detid="436450576" count="1" value="120" id="4010053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 pos   module  4   Id 436450576 " fill="rgb(255,17,0)" points="580.633,2081.84 601.048,2081.84 601.048,2075.93 580.633,2075.93 " />
<svg:polygon detid="436450832" count="1" value="120" id="4010054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 pos   module  4   Id 436450832 " fill="rgb(255,17,0)" points="580.633,2075.93 601.048,2075.93 601.048,2070.02 580.633,2070.02 " />
<svg:polygon detid="436437268" count="1" value="120" id="4011001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 pos   module  5   Id 436437268 " fill="rgb(255,17,0)" points="603.6,2389.15 624.014,2389.15 624.014,2383.24 603.6,2383.24 " />
<svg:polygon detid="436437524" count="1" value="120" id="4011002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 pos   module  5   Id 436437524 " fill="rgb(255,17,0)" points="603.6,2383.24 624.014,2383.24 624.014,2377.33 603.6,2377.33 " />
<svg:polygon detid="436437780" count="1" value="120" id="4011003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 pos   module  5   Id 436437780 " fill="rgb(255,17,0)" points="603.6,2377.33 624.014,2377.33 624.014,2371.42 603.6,2371.42 " />
<svg:polygon detid="436438036" count="1" value="120" id="4011004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 pos   module  5   Id 436438036 " fill="rgb(255,17,0)" points="603.6,2371.42 624.014,2371.42 624.014,2365.51 603.6,2365.51 " />
<svg:polygon detid="436438292" count="1" value="120" id="4011005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 pos   module  5   Id 436438292 " fill="rgb(255,17,0)" points="603.6,2365.51 624.014,2365.51 624.014,2359.6 603.6,2359.6 " />
<svg:polygon detid="436438548" count="1" value="120" id="4011006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 pos   module  5   Id 436438548 " fill="rgb(255,17,0)" points="603.6,2359.6 624.014,2359.6 624.014,2353.69 603.6,2353.69 " />
<svg:polygon detid="436438804" count="1" value="120" id="4011007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 pos   module  5   Id 436438804 " fill="rgb(255,17,0)" points="603.6,2353.69 624.014,2353.69 624.014,2347.78 603.6,2347.78 " />
<svg:polygon detid="436439060" count="1" value="120" id="4011008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 pos   module  5   Id 436439060 " fill="rgb(255,17,0)" points="603.6,2347.78 624.014,2347.78 624.014,2341.87 603.6,2341.87 " />
<svg:polygon detid="436439316" count="1" value="120" id="4011009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 pos   module  5   Id 436439316 " fill="rgb(255,17,0)" points="603.6,2341.87 624.014,2341.87 624.014,2335.96 603.6,2335.96 " />
<svg:polygon detid="436439572" count="1" value="120" id="4011010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 pos   module  5   Id 436439572 " fill="rgb(255,17,0)" points="603.6,2335.96 624.014,2335.96 624.014,2330.05 603.6,2330.05 " />
<svg:polygon detid="436439828" count="1" value="120" id="4011011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 pos   module  5   Id 436439828 " fill="rgb(255,17,0)" points="603.6,2330.05 624.014,2330.05 624.014,2324.14 603.6,2324.14 " />
<svg:polygon detid="436440084" count="1" value="120" id="4011012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 pos   module  5   Id 436440084 " fill="rgb(255,17,0)" points="603.6,2324.14 624.014,2324.14 624.014,2318.23 603.6,2318.23 " />
<svg:polygon detid="436440340" count="1" value="120" id="4011013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 pos   module  5   Id 436440340 " fill="rgb(255,17,0)" points="603.6,2318.23 624.014,2318.23 624.014,2312.32 603.6,2312.32 " />
<svg:polygon detid="436440596" count="1" value="120" id="4011014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 pos   module  5   Id 436440596 " fill="rgb(255,17,0)" points="603.6,2312.32 624.014,2312.32 624.014,2306.42 603.6,2306.42 " />
<svg:polygon detid="436440852" count="1" value="120" id="4011015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 pos   module  5   Id 436440852 " fill="rgb(255,17,0)" points="603.6,2306.42 624.014,2306.42 624.014,2300.51 603.6,2300.51 " />
<svg:polygon detid="436441108" count="1" value="120" id="4011016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 pos   module  5   Id 436441108 " fill="rgb(255,17,0)" points="603.6,2300.51 624.014,2300.51 624.014,2294.6 603.6,2294.6 " />
<svg:polygon detid="436441364" count="1" value="120" id="4011017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 pos   module  5   Id 436441364 " fill="rgb(255,17,0)" points="603.6,2294.6 624.014,2294.6 624.014,2288.69 603.6,2288.69 " />
<svg:polygon detid="436441620" count="1" value="120" id="4011018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 pos   module  5   Id 436441620 " fill="rgb(255,17,0)" points="603.6,2288.69 624.014,2288.69 624.014,2282.78 603.6,2282.78 " />
<svg:polygon detid="436441876" count="1" value="120" id="4011019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 pos   module  5   Id 436441876 " fill="rgb(255,17,0)" points="603.6,2282.78 624.014,2282.78 624.014,2276.87 603.6,2276.87 " />
<svg:polygon detid="436442132" count="1" value="120" id="4011020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 pos   module  5   Id 436442132 " fill="rgb(255,17,0)" points="603.6,2276.87 624.014,2276.87 624.014,2270.96 603.6,2270.96 " />
<svg:polygon detid="436442388" count="1" value="120" id="4011021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 pos   module  5   Id 436442388 " fill="rgb(255,17,0)" points="603.6,2270.96 624.014,2270.96 624.014,2265.05 603.6,2265.05 " />
<svg:polygon detid="436442644" count="1" value="120" id="4011022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 pos   module  5   Id 436442644 " fill="rgb(255,17,0)" points="603.6,2265.05 624.014,2265.05 624.014,2259.14 603.6,2259.14 " />
<svg:polygon detid="436442900" count="1" value="120" id="4011023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 pos   module  5   Id 436442900 " fill="rgb(255,17,0)" points="603.6,2259.14 624.014,2259.14 624.014,2253.23 603.6,2253.23 " />
<svg:polygon detid="436443156" count="1" value="120" id="4011024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 pos   module  5   Id 436443156 " fill="rgb(255,17,0)" points="603.6,2253.23 624.014,2253.23 624.014,2247.32 603.6,2247.32 " />
<svg:polygon detid="436443412" count="1" value="120" id="4011025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 pos   module  5   Id 436443412 " fill="rgb(255,17,0)" points="603.6,2247.32 624.014,2247.32 624.014,2241.41 603.6,2241.41 " />
<svg:polygon detid="436443668" count="1" value="120" id="4011026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 pos   module  5   Id 436443668 " fill="rgb(255,17,0)" points="603.6,2241.41 624.014,2241.41 624.014,2235.5 603.6,2235.5 " />
<svg:polygon detid="436443924" count="1" value="120" id="4011027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 pos   module  5   Id 436443924 " fill="rgb(255,17,0)" points="603.6,2235.5 624.014,2235.5 624.014,2229.59 603.6,2229.59 " />
<svg:polygon detid="436444180" count="1" value="120" id="4011028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 pos   module  5   Id 436444180 " fill="rgb(255,17,0)" points="603.6,2229.59 624.014,2229.59 624.014,2223.68 603.6,2223.68 " />
<svg:polygon detid="436444436" count="1" value="120" id="4011029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 pos   module  5   Id 436444436 " fill="rgb(255,17,0)" points="603.6,2223.68 624.014,2223.68 624.014,2217.77 603.6,2217.77 " />
<svg:polygon detid="436444692" count="1" value="120" id="4011030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 pos   module  5   Id 436444692 " fill="rgb(255,17,0)" points="603.6,2217.77 624.014,2217.77 624.014,2211.86 603.6,2211.86 " />
<svg:polygon detid="436444948" count="1" value="120" id="4011031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 pos   module  5   Id 436444948 " fill="rgb(255,17,0)" points="603.6,2211.86 624.014,2211.86 624.014,2205.95 603.6,2205.95 " />
<svg:polygon detid="436445204" count="1" value="120" id="4011032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 pos   module  5   Id 436445204 " fill="rgb(255,17,0)" points="603.6,2205.95 624.014,2205.95 624.014,2200.04 603.6,2200.04 " />
<svg:polygon detid="436445460" count="1" value="120" id="4011033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 pos   module  5   Id 436445460 " fill="rgb(255,17,0)" points="603.6,2200.04 624.014,2200.04 624.014,2194.13 603.6,2194.13 " />
<svg:polygon detid="436445716" count="1" value="120" id="4011034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 pos   module  5   Id 436445716 " fill="rgb(255,17,0)" points="603.6,2194.13 624.014,2194.13 624.014,2188.22 603.6,2188.22 " />
<svg:polygon detid="436445972" count="1" value="120" id="4011035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 pos   module  5   Id 436445972 " fill="rgb(255,17,0)" points="603.6,2188.22 624.014,2188.22 624.014,2182.31 603.6,2182.31 " />
<svg:polygon detid="436446228" count="1" value="120" id="4011036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 pos   module  5   Id 436446228 " fill="rgb(255,17,0)" points="603.6,2182.31 624.014,2182.31 624.014,2176.4 603.6,2176.4 " />
<svg:polygon detid="436446484" count="1" value="120" id="4011037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 pos   module  5   Id 436446484 " fill="rgb(255,17,0)" points="603.6,2176.4 624.014,2176.4 624.014,2170.49 603.6,2170.49 " />
<svg:polygon detid="436446740" count="1" value="120" id="4011038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 pos   module  5   Id 436446740 " fill="rgb(255,17,0)" points="603.6,2170.49 624.014,2170.49 624.014,2164.58 603.6,2164.58 " />
<svg:polygon detid="436446996" count="1" value="120" id="4011039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 pos   module  5   Id 436446996 " fill="rgb(255,17,0)" points="603.6,2164.58 624.014,2164.58 624.014,2158.67 603.6,2158.67 " />
<svg:polygon detid="436447252" count="1" value="120" id="4011040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 pos   module  5   Id 436447252 " fill="rgb(255,17,0)" points="603.6,2158.67 624.014,2158.67 624.014,2152.76 603.6,2152.76 " />
<svg:polygon detid="436447508" count="1" value="120" id="4011041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 pos   module  5   Id 436447508 " fill="rgb(255,17,0)" points="603.6,2152.76 624.014,2152.76 624.014,2146.85 603.6,2146.85 " />
<svg:polygon detid="436447764" count="1" value="120" id="4011042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 pos   module  5   Id 436447764 " fill="rgb(255,17,0)" points="603.6,2146.85 624.014,2146.85 624.014,2140.94 603.6,2140.94 " />
<svg:polygon detid="436448020" count="1" value="120" id="4011043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 pos   module  5   Id 436448020 " fill="rgb(255,17,0)" points="603.6,2140.94 624.014,2140.94 624.014,2135.03 603.6,2135.03 " />
<svg:polygon detid="436448276" count="1" value="120" id="4011044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 pos   module  5   Id 436448276 " fill="rgb(255,17,0)" points="603.6,2135.03 624.014,2135.03 624.014,2129.12 603.6,2129.12 " />
<svg:polygon detid="436448532" count="1" value="120" id="4011045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 pos   module  5   Id 436448532 " fill="rgb(255,17,0)" points="603.6,2129.12 624.014,2129.12 624.014,2123.21 603.6,2123.21 " />
<svg:polygon detid="436448788" count="1" value="120" id="4011046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 pos   module  5   Id 436448788 " fill="rgb(255,17,0)" points="603.6,2123.21 624.014,2123.21 624.014,2117.3 603.6,2117.3 " />
<svg:polygon detid="436449044" count="1" value="120" id="4011047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 pos   module  5   Id 436449044 " fill="rgb(255,17,0)" points="603.6,2117.3 624.014,2117.3 624.014,2111.39 603.6,2111.39 " />
<svg:polygon detid="436449300" count="1" value="120" id="4011048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 pos   module  5   Id 436449300 " fill="rgb(255,17,0)" points="603.6,2111.39 624.014,2111.39 624.014,2105.48 603.6,2105.48 " />
<svg:polygon detid="436449556" count="1" value="120" id="4011049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 pos   module  5   Id 436449556 " fill="rgb(255,17,0)" points="603.6,2105.48 624.014,2105.48 624.014,2099.57 603.6,2099.57 " />
<svg:polygon detid="436449812" count="1" value="120" id="4011050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 pos   module  5   Id 436449812 " fill="rgb(255,17,0)" points="603.6,2099.57 624.014,2099.57 624.014,2093.66 603.6,2093.66 " />
<svg:polygon detid="436450068" count="1" value="120" id="4011051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 pos   module  5   Id 436450068 " fill="rgb(255,17,0)" points="603.6,2093.66 624.014,2093.66 624.014,2087.75 603.6,2087.75 " />
<svg:polygon detid="436450324" count="1" value="120" id="4011052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 pos   module  5   Id 436450324 " fill="rgb(255,17,0)" points="603.6,2087.75 624.014,2087.75 624.014,2081.84 603.6,2081.84 " />
<svg:polygon detid="436450580" count="1" value="120" id="4011053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 pos   module  5   Id 436450580 " fill="rgb(255,17,0)" points="603.6,2081.84 624.014,2081.84 624.014,2075.93 603.6,2075.93 " />
<svg:polygon detid="436450836" count="1" value="120" id="4011054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 pos   module  5   Id 436450836 " fill="rgb(255,17,0)" points="603.6,2075.93 624.014,2075.93 624.014,2070.02 603.6,2070.02 " />
<svg:polygon detid="436437272" count="1" value="120" id="4012001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 1 pos   module  6   Id 436437272 " fill="rgb(255,17,0)" points="626.566,2389.15 646.981,2389.15 646.981,2383.24 626.566,2383.24 " />
<svg:polygon detid="436437528" count="1" value="120" id="4012002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 2 pos   module  6   Id 436437528 " fill="rgb(255,17,0)" points="626.566,2383.24 646.981,2383.24 646.981,2377.33 626.566,2377.33 " />
<svg:polygon detid="436437784" count="1" value="120" id="4012003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 3 pos   module  6   Id 436437784 " fill="rgb(255,17,0)" points="626.566,2377.33 646.981,2377.33 646.981,2371.42 626.566,2371.42 " />
<svg:polygon detid="436438040" count="1" value="120" id="4012004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 4 pos   module  6   Id 436438040 " fill="rgb(255,17,0)" points="626.566,2371.42 646.981,2371.42 646.981,2365.51 626.566,2365.51 " />
<svg:polygon detid="436438296" count="1" value="120" id="4012005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 5 pos   module  6   Id 436438296 " fill="rgb(255,17,0)" points="626.566,2365.51 646.981,2365.51 646.981,2359.6 626.566,2359.6 " />
<svg:polygon detid="436438552" count="1" value="120" id="4012006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 6 pos   module  6   Id 436438552 " fill="rgb(255,17,0)" points="626.566,2359.6 646.981,2359.6 646.981,2353.69 626.566,2353.69 " />
<svg:polygon detid="436438808" count="1" value="120" id="4012007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 7 pos   module  6   Id 436438808 " fill="rgb(255,17,0)" points="626.566,2353.69 646.981,2353.69 646.981,2347.78 626.566,2347.78 " />
<svg:polygon detid="436439064" count="1" value="120" id="4012008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 8 pos   module  6   Id 436439064 " fill="rgb(255,17,0)" points="626.566,2347.78 646.981,2347.78 646.981,2341.87 626.566,2341.87 " />
<svg:polygon detid="436439320" count="1" value="120" id="4012009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 9 pos   module  6   Id 436439320 " fill="rgb(255,17,0)" points="626.566,2341.87 646.981,2341.87 646.981,2335.96 626.566,2335.96 " />
<svg:polygon detid="436439576" count="1" value="120" id="4012010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 10 pos   module  6   Id 436439576 " fill="rgb(255,17,0)" points="626.566,2335.96 646.981,2335.96 646.981,2330.05 626.566,2330.05 " />
<svg:polygon detid="436439832" count="1" value="120" id="4012011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 11 pos   module  6   Id 436439832 " fill="rgb(255,17,0)" points="626.566,2330.05 646.981,2330.05 646.981,2324.14 626.566,2324.14 " />
<svg:polygon detid="436440088" count="1" value="120" id="4012012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 12 pos   module  6   Id 436440088 " fill="rgb(255,17,0)" points="626.566,2324.14 646.981,2324.14 646.981,2318.23 626.566,2318.23 " />
<svg:polygon detid="436440344" count="1" value="120" id="4012013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 13 pos   module  6   Id 436440344 " fill="rgb(255,17,0)" points="626.566,2318.23 646.981,2318.23 646.981,2312.32 626.566,2312.32 " />
<svg:polygon detid="436440600" count="1" value="120" id="4012014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 14 pos   module  6   Id 436440600 " fill="rgb(255,17,0)" points="626.566,2312.32 646.981,2312.32 646.981,2306.42 626.566,2306.42 " />
<svg:polygon detid="436440856" count="1" value="120" id="4012015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 15 pos   module  6   Id 436440856 " fill="rgb(255,17,0)" points="626.566,2306.42 646.981,2306.42 646.981,2300.51 626.566,2300.51 " />
<svg:polygon detid="436441112" count="1" value="120" id="4012016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 16 pos   module  6   Id 436441112 " fill="rgb(255,17,0)" points="626.566,2300.51 646.981,2300.51 646.981,2294.6 626.566,2294.6 " />
<svg:polygon detid="436441368" count="1" value="120" id="4012017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 17 pos   module  6   Id 436441368 " fill="rgb(255,17,0)" points="626.566,2294.6 646.981,2294.6 646.981,2288.69 626.566,2288.69 " />
<svg:polygon detid="436441624" count="1" value="120" id="4012018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 18 pos   module  6   Id 436441624 " fill="rgb(255,17,0)" points="626.566,2288.69 646.981,2288.69 646.981,2282.78 626.566,2282.78 " />
<svg:polygon detid="436441880" count="1" value="120" id="4012019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 19 pos   module  6   Id 436441880 " fill="rgb(255,17,0)" points="626.566,2282.78 646.981,2282.78 646.981,2276.87 626.566,2276.87 " />
<svg:polygon detid="436442136" count="1" value="120" id="4012020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 20 pos   module  6   Id 436442136 " fill="rgb(255,17,0)" points="626.566,2276.87 646.981,2276.87 646.981,2270.96 626.566,2270.96 " />
<svg:polygon detid="436442392" count="1" value="120" id="4012021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 21 pos   module  6   Id 436442392 " fill="rgb(255,17,0)" points="626.566,2270.96 646.981,2270.96 646.981,2265.05 626.566,2265.05 " />
<svg:polygon detid="436442648" count="1" value="120" id="4012022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 22 pos   module  6   Id 436442648 " fill="rgb(255,17,0)" points="626.566,2265.05 646.981,2265.05 646.981,2259.14 626.566,2259.14 " />
<svg:polygon detid="436442904" count="1" value="120" id="4012023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 23 pos   module  6   Id 436442904 " fill="rgb(255,17,0)" points="626.566,2259.14 646.981,2259.14 646.981,2253.23 626.566,2253.23 " />
<svg:polygon detid="436443160" count="1" value="120" id="4012024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 24 pos   module  6   Id 436443160 " fill="rgb(255,17,0)" points="626.566,2253.23 646.981,2253.23 646.981,2247.32 626.566,2247.32 " />
<svg:polygon detid="436443416" count="1" value="120" id="4012025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 25 pos   module  6   Id 436443416 " fill="rgb(255,17,0)" points="626.566,2247.32 646.981,2247.32 646.981,2241.41 626.566,2241.41 " />
<svg:polygon detid="436443672" count="1" value="120" id="4012026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 26 pos   module  6   Id 436443672 " fill="rgb(255,17,0)" points="626.566,2241.41 646.981,2241.41 646.981,2235.5 626.566,2235.5 " />
<svg:polygon detid="436443928" count="1" value="120" id="4012027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 27 pos   module  6   Id 436443928 " fill="rgb(255,17,0)" points="626.566,2235.5 646.981,2235.5 646.981,2229.59 626.566,2229.59 " />
<svg:polygon detid="436444184" count="1" value="120" id="4012028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 28 pos   module  6   Id 436444184 " fill="rgb(255,17,0)" points="626.566,2229.59 646.981,2229.59 646.981,2223.68 626.566,2223.68 " />
<svg:polygon detid="436444440" count="1" value="120" id="4012029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 29 pos   module  6   Id 436444440 " fill="rgb(255,17,0)" points="626.566,2223.68 646.981,2223.68 646.981,2217.77 626.566,2217.77 " />
<svg:polygon detid="436444696" count="1" value="120" id="4012030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 30 pos   module  6   Id 436444696 " fill="rgb(255,17,0)" points="626.566,2217.77 646.981,2217.77 646.981,2211.86 626.566,2211.86 " />
<svg:polygon detid="436444952" count="1" value="120" id="4012031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 31 pos   module  6   Id 436444952 " fill="rgb(255,17,0)" points="626.566,2211.86 646.981,2211.86 646.981,2205.95 626.566,2205.95 " />
<svg:polygon detid="436445208" count="1" value="120" id="4012032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 32 pos   module  6   Id 436445208 " fill="rgb(255,17,0)" points="626.566,2205.95 646.981,2205.95 646.981,2200.04 626.566,2200.04 " />
<svg:polygon detid="436445464" count="1" value="120" id="4012033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 33 pos   module  6   Id 436445464 " fill="rgb(255,17,0)" points="626.566,2200.04 646.981,2200.04 646.981,2194.13 626.566,2194.13 " />
<svg:polygon detid="436445720" count="1" value="120" id="4012034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 34 pos   module  6   Id 436445720 " fill="rgb(255,17,0)" points="626.566,2194.13 646.981,2194.13 646.981,2188.22 626.566,2188.22 " />
<svg:polygon detid="436445976" count="1" value="120" id="4012035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 35 pos   module  6   Id 436445976 " fill="rgb(255,17,0)" points="626.566,2188.22 646.981,2188.22 646.981,2182.31 626.566,2182.31 " />
<svg:polygon detid="436446232" count="1" value="120" id="4012036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 36 pos   module  6   Id 436446232 " fill="rgb(255,17,0)" points="626.566,2182.31 646.981,2182.31 646.981,2176.4 626.566,2176.4 " />
<svg:polygon detid="436446488" count="1" value="120" id="4012037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 37 pos   module  6   Id 436446488 " fill="rgb(255,17,0)" points="626.566,2176.4 646.981,2176.4 646.981,2170.49 626.566,2170.49 " />
<svg:polygon detid="436446744" count="1" value="120" id="4012038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 38 pos   module  6   Id 436446744 " fill="rgb(255,17,0)" points="626.566,2170.49 646.981,2170.49 646.981,2164.58 626.566,2164.58 " />
<svg:polygon detid="436447000" count="1" value="120" id="4012039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 39 pos   module  6   Id 436447000 " fill="rgb(255,17,0)" points="626.566,2164.58 646.981,2164.58 646.981,2158.67 626.566,2158.67 " />
<svg:polygon detid="436447256" count="1" value="120" id="4012040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 40 pos   module  6   Id 436447256 " fill="rgb(255,17,0)" points="626.566,2158.67 646.981,2158.67 646.981,2152.76 626.566,2152.76 " />
<svg:polygon detid="436447512" count="1" value="120" id="4012041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 41 pos   module  6   Id 436447512 " fill="rgb(255,17,0)" points="626.566,2152.76 646.981,2152.76 646.981,2146.85 626.566,2146.85 " />
<svg:polygon detid="436447768" count="1" value="120" id="4012042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 42 pos   module  6   Id 436447768 " fill="rgb(255,17,0)" points="626.566,2146.85 646.981,2146.85 646.981,2140.94 626.566,2140.94 " />
<svg:polygon detid="436448024" count="1" value="120" id="4012043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 43 pos   module  6   Id 436448024 " fill="rgb(255,17,0)" points="626.566,2140.94 646.981,2140.94 646.981,2135.03 626.566,2135.03 " />
<svg:polygon detid="436448280" count="1" value="120" id="4012044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 44 pos   module  6   Id 436448280 " fill="rgb(255,17,0)" points="626.566,2135.03 646.981,2135.03 646.981,2129.12 626.566,2129.12 " />
<svg:polygon detid="436448536" count="1" value="120" id="4012045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 45 pos   module  6   Id 436448536 " fill="rgb(255,17,0)" points="626.566,2129.12 646.981,2129.12 646.981,2123.21 626.566,2123.21 " />
<svg:polygon detid="436448792" count="1" value="120" id="4012046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 46 pos   module  6   Id 436448792 " fill="rgb(255,17,0)" points="626.566,2123.21 646.981,2123.21 646.981,2117.3 626.566,2117.3 " />
<svg:polygon detid="436449048" count="1" value="120" id="4012047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 47 pos   module  6   Id 436449048 " fill="rgb(255,17,0)" points="626.566,2117.3 646.981,2117.3 646.981,2111.39 626.566,2111.39 " />
<svg:polygon detid="436449304" count="1" value="120" id="4012048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 48 pos   module  6   Id 436449304 " fill="rgb(255,17,0)" points="626.566,2111.39 646.981,2111.39 646.981,2105.48 626.566,2105.48 " />
<svg:polygon detid="436449560" count="1" value="120" id="4012049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 49 pos   module  6   Id 436449560 " fill="rgb(255,17,0)" points="626.566,2105.48 646.981,2105.48 646.981,2099.57 626.566,2099.57 " />
<svg:polygon detid="436449816" count="1" value="120" id="4012050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 50 pos   module  6   Id 436449816 " fill="rgb(255,17,0)" points="626.566,2099.57 646.981,2099.57 646.981,2093.66 626.566,2093.66 " />
<svg:polygon detid="436450072" count="1" value="120" id="4012051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 51 pos   module  6   Id 436450072 " fill="rgb(255,17,0)" points="626.566,2093.66 646.981,2093.66 646.981,2087.75 626.566,2087.75 " />
<svg:polygon detid="436450328" count="1" value="120" id="4012052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 52 pos   module  6   Id 436450328 " fill="rgb(255,17,0)" points="626.566,2087.75 646.981,2087.75 646.981,2081.84 626.566,2081.84 " />
<svg:polygon detid="436450584" count="1" value="120" id="4012053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 53 pos   module  6   Id 436450584 " fill="rgb(255,17,0)" points="626.566,2081.84 646.981,2081.84 646.981,2075.93 626.566,2075.93 " />
<svg:polygon detid="436450840" count="1" value="120" id="4012054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 3 rod 54 pos   module  6   Id 436450840 " fill="rgb(255,17,0)" points="626.566,2075.93 646.981,2075.93 646.981,2070.02 626.566,2070.02 " />
<svg:polygon detid="436470020" count="1" value="123" id="4101001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 neg   module  1   Id 436470020 " fill="rgb(255,11,0)" points="713.934,2389.74 734.349,2389.74 734.349,2384.41 713.934,2384.41 " />
<svg:polygon detid="436470276" count="1" value="123" id="4101002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 neg   module  1   Id 436470276 " fill="rgb(255,11,0)" points="713.934,2384.41 734.349,2384.41 734.349,2379.09 713.934,2379.09 " />
<svg:polygon detid="436470532" count="1" value="123" id="4101003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 neg   module  1   Id 436470532 " fill="rgb(255,11,0)" points="713.934,2379.09 734.349,2379.09 734.349,2373.76 713.934,2373.76 " />
<svg:polygon detid="436470788" count="1" value="123" id="4101004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 neg   module  1   Id 436470788 " fill="rgb(255,11,0)" points="713.934,2373.76 734.349,2373.76 734.349,2368.43 713.934,2368.43 " />
<svg:polygon detid="436471044" count="1" value="123" id="4101005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 neg   module  1   Id 436471044 " fill="rgb(255,11,0)" points="713.934,2368.43 734.349,2368.43 734.349,2363.11 713.934,2363.11 " />
<svg:polygon detid="436471300" count="1" value="123" id="4101006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 neg   module  1   Id 436471300 " fill="rgb(255,11,0)" points="713.934,2363.11 734.349,2363.11 734.349,2357.78 713.934,2357.78 " />
<svg:polygon detid="436471556" count="1" value="123" id="4101007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 neg   module  1   Id 436471556 " fill="rgb(255,11,0)" points="713.934,2357.78 734.349,2357.78 734.349,2352.46 713.934,2352.46 " />
<svg:polygon detid="436471812" count="1" value="123" id="4101008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 neg   module  1   Id 436471812 " fill="rgb(255,11,0)" points="713.934,2352.46 734.349,2352.46 734.349,2347.13 713.934,2347.13 " />
<svg:polygon detid="436472068" count="1" value="123" id="4101009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 neg   module  1   Id 436472068 " fill="rgb(255,11,0)" points="713.934,2347.13 734.349,2347.13 734.349,2341.81 713.934,2341.81 " />
<svg:polygon detid="436472324" count="1" value="123" id="4101010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 neg   module  1   Id 436472324 " fill="rgb(255,11,0)" points="713.934,2341.81 734.349,2341.81 734.349,2336.48 713.934,2336.48 " />
<svg:polygon detid="436472580" count="1" value="123" id="4101011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 neg   module  1   Id 436472580 " fill="rgb(255,11,0)" points="713.934,2336.48 734.349,2336.48 734.349,2331.16 713.934,2331.16 " />
<svg:polygon detid="436472836" count="1" value="123" id="4101012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 neg   module  1   Id 436472836 " fill="rgb(255,11,0)" points="713.934,2331.16 734.349,2331.16 734.349,2325.83 713.934,2325.83 " />
<svg:polygon detid="436473092" count="1" value="123" id="4101013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 neg   module  1   Id 436473092 " fill="rgb(255,11,0)" points="713.934,2325.83 734.349,2325.83 734.349,2320.51 713.934,2320.51 " />
<svg:polygon detid="436473348" count="1" value="123" id="4101014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 neg   module  1   Id 436473348 " fill="rgb(255,11,0)" points="713.934,2320.51 734.349,2320.51 734.349,2315.18 713.934,2315.18 " />
<svg:polygon detid="436473604" count="1" value="123" id="4101015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 neg   module  1   Id 436473604 " fill="rgb(255,11,0)" points="713.934,2315.18 734.349,2315.18 734.349,2309.85 713.934,2309.85 " />
<svg:polygon detid="436473860" count="1" value="123" id="4101016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 neg   module  1   Id 436473860 " fill="rgb(255,11,0)" points="713.934,2309.85 734.349,2309.85 734.349,2304.53 713.934,2304.53 " />
<svg:polygon detid="436474116" count="1" value="123" id="4101017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 neg   module  1   Id 436474116 " fill="rgb(255,11,0)" points="713.934,2304.53 734.349,2304.53 734.349,2299.2 713.934,2299.2 " />
<svg:polygon detid="436474372" count="1" value="123" id="4101018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 neg   module  1   Id 436474372 " fill="rgb(255,11,0)" points="713.934,2299.2 734.349,2299.2 734.349,2293.88 713.934,2293.88 " />
<svg:polygon detid="436474628" count="1" value="123" id="4101019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 neg   module  1   Id 436474628 " fill="rgb(255,11,0)" points="713.934,2293.88 734.349,2293.88 734.349,2288.55 713.934,2288.55 " />
<svg:polygon detid="436474884" count="1" value="123" id="4101020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 neg   module  1   Id 436474884 " fill="rgb(255,11,0)" points="713.934,2288.55 734.349,2288.55 734.349,2283.23 713.934,2283.23 " />
<svg:polygon detid="436475140" count="1" value="123" id="4101021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 neg   module  1   Id 436475140 " fill="rgb(255,11,0)" points="713.934,2283.23 734.349,2283.23 734.349,2277.9 713.934,2277.9 " />
<svg:polygon detid="436475396" count="1" value="123" id="4101022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 neg   module  1   Id 436475396 " fill="rgb(255,11,0)" points="713.934,2277.9 734.349,2277.9 734.349,2272.58 713.934,2272.58 " />
<svg:polygon detid="436475652" count="1" value="123" id="4101023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 neg   module  1   Id 436475652 " fill="rgb(255,11,0)" points="713.934,2272.58 734.349,2272.58 734.349,2267.25 713.934,2267.25 " />
<svg:polygon detid="436475908" count="1" value="123" id="4101024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 neg   module  1   Id 436475908 " fill="rgb(255,11,0)" points="713.934,2267.25 734.349,2267.25 734.349,2261.93 713.934,2261.93 " />
<svg:polygon detid="436476164" count="1" value="123" id="4101025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 neg   module  1   Id 436476164 " fill="rgb(255,11,0)" points="713.934,2261.93 734.349,2261.93 734.349,2256.6 713.934,2256.6 " />
<svg:polygon detid="436476420" count="1" value="123" id="4101026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 neg   module  1   Id 436476420 " fill="rgb(255,11,0)" points="713.934,2256.6 734.349,2256.6 734.349,2251.27 713.934,2251.27 " />
<svg:polygon detid="436476676" count="1" value="123" id="4101027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 neg   module  1   Id 436476676 " fill="rgb(255,11,0)" points="713.934,2251.27 734.349,2251.27 734.349,2245.95 713.934,2245.95 " />
<svg:polygon detid="436476932" count="1" value="123" id="4101028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 neg   module  1   Id 436476932 " fill="rgb(255,11,0)" points="713.934,2245.95 734.349,2245.95 734.349,2240.62 713.934,2240.62 " />
<svg:polygon detid="436477188" count="1" value="123" id="4101029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 neg   module  1   Id 436477188 " fill="rgb(255,11,0)" points="713.934,2240.62 734.349,2240.62 734.349,2235.3 713.934,2235.3 " />
<svg:polygon detid="436477444" count="1" value="123" id="4101030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 neg   module  1   Id 436477444 " fill="rgb(255,11,0)" points="713.934,2235.3 734.349,2235.3 734.349,2229.97 713.934,2229.97 " />
<svg:polygon detid="436477700" count="1" value="123" id="4101031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 neg   module  1   Id 436477700 " fill="rgb(255,11,0)" points="713.934,2229.97 734.349,2229.97 734.349,2224.65 713.934,2224.65 " />
<svg:polygon detid="436477956" count="1" value="123" id="4101032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 neg   module  1   Id 436477956 " fill="rgb(255,11,0)" points="713.934,2224.65 734.349,2224.65 734.349,2219.32 713.934,2219.32 " />
<svg:polygon detid="436478212" count="1" value="123" id="4101033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 neg   module  1   Id 436478212 " fill="rgb(255,11,0)" points="713.934,2219.32 734.349,2219.32 734.349,2214 713.934,2214 " />
<svg:polygon detid="436478468" count="1" value="123" id="4101034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 neg   module  1   Id 436478468 " fill="rgb(255,11,0)" points="713.934,2214 734.349,2214 734.349,2208.67 713.934,2208.67 " />
<svg:polygon detid="436478724" count="1" value="123" id="4101035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 neg   module  1   Id 436478724 " fill="rgb(255,11,0)" points="713.934,2208.67 734.349,2208.67 734.349,2203.35 713.934,2203.35 " />
<svg:polygon detid="436478980" count="1" value="123" id="4101036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 neg   module  1   Id 436478980 " fill="rgb(255,11,0)" points="713.934,2203.35 734.349,2203.35 734.349,2198.02 713.934,2198.02 " />
<svg:polygon detid="436479236" count="1" value="123" id="4101037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 neg   module  1   Id 436479236 " fill="rgb(255,11,0)" points="713.934,2198.02 734.349,2198.02 734.349,2192.7 713.934,2192.7 " />
<svg:polygon detid="436479492" count="1" value="123" id="4101038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 neg   module  1   Id 436479492 " fill="rgb(255,11,0)" points="713.934,2192.7 734.349,2192.7 734.349,2187.37 713.934,2187.37 " />
<svg:polygon detid="436479748" count="1" value="123" id="4101039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 neg   module  1   Id 436479748 " fill="rgb(255,11,0)" points="713.934,2187.37 734.349,2187.37 734.349,2182.04 713.934,2182.04 " />
<svg:polygon detid="436480004" count="1" value="123" id="4101040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 neg   module  1   Id 436480004 " fill="rgb(255,11,0)" points="713.934,2182.04 734.349,2182.04 734.349,2176.72 713.934,2176.72 " />
<svg:polygon detid="436480260" count="1" value="123" id="4101041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 neg   module  1   Id 436480260 " fill="rgb(255,11,0)" points="713.934,2176.72 734.349,2176.72 734.349,2171.39 713.934,2171.39 " />
<svg:polygon detid="436480516" count="1" value="123" id="4101042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 neg   module  1   Id 436480516 " fill="rgb(255,11,0)" points="713.934,2171.39 734.349,2171.39 734.349,2166.07 713.934,2166.07 " />
<svg:polygon detid="436480772" count="1" value="123" id="4101043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 neg   module  1   Id 436480772 " fill="rgb(255,11,0)" points="713.934,2166.07 734.349,2166.07 734.349,2160.74 713.934,2160.74 " />
<svg:polygon detid="436481028" count="1" value="123" id="4101044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 neg   module  1   Id 436481028 " fill="rgb(255,11,0)" points="713.934,2160.74 734.349,2160.74 734.349,2155.42 713.934,2155.42 " />
<svg:polygon detid="436481284" count="1" value="123" id="4101045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 neg   module  1   Id 436481284 " fill="rgb(255,11,0)" points="713.934,2155.42 734.349,2155.42 734.349,2150.09 713.934,2150.09 " />
<svg:polygon detid="436481540" count="1" value="123" id="4101046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 neg   module  1   Id 436481540 " fill="rgb(255,11,0)" points="713.934,2150.09 734.349,2150.09 734.349,2144.77 713.934,2144.77 " />
<svg:polygon detid="436481796" count="1" value="123" id="4101047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 neg   module  1   Id 436481796 " fill="rgb(255,11,0)" points="713.934,2144.77 734.349,2144.77 734.349,2139.44 713.934,2139.44 " />
<svg:polygon detid="436482052" count="1" value="123" id="4101048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 neg   module  1   Id 436482052 " fill="rgb(255,11,0)" points="713.934,2139.44 734.349,2139.44 734.349,2134.12 713.934,2134.12 " />
<svg:polygon detid="436482308" count="1" value="123" id="4101049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 neg   module  1   Id 436482308 " fill="rgb(255,11,0)" points="713.934,2134.12 734.349,2134.12 734.349,2128.79 713.934,2128.79 " />
<svg:polygon detid="436482564" count="1" value="123" id="4101050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 neg   module  1   Id 436482564 " fill="rgb(255,11,0)" points="713.934,2128.79 734.349,2128.79 734.349,2123.46 713.934,2123.46 " />
<svg:polygon detid="436482820" count="1" value="123" id="4101051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 neg   module  1   Id 436482820 " fill="rgb(255,11,0)" points="713.934,2123.46 734.349,2123.46 734.349,2118.14 713.934,2118.14 " />
<svg:polygon detid="436483076" count="1" value="123" id="4101052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 neg   module  1   Id 436483076 " fill="rgb(255,11,0)" points="713.934,2118.14 734.349,2118.14 734.349,2112.81 713.934,2112.81 " />
<svg:polygon detid="436483332" count="1" value="123" id="4101053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 neg   module  1   Id 436483332 " fill="rgb(255,11,0)" points="713.934,2112.81 734.349,2112.81 734.349,2107.49 713.934,2107.49 " />
<svg:polygon detid="436483588" count="1" value="123" id="4101054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 neg   module  1   Id 436483588 " fill="rgb(255,11,0)" points="713.934,2107.49 734.349,2107.49 734.349,2102.16 713.934,2102.16 " />
<svg:polygon detid="436483844" count="1" value="123" id="4101055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 neg   module  1   Id 436483844 " fill="rgb(255,11,0)" points="713.934,2102.16 734.349,2102.16 734.349,2096.84 713.934,2096.84 " />
<svg:polygon detid="436484100" count="1" value="123" id="4101056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 neg   module  1   Id 436484100 " fill="rgb(255,11,0)" points="713.934,2096.84 734.349,2096.84 734.349,2091.51 713.934,2091.51 " />
<svg:polygon detid="436484356" count="1" value="123" id="4101057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 neg   module  1   Id 436484356 " fill="rgb(255,11,0)" points="713.934,2091.51 734.349,2091.51 734.349,2086.19 713.934,2086.19 " />
<svg:polygon detid="436484612" count="1" value="123" id="4101058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 neg   module  1   Id 436484612 " fill="rgb(255,11,0)" points="713.934,2086.19 734.349,2086.19 734.349,2080.86 713.934,2080.86 " />
<svg:polygon detid="436484868" count="1" value="123" id="4101059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 neg   module  1   Id 436484868 " fill="rgb(255,11,0)" points="713.934,2080.86 734.349,2080.86 734.349,2075.54 713.934,2075.54 " />
<svg:polygon detid="436485124" count="1" value="123" id="4101060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 neg   module  1   Id 436485124 " fill="rgb(255,11,0)" points="713.934,2075.54 734.349,2075.54 734.349,2070.21 713.934,2070.21 " />
<svg:polygon detid="436470024" count="1" value="123" id="4102001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 neg   module  2   Id 436470024 " fill="rgb(255,11,0)" points="736.901,2389.74 757.316,2389.74 757.316,2384.41 736.901,2384.41 " />
<svg:polygon detid="436470280" count="1" value="123" id="4102002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 neg   module  2   Id 436470280 " fill="rgb(255,11,0)" points="736.901,2384.41 757.316,2384.41 757.316,2379.09 736.901,2379.09 " />
<svg:polygon detid="436470536" count="1" value="123" id="4102003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 neg   module  2   Id 436470536 " fill="rgb(255,11,0)" points="736.901,2379.09 757.316,2379.09 757.316,2373.76 736.901,2373.76 " />
<svg:polygon detid="436470792" count="1" value="123" id="4102004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 neg   module  2   Id 436470792 " fill="rgb(255,11,0)" points="736.901,2373.76 757.316,2373.76 757.316,2368.43 736.901,2368.43 " />
<svg:polygon detid="436471048" count="1" value="123" id="4102005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 neg   module  2   Id 436471048 " fill="rgb(255,11,0)" points="736.901,2368.43 757.316,2368.43 757.316,2363.11 736.901,2363.11 " />
<svg:polygon detid="436471304" count="1" value="123" id="4102006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 neg   module  2   Id 436471304 " fill="rgb(255,11,0)" points="736.901,2363.11 757.316,2363.11 757.316,2357.78 736.901,2357.78 " />
<svg:polygon detid="436471560" count="1" value="123" id="4102007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 neg   module  2   Id 436471560 " fill="rgb(255,11,0)" points="736.901,2357.78 757.316,2357.78 757.316,2352.46 736.901,2352.46 " />
<svg:polygon detid="436471816" count="1" value="123" id="4102008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 neg   module  2   Id 436471816 " fill="rgb(255,11,0)" points="736.901,2352.46 757.316,2352.46 757.316,2347.13 736.901,2347.13 " />
<svg:polygon detid="436472072" count="1" value="123" id="4102009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 neg   module  2   Id 436472072 " fill="rgb(255,11,0)" points="736.901,2347.13 757.316,2347.13 757.316,2341.81 736.901,2341.81 " />
<svg:polygon detid="436472328" count="1" value="123" id="4102010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 neg   module  2   Id 436472328 " fill="rgb(255,11,0)" points="736.901,2341.81 757.316,2341.81 757.316,2336.48 736.901,2336.48 " />
<svg:polygon detid="436472584" count="1" value="123" id="4102011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 neg   module  2   Id 436472584 " fill="rgb(255,11,0)" points="736.901,2336.48 757.316,2336.48 757.316,2331.16 736.901,2331.16 " />
<svg:polygon detid="436472840" count="1" value="123" id="4102012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 neg   module  2   Id 436472840 " fill="rgb(255,11,0)" points="736.901,2331.16 757.316,2331.16 757.316,2325.83 736.901,2325.83 " />
<svg:polygon detid="436473096" count="1" value="123" id="4102013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 neg   module  2   Id 436473096 " fill="rgb(255,11,0)" points="736.901,2325.83 757.316,2325.83 757.316,2320.51 736.901,2320.51 " />
<svg:polygon detid="436473352" count="1" value="123" id="4102014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 neg   module  2   Id 436473352 " fill="rgb(255,11,0)" points="736.901,2320.51 757.316,2320.51 757.316,2315.18 736.901,2315.18 " />
<svg:polygon detid="436473608" count="1" value="123" id="4102015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 neg   module  2   Id 436473608 " fill="rgb(255,11,0)" points="736.901,2315.18 757.316,2315.18 757.316,2309.85 736.901,2309.85 " />
<svg:polygon detid="436473864" count="1" value="123" id="4102016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 neg   module  2   Id 436473864 " fill="rgb(255,11,0)" points="736.901,2309.85 757.316,2309.85 757.316,2304.53 736.901,2304.53 " />
<svg:polygon detid="436474120" count="1" value="123" id="4102017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 neg   module  2   Id 436474120 " fill="rgb(255,11,0)" points="736.901,2304.53 757.316,2304.53 757.316,2299.2 736.901,2299.2 " />
<svg:polygon detid="436474376" count="1" value="123" id="4102018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 neg   module  2   Id 436474376 " fill="rgb(255,11,0)" points="736.901,2299.2 757.316,2299.2 757.316,2293.88 736.901,2293.88 " />
<svg:polygon detid="436474632" count="1" value="123" id="4102019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 neg   module  2   Id 436474632 " fill="rgb(255,11,0)" points="736.901,2293.88 757.316,2293.88 757.316,2288.55 736.901,2288.55 " />
<svg:polygon detid="436474888" count="1" value="123" id="4102020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 neg   module  2   Id 436474888 " fill="rgb(255,11,0)" points="736.901,2288.55 757.316,2288.55 757.316,2283.23 736.901,2283.23 " />
<svg:polygon detid="436475144" count="1" value="123" id="4102021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 neg   module  2   Id 436475144 " fill="rgb(255,11,0)" points="736.901,2283.23 757.316,2283.23 757.316,2277.9 736.901,2277.9 " />
<svg:polygon detid="436475400" count="1" value="123" id="4102022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 neg   module  2   Id 436475400 " fill="rgb(255,11,0)" points="736.901,2277.9 757.316,2277.9 757.316,2272.58 736.901,2272.58 " />
<svg:polygon detid="436475656" count="1" value="123" id="4102023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 neg   module  2   Id 436475656 " fill="rgb(255,11,0)" points="736.901,2272.58 757.316,2272.58 757.316,2267.25 736.901,2267.25 " />
<svg:polygon detid="436475912" count="1" value="123" id="4102024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 neg   module  2   Id 436475912 " fill="rgb(255,11,0)" points="736.901,2267.25 757.316,2267.25 757.316,2261.93 736.901,2261.93 " />
<svg:polygon detid="436476168" count="1" value="123" id="4102025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 neg   module  2   Id 436476168 " fill="rgb(255,11,0)" points="736.901,2261.93 757.316,2261.93 757.316,2256.6 736.901,2256.6 " />
<svg:polygon detid="436476424" count="1" value="123" id="4102026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 neg   module  2   Id 436476424 " fill="rgb(255,11,0)" points="736.901,2256.6 757.316,2256.6 757.316,2251.27 736.901,2251.27 " />
<svg:polygon detid="436476680" count="1" value="123" id="4102027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 neg   module  2   Id 436476680 " fill="rgb(255,11,0)" points="736.901,2251.27 757.316,2251.27 757.316,2245.95 736.901,2245.95 " />
<svg:polygon detid="436476936" count="1" value="123" id="4102028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 neg   module  2   Id 436476936 " fill="rgb(255,11,0)" points="736.901,2245.95 757.316,2245.95 757.316,2240.62 736.901,2240.62 " />
<svg:polygon detid="436477192" count="1" value="123" id="4102029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 neg   module  2   Id 436477192 " fill="rgb(255,11,0)" points="736.901,2240.62 757.316,2240.62 757.316,2235.3 736.901,2235.3 " />
<svg:polygon detid="436477448" count="1" value="123" id="4102030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 neg   module  2   Id 436477448 " fill="rgb(255,11,0)" points="736.901,2235.3 757.316,2235.3 757.316,2229.97 736.901,2229.97 " />
<svg:polygon detid="436477704" count="1" value="123" id="4102031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 neg   module  2   Id 436477704 " fill="rgb(255,11,0)" points="736.901,2229.97 757.316,2229.97 757.316,2224.65 736.901,2224.65 " />
<svg:polygon detid="436477960" count="1" value="123" id="4102032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 neg   module  2   Id 436477960 " fill="rgb(255,11,0)" points="736.901,2224.65 757.316,2224.65 757.316,2219.32 736.901,2219.32 " />
<svg:polygon detid="436478216" count="1" value="123" id="4102033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 neg   module  2   Id 436478216 " fill="rgb(255,11,0)" points="736.901,2219.32 757.316,2219.32 757.316,2214 736.901,2214 " />
<svg:polygon detid="436478472" count="1" value="123" id="4102034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 neg   module  2   Id 436478472 " fill="rgb(255,11,0)" points="736.901,2214 757.316,2214 757.316,2208.67 736.901,2208.67 " />
<svg:polygon detid="436478728" count="1" value="123" id="4102035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 neg   module  2   Id 436478728 " fill="rgb(255,11,0)" points="736.901,2208.67 757.316,2208.67 757.316,2203.35 736.901,2203.35 " />
<svg:polygon detid="436478984" count="1" value="123" id="4102036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 neg   module  2   Id 436478984 " fill="rgb(255,11,0)" points="736.901,2203.35 757.316,2203.35 757.316,2198.02 736.901,2198.02 " />
<svg:polygon detid="436479240" count="1" value="123" id="4102037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 neg   module  2   Id 436479240 " fill="rgb(255,11,0)" points="736.901,2198.02 757.316,2198.02 757.316,2192.7 736.901,2192.7 " />
<svg:polygon detid="436479496" count="1" value="123" id="4102038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 neg   module  2   Id 436479496 " fill="rgb(255,11,0)" points="736.901,2192.7 757.316,2192.7 757.316,2187.37 736.901,2187.37 " />
<svg:polygon detid="436479752" count="1" value="123" id="4102039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 neg   module  2   Id 436479752 " fill="rgb(255,11,0)" points="736.901,2187.37 757.316,2187.37 757.316,2182.04 736.901,2182.04 " />
<svg:polygon detid="436480008" count="1" value="123" id="4102040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 neg   module  2   Id 436480008 " fill="rgb(255,11,0)" points="736.901,2182.04 757.316,2182.04 757.316,2176.72 736.901,2176.72 " />
<svg:polygon detid="436480264" count="1" value="123" id="4102041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 neg   module  2   Id 436480264 " fill="rgb(255,11,0)" points="736.901,2176.72 757.316,2176.72 757.316,2171.39 736.901,2171.39 " />
<svg:polygon detid="436480520" count="1" value="123" id="4102042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 neg   module  2   Id 436480520 " fill="rgb(255,11,0)" points="736.901,2171.39 757.316,2171.39 757.316,2166.07 736.901,2166.07 " />
<svg:polygon detid="436480776" count="1" value="123" id="4102043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 neg   module  2   Id 436480776 " fill="rgb(255,11,0)" points="736.901,2166.07 757.316,2166.07 757.316,2160.74 736.901,2160.74 " />
<svg:polygon detid="436481032" count="1" value="123" id="4102044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 neg   module  2   Id 436481032 " fill="rgb(255,11,0)" points="736.901,2160.74 757.316,2160.74 757.316,2155.42 736.901,2155.42 " />
<svg:polygon detid="436481288" count="1" value="123" id="4102045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 neg   module  2   Id 436481288 " fill="rgb(255,11,0)" points="736.901,2155.42 757.316,2155.42 757.316,2150.09 736.901,2150.09 " />
<svg:polygon detid="436481544" count="1" value="123" id="4102046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 neg   module  2   Id 436481544 " fill="rgb(255,11,0)" points="736.901,2150.09 757.316,2150.09 757.316,2144.77 736.901,2144.77 " />
<svg:polygon detid="436481800" count="1" value="123" id="4102047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 neg   module  2   Id 436481800 " fill="rgb(255,11,0)" points="736.901,2144.77 757.316,2144.77 757.316,2139.44 736.901,2139.44 " />
<svg:polygon detid="436482056" count="1" value="123" id="4102048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 neg   module  2   Id 436482056 " fill="rgb(255,11,0)" points="736.901,2139.44 757.316,2139.44 757.316,2134.12 736.901,2134.12 " />
<svg:polygon detid="436482312" count="1" value="123" id="4102049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 neg   module  2   Id 436482312 " fill="rgb(255,11,0)" points="736.901,2134.12 757.316,2134.12 757.316,2128.79 736.901,2128.79 " />
<svg:polygon detid="436482568" count="1" value="123" id="4102050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 neg   module  2   Id 436482568 " fill="rgb(255,11,0)" points="736.901,2128.79 757.316,2128.79 757.316,2123.46 736.901,2123.46 " />
<svg:polygon detid="436482824" count="1" value="123" id="4102051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 neg   module  2   Id 436482824 " fill="rgb(255,11,0)" points="736.901,2123.46 757.316,2123.46 757.316,2118.14 736.901,2118.14 " />
<svg:polygon detid="436483080" count="1" value="123" id="4102052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 neg   module  2   Id 436483080 " fill="rgb(255,11,0)" points="736.901,2118.14 757.316,2118.14 757.316,2112.81 736.901,2112.81 " />
<svg:polygon detid="436483336" count="1" value="123" id="4102053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 neg   module  2   Id 436483336 " fill="rgb(255,11,0)" points="736.901,2112.81 757.316,2112.81 757.316,2107.49 736.901,2107.49 " />
<svg:polygon detid="436483592" count="1" value="123" id="4102054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 neg   module  2   Id 436483592 " fill="rgb(255,11,0)" points="736.901,2107.49 757.316,2107.49 757.316,2102.16 736.901,2102.16 " />
<svg:polygon detid="436483848" count="1" value="123" id="4102055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 neg   module  2   Id 436483848 " fill="rgb(255,11,0)" points="736.901,2102.16 757.316,2102.16 757.316,2096.84 736.901,2096.84 " />
<svg:polygon detid="436484104" count="1" value="123" id="4102056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 neg   module  2   Id 436484104 " fill="rgb(255,11,0)" points="736.901,2096.84 757.316,2096.84 757.316,2091.51 736.901,2091.51 " />
<svg:polygon detid="436484360" count="1" value="123" id="4102057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 neg   module  2   Id 436484360 " fill="rgb(255,11,0)" points="736.901,2091.51 757.316,2091.51 757.316,2086.19 736.901,2086.19 " />
<svg:polygon detid="436484616" count="1" value="123" id="4102058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 neg   module  2   Id 436484616 " fill="rgb(255,11,0)" points="736.901,2086.19 757.316,2086.19 757.316,2080.86 736.901,2080.86 " />
<svg:polygon detid="436484872" count="1" value="123" id="4102059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 neg   module  2   Id 436484872 " fill="rgb(255,11,0)" points="736.901,2080.86 757.316,2080.86 757.316,2075.54 736.901,2075.54 " />
<svg:polygon detid="436485128" count="1" value="123" id="4102060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 neg   module  2   Id 436485128 " fill="rgb(255,11,0)" points="736.901,2075.54 757.316,2075.54 757.316,2070.21 736.901,2070.21 " />
<svg:polygon detid="436470028" count="1" value="123" id="4103001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 neg   module  3   Id 436470028 " fill="rgb(255,11,0)" points="759.867,2389.74 780.282,2389.74 780.282,2384.41 759.867,2384.41 " />
<svg:polygon detid="436470284" count="1" value="123" id="4103002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 neg   module  3   Id 436470284 " fill="rgb(255,11,0)" points="759.867,2384.41 780.282,2384.41 780.282,2379.09 759.867,2379.09 " />
<svg:polygon detid="436470540" count="1" value="123" id="4103003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 neg   module  3   Id 436470540 " fill="rgb(255,11,0)" points="759.867,2379.09 780.282,2379.09 780.282,2373.76 759.867,2373.76 " />
<svg:polygon detid="436470796" count="1" value="123" id="4103004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 neg   module  3   Id 436470796 " fill="rgb(255,11,0)" points="759.867,2373.76 780.282,2373.76 780.282,2368.43 759.867,2368.43 " />
<svg:polygon detid="436471052" count="1" value="123" id="4103005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 neg   module  3   Id 436471052 " fill="rgb(255,11,0)" points="759.867,2368.43 780.282,2368.43 780.282,2363.11 759.867,2363.11 " />
<svg:polygon detid="436471308" count="1" value="123" id="4103006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 neg   module  3   Id 436471308 " fill="rgb(255,11,0)" points="759.867,2363.11 780.282,2363.11 780.282,2357.78 759.867,2357.78 " />
<svg:polygon detid="436471564" count="1" value="123" id="4103007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 neg   module  3   Id 436471564 " fill="rgb(255,11,0)" points="759.867,2357.78 780.282,2357.78 780.282,2352.46 759.867,2352.46 " />
<svg:polygon detid="436471820" count="1" value="123" id="4103008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 neg   module  3   Id 436471820 " fill="rgb(255,11,0)" points="759.867,2352.46 780.282,2352.46 780.282,2347.13 759.867,2347.13 " />
<svg:polygon detid="436472076" count="1" value="123" id="4103009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 neg   module  3   Id 436472076 " fill="rgb(255,11,0)" points="759.867,2347.13 780.282,2347.13 780.282,2341.81 759.867,2341.81 " />
<svg:polygon detid="436472332" count="1" value="123" id="4103010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 neg   module  3   Id 436472332 " fill="rgb(255,11,0)" points="759.867,2341.81 780.282,2341.81 780.282,2336.48 759.867,2336.48 " />
<svg:polygon detid="436472588" count="1" value="123" id="4103011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 neg   module  3   Id 436472588 " fill="rgb(255,11,0)" points="759.867,2336.48 780.282,2336.48 780.282,2331.16 759.867,2331.16 " />
<svg:polygon detid="436472844" count="1" value="123" id="4103012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 neg   module  3   Id 436472844 " fill="rgb(255,11,0)" points="759.867,2331.16 780.282,2331.16 780.282,2325.83 759.867,2325.83 " />
<svg:polygon detid="436473100" count="1" value="123" id="4103013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 neg   module  3   Id 436473100 " fill="rgb(255,11,0)" points="759.867,2325.83 780.282,2325.83 780.282,2320.51 759.867,2320.51 " />
<svg:polygon detid="436473356" count="1" value="123" id="4103014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 neg   module  3   Id 436473356 " fill="rgb(255,11,0)" points="759.867,2320.51 780.282,2320.51 780.282,2315.18 759.867,2315.18 " />
<svg:polygon detid="436473612" count="1" value="123" id="4103015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 neg   module  3   Id 436473612 " fill="rgb(255,11,0)" points="759.867,2315.18 780.282,2315.18 780.282,2309.85 759.867,2309.85 " />
<svg:polygon detid="436473868" count="1" value="123" id="4103016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 neg   module  3   Id 436473868 " fill="rgb(255,11,0)" points="759.867,2309.85 780.282,2309.85 780.282,2304.53 759.867,2304.53 " />
<svg:polygon detid="436474124" count="1" value="123" id="4103017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 neg   module  3   Id 436474124 " fill="rgb(255,11,0)" points="759.867,2304.53 780.282,2304.53 780.282,2299.2 759.867,2299.2 " />
<svg:polygon detid="436474380" count="1" value="123" id="4103018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 neg   module  3   Id 436474380 " fill="rgb(255,11,0)" points="759.867,2299.2 780.282,2299.2 780.282,2293.88 759.867,2293.88 " />
<svg:polygon detid="436474636" count="1" value="123" id="4103019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 neg   module  3   Id 436474636 " fill="rgb(255,11,0)" points="759.867,2293.88 780.282,2293.88 780.282,2288.55 759.867,2288.55 " />
<svg:polygon detid="436474892" count="1" value="123" id="4103020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 neg   module  3   Id 436474892 " fill="rgb(255,11,0)" points="759.867,2288.55 780.282,2288.55 780.282,2283.23 759.867,2283.23 " />
<svg:polygon detid="436475148" count="1" value="123" id="4103021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 neg   module  3   Id 436475148 " fill="rgb(255,11,0)" points="759.867,2283.23 780.282,2283.23 780.282,2277.9 759.867,2277.9 " />
<svg:polygon detid="436475404" count="1" value="123" id="4103022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 neg   module  3   Id 436475404 " fill="rgb(255,11,0)" points="759.867,2277.9 780.282,2277.9 780.282,2272.58 759.867,2272.58 " />
<svg:polygon detid="436475660" count="1" value="123" id="4103023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 neg   module  3   Id 436475660 " fill="rgb(255,11,0)" points="759.867,2272.58 780.282,2272.58 780.282,2267.25 759.867,2267.25 " />
<svg:polygon detid="436475916" count="1" value="123" id="4103024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 neg   module  3   Id 436475916 " fill="rgb(255,11,0)" points="759.867,2267.25 780.282,2267.25 780.282,2261.93 759.867,2261.93 " />
<svg:polygon detid="436476172" count="1" value="123" id="4103025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 neg   module  3   Id 436476172 " fill="rgb(255,11,0)" points="759.867,2261.93 780.282,2261.93 780.282,2256.6 759.867,2256.6 " />
<svg:polygon detid="436476428" count="1" value="123" id="4103026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 neg   module  3   Id 436476428 " fill="rgb(255,11,0)" points="759.867,2256.6 780.282,2256.6 780.282,2251.27 759.867,2251.27 " />
<svg:polygon detid="436476684" count="1" value="123" id="4103027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 neg   module  3   Id 436476684 " fill="rgb(255,11,0)" points="759.867,2251.27 780.282,2251.27 780.282,2245.95 759.867,2245.95 " />
<svg:polygon detid="436476940" count="1" value="123" id="4103028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 neg   module  3   Id 436476940 " fill="rgb(255,11,0)" points="759.867,2245.95 780.282,2245.95 780.282,2240.62 759.867,2240.62 " />
<svg:polygon detid="436477196" count="1" value="123" id="4103029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 neg   module  3   Id 436477196 " fill="rgb(255,11,0)" points="759.867,2240.62 780.282,2240.62 780.282,2235.3 759.867,2235.3 " />
<svg:polygon detid="436477452" count="1" value="123" id="4103030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 neg   module  3   Id 436477452 " fill="rgb(255,11,0)" points="759.867,2235.3 780.282,2235.3 780.282,2229.97 759.867,2229.97 " />
<svg:polygon detid="436477708" count="1" value="123" id="4103031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 neg   module  3   Id 436477708 " fill="rgb(255,11,0)" points="759.867,2229.97 780.282,2229.97 780.282,2224.65 759.867,2224.65 " />
<svg:polygon detid="436477964" count="1" value="123" id="4103032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 neg   module  3   Id 436477964 " fill="rgb(255,11,0)" points="759.867,2224.65 780.282,2224.65 780.282,2219.32 759.867,2219.32 " />
<svg:polygon detid="436478220" count="1" value="123" id="4103033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 neg   module  3   Id 436478220 " fill="rgb(255,11,0)" points="759.867,2219.32 780.282,2219.32 780.282,2214 759.867,2214 " />
<svg:polygon detid="436478476" count="1" value="123" id="4103034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 neg   module  3   Id 436478476 " fill="rgb(255,11,0)" points="759.867,2214 780.282,2214 780.282,2208.67 759.867,2208.67 " />
<svg:polygon detid="436478732" count="1" value="123" id="4103035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 neg   module  3   Id 436478732 " fill="rgb(255,11,0)" points="759.867,2208.67 780.282,2208.67 780.282,2203.35 759.867,2203.35 " />
<svg:polygon detid="436478988" count="1" value="123" id="4103036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 neg   module  3   Id 436478988 " fill="rgb(255,11,0)" points="759.867,2203.35 780.282,2203.35 780.282,2198.02 759.867,2198.02 " />
<svg:polygon detid="436479244" count="1" value="123" id="4103037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 neg   module  3   Id 436479244 " fill="rgb(255,11,0)" points="759.867,2198.02 780.282,2198.02 780.282,2192.7 759.867,2192.7 " />
<svg:polygon detid="436479500" count="1" value="123" id="4103038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 neg   module  3   Id 436479500 " fill="rgb(255,11,0)" points="759.867,2192.7 780.282,2192.7 780.282,2187.37 759.867,2187.37 " />
<svg:polygon detid="436479756" count="1" value="123" id="4103039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 neg   module  3   Id 436479756 " fill="rgb(255,11,0)" points="759.867,2187.37 780.282,2187.37 780.282,2182.04 759.867,2182.04 " />
<svg:polygon detid="436480012" count="1" value="123" id="4103040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 neg   module  3   Id 436480012 " fill="rgb(255,11,0)" points="759.867,2182.04 780.282,2182.04 780.282,2176.72 759.867,2176.72 " />
<svg:polygon detid="436480268" count="1" value="123" id="4103041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 neg   module  3   Id 436480268 " fill="rgb(255,11,0)" points="759.867,2176.72 780.282,2176.72 780.282,2171.39 759.867,2171.39 " />
<svg:polygon detid="436480524" count="1" value="123" id="4103042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 neg   module  3   Id 436480524 " fill="rgb(255,11,0)" points="759.867,2171.39 780.282,2171.39 780.282,2166.07 759.867,2166.07 " />
<svg:polygon detid="436480780" count="1" value="123" id="4103043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 neg   module  3   Id 436480780 " fill="rgb(255,11,0)" points="759.867,2166.07 780.282,2166.07 780.282,2160.74 759.867,2160.74 " />
<svg:polygon detid="436481036" count="1" value="123" id="4103044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 neg   module  3   Id 436481036 " fill="rgb(255,11,0)" points="759.867,2160.74 780.282,2160.74 780.282,2155.42 759.867,2155.42 " />
<svg:polygon detid="436481292" count="1" value="123" id="4103045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 neg   module  3   Id 436481292 " fill="rgb(255,11,0)" points="759.867,2155.42 780.282,2155.42 780.282,2150.09 759.867,2150.09 " />
<svg:polygon detid="436481548" count="1" value="123" id="4103046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 neg   module  3   Id 436481548 " fill="rgb(255,11,0)" points="759.867,2150.09 780.282,2150.09 780.282,2144.77 759.867,2144.77 " />
<svg:polygon detid="436481804" count="1" value="123" id="4103047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 neg   module  3   Id 436481804 " fill="rgb(255,11,0)" points="759.867,2144.77 780.282,2144.77 780.282,2139.44 759.867,2139.44 " />
<svg:polygon detid="436482060" count="1" value="123" id="4103048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 neg   module  3   Id 436482060 " fill="rgb(255,11,0)" points="759.867,2139.44 780.282,2139.44 780.282,2134.12 759.867,2134.12 " />
<svg:polygon detid="436482316" count="1" value="123" id="4103049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 neg   module  3   Id 436482316 " fill="rgb(255,11,0)" points="759.867,2134.12 780.282,2134.12 780.282,2128.79 759.867,2128.79 " />
<svg:polygon detid="436482572" count="1" value="123" id="4103050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 neg   module  3   Id 436482572 " fill="rgb(255,11,0)" points="759.867,2128.79 780.282,2128.79 780.282,2123.46 759.867,2123.46 " />
<svg:polygon detid="436482828" count="1" value="123" id="4103051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 neg   module  3   Id 436482828 " fill="rgb(255,11,0)" points="759.867,2123.46 780.282,2123.46 780.282,2118.14 759.867,2118.14 " />
<svg:polygon detid="436483084" count="1" value="123" id="4103052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 neg   module  3   Id 436483084 " fill="rgb(255,11,0)" points="759.867,2118.14 780.282,2118.14 780.282,2112.81 759.867,2112.81 " />
<svg:polygon detid="436483340" count="1" value="123" id="4103053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 neg   module  3   Id 436483340 " fill="rgb(255,11,0)" points="759.867,2112.81 780.282,2112.81 780.282,2107.49 759.867,2107.49 " />
<svg:polygon detid="436483596" count="1" value="123" id="4103054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 neg   module  3   Id 436483596 " fill="rgb(255,11,0)" points="759.867,2107.49 780.282,2107.49 780.282,2102.16 759.867,2102.16 " />
<svg:polygon detid="436483852" count="1" value="123" id="4103055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 neg   module  3   Id 436483852 " fill="rgb(255,11,0)" points="759.867,2102.16 780.282,2102.16 780.282,2096.84 759.867,2096.84 " />
<svg:polygon detid="436484108" count="1" value="123" id="4103056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 neg   module  3   Id 436484108 " fill="rgb(255,11,0)" points="759.867,2096.84 780.282,2096.84 780.282,2091.51 759.867,2091.51 " />
<svg:polygon detid="436484364" count="1" value="123" id="4103057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 neg   module  3   Id 436484364 " fill="rgb(255,11,0)" points="759.867,2091.51 780.282,2091.51 780.282,2086.19 759.867,2086.19 " />
<svg:polygon detid="436484620" count="1" value="123" id="4103058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 neg   module  3   Id 436484620 " fill="rgb(255,11,0)" points="759.867,2086.19 780.282,2086.19 780.282,2080.86 759.867,2080.86 " />
<svg:polygon detid="436484876" count="1" value="123" id="4103059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 neg   module  3   Id 436484876 " fill="rgb(255,11,0)" points="759.867,2080.86 780.282,2080.86 780.282,2075.54 759.867,2075.54 " />
<svg:polygon detid="436485132" count="1" value="123" id="4103060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 neg   module  3   Id 436485132 " fill="rgb(255,11,0)" points="759.867,2075.54 780.282,2075.54 780.282,2070.21 759.867,2070.21 " />
<svg:polygon detid="436470032" count="1" value="123" id="4104001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 neg   module  4   Id 436470032 " fill="rgb(255,11,0)" points="782.834,2389.74 803.249,2389.74 803.249,2384.41 782.834,2384.41 " />
<svg:polygon detid="436470288" count="1" value="123" id="4104002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 neg   module  4   Id 436470288 " fill="rgb(255,11,0)" points="782.834,2384.41 803.249,2384.41 803.249,2379.09 782.834,2379.09 " />
<svg:polygon detid="436470544" count="1" value="123" id="4104003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 neg   module  4   Id 436470544 " fill="rgb(255,11,0)" points="782.834,2379.09 803.249,2379.09 803.249,2373.76 782.834,2373.76 " />
<svg:polygon detid="436470800" count="1" value="123" id="4104004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 neg   module  4   Id 436470800 " fill="rgb(255,11,0)" points="782.834,2373.76 803.249,2373.76 803.249,2368.43 782.834,2368.43 " />
<svg:polygon detid="436471056" count="1" value="123" id="4104005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 neg   module  4   Id 436471056 " fill="rgb(255,11,0)" points="782.834,2368.43 803.249,2368.43 803.249,2363.11 782.834,2363.11 " />
<svg:polygon detid="436471312" count="1" value="123" id="4104006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 neg   module  4   Id 436471312 " fill="rgb(255,11,0)" points="782.834,2363.11 803.249,2363.11 803.249,2357.78 782.834,2357.78 " />
<svg:polygon detid="436471568" count="1" value="123" id="4104007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 neg   module  4   Id 436471568 " fill="rgb(255,11,0)" points="782.834,2357.78 803.249,2357.78 803.249,2352.46 782.834,2352.46 " />
<svg:polygon detid="436471824" count="1" value="123" id="4104008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 neg   module  4   Id 436471824 " fill="rgb(255,11,0)" points="782.834,2352.46 803.249,2352.46 803.249,2347.13 782.834,2347.13 " />
<svg:polygon detid="436472080" count="1" value="123" id="4104009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 neg   module  4   Id 436472080 " fill="rgb(255,11,0)" points="782.834,2347.13 803.249,2347.13 803.249,2341.81 782.834,2341.81 " />
<svg:polygon detid="436472336" count="1" value="123" id="4104010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 neg   module  4   Id 436472336 " fill="rgb(255,11,0)" points="782.834,2341.81 803.249,2341.81 803.249,2336.48 782.834,2336.48 " />
<svg:polygon detid="436472592" count="1" value="123" id="4104011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 neg   module  4   Id 436472592 " fill="rgb(255,11,0)" points="782.834,2336.48 803.249,2336.48 803.249,2331.16 782.834,2331.16 " />
<svg:polygon detid="436472848" count="1" value="123" id="4104012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 neg   module  4   Id 436472848 " fill="rgb(255,11,0)" points="782.834,2331.16 803.249,2331.16 803.249,2325.83 782.834,2325.83 " />
<svg:polygon detid="436473104" count="1" value="123" id="4104013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 neg   module  4   Id 436473104 " fill="rgb(255,11,0)" points="782.834,2325.83 803.249,2325.83 803.249,2320.51 782.834,2320.51 " />
<svg:polygon detid="436473360" count="1" value="123" id="4104014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 neg   module  4   Id 436473360 " fill="rgb(255,11,0)" points="782.834,2320.51 803.249,2320.51 803.249,2315.18 782.834,2315.18 " />
<svg:polygon detid="436473616" count="1" value="123" id="4104015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 neg   module  4   Id 436473616 " fill="rgb(255,11,0)" points="782.834,2315.18 803.249,2315.18 803.249,2309.85 782.834,2309.85 " />
<svg:polygon detid="436473872" count="1" value="123" id="4104016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 neg   module  4   Id 436473872 " fill="rgb(255,11,0)" points="782.834,2309.85 803.249,2309.85 803.249,2304.53 782.834,2304.53 " />
<svg:polygon detid="436474128" count="1" value="123" id="4104017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 neg   module  4   Id 436474128 " fill="rgb(255,11,0)" points="782.834,2304.53 803.249,2304.53 803.249,2299.2 782.834,2299.2 " />
<svg:polygon detid="436474384" count="1" value="123" id="4104018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 neg   module  4   Id 436474384 " fill="rgb(255,11,0)" points="782.834,2299.2 803.249,2299.2 803.249,2293.88 782.834,2293.88 " />
<svg:polygon detid="436474640" count="1" value="123" id="4104019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 neg   module  4   Id 436474640 " fill="rgb(255,11,0)" points="782.834,2293.88 803.249,2293.88 803.249,2288.55 782.834,2288.55 " />
<svg:polygon detid="436474896" count="1" value="123" id="4104020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 neg   module  4   Id 436474896 " fill="rgb(255,11,0)" points="782.834,2288.55 803.249,2288.55 803.249,2283.23 782.834,2283.23 " />
<svg:polygon detid="436475152" count="1" value="123" id="4104021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 neg   module  4   Id 436475152 " fill="rgb(255,11,0)" points="782.834,2283.23 803.249,2283.23 803.249,2277.9 782.834,2277.9 " />
<svg:polygon detid="436475408" count="1" value="123" id="4104022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 neg   module  4   Id 436475408 " fill="rgb(255,11,0)" points="782.834,2277.9 803.249,2277.9 803.249,2272.58 782.834,2272.58 " />
<svg:polygon detid="436475664" count="1" value="123" id="4104023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 neg   module  4   Id 436475664 " fill="rgb(255,11,0)" points="782.834,2272.58 803.249,2272.58 803.249,2267.25 782.834,2267.25 " />
<svg:polygon detid="436475920" count="1" value="123" id="4104024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 neg   module  4   Id 436475920 " fill="rgb(255,11,0)" points="782.834,2267.25 803.249,2267.25 803.249,2261.93 782.834,2261.93 " />
<svg:polygon detid="436476176" count="1" value="123" id="4104025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 neg   module  4   Id 436476176 " fill="rgb(255,11,0)" points="782.834,2261.93 803.249,2261.93 803.249,2256.6 782.834,2256.6 " />
<svg:polygon detid="436476432" count="1" value="123" id="4104026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 neg   module  4   Id 436476432 " fill="rgb(255,11,0)" points="782.834,2256.6 803.249,2256.6 803.249,2251.27 782.834,2251.27 " />
<svg:polygon detid="436476688" count="1" value="123" id="4104027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 neg   module  4   Id 436476688 " fill="rgb(255,11,0)" points="782.834,2251.27 803.249,2251.27 803.249,2245.95 782.834,2245.95 " />
<svg:polygon detid="436476944" count="1" value="123" id="4104028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 neg   module  4   Id 436476944 " fill="rgb(255,11,0)" points="782.834,2245.95 803.249,2245.95 803.249,2240.62 782.834,2240.62 " />
<svg:polygon detid="436477200" count="1" value="123" id="4104029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 neg   module  4   Id 436477200 " fill="rgb(255,11,0)" points="782.834,2240.62 803.249,2240.62 803.249,2235.3 782.834,2235.3 " />
<svg:polygon detid="436477456" count="1" value="123" id="4104030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 neg   module  4   Id 436477456 " fill="rgb(255,11,0)" points="782.834,2235.3 803.249,2235.3 803.249,2229.97 782.834,2229.97 " />
<svg:polygon detid="436477712" count="1" value="123" id="4104031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 neg   module  4   Id 436477712 " fill="rgb(255,11,0)" points="782.834,2229.97 803.249,2229.97 803.249,2224.65 782.834,2224.65 " />
<svg:polygon detid="436477968" count="1" value="123" id="4104032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 neg   module  4   Id 436477968 " fill="rgb(255,11,0)" points="782.834,2224.65 803.249,2224.65 803.249,2219.32 782.834,2219.32 " />
<svg:polygon detid="436478224" count="1" value="123" id="4104033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 neg   module  4   Id 436478224 " fill="rgb(255,11,0)" points="782.834,2219.32 803.249,2219.32 803.249,2214 782.834,2214 " />
<svg:polygon detid="436478480" count="1" value="123" id="4104034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 neg   module  4   Id 436478480 " fill="rgb(255,11,0)" points="782.834,2214 803.249,2214 803.249,2208.67 782.834,2208.67 " />
<svg:polygon detid="436478736" count="1" value="123" id="4104035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 neg   module  4   Id 436478736 " fill="rgb(255,11,0)" points="782.834,2208.67 803.249,2208.67 803.249,2203.35 782.834,2203.35 " />
<svg:polygon detid="436478992" count="1" value="123" id="4104036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 neg   module  4   Id 436478992 " fill="rgb(255,11,0)" points="782.834,2203.35 803.249,2203.35 803.249,2198.02 782.834,2198.02 " />
<svg:polygon detid="436479248" count="1" value="123" id="4104037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 neg   module  4   Id 436479248 " fill="rgb(255,11,0)" points="782.834,2198.02 803.249,2198.02 803.249,2192.7 782.834,2192.7 " />
<svg:polygon detid="436479504" count="1" value="123" id="4104038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 neg   module  4   Id 436479504 " fill="rgb(255,11,0)" points="782.834,2192.7 803.249,2192.7 803.249,2187.37 782.834,2187.37 " />
<svg:polygon detid="436479760" count="1" value="123" id="4104039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 neg   module  4   Id 436479760 " fill="rgb(255,11,0)" points="782.834,2187.37 803.249,2187.37 803.249,2182.04 782.834,2182.04 " />
<svg:polygon detid="436480016" count="1" value="123" id="4104040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 neg   module  4   Id 436480016 " fill="rgb(255,11,0)" points="782.834,2182.04 803.249,2182.04 803.249,2176.72 782.834,2176.72 " />
<svg:polygon detid="436480272" count="1" value="123" id="4104041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 neg   module  4   Id 436480272 " fill="rgb(255,11,0)" points="782.834,2176.72 803.249,2176.72 803.249,2171.39 782.834,2171.39 " />
<svg:polygon detid="436480528" count="1" value="123" id="4104042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 neg   module  4   Id 436480528 " fill="rgb(255,11,0)" points="782.834,2171.39 803.249,2171.39 803.249,2166.07 782.834,2166.07 " />
<svg:polygon detid="436480784" count="1" value="123" id="4104043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 neg   module  4   Id 436480784 " fill="rgb(255,11,0)" points="782.834,2166.07 803.249,2166.07 803.249,2160.74 782.834,2160.74 " />
<svg:polygon detid="436481040" count="1" value="123" id="4104044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 neg   module  4   Id 436481040 " fill="rgb(255,11,0)" points="782.834,2160.74 803.249,2160.74 803.249,2155.42 782.834,2155.42 " />
<svg:polygon detid="436481296" count="1" value="123" id="4104045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 neg   module  4   Id 436481296 " fill="rgb(255,11,0)" points="782.834,2155.42 803.249,2155.42 803.249,2150.09 782.834,2150.09 " />
<svg:polygon detid="436481552" count="1" value="123" id="4104046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 neg   module  4   Id 436481552 " fill="rgb(255,11,0)" points="782.834,2150.09 803.249,2150.09 803.249,2144.77 782.834,2144.77 " />
<svg:polygon detid="436481808" count="1" value="123" id="4104047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 neg   module  4   Id 436481808 " fill="rgb(255,11,0)" points="782.834,2144.77 803.249,2144.77 803.249,2139.44 782.834,2139.44 " />
<svg:polygon detid="436482064" count="1" value="123" id="4104048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 neg   module  4   Id 436482064 " fill="rgb(255,11,0)" points="782.834,2139.44 803.249,2139.44 803.249,2134.12 782.834,2134.12 " />
<svg:polygon detid="436482320" count="1" value="123" id="4104049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 neg   module  4   Id 436482320 " fill="rgb(255,11,0)" points="782.834,2134.12 803.249,2134.12 803.249,2128.79 782.834,2128.79 " />
<svg:polygon detid="436482576" count="1" value="123" id="4104050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 neg   module  4   Id 436482576 " fill="rgb(255,11,0)" points="782.834,2128.79 803.249,2128.79 803.249,2123.46 782.834,2123.46 " />
<svg:polygon detid="436482832" count="1" value="123" id="4104051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 neg   module  4   Id 436482832 " fill="rgb(255,11,0)" points="782.834,2123.46 803.249,2123.46 803.249,2118.14 782.834,2118.14 " />
<svg:polygon detid="436483088" count="1" value="123" id="4104052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 neg   module  4   Id 436483088 " fill="rgb(255,11,0)" points="782.834,2118.14 803.249,2118.14 803.249,2112.81 782.834,2112.81 " />
<svg:polygon detid="436483344" count="1" value="123" id="4104053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 neg   module  4   Id 436483344 " fill="rgb(255,11,0)" points="782.834,2112.81 803.249,2112.81 803.249,2107.49 782.834,2107.49 " />
<svg:polygon detid="436483600" count="1" value="123" id="4104054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 neg   module  4   Id 436483600 " fill="rgb(255,11,0)" points="782.834,2107.49 803.249,2107.49 803.249,2102.16 782.834,2102.16 " />
<svg:polygon detid="436483856" count="1" value="123" id="4104055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 neg   module  4   Id 436483856 " fill="rgb(255,11,0)" points="782.834,2102.16 803.249,2102.16 803.249,2096.84 782.834,2096.84 " />
<svg:polygon detid="436484112" count="1" value="123" id="4104056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 neg   module  4   Id 436484112 " fill="rgb(255,11,0)" points="782.834,2096.84 803.249,2096.84 803.249,2091.51 782.834,2091.51 " />
<svg:polygon detid="436484368" count="1" value="123" id="4104057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 neg   module  4   Id 436484368 " fill="rgb(255,11,0)" points="782.834,2091.51 803.249,2091.51 803.249,2086.19 782.834,2086.19 " />
<svg:polygon detid="436484624" count="1" value="123" id="4104058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 neg   module  4   Id 436484624 " fill="rgb(255,11,0)" points="782.834,2086.19 803.249,2086.19 803.249,2080.86 782.834,2080.86 " />
<svg:polygon detid="436484880" count="1" value="123" id="4104059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 neg   module  4   Id 436484880 " fill="rgb(255,11,0)" points="782.834,2080.86 803.249,2080.86 803.249,2075.54 782.834,2075.54 " />
<svg:polygon detid="436485136" count="1" value="123" id="4104060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 neg   module  4   Id 436485136 " fill="rgb(255,11,0)" points="782.834,2075.54 803.249,2075.54 803.249,2070.21 782.834,2070.21 " />
<svg:polygon detid="436470036" count="1" value="123" id="4105001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 neg   module  5   Id 436470036 " fill="rgb(255,11,0)" points="805.8,2389.74 826.215,2389.74 826.215,2384.41 805.8,2384.41 " />
<svg:polygon detid="436470292" count="1" value="123" id="4105002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 neg   module  5   Id 436470292 " fill="rgb(255,11,0)" points="805.8,2384.41 826.215,2384.41 826.215,2379.09 805.8,2379.09 " />
<svg:polygon detid="436470548" count="1" value="123" id="4105003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 neg   module  5   Id 436470548 " fill="rgb(255,11,0)" points="805.8,2379.09 826.215,2379.09 826.215,2373.76 805.8,2373.76 " />
<svg:polygon detid="436470804" count="1" value="123" id="4105004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 neg   module  5   Id 436470804 " fill="rgb(255,11,0)" points="805.8,2373.76 826.215,2373.76 826.215,2368.43 805.8,2368.43 " />
<svg:polygon detid="436471060" count="1" value="123" id="4105005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 neg   module  5   Id 436471060 " fill="rgb(255,11,0)" points="805.8,2368.43 826.215,2368.43 826.215,2363.11 805.8,2363.11 " />
<svg:polygon detid="436471316" count="1" value="123" id="4105006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 neg   module  5   Id 436471316 " fill="rgb(255,11,0)" points="805.8,2363.11 826.215,2363.11 826.215,2357.78 805.8,2357.78 " />
<svg:polygon detid="436471572" count="1" value="123" id="4105007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 neg   module  5   Id 436471572 " fill="rgb(255,11,0)" points="805.8,2357.78 826.215,2357.78 826.215,2352.46 805.8,2352.46 " />
<svg:polygon detid="436471828" count="1" value="123" id="4105008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 neg   module  5   Id 436471828 " fill="rgb(255,11,0)" points="805.8,2352.46 826.215,2352.46 826.215,2347.13 805.8,2347.13 " />
<svg:polygon detid="436472084" count="1" value="123" id="4105009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 neg   module  5   Id 436472084 " fill="rgb(255,11,0)" points="805.8,2347.13 826.215,2347.13 826.215,2341.81 805.8,2341.81 " />
<svg:polygon detid="436472340" count="1" value="123" id="4105010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 neg   module  5   Id 436472340 " fill="rgb(255,11,0)" points="805.8,2341.81 826.215,2341.81 826.215,2336.48 805.8,2336.48 " />
<svg:polygon detid="436472596" count="1" value="123" id="4105011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 neg   module  5   Id 436472596 " fill="rgb(255,11,0)" points="805.8,2336.48 826.215,2336.48 826.215,2331.16 805.8,2331.16 " />
<svg:polygon detid="436472852" count="1" value="123" id="4105012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 neg   module  5   Id 436472852 " fill="rgb(255,11,0)" points="805.8,2331.16 826.215,2331.16 826.215,2325.83 805.8,2325.83 " />
<svg:polygon detid="436473108" count="1" value="123" id="4105013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 neg   module  5   Id 436473108 " fill="rgb(255,11,0)" points="805.8,2325.83 826.215,2325.83 826.215,2320.51 805.8,2320.51 " />
<svg:polygon detid="436473364" count="1" value="123" id="4105014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 neg   module  5   Id 436473364 " fill="rgb(255,11,0)" points="805.8,2320.51 826.215,2320.51 826.215,2315.18 805.8,2315.18 " />
<svg:polygon detid="436473620" count="1" value="123" id="4105015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 neg   module  5   Id 436473620 " fill="rgb(255,11,0)" points="805.8,2315.18 826.215,2315.18 826.215,2309.85 805.8,2309.85 " />
<svg:polygon detid="436473876" count="1" value="123" id="4105016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 neg   module  5   Id 436473876 " fill="rgb(255,11,0)" points="805.8,2309.85 826.215,2309.85 826.215,2304.53 805.8,2304.53 " />
<svg:polygon detid="436474132" count="1" value="123" id="4105017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 neg   module  5   Id 436474132 " fill="rgb(255,11,0)" points="805.8,2304.53 826.215,2304.53 826.215,2299.2 805.8,2299.2 " />
<svg:polygon detid="436474388" count="1" value="123" id="4105018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 neg   module  5   Id 436474388 " fill="rgb(255,11,0)" points="805.8,2299.2 826.215,2299.2 826.215,2293.88 805.8,2293.88 " />
<svg:polygon detid="436474644" count="1" value="123" id="4105019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 neg   module  5   Id 436474644 " fill="rgb(255,11,0)" points="805.8,2293.88 826.215,2293.88 826.215,2288.55 805.8,2288.55 " />
<svg:polygon detid="436474900" count="1" value="123" id="4105020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 neg   module  5   Id 436474900 " fill="rgb(255,11,0)" points="805.8,2288.55 826.215,2288.55 826.215,2283.23 805.8,2283.23 " />
<svg:polygon detid="436475156" count="1" value="123" id="4105021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 neg   module  5   Id 436475156 " fill="rgb(255,11,0)" points="805.8,2283.23 826.215,2283.23 826.215,2277.9 805.8,2277.9 " />
<svg:polygon detid="436475412" count="1" value="123" id="4105022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 neg   module  5   Id 436475412 " fill="rgb(255,11,0)" points="805.8,2277.9 826.215,2277.9 826.215,2272.58 805.8,2272.58 " />
<svg:polygon detid="436475668" count="1" value="123" id="4105023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 neg   module  5   Id 436475668 " fill="rgb(255,11,0)" points="805.8,2272.58 826.215,2272.58 826.215,2267.25 805.8,2267.25 " />
<svg:polygon detid="436475924" count="1" value="123" id="4105024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 neg   module  5   Id 436475924 " fill="rgb(255,11,0)" points="805.8,2267.25 826.215,2267.25 826.215,2261.93 805.8,2261.93 " />
<svg:polygon detid="436476180" count="1" value="123" id="4105025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 neg   module  5   Id 436476180 " fill="rgb(255,11,0)" points="805.8,2261.93 826.215,2261.93 826.215,2256.6 805.8,2256.6 " />
<svg:polygon detid="436476436" count="1" value="123" id="4105026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 neg   module  5   Id 436476436 " fill="rgb(255,11,0)" points="805.8,2256.6 826.215,2256.6 826.215,2251.27 805.8,2251.27 " />
<svg:polygon detid="436476692" count="1" value="123" id="4105027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 neg   module  5   Id 436476692 " fill="rgb(255,11,0)" points="805.8,2251.27 826.215,2251.27 826.215,2245.95 805.8,2245.95 " />
<svg:polygon detid="436476948" count="1" value="123" id="4105028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 neg   module  5   Id 436476948 " fill="rgb(255,11,0)" points="805.8,2245.95 826.215,2245.95 826.215,2240.62 805.8,2240.62 " />
<svg:polygon detid="436477204" count="1" value="123" id="4105029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 neg   module  5   Id 436477204 " fill="rgb(255,11,0)" points="805.8,2240.62 826.215,2240.62 826.215,2235.3 805.8,2235.3 " />
<svg:polygon detid="436477460" count="1" value="123" id="4105030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 neg   module  5   Id 436477460 " fill="rgb(255,11,0)" points="805.8,2235.3 826.215,2235.3 826.215,2229.97 805.8,2229.97 " />
<svg:polygon detid="436477716" count="1" value="123" id="4105031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 neg   module  5   Id 436477716 " fill="rgb(255,11,0)" points="805.8,2229.97 826.215,2229.97 826.215,2224.65 805.8,2224.65 " />
<svg:polygon detid="436477972" count="1" value="123" id="4105032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 neg   module  5   Id 436477972 " fill="rgb(255,11,0)" points="805.8,2224.65 826.215,2224.65 826.215,2219.32 805.8,2219.32 " />
<svg:polygon detid="436478228" count="1" value="123" id="4105033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 neg   module  5   Id 436478228 " fill="rgb(255,11,0)" points="805.8,2219.32 826.215,2219.32 826.215,2214 805.8,2214 " />
<svg:polygon detid="436478484" count="1" value="123" id="4105034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 neg   module  5   Id 436478484 " fill="rgb(255,11,0)" points="805.8,2214 826.215,2214 826.215,2208.67 805.8,2208.67 " />
<svg:polygon detid="436478740" count="1" value="123" id="4105035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 neg   module  5   Id 436478740 " fill="rgb(255,11,0)" points="805.8,2208.67 826.215,2208.67 826.215,2203.35 805.8,2203.35 " />
<svg:polygon detid="436478996" count="1" value="123" id="4105036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 neg   module  5   Id 436478996 " fill="rgb(255,11,0)" points="805.8,2203.35 826.215,2203.35 826.215,2198.02 805.8,2198.02 " />
<svg:polygon detid="436479252" count="1" value="123" id="4105037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 neg   module  5   Id 436479252 " fill="rgb(255,11,0)" points="805.8,2198.02 826.215,2198.02 826.215,2192.7 805.8,2192.7 " />
<svg:polygon detid="436479508" count="1" value="123" id="4105038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 neg   module  5   Id 436479508 " fill="rgb(255,11,0)" points="805.8,2192.7 826.215,2192.7 826.215,2187.37 805.8,2187.37 " />
<svg:polygon detid="436479764" count="1" value="123" id="4105039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 neg   module  5   Id 436479764 " fill="rgb(255,11,0)" points="805.8,2187.37 826.215,2187.37 826.215,2182.04 805.8,2182.04 " />
<svg:polygon detid="436480020" count="1" value="123" id="4105040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 neg   module  5   Id 436480020 " fill="rgb(255,11,0)" points="805.8,2182.04 826.215,2182.04 826.215,2176.72 805.8,2176.72 " />
<svg:polygon detid="436480276" count="1" value="123" id="4105041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 neg   module  5   Id 436480276 " fill="rgb(255,11,0)" points="805.8,2176.72 826.215,2176.72 826.215,2171.39 805.8,2171.39 " />
<svg:polygon detid="436480532" count="1" value="123" id="4105042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 neg   module  5   Id 436480532 " fill="rgb(255,11,0)" points="805.8,2171.39 826.215,2171.39 826.215,2166.07 805.8,2166.07 " />
<svg:polygon detid="436480788" count="1" value="123" id="4105043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 neg   module  5   Id 436480788 " fill="rgb(255,11,0)" points="805.8,2166.07 826.215,2166.07 826.215,2160.74 805.8,2160.74 " />
<svg:polygon detid="436481044" count="1" value="123" id="4105044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 neg   module  5   Id 436481044 " fill="rgb(255,11,0)" points="805.8,2160.74 826.215,2160.74 826.215,2155.42 805.8,2155.42 " />
<svg:polygon detid="436481300" count="1" value="123" id="4105045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 neg   module  5   Id 436481300 " fill="rgb(255,11,0)" points="805.8,2155.42 826.215,2155.42 826.215,2150.09 805.8,2150.09 " />
<svg:polygon detid="436481556" count="1" value="123" id="4105046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 neg   module  5   Id 436481556 " fill="rgb(255,11,0)" points="805.8,2150.09 826.215,2150.09 826.215,2144.77 805.8,2144.77 " />
<svg:polygon detid="436481812" count="1" value="123" id="4105047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 neg   module  5   Id 436481812 " fill="rgb(255,11,0)" points="805.8,2144.77 826.215,2144.77 826.215,2139.44 805.8,2139.44 " />
<svg:polygon detid="436482068" count="1" value="123" id="4105048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 neg   module  5   Id 436482068 " fill="rgb(255,11,0)" points="805.8,2139.44 826.215,2139.44 826.215,2134.12 805.8,2134.12 " />
<svg:polygon detid="436482324" count="1" value="123" id="4105049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 neg   module  5   Id 436482324 " fill="rgb(255,11,0)" points="805.8,2134.12 826.215,2134.12 826.215,2128.79 805.8,2128.79 " />
<svg:polygon detid="436482580" count="1" value="123" id="4105050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 neg   module  5   Id 436482580 " fill="rgb(255,11,0)" points="805.8,2128.79 826.215,2128.79 826.215,2123.46 805.8,2123.46 " />
<svg:polygon detid="436482836" count="1" value="123" id="4105051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 neg   module  5   Id 436482836 " fill="rgb(255,11,0)" points="805.8,2123.46 826.215,2123.46 826.215,2118.14 805.8,2118.14 " />
<svg:polygon detid="436483092" count="1" value="123" id="4105052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 neg   module  5   Id 436483092 " fill="rgb(255,11,0)" points="805.8,2118.14 826.215,2118.14 826.215,2112.81 805.8,2112.81 " />
<svg:polygon detid="436483348" count="1" value="123" id="4105053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 neg   module  5   Id 436483348 " fill="rgb(255,11,0)" points="805.8,2112.81 826.215,2112.81 826.215,2107.49 805.8,2107.49 " />
<svg:polygon detid="436483604" count="1" value="123" id="4105054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 neg   module  5   Id 436483604 " fill="rgb(255,11,0)" points="805.8,2107.49 826.215,2107.49 826.215,2102.16 805.8,2102.16 " />
<svg:polygon detid="436483860" count="1" value="123" id="4105055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 neg   module  5   Id 436483860 " fill="rgb(255,11,0)" points="805.8,2102.16 826.215,2102.16 826.215,2096.84 805.8,2096.84 " />
<svg:polygon detid="436484116" count="1" value="123" id="4105056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 neg   module  5   Id 436484116 " fill="rgb(255,11,0)" points="805.8,2096.84 826.215,2096.84 826.215,2091.51 805.8,2091.51 " />
<svg:polygon detid="436484372" count="1" value="123" id="4105057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 neg   module  5   Id 436484372 " fill="rgb(255,11,0)" points="805.8,2091.51 826.215,2091.51 826.215,2086.19 805.8,2086.19 " />
<svg:polygon detid="436484628" count="1" value="123" id="4105058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 neg   module  5   Id 436484628 " fill="rgb(255,11,0)" points="805.8,2086.19 826.215,2086.19 826.215,2080.86 805.8,2080.86 " />
<svg:polygon detid="436484884" count="1" value="123" id="4105059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 neg   module  5   Id 436484884 " fill="rgb(255,11,0)" points="805.8,2080.86 826.215,2080.86 826.215,2075.54 805.8,2075.54 " />
<svg:polygon detid="436485140" count="1" value="123" id="4105060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 neg   module  5   Id 436485140 " fill="rgb(255,11,0)" points="805.8,2075.54 826.215,2075.54 826.215,2070.21 805.8,2070.21 " />
<svg:polygon detid="436470040" count="1" value="123" id="4106001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 neg   module  6   Id 436470040 " fill="rgb(255,11,0)" points="828.767,2389.74 849.182,2389.74 849.182,2384.41 828.767,2384.41 " />
<svg:polygon detid="436470296" count="1" value="123" id="4106002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 neg   module  6   Id 436470296 " fill="rgb(255,11,0)" points="828.767,2384.41 849.182,2384.41 849.182,2379.09 828.767,2379.09 " />
<svg:polygon detid="436470552" count="1" value="123" id="4106003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 neg   module  6   Id 436470552 " fill="rgb(255,11,0)" points="828.767,2379.09 849.182,2379.09 849.182,2373.76 828.767,2373.76 " />
<svg:polygon detid="436470808" count="1" value="123" id="4106004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 neg   module  6   Id 436470808 " fill="rgb(255,11,0)" points="828.767,2373.76 849.182,2373.76 849.182,2368.43 828.767,2368.43 " />
<svg:polygon detid="436471064" count="1" value="123" id="4106005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 neg   module  6   Id 436471064 " fill="rgb(255,11,0)" points="828.767,2368.43 849.182,2368.43 849.182,2363.11 828.767,2363.11 " />
<svg:polygon detid="436471320" count="1" value="123" id="4106006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 neg   module  6   Id 436471320 " fill="rgb(255,11,0)" points="828.767,2363.11 849.182,2363.11 849.182,2357.78 828.767,2357.78 " />
<svg:polygon detid="436471576" count="1" value="123" id="4106007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 neg   module  6   Id 436471576 " fill="rgb(255,11,0)" points="828.767,2357.78 849.182,2357.78 849.182,2352.46 828.767,2352.46 " />
<svg:polygon detid="436471832" count="1" value="123" id="4106008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 neg   module  6   Id 436471832 " fill="rgb(255,11,0)" points="828.767,2352.46 849.182,2352.46 849.182,2347.13 828.767,2347.13 " />
<svg:polygon detid="436472088" count="1" value="123" id="4106009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 neg   module  6   Id 436472088 " fill="rgb(255,11,0)" points="828.767,2347.13 849.182,2347.13 849.182,2341.81 828.767,2341.81 " />
<svg:polygon detid="436472344" count="1" value="123" id="4106010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 neg   module  6   Id 436472344 " fill="rgb(255,11,0)" points="828.767,2341.81 849.182,2341.81 849.182,2336.48 828.767,2336.48 " />
<svg:polygon detid="436472600" count="1" value="123" id="4106011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 neg   module  6   Id 436472600 " fill="rgb(255,11,0)" points="828.767,2336.48 849.182,2336.48 849.182,2331.16 828.767,2331.16 " />
<svg:polygon detid="436472856" count="1" value="123" id="4106012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 neg   module  6   Id 436472856 " fill="rgb(255,11,0)" points="828.767,2331.16 849.182,2331.16 849.182,2325.83 828.767,2325.83 " />
<svg:polygon detid="436473112" count="1" value="123" id="4106013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 neg   module  6   Id 436473112 " fill="rgb(255,11,0)" points="828.767,2325.83 849.182,2325.83 849.182,2320.51 828.767,2320.51 " />
<svg:polygon detid="436473368" count="1" value="123" id="4106014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 neg   module  6   Id 436473368 " fill="rgb(255,11,0)" points="828.767,2320.51 849.182,2320.51 849.182,2315.18 828.767,2315.18 " />
<svg:polygon detid="436473624" count="1" value="123" id="4106015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 neg   module  6   Id 436473624 " fill="rgb(255,11,0)" points="828.767,2315.18 849.182,2315.18 849.182,2309.85 828.767,2309.85 " />
<svg:polygon detid="436473880" count="1" value="123" id="4106016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 neg   module  6   Id 436473880 " fill="rgb(255,11,0)" points="828.767,2309.85 849.182,2309.85 849.182,2304.53 828.767,2304.53 " />
<svg:polygon detid="436474136" count="1" value="123" id="4106017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 neg   module  6   Id 436474136 " fill="rgb(255,11,0)" points="828.767,2304.53 849.182,2304.53 849.182,2299.2 828.767,2299.2 " />
<svg:polygon detid="436474392" count="1" value="123" id="4106018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 neg   module  6   Id 436474392 " fill="rgb(255,11,0)" points="828.767,2299.2 849.182,2299.2 849.182,2293.88 828.767,2293.88 " />
<svg:polygon detid="436474648" count="1" value="123" id="4106019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 neg   module  6   Id 436474648 " fill="rgb(255,11,0)" points="828.767,2293.88 849.182,2293.88 849.182,2288.55 828.767,2288.55 " />
<svg:polygon detid="436474904" count="1" value="123" id="4106020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 neg   module  6   Id 436474904 " fill="rgb(255,11,0)" points="828.767,2288.55 849.182,2288.55 849.182,2283.23 828.767,2283.23 " />
<svg:polygon detid="436475160" count="1" value="123" id="4106021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 neg   module  6   Id 436475160 " fill="rgb(255,11,0)" points="828.767,2283.23 849.182,2283.23 849.182,2277.9 828.767,2277.9 " />
<svg:polygon detid="436475416" count="1" value="123" id="4106022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 neg   module  6   Id 436475416 " fill="rgb(255,11,0)" points="828.767,2277.9 849.182,2277.9 849.182,2272.58 828.767,2272.58 " />
<svg:polygon detid="436475672" count="1" value="123" id="4106023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 neg   module  6   Id 436475672 " fill="rgb(255,11,0)" points="828.767,2272.58 849.182,2272.58 849.182,2267.25 828.767,2267.25 " />
<svg:polygon detid="436475928" count="1" value="123" id="4106024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 neg   module  6   Id 436475928 " fill="rgb(255,11,0)" points="828.767,2267.25 849.182,2267.25 849.182,2261.93 828.767,2261.93 " />
<svg:polygon detid="436476184" count="1" value="123" id="4106025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 neg   module  6   Id 436476184 " fill="rgb(255,11,0)" points="828.767,2261.93 849.182,2261.93 849.182,2256.6 828.767,2256.6 " />
<svg:polygon detid="436476440" count="1" value="123" id="4106026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 neg   module  6   Id 436476440 " fill="rgb(255,11,0)" points="828.767,2256.6 849.182,2256.6 849.182,2251.27 828.767,2251.27 " />
<svg:polygon detid="436476696" count="1" value="123" id="4106027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 neg   module  6   Id 436476696 " fill="rgb(255,11,0)" points="828.767,2251.27 849.182,2251.27 849.182,2245.95 828.767,2245.95 " />
<svg:polygon detid="436476952" count="1" value="123" id="4106028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 neg   module  6   Id 436476952 " fill="rgb(255,11,0)" points="828.767,2245.95 849.182,2245.95 849.182,2240.62 828.767,2240.62 " />
<svg:polygon detid="436477208" count="1" value="123" id="4106029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 neg   module  6   Id 436477208 " fill="rgb(255,11,0)" points="828.767,2240.62 849.182,2240.62 849.182,2235.3 828.767,2235.3 " />
<svg:polygon detid="436477464" count="1" value="123" id="4106030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 neg   module  6   Id 436477464 " fill="rgb(255,11,0)" points="828.767,2235.3 849.182,2235.3 849.182,2229.97 828.767,2229.97 " />
<svg:polygon detid="436477720" count="1" value="123" id="4106031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 neg   module  6   Id 436477720 " fill="rgb(255,11,0)" points="828.767,2229.97 849.182,2229.97 849.182,2224.65 828.767,2224.65 " />
<svg:polygon detid="436477976" count="1" value="123" id="4106032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 neg   module  6   Id 436477976 " fill="rgb(255,11,0)" points="828.767,2224.65 849.182,2224.65 849.182,2219.32 828.767,2219.32 " />
<svg:polygon detid="436478232" count="1" value="123" id="4106033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 neg   module  6   Id 436478232 " fill="rgb(255,11,0)" points="828.767,2219.32 849.182,2219.32 849.182,2214 828.767,2214 " />
<svg:polygon detid="436478488" count="1" value="123" id="4106034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 neg   module  6   Id 436478488 " fill="rgb(255,11,0)" points="828.767,2214 849.182,2214 849.182,2208.67 828.767,2208.67 " />
<svg:polygon detid="436478744" count="1" value="123" id="4106035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 neg   module  6   Id 436478744 " fill="rgb(255,11,0)" points="828.767,2208.67 849.182,2208.67 849.182,2203.35 828.767,2203.35 " />
<svg:polygon detid="436479000" count="1" value="123" id="4106036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 neg   module  6   Id 436479000 " fill="rgb(255,11,0)" points="828.767,2203.35 849.182,2203.35 849.182,2198.02 828.767,2198.02 " />
<svg:polygon detid="436479256" count="1" value="123" id="4106037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 neg   module  6   Id 436479256 " fill="rgb(255,11,0)" points="828.767,2198.02 849.182,2198.02 849.182,2192.7 828.767,2192.7 " />
<svg:polygon detid="436479512" count="1" value="123" id="4106038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 neg   module  6   Id 436479512 " fill="rgb(255,11,0)" points="828.767,2192.7 849.182,2192.7 849.182,2187.37 828.767,2187.37 " />
<svg:polygon detid="436479768" count="1" value="123" id="4106039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 neg   module  6   Id 436479768 " fill="rgb(255,11,0)" points="828.767,2187.37 849.182,2187.37 849.182,2182.04 828.767,2182.04 " />
<svg:polygon detid="436480024" count="1" value="123" id="4106040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 neg   module  6   Id 436480024 " fill="rgb(255,11,0)" points="828.767,2182.04 849.182,2182.04 849.182,2176.72 828.767,2176.72 " />
<svg:polygon detid="436480280" count="1" value="123" id="4106041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 neg   module  6   Id 436480280 " fill="rgb(255,11,0)" points="828.767,2176.72 849.182,2176.72 849.182,2171.39 828.767,2171.39 " />
<svg:polygon detid="436480536" count="1" value="123" id="4106042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 neg   module  6   Id 436480536 " fill="rgb(255,11,0)" points="828.767,2171.39 849.182,2171.39 849.182,2166.07 828.767,2166.07 " />
<svg:polygon detid="436480792" count="1" value="123" id="4106043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 neg   module  6   Id 436480792 " fill="rgb(255,11,0)" points="828.767,2166.07 849.182,2166.07 849.182,2160.74 828.767,2160.74 " />
<svg:polygon detid="436481048" count="1" value="123" id="4106044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 neg   module  6   Id 436481048 " fill="rgb(255,11,0)" points="828.767,2160.74 849.182,2160.74 849.182,2155.42 828.767,2155.42 " />
<svg:polygon detid="436481304" count="1" value="123" id="4106045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 neg   module  6   Id 436481304 " fill="rgb(255,11,0)" points="828.767,2155.42 849.182,2155.42 849.182,2150.09 828.767,2150.09 " />
<svg:polygon detid="436481560" count="1" value="123" id="4106046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 neg   module  6   Id 436481560 " fill="rgb(255,11,0)" points="828.767,2150.09 849.182,2150.09 849.182,2144.77 828.767,2144.77 " />
<svg:polygon detid="436481816" count="1" value="123" id="4106047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 neg   module  6   Id 436481816 " fill="rgb(255,11,0)" points="828.767,2144.77 849.182,2144.77 849.182,2139.44 828.767,2139.44 " />
<svg:polygon detid="436482072" count="1" value="123" id="4106048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 neg   module  6   Id 436482072 " fill="rgb(255,11,0)" points="828.767,2139.44 849.182,2139.44 849.182,2134.12 828.767,2134.12 " />
<svg:polygon detid="436482328" count="1" value="123" id="4106049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 neg   module  6   Id 436482328 " fill="rgb(255,11,0)" points="828.767,2134.12 849.182,2134.12 849.182,2128.79 828.767,2128.79 " />
<svg:polygon detid="436482584" count="1" value="123" id="4106050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 neg   module  6   Id 436482584 " fill="rgb(255,11,0)" points="828.767,2128.79 849.182,2128.79 849.182,2123.46 828.767,2123.46 " />
<svg:polygon detid="436482840" count="1" value="123" id="4106051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 neg   module  6   Id 436482840 " fill="rgb(255,11,0)" points="828.767,2123.46 849.182,2123.46 849.182,2118.14 828.767,2118.14 " />
<svg:polygon detid="436483096" count="1" value="123" id="4106052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 neg   module  6   Id 436483096 " fill="rgb(255,11,0)" points="828.767,2118.14 849.182,2118.14 849.182,2112.81 828.767,2112.81 " />
<svg:polygon detid="436483352" count="1" value="123" id="4106053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 neg   module  6   Id 436483352 " fill="rgb(255,11,0)" points="828.767,2112.81 849.182,2112.81 849.182,2107.49 828.767,2107.49 " />
<svg:polygon detid="436483608" count="1" value="123" id="4106054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 neg   module  6   Id 436483608 " fill="rgb(255,11,0)" points="828.767,2107.49 849.182,2107.49 849.182,2102.16 828.767,2102.16 " />
<svg:polygon detid="436483864" count="1" value="123" id="4106055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 neg   module  6   Id 436483864 " fill="rgb(255,11,0)" points="828.767,2102.16 849.182,2102.16 849.182,2096.84 828.767,2096.84 " />
<svg:polygon detid="436484120" count="1" value="123" id="4106056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 neg   module  6   Id 436484120 " fill="rgb(255,11,0)" points="828.767,2096.84 849.182,2096.84 849.182,2091.51 828.767,2091.51 " />
<svg:polygon detid="436484376" count="1" value="123" id="4106057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 neg   module  6   Id 436484376 " fill="rgb(255,11,0)" points="828.767,2091.51 849.182,2091.51 849.182,2086.19 828.767,2086.19 " />
<svg:polygon detid="436484632" count="1" value="123" id="4106058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 neg   module  6   Id 436484632 " fill="rgb(255,11,0)" points="828.767,2086.19 849.182,2086.19 849.182,2080.86 828.767,2080.86 " />
<svg:polygon detid="436484888" count="1" value="123" id="4106059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 neg   module  6   Id 436484888 " fill="rgb(255,11,0)" points="828.767,2080.86 849.182,2080.86 849.182,2075.54 828.767,2075.54 " />
<svg:polygon detid="436485144" count="1" value="123" id="4106060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 neg   module  6   Id 436485144 " fill="rgb(255,11,0)" points="828.767,2075.54 849.182,2075.54 849.182,2070.21 828.767,2070.21 " />
<svg:polygon detid="436502788" count="1" value="123" id="4107001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 pos   module  1   Id 436502788 " fill="rgb(255,11,0)" points="851.733,2389.74 872.148,2389.74 872.148,2384.41 851.733,2384.41 " />
<svg:polygon detid="436503044" count="1" value="123" id="4107002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 pos   module  1   Id 436503044 " fill="rgb(255,11,0)" points="851.733,2384.41 872.148,2384.41 872.148,2379.09 851.733,2379.09 " />
<svg:polygon detid="436503300" count="1" value="123" id="4107003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 pos   module  1   Id 436503300 " fill="rgb(255,11,0)" points="851.733,2379.09 872.148,2379.09 872.148,2373.76 851.733,2373.76 " />
<svg:polygon detid="436503556" count="1" value="123" id="4107004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 pos   module  1   Id 436503556 " fill="rgb(255,11,0)" points="851.733,2373.76 872.148,2373.76 872.148,2368.43 851.733,2368.43 " />
<svg:polygon detid="436503812" count="1" value="123" id="4107005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 pos   module  1   Id 436503812 " fill="rgb(255,11,0)" points="851.733,2368.43 872.148,2368.43 872.148,2363.11 851.733,2363.11 " />
<svg:polygon detid="436504068" count="1" value="123" id="4107006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 pos   module  1   Id 436504068 " fill="rgb(255,11,0)" points="851.733,2363.11 872.148,2363.11 872.148,2357.78 851.733,2357.78 " />
<svg:polygon detid="436504324" count="1" value="123" id="4107007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 pos   module  1   Id 436504324 " fill="rgb(255,11,0)" points="851.733,2357.78 872.148,2357.78 872.148,2352.46 851.733,2352.46 " />
<svg:polygon detid="436504580" count="1" value="123" id="4107008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 pos   module  1   Id 436504580 " fill="rgb(255,11,0)" points="851.733,2352.46 872.148,2352.46 872.148,2347.13 851.733,2347.13 " />
<svg:polygon detid="436504836" count="1" value="123" id="4107009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 pos   module  1   Id 436504836 " fill="rgb(255,11,0)" points="851.733,2347.13 872.148,2347.13 872.148,2341.81 851.733,2341.81 " />
<svg:polygon detid="436505092" count="1" value="123" id="4107010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 pos   module  1   Id 436505092 " fill="rgb(255,11,0)" points="851.733,2341.81 872.148,2341.81 872.148,2336.48 851.733,2336.48 " />
<svg:polygon detid="436505348" count="1" value="123" id="4107011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 pos   module  1   Id 436505348 " fill="rgb(255,11,0)" points="851.733,2336.48 872.148,2336.48 872.148,2331.16 851.733,2331.16 " />
<svg:polygon detid="436505604" count="1" value="123" id="4107012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 pos   module  1   Id 436505604 " fill="rgb(255,11,0)" points="851.733,2331.16 872.148,2331.16 872.148,2325.83 851.733,2325.83 " />
<svg:polygon detid="436505860" count="1" value="123" id="4107013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 pos   module  1   Id 436505860 " fill="rgb(255,11,0)" points="851.733,2325.83 872.148,2325.83 872.148,2320.51 851.733,2320.51 " />
<svg:polygon detid="436506116" count="1" value="123" id="4107014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 pos   module  1   Id 436506116 " fill="rgb(255,11,0)" points="851.733,2320.51 872.148,2320.51 872.148,2315.18 851.733,2315.18 " />
<svg:polygon detid="436506372" count="1" value="123" id="4107015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 pos   module  1   Id 436506372 " fill="rgb(255,11,0)" points="851.733,2315.18 872.148,2315.18 872.148,2309.85 851.733,2309.85 " />
<svg:polygon detid="436506628" count="1" value="123" id="4107016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 pos   module  1   Id 436506628 " fill="rgb(255,11,0)" points="851.733,2309.85 872.148,2309.85 872.148,2304.53 851.733,2304.53 " />
<svg:polygon detid="436506884" count="1" value="123" id="4107017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 pos   module  1   Id 436506884 " fill="rgb(255,11,0)" points="851.733,2304.53 872.148,2304.53 872.148,2299.2 851.733,2299.2 " />
<svg:polygon detid="436507140" count="1" value="123" id="4107018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 pos   module  1   Id 436507140 " fill="rgb(255,11,0)" points="851.733,2299.2 872.148,2299.2 872.148,2293.88 851.733,2293.88 " />
<svg:polygon detid="436507396" count="1" value="123" id="4107019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 pos   module  1   Id 436507396 " fill="rgb(255,11,0)" points="851.733,2293.88 872.148,2293.88 872.148,2288.55 851.733,2288.55 " />
<svg:polygon detid="436507652" count="1" value="123" id="4107020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 pos   module  1   Id 436507652 " fill="rgb(255,11,0)" points="851.733,2288.55 872.148,2288.55 872.148,2283.23 851.733,2283.23 " />
<svg:polygon detid="436507908" count="1" value="123" id="4107021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 pos   module  1   Id 436507908 " fill="rgb(255,11,0)" points="851.733,2283.23 872.148,2283.23 872.148,2277.9 851.733,2277.9 " />
<svg:polygon detid="436508164" count="1" value="123" id="4107022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 pos   module  1   Id 436508164 " fill="rgb(255,11,0)" points="851.733,2277.9 872.148,2277.9 872.148,2272.58 851.733,2272.58 " />
<svg:polygon detid="436508420" count="1" value="123" id="4107023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 pos   module  1   Id 436508420 " fill="rgb(255,11,0)" points="851.733,2272.58 872.148,2272.58 872.148,2267.25 851.733,2267.25 " />
<svg:polygon detid="436508676" count="1" value="123" id="4107024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 pos   module  1   Id 436508676 " fill="rgb(255,11,0)" points="851.733,2267.25 872.148,2267.25 872.148,2261.93 851.733,2261.93 " />
<svg:polygon detid="436508932" count="1" value="123" id="4107025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 pos   module  1   Id 436508932 " fill="rgb(255,11,0)" points="851.733,2261.93 872.148,2261.93 872.148,2256.6 851.733,2256.6 " />
<svg:polygon detid="436509188" count="1" value="123" id="4107026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 pos   module  1   Id 436509188 " fill="rgb(255,11,0)" points="851.733,2256.6 872.148,2256.6 872.148,2251.27 851.733,2251.27 " />
<svg:polygon detid="436509444" count="1" value="123" id="4107027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 pos   module  1   Id 436509444 " fill="rgb(255,11,0)" points="851.733,2251.27 872.148,2251.27 872.148,2245.95 851.733,2245.95 " />
<svg:polygon detid="436509700" count="1" value="123" id="4107028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 pos   module  1   Id 436509700 " fill="rgb(255,11,0)" points="851.733,2245.95 872.148,2245.95 872.148,2240.62 851.733,2240.62 " />
<svg:polygon detid="436509956" count="1" value="123" id="4107029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 pos   module  1   Id 436509956 " fill="rgb(255,11,0)" points="851.733,2240.62 872.148,2240.62 872.148,2235.3 851.733,2235.3 " />
<svg:polygon detid="436510212" count="1" value="123" id="4107030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 pos   module  1   Id 436510212 " fill="rgb(255,11,0)" points="851.733,2235.3 872.148,2235.3 872.148,2229.97 851.733,2229.97 " />
<svg:polygon detid="436510468" count="1" value="123" id="4107031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 pos   module  1   Id 436510468 " fill="rgb(255,11,0)" points="851.733,2229.97 872.148,2229.97 872.148,2224.65 851.733,2224.65 " />
<svg:polygon detid="436510724" count="1" value="123" id="4107032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 pos   module  1   Id 436510724 " fill="rgb(255,11,0)" points="851.733,2224.65 872.148,2224.65 872.148,2219.32 851.733,2219.32 " />
<svg:polygon detid="436510980" count="1" value="123" id="4107033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 pos   module  1   Id 436510980 " fill="rgb(255,11,0)" points="851.733,2219.32 872.148,2219.32 872.148,2214 851.733,2214 " />
<svg:polygon detid="436511236" count="1" value="123" id="4107034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 pos   module  1   Id 436511236 " fill="rgb(255,11,0)" points="851.733,2214 872.148,2214 872.148,2208.67 851.733,2208.67 " />
<svg:polygon detid="436511492" count="1" value="123" id="4107035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 pos   module  1   Id 436511492 " fill="rgb(255,11,0)" points="851.733,2208.67 872.148,2208.67 872.148,2203.35 851.733,2203.35 " />
<svg:polygon detid="436511748" count="1" value="123" id="4107036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 pos   module  1   Id 436511748 " fill="rgb(255,11,0)" points="851.733,2203.35 872.148,2203.35 872.148,2198.02 851.733,2198.02 " />
<svg:polygon detid="436512004" count="1" value="123" id="4107037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 pos   module  1   Id 436512004 " fill="rgb(255,11,0)" points="851.733,2198.02 872.148,2198.02 872.148,2192.7 851.733,2192.7 " />
<svg:polygon detid="436512260" count="1" value="123" id="4107038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 pos   module  1   Id 436512260 " fill="rgb(255,11,0)" points="851.733,2192.7 872.148,2192.7 872.148,2187.37 851.733,2187.37 " />
<svg:polygon detid="436512516" count="1" value="123" id="4107039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 pos   module  1   Id 436512516 " fill="rgb(255,11,0)" points="851.733,2187.37 872.148,2187.37 872.148,2182.04 851.733,2182.04 " />
<svg:polygon detid="436512772" count="1" value="123" id="4107040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 pos   module  1   Id 436512772 " fill="rgb(255,11,0)" points="851.733,2182.04 872.148,2182.04 872.148,2176.72 851.733,2176.72 " />
<svg:polygon detid="436513028" count="1" value="123" id="4107041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 pos   module  1   Id 436513028 " fill="rgb(255,11,0)" points="851.733,2176.72 872.148,2176.72 872.148,2171.39 851.733,2171.39 " />
<svg:polygon detid="436513284" count="1" value="123" id="4107042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 pos   module  1   Id 436513284 " fill="rgb(255,11,0)" points="851.733,2171.39 872.148,2171.39 872.148,2166.07 851.733,2166.07 " />
<svg:polygon detid="436513540" count="1" value="123" id="4107043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 pos   module  1   Id 436513540 " fill="rgb(255,11,0)" points="851.733,2166.07 872.148,2166.07 872.148,2160.74 851.733,2160.74 " />
<svg:polygon detid="436513796" count="1" value="123" id="4107044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 pos   module  1   Id 436513796 " fill="rgb(255,11,0)" points="851.733,2160.74 872.148,2160.74 872.148,2155.42 851.733,2155.42 " />
<svg:polygon detid="436514052" count="1" value="123" id="4107045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 pos   module  1   Id 436514052 " fill="rgb(255,11,0)" points="851.733,2155.42 872.148,2155.42 872.148,2150.09 851.733,2150.09 " />
<svg:polygon detid="436514308" count="1" value="123" id="4107046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 pos   module  1   Id 436514308 " fill="rgb(255,11,0)" points="851.733,2150.09 872.148,2150.09 872.148,2144.77 851.733,2144.77 " />
<svg:polygon detid="436514564" count="1" value="123" id="4107047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 pos   module  1   Id 436514564 " fill="rgb(255,11,0)" points="851.733,2144.77 872.148,2144.77 872.148,2139.44 851.733,2139.44 " />
<svg:polygon detid="436514820" count="1" value="123" id="4107048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 pos   module  1   Id 436514820 " fill="rgb(255,11,0)" points="851.733,2139.44 872.148,2139.44 872.148,2134.12 851.733,2134.12 " />
<svg:polygon detid="436515076" count="1" value="123" id="4107049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 pos   module  1   Id 436515076 " fill="rgb(255,11,0)" points="851.733,2134.12 872.148,2134.12 872.148,2128.79 851.733,2128.79 " />
<svg:polygon detid="436515332" count="1" value="123" id="4107050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 pos   module  1   Id 436515332 " fill="rgb(255,11,0)" points="851.733,2128.79 872.148,2128.79 872.148,2123.46 851.733,2123.46 " />
<svg:polygon detid="436515588" count="1" value="123" id="4107051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 pos   module  1   Id 436515588 " fill="rgb(255,11,0)" points="851.733,2123.46 872.148,2123.46 872.148,2118.14 851.733,2118.14 " />
<svg:polygon detid="436515844" count="1" value="123" id="4107052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 pos   module  1   Id 436515844 " fill="rgb(255,11,0)" points="851.733,2118.14 872.148,2118.14 872.148,2112.81 851.733,2112.81 " />
<svg:polygon detid="436516100" count="1" value="123" id="4107053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 pos   module  1   Id 436516100 " fill="rgb(255,11,0)" points="851.733,2112.81 872.148,2112.81 872.148,2107.49 851.733,2107.49 " />
<svg:polygon detid="436516356" count="1" value="123" id="4107054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 pos   module  1   Id 436516356 " fill="rgb(255,11,0)" points="851.733,2107.49 872.148,2107.49 872.148,2102.16 851.733,2102.16 " />
<svg:polygon detid="436516612" count="1" value="123" id="4107055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 pos   module  1   Id 436516612 " fill="rgb(255,11,0)" points="851.733,2102.16 872.148,2102.16 872.148,2096.84 851.733,2096.84 " />
<svg:polygon detid="436516868" count="1" value="123" id="4107056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 pos   module  1   Id 436516868 " fill="rgb(255,11,0)" points="851.733,2096.84 872.148,2096.84 872.148,2091.51 851.733,2091.51 " />
<svg:polygon detid="436517124" count="1" value="123" id="4107057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 pos   module  1   Id 436517124 " fill="rgb(255,11,0)" points="851.733,2091.51 872.148,2091.51 872.148,2086.19 851.733,2086.19 " />
<svg:polygon detid="436517380" count="1" value="123" id="4107058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 pos   module  1   Id 436517380 " fill="rgb(255,11,0)" points="851.733,2086.19 872.148,2086.19 872.148,2080.86 851.733,2080.86 " />
<svg:polygon detid="436517636" count="1" value="123" id="4107059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 pos   module  1   Id 436517636 " fill="rgb(255,11,0)" points="851.733,2080.86 872.148,2080.86 872.148,2075.54 851.733,2075.54 " />
<svg:polygon detid="436517892" count="1" value="123" id="4107060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 pos   module  1   Id 436517892 " fill="rgb(255,11,0)" points="851.733,2075.54 872.148,2075.54 872.148,2070.21 851.733,2070.21 " />
<svg:polygon detid="436502792" count="1" value="123" id="4108001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 pos   module  2   Id 436502792 " fill="rgb(255,11,0)" points="874.7,2389.74 895.115,2389.74 895.115,2384.41 874.7,2384.41 " />
<svg:polygon detid="436503048" count="1" value="123" id="4108002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 pos   module  2   Id 436503048 " fill="rgb(255,11,0)" points="874.7,2384.41 895.115,2384.41 895.115,2379.09 874.7,2379.09 " />
<svg:polygon detid="436503304" count="1" value="123" id="4108003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 pos   module  2   Id 436503304 " fill="rgb(255,11,0)" points="874.7,2379.09 895.115,2379.09 895.115,2373.76 874.7,2373.76 " />
<svg:polygon detid="436503560" count="1" value="123" id="4108004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 pos   module  2   Id 436503560 " fill="rgb(255,11,0)" points="874.7,2373.76 895.115,2373.76 895.115,2368.43 874.7,2368.43 " />
<svg:polygon detid="436503816" count="1" value="123" id="4108005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 pos   module  2   Id 436503816 " fill="rgb(255,11,0)" points="874.7,2368.43 895.115,2368.43 895.115,2363.11 874.7,2363.11 " />
<svg:polygon detid="436504072" count="1" value="123" id="4108006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 pos   module  2   Id 436504072 " fill="rgb(255,11,0)" points="874.7,2363.11 895.115,2363.11 895.115,2357.78 874.7,2357.78 " />
<svg:polygon detid="436504328" count="1" value="123" id="4108007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 pos   module  2   Id 436504328 " fill="rgb(255,11,0)" points="874.7,2357.78 895.115,2357.78 895.115,2352.46 874.7,2352.46 " />
<svg:polygon detid="436504584" count="1" value="123" id="4108008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 pos   module  2   Id 436504584 " fill="rgb(255,11,0)" points="874.7,2352.46 895.115,2352.46 895.115,2347.13 874.7,2347.13 " />
<svg:polygon detid="436504840" count="1" value="123" id="4108009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 pos   module  2   Id 436504840 " fill="rgb(255,11,0)" points="874.7,2347.13 895.115,2347.13 895.115,2341.81 874.7,2341.81 " />
<svg:polygon detid="436505096" count="1" value="123" id="4108010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 pos   module  2   Id 436505096 " fill="rgb(255,11,0)" points="874.7,2341.81 895.115,2341.81 895.115,2336.48 874.7,2336.48 " />
<svg:polygon detid="436505352" count="1" value="123" id="4108011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 pos   module  2   Id 436505352 " fill="rgb(255,11,0)" points="874.7,2336.48 895.115,2336.48 895.115,2331.16 874.7,2331.16 " />
<svg:polygon detid="436505608" count="1" value="123" id="4108012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 pos   module  2   Id 436505608 " fill="rgb(255,11,0)" points="874.7,2331.16 895.115,2331.16 895.115,2325.83 874.7,2325.83 " />
<svg:polygon detid="436505864" count="1" value="123" id="4108013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 pos   module  2   Id 436505864 " fill="rgb(255,11,0)" points="874.7,2325.83 895.115,2325.83 895.115,2320.51 874.7,2320.51 " />
<svg:polygon detid="436506120" count="1" value="123" id="4108014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 pos   module  2   Id 436506120 " fill="rgb(255,11,0)" points="874.7,2320.51 895.115,2320.51 895.115,2315.18 874.7,2315.18 " />
<svg:polygon detid="436506376" count="1" value="123" id="4108015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 pos   module  2   Id 436506376 " fill="rgb(255,11,0)" points="874.7,2315.18 895.115,2315.18 895.115,2309.85 874.7,2309.85 " />
<svg:polygon detid="436506632" count="1" value="123" id="4108016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 pos   module  2   Id 436506632 " fill="rgb(255,11,0)" points="874.7,2309.85 895.115,2309.85 895.115,2304.53 874.7,2304.53 " />
<svg:polygon detid="436506888" count="1" value="123" id="4108017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 pos   module  2   Id 436506888 " fill="rgb(255,11,0)" points="874.7,2304.53 895.115,2304.53 895.115,2299.2 874.7,2299.2 " />
<svg:polygon detid="436507144" count="1" value="123" id="4108018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 pos   module  2   Id 436507144 " fill="rgb(255,11,0)" points="874.7,2299.2 895.115,2299.2 895.115,2293.88 874.7,2293.88 " />
<svg:polygon detid="436507400" count="1" value="123" id="4108019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 pos   module  2   Id 436507400 " fill="rgb(255,11,0)" points="874.7,2293.88 895.115,2293.88 895.115,2288.55 874.7,2288.55 " />
<svg:polygon detid="436507656" count="1" value="123" id="4108020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 pos   module  2   Id 436507656 " fill="rgb(255,11,0)" points="874.7,2288.55 895.115,2288.55 895.115,2283.23 874.7,2283.23 " />
<svg:polygon detid="436507912" count="1" value="123" id="4108021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 pos   module  2   Id 436507912 " fill="rgb(255,11,0)" points="874.7,2283.23 895.115,2283.23 895.115,2277.9 874.7,2277.9 " />
<svg:polygon detid="436508168" count="1" value="123" id="4108022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 pos   module  2   Id 436508168 " fill="rgb(255,11,0)" points="874.7,2277.9 895.115,2277.9 895.115,2272.58 874.7,2272.58 " />
<svg:polygon detid="436508424" count="1" value="123" id="4108023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 pos   module  2   Id 436508424 " fill="rgb(255,11,0)" points="874.7,2272.58 895.115,2272.58 895.115,2267.25 874.7,2267.25 " />
<svg:polygon detid="436508680" count="1" value="123" id="4108024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 pos   module  2   Id 436508680 " fill="rgb(255,11,0)" points="874.7,2267.25 895.115,2267.25 895.115,2261.93 874.7,2261.93 " />
<svg:polygon detid="436508936" count="1" value="123" id="4108025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 pos   module  2   Id 436508936 " fill="rgb(255,11,0)" points="874.7,2261.93 895.115,2261.93 895.115,2256.6 874.7,2256.6 " />
<svg:polygon detid="436509192" count="1" value="123" id="4108026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 pos   module  2   Id 436509192 " fill="rgb(255,11,0)" points="874.7,2256.6 895.115,2256.6 895.115,2251.27 874.7,2251.27 " />
<svg:polygon detid="436509448" count="1" value="123" id="4108027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 pos   module  2   Id 436509448 " fill="rgb(255,11,0)" points="874.7,2251.27 895.115,2251.27 895.115,2245.95 874.7,2245.95 " />
<svg:polygon detid="436509704" count="1" value="123" id="4108028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 pos   module  2   Id 436509704 " fill="rgb(255,11,0)" points="874.7,2245.95 895.115,2245.95 895.115,2240.62 874.7,2240.62 " />
<svg:polygon detid="436509960" count="1" value="123" id="4108029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 pos   module  2   Id 436509960 " fill="rgb(255,11,0)" points="874.7,2240.62 895.115,2240.62 895.115,2235.3 874.7,2235.3 " />
<svg:polygon detid="436510216" count="1" value="123" id="4108030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 pos   module  2   Id 436510216 " fill="rgb(255,11,0)" points="874.7,2235.3 895.115,2235.3 895.115,2229.97 874.7,2229.97 " />
<svg:polygon detid="436510472" count="1" value="123" id="4108031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 pos   module  2   Id 436510472 " fill="rgb(255,11,0)" points="874.7,2229.97 895.115,2229.97 895.115,2224.65 874.7,2224.65 " />
<svg:polygon detid="436510728" count="1" value="123" id="4108032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 pos   module  2   Id 436510728 " fill="rgb(255,11,0)" points="874.7,2224.65 895.115,2224.65 895.115,2219.32 874.7,2219.32 " />
<svg:polygon detid="436510984" count="1" value="123" id="4108033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 pos   module  2   Id 436510984 " fill="rgb(255,11,0)" points="874.7,2219.32 895.115,2219.32 895.115,2214 874.7,2214 " />
<svg:polygon detid="436511240" count="1" value="123" id="4108034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 pos   module  2   Id 436511240 " fill="rgb(255,11,0)" points="874.7,2214 895.115,2214 895.115,2208.67 874.7,2208.67 " />
<svg:polygon detid="436511496" count="1" value="123" id="4108035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 pos   module  2   Id 436511496 " fill="rgb(255,11,0)" points="874.7,2208.67 895.115,2208.67 895.115,2203.35 874.7,2203.35 " />
<svg:polygon detid="436511752" count="1" value="123" id="4108036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 pos   module  2   Id 436511752 " fill="rgb(255,11,0)" points="874.7,2203.35 895.115,2203.35 895.115,2198.02 874.7,2198.02 " />
<svg:polygon detid="436512008" count="1" value="123" id="4108037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 pos   module  2   Id 436512008 " fill="rgb(255,11,0)" points="874.7,2198.02 895.115,2198.02 895.115,2192.7 874.7,2192.7 " />
<svg:polygon detid="436512264" count="1" value="123" id="4108038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 pos   module  2   Id 436512264 " fill="rgb(255,11,0)" points="874.7,2192.7 895.115,2192.7 895.115,2187.37 874.7,2187.37 " />
<svg:polygon detid="436512520" count="1" value="123" id="4108039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 pos   module  2   Id 436512520 " fill="rgb(255,11,0)" points="874.7,2187.37 895.115,2187.37 895.115,2182.04 874.7,2182.04 " />
<svg:polygon detid="436512776" count="1" value="123" id="4108040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 pos   module  2   Id 436512776 " fill="rgb(255,11,0)" points="874.7,2182.04 895.115,2182.04 895.115,2176.72 874.7,2176.72 " />
<svg:polygon detid="436513032" count="1" value="123" id="4108041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 pos   module  2   Id 436513032 " fill="rgb(255,11,0)" points="874.7,2176.72 895.115,2176.72 895.115,2171.39 874.7,2171.39 " />
<svg:polygon detid="436513288" count="1" value="123" id="4108042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 pos   module  2   Id 436513288 " fill="rgb(255,11,0)" points="874.7,2171.39 895.115,2171.39 895.115,2166.07 874.7,2166.07 " />
<svg:polygon detid="436513544" count="1" value="123" id="4108043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 pos   module  2   Id 436513544 " fill="rgb(255,11,0)" points="874.7,2166.07 895.115,2166.07 895.115,2160.74 874.7,2160.74 " />
<svg:polygon detid="436513800" count="1" value="123" id="4108044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 pos   module  2   Id 436513800 " fill="rgb(255,11,0)" points="874.7,2160.74 895.115,2160.74 895.115,2155.42 874.7,2155.42 " />
<svg:polygon detid="436514056" count="1" value="123" id="4108045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 pos   module  2   Id 436514056 " fill="rgb(255,11,0)" points="874.7,2155.42 895.115,2155.42 895.115,2150.09 874.7,2150.09 " />
<svg:polygon detid="436514312" count="1" value="123" id="4108046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 pos   module  2   Id 436514312 " fill="rgb(255,11,0)" points="874.7,2150.09 895.115,2150.09 895.115,2144.77 874.7,2144.77 " />
<svg:polygon detid="436514568" count="1" value="123" id="4108047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 pos   module  2   Id 436514568 " fill="rgb(255,11,0)" points="874.7,2144.77 895.115,2144.77 895.115,2139.44 874.7,2139.44 " />
<svg:polygon detid="436514824" count="1" value="123" id="4108048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 pos   module  2   Id 436514824 " fill="rgb(255,11,0)" points="874.7,2139.44 895.115,2139.44 895.115,2134.12 874.7,2134.12 " />
<svg:polygon detid="436515080" count="1" value="123" id="4108049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 pos   module  2   Id 436515080 " fill="rgb(255,11,0)" points="874.7,2134.12 895.115,2134.12 895.115,2128.79 874.7,2128.79 " />
<svg:polygon detid="436515336" count="1" value="123" id="4108050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 pos   module  2   Id 436515336 " fill="rgb(255,11,0)" points="874.7,2128.79 895.115,2128.79 895.115,2123.46 874.7,2123.46 " />
<svg:polygon detid="436515592" count="1" value="123" id="4108051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 pos   module  2   Id 436515592 " fill="rgb(255,11,0)" points="874.7,2123.46 895.115,2123.46 895.115,2118.14 874.7,2118.14 " />
<svg:polygon detid="436515848" count="1" value="123" id="4108052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 pos   module  2   Id 436515848 " fill="rgb(255,11,0)" points="874.7,2118.14 895.115,2118.14 895.115,2112.81 874.7,2112.81 " />
<svg:polygon detid="436516104" count="1" value="123" id="4108053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 pos   module  2   Id 436516104 " fill="rgb(255,11,0)" points="874.7,2112.81 895.115,2112.81 895.115,2107.49 874.7,2107.49 " />
<svg:polygon detid="436516360" count="1" value="123" id="4108054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 pos   module  2   Id 436516360 " fill="rgb(255,11,0)" points="874.7,2107.49 895.115,2107.49 895.115,2102.16 874.7,2102.16 " />
<svg:polygon detid="436516616" count="1" value="123" id="4108055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 pos   module  2   Id 436516616 " fill="rgb(255,11,0)" points="874.7,2102.16 895.115,2102.16 895.115,2096.84 874.7,2096.84 " />
<svg:polygon detid="436516872" count="1" value="123" id="4108056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 pos   module  2   Id 436516872 " fill="rgb(255,11,0)" points="874.7,2096.84 895.115,2096.84 895.115,2091.51 874.7,2091.51 " />
<svg:polygon detid="436517128" count="1" value="123" id="4108057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 pos   module  2   Id 436517128 " fill="rgb(255,11,0)" points="874.7,2091.51 895.115,2091.51 895.115,2086.19 874.7,2086.19 " />
<svg:polygon detid="436517384" count="1" value="123" id="4108058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 pos   module  2   Id 436517384 " fill="rgb(255,11,0)" points="874.7,2086.19 895.115,2086.19 895.115,2080.86 874.7,2080.86 " />
<svg:polygon detid="436517640" count="1" value="123" id="4108059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 pos   module  2   Id 436517640 " fill="rgb(255,11,0)" points="874.7,2080.86 895.115,2080.86 895.115,2075.54 874.7,2075.54 " />
<svg:polygon detid="436517896" count="1" value="123" id="4108060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 pos   module  2   Id 436517896 " fill="rgb(255,11,0)" points="874.7,2075.54 895.115,2075.54 895.115,2070.21 874.7,2070.21 " />
<svg:polygon detid="436502796" count="1" value="123" id="4109001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 pos   module  3   Id 436502796 " fill="rgb(255,11,0)" points="897.667,2389.74 918.081,2389.74 918.081,2384.41 897.667,2384.41 " />
<svg:polygon detid="436503052" count="1" value="123" id="4109002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 pos   module  3   Id 436503052 " fill="rgb(255,11,0)" points="897.667,2384.41 918.081,2384.41 918.081,2379.09 897.667,2379.09 " />
<svg:polygon detid="436503308" count="1" value="123" id="4109003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 pos   module  3   Id 436503308 " fill="rgb(255,11,0)" points="897.667,2379.09 918.081,2379.09 918.081,2373.76 897.667,2373.76 " />
<svg:polygon detid="436503564" count="1" value="123" id="4109004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 pos   module  3   Id 436503564 " fill="rgb(255,11,0)" points="897.667,2373.76 918.081,2373.76 918.081,2368.43 897.667,2368.43 " />
<svg:polygon detid="436503820" count="1" value="123" id="4109005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 pos   module  3   Id 436503820 " fill="rgb(255,11,0)" points="897.667,2368.43 918.081,2368.43 918.081,2363.11 897.667,2363.11 " />
<svg:polygon detid="436504076" count="1" value="123" id="4109006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 pos   module  3   Id 436504076 " fill="rgb(255,11,0)" points="897.667,2363.11 918.081,2363.11 918.081,2357.78 897.667,2357.78 " />
<svg:polygon detid="436504332" count="1" value="123" id="4109007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 pos   module  3   Id 436504332 " fill="rgb(255,11,0)" points="897.667,2357.78 918.081,2357.78 918.081,2352.46 897.667,2352.46 " />
<svg:polygon detid="436504588" count="1" value="123" id="4109008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 pos   module  3   Id 436504588 " fill="rgb(255,11,0)" points="897.667,2352.46 918.081,2352.46 918.081,2347.13 897.667,2347.13 " />
<svg:polygon detid="436504844" count="1" value="123" id="4109009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 pos   module  3   Id 436504844 " fill="rgb(255,11,0)" points="897.667,2347.13 918.081,2347.13 918.081,2341.81 897.667,2341.81 " />
<svg:polygon detid="436505100" count="1" value="123" id="4109010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 pos   module  3   Id 436505100 " fill="rgb(255,11,0)" points="897.667,2341.81 918.081,2341.81 918.081,2336.48 897.667,2336.48 " />
<svg:polygon detid="436505356" count="1" value="123" id="4109011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 pos   module  3   Id 436505356 " fill="rgb(255,11,0)" points="897.667,2336.48 918.081,2336.48 918.081,2331.16 897.667,2331.16 " />
<svg:polygon detid="436505612" count="1" value="123" id="4109012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 pos   module  3   Id 436505612 " fill="rgb(255,11,0)" points="897.667,2331.16 918.081,2331.16 918.081,2325.83 897.667,2325.83 " />
<svg:polygon detid="436505868" count="1" value="123" id="4109013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 pos   module  3   Id 436505868 " fill="rgb(255,11,0)" points="897.667,2325.83 918.081,2325.83 918.081,2320.51 897.667,2320.51 " />
<svg:polygon detid="436506124" count="1" value="123" id="4109014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 pos   module  3   Id 436506124 " fill="rgb(255,11,0)" points="897.667,2320.51 918.081,2320.51 918.081,2315.18 897.667,2315.18 " />
<svg:polygon detid="436506380" count="1" value="123" id="4109015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 pos   module  3   Id 436506380 " fill="rgb(255,11,0)" points="897.667,2315.18 918.081,2315.18 918.081,2309.85 897.667,2309.85 " />
<svg:polygon detid="436506636" count="1" value="123" id="4109016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 pos   module  3   Id 436506636 " fill="rgb(255,11,0)" points="897.667,2309.85 918.081,2309.85 918.081,2304.53 897.667,2304.53 " />
<svg:polygon detid="436506892" count="1" value="123" id="4109017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 pos   module  3   Id 436506892 " fill="rgb(255,11,0)" points="897.667,2304.53 918.081,2304.53 918.081,2299.2 897.667,2299.2 " />
<svg:polygon detid="436507148" count="1" value="123" id="4109018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 pos   module  3   Id 436507148 " fill="rgb(255,11,0)" points="897.667,2299.2 918.081,2299.2 918.081,2293.88 897.667,2293.88 " />
<svg:polygon detid="436507404" count="1" value="123" id="4109019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 pos   module  3   Id 436507404 " fill="rgb(255,11,0)" points="897.667,2293.88 918.081,2293.88 918.081,2288.55 897.667,2288.55 " />
<svg:polygon detid="436507660" count="1" value="123" id="4109020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 pos   module  3   Id 436507660 " fill="rgb(255,11,0)" points="897.667,2288.55 918.081,2288.55 918.081,2283.23 897.667,2283.23 " />
<svg:polygon detid="436507916" count="1" value="123" id="4109021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 pos   module  3   Id 436507916 " fill="rgb(255,11,0)" points="897.667,2283.23 918.081,2283.23 918.081,2277.9 897.667,2277.9 " />
<svg:polygon detid="436508172" count="1" value="123" id="4109022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 pos   module  3   Id 436508172 " fill="rgb(255,11,0)" points="897.667,2277.9 918.081,2277.9 918.081,2272.58 897.667,2272.58 " />
<svg:polygon detid="436508428" count="1" value="123" id="4109023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 pos   module  3   Id 436508428 " fill="rgb(255,11,0)" points="897.667,2272.58 918.081,2272.58 918.081,2267.25 897.667,2267.25 " />
<svg:polygon detid="436508684" count="1" value="123" id="4109024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 pos   module  3   Id 436508684 " fill="rgb(255,11,0)" points="897.667,2267.25 918.081,2267.25 918.081,2261.93 897.667,2261.93 " />
<svg:polygon detid="436508940" count="1" value="123" id="4109025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 pos   module  3   Id 436508940 " fill="rgb(255,11,0)" points="897.667,2261.93 918.081,2261.93 918.081,2256.6 897.667,2256.6 " />
<svg:polygon detid="436509196" count="1" value="123" id="4109026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 pos   module  3   Id 436509196 " fill="rgb(255,11,0)" points="897.667,2256.6 918.081,2256.6 918.081,2251.27 897.667,2251.27 " />
<svg:polygon detid="436509452" count="1" value="123" id="4109027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 pos   module  3   Id 436509452 " fill="rgb(255,11,0)" points="897.667,2251.27 918.081,2251.27 918.081,2245.95 897.667,2245.95 " />
<svg:polygon detid="436509708" count="1" value="123" id="4109028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 pos   module  3   Id 436509708 " fill="rgb(255,11,0)" points="897.667,2245.95 918.081,2245.95 918.081,2240.62 897.667,2240.62 " />
<svg:polygon detid="436509964" count="1" value="123" id="4109029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 pos   module  3   Id 436509964 " fill="rgb(255,11,0)" points="897.667,2240.62 918.081,2240.62 918.081,2235.3 897.667,2235.3 " />
<svg:polygon detid="436510220" count="1" value="123" id="4109030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 pos   module  3   Id 436510220 " fill="rgb(255,11,0)" points="897.667,2235.3 918.081,2235.3 918.081,2229.97 897.667,2229.97 " />
<svg:polygon detid="436510476" count="1" value="123" id="4109031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 pos   module  3   Id 436510476 " fill="rgb(255,11,0)" points="897.667,2229.97 918.081,2229.97 918.081,2224.65 897.667,2224.65 " />
<svg:polygon detid="436510732" count="1" value="123" id="4109032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 pos   module  3   Id 436510732 " fill="rgb(255,11,0)" points="897.667,2224.65 918.081,2224.65 918.081,2219.32 897.667,2219.32 " />
<svg:polygon detid="436510988" count="1" value="123" id="4109033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 pos   module  3   Id 436510988 " fill="rgb(255,11,0)" points="897.667,2219.32 918.081,2219.32 918.081,2214 897.667,2214 " />
<svg:polygon detid="436511244" count="1" value="123" id="4109034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 pos   module  3   Id 436511244 " fill="rgb(255,11,0)" points="897.667,2214 918.081,2214 918.081,2208.67 897.667,2208.67 " />
<svg:polygon detid="436511500" count="1" value="123" id="4109035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 pos   module  3   Id 436511500 " fill="rgb(255,11,0)" points="897.667,2208.67 918.081,2208.67 918.081,2203.35 897.667,2203.35 " />
<svg:polygon detid="436511756" count="1" value="123" id="4109036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 pos   module  3   Id 436511756 " fill="rgb(255,11,0)" points="897.667,2203.35 918.081,2203.35 918.081,2198.02 897.667,2198.02 " />
<svg:polygon detid="436512012" count="1" value="123" id="4109037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 pos   module  3   Id 436512012 " fill="rgb(255,11,0)" points="897.667,2198.02 918.081,2198.02 918.081,2192.7 897.667,2192.7 " />
<svg:polygon detid="436512268" count="1" value="123" id="4109038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 pos   module  3   Id 436512268 " fill="rgb(255,11,0)" points="897.667,2192.7 918.081,2192.7 918.081,2187.37 897.667,2187.37 " />
<svg:polygon detid="436512524" count="1" value="123" id="4109039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 pos   module  3   Id 436512524 " fill="rgb(255,11,0)" points="897.667,2187.37 918.081,2187.37 918.081,2182.04 897.667,2182.04 " />
<svg:polygon detid="436512780" count="1" value="123" id="4109040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 pos   module  3   Id 436512780 " fill="rgb(255,11,0)" points="897.667,2182.04 918.081,2182.04 918.081,2176.72 897.667,2176.72 " />
<svg:polygon detid="436513036" count="1" value="123" id="4109041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 pos   module  3   Id 436513036 " fill="rgb(255,11,0)" points="897.667,2176.72 918.081,2176.72 918.081,2171.39 897.667,2171.39 " />
<svg:polygon detid="436513292" count="1" value="123" id="4109042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 pos   module  3   Id 436513292 " fill="rgb(255,11,0)" points="897.667,2171.39 918.081,2171.39 918.081,2166.07 897.667,2166.07 " />
<svg:polygon detid="436513548" count="1" value="123" id="4109043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 pos   module  3   Id 436513548 " fill="rgb(255,11,0)" points="897.667,2166.07 918.081,2166.07 918.081,2160.74 897.667,2160.74 " />
<svg:polygon detid="436513804" count="1" value="123" id="4109044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 pos   module  3   Id 436513804 " fill="rgb(255,11,0)" points="897.667,2160.74 918.081,2160.74 918.081,2155.42 897.667,2155.42 " />
<svg:polygon detid="436514060" count="1" value="123" id="4109045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 pos   module  3   Id 436514060 " fill="rgb(255,11,0)" points="897.667,2155.42 918.081,2155.42 918.081,2150.09 897.667,2150.09 " />
<svg:polygon detid="436514316" count="1" value="123" id="4109046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 pos   module  3   Id 436514316 " fill="rgb(255,11,0)" points="897.667,2150.09 918.081,2150.09 918.081,2144.77 897.667,2144.77 " />
<svg:polygon detid="436514572" count="1" value="123" id="4109047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 pos   module  3   Id 436514572 " fill="rgb(255,11,0)" points="897.667,2144.77 918.081,2144.77 918.081,2139.44 897.667,2139.44 " />
<svg:polygon detid="436514828" count="1" value="123" id="4109048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 pos   module  3   Id 436514828 " fill="rgb(255,11,0)" points="897.667,2139.44 918.081,2139.44 918.081,2134.12 897.667,2134.12 " />
<svg:polygon detid="436515084" count="1" value="123" id="4109049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 pos   module  3   Id 436515084 " fill="rgb(255,11,0)" points="897.667,2134.12 918.081,2134.12 918.081,2128.79 897.667,2128.79 " />
<svg:polygon detid="436515340" count="1" value="123" id="4109050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 pos   module  3   Id 436515340 " fill="rgb(255,11,0)" points="897.667,2128.79 918.081,2128.79 918.081,2123.46 897.667,2123.46 " />
<svg:polygon detid="436515596" count="1" value="123" id="4109051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 pos   module  3   Id 436515596 " fill="rgb(255,11,0)" points="897.667,2123.46 918.081,2123.46 918.081,2118.14 897.667,2118.14 " />
<svg:polygon detid="436515852" count="1" value="123" id="4109052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 pos   module  3   Id 436515852 " fill="rgb(255,11,0)" points="897.667,2118.14 918.081,2118.14 918.081,2112.81 897.667,2112.81 " />
<svg:polygon detid="436516108" count="1" value="123" id="4109053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 pos   module  3   Id 436516108 " fill="rgb(255,11,0)" points="897.667,2112.81 918.081,2112.81 918.081,2107.49 897.667,2107.49 " />
<svg:polygon detid="436516364" count="1" value="123" id="4109054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 pos   module  3   Id 436516364 " fill="rgb(255,11,0)" points="897.667,2107.49 918.081,2107.49 918.081,2102.16 897.667,2102.16 " />
<svg:polygon detid="436516620" count="1" value="123" id="4109055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 pos   module  3   Id 436516620 " fill="rgb(255,11,0)" points="897.667,2102.16 918.081,2102.16 918.081,2096.84 897.667,2096.84 " />
<svg:polygon detid="436516876" count="1" value="123" id="4109056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 pos   module  3   Id 436516876 " fill="rgb(255,11,0)" points="897.667,2096.84 918.081,2096.84 918.081,2091.51 897.667,2091.51 " />
<svg:polygon detid="436517132" count="1" value="123" id="4109057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 pos   module  3   Id 436517132 " fill="rgb(255,11,0)" points="897.667,2091.51 918.081,2091.51 918.081,2086.19 897.667,2086.19 " />
<svg:polygon detid="436517388" count="1" value="123" id="4109058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 pos   module  3   Id 436517388 " fill="rgb(255,11,0)" points="897.667,2086.19 918.081,2086.19 918.081,2080.86 897.667,2080.86 " />
<svg:polygon detid="436517644" count="1" value="123" id="4109059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 pos   module  3   Id 436517644 " fill="rgb(255,11,0)" points="897.667,2080.86 918.081,2080.86 918.081,2075.54 897.667,2075.54 " />
<svg:polygon detid="436517900" count="1" value="123" id="4109060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 pos   module  3   Id 436517900 " fill="rgb(255,11,0)" points="897.667,2075.54 918.081,2075.54 918.081,2070.21 897.667,2070.21 " />
<svg:polygon detid="436502800" count="1" value="123" id="4110001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 pos   module  4   Id 436502800 " fill="rgb(255,11,0)" points="920.633,2389.74 941.048,2389.74 941.048,2384.41 920.633,2384.41 " />
<svg:polygon detid="436503056" count="1" value="123" id="4110002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 pos   module  4   Id 436503056 " fill="rgb(255,11,0)" points="920.633,2384.41 941.048,2384.41 941.048,2379.09 920.633,2379.09 " />
<svg:polygon detid="436503312" count="1" value="123" id="4110003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 pos   module  4   Id 436503312 " fill="rgb(255,11,0)" points="920.633,2379.09 941.048,2379.09 941.048,2373.76 920.633,2373.76 " />
<svg:polygon detid="436503568" count="1" value="123" id="4110004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 pos   module  4   Id 436503568 " fill="rgb(255,11,0)" points="920.633,2373.76 941.048,2373.76 941.048,2368.43 920.633,2368.43 " />
<svg:polygon detid="436503824" count="1" value="123" id="4110005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 pos   module  4   Id 436503824 " fill="rgb(255,11,0)" points="920.633,2368.43 941.048,2368.43 941.048,2363.11 920.633,2363.11 " />
<svg:polygon detid="436504080" count="1" value="123" id="4110006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 pos   module  4   Id 436504080 " fill="rgb(255,11,0)" points="920.633,2363.11 941.048,2363.11 941.048,2357.78 920.633,2357.78 " />
<svg:polygon detid="436504336" count="1" value="123" id="4110007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 pos   module  4   Id 436504336 " fill="rgb(255,11,0)" points="920.633,2357.78 941.048,2357.78 941.048,2352.46 920.633,2352.46 " />
<svg:polygon detid="436504592" count="1" value="123" id="4110008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 pos   module  4   Id 436504592 " fill="rgb(255,11,0)" points="920.633,2352.46 941.048,2352.46 941.048,2347.13 920.633,2347.13 " />
<svg:polygon detid="436504848" count="1" value="123" id="4110009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 pos   module  4   Id 436504848 " fill="rgb(255,11,0)" points="920.633,2347.13 941.048,2347.13 941.048,2341.81 920.633,2341.81 " />
<svg:polygon detid="436505104" count="1" value="123" id="4110010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 pos   module  4   Id 436505104 " fill="rgb(255,11,0)" points="920.633,2341.81 941.048,2341.81 941.048,2336.48 920.633,2336.48 " />
<svg:polygon detid="436505360" count="1" value="123" id="4110011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 pos   module  4   Id 436505360 " fill="rgb(255,11,0)" points="920.633,2336.48 941.048,2336.48 941.048,2331.16 920.633,2331.16 " />
<svg:polygon detid="436505616" count="1" value="123" id="4110012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 pos   module  4   Id 436505616 " fill="rgb(255,11,0)" points="920.633,2331.16 941.048,2331.16 941.048,2325.83 920.633,2325.83 " />
<svg:polygon detid="436505872" count="1" value="123" id="4110013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 pos   module  4   Id 436505872 " fill="rgb(255,11,0)" points="920.633,2325.83 941.048,2325.83 941.048,2320.51 920.633,2320.51 " />
<svg:polygon detid="436506128" count="1" value="123" id="4110014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 pos   module  4   Id 436506128 " fill="rgb(255,11,0)" points="920.633,2320.51 941.048,2320.51 941.048,2315.18 920.633,2315.18 " />
<svg:polygon detid="436506384" count="1" value="123" id="4110015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 pos   module  4   Id 436506384 " fill="rgb(255,11,0)" points="920.633,2315.18 941.048,2315.18 941.048,2309.85 920.633,2309.85 " />
<svg:polygon detid="436506640" count="1" value="123" id="4110016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 pos   module  4   Id 436506640 " fill="rgb(255,11,0)" points="920.633,2309.85 941.048,2309.85 941.048,2304.53 920.633,2304.53 " />
<svg:polygon detid="436506896" count="1" value="123" id="4110017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 pos   module  4   Id 436506896 " fill="rgb(255,11,0)" points="920.633,2304.53 941.048,2304.53 941.048,2299.2 920.633,2299.2 " />
<svg:polygon detid="436507152" count="1" value="123" id="4110018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 pos   module  4   Id 436507152 " fill="rgb(255,11,0)" points="920.633,2299.2 941.048,2299.2 941.048,2293.88 920.633,2293.88 " />
<svg:polygon detid="436507408" count="1" value="123" id="4110019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 pos   module  4   Id 436507408 " fill="rgb(255,11,0)" points="920.633,2293.88 941.048,2293.88 941.048,2288.55 920.633,2288.55 " />
<svg:polygon detid="436507664" count="1" value="123" id="4110020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 pos   module  4   Id 436507664 " fill="rgb(255,11,0)" points="920.633,2288.55 941.048,2288.55 941.048,2283.23 920.633,2283.23 " />
<svg:polygon detid="436507920" count="1" value="123" id="4110021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 pos   module  4   Id 436507920 " fill="rgb(255,11,0)" points="920.633,2283.23 941.048,2283.23 941.048,2277.9 920.633,2277.9 " />
<svg:polygon detid="436508176" count="1" value="123" id="4110022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 pos   module  4   Id 436508176 " fill="rgb(255,11,0)" points="920.633,2277.9 941.048,2277.9 941.048,2272.58 920.633,2272.58 " />
<svg:polygon detid="436508432" count="1" value="123" id="4110023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 pos   module  4   Id 436508432 " fill="rgb(255,11,0)" points="920.633,2272.58 941.048,2272.58 941.048,2267.25 920.633,2267.25 " />
<svg:polygon detid="436508688" count="1" value="123" id="4110024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 pos   module  4   Id 436508688 " fill="rgb(255,11,0)" points="920.633,2267.25 941.048,2267.25 941.048,2261.93 920.633,2261.93 " />
<svg:polygon detid="436508944" count="1" value="123" id="4110025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 pos   module  4   Id 436508944 " fill="rgb(255,11,0)" points="920.633,2261.93 941.048,2261.93 941.048,2256.6 920.633,2256.6 " />
<svg:polygon detid="436509200" count="1" value="123" id="4110026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 pos   module  4   Id 436509200 " fill="rgb(255,11,0)" points="920.633,2256.6 941.048,2256.6 941.048,2251.27 920.633,2251.27 " />
<svg:polygon detid="436509456" count="1" value="123" id="4110027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 pos   module  4   Id 436509456 " fill="rgb(255,11,0)" points="920.633,2251.27 941.048,2251.27 941.048,2245.95 920.633,2245.95 " />
<svg:polygon detid="436509712" count="1" value="123" id="4110028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 pos   module  4   Id 436509712 " fill="rgb(255,11,0)" points="920.633,2245.95 941.048,2245.95 941.048,2240.62 920.633,2240.62 " />
<svg:polygon detid="436509968" count="1" value="123" id="4110029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 pos   module  4   Id 436509968 " fill="rgb(255,11,0)" points="920.633,2240.62 941.048,2240.62 941.048,2235.3 920.633,2235.3 " />
<svg:polygon detid="436510224" count="1" value="123" id="4110030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 pos   module  4   Id 436510224 " fill="rgb(255,11,0)" points="920.633,2235.3 941.048,2235.3 941.048,2229.97 920.633,2229.97 " />
<svg:polygon detid="436510480" count="1" value="123" id="4110031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 pos   module  4   Id 436510480 " fill="rgb(255,11,0)" points="920.633,2229.97 941.048,2229.97 941.048,2224.65 920.633,2224.65 " />
<svg:polygon detid="436510736" count="1" value="123" id="4110032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 pos   module  4   Id 436510736 " fill="rgb(255,11,0)" points="920.633,2224.65 941.048,2224.65 941.048,2219.32 920.633,2219.32 " />
<svg:polygon detid="436510992" count="1" value="123" id="4110033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 pos   module  4   Id 436510992 " fill="rgb(255,11,0)" points="920.633,2219.32 941.048,2219.32 941.048,2214 920.633,2214 " />
<svg:polygon detid="436511248" count="1" value="123" id="4110034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 pos   module  4   Id 436511248 " fill="rgb(255,11,0)" points="920.633,2214 941.048,2214 941.048,2208.67 920.633,2208.67 " />
<svg:polygon detid="436511504" count="1" value="123" id="4110035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 pos   module  4   Id 436511504 " fill="rgb(255,11,0)" points="920.633,2208.67 941.048,2208.67 941.048,2203.35 920.633,2203.35 " />
<svg:polygon detid="436511760" count="1" value="123" id="4110036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 pos   module  4   Id 436511760 " fill="rgb(255,11,0)" points="920.633,2203.35 941.048,2203.35 941.048,2198.02 920.633,2198.02 " />
<svg:polygon detid="436512016" count="1" value="123" id="4110037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 pos   module  4   Id 436512016 " fill="rgb(255,11,0)" points="920.633,2198.02 941.048,2198.02 941.048,2192.7 920.633,2192.7 " />
<svg:polygon detid="436512272" count="1" value="123" id="4110038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 pos   module  4   Id 436512272 " fill="rgb(255,11,0)" points="920.633,2192.7 941.048,2192.7 941.048,2187.37 920.633,2187.37 " />
<svg:polygon detid="436512528" count="1" value="123" id="4110039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 pos   module  4   Id 436512528 " fill="rgb(255,11,0)" points="920.633,2187.37 941.048,2187.37 941.048,2182.04 920.633,2182.04 " />
<svg:polygon detid="436512784" count="1" value="123" id="4110040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 pos   module  4   Id 436512784 " fill="rgb(255,11,0)" points="920.633,2182.04 941.048,2182.04 941.048,2176.72 920.633,2176.72 " />
<svg:polygon detid="436513040" count="1" value="123" id="4110041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 pos   module  4   Id 436513040 " fill="rgb(255,11,0)" points="920.633,2176.72 941.048,2176.72 941.048,2171.39 920.633,2171.39 " />
<svg:polygon detid="436513296" count="1" value="123" id="4110042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 pos   module  4   Id 436513296 " fill="rgb(255,11,0)" points="920.633,2171.39 941.048,2171.39 941.048,2166.07 920.633,2166.07 " />
<svg:polygon detid="436513552" count="1" value="123" id="4110043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 pos   module  4   Id 436513552 " fill="rgb(255,11,0)" points="920.633,2166.07 941.048,2166.07 941.048,2160.74 920.633,2160.74 " />
<svg:polygon detid="436513808" count="1" value="123" id="4110044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 pos   module  4   Id 436513808 " fill="rgb(255,11,0)" points="920.633,2160.74 941.048,2160.74 941.048,2155.42 920.633,2155.42 " />
<svg:polygon detid="436514064" count="1" value="123" id="4110045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 pos   module  4   Id 436514064 " fill="rgb(255,11,0)" points="920.633,2155.42 941.048,2155.42 941.048,2150.09 920.633,2150.09 " />
<svg:polygon detid="436514320" count="1" value="123" id="4110046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 pos   module  4   Id 436514320 " fill="rgb(255,11,0)" points="920.633,2150.09 941.048,2150.09 941.048,2144.77 920.633,2144.77 " />
<svg:polygon detid="436514576" count="1" value="123" id="4110047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 pos   module  4   Id 436514576 " fill="rgb(255,11,0)" points="920.633,2144.77 941.048,2144.77 941.048,2139.44 920.633,2139.44 " />
<svg:polygon detid="436514832" count="1" value="123" id="4110048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 pos   module  4   Id 436514832 " fill="rgb(255,11,0)" points="920.633,2139.44 941.048,2139.44 941.048,2134.12 920.633,2134.12 " />
<svg:polygon detid="436515088" count="1" value="123" id="4110049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 pos   module  4   Id 436515088 " fill="rgb(255,11,0)" points="920.633,2134.12 941.048,2134.12 941.048,2128.79 920.633,2128.79 " />
<svg:polygon detid="436515344" count="1" value="123" id="4110050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 pos   module  4   Id 436515344 " fill="rgb(255,11,0)" points="920.633,2128.79 941.048,2128.79 941.048,2123.46 920.633,2123.46 " />
<svg:polygon detid="436515600" count="1" value="123" id="4110051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 pos   module  4   Id 436515600 " fill="rgb(255,11,0)" points="920.633,2123.46 941.048,2123.46 941.048,2118.14 920.633,2118.14 " />
<svg:polygon detid="436515856" count="1" value="123" id="4110052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 pos   module  4   Id 436515856 " fill="rgb(255,11,0)" points="920.633,2118.14 941.048,2118.14 941.048,2112.81 920.633,2112.81 " />
<svg:polygon detid="436516112" count="1" value="123" id="4110053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 pos   module  4   Id 436516112 " fill="rgb(255,11,0)" points="920.633,2112.81 941.048,2112.81 941.048,2107.49 920.633,2107.49 " />
<svg:polygon detid="436516368" count="1" value="123" id="4110054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 pos   module  4   Id 436516368 " fill="rgb(255,11,0)" points="920.633,2107.49 941.048,2107.49 941.048,2102.16 920.633,2102.16 " />
<svg:polygon detid="436516624" count="1" value="123" id="4110055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 pos   module  4   Id 436516624 " fill="rgb(255,11,0)" points="920.633,2102.16 941.048,2102.16 941.048,2096.84 920.633,2096.84 " />
<svg:polygon detid="436516880" count="1" value="123" id="4110056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 pos   module  4   Id 436516880 " fill="rgb(255,11,0)" points="920.633,2096.84 941.048,2096.84 941.048,2091.51 920.633,2091.51 " />
<svg:polygon detid="436517136" count="1" value="123" id="4110057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 pos   module  4   Id 436517136 " fill="rgb(255,11,0)" points="920.633,2091.51 941.048,2091.51 941.048,2086.19 920.633,2086.19 " />
<svg:polygon detid="436517392" count="1" value="123" id="4110058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 pos   module  4   Id 436517392 " fill="rgb(255,11,0)" points="920.633,2086.19 941.048,2086.19 941.048,2080.86 920.633,2080.86 " />
<svg:polygon detid="436517648" count="1" value="123" id="4110059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 pos   module  4   Id 436517648 " fill="rgb(255,11,0)" points="920.633,2080.86 941.048,2080.86 941.048,2075.54 920.633,2075.54 " />
<svg:polygon detid="436517904" count="1" value="123" id="4110060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 pos   module  4   Id 436517904 " fill="rgb(255,11,0)" points="920.633,2075.54 941.048,2075.54 941.048,2070.21 920.633,2070.21 " />
<svg:polygon detid="436502804" count="1" value="123" id="4111001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 pos   module  5   Id 436502804 " fill="rgb(255,11,0)" points="943.6,2389.74 964.014,2389.74 964.014,2384.41 943.6,2384.41 " />
<svg:polygon detid="436503060" count="1" value="123" id="4111002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 pos   module  5   Id 436503060 " fill="rgb(255,11,0)" points="943.6,2384.41 964.014,2384.41 964.014,2379.09 943.6,2379.09 " />
<svg:polygon detid="436503316" count="1" value="123" id="4111003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 pos   module  5   Id 436503316 " fill="rgb(255,11,0)" points="943.6,2379.09 964.014,2379.09 964.014,2373.76 943.6,2373.76 " />
<svg:polygon detid="436503572" count="1" value="123" id="4111004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 pos   module  5   Id 436503572 " fill="rgb(255,11,0)" points="943.6,2373.76 964.014,2373.76 964.014,2368.43 943.6,2368.43 " />
<svg:polygon detid="436503828" count="1" value="123" id="4111005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 pos   module  5   Id 436503828 " fill="rgb(255,11,0)" points="943.6,2368.43 964.014,2368.43 964.014,2363.11 943.6,2363.11 " />
<svg:polygon detid="436504084" count="1" value="123" id="4111006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 pos   module  5   Id 436504084 " fill="rgb(255,11,0)" points="943.6,2363.11 964.014,2363.11 964.014,2357.78 943.6,2357.78 " />
<svg:polygon detid="436504340" count="1" value="123" id="4111007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 pos   module  5   Id 436504340 " fill="rgb(255,11,0)" points="943.6,2357.78 964.014,2357.78 964.014,2352.46 943.6,2352.46 " />
<svg:polygon detid="436504596" count="1" value="123" id="4111008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 pos   module  5   Id 436504596 " fill="rgb(255,11,0)" points="943.6,2352.46 964.014,2352.46 964.014,2347.13 943.6,2347.13 " />
<svg:polygon detid="436504852" count="1" value="123" id="4111009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 pos   module  5   Id 436504852 " fill="rgb(255,11,0)" points="943.6,2347.13 964.014,2347.13 964.014,2341.81 943.6,2341.81 " />
<svg:polygon detid="436505108" count="1" value="123" id="4111010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 pos   module  5   Id 436505108 " fill="rgb(255,11,0)" points="943.6,2341.81 964.014,2341.81 964.014,2336.48 943.6,2336.48 " />
<svg:polygon detid="436505364" count="1" value="123" id="4111011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 pos   module  5   Id 436505364 " fill="rgb(255,11,0)" points="943.6,2336.48 964.014,2336.48 964.014,2331.16 943.6,2331.16 " />
<svg:polygon detid="436505620" count="1" value="123" id="4111012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 pos   module  5   Id 436505620 " fill="rgb(255,11,0)" points="943.6,2331.16 964.014,2331.16 964.014,2325.83 943.6,2325.83 " />
<svg:polygon detid="436505876" count="1" value="123" id="4111013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 pos   module  5   Id 436505876 " fill="rgb(255,11,0)" points="943.6,2325.83 964.014,2325.83 964.014,2320.51 943.6,2320.51 " />
<svg:polygon detid="436506132" count="1" value="123" id="4111014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 pos   module  5   Id 436506132 " fill="rgb(255,11,0)" points="943.6,2320.51 964.014,2320.51 964.014,2315.18 943.6,2315.18 " />
<svg:polygon detid="436506388" count="1" value="123" id="4111015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 pos   module  5   Id 436506388 " fill="rgb(255,11,0)" points="943.6,2315.18 964.014,2315.18 964.014,2309.85 943.6,2309.85 " />
<svg:polygon detid="436506644" count="1" value="123" id="4111016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 pos   module  5   Id 436506644 " fill="rgb(255,11,0)" points="943.6,2309.85 964.014,2309.85 964.014,2304.53 943.6,2304.53 " />
<svg:polygon detid="436506900" count="1" value="123" id="4111017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 pos   module  5   Id 436506900 " fill="rgb(255,11,0)" points="943.6,2304.53 964.014,2304.53 964.014,2299.2 943.6,2299.2 " />
<svg:polygon detid="436507156" count="1" value="123" id="4111018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 pos   module  5   Id 436507156 " fill="rgb(255,11,0)" points="943.6,2299.2 964.014,2299.2 964.014,2293.88 943.6,2293.88 " />
<svg:polygon detid="436507412" count="1" value="123" id="4111019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 pos   module  5   Id 436507412 " fill="rgb(255,11,0)" points="943.6,2293.88 964.014,2293.88 964.014,2288.55 943.6,2288.55 " />
<svg:polygon detid="436507668" count="1" value="123" id="4111020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 pos   module  5   Id 436507668 " fill="rgb(255,11,0)" points="943.6,2288.55 964.014,2288.55 964.014,2283.23 943.6,2283.23 " />
<svg:polygon detid="436507924" count="1" value="123" id="4111021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 pos   module  5   Id 436507924 " fill="rgb(255,11,0)" points="943.6,2283.23 964.014,2283.23 964.014,2277.9 943.6,2277.9 " />
<svg:polygon detid="436508180" count="1" value="123" id="4111022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 pos   module  5   Id 436508180 " fill="rgb(255,11,0)" points="943.6,2277.9 964.014,2277.9 964.014,2272.58 943.6,2272.58 " />
<svg:polygon detid="436508436" count="1" value="123" id="4111023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 pos   module  5   Id 436508436 " fill="rgb(255,11,0)" points="943.6,2272.58 964.014,2272.58 964.014,2267.25 943.6,2267.25 " />
<svg:polygon detid="436508692" count="1" value="123" id="4111024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 pos   module  5   Id 436508692 " fill="rgb(255,11,0)" points="943.6,2267.25 964.014,2267.25 964.014,2261.93 943.6,2261.93 " />
<svg:polygon detid="436508948" count="1" value="123" id="4111025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 pos   module  5   Id 436508948 " fill="rgb(255,11,0)" points="943.6,2261.93 964.014,2261.93 964.014,2256.6 943.6,2256.6 " />
<svg:polygon detid="436509204" count="1" value="123" id="4111026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 pos   module  5   Id 436509204 " fill="rgb(255,11,0)" points="943.6,2256.6 964.014,2256.6 964.014,2251.27 943.6,2251.27 " />
<svg:polygon detid="436509460" count="1" value="123" id="4111027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 pos   module  5   Id 436509460 " fill="rgb(255,11,0)" points="943.6,2251.27 964.014,2251.27 964.014,2245.95 943.6,2245.95 " />
<svg:polygon detid="436509716" count="1" value="123" id="4111028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 pos   module  5   Id 436509716 " fill="rgb(255,11,0)" points="943.6,2245.95 964.014,2245.95 964.014,2240.62 943.6,2240.62 " />
<svg:polygon detid="436509972" count="1" value="123" id="4111029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 pos   module  5   Id 436509972 " fill="rgb(255,11,0)" points="943.6,2240.62 964.014,2240.62 964.014,2235.3 943.6,2235.3 " />
<svg:polygon detid="436510228" count="1" value="123" id="4111030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 pos   module  5   Id 436510228 " fill="rgb(255,11,0)" points="943.6,2235.3 964.014,2235.3 964.014,2229.97 943.6,2229.97 " />
<svg:polygon detid="436510484" count="1" value="123" id="4111031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 pos   module  5   Id 436510484 " fill="rgb(255,11,0)" points="943.6,2229.97 964.014,2229.97 964.014,2224.65 943.6,2224.65 " />
<svg:polygon detid="436510740" count="1" value="123" id="4111032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 pos   module  5   Id 436510740 " fill="rgb(255,11,0)" points="943.6,2224.65 964.014,2224.65 964.014,2219.32 943.6,2219.32 " />
<svg:polygon detid="436510996" count="1" value="123" id="4111033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 pos   module  5   Id 436510996 " fill="rgb(255,11,0)" points="943.6,2219.32 964.014,2219.32 964.014,2214 943.6,2214 " />
<svg:polygon detid="436511252" count="1" value="123" id="4111034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 pos   module  5   Id 436511252 " fill="rgb(255,11,0)" points="943.6,2214 964.014,2214 964.014,2208.67 943.6,2208.67 " />
<svg:polygon detid="436511508" count="1" value="123" id="4111035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 pos   module  5   Id 436511508 " fill="rgb(255,11,0)" points="943.6,2208.67 964.014,2208.67 964.014,2203.35 943.6,2203.35 " />
<svg:polygon detid="436511764" count="1" value="123" id="4111036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 pos   module  5   Id 436511764 " fill="rgb(255,11,0)" points="943.6,2203.35 964.014,2203.35 964.014,2198.02 943.6,2198.02 " />
<svg:polygon detid="436512020" count="1" value="123" id="4111037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 pos   module  5   Id 436512020 " fill="rgb(255,11,0)" points="943.6,2198.02 964.014,2198.02 964.014,2192.7 943.6,2192.7 " />
<svg:polygon detid="436512276" count="1" value="123" id="4111038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 pos   module  5   Id 436512276 " fill="rgb(255,11,0)" points="943.6,2192.7 964.014,2192.7 964.014,2187.37 943.6,2187.37 " />
<svg:polygon detid="436512532" count="1" value="123" id="4111039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 pos   module  5   Id 436512532 " fill="rgb(255,11,0)" points="943.6,2187.37 964.014,2187.37 964.014,2182.04 943.6,2182.04 " />
<svg:polygon detid="436512788" count="1" value="123" id="4111040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 pos   module  5   Id 436512788 " fill="rgb(255,11,0)" points="943.6,2182.04 964.014,2182.04 964.014,2176.72 943.6,2176.72 " />
<svg:polygon detid="436513044" count="1" value="123" id="4111041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 pos   module  5   Id 436513044 " fill="rgb(255,11,0)" points="943.6,2176.72 964.014,2176.72 964.014,2171.39 943.6,2171.39 " />
<svg:polygon detid="436513300" count="1" value="123" id="4111042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 pos   module  5   Id 436513300 " fill="rgb(255,11,0)" points="943.6,2171.39 964.014,2171.39 964.014,2166.07 943.6,2166.07 " />
<svg:polygon detid="436513556" count="1" value="123" id="4111043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 pos   module  5   Id 436513556 " fill="rgb(255,11,0)" points="943.6,2166.07 964.014,2166.07 964.014,2160.74 943.6,2160.74 " />
<svg:polygon detid="436513812" count="1" value="123" id="4111044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 pos   module  5   Id 436513812 " fill="rgb(255,11,0)" points="943.6,2160.74 964.014,2160.74 964.014,2155.42 943.6,2155.42 " />
<svg:polygon detid="436514068" count="1" value="123" id="4111045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 pos   module  5   Id 436514068 " fill="rgb(255,11,0)" points="943.6,2155.42 964.014,2155.42 964.014,2150.09 943.6,2150.09 " />
<svg:polygon detid="436514324" count="1" value="123" id="4111046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 pos   module  5   Id 436514324 " fill="rgb(255,11,0)" points="943.6,2150.09 964.014,2150.09 964.014,2144.77 943.6,2144.77 " />
<svg:polygon detid="436514580" count="1" value="123" id="4111047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 pos   module  5   Id 436514580 " fill="rgb(255,11,0)" points="943.6,2144.77 964.014,2144.77 964.014,2139.44 943.6,2139.44 " />
<svg:polygon detid="436514836" count="1" value="123" id="4111048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 pos   module  5   Id 436514836 " fill="rgb(255,11,0)" points="943.6,2139.44 964.014,2139.44 964.014,2134.12 943.6,2134.12 " />
<svg:polygon detid="436515092" count="1" value="123" id="4111049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 pos   module  5   Id 436515092 " fill="rgb(255,11,0)" points="943.6,2134.12 964.014,2134.12 964.014,2128.79 943.6,2128.79 " />
<svg:polygon detid="436515348" count="1" value="123" id="4111050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 pos   module  5   Id 436515348 " fill="rgb(255,11,0)" points="943.6,2128.79 964.014,2128.79 964.014,2123.46 943.6,2123.46 " />
<svg:polygon detid="436515604" count="1" value="123" id="4111051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 pos   module  5   Id 436515604 " fill="rgb(255,11,0)" points="943.6,2123.46 964.014,2123.46 964.014,2118.14 943.6,2118.14 " />
<svg:polygon detid="436515860" count="1" value="123" id="4111052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 pos   module  5   Id 436515860 " fill="rgb(255,11,0)" points="943.6,2118.14 964.014,2118.14 964.014,2112.81 943.6,2112.81 " />
<svg:polygon detid="436516116" count="1" value="123" id="4111053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 pos   module  5   Id 436516116 " fill="rgb(255,11,0)" points="943.6,2112.81 964.014,2112.81 964.014,2107.49 943.6,2107.49 " />
<svg:polygon detid="436516372" count="1" value="123" id="4111054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 pos   module  5   Id 436516372 " fill="rgb(255,11,0)" points="943.6,2107.49 964.014,2107.49 964.014,2102.16 943.6,2102.16 " />
<svg:polygon detid="436516628" count="1" value="123" id="4111055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 pos   module  5   Id 436516628 " fill="rgb(255,11,0)" points="943.6,2102.16 964.014,2102.16 964.014,2096.84 943.6,2096.84 " />
<svg:polygon detid="436516884" count="1" value="123" id="4111056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 pos   module  5   Id 436516884 " fill="rgb(255,11,0)" points="943.6,2096.84 964.014,2096.84 964.014,2091.51 943.6,2091.51 " />
<svg:polygon detid="436517140" count="1" value="123" id="4111057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 pos   module  5   Id 436517140 " fill="rgb(255,11,0)" points="943.6,2091.51 964.014,2091.51 964.014,2086.19 943.6,2086.19 " />
<svg:polygon detid="436517396" count="1" value="123" id="4111058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 pos   module  5   Id 436517396 " fill="rgb(255,11,0)" points="943.6,2086.19 964.014,2086.19 964.014,2080.86 943.6,2080.86 " />
<svg:polygon detid="436517652" count="1" value="123" id="4111059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 pos   module  5   Id 436517652 " fill="rgb(255,11,0)" points="943.6,2080.86 964.014,2080.86 964.014,2075.54 943.6,2075.54 " />
<svg:polygon detid="436517908" count="1" value="123" id="4111060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 pos   module  5   Id 436517908 " fill="rgb(255,11,0)" points="943.6,2075.54 964.014,2075.54 964.014,2070.21 943.6,2070.21 " />
<svg:polygon detid="436502808" count="1" value="123" id="4112001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 1 pos   module  6   Id 436502808 " fill="rgb(255,11,0)" points="966.566,2389.74 986.981,2389.74 986.981,2384.41 966.566,2384.41 " />
<svg:polygon detid="436503064" count="1" value="123" id="4112002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 2 pos   module  6   Id 436503064 " fill="rgb(255,11,0)" points="966.566,2384.41 986.981,2384.41 986.981,2379.09 966.566,2379.09 " />
<svg:polygon detid="436503320" count="1" value="123" id="4112003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 3 pos   module  6   Id 436503320 " fill="rgb(255,11,0)" points="966.566,2379.09 986.981,2379.09 986.981,2373.76 966.566,2373.76 " />
<svg:polygon detid="436503576" count="1" value="123" id="4112004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 4 pos   module  6   Id 436503576 " fill="rgb(255,11,0)" points="966.566,2373.76 986.981,2373.76 986.981,2368.43 966.566,2368.43 " />
<svg:polygon detid="436503832" count="1" value="123" id="4112005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 5 pos   module  6   Id 436503832 " fill="rgb(255,11,0)" points="966.566,2368.43 986.981,2368.43 986.981,2363.11 966.566,2363.11 " />
<svg:polygon detid="436504088" count="1" value="123" id="4112006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 6 pos   module  6   Id 436504088 " fill="rgb(255,11,0)" points="966.566,2363.11 986.981,2363.11 986.981,2357.78 966.566,2357.78 " />
<svg:polygon detid="436504344" count="1" value="123" id="4112007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 7 pos   module  6   Id 436504344 " fill="rgb(255,11,0)" points="966.566,2357.78 986.981,2357.78 986.981,2352.46 966.566,2352.46 " />
<svg:polygon detid="436504600" count="1" value="123" id="4112008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 8 pos   module  6   Id 436504600 " fill="rgb(255,11,0)" points="966.566,2352.46 986.981,2352.46 986.981,2347.13 966.566,2347.13 " />
<svg:polygon detid="436504856" count="1" value="123" id="4112009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 9 pos   module  6   Id 436504856 " fill="rgb(255,11,0)" points="966.566,2347.13 986.981,2347.13 986.981,2341.81 966.566,2341.81 " />
<svg:polygon detid="436505112" count="1" value="123" id="4112010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 10 pos   module  6   Id 436505112 " fill="rgb(255,11,0)" points="966.566,2341.81 986.981,2341.81 986.981,2336.48 966.566,2336.48 " />
<svg:polygon detid="436505368" count="1" value="123" id="4112011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 11 pos   module  6   Id 436505368 " fill="rgb(255,11,0)" points="966.566,2336.48 986.981,2336.48 986.981,2331.16 966.566,2331.16 " />
<svg:polygon detid="436505624" count="1" value="123" id="4112012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 12 pos   module  6   Id 436505624 " fill="rgb(255,11,0)" points="966.566,2331.16 986.981,2331.16 986.981,2325.83 966.566,2325.83 " />
<svg:polygon detid="436505880" count="1" value="123" id="4112013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 13 pos   module  6   Id 436505880 " fill="rgb(255,11,0)" points="966.566,2325.83 986.981,2325.83 986.981,2320.51 966.566,2320.51 " />
<svg:polygon detid="436506136" count="1" value="123" id="4112014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 14 pos   module  6   Id 436506136 " fill="rgb(255,11,0)" points="966.566,2320.51 986.981,2320.51 986.981,2315.18 966.566,2315.18 " />
<svg:polygon detid="436506392" count="1" value="123" id="4112015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 15 pos   module  6   Id 436506392 " fill="rgb(255,11,0)" points="966.566,2315.18 986.981,2315.18 986.981,2309.85 966.566,2309.85 " />
<svg:polygon detid="436506648" count="1" value="123" id="4112016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 16 pos   module  6   Id 436506648 " fill="rgb(255,11,0)" points="966.566,2309.85 986.981,2309.85 986.981,2304.53 966.566,2304.53 " />
<svg:polygon detid="436506904" count="1" value="123" id="4112017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 17 pos   module  6   Id 436506904 " fill="rgb(255,11,0)" points="966.566,2304.53 986.981,2304.53 986.981,2299.2 966.566,2299.2 " />
<svg:polygon detid="436507160" count="1" value="123" id="4112018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 18 pos   module  6   Id 436507160 " fill="rgb(255,11,0)" points="966.566,2299.2 986.981,2299.2 986.981,2293.88 966.566,2293.88 " />
<svg:polygon detid="436507416" count="1" value="123" id="4112019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 19 pos   module  6   Id 436507416 " fill="rgb(255,11,0)" points="966.566,2293.88 986.981,2293.88 986.981,2288.55 966.566,2288.55 " />
<svg:polygon detid="436507672" count="1" value="123" id="4112020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 20 pos   module  6   Id 436507672 " fill="rgb(255,11,0)" points="966.566,2288.55 986.981,2288.55 986.981,2283.23 966.566,2283.23 " />
<svg:polygon detid="436507928" count="1" value="123" id="4112021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 21 pos   module  6   Id 436507928 " fill="rgb(255,11,0)" points="966.566,2283.23 986.981,2283.23 986.981,2277.9 966.566,2277.9 " />
<svg:polygon detid="436508184" count="1" value="123" id="4112022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 22 pos   module  6   Id 436508184 " fill="rgb(255,11,0)" points="966.566,2277.9 986.981,2277.9 986.981,2272.58 966.566,2272.58 " />
<svg:polygon detid="436508440" count="1" value="123" id="4112023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 23 pos   module  6   Id 436508440 " fill="rgb(255,11,0)" points="966.566,2272.58 986.981,2272.58 986.981,2267.25 966.566,2267.25 " />
<svg:polygon detid="436508696" count="1" value="123" id="4112024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 24 pos   module  6   Id 436508696 " fill="rgb(255,11,0)" points="966.566,2267.25 986.981,2267.25 986.981,2261.93 966.566,2261.93 " />
<svg:polygon detid="436508952" count="1" value="123" id="4112025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 25 pos   module  6   Id 436508952 " fill="rgb(255,11,0)" points="966.566,2261.93 986.981,2261.93 986.981,2256.6 966.566,2256.6 " />
<svg:polygon detid="436509208" count="1" value="123" id="4112026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 26 pos   module  6   Id 436509208 " fill="rgb(255,11,0)" points="966.566,2256.6 986.981,2256.6 986.981,2251.27 966.566,2251.27 " />
<svg:polygon detid="436509464" count="1" value="123" id="4112027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 27 pos   module  6   Id 436509464 " fill="rgb(255,11,0)" points="966.566,2251.27 986.981,2251.27 986.981,2245.95 966.566,2245.95 " />
<svg:polygon detid="436509720" count="1" value="123" id="4112028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 28 pos   module  6   Id 436509720 " fill="rgb(255,11,0)" points="966.566,2245.95 986.981,2245.95 986.981,2240.62 966.566,2240.62 " />
<svg:polygon detid="436509976" count="1" value="123" id="4112029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 29 pos   module  6   Id 436509976 " fill="rgb(255,11,0)" points="966.566,2240.62 986.981,2240.62 986.981,2235.3 966.566,2235.3 " />
<svg:polygon detid="436510232" count="1" value="123" id="4112030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 30 pos   module  6   Id 436510232 " fill="rgb(255,11,0)" points="966.566,2235.3 986.981,2235.3 986.981,2229.97 966.566,2229.97 " />
<svg:polygon detid="436510488" count="1" value="123" id="4112031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 31 pos   module  6   Id 436510488 " fill="rgb(255,11,0)" points="966.566,2229.97 986.981,2229.97 986.981,2224.65 966.566,2224.65 " />
<svg:polygon detid="436510744" count="1" value="123" id="4112032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 32 pos   module  6   Id 436510744 " fill="rgb(255,11,0)" points="966.566,2224.65 986.981,2224.65 986.981,2219.32 966.566,2219.32 " />
<svg:polygon detid="436511000" count="1" value="123" id="4112033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 33 pos   module  6   Id 436511000 " fill="rgb(255,11,0)" points="966.566,2219.32 986.981,2219.32 986.981,2214 966.566,2214 " />
<svg:polygon detid="436511256" count="1" value="123" id="4112034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 34 pos   module  6   Id 436511256 " fill="rgb(255,11,0)" points="966.566,2214 986.981,2214 986.981,2208.67 966.566,2208.67 " />
<svg:polygon detid="436511512" count="1" value="123" id="4112035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 35 pos   module  6   Id 436511512 " fill="rgb(255,11,0)" points="966.566,2208.67 986.981,2208.67 986.981,2203.35 966.566,2203.35 " />
<svg:polygon detid="436511768" count="1" value="123" id="4112036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 36 pos   module  6   Id 436511768 " fill="rgb(255,11,0)" points="966.566,2203.35 986.981,2203.35 986.981,2198.02 966.566,2198.02 " />
<svg:polygon detid="436512024" count="1" value="123" id="4112037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 37 pos   module  6   Id 436512024 " fill="rgb(255,11,0)" points="966.566,2198.02 986.981,2198.02 986.981,2192.7 966.566,2192.7 " />
<svg:polygon detid="436512280" count="1" value="123" id="4112038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 38 pos   module  6   Id 436512280 " fill="rgb(255,11,0)" points="966.566,2192.7 986.981,2192.7 986.981,2187.37 966.566,2187.37 " />
<svg:polygon detid="436512536" count="1" value="123" id="4112039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 39 pos   module  6   Id 436512536 " fill="rgb(255,11,0)" points="966.566,2187.37 986.981,2187.37 986.981,2182.04 966.566,2182.04 " />
<svg:polygon detid="436512792" count="1" value="123" id="4112040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 40 pos   module  6   Id 436512792 " fill="rgb(255,11,0)" points="966.566,2182.04 986.981,2182.04 986.981,2176.72 966.566,2176.72 " />
<svg:polygon detid="436513048" count="1" value="123" id="4112041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 41 pos   module  6   Id 436513048 " fill="rgb(255,11,0)" points="966.566,2176.72 986.981,2176.72 986.981,2171.39 966.566,2171.39 " />
<svg:polygon detid="436513304" count="1" value="123" id="4112042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 42 pos   module  6   Id 436513304 " fill="rgb(255,11,0)" points="966.566,2171.39 986.981,2171.39 986.981,2166.07 966.566,2166.07 " />
<svg:polygon detid="436513560" count="1" value="123" id="4112043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 43 pos   module  6   Id 436513560 " fill="rgb(255,11,0)" points="966.566,2166.07 986.981,2166.07 986.981,2160.74 966.566,2160.74 " />
<svg:polygon detid="436513816" count="1" value="123" id="4112044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 44 pos   module  6   Id 436513816 " fill="rgb(255,11,0)" points="966.566,2160.74 986.981,2160.74 986.981,2155.42 966.566,2155.42 " />
<svg:polygon detid="436514072" count="1" value="123" id="4112045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 45 pos   module  6   Id 436514072 " fill="rgb(255,11,0)" points="966.566,2155.42 986.981,2155.42 986.981,2150.09 966.566,2150.09 " />
<svg:polygon detid="436514328" count="1" value="123" id="4112046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 46 pos   module  6   Id 436514328 " fill="rgb(255,11,0)" points="966.566,2150.09 986.981,2150.09 986.981,2144.77 966.566,2144.77 " />
<svg:polygon detid="436514584" count="1" value="123" id="4112047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 47 pos   module  6   Id 436514584 " fill="rgb(255,11,0)" points="966.566,2144.77 986.981,2144.77 986.981,2139.44 966.566,2139.44 " />
<svg:polygon detid="436514840" count="1" value="123" id="4112048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 48 pos   module  6   Id 436514840 " fill="rgb(255,11,0)" points="966.566,2139.44 986.981,2139.44 986.981,2134.12 966.566,2134.12 " />
<svg:polygon detid="436515096" count="1" value="123" id="4112049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 49 pos   module  6   Id 436515096 " fill="rgb(255,11,0)" points="966.566,2134.12 986.981,2134.12 986.981,2128.79 966.566,2128.79 " />
<svg:polygon detid="436515352" count="1" value="123" id="4112050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 50 pos   module  6   Id 436515352 " fill="rgb(255,11,0)" points="966.566,2128.79 986.981,2128.79 986.981,2123.46 966.566,2123.46 " />
<svg:polygon detid="436515608" count="1" value="123" id="4112051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 51 pos   module  6   Id 436515608 " fill="rgb(255,11,0)" points="966.566,2123.46 986.981,2123.46 986.981,2118.14 966.566,2118.14 " />
<svg:polygon detid="436515864" count="1" value="123" id="4112052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 52 pos   module  6   Id 436515864 " fill="rgb(255,11,0)" points="966.566,2118.14 986.981,2118.14 986.981,2112.81 966.566,2112.81 " />
<svg:polygon detid="436516120" count="1" value="123" id="4112053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 53 pos   module  6   Id 436516120 " fill="rgb(255,11,0)" points="966.566,2112.81 986.981,2112.81 986.981,2107.49 966.566,2107.49 " />
<svg:polygon detid="436516376" count="1" value="123" id="4112054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 54 pos   module  6   Id 436516376 " fill="rgb(255,11,0)" points="966.566,2107.49 986.981,2107.49 986.981,2102.16 966.566,2102.16 " />
<svg:polygon detid="436516632" count="1" value="123" id="4112055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 55 pos   module  6   Id 436516632 " fill="rgb(255,11,0)" points="966.566,2102.16 986.981,2102.16 986.981,2096.84 966.566,2096.84 " />
<svg:polygon detid="436516888" count="1" value="123" id="4112056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 56 pos   module  6   Id 436516888 " fill="rgb(255,11,0)" points="966.566,2096.84 986.981,2096.84 986.981,2091.51 966.566,2091.51 " />
<svg:polygon detid="436517144" count="1" value="123" id="4112057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 57 pos   module  6   Id 436517144 " fill="rgb(255,11,0)" points="966.566,2091.51 986.981,2091.51 986.981,2086.19 966.566,2086.19 " />
<svg:polygon detid="436517400" count="1" value="123" id="4112058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 58 pos   module  6   Id 436517400 " fill="rgb(255,11,0)" points="966.566,2086.19 986.981,2086.19 986.981,2080.86 966.566,2080.86 " />
<svg:polygon detid="436517656" count="1" value="123" id="4112059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 59 pos   module  6   Id 436517656 " fill="rgb(255,11,0)" points="966.566,2080.86 986.981,2080.86 986.981,2075.54 966.566,2075.54 " />
<svg:polygon detid="436517912" count="1" value="123" id="4112060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 4 rod 60 pos   module  6   Id 436517912 " fill="rgb(255,11,0)" points="966.566,2075.54 986.981,2075.54 986.981,2070.21 966.566,2070.21 " />
<svg:polygon detid="436535556" count="1" value="126" id="4201001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 neg   module  1   Id 436535556 " fill="rgb(255,5,0)" points="373.934,2790.27 394.349,2790.27 394.349,2785.48 373.934,2785.48 " />
<svg:polygon detid="436535812" count="1" value="126" id="4201002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 neg   module  1   Id 436535812 " fill="rgb(255,5,0)" points="373.934,2785.48 394.349,2785.48 394.349,2780.69 373.934,2780.69 " />
<svg:polygon detid="436536068" count="1" value="126" id="4201003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 neg   module  1   Id 436536068 " fill="rgb(255,5,0)" points="373.934,2780.69 394.349,2780.69 394.349,2775.9 373.934,2775.9 " />
<svg:polygon detid="436536324" count="1" value="126" id="4201004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 neg   module  1   Id 436536324 " fill="rgb(255,5,0)" points="373.934,2775.9 394.349,2775.9 394.349,2771.11 373.934,2771.11 " />
<svg:polygon detid="436536580" count="1" value="126" id="4201005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 neg   module  1   Id 436536580 " fill="rgb(255,5,0)" points="373.934,2771.11 394.349,2771.11 394.349,2766.32 373.934,2766.32 " />
<svg:polygon detid="436536836" count="1" value="126" id="4201006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 neg   module  1   Id 436536836 " fill="rgb(255,5,0)" points="373.934,2766.32 394.349,2766.32 394.349,2761.52 373.934,2761.52 " />
<svg:polygon detid="436537092" count="1" value="126" id="4201007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 neg   module  1   Id 436537092 " fill="rgb(255,5,0)" points="373.934,2761.52 394.349,2761.52 394.349,2756.73 373.934,2756.73 " />
<svg:polygon detid="436537348" count="1" value="126" id="4201008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 neg   module  1   Id 436537348 " fill="rgb(255,5,0)" points="373.934,2756.73 394.349,2756.73 394.349,2751.94 373.934,2751.94 " />
<svg:polygon detid="436537604" count="1" value="126" id="4201009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 neg   module  1   Id 436537604 " fill="rgb(255,5,0)" points="373.934,2751.94 394.349,2751.94 394.349,2747.15 373.934,2747.15 " />
<svg:polygon detid="436537860" count="1" value="126" id="4201010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 neg   module  1   Id 436537860 " fill="rgb(255,5,0)" points="373.934,2747.15 394.349,2747.15 394.349,2742.36 373.934,2742.36 " />
<svg:polygon detid="436538116" count="1" value="126" id="4201011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 neg   module  1   Id 436538116 " fill="rgb(255,5,0)" points="373.934,2742.36 394.349,2742.36 394.349,2737.57 373.934,2737.57 " />
<svg:polygon detid="436538372" count="1" value="126" id="4201012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 neg   module  1   Id 436538372 " fill="rgb(255,5,0)" points="373.934,2737.57 394.349,2737.57 394.349,2732.78 373.934,2732.78 " />
<svg:polygon detid="436538628" count="1" value="126" id="4201013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 neg   module  1   Id 436538628 " fill="rgb(255,5,0)" points="373.934,2732.78 394.349,2732.78 394.349,2727.99 373.934,2727.99 " />
<svg:polygon detid="436538884" count="1" value="126" id="4201014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 neg   module  1   Id 436538884 " fill="rgb(255,5,0)" points="373.934,2727.99 394.349,2727.99 394.349,2723.2 373.934,2723.2 " />
<svg:polygon detid="436539140" count="1" value="126" id="4201015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 neg   module  1   Id 436539140 " fill="rgb(255,5,0)" points="373.934,2723.2 394.349,2723.2 394.349,2718.41 373.934,2718.41 " />
<svg:polygon detid="436539396" count="1" value="126" id="4201016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 neg   module  1   Id 436539396 " fill="rgb(255,5,0)" points="373.934,2718.41 394.349,2718.41 394.349,2713.61 373.934,2713.61 " />
<svg:polygon detid="436539652" count="1" value="126" id="4201017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 neg   module  1   Id 436539652 " fill="rgb(255,5,0)" points="373.934,2713.61 394.349,2713.61 394.349,2708.82 373.934,2708.82 " />
<svg:polygon detid="436539908" count="1" value="126" id="4201018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 neg   module  1   Id 436539908 " fill="rgb(255,5,0)" points="373.934,2708.82 394.349,2708.82 394.349,2704.03 373.934,2704.03 " />
<svg:polygon detid="436540164" count="1" value="126" id="4201019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 neg   module  1   Id 436540164 " fill="rgb(255,5,0)" points="373.934,2704.03 394.349,2704.03 394.349,2699.24 373.934,2699.24 " />
<svg:polygon detid="436540420" count="1" value="126" id="4201020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 neg   module  1   Id 436540420 " fill="rgb(255,5,0)" points="373.934,2699.24 394.349,2699.24 394.349,2694.45 373.934,2694.45 " />
<svg:polygon detid="436540676" count="1" value="126" id="4201021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 neg   module  1   Id 436540676 " fill="rgb(255,5,0)" points="373.934,2694.45 394.349,2694.45 394.349,2689.66 373.934,2689.66 " />
<svg:polygon detid="436540932" count="1" value="126" id="4201022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 neg   module  1   Id 436540932 " fill="rgb(255,5,0)" points="373.934,2689.66 394.349,2689.66 394.349,2684.87 373.934,2684.87 " />
<svg:polygon detid="436541188" count="1" value="126" id="4201023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 neg   module  1   Id 436541188 " fill="rgb(255,5,0)" points="373.934,2684.87 394.349,2684.87 394.349,2680.08 373.934,2680.08 " />
<svg:polygon detid="436541444" count="1" value="126" id="4201024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 neg   module  1   Id 436541444 " fill="rgb(255,5,0)" points="373.934,2680.08 394.349,2680.08 394.349,2675.29 373.934,2675.29 " />
<svg:polygon detid="436541700" count="1" value="126" id="4201025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 neg   module  1   Id 436541700 " fill="rgb(255,5,0)" points="373.934,2675.29 394.349,2675.29 394.349,2670.5 373.934,2670.5 " />
<svg:polygon detid="436541956" count="1" value="126" id="4201026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 neg   module  1   Id 436541956 " fill="rgb(255,5,0)" points="373.934,2670.5 394.349,2670.5 394.349,2665.7 373.934,2665.7 " />
<svg:polygon detid="436542212" count="1" value="126" id="4201027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 neg   module  1   Id 436542212 " fill="rgb(255,5,0)" points="373.934,2665.7 394.349,2665.7 394.349,2660.91 373.934,2660.91 " />
<svg:polygon detid="436542468" count="1" value="126" id="4201028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 neg   module  1   Id 436542468 " fill="rgb(255,5,0)" points="373.934,2660.91 394.349,2660.91 394.349,2656.12 373.934,2656.12 " />
<svg:polygon detid="436542724" count="1" value="126" id="4201029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 neg   module  1   Id 436542724 " fill="rgb(255,5,0)" points="373.934,2656.12 394.349,2656.12 394.349,2651.33 373.934,2651.33 " />
<svg:polygon detid="436542980" count="1" value="126" id="4201030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 neg   module  1   Id 436542980 " fill="rgb(255,5,0)" points="373.934,2651.33 394.349,2651.33 394.349,2646.54 373.934,2646.54 " />
<svg:polygon detid="436543236" count="1" value="126" id="4201031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 neg   module  1   Id 436543236 " fill="rgb(255,5,0)" points="373.934,2646.54 394.349,2646.54 394.349,2641.75 373.934,2641.75 " />
<svg:polygon detid="436543492" count="1" value="126" id="4201032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 neg   module  1   Id 436543492 " fill="rgb(255,5,0)" points="373.934,2641.75 394.349,2641.75 394.349,2636.96 373.934,2636.96 " />
<svg:polygon detid="436543748" count="1" value="126" id="4201033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 neg   module  1   Id 436543748 " fill="rgb(255,5,0)" points="373.934,2636.96 394.349,2636.96 394.349,2632.17 373.934,2632.17 " />
<svg:polygon detid="436544004" count="1" value="126" id="4201034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 neg   module  1   Id 436544004 " fill="rgb(255,5,0)" points="373.934,2632.17 394.349,2632.17 394.349,2627.38 373.934,2627.38 " />
<svg:polygon detid="436544260" count="1" value="126" id="4201035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 neg   module  1   Id 436544260 " fill="rgb(255,5,0)" points="373.934,2627.38 394.349,2627.38 394.349,2622.59 373.934,2622.59 " />
<svg:polygon detid="436544516" count="1" value="126" id="4201036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 neg   module  1   Id 436544516 " fill="rgb(255,5,0)" points="373.934,2622.59 394.349,2622.59 394.349,2617.79 373.934,2617.79 " />
<svg:polygon detid="436544772" count="1" value="126" id="4201037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 neg   module  1   Id 436544772 " fill="rgb(255,5,0)" points="373.934,2617.79 394.349,2617.79 394.349,2613 373.934,2613 " />
<svg:polygon detid="436545028" count="1" value="126" id="4201038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 neg   module  1   Id 436545028 " fill="rgb(255,5,0)" points="373.934,2613 394.349,2613 394.349,2608.21 373.934,2608.21 " />
<svg:polygon detid="436545284" count="1" value="126" id="4201039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 neg   module  1   Id 436545284 " fill="rgb(255,5,0)" points="373.934,2608.21 394.349,2608.21 394.349,2603.42 373.934,2603.42 " />
<svg:polygon detid="436545540" count="1" value="126" id="4201040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 neg   module  1   Id 436545540 " fill="rgb(255,5,0)" points="373.934,2603.42 394.349,2603.42 394.349,2598.63 373.934,2598.63 " />
<svg:polygon detid="436545796" count="1" value="126" id="4201041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 neg   module  1   Id 436545796 " fill="rgb(255,5,0)" points="373.934,2598.63 394.349,2598.63 394.349,2593.84 373.934,2593.84 " />
<svg:polygon detid="436546052" count="1" value="126" id="4201042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 neg   module  1   Id 436546052 " fill="rgb(255,5,0)" points="373.934,2593.84 394.349,2593.84 394.349,2589.05 373.934,2589.05 " />
<svg:polygon detid="436546308" count="1" value="126" id="4201043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 neg   module  1   Id 436546308 " fill="rgb(255,5,0)" points="373.934,2589.05 394.349,2589.05 394.349,2584.26 373.934,2584.26 " />
<svg:polygon detid="436546564" count="1" value="126" id="4201044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 neg   module  1   Id 436546564 " fill="rgb(255,5,0)" points="373.934,2584.26 394.349,2584.26 394.349,2579.47 373.934,2579.47 " />
<svg:polygon detid="436546820" count="1" value="126" id="4201045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 neg   module  1   Id 436546820 " fill="rgb(255,5,0)" points="373.934,2579.47 394.349,2579.47 394.349,2574.67 373.934,2574.67 " />
<svg:polygon detid="436547076" count="1" value="126" id="4201046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 neg   module  1   Id 436547076 " fill="rgb(255,5,0)" points="373.934,2574.67 394.349,2574.67 394.349,2569.88 373.934,2569.88 " />
<svg:polygon detid="436547332" count="1" value="126" id="4201047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 neg   module  1   Id 436547332 " fill="rgb(255,5,0)" points="373.934,2569.88 394.349,2569.88 394.349,2565.09 373.934,2565.09 " />
<svg:polygon detid="436547588" count="1" value="126" id="4201048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 neg   module  1   Id 436547588 " fill="rgb(255,5,0)" points="373.934,2565.09 394.349,2565.09 394.349,2560.3 373.934,2560.3 " />
<svg:polygon detid="436547844" count="1" value="126" id="4201049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 neg   module  1   Id 436547844 " fill="rgb(255,5,0)" points="373.934,2560.3 394.349,2560.3 394.349,2555.51 373.934,2555.51 " />
<svg:polygon detid="436548100" count="1" value="126" id="4201050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 neg   module  1   Id 436548100 " fill="rgb(255,5,0)" points="373.934,2555.51 394.349,2555.51 394.349,2550.72 373.934,2550.72 " />
<svg:polygon detid="436548356" count="1" value="126" id="4201051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 neg   module  1   Id 436548356 " fill="rgb(255,5,0)" points="373.934,2550.72 394.349,2550.72 394.349,2545.93 373.934,2545.93 " />
<svg:polygon detid="436548612" count="1" value="126" id="4201052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 neg   module  1   Id 436548612 " fill="rgb(255,5,0)" points="373.934,2545.93 394.349,2545.93 394.349,2541.14 373.934,2541.14 " />
<svg:polygon detid="436548868" count="1" value="126" id="4201053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 neg   module  1   Id 436548868 " fill="rgb(255,5,0)" points="373.934,2541.14 394.349,2541.14 394.349,2536.35 373.934,2536.35 " />
<svg:polygon detid="436549124" count="1" value="126" id="4201054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 neg   module  1   Id 436549124 " fill="rgb(255,5,0)" points="373.934,2536.35 394.349,2536.35 394.349,2531.56 373.934,2531.56 " />
<svg:polygon detid="436549380" count="1" value="126" id="4201055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 neg   module  1   Id 436549380 " fill="rgb(255,5,0)" points="373.934,2531.56 394.349,2531.56 394.349,2526.76 373.934,2526.76 " />
<svg:polygon detid="436549636" count="1" value="126" id="4201056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 neg   module  1   Id 436549636 " fill="rgb(255,5,0)" points="373.934,2526.76 394.349,2526.76 394.349,2521.97 373.934,2521.97 " />
<svg:polygon detid="436549892" count="1" value="126" id="4201057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 neg   module  1   Id 436549892 " fill="rgb(255,5,0)" points="373.934,2521.97 394.349,2521.97 394.349,2517.18 373.934,2517.18 " />
<svg:polygon detid="436550148" count="1" value="126" id="4201058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 neg   module  1   Id 436550148 " fill="rgb(255,5,0)" points="373.934,2517.18 394.349,2517.18 394.349,2512.39 373.934,2512.39 " />
<svg:polygon detid="436550404" count="1" value="126" id="4201059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 neg   module  1   Id 436550404 " fill="rgb(255,5,0)" points="373.934,2512.39 394.349,2512.39 394.349,2507.6 373.934,2507.6 " />
<svg:polygon detid="436550660" count="1" value="126" id="4201060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 neg   module  1   Id 436550660 " fill="rgb(255,5,0)" points="373.934,2507.6 394.349,2507.6 394.349,2502.81 373.934,2502.81 " />
<svg:polygon detid="436550916" count="1" value="126" id="4201061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 neg   module  1   Id 436550916 " fill="rgb(255,5,0)" points="373.934,2502.81 394.349,2502.81 394.349,2498.02 373.934,2498.02 " />
<svg:polygon detid="436551172" count="1" value="126" id="4201062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 neg   module  1   Id 436551172 " fill="rgb(255,5,0)" points="373.934,2498.02 394.349,2498.02 394.349,2493.23 373.934,2493.23 " />
<svg:polygon detid="436551428" count="1" value="126" id="4201063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 neg   module  1   Id 436551428 " fill="rgb(255,5,0)" points="373.934,2493.23 394.349,2493.23 394.349,2488.44 373.934,2488.44 " />
<svg:polygon detid="436551684" count="1" value="126" id="4201064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 neg   module  1   Id 436551684 " fill="rgb(255,5,0)" points="373.934,2488.44 394.349,2488.44 394.349,2483.65 373.934,2483.65 " />
<svg:polygon detid="436551940" count="1" value="126" id="4201065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 neg   module  1   Id 436551940 " fill="rgb(255,5,0)" points="373.934,2483.65 394.349,2483.65 394.349,2478.85 373.934,2478.85 " />
<svg:polygon detid="436552196" count="1" value="126" id="4201066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 neg   module  1   Id 436552196 " fill="rgb(255,5,0)" points="373.934,2478.85 394.349,2478.85 394.349,2474.06 373.934,2474.06 " />
<svg:polygon detid="436535560" count="1" value="126" id="4202001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 neg   module  2   Id 436535560 " fill="rgb(255,5,0)" points="396.901,2790.27 417.316,2790.27 417.316,2785.48 396.901,2785.48 " />
<svg:polygon detid="436535816" count="1" value="126" id="4202002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 neg   module  2   Id 436535816 " fill="rgb(255,5,0)" points="396.901,2785.48 417.316,2785.48 417.316,2780.69 396.901,2780.69 " />
<svg:polygon detid="436536072" count="1" value="126" id="4202003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 neg   module  2   Id 436536072 " fill="rgb(255,5,0)" points="396.901,2780.69 417.316,2780.69 417.316,2775.9 396.901,2775.9 " />
<svg:polygon detid="436536328" count="1" value="126" id="4202004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 neg   module  2   Id 436536328 " fill="rgb(255,5,0)" points="396.901,2775.9 417.316,2775.9 417.316,2771.11 396.901,2771.11 " />
<svg:polygon detid="436536584" count="1" value="126" id="4202005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 neg   module  2   Id 436536584 " fill="rgb(255,5,0)" points="396.901,2771.11 417.316,2771.11 417.316,2766.32 396.901,2766.32 " />
<svg:polygon detid="436536840" count="1" value="126" id="4202006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 neg   module  2   Id 436536840 " fill="rgb(255,5,0)" points="396.901,2766.32 417.316,2766.32 417.316,2761.52 396.901,2761.52 " />
<svg:polygon detid="436537096" count="1" value="126" id="4202007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 neg   module  2   Id 436537096 " fill="rgb(255,5,0)" points="396.901,2761.52 417.316,2761.52 417.316,2756.73 396.901,2756.73 " />
<svg:polygon detid="436537352" count="1" value="126" id="4202008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 neg   module  2   Id 436537352 " fill="rgb(255,5,0)" points="396.901,2756.73 417.316,2756.73 417.316,2751.94 396.901,2751.94 " />
<svg:polygon detid="436537608" count="1" value="126" id="4202009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 neg   module  2   Id 436537608 " fill="rgb(255,5,0)" points="396.901,2751.94 417.316,2751.94 417.316,2747.15 396.901,2747.15 " />
<svg:polygon detid="436537864" count="1" value="126" id="4202010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 neg   module  2   Id 436537864 " fill="rgb(255,5,0)" points="396.901,2747.15 417.316,2747.15 417.316,2742.36 396.901,2742.36 " />
<svg:polygon detid="436538120" count="1" value="126" id="4202011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 neg   module  2   Id 436538120 " fill="rgb(255,5,0)" points="396.901,2742.36 417.316,2742.36 417.316,2737.57 396.901,2737.57 " />
<svg:polygon detid="436538376" count="1" value="126" id="4202012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 neg   module  2   Id 436538376 " fill="rgb(255,5,0)" points="396.901,2737.57 417.316,2737.57 417.316,2732.78 396.901,2732.78 " />
<svg:polygon detid="436538632" count="1" value="126" id="4202013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 neg   module  2   Id 436538632 " fill="rgb(255,5,0)" points="396.901,2732.78 417.316,2732.78 417.316,2727.99 396.901,2727.99 " />
<svg:polygon detid="436538888" count="1" value="126" id="4202014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 neg   module  2   Id 436538888 " fill="rgb(255,5,0)" points="396.901,2727.99 417.316,2727.99 417.316,2723.2 396.901,2723.2 " />
<svg:polygon detid="436539144" count="1" value="126" id="4202015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 neg   module  2   Id 436539144 " fill="rgb(255,5,0)" points="396.901,2723.2 417.316,2723.2 417.316,2718.41 396.901,2718.41 " />
<svg:polygon detid="436539400" count="1" value="126" id="4202016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 neg   module  2   Id 436539400 " fill="rgb(255,5,0)" points="396.901,2718.41 417.316,2718.41 417.316,2713.61 396.901,2713.61 " />
<svg:polygon detid="436539656" count="1" value="126" id="4202017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 neg   module  2   Id 436539656 " fill="rgb(255,5,0)" points="396.901,2713.61 417.316,2713.61 417.316,2708.82 396.901,2708.82 " />
<svg:polygon detid="436539912" count="1" value="126" id="4202018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 neg   module  2   Id 436539912 " fill="rgb(255,5,0)" points="396.901,2708.82 417.316,2708.82 417.316,2704.03 396.901,2704.03 " />
<svg:polygon detid="436540168" count="1" value="126" id="4202019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 neg   module  2   Id 436540168 " fill="rgb(255,5,0)" points="396.901,2704.03 417.316,2704.03 417.316,2699.24 396.901,2699.24 " />
<svg:polygon detid="436540424" count="1" value="126" id="4202020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 neg   module  2   Id 436540424 " fill="rgb(255,5,0)" points="396.901,2699.24 417.316,2699.24 417.316,2694.45 396.901,2694.45 " />
<svg:polygon detid="436540680" count="1" value="126" id="4202021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 neg   module  2   Id 436540680 " fill="rgb(255,5,0)" points="396.901,2694.45 417.316,2694.45 417.316,2689.66 396.901,2689.66 " />
<svg:polygon detid="436540936" count="1" value="126" id="4202022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 neg   module  2   Id 436540936 " fill="rgb(255,5,0)" points="396.901,2689.66 417.316,2689.66 417.316,2684.87 396.901,2684.87 " />
<svg:polygon detid="436541192" count="1" value="126" id="4202023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 neg   module  2   Id 436541192 " fill="rgb(255,5,0)" points="396.901,2684.87 417.316,2684.87 417.316,2680.08 396.901,2680.08 " />
<svg:polygon detid="436541448" count="1" value="126" id="4202024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 neg   module  2   Id 436541448 " fill="rgb(255,5,0)" points="396.901,2680.08 417.316,2680.08 417.316,2675.29 396.901,2675.29 " />
<svg:polygon detid="436541704" count="1" value="126" id="4202025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 neg   module  2   Id 436541704 " fill="rgb(255,5,0)" points="396.901,2675.29 417.316,2675.29 417.316,2670.5 396.901,2670.5 " />
<svg:polygon detid="436541960" count="1" value="126" id="4202026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 neg   module  2   Id 436541960 " fill="rgb(255,5,0)" points="396.901,2670.5 417.316,2670.5 417.316,2665.7 396.901,2665.7 " />
<svg:polygon detid="436542216" count="1" value="126" id="4202027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 neg   module  2   Id 436542216 " fill="rgb(255,5,0)" points="396.901,2665.7 417.316,2665.7 417.316,2660.91 396.901,2660.91 " />
<svg:polygon detid="436542472" count="1" value="126" id="4202028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 neg   module  2   Id 436542472 " fill="rgb(255,5,0)" points="396.901,2660.91 417.316,2660.91 417.316,2656.12 396.901,2656.12 " />
<svg:polygon detid="436542728" count="1" value="126" id="4202029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 neg   module  2   Id 436542728 " fill="rgb(255,5,0)" points="396.901,2656.12 417.316,2656.12 417.316,2651.33 396.901,2651.33 " />
<svg:polygon detid="436542984" count="1" value="126" id="4202030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 neg   module  2   Id 436542984 " fill="rgb(255,5,0)" points="396.901,2651.33 417.316,2651.33 417.316,2646.54 396.901,2646.54 " />
<svg:polygon detid="436543240" count="1" value="126" id="4202031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 neg   module  2   Id 436543240 " fill="rgb(255,5,0)" points="396.901,2646.54 417.316,2646.54 417.316,2641.75 396.901,2641.75 " />
<svg:polygon detid="436543496" count="1" value="126" id="4202032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 neg   module  2   Id 436543496 " fill="rgb(255,5,0)" points="396.901,2641.75 417.316,2641.75 417.316,2636.96 396.901,2636.96 " />
<svg:polygon detid="436543752" count="1" value="126" id="4202033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 neg   module  2   Id 436543752 " fill="rgb(255,5,0)" points="396.901,2636.96 417.316,2636.96 417.316,2632.17 396.901,2632.17 " />
<svg:polygon detid="436544008" count="1" value="126" id="4202034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 neg   module  2   Id 436544008 " fill="rgb(255,5,0)" points="396.901,2632.17 417.316,2632.17 417.316,2627.38 396.901,2627.38 " />
<svg:polygon detid="436544264" count="1" value="126" id="4202035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 neg   module  2   Id 436544264 " fill="rgb(255,5,0)" points="396.901,2627.38 417.316,2627.38 417.316,2622.59 396.901,2622.59 " />
<svg:polygon detid="436544520" count="1" value="126" id="4202036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 neg   module  2   Id 436544520 " fill="rgb(255,5,0)" points="396.901,2622.59 417.316,2622.59 417.316,2617.79 396.901,2617.79 " />
<svg:polygon detid="436544776" count="1" value="126" id="4202037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 neg   module  2   Id 436544776 " fill="rgb(255,5,0)" points="396.901,2617.79 417.316,2617.79 417.316,2613 396.901,2613 " />
<svg:polygon detid="436545032" count="1" value="126" id="4202038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 neg   module  2   Id 436545032 " fill="rgb(255,5,0)" points="396.901,2613 417.316,2613 417.316,2608.21 396.901,2608.21 " />
<svg:polygon detid="436545288" count="1" value="126" id="4202039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 neg   module  2   Id 436545288 " fill="rgb(255,5,0)" points="396.901,2608.21 417.316,2608.21 417.316,2603.42 396.901,2603.42 " />
<svg:polygon detid="436545544" count="1" value="126" id="4202040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 neg   module  2   Id 436545544 " fill="rgb(255,5,0)" points="396.901,2603.42 417.316,2603.42 417.316,2598.63 396.901,2598.63 " />
<svg:polygon detid="436545800" count="1" value="126" id="4202041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 neg   module  2   Id 436545800 " fill="rgb(255,5,0)" points="396.901,2598.63 417.316,2598.63 417.316,2593.84 396.901,2593.84 " />
<svg:polygon detid="436546056" count="1" value="126" id="4202042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 neg   module  2   Id 436546056 " fill="rgb(255,5,0)" points="396.901,2593.84 417.316,2593.84 417.316,2589.05 396.901,2589.05 " />
<svg:polygon detid="436546312" count="1" value="126" id="4202043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 neg   module  2   Id 436546312 " fill="rgb(255,5,0)" points="396.901,2589.05 417.316,2589.05 417.316,2584.26 396.901,2584.26 " />
<svg:polygon detid="436546568" count="1" value="126" id="4202044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 neg   module  2   Id 436546568 " fill="rgb(255,5,0)" points="396.901,2584.26 417.316,2584.26 417.316,2579.47 396.901,2579.47 " />
<svg:polygon detid="436546824" count="1" value="126" id="4202045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 neg   module  2   Id 436546824 " fill="rgb(255,5,0)" points="396.901,2579.47 417.316,2579.47 417.316,2574.67 396.901,2574.67 " />
<svg:polygon detid="436547080" count="1" value="126" id="4202046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 neg   module  2   Id 436547080 " fill="rgb(255,5,0)" points="396.901,2574.67 417.316,2574.67 417.316,2569.88 396.901,2569.88 " />
<svg:polygon detid="436547336" count="1" value="126" id="4202047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 neg   module  2   Id 436547336 " fill="rgb(255,5,0)" points="396.901,2569.88 417.316,2569.88 417.316,2565.09 396.901,2565.09 " />
<svg:polygon detid="436547592" count="1" value="126" id="4202048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 neg   module  2   Id 436547592 " fill="rgb(255,5,0)" points="396.901,2565.09 417.316,2565.09 417.316,2560.3 396.901,2560.3 " />
<svg:polygon detid="436547848" count="1" value="126" id="4202049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 neg   module  2   Id 436547848 " fill="rgb(255,5,0)" points="396.901,2560.3 417.316,2560.3 417.316,2555.51 396.901,2555.51 " />
<svg:polygon detid="436548104" count="1" value="126" id="4202050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 neg   module  2   Id 436548104 " fill="rgb(255,5,0)" points="396.901,2555.51 417.316,2555.51 417.316,2550.72 396.901,2550.72 " />
<svg:polygon detid="436548360" count="1" value="126" id="4202051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 neg   module  2   Id 436548360 " fill="rgb(255,5,0)" points="396.901,2550.72 417.316,2550.72 417.316,2545.93 396.901,2545.93 " />
<svg:polygon detid="436548616" count="1" value="126" id="4202052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 neg   module  2   Id 436548616 " fill="rgb(255,5,0)" points="396.901,2545.93 417.316,2545.93 417.316,2541.14 396.901,2541.14 " />
<svg:polygon detid="436548872" count="1" value="126" id="4202053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 neg   module  2   Id 436548872 " fill="rgb(255,5,0)" points="396.901,2541.14 417.316,2541.14 417.316,2536.35 396.901,2536.35 " />
<svg:polygon detid="436549128" count="1" value="126" id="4202054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 neg   module  2   Id 436549128 " fill="rgb(255,5,0)" points="396.901,2536.35 417.316,2536.35 417.316,2531.56 396.901,2531.56 " />
<svg:polygon detid="436549384" count="1" value="126" id="4202055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 neg   module  2   Id 436549384 " fill="rgb(255,5,0)" points="396.901,2531.56 417.316,2531.56 417.316,2526.76 396.901,2526.76 " />
<svg:polygon detid="436549640" count="1" value="126" id="4202056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 neg   module  2   Id 436549640 " fill="rgb(255,5,0)" points="396.901,2526.76 417.316,2526.76 417.316,2521.97 396.901,2521.97 " />
<svg:polygon detid="436549896" count="1" value="126" id="4202057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 neg   module  2   Id 436549896 " fill="rgb(255,5,0)" points="396.901,2521.97 417.316,2521.97 417.316,2517.18 396.901,2517.18 " />
<svg:polygon detid="436550152" count="1" value="126" id="4202058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 neg   module  2   Id 436550152 " fill="rgb(255,5,0)" points="396.901,2517.18 417.316,2517.18 417.316,2512.39 396.901,2512.39 " />
<svg:polygon detid="436550408" count="1" value="126" id="4202059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 neg   module  2   Id 436550408 " fill="rgb(255,5,0)" points="396.901,2512.39 417.316,2512.39 417.316,2507.6 396.901,2507.6 " />
<svg:polygon detid="436550664" count="1" value="126" id="4202060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 neg   module  2   Id 436550664 " fill="rgb(255,5,0)" points="396.901,2507.6 417.316,2507.6 417.316,2502.81 396.901,2502.81 " />
<svg:polygon detid="436550920" count="1" value="126" id="4202061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 neg   module  2   Id 436550920 " fill="rgb(255,5,0)" points="396.901,2502.81 417.316,2502.81 417.316,2498.02 396.901,2498.02 " />
<svg:polygon detid="436551176" count="1" value="126" id="4202062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 neg   module  2   Id 436551176 " fill="rgb(255,5,0)" points="396.901,2498.02 417.316,2498.02 417.316,2493.23 396.901,2493.23 " />
<svg:polygon detid="436551432" count="1" value="126" id="4202063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 neg   module  2   Id 436551432 " fill="rgb(255,5,0)" points="396.901,2493.23 417.316,2493.23 417.316,2488.44 396.901,2488.44 " />
<svg:polygon detid="436551688" count="1" value="126" id="4202064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 neg   module  2   Id 436551688 " fill="rgb(255,5,0)" points="396.901,2488.44 417.316,2488.44 417.316,2483.65 396.901,2483.65 " />
<svg:polygon detid="436551944" count="1" value="126" id="4202065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 neg   module  2   Id 436551944 " fill="rgb(255,5,0)" points="396.901,2483.65 417.316,2483.65 417.316,2478.85 396.901,2478.85 " />
<svg:polygon detid="436552200" count="1" value="126" id="4202066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 neg   module  2   Id 436552200 " fill="rgb(255,5,0)" points="396.901,2478.85 417.316,2478.85 417.316,2474.06 396.901,2474.06 " />
<svg:polygon detid="436535564" count="1" value="126" id="4203001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 neg   module  3   Id 436535564 " fill="rgb(255,5,0)" points="419.867,2790.27 440.282,2790.27 440.282,2785.48 419.867,2785.48 " />
<svg:polygon detid="436535820" count="1" value="126" id="4203002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 neg   module  3   Id 436535820 " fill="rgb(255,5,0)" points="419.867,2785.48 440.282,2785.48 440.282,2780.69 419.867,2780.69 " />
<svg:polygon detid="436536076" count="1" value="126" id="4203003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 neg   module  3   Id 436536076 " fill="rgb(255,5,0)" points="419.867,2780.69 440.282,2780.69 440.282,2775.9 419.867,2775.9 " />
<svg:polygon detid="436536332" count="1" value="126" id="4203004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 neg   module  3   Id 436536332 " fill="rgb(255,5,0)" points="419.867,2775.9 440.282,2775.9 440.282,2771.11 419.867,2771.11 " />
<svg:polygon detid="436536588" count="1" value="126" id="4203005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 neg   module  3   Id 436536588 " fill="rgb(255,5,0)" points="419.867,2771.11 440.282,2771.11 440.282,2766.32 419.867,2766.32 " />
<svg:polygon detid="436536844" count="1" value="126" id="4203006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 neg   module  3   Id 436536844 " fill="rgb(255,5,0)" points="419.867,2766.32 440.282,2766.32 440.282,2761.52 419.867,2761.52 " />
<svg:polygon detid="436537100" count="1" value="126" id="4203007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 neg   module  3   Id 436537100 " fill="rgb(255,5,0)" points="419.867,2761.52 440.282,2761.52 440.282,2756.73 419.867,2756.73 " />
<svg:polygon detid="436537356" count="1" value="126" id="4203008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 neg   module  3   Id 436537356 " fill="rgb(255,5,0)" points="419.867,2756.73 440.282,2756.73 440.282,2751.94 419.867,2751.94 " />
<svg:polygon detid="436537612" count="1" value="126" id="4203009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 neg   module  3   Id 436537612 " fill="rgb(255,5,0)" points="419.867,2751.94 440.282,2751.94 440.282,2747.15 419.867,2747.15 " />
<svg:polygon detid="436537868" count="1" value="126" id="4203010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 neg   module  3   Id 436537868 " fill="rgb(255,5,0)" points="419.867,2747.15 440.282,2747.15 440.282,2742.36 419.867,2742.36 " />
<svg:polygon detid="436538124" count="1" value="126" id="4203011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 neg   module  3   Id 436538124 " fill="rgb(255,5,0)" points="419.867,2742.36 440.282,2742.36 440.282,2737.57 419.867,2737.57 " />
<svg:polygon detid="436538380" count="1" value="126" id="4203012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 neg   module  3   Id 436538380 " fill="rgb(255,5,0)" points="419.867,2737.57 440.282,2737.57 440.282,2732.78 419.867,2732.78 " />
<svg:polygon detid="436538636" count="1" value="126" id="4203013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 neg   module  3   Id 436538636 " fill="rgb(255,5,0)" points="419.867,2732.78 440.282,2732.78 440.282,2727.99 419.867,2727.99 " />
<svg:polygon detid="436538892" count="1" value="126" id="4203014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 neg   module  3   Id 436538892 " fill="rgb(255,5,0)" points="419.867,2727.99 440.282,2727.99 440.282,2723.2 419.867,2723.2 " />
<svg:polygon detid="436539148" count="1" value="126" id="4203015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 neg   module  3   Id 436539148 " fill="rgb(255,5,0)" points="419.867,2723.2 440.282,2723.2 440.282,2718.41 419.867,2718.41 " />
<svg:polygon detid="436539404" count="1" value="126" id="4203016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 neg   module  3   Id 436539404 " fill="rgb(255,5,0)" points="419.867,2718.41 440.282,2718.41 440.282,2713.61 419.867,2713.61 " />
<svg:polygon detid="436539660" count="1" value="126" id="4203017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 neg   module  3   Id 436539660 " fill="rgb(255,5,0)" points="419.867,2713.61 440.282,2713.61 440.282,2708.82 419.867,2708.82 " />
<svg:polygon detid="436539916" count="1" value="126" id="4203018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 neg   module  3   Id 436539916 " fill="rgb(255,5,0)" points="419.867,2708.82 440.282,2708.82 440.282,2704.03 419.867,2704.03 " />
<svg:polygon detid="436540172" count="1" value="126" id="4203019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 neg   module  3   Id 436540172 " fill="rgb(255,5,0)" points="419.867,2704.03 440.282,2704.03 440.282,2699.24 419.867,2699.24 " />
<svg:polygon detid="436540428" count="1" value="126" id="4203020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 neg   module  3   Id 436540428 " fill="rgb(255,5,0)" points="419.867,2699.24 440.282,2699.24 440.282,2694.45 419.867,2694.45 " />
<svg:polygon detid="436540684" count="1" value="126" id="4203021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 neg   module  3   Id 436540684 " fill="rgb(255,5,0)" points="419.867,2694.45 440.282,2694.45 440.282,2689.66 419.867,2689.66 " />
<svg:polygon detid="436540940" count="1" value="126" id="4203022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 neg   module  3   Id 436540940 " fill="rgb(255,5,0)" points="419.867,2689.66 440.282,2689.66 440.282,2684.87 419.867,2684.87 " />
<svg:polygon detid="436541196" count="1" value="126" id="4203023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 neg   module  3   Id 436541196 " fill="rgb(255,5,0)" points="419.867,2684.87 440.282,2684.87 440.282,2680.08 419.867,2680.08 " />
<svg:polygon detid="436541452" count="1" value="126" id="4203024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 neg   module  3   Id 436541452 " fill="rgb(255,5,0)" points="419.867,2680.08 440.282,2680.08 440.282,2675.29 419.867,2675.29 " />
<svg:polygon detid="436541708" count="1" value="126" id="4203025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 neg   module  3   Id 436541708 " fill="rgb(255,5,0)" points="419.867,2675.29 440.282,2675.29 440.282,2670.5 419.867,2670.5 " />
<svg:polygon detid="436541964" count="1" value="126" id="4203026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 neg   module  3   Id 436541964 " fill="rgb(255,5,0)" points="419.867,2670.5 440.282,2670.5 440.282,2665.7 419.867,2665.7 " />
<svg:polygon detid="436542220" count="1" value="126" id="4203027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 neg   module  3   Id 436542220 " fill="rgb(255,5,0)" points="419.867,2665.7 440.282,2665.7 440.282,2660.91 419.867,2660.91 " />
<svg:polygon detid="436542476" count="1" value="126" id="4203028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 neg   module  3   Id 436542476 " fill="rgb(255,5,0)" points="419.867,2660.91 440.282,2660.91 440.282,2656.12 419.867,2656.12 " />
<svg:polygon detid="436542732" count="1" value="126" id="4203029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 neg   module  3   Id 436542732 " fill="rgb(255,5,0)" points="419.867,2656.12 440.282,2656.12 440.282,2651.33 419.867,2651.33 " />
<svg:polygon detid="436542988" count="1" value="126" id="4203030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 neg   module  3   Id 436542988 " fill="rgb(255,5,0)" points="419.867,2651.33 440.282,2651.33 440.282,2646.54 419.867,2646.54 " />
<svg:polygon detid="436543244" count="1" value="126" id="4203031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 neg   module  3   Id 436543244 " fill="rgb(255,5,0)" points="419.867,2646.54 440.282,2646.54 440.282,2641.75 419.867,2641.75 " />
<svg:polygon detid="436543500" count="1" value="126" id="4203032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 neg   module  3   Id 436543500 " fill="rgb(255,5,0)" points="419.867,2641.75 440.282,2641.75 440.282,2636.96 419.867,2636.96 " />
<svg:polygon detid="436543756" count="1" value="126" id="4203033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 neg   module  3   Id 436543756 " fill="rgb(255,5,0)" points="419.867,2636.96 440.282,2636.96 440.282,2632.17 419.867,2632.17 " />
<svg:polygon detid="436544012" count="1" value="126" id="4203034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 neg   module  3   Id 436544012 " fill="rgb(255,5,0)" points="419.867,2632.17 440.282,2632.17 440.282,2627.38 419.867,2627.38 " />
<svg:polygon detid="436544268" count="1" value="126" id="4203035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 neg   module  3   Id 436544268 " fill="rgb(255,5,0)" points="419.867,2627.38 440.282,2627.38 440.282,2622.59 419.867,2622.59 " />
<svg:polygon detid="436544524" count="1" value="126" id="4203036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 neg   module  3   Id 436544524 " fill="rgb(255,5,0)" points="419.867,2622.59 440.282,2622.59 440.282,2617.79 419.867,2617.79 " />
<svg:polygon detid="436544780" count="1" value="126" id="4203037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 neg   module  3   Id 436544780 " fill="rgb(255,5,0)" points="419.867,2617.79 440.282,2617.79 440.282,2613 419.867,2613 " />
<svg:polygon detid="436545036" count="1" value="126" id="4203038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 neg   module  3   Id 436545036 " fill="rgb(255,5,0)" points="419.867,2613 440.282,2613 440.282,2608.21 419.867,2608.21 " />
<svg:polygon detid="436545292" count="1" value="126" id="4203039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 neg   module  3   Id 436545292 " fill="rgb(255,5,0)" points="419.867,2608.21 440.282,2608.21 440.282,2603.42 419.867,2603.42 " />
<svg:polygon detid="436545548" count="1" value="126" id="4203040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 neg   module  3   Id 436545548 " fill="rgb(255,5,0)" points="419.867,2603.42 440.282,2603.42 440.282,2598.63 419.867,2598.63 " />
<svg:polygon detid="436545804" count="1" value="126" id="4203041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 neg   module  3   Id 436545804 " fill="rgb(255,5,0)" points="419.867,2598.63 440.282,2598.63 440.282,2593.84 419.867,2593.84 " />
<svg:polygon detid="436546060" count="1" value="126" id="4203042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 neg   module  3   Id 436546060 " fill="rgb(255,5,0)" points="419.867,2593.84 440.282,2593.84 440.282,2589.05 419.867,2589.05 " />
<svg:polygon detid="436546316" count="1" value="126" id="4203043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 neg   module  3   Id 436546316 " fill="rgb(255,5,0)" points="419.867,2589.05 440.282,2589.05 440.282,2584.26 419.867,2584.26 " />
<svg:polygon detid="436546572" count="1" value="126" id="4203044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 neg   module  3   Id 436546572 " fill="rgb(255,5,0)" points="419.867,2584.26 440.282,2584.26 440.282,2579.47 419.867,2579.47 " />
<svg:polygon detid="436546828" count="1" value="126" id="4203045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 neg   module  3   Id 436546828 " fill="rgb(255,5,0)" points="419.867,2579.47 440.282,2579.47 440.282,2574.67 419.867,2574.67 " />
<svg:polygon detid="436547084" count="1" value="126" id="4203046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 neg   module  3   Id 436547084 " fill="rgb(255,5,0)" points="419.867,2574.67 440.282,2574.67 440.282,2569.88 419.867,2569.88 " />
<svg:polygon detid="436547340" count="1" value="126" id="4203047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 neg   module  3   Id 436547340 " fill="rgb(255,5,0)" points="419.867,2569.88 440.282,2569.88 440.282,2565.09 419.867,2565.09 " />
<svg:polygon detid="436547596" count="1" value="126" id="4203048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 neg   module  3   Id 436547596 " fill="rgb(255,5,0)" points="419.867,2565.09 440.282,2565.09 440.282,2560.3 419.867,2560.3 " />
<svg:polygon detid="436547852" count="1" value="126" id="4203049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 neg   module  3   Id 436547852 " fill="rgb(255,5,0)" points="419.867,2560.3 440.282,2560.3 440.282,2555.51 419.867,2555.51 " />
<svg:polygon detid="436548108" count="1" value="126" id="4203050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 neg   module  3   Id 436548108 " fill="rgb(255,5,0)" points="419.867,2555.51 440.282,2555.51 440.282,2550.72 419.867,2550.72 " />
<svg:polygon detid="436548364" count="1" value="126" id="4203051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 neg   module  3   Id 436548364 " fill="rgb(255,5,0)" points="419.867,2550.72 440.282,2550.72 440.282,2545.93 419.867,2545.93 " />
<svg:polygon detid="436548620" count="1" value="126" id="4203052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 neg   module  3   Id 436548620 " fill="rgb(255,5,0)" points="419.867,2545.93 440.282,2545.93 440.282,2541.14 419.867,2541.14 " />
<svg:polygon detid="436548876" count="1" value="126" id="4203053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 neg   module  3   Id 436548876 " fill="rgb(255,5,0)" points="419.867,2541.14 440.282,2541.14 440.282,2536.35 419.867,2536.35 " />
<svg:polygon detid="436549132" count="1" value="126" id="4203054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 neg   module  3   Id 436549132 " fill="rgb(255,5,0)" points="419.867,2536.35 440.282,2536.35 440.282,2531.56 419.867,2531.56 " />
<svg:polygon detid="436549388" count="1" value="126" id="4203055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 neg   module  3   Id 436549388 " fill="rgb(255,5,0)" points="419.867,2531.56 440.282,2531.56 440.282,2526.76 419.867,2526.76 " />
<svg:polygon detid="436549644" count="1" value="126" id="4203056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 neg   module  3   Id 436549644 " fill="rgb(255,5,0)" points="419.867,2526.76 440.282,2526.76 440.282,2521.97 419.867,2521.97 " />
<svg:polygon detid="436549900" count="1" value="126" id="4203057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 neg   module  3   Id 436549900 " fill="rgb(255,5,0)" points="419.867,2521.97 440.282,2521.97 440.282,2517.18 419.867,2517.18 " />
<svg:polygon detid="436550156" count="1" value="126" id="4203058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 neg   module  3   Id 436550156 " fill="rgb(255,5,0)" points="419.867,2517.18 440.282,2517.18 440.282,2512.39 419.867,2512.39 " />
<svg:polygon detid="436550412" count="1" value="126" id="4203059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 neg   module  3   Id 436550412 " fill="rgb(255,5,0)" points="419.867,2512.39 440.282,2512.39 440.282,2507.6 419.867,2507.6 " />
<svg:polygon detid="436550668" count="1" value="126" id="4203060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 neg   module  3   Id 436550668 " fill="rgb(255,5,0)" points="419.867,2507.6 440.282,2507.6 440.282,2502.81 419.867,2502.81 " />
<svg:polygon detid="436550924" count="1" value="126" id="4203061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 neg   module  3   Id 436550924 " fill="rgb(255,5,0)" points="419.867,2502.81 440.282,2502.81 440.282,2498.02 419.867,2498.02 " />
<svg:polygon detid="436551180" count="1" value="126" id="4203062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 neg   module  3   Id 436551180 " fill="rgb(255,5,0)" points="419.867,2498.02 440.282,2498.02 440.282,2493.23 419.867,2493.23 " />
<svg:polygon detid="436551436" count="1" value="126" id="4203063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 neg   module  3   Id 436551436 " fill="rgb(255,5,0)" points="419.867,2493.23 440.282,2493.23 440.282,2488.44 419.867,2488.44 " />
<svg:polygon detid="436551692" count="1" value="126" id="4203064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 neg   module  3   Id 436551692 " fill="rgb(255,5,0)" points="419.867,2488.44 440.282,2488.44 440.282,2483.65 419.867,2483.65 " />
<svg:polygon detid="436551948" count="1" value="126" id="4203065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 neg   module  3   Id 436551948 " fill="rgb(255,5,0)" points="419.867,2483.65 440.282,2483.65 440.282,2478.85 419.867,2478.85 " />
<svg:polygon detid="436552204" count="1" value="126" id="4203066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 neg   module  3   Id 436552204 " fill="rgb(255,5,0)" points="419.867,2478.85 440.282,2478.85 440.282,2474.06 419.867,2474.06 " />
<svg:polygon detid="436535568" count="1" value="126" id="4204001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 neg   module  4   Id 436535568 " fill="rgb(255,5,0)" points="442.834,2790.27 463.249,2790.27 463.249,2785.48 442.834,2785.48 " />
<svg:polygon detid="436535824" count="1" value="126" id="4204002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 neg   module  4   Id 436535824 " fill="rgb(255,5,0)" points="442.834,2785.48 463.249,2785.48 463.249,2780.69 442.834,2780.69 " />
<svg:polygon detid="436536080" count="1" value="126" id="4204003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 neg   module  4   Id 436536080 " fill="rgb(255,5,0)" points="442.834,2780.69 463.249,2780.69 463.249,2775.9 442.834,2775.9 " />
<svg:polygon detid="436536336" count="1" value="126" id="4204004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 neg   module  4   Id 436536336 " fill="rgb(255,5,0)" points="442.834,2775.9 463.249,2775.9 463.249,2771.11 442.834,2771.11 " />
<svg:polygon detid="436536592" count="1" value="126" id="4204005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 neg   module  4   Id 436536592 " fill="rgb(255,5,0)" points="442.834,2771.11 463.249,2771.11 463.249,2766.32 442.834,2766.32 " />
<svg:polygon detid="436536848" count="1" value="126" id="4204006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 neg   module  4   Id 436536848 " fill="rgb(255,5,0)" points="442.834,2766.32 463.249,2766.32 463.249,2761.52 442.834,2761.52 " />
<svg:polygon detid="436537104" count="1" value="126" id="4204007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 neg   module  4   Id 436537104 " fill="rgb(255,5,0)" points="442.834,2761.52 463.249,2761.52 463.249,2756.73 442.834,2756.73 " />
<svg:polygon detid="436537360" count="1" value="126" id="4204008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 neg   module  4   Id 436537360 " fill="rgb(255,5,0)" points="442.834,2756.73 463.249,2756.73 463.249,2751.94 442.834,2751.94 " />
<svg:polygon detid="436537616" count="1" value="126" id="4204009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 neg   module  4   Id 436537616 " fill="rgb(255,5,0)" points="442.834,2751.94 463.249,2751.94 463.249,2747.15 442.834,2747.15 " />
<svg:polygon detid="436537872" count="1" value="126" id="4204010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 neg   module  4   Id 436537872 " fill="rgb(255,5,0)" points="442.834,2747.15 463.249,2747.15 463.249,2742.36 442.834,2742.36 " />
<svg:polygon detid="436538128" count="1" value="126" id="4204011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 neg   module  4   Id 436538128 " fill="rgb(255,5,0)" points="442.834,2742.36 463.249,2742.36 463.249,2737.57 442.834,2737.57 " />
<svg:polygon detid="436538384" count="1" value="126" id="4204012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 neg   module  4   Id 436538384 " fill="rgb(255,5,0)" points="442.834,2737.57 463.249,2737.57 463.249,2732.78 442.834,2732.78 " />
<svg:polygon detid="436538640" count="1" value="126" id="4204013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 neg   module  4   Id 436538640 " fill="rgb(255,5,0)" points="442.834,2732.78 463.249,2732.78 463.249,2727.99 442.834,2727.99 " />
<svg:polygon detid="436538896" count="1" value="126" id="4204014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 neg   module  4   Id 436538896 " fill="rgb(255,5,0)" points="442.834,2727.99 463.249,2727.99 463.249,2723.2 442.834,2723.2 " />
<svg:polygon detid="436539152" count="1" value="126" id="4204015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 neg   module  4   Id 436539152 " fill="rgb(255,5,0)" points="442.834,2723.2 463.249,2723.2 463.249,2718.41 442.834,2718.41 " />
<svg:polygon detid="436539408" count="1" value="126" id="4204016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 neg   module  4   Id 436539408 " fill="rgb(255,5,0)" points="442.834,2718.41 463.249,2718.41 463.249,2713.61 442.834,2713.61 " />
<svg:polygon detid="436539664" count="1" value="126" id="4204017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 neg   module  4   Id 436539664 " fill="rgb(255,5,0)" points="442.834,2713.61 463.249,2713.61 463.249,2708.82 442.834,2708.82 " />
<svg:polygon detid="436539920" count="1" value="126" id="4204018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 neg   module  4   Id 436539920 " fill="rgb(255,5,0)" points="442.834,2708.82 463.249,2708.82 463.249,2704.03 442.834,2704.03 " />
<svg:polygon detid="436540176" count="1" value="126" id="4204019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 neg   module  4   Id 436540176 " fill="rgb(255,5,0)" points="442.834,2704.03 463.249,2704.03 463.249,2699.24 442.834,2699.24 " />
<svg:polygon detid="436540432" count="1" value="126" id="4204020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 neg   module  4   Id 436540432 " fill="rgb(255,5,0)" points="442.834,2699.24 463.249,2699.24 463.249,2694.45 442.834,2694.45 " />
<svg:polygon detid="436540688" count="1" value="126" id="4204021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 neg   module  4   Id 436540688 " fill="rgb(255,5,0)" points="442.834,2694.45 463.249,2694.45 463.249,2689.66 442.834,2689.66 " />
<svg:polygon detid="436540944" count="1" value="126" id="4204022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 neg   module  4   Id 436540944 " fill="rgb(255,5,0)" points="442.834,2689.66 463.249,2689.66 463.249,2684.87 442.834,2684.87 " />
<svg:polygon detid="436541200" count="1" value="126" id="4204023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 neg   module  4   Id 436541200 " fill="rgb(255,5,0)" points="442.834,2684.87 463.249,2684.87 463.249,2680.08 442.834,2680.08 " />
<svg:polygon detid="436541456" count="1" value="126" id="4204024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 neg   module  4   Id 436541456 " fill="rgb(255,5,0)" points="442.834,2680.08 463.249,2680.08 463.249,2675.29 442.834,2675.29 " />
<svg:polygon detid="436541712" count="1" value="126" id="4204025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 neg   module  4   Id 436541712 " fill="rgb(255,5,0)" points="442.834,2675.29 463.249,2675.29 463.249,2670.5 442.834,2670.5 " />
<svg:polygon detid="436541968" count="1" value="126" id="4204026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 neg   module  4   Id 436541968 " fill="rgb(255,5,0)" points="442.834,2670.5 463.249,2670.5 463.249,2665.7 442.834,2665.7 " />
<svg:polygon detid="436542224" count="1" value="126" id="4204027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 neg   module  4   Id 436542224 " fill="rgb(255,5,0)" points="442.834,2665.7 463.249,2665.7 463.249,2660.91 442.834,2660.91 " />
<svg:polygon detid="436542480" count="1" value="126" id="4204028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 neg   module  4   Id 436542480 " fill="rgb(255,5,0)" points="442.834,2660.91 463.249,2660.91 463.249,2656.12 442.834,2656.12 " />
<svg:polygon detid="436542736" count="1" value="126" id="4204029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 neg   module  4   Id 436542736 " fill="rgb(255,5,0)" points="442.834,2656.12 463.249,2656.12 463.249,2651.33 442.834,2651.33 " />
<svg:polygon detid="436542992" count="1" value="126" id="4204030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 neg   module  4   Id 436542992 " fill="rgb(255,5,0)" points="442.834,2651.33 463.249,2651.33 463.249,2646.54 442.834,2646.54 " />
<svg:polygon detid="436543248" count="1" value="126" id="4204031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 neg   module  4   Id 436543248 " fill="rgb(255,5,0)" points="442.834,2646.54 463.249,2646.54 463.249,2641.75 442.834,2641.75 " />
<svg:polygon detid="436543504" count="1" value="126" id="4204032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 neg   module  4   Id 436543504 " fill="rgb(255,5,0)" points="442.834,2641.75 463.249,2641.75 463.249,2636.96 442.834,2636.96 " />
<svg:polygon detid="436543760" count="1" value="126" id="4204033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 neg   module  4   Id 436543760 " fill="rgb(255,5,0)" points="442.834,2636.96 463.249,2636.96 463.249,2632.17 442.834,2632.17 " />
<svg:polygon detid="436544016" count="1" value="126" id="4204034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 neg   module  4   Id 436544016 " fill="rgb(255,5,0)" points="442.834,2632.17 463.249,2632.17 463.249,2627.38 442.834,2627.38 " />
<svg:polygon detid="436544272" count="1" value="126" id="4204035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 neg   module  4   Id 436544272 " fill="rgb(255,5,0)" points="442.834,2627.38 463.249,2627.38 463.249,2622.59 442.834,2622.59 " />
<svg:polygon detid="436544528" count="1" value="126" id="4204036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 neg   module  4   Id 436544528 " fill="rgb(255,5,0)" points="442.834,2622.59 463.249,2622.59 463.249,2617.79 442.834,2617.79 " />
<svg:polygon detid="436544784" count="1" value="126" id="4204037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 neg   module  4   Id 436544784 " fill="rgb(255,5,0)" points="442.834,2617.79 463.249,2617.79 463.249,2613 442.834,2613 " />
<svg:polygon detid="436545040" count="1" value="126" id="4204038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 neg   module  4   Id 436545040 " fill="rgb(255,5,0)" points="442.834,2613 463.249,2613 463.249,2608.21 442.834,2608.21 " />
<svg:polygon detid="436545296" count="1" value="126" id="4204039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 neg   module  4   Id 436545296 " fill="rgb(255,5,0)" points="442.834,2608.21 463.249,2608.21 463.249,2603.42 442.834,2603.42 " />
<svg:polygon detid="436545552" count="1" value="126" id="4204040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 neg   module  4   Id 436545552 " fill="rgb(255,5,0)" points="442.834,2603.42 463.249,2603.42 463.249,2598.63 442.834,2598.63 " />
<svg:polygon detid="436545808" count="1" value="126" id="4204041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 neg   module  4   Id 436545808 " fill="rgb(255,5,0)" points="442.834,2598.63 463.249,2598.63 463.249,2593.84 442.834,2593.84 " />
<svg:polygon detid="436546064" count="1" value="126" id="4204042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 neg   module  4   Id 436546064 " fill="rgb(255,5,0)" points="442.834,2593.84 463.249,2593.84 463.249,2589.05 442.834,2589.05 " />
<svg:polygon detid="436546320" count="1" value="126" id="4204043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 neg   module  4   Id 436546320 " fill="rgb(255,5,0)" points="442.834,2589.05 463.249,2589.05 463.249,2584.26 442.834,2584.26 " />
<svg:polygon detid="436546576" count="1" value="126" id="4204044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 neg   module  4   Id 436546576 " fill="rgb(255,5,0)" points="442.834,2584.26 463.249,2584.26 463.249,2579.47 442.834,2579.47 " />
<svg:polygon detid="436546832" count="1" value="126" id="4204045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 neg   module  4   Id 436546832 " fill="rgb(255,5,0)" points="442.834,2579.47 463.249,2579.47 463.249,2574.67 442.834,2574.67 " />
<svg:polygon detid="436547088" count="1" value="126" id="4204046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 neg   module  4   Id 436547088 " fill="rgb(255,5,0)" points="442.834,2574.67 463.249,2574.67 463.249,2569.88 442.834,2569.88 " />
<svg:polygon detid="436547344" count="1" value="126" id="4204047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 neg   module  4   Id 436547344 " fill="rgb(255,5,0)" points="442.834,2569.88 463.249,2569.88 463.249,2565.09 442.834,2565.09 " />
<svg:polygon detid="436547600" count="1" value="126" id="4204048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 neg   module  4   Id 436547600 " fill="rgb(255,5,0)" points="442.834,2565.09 463.249,2565.09 463.249,2560.3 442.834,2560.3 " />
<svg:polygon detid="436547856" count="1" value="126" id="4204049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 neg   module  4   Id 436547856 " fill="rgb(255,5,0)" points="442.834,2560.3 463.249,2560.3 463.249,2555.51 442.834,2555.51 " />
<svg:polygon detid="436548112" count="1" value="126" id="4204050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 neg   module  4   Id 436548112 " fill="rgb(255,5,0)" points="442.834,2555.51 463.249,2555.51 463.249,2550.72 442.834,2550.72 " />
<svg:polygon detid="436548368" count="1" value="126" id="4204051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 neg   module  4   Id 436548368 " fill="rgb(255,5,0)" points="442.834,2550.72 463.249,2550.72 463.249,2545.93 442.834,2545.93 " />
<svg:polygon detid="436548624" count="1" value="126" id="4204052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 neg   module  4   Id 436548624 " fill="rgb(255,5,0)" points="442.834,2545.93 463.249,2545.93 463.249,2541.14 442.834,2541.14 " />
<svg:polygon detid="436548880" count="1" value="126" id="4204053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 neg   module  4   Id 436548880 " fill="rgb(255,5,0)" points="442.834,2541.14 463.249,2541.14 463.249,2536.35 442.834,2536.35 " />
<svg:polygon detid="436549136" count="1" value="126" id="4204054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 neg   module  4   Id 436549136 " fill="rgb(255,5,0)" points="442.834,2536.35 463.249,2536.35 463.249,2531.56 442.834,2531.56 " />
<svg:polygon detid="436549392" count="1" value="126" id="4204055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 neg   module  4   Id 436549392 " fill="rgb(255,5,0)" points="442.834,2531.56 463.249,2531.56 463.249,2526.76 442.834,2526.76 " />
<svg:polygon detid="436549648" count="1" value="126" id="4204056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 neg   module  4   Id 436549648 " fill="rgb(255,5,0)" points="442.834,2526.76 463.249,2526.76 463.249,2521.97 442.834,2521.97 " />
<svg:polygon detid="436549904" count="1" value="126" id="4204057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 neg   module  4   Id 436549904 " fill="rgb(255,5,0)" points="442.834,2521.97 463.249,2521.97 463.249,2517.18 442.834,2517.18 " />
<svg:polygon detid="436550160" count="1" value="126" id="4204058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 neg   module  4   Id 436550160 " fill="rgb(255,5,0)" points="442.834,2517.18 463.249,2517.18 463.249,2512.39 442.834,2512.39 " />
<svg:polygon detid="436550416" count="1" value="126" id="4204059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 neg   module  4   Id 436550416 " fill="rgb(255,5,0)" points="442.834,2512.39 463.249,2512.39 463.249,2507.6 442.834,2507.6 " />
<svg:polygon detid="436550672" count="1" value="126" id="4204060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 neg   module  4   Id 436550672 " fill="rgb(255,5,0)" points="442.834,2507.6 463.249,2507.6 463.249,2502.81 442.834,2502.81 " />
<svg:polygon detid="436550928" count="1" value="126" id="4204061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 neg   module  4   Id 436550928 " fill="rgb(255,5,0)" points="442.834,2502.81 463.249,2502.81 463.249,2498.02 442.834,2498.02 " />
<svg:polygon detid="436551184" count="1" value="126" id="4204062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 neg   module  4   Id 436551184 " fill="rgb(255,5,0)" points="442.834,2498.02 463.249,2498.02 463.249,2493.23 442.834,2493.23 " />
<svg:polygon detid="436551440" count="1" value="126" id="4204063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 neg   module  4   Id 436551440 " fill="rgb(255,5,0)" points="442.834,2493.23 463.249,2493.23 463.249,2488.44 442.834,2488.44 " />
<svg:polygon detid="436551696" count="1" value="126" id="4204064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 neg   module  4   Id 436551696 " fill="rgb(255,5,0)" points="442.834,2488.44 463.249,2488.44 463.249,2483.65 442.834,2483.65 " />
<svg:polygon detid="436551952" count="1" value="126" id="4204065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 neg   module  4   Id 436551952 " fill="rgb(255,5,0)" points="442.834,2483.65 463.249,2483.65 463.249,2478.85 442.834,2478.85 " />
<svg:polygon detid="436552208" count="1" value="126" id="4204066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 neg   module  4   Id 436552208 " fill="rgb(255,5,0)" points="442.834,2478.85 463.249,2478.85 463.249,2474.06 442.834,2474.06 " />
<svg:polygon detid="436535572" count="1" value="126" id="4205001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 neg   module  5   Id 436535572 " fill="rgb(255,5,0)" points="465.8,2790.27 486.215,2790.27 486.215,2785.48 465.8,2785.48 " />
<svg:polygon detid="436535828" count="1" value="126" id="4205002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 neg   module  5   Id 436535828 " fill="rgb(255,5,0)" points="465.8,2785.48 486.215,2785.48 486.215,2780.69 465.8,2780.69 " />
<svg:polygon detid="436536084" count="1" value="126" id="4205003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 neg   module  5   Id 436536084 " fill="rgb(255,5,0)" points="465.8,2780.69 486.215,2780.69 486.215,2775.9 465.8,2775.9 " />
<svg:polygon detid="436536340" count="1" value="126" id="4205004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 neg   module  5   Id 436536340 " fill="rgb(255,5,0)" points="465.8,2775.9 486.215,2775.9 486.215,2771.11 465.8,2771.11 " />
<svg:polygon detid="436536596" count="1" value="126" id="4205005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 neg   module  5   Id 436536596 " fill="rgb(255,5,0)" points="465.8,2771.11 486.215,2771.11 486.215,2766.32 465.8,2766.32 " />
<svg:polygon detid="436536852" count="1" value="126" id="4205006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 neg   module  5   Id 436536852 " fill="rgb(255,5,0)" points="465.8,2766.32 486.215,2766.32 486.215,2761.52 465.8,2761.52 " />
<svg:polygon detid="436537108" count="1" value="126" id="4205007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 neg   module  5   Id 436537108 " fill="rgb(255,5,0)" points="465.8,2761.52 486.215,2761.52 486.215,2756.73 465.8,2756.73 " />
<svg:polygon detid="436537364" count="1" value="126" id="4205008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 neg   module  5   Id 436537364 " fill="rgb(255,5,0)" points="465.8,2756.73 486.215,2756.73 486.215,2751.94 465.8,2751.94 " />
<svg:polygon detid="436537620" count="1" value="126" id="4205009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 neg   module  5   Id 436537620 " fill="rgb(255,5,0)" points="465.8,2751.94 486.215,2751.94 486.215,2747.15 465.8,2747.15 " />
<svg:polygon detid="436537876" count="1" value="126" id="4205010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 neg   module  5   Id 436537876 " fill="rgb(255,5,0)" points="465.8,2747.15 486.215,2747.15 486.215,2742.36 465.8,2742.36 " />
<svg:polygon detid="436538132" count="1" value="126" id="4205011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 neg   module  5   Id 436538132 " fill="rgb(255,5,0)" points="465.8,2742.36 486.215,2742.36 486.215,2737.57 465.8,2737.57 " />
<svg:polygon detid="436538388" count="1" value="126" id="4205012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 neg   module  5   Id 436538388 " fill="rgb(255,5,0)" points="465.8,2737.57 486.215,2737.57 486.215,2732.78 465.8,2732.78 " />
<svg:polygon detid="436538644" count="1" value="126" id="4205013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 neg   module  5   Id 436538644 " fill="rgb(255,5,0)" points="465.8,2732.78 486.215,2732.78 486.215,2727.99 465.8,2727.99 " />
<svg:polygon detid="436538900" count="1" value="126" id="4205014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 neg   module  5   Id 436538900 " fill="rgb(255,5,0)" points="465.8,2727.99 486.215,2727.99 486.215,2723.2 465.8,2723.2 " />
<svg:polygon detid="436539156" count="1" value="126" id="4205015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 neg   module  5   Id 436539156 " fill="rgb(255,5,0)" points="465.8,2723.2 486.215,2723.2 486.215,2718.41 465.8,2718.41 " />
<svg:polygon detid="436539412" count="1" value="126" id="4205016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 neg   module  5   Id 436539412 " fill="rgb(255,5,0)" points="465.8,2718.41 486.215,2718.41 486.215,2713.61 465.8,2713.61 " />
<svg:polygon detid="436539668" count="1" value="126" id="4205017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 neg   module  5   Id 436539668 " fill="rgb(255,5,0)" points="465.8,2713.61 486.215,2713.61 486.215,2708.82 465.8,2708.82 " />
<svg:polygon detid="436539924" count="1" value="126" id="4205018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 neg   module  5   Id 436539924 " fill="rgb(255,5,0)" points="465.8,2708.82 486.215,2708.82 486.215,2704.03 465.8,2704.03 " />
<svg:polygon detid="436540180" count="1" value="126" id="4205019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 neg   module  5   Id 436540180 " fill="rgb(255,5,0)" points="465.8,2704.03 486.215,2704.03 486.215,2699.24 465.8,2699.24 " />
<svg:polygon detid="436540436" count="1" value="126" id="4205020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 neg   module  5   Id 436540436 " fill="rgb(255,5,0)" points="465.8,2699.24 486.215,2699.24 486.215,2694.45 465.8,2694.45 " />
<svg:polygon detid="436540692" count="1" value="126" id="4205021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 neg   module  5   Id 436540692 " fill="rgb(255,5,0)" points="465.8,2694.45 486.215,2694.45 486.215,2689.66 465.8,2689.66 " />
<svg:polygon detid="436540948" count="1" value="126" id="4205022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 neg   module  5   Id 436540948 " fill="rgb(255,5,0)" points="465.8,2689.66 486.215,2689.66 486.215,2684.87 465.8,2684.87 " />
<svg:polygon detid="436541204" count="1" value="126" id="4205023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 neg   module  5   Id 436541204 " fill="rgb(255,5,0)" points="465.8,2684.87 486.215,2684.87 486.215,2680.08 465.8,2680.08 " />
<svg:polygon detid="436541460" count="1" value="126" id="4205024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 neg   module  5   Id 436541460 " fill="rgb(255,5,0)" points="465.8,2680.08 486.215,2680.08 486.215,2675.29 465.8,2675.29 " />
<svg:polygon detid="436541716" count="1" value="126" id="4205025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 neg   module  5   Id 436541716 " fill="rgb(255,5,0)" points="465.8,2675.29 486.215,2675.29 486.215,2670.5 465.8,2670.5 " />
<svg:polygon detid="436541972" count="1" value="126" id="4205026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 neg   module  5   Id 436541972 " fill="rgb(255,5,0)" points="465.8,2670.5 486.215,2670.5 486.215,2665.7 465.8,2665.7 " />
<svg:polygon detid="436542228" count="1" value="126" id="4205027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 neg   module  5   Id 436542228 " fill="rgb(255,5,0)" points="465.8,2665.7 486.215,2665.7 486.215,2660.91 465.8,2660.91 " />
<svg:polygon detid="436542484" count="1" value="126" id="4205028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 neg   module  5   Id 436542484 " fill="rgb(255,5,0)" points="465.8,2660.91 486.215,2660.91 486.215,2656.12 465.8,2656.12 " />
<svg:polygon detid="436542740" count="1" value="126" id="4205029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 neg   module  5   Id 436542740 " fill="rgb(255,5,0)" points="465.8,2656.12 486.215,2656.12 486.215,2651.33 465.8,2651.33 " />
<svg:polygon detid="436542996" count="1" value="126" id="4205030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 neg   module  5   Id 436542996 " fill="rgb(255,5,0)" points="465.8,2651.33 486.215,2651.33 486.215,2646.54 465.8,2646.54 " />
<svg:polygon detid="436543252" count="1" value="126" id="4205031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 neg   module  5   Id 436543252 " fill="rgb(255,5,0)" points="465.8,2646.54 486.215,2646.54 486.215,2641.75 465.8,2641.75 " />
<svg:polygon detid="436543508" count="1" value="126" id="4205032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 neg   module  5   Id 436543508 " fill="rgb(255,5,0)" points="465.8,2641.75 486.215,2641.75 486.215,2636.96 465.8,2636.96 " />
<svg:polygon detid="436543764" count="1" value="126" id="4205033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 neg   module  5   Id 436543764 " fill="rgb(255,5,0)" points="465.8,2636.96 486.215,2636.96 486.215,2632.17 465.8,2632.17 " />
<svg:polygon detid="436544020" count="1" value="126" id="4205034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 neg   module  5   Id 436544020 " fill="rgb(255,5,0)" points="465.8,2632.17 486.215,2632.17 486.215,2627.38 465.8,2627.38 " />
<svg:polygon detid="436544276" count="1" value="126" id="4205035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 neg   module  5   Id 436544276 " fill="rgb(255,5,0)" points="465.8,2627.38 486.215,2627.38 486.215,2622.59 465.8,2622.59 " />
<svg:polygon detid="436544532" count="1" value="126" id="4205036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 neg   module  5   Id 436544532 " fill="rgb(255,5,0)" points="465.8,2622.59 486.215,2622.59 486.215,2617.79 465.8,2617.79 " />
<svg:polygon detid="436544788" count="1" value="126" id="4205037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 neg   module  5   Id 436544788 " fill="rgb(255,5,0)" points="465.8,2617.79 486.215,2617.79 486.215,2613 465.8,2613 " />
<svg:polygon detid="436545044" count="1" value="126" id="4205038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 neg   module  5   Id 436545044 " fill="rgb(255,5,0)" points="465.8,2613 486.215,2613 486.215,2608.21 465.8,2608.21 " />
<svg:polygon detid="436545300" count="1" value="126" id="4205039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 neg   module  5   Id 436545300 " fill="rgb(255,5,0)" points="465.8,2608.21 486.215,2608.21 486.215,2603.42 465.8,2603.42 " />
<svg:polygon detid="436545556" count="1" value="126" id="4205040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 neg   module  5   Id 436545556 " fill="rgb(255,5,0)" points="465.8,2603.42 486.215,2603.42 486.215,2598.63 465.8,2598.63 " />
<svg:polygon detid="436545812" count="1" value="126" id="4205041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 neg   module  5   Id 436545812 " fill="rgb(255,5,0)" points="465.8,2598.63 486.215,2598.63 486.215,2593.84 465.8,2593.84 " />
<svg:polygon detid="436546068" count="1" value="126" id="4205042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 neg   module  5   Id 436546068 " fill="rgb(255,5,0)" points="465.8,2593.84 486.215,2593.84 486.215,2589.05 465.8,2589.05 " />
<svg:polygon detid="436546324" count="1" value="126" id="4205043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 neg   module  5   Id 436546324 " fill="rgb(255,5,0)" points="465.8,2589.05 486.215,2589.05 486.215,2584.26 465.8,2584.26 " />
<svg:polygon detid="436546580" count="1" value="126" id="4205044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 neg   module  5   Id 436546580 " fill="rgb(255,5,0)" points="465.8,2584.26 486.215,2584.26 486.215,2579.47 465.8,2579.47 " />
<svg:polygon detid="436546836" count="1" value="126" id="4205045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 neg   module  5   Id 436546836 " fill="rgb(255,5,0)" points="465.8,2579.47 486.215,2579.47 486.215,2574.67 465.8,2574.67 " />
<svg:polygon detid="436547092" count="1" value="126" id="4205046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 neg   module  5   Id 436547092 " fill="rgb(255,5,0)" points="465.8,2574.67 486.215,2574.67 486.215,2569.88 465.8,2569.88 " />
<svg:polygon detid="436547348" count="1" value="126" id="4205047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 neg   module  5   Id 436547348 " fill="rgb(255,5,0)" points="465.8,2569.88 486.215,2569.88 486.215,2565.09 465.8,2565.09 " />
<svg:polygon detid="436547604" count="1" value="126" id="4205048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 neg   module  5   Id 436547604 " fill="rgb(255,5,0)" points="465.8,2565.09 486.215,2565.09 486.215,2560.3 465.8,2560.3 " />
<svg:polygon detid="436547860" count="1" value="126" id="4205049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 neg   module  5   Id 436547860 " fill="rgb(255,5,0)" points="465.8,2560.3 486.215,2560.3 486.215,2555.51 465.8,2555.51 " />
<svg:polygon detid="436548116" count="1" value="126" id="4205050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 neg   module  5   Id 436548116 " fill="rgb(255,5,0)" points="465.8,2555.51 486.215,2555.51 486.215,2550.72 465.8,2550.72 " />
<svg:polygon detid="436548372" count="1" value="126" id="4205051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 neg   module  5   Id 436548372 " fill="rgb(255,5,0)" points="465.8,2550.72 486.215,2550.72 486.215,2545.93 465.8,2545.93 " />
<svg:polygon detid="436548628" count="1" value="126" id="4205052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 neg   module  5   Id 436548628 " fill="rgb(255,5,0)" points="465.8,2545.93 486.215,2545.93 486.215,2541.14 465.8,2541.14 " />
<svg:polygon detid="436548884" count="1" value="126" id="4205053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 neg   module  5   Id 436548884 " fill="rgb(255,5,0)" points="465.8,2541.14 486.215,2541.14 486.215,2536.35 465.8,2536.35 " />
<svg:polygon detid="436549140" count="1" value="126" id="4205054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 neg   module  5   Id 436549140 " fill="rgb(255,5,0)" points="465.8,2536.35 486.215,2536.35 486.215,2531.56 465.8,2531.56 " />
<svg:polygon detid="436549396" count="1" value="126" id="4205055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 neg   module  5   Id 436549396 " fill="rgb(255,5,0)" points="465.8,2531.56 486.215,2531.56 486.215,2526.76 465.8,2526.76 " />
<svg:polygon detid="436549652" count="1" value="126" id="4205056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 neg   module  5   Id 436549652 " fill="rgb(255,5,0)" points="465.8,2526.76 486.215,2526.76 486.215,2521.97 465.8,2521.97 " />
<svg:polygon detid="436549908" count="1" value="126" id="4205057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 neg   module  5   Id 436549908 " fill="rgb(255,5,0)" points="465.8,2521.97 486.215,2521.97 486.215,2517.18 465.8,2517.18 " />
<svg:polygon detid="436550164" count="1" value="126" id="4205058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 neg   module  5   Id 436550164 " fill="rgb(255,5,0)" points="465.8,2517.18 486.215,2517.18 486.215,2512.39 465.8,2512.39 " />
<svg:polygon detid="436550420" count="1" value="126" id="4205059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 neg   module  5   Id 436550420 " fill="rgb(255,5,0)" points="465.8,2512.39 486.215,2512.39 486.215,2507.6 465.8,2507.6 " />
<svg:polygon detid="436550676" count="1" value="126" id="4205060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 neg   module  5   Id 436550676 " fill="rgb(255,5,0)" points="465.8,2507.6 486.215,2507.6 486.215,2502.81 465.8,2502.81 " />
<svg:polygon detid="436550932" count="1" value="126" id="4205061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 neg   module  5   Id 436550932 " fill="rgb(255,5,0)" points="465.8,2502.81 486.215,2502.81 486.215,2498.02 465.8,2498.02 " />
<svg:polygon detid="436551188" count="1" value="126" id="4205062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 neg   module  5   Id 436551188 " fill="rgb(255,5,0)" points="465.8,2498.02 486.215,2498.02 486.215,2493.23 465.8,2493.23 " />
<svg:polygon detid="436551444" count="1" value="126" id="4205063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 neg   module  5   Id 436551444 " fill="rgb(255,5,0)" points="465.8,2493.23 486.215,2493.23 486.215,2488.44 465.8,2488.44 " />
<svg:polygon detid="436551700" count="1" value="126" id="4205064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 neg   module  5   Id 436551700 " fill="rgb(255,5,0)" points="465.8,2488.44 486.215,2488.44 486.215,2483.65 465.8,2483.65 " />
<svg:polygon detid="436551956" count="1" value="126" id="4205065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 neg   module  5   Id 436551956 " fill="rgb(255,5,0)" points="465.8,2483.65 486.215,2483.65 486.215,2478.85 465.8,2478.85 " />
<svg:polygon detid="436552212" count="1" value="126" id="4205066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 neg   module  5   Id 436552212 " fill="rgb(255,5,0)" points="465.8,2478.85 486.215,2478.85 486.215,2474.06 465.8,2474.06 " />
<svg:polygon detid="436535576" count="1" value="126" id="4206001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 neg   module  6   Id 436535576 " fill="rgb(255,5,0)" points="488.767,2790.27 509.182,2790.27 509.182,2785.48 488.767,2785.48 " />
<svg:polygon detid="436535832" count="1" value="126" id="4206002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 neg   module  6   Id 436535832 " fill="rgb(255,5,0)" points="488.767,2785.48 509.182,2785.48 509.182,2780.69 488.767,2780.69 " />
<svg:polygon detid="436536088" count="1" value="126" id="4206003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 neg   module  6   Id 436536088 " fill="rgb(255,5,0)" points="488.767,2780.69 509.182,2780.69 509.182,2775.9 488.767,2775.9 " />
<svg:polygon detid="436536344" count="1" value="126" id="4206004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 neg   module  6   Id 436536344 " fill="rgb(255,5,0)" points="488.767,2775.9 509.182,2775.9 509.182,2771.11 488.767,2771.11 " />
<svg:polygon detid="436536600" count="1" value="126" id="4206005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 neg   module  6   Id 436536600 " fill="rgb(255,5,0)" points="488.767,2771.11 509.182,2771.11 509.182,2766.32 488.767,2766.32 " />
<svg:polygon detid="436536856" count="1" value="126" id="4206006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 neg   module  6   Id 436536856 " fill="rgb(255,5,0)" points="488.767,2766.32 509.182,2766.32 509.182,2761.52 488.767,2761.52 " />
<svg:polygon detid="436537112" count="1" value="126" id="4206007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 neg   module  6   Id 436537112 " fill="rgb(255,5,0)" points="488.767,2761.52 509.182,2761.52 509.182,2756.73 488.767,2756.73 " />
<svg:polygon detid="436537368" count="1" value="126" id="4206008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 neg   module  6   Id 436537368 " fill="rgb(255,5,0)" points="488.767,2756.73 509.182,2756.73 509.182,2751.94 488.767,2751.94 " />
<svg:polygon detid="436537624" count="1" value="126" id="4206009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 neg   module  6   Id 436537624 " fill="rgb(255,5,0)" points="488.767,2751.94 509.182,2751.94 509.182,2747.15 488.767,2747.15 " />
<svg:polygon detid="436537880" count="1" value="126" id="4206010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 neg   module  6   Id 436537880 " fill="rgb(255,5,0)" points="488.767,2747.15 509.182,2747.15 509.182,2742.36 488.767,2742.36 " />
<svg:polygon detid="436538136" count="1" value="126" id="4206011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 neg   module  6   Id 436538136 " fill="rgb(255,5,0)" points="488.767,2742.36 509.182,2742.36 509.182,2737.57 488.767,2737.57 " />
<svg:polygon detid="436538392" count="1" value="126" id="4206012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 neg   module  6   Id 436538392 " fill="rgb(255,5,0)" points="488.767,2737.57 509.182,2737.57 509.182,2732.78 488.767,2732.78 " />
<svg:polygon detid="436538648" count="1" value="126" id="4206013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 neg   module  6   Id 436538648 " fill="rgb(255,5,0)" points="488.767,2732.78 509.182,2732.78 509.182,2727.99 488.767,2727.99 " />
<svg:polygon detid="436538904" count="1" value="126" id="4206014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 neg   module  6   Id 436538904 " fill="rgb(255,5,0)" points="488.767,2727.99 509.182,2727.99 509.182,2723.2 488.767,2723.2 " />
<svg:polygon detid="436539160" count="1" value="126" id="4206015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 neg   module  6   Id 436539160 " fill="rgb(255,5,0)" points="488.767,2723.2 509.182,2723.2 509.182,2718.41 488.767,2718.41 " />
<svg:polygon detid="436539416" count="1" value="126" id="4206016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 neg   module  6   Id 436539416 " fill="rgb(255,5,0)" points="488.767,2718.41 509.182,2718.41 509.182,2713.61 488.767,2713.61 " />
<svg:polygon detid="436539672" count="1" value="126" id="4206017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 neg   module  6   Id 436539672 " fill="rgb(255,5,0)" points="488.767,2713.61 509.182,2713.61 509.182,2708.82 488.767,2708.82 " />
<svg:polygon detid="436539928" count="1" value="126" id="4206018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 neg   module  6   Id 436539928 " fill="rgb(255,5,0)" points="488.767,2708.82 509.182,2708.82 509.182,2704.03 488.767,2704.03 " />
<svg:polygon detid="436540184" count="1" value="126" id="4206019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 neg   module  6   Id 436540184 " fill="rgb(255,5,0)" points="488.767,2704.03 509.182,2704.03 509.182,2699.24 488.767,2699.24 " />
<svg:polygon detid="436540440" count="1" value="126" id="4206020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 neg   module  6   Id 436540440 " fill="rgb(255,5,0)" points="488.767,2699.24 509.182,2699.24 509.182,2694.45 488.767,2694.45 " />
<svg:polygon detid="436540696" count="1" value="126" id="4206021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 neg   module  6   Id 436540696 " fill="rgb(255,5,0)" points="488.767,2694.45 509.182,2694.45 509.182,2689.66 488.767,2689.66 " />
<svg:polygon detid="436540952" count="1" value="126" id="4206022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 neg   module  6   Id 436540952 " fill="rgb(255,5,0)" points="488.767,2689.66 509.182,2689.66 509.182,2684.87 488.767,2684.87 " />
<svg:polygon detid="436541208" count="1" value="126" id="4206023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 neg   module  6   Id 436541208 " fill="rgb(255,5,0)" points="488.767,2684.87 509.182,2684.87 509.182,2680.08 488.767,2680.08 " />
<svg:polygon detid="436541464" count="1" value="126" id="4206024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 neg   module  6   Id 436541464 " fill="rgb(255,5,0)" points="488.767,2680.08 509.182,2680.08 509.182,2675.29 488.767,2675.29 " />
<svg:polygon detid="436541720" count="1" value="126" id="4206025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 neg   module  6   Id 436541720 " fill="rgb(255,5,0)" points="488.767,2675.29 509.182,2675.29 509.182,2670.5 488.767,2670.5 " />
<svg:polygon detid="436541976" count="1" value="126" id="4206026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 neg   module  6   Id 436541976 " fill="rgb(255,5,0)" points="488.767,2670.5 509.182,2670.5 509.182,2665.7 488.767,2665.7 " />
<svg:polygon detid="436542232" count="1" value="126" id="4206027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 neg   module  6   Id 436542232 " fill="rgb(255,5,0)" points="488.767,2665.7 509.182,2665.7 509.182,2660.91 488.767,2660.91 " />
<svg:polygon detid="436542488" count="1" value="126" id="4206028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 neg   module  6   Id 436542488 " fill="rgb(255,5,0)" points="488.767,2660.91 509.182,2660.91 509.182,2656.12 488.767,2656.12 " />
<svg:polygon detid="436542744" count="1" value="126" id="4206029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 neg   module  6   Id 436542744 " fill="rgb(255,5,0)" points="488.767,2656.12 509.182,2656.12 509.182,2651.33 488.767,2651.33 " />
<svg:polygon detid="436543000" count="1" value="126" id="4206030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 neg   module  6   Id 436543000 " fill="rgb(255,5,0)" points="488.767,2651.33 509.182,2651.33 509.182,2646.54 488.767,2646.54 " />
<svg:polygon detid="436543256" count="1" value="126" id="4206031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 neg   module  6   Id 436543256 " fill="rgb(255,5,0)" points="488.767,2646.54 509.182,2646.54 509.182,2641.75 488.767,2641.75 " />
<svg:polygon detid="436543512" count="1" value="126" id="4206032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 neg   module  6   Id 436543512 " fill="rgb(255,5,0)" points="488.767,2641.75 509.182,2641.75 509.182,2636.96 488.767,2636.96 " />
<svg:polygon detid="436543768" count="1" value="126" id="4206033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 neg   module  6   Id 436543768 " fill="rgb(255,5,0)" points="488.767,2636.96 509.182,2636.96 509.182,2632.17 488.767,2632.17 " />
<svg:polygon detid="436544024" count="1" value="126" id="4206034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 neg   module  6   Id 436544024 " fill="rgb(255,5,0)" points="488.767,2632.17 509.182,2632.17 509.182,2627.38 488.767,2627.38 " />
<svg:polygon detid="436544280" count="1" value="126" id="4206035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 neg   module  6   Id 436544280 " fill="rgb(255,5,0)" points="488.767,2627.38 509.182,2627.38 509.182,2622.59 488.767,2622.59 " />
<svg:polygon detid="436544536" count="1" value="126" id="4206036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 neg   module  6   Id 436544536 " fill="rgb(255,5,0)" points="488.767,2622.59 509.182,2622.59 509.182,2617.79 488.767,2617.79 " />
<svg:polygon detid="436544792" count="1" value="126" id="4206037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 neg   module  6   Id 436544792 " fill="rgb(255,5,0)" points="488.767,2617.79 509.182,2617.79 509.182,2613 488.767,2613 " />
<svg:polygon detid="436545048" count="1" value="126" id="4206038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 neg   module  6   Id 436545048 " fill="rgb(255,5,0)" points="488.767,2613 509.182,2613 509.182,2608.21 488.767,2608.21 " />
<svg:polygon detid="436545304" count="1" value="126" id="4206039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 neg   module  6   Id 436545304 " fill="rgb(255,5,0)" points="488.767,2608.21 509.182,2608.21 509.182,2603.42 488.767,2603.42 " />
<svg:polygon detid="436545560" count="1" value="126" id="4206040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 neg   module  6   Id 436545560 " fill="rgb(255,5,0)" points="488.767,2603.42 509.182,2603.42 509.182,2598.63 488.767,2598.63 " />
<svg:polygon detid="436545816" count="1" value="126" id="4206041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 neg   module  6   Id 436545816 " fill="rgb(255,5,0)" points="488.767,2598.63 509.182,2598.63 509.182,2593.84 488.767,2593.84 " />
<svg:polygon detid="436546072" count="1" value="126" id="4206042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 neg   module  6   Id 436546072 " fill="rgb(255,5,0)" points="488.767,2593.84 509.182,2593.84 509.182,2589.05 488.767,2589.05 " />
<svg:polygon detid="436546328" count="1" value="126" id="4206043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 neg   module  6   Id 436546328 " fill="rgb(255,5,0)" points="488.767,2589.05 509.182,2589.05 509.182,2584.26 488.767,2584.26 " />
<svg:polygon detid="436546584" count="1" value="126" id="4206044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 neg   module  6   Id 436546584 " fill="rgb(255,5,0)" points="488.767,2584.26 509.182,2584.26 509.182,2579.47 488.767,2579.47 " />
<svg:polygon detid="436546840" count="1" value="126" id="4206045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 neg   module  6   Id 436546840 " fill="rgb(255,5,0)" points="488.767,2579.47 509.182,2579.47 509.182,2574.67 488.767,2574.67 " />
<svg:polygon detid="436547096" count="1" value="126" id="4206046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 neg   module  6   Id 436547096 " fill="rgb(255,5,0)" points="488.767,2574.67 509.182,2574.67 509.182,2569.88 488.767,2569.88 " />
<svg:polygon detid="436547352" count="1" value="126" id="4206047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 neg   module  6   Id 436547352 " fill="rgb(255,5,0)" points="488.767,2569.88 509.182,2569.88 509.182,2565.09 488.767,2565.09 " />
<svg:polygon detid="436547608" count="1" value="126" id="4206048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 neg   module  6   Id 436547608 " fill="rgb(255,5,0)" points="488.767,2565.09 509.182,2565.09 509.182,2560.3 488.767,2560.3 " />
<svg:polygon detid="436547864" count="1" value="126" id="4206049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 neg   module  6   Id 436547864 " fill="rgb(255,5,0)" points="488.767,2560.3 509.182,2560.3 509.182,2555.51 488.767,2555.51 " />
<svg:polygon detid="436548120" count="1" value="126" id="4206050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 neg   module  6   Id 436548120 " fill="rgb(255,5,0)" points="488.767,2555.51 509.182,2555.51 509.182,2550.72 488.767,2550.72 " />
<svg:polygon detid="436548376" count="1" value="126" id="4206051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 neg   module  6   Id 436548376 " fill="rgb(255,5,0)" points="488.767,2550.72 509.182,2550.72 509.182,2545.93 488.767,2545.93 " />
<svg:polygon detid="436548632" count="1" value="126" id="4206052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 neg   module  6   Id 436548632 " fill="rgb(255,5,0)" points="488.767,2545.93 509.182,2545.93 509.182,2541.14 488.767,2541.14 " />
<svg:polygon detid="436548888" count="1" value="126" id="4206053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 neg   module  6   Id 436548888 " fill="rgb(255,5,0)" points="488.767,2541.14 509.182,2541.14 509.182,2536.35 488.767,2536.35 " />
<svg:polygon detid="436549144" count="1" value="126" id="4206054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 neg   module  6   Id 436549144 " fill="rgb(255,5,0)" points="488.767,2536.35 509.182,2536.35 509.182,2531.56 488.767,2531.56 " />
<svg:polygon detid="436549400" count="1" value="126" id="4206055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 neg   module  6   Id 436549400 " fill="rgb(255,5,0)" points="488.767,2531.56 509.182,2531.56 509.182,2526.76 488.767,2526.76 " />
<svg:polygon detid="436549656" count="1" value="126" id="4206056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 neg   module  6   Id 436549656 " fill="rgb(255,5,0)" points="488.767,2526.76 509.182,2526.76 509.182,2521.97 488.767,2521.97 " />
<svg:polygon detid="436549912" count="1" value="126" id="4206057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 neg   module  6   Id 436549912 " fill="rgb(255,5,0)" points="488.767,2521.97 509.182,2521.97 509.182,2517.18 488.767,2517.18 " />
<svg:polygon detid="436550168" count="1" value="126" id="4206058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 neg   module  6   Id 436550168 " fill="rgb(255,5,0)" points="488.767,2517.18 509.182,2517.18 509.182,2512.39 488.767,2512.39 " />
<svg:polygon detid="436550424" count="1" value="126" id="4206059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 neg   module  6   Id 436550424 " fill="rgb(255,5,0)" points="488.767,2512.39 509.182,2512.39 509.182,2507.6 488.767,2507.6 " />
<svg:polygon detid="436550680" count="1" value="126" id="4206060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 neg   module  6   Id 436550680 " fill="rgb(255,5,0)" points="488.767,2507.6 509.182,2507.6 509.182,2502.81 488.767,2502.81 " />
<svg:polygon detid="436550936" count="1" value="126" id="4206061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 neg   module  6   Id 436550936 " fill="rgb(255,5,0)" points="488.767,2502.81 509.182,2502.81 509.182,2498.02 488.767,2498.02 " />
<svg:polygon detid="436551192" count="1" value="126" id="4206062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 neg   module  6   Id 436551192 " fill="rgb(255,5,0)" points="488.767,2498.02 509.182,2498.02 509.182,2493.23 488.767,2493.23 " />
<svg:polygon detid="436551448" count="1" value="126" id="4206063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 neg   module  6   Id 436551448 " fill="rgb(255,5,0)" points="488.767,2493.23 509.182,2493.23 509.182,2488.44 488.767,2488.44 " />
<svg:polygon detid="436551704" count="1" value="126" id="4206064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 neg   module  6   Id 436551704 " fill="rgb(255,5,0)" points="488.767,2488.44 509.182,2488.44 509.182,2483.65 488.767,2483.65 " />
<svg:polygon detid="436551960" count="1" value="126" id="4206065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 neg   module  6   Id 436551960 " fill="rgb(255,5,0)" points="488.767,2483.65 509.182,2483.65 509.182,2478.85 488.767,2478.85 " />
<svg:polygon detid="436552216" count="1" value="126" id="4206066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 neg   module  6   Id 436552216 " fill="rgb(255,5,0)" points="488.767,2478.85 509.182,2478.85 509.182,2474.06 488.767,2474.06 " />
<svg:polygon detid="436568324" count="1" value="126" id="4207001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 pos   module  1   Id 436568324 " fill="rgb(255,5,0)" points="511.733,2790.27 532.148,2790.27 532.148,2785.48 511.733,2785.48 " />
<svg:polygon detid="436568580" count="1" value="126" id="4207002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 pos   module  1   Id 436568580 " fill="rgb(255,5,0)" points="511.733,2785.48 532.148,2785.48 532.148,2780.69 511.733,2780.69 " />
<svg:polygon detid="436568836" count="1" value="126" id="4207003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 pos   module  1   Id 436568836 " fill="rgb(255,5,0)" points="511.733,2780.69 532.148,2780.69 532.148,2775.9 511.733,2775.9 " />
<svg:polygon detid="436569092" count="1" value="126" id="4207004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 pos   module  1   Id 436569092 " fill="rgb(255,5,0)" points="511.733,2775.9 532.148,2775.9 532.148,2771.11 511.733,2771.11 " />
<svg:polygon detid="436569348" count="1" value="126" id="4207005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 pos   module  1   Id 436569348 " fill="rgb(255,5,0)" points="511.733,2771.11 532.148,2771.11 532.148,2766.32 511.733,2766.32 " />
<svg:polygon detid="436569604" count="1" value="126" id="4207006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 pos   module  1   Id 436569604 " fill="rgb(255,5,0)" points="511.733,2766.32 532.148,2766.32 532.148,2761.52 511.733,2761.52 " />
<svg:polygon detid="436569860" count="1" value="126" id="4207007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 pos   module  1   Id 436569860 " fill="rgb(255,5,0)" points="511.733,2761.52 532.148,2761.52 532.148,2756.73 511.733,2756.73 " />
<svg:polygon detid="436570116" count="1" value="126" id="4207008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 pos   module  1   Id 436570116 " fill="rgb(255,5,0)" points="511.733,2756.73 532.148,2756.73 532.148,2751.94 511.733,2751.94 " />
<svg:polygon detid="436570372" count="1" value="126" id="4207009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 pos   module  1   Id 436570372 " fill="rgb(255,5,0)" points="511.733,2751.94 532.148,2751.94 532.148,2747.15 511.733,2747.15 " />
<svg:polygon detid="436570628" count="1" value="126" id="4207010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 pos   module  1   Id 436570628 " fill="rgb(255,5,0)" points="511.733,2747.15 532.148,2747.15 532.148,2742.36 511.733,2742.36 " />
<svg:polygon detid="436570884" count="1" value="126" id="4207011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 pos   module  1   Id 436570884 " fill="rgb(255,5,0)" points="511.733,2742.36 532.148,2742.36 532.148,2737.57 511.733,2737.57 " />
<svg:polygon detid="436571140" count="1" value="126" id="4207012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 pos   module  1   Id 436571140 " fill="rgb(255,5,0)" points="511.733,2737.57 532.148,2737.57 532.148,2732.78 511.733,2732.78 " />
<svg:polygon detid="436571396" count="1" value="126" id="4207013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 pos   module  1   Id 436571396 " fill="rgb(255,5,0)" points="511.733,2732.78 532.148,2732.78 532.148,2727.99 511.733,2727.99 " />
<svg:polygon detid="436571652" count="1" value="126" id="4207014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 pos   module  1   Id 436571652 " fill="rgb(255,5,0)" points="511.733,2727.99 532.148,2727.99 532.148,2723.2 511.733,2723.2 " />
<svg:polygon detid="436571908" count="1" value="126" id="4207015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 pos   module  1   Id 436571908 " fill="rgb(255,5,0)" points="511.733,2723.2 532.148,2723.2 532.148,2718.41 511.733,2718.41 " />
<svg:polygon detid="436572164" count="1" value="126" id="4207016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 pos   module  1   Id 436572164 " fill="rgb(255,5,0)" points="511.733,2718.41 532.148,2718.41 532.148,2713.61 511.733,2713.61 " />
<svg:polygon detid="436572420" count="1" value="126" id="4207017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 pos   module  1   Id 436572420 " fill="rgb(255,5,0)" points="511.733,2713.61 532.148,2713.61 532.148,2708.82 511.733,2708.82 " />
<svg:polygon detid="436572676" count="1" value="126" id="4207018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 pos   module  1   Id 436572676 " fill="rgb(255,5,0)" points="511.733,2708.82 532.148,2708.82 532.148,2704.03 511.733,2704.03 " />
<svg:polygon detid="436572932" count="1" value="126" id="4207019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 pos   module  1   Id 436572932 " fill="rgb(255,5,0)" points="511.733,2704.03 532.148,2704.03 532.148,2699.24 511.733,2699.24 " />
<svg:polygon detid="436573188" count="1" value="126" id="4207020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 pos   module  1   Id 436573188 " fill="rgb(255,5,0)" points="511.733,2699.24 532.148,2699.24 532.148,2694.45 511.733,2694.45 " />
<svg:polygon detid="436573444" count="1" value="126" id="4207021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 pos   module  1   Id 436573444 " fill="rgb(255,5,0)" points="511.733,2694.45 532.148,2694.45 532.148,2689.66 511.733,2689.66 " />
<svg:polygon detid="436573700" count="1" value="126" id="4207022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 pos   module  1   Id 436573700 " fill="rgb(255,5,0)" points="511.733,2689.66 532.148,2689.66 532.148,2684.87 511.733,2684.87 " />
<svg:polygon detid="436573956" count="1" value="126" id="4207023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 pos   module  1   Id 436573956 " fill="rgb(255,5,0)" points="511.733,2684.87 532.148,2684.87 532.148,2680.08 511.733,2680.08 " />
<svg:polygon detid="436574212" count="1" value="126" id="4207024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 pos   module  1   Id 436574212 " fill="rgb(255,5,0)" points="511.733,2680.08 532.148,2680.08 532.148,2675.29 511.733,2675.29 " />
<svg:polygon detid="436574468" count="1" value="126" id="4207025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 pos   module  1   Id 436574468 " fill="rgb(255,5,0)" points="511.733,2675.29 532.148,2675.29 532.148,2670.5 511.733,2670.5 " />
<svg:polygon detid="436574724" count="1" value="126" id="4207026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 pos   module  1   Id 436574724 " fill="rgb(255,5,0)" points="511.733,2670.5 532.148,2670.5 532.148,2665.7 511.733,2665.7 " />
<svg:polygon detid="436574980" count="1" value="126" id="4207027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 pos   module  1   Id 436574980 " fill="rgb(255,5,0)" points="511.733,2665.7 532.148,2665.7 532.148,2660.91 511.733,2660.91 " />
<svg:polygon detid="436575236" count="1" value="126" id="4207028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 pos   module  1   Id 436575236 " fill="rgb(255,5,0)" points="511.733,2660.91 532.148,2660.91 532.148,2656.12 511.733,2656.12 " />
<svg:polygon detid="436575492" count="1" value="126" id="4207029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 pos   module  1   Id 436575492 " fill="rgb(255,5,0)" points="511.733,2656.12 532.148,2656.12 532.148,2651.33 511.733,2651.33 " />
<svg:polygon detid="436575748" count="1" value="126" id="4207030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 pos   module  1   Id 436575748 " fill="rgb(255,5,0)" points="511.733,2651.33 532.148,2651.33 532.148,2646.54 511.733,2646.54 " />
<svg:polygon detid="436576004" count="1" value="126" id="4207031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 pos   module  1   Id 436576004 " fill="rgb(255,5,0)" points="511.733,2646.54 532.148,2646.54 532.148,2641.75 511.733,2641.75 " />
<svg:polygon detid="436576260" count="1" value="126" id="4207032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 pos   module  1   Id 436576260 " fill="rgb(255,5,0)" points="511.733,2641.75 532.148,2641.75 532.148,2636.96 511.733,2636.96 " />
<svg:polygon detid="436576516" count="1" value="126" id="4207033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 pos   module  1   Id 436576516 " fill="rgb(255,5,0)" points="511.733,2636.96 532.148,2636.96 532.148,2632.17 511.733,2632.17 " />
<svg:polygon detid="436576772" count="1" value="126" id="4207034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 pos   module  1   Id 436576772 " fill="rgb(255,5,0)" points="511.733,2632.17 532.148,2632.17 532.148,2627.38 511.733,2627.38 " />
<svg:polygon detid="436577028" count="1" value="126" id="4207035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 pos   module  1   Id 436577028 " fill="rgb(255,5,0)" points="511.733,2627.38 532.148,2627.38 532.148,2622.59 511.733,2622.59 " />
<svg:polygon detid="436577284" count="1" value="126" id="4207036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 pos   module  1   Id 436577284 " fill="rgb(255,5,0)" points="511.733,2622.59 532.148,2622.59 532.148,2617.79 511.733,2617.79 " />
<svg:polygon detid="436577540" count="1" value="126" id="4207037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 pos   module  1   Id 436577540 " fill="rgb(255,5,0)" points="511.733,2617.79 532.148,2617.79 532.148,2613 511.733,2613 " />
<svg:polygon detid="436577796" count="1" value="126" id="4207038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 pos   module  1   Id 436577796 " fill="rgb(255,5,0)" points="511.733,2613 532.148,2613 532.148,2608.21 511.733,2608.21 " />
<svg:polygon detid="436578052" count="1" value="126" id="4207039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 pos   module  1   Id 436578052 " fill="rgb(255,5,0)" points="511.733,2608.21 532.148,2608.21 532.148,2603.42 511.733,2603.42 " />
<svg:polygon detid="436578308" count="1" value="126" id="4207040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 pos   module  1   Id 436578308 " fill="rgb(255,5,0)" points="511.733,2603.42 532.148,2603.42 532.148,2598.63 511.733,2598.63 " />
<svg:polygon detid="436578564" count="1" value="126" id="4207041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 pos   module  1   Id 436578564 " fill="rgb(255,5,0)" points="511.733,2598.63 532.148,2598.63 532.148,2593.84 511.733,2593.84 " />
<svg:polygon detid="436578820" count="1" value="126" id="4207042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 pos   module  1   Id 436578820 " fill="rgb(255,5,0)" points="511.733,2593.84 532.148,2593.84 532.148,2589.05 511.733,2589.05 " />
<svg:polygon detid="436579076" count="1" value="126" id="4207043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 pos   module  1   Id 436579076 " fill="rgb(255,5,0)" points="511.733,2589.05 532.148,2589.05 532.148,2584.26 511.733,2584.26 " />
<svg:polygon detid="436579332" count="1" value="126" id="4207044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 pos   module  1   Id 436579332 " fill="rgb(255,5,0)" points="511.733,2584.26 532.148,2584.26 532.148,2579.47 511.733,2579.47 " />
<svg:polygon detid="436579588" count="1" value="126" id="4207045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 pos   module  1   Id 436579588 " fill="rgb(255,5,0)" points="511.733,2579.47 532.148,2579.47 532.148,2574.67 511.733,2574.67 " />
<svg:polygon detid="436579844" count="1" value="126" id="4207046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 pos   module  1   Id 436579844 " fill="rgb(255,5,0)" points="511.733,2574.67 532.148,2574.67 532.148,2569.88 511.733,2569.88 " />
<svg:polygon detid="436580100" count="1" value="126" id="4207047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 pos   module  1   Id 436580100 " fill="rgb(255,5,0)" points="511.733,2569.88 532.148,2569.88 532.148,2565.09 511.733,2565.09 " />
<svg:polygon detid="436580356" count="1" value="126" id="4207048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 pos   module  1   Id 436580356 " fill="rgb(255,5,0)" points="511.733,2565.09 532.148,2565.09 532.148,2560.3 511.733,2560.3 " />
<svg:polygon detid="436580612" count="1" value="126" id="4207049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 pos   module  1   Id 436580612 " fill="rgb(255,5,0)" points="511.733,2560.3 532.148,2560.3 532.148,2555.51 511.733,2555.51 " />
<svg:polygon detid="436580868" count="1" value="126" id="4207050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 pos   module  1   Id 436580868 " fill="rgb(255,5,0)" points="511.733,2555.51 532.148,2555.51 532.148,2550.72 511.733,2550.72 " />
<svg:polygon detid="436581124" count="1" value="126" id="4207051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 pos   module  1   Id 436581124 " fill="rgb(255,5,0)" points="511.733,2550.72 532.148,2550.72 532.148,2545.93 511.733,2545.93 " />
<svg:polygon detid="436581380" count="1" value="126" id="4207052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 pos   module  1   Id 436581380 " fill="rgb(255,5,0)" points="511.733,2545.93 532.148,2545.93 532.148,2541.14 511.733,2541.14 " />
<svg:polygon detid="436581636" count="1" value="126" id="4207053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 pos   module  1   Id 436581636 " fill="rgb(255,5,0)" points="511.733,2541.14 532.148,2541.14 532.148,2536.35 511.733,2536.35 " />
<svg:polygon detid="436581892" count="1" value="126" id="4207054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 pos   module  1   Id 436581892 " fill="rgb(255,5,0)" points="511.733,2536.35 532.148,2536.35 532.148,2531.56 511.733,2531.56 " />
<svg:polygon detid="436582148" count="1" value="126" id="4207055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 pos   module  1   Id 436582148 " fill="rgb(255,5,0)" points="511.733,2531.56 532.148,2531.56 532.148,2526.76 511.733,2526.76 " />
<svg:polygon detid="436582404" count="1" value="126" id="4207056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 pos   module  1   Id 436582404 " fill="rgb(255,5,0)" points="511.733,2526.76 532.148,2526.76 532.148,2521.97 511.733,2521.97 " />
<svg:polygon detid="436582660" count="1" value="126" id="4207057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 pos   module  1   Id 436582660 " fill="rgb(255,5,0)" points="511.733,2521.97 532.148,2521.97 532.148,2517.18 511.733,2517.18 " />
<svg:polygon detid="436582916" count="1" value="126" id="4207058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 pos   module  1   Id 436582916 " fill="rgb(255,5,0)" points="511.733,2517.18 532.148,2517.18 532.148,2512.39 511.733,2512.39 " />
<svg:polygon detid="436583172" count="1" value="126" id="4207059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 pos   module  1   Id 436583172 " fill="rgb(255,5,0)" points="511.733,2512.39 532.148,2512.39 532.148,2507.6 511.733,2507.6 " />
<svg:polygon detid="436583428" count="1" value="126" id="4207060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 pos   module  1   Id 436583428 " fill="rgb(255,5,0)" points="511.733,2507.6 532.148,2507.6 532.148,2502.81 511.733,2502.81 " />
<svg:polygon detid="436583684" count="1" value="126" id="4207061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 pos   module  1   Id 436583684 " fill="rgb(255,5,0)" points="511.733,2502.81 532.148,2502.81 532.148,2498.02 511.733,2498.02 " />
<svg:polygon detid="436583940" count="1" value="126" id="4207062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 pos   module  1   Id 436583940 " fill="rgb(255,5,0)" points="511.733,2498.02 532.148,2498.02 532.148,2493.23 511.733,2493.23 " />
<svg:polygon detid="436584196" count="1" value="126" id="4207063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 pos   module  1   Id 436584196 " fill="rgb(255,5,0)" points="511.733,2493.23 532.148,2493.23 532.148,2488.44 511.733,2488.44 " />
<svg:polygon detid="436584452" count="1" value="126" id="4207064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 pos   module  1   Id 436584452 " fill="rgb(255,5,0)" points="511.733,2488.44 532.148,2488.44 532.148,2483.65 511.733,2483.65 " />
<svg:polygon detid="436584708" count="1" value="126" id="4207065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 pos   module  1   Id 436584708 " fill="rgb(255,5,0)" points="511.733,2483.65 532.148,2483.65 532.148,2478.85 511.733,2478.85 " />
<svg:polygon detid="436584964" count="1" value="126" id="4207066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 pos   module  1   Id 436584964 " fill="rgb(255,5,0)" points="511.733,2478.85 532.148,2478.85 532.148,2474.06 511.733,2474.06 " />
<svg:polygon detid="436568328" count="1" value="126" id="4208001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 pos   module  2   Id 436568328 " fill="rgb(255,5,0)" points="534.7,2790.27 555.115,2790.27 555.115,2785.48 534.7,2785.48 " />
<svg:polygon detid="436568584" count="1" value="126" id="4208002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 pos   module  2   Id 436568584 " fill="rgb(255,5,0)" points="534.7,2785.48 555.115,2785.48 555.115,2780.69 534.7,2780.69 " />
<svg:polygon detid="436568840" count="1" value="126" id="4208003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 pos   module  2   Id 436568840 " fill="rgb(255,5,0)" points="534.7,2780.69 555.115,2780.69 555.115,2775.9 534.7,2775.9 " />
<svg:polygon detid="436569096" count="1" value="126" id="4208004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 pos   module  2   Id 436569096 " fill="rgb(255,5,0)" points="534.7,2775.9 555.115,2775.9 555.115,2771.11 534.7,2771.11 " />
<svg:polygon detid="436569352" count="1" value="126" id="4208005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 pos   module  2   Id 436569352 " fill="rgb(255,5,0)" points="534.7,2771.11 555.115,2771.11 555.115,2766.32 534.7,2766.32 " />
<svg:polygon detid="436569608" count="1" value="126" id="4208006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 pos   module  2   Id 436569608 " fill="rgb(255,5,0)" points="534.7,2766.32 555.115,2766.32 555.115,2761.52 534.7,2761.52 " />
<svg:polygon detid="436569864" count="1" value="126" id="4208007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 pos   module  2   Id 436569864 " fill="rgb(255,5,0)" points="534.7,2761.52 555.115,2761.52 555.115,2756.73 534.7,2756.73 " />
<svg:polygon detid="436570120" count="1" value="126" id="4208008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 pos   module  2   Id 436570120 " fill="rgb(255,5,0)" points="534.7,2756.73 555.115,2756.73 555.115,2751.94 534.7,2751.94 " />
<svg:polygon detid="436570376" count="1" value="126" id="4208009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 pos   module  2   Id 436570376 " fill="rgb(255,5,0)" points="534.7,2751.94 555.115,2751.94 555.115,2747.15 534.7,2747.15 " />
<svg:polygon detid="436570632" count="1" value="126" id="4208010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 pos   module  2   Id 436570632 " fill="rgb(255,5,0)" points="534.7,2747.15 555.115,2747.15 555.115,2742.36 534.7,2742.36 " />
<svg:polygon detid="436570888" count="1" value="126" id="4208011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 pos   module  2   Id 436570888 " fill="rgb(255,5,0)" points="534.7,2742.36 555.115,2742.36 555.115,2737.57 534.7,2737.57 " />
<svg:polygon detid="436571144" count="1" value="126" id="4208012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 pos   module  2   Id 436571144 " fill="rgb(255,5,0)" points="534.7,2737.57 555.115,2737.57 555.115,2732.78 534.7,2732.78 " />
<svg:polygon detid="436571400" count="1" value="126" id="4208013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 pos   module  2   Id 436571400 " fill="rgb(255,5,0)" points="534.7,2732.78 555.115,2732.78 555.115,2727.99 534.7,2727.99 " />
<svg:polygon detid="436571656" count="1" value="126" id="4208014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 pos   module  2   Id 436571656 " fill="rgb(255,5,0)" points="534.7,2727.99 555.115,2727.99 555.115,2723.2 534.7,2723.2 " />
<svg:polygon detid="436571912" count="1" value="126" id="4208015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 pos   module  2   Id 436571912 " fill="rgb(255,5,0)" points="534.7,2723.2 555.115,2723.2 555.115,2718.41 534.7,2718.41 " />
<svg:polygon detid="436572168" count="1" value="126" id="4208016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 pos   module  2   Id 436572168 " fill="rgb(255,5,0)" points="534.7,2718.41 555.115,2718.41 555.115,2713.61 534.7,2713.61 " />
<svg:polygon detid="436572424" count="1" value="126" id="4208017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 pos   module  2   Id 436572424 " fill="rgb(255,5,0)" points="534.7,2713.61 555.115,2713.61 555.115,2708.82 534.7,2708.82 " />
<svg:polygon detid="436572680" count="1" value="126" id="4208018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 pos   module  2   Id 436572680 " fill="rgb(255,5,0)" points="534.7,2708.82 555.115,2708.82 555.115,2704.03 534.7,2704.03 " />
<svg:polygon detid="436572936" count="1" value="126" id="4208019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 pos   module  2   Id 436572936 " fill="rgb(255,5,0)" points="534.7,2704.03 555.115,2704.03 555.115,2699.24 534.7,2699.24 " />
<svg:polygon detid="436573192" count="1" value="126" id="4208020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 pos   module  2   Id 436573192 " fill="rgb(255,5,0)" points="534.7,2699.24 555.115,2699.24 555.115,2694.45 534.7,2694.45 " />
<svg:polygon detid="436573448" count="1" value="126" id="4208021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 pos   module  2   Id 436573448 " fill="rgb(255,5,0)" points="534.7,2694.45 555.115,2694.45 555.115,2689.66 534.7,2689.66 " />
<svg:polygon detid="436573704" count="1" value="126" id="4208022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 pos   module  2   Id 436573704 " fill="rgb(255,5,0)" points="534.7,2689.66 555.115,2689.66 555.115,2684.87 534.7,2684.87 " />
<svg:polygon detid="436573960" count="1" value="126" id="4208023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 pos   module  2   Id 436573960 " fill="rgb(255,5,0)" points="534.7,2684.87 555.115,2684.87 555.115,2680.08 534.7,2680.08 " />
<svg:polygon detid="436574216" count="1" value="126" id="4208024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 pos   module  2   Id 436574216 " fill="rgb(255,5,0)" points="534.7,2680.08 555.115,2680.08 555.115,2675.29 534.7,2675.29 " />
<svg:polygon detid="436574472" count="1" value="126" id="4208025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 pos   module  2   Id 436574472 " fill="rgb(255,5,0)" points="534.7,2675.29 555.115,2675.29 555.115,2670.5 534.7,2670.5 " />
<svg:polygon detid="436574728" count="1" value="126" id="4208026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 pos   module  2   Id 436574728 " fill="rgb(255,5,0)" points="534.7,2670.5 555.115,2670.5 555.115,2665.7 534.7,2665.7 " />
<svg:polygon detid="436574984" count="1" value="126" id="4208027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 pos   module  2   Id 436574984 " fill="rgb(255,5,0)" points="534.7,2665.7 555.115,2665.7 555.115,2660.91 534.7,2660.91 " />
<svg:polygon detid="436575240" count="1" value="126" id="4208028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 pos   module  2   Id 436575240 " fill="rgb(255,5,0)" points="534.7,2660.91 555.115,2660.91 555.115,2656.12 534.7,2656.12 " />
<svg:polygon detid="436575496" count="1" value="126" id="4208029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 pos   module  2   Id 436575496 " fill="rgb(255,5,0)" points="534.7,2656.12 555.115,2656.12 555.115,2651.33 534.7,2651.33 " />
<svg:polygon detid="436575752" count="1" value="126" id="4208030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 pos   module  2   Id 436575752 " fill="rgb(255,5,0)" points="534.7,2651.33 555.115,2651.33 555.115,2646.54 534.7,2646.54 " />
<svg:polygon detid="436576008" count="1" value="126" id="4208031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 pos   module  2   Id 436576008 " fill="rgb(255,5,0)" points="534.7,2646.54 555.115,2646.54 555.115,2641.75 534.7,2641.75 " />
<svg:polygon detid="436576264" count="1" value="126" id="4208032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 pos   module  2   Id 436576264 " fill="rgb(255,5,0)" points="534.7,2641.75 555.115,2641.75 555.115,2636.96 534.7,2636.96 " />
<svg:polygon detid="436576520" count="1" value="126" id="4208033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 pos   module  2   Id 436576520 " fill="rgb(255,5,0)" points="534.7,2636.96 555.115,2636.96 555.115,2632.17 534.7,2632.17 " />
<svg:polygon detid="436576776" count="1" value="126" id="4208034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 pos   module  2   Id 436576776 " fill="rgb(255,5,0)" points="534.7,2632.17 555.115,2632.17 555.115,2627.38 534.7,2627.38 " />
<svg:polygon detid="436577032" count="1" value="126" id="4208035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 pos   module  2   Id 436577032 " fill="rgb(255,5,0)" points="534.7,2627.38 555.115,2627.38 555.115,2622.59 534.7,2622.59 " />
<svg:polygon detid="436577288" count="1" value="126" id="4208036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 pos   module  2   Id 436577288 " fill="rgb(255,5,0)" points="534.7,2622.59 555.115,2622.59 555.115,2617.79 534.7,2617.79 " />
<svg:polygon detid="436577544" count="1" value="126" id="4208037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 pos   module  2   Id 436577544 " fill="rgb(255,5,0)" points="534.7,2617.79 555.115,2617.79 555.115,2613 534.7,2613 " />
<svg:polygon detid="436577800" count="1" value="126" id="4208038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 pos   module  2   Id 436577800 " fill="rgb(255,5,0)" points="534.7,2613 555.115,2613 555.115,2608.21 534.7,2608.21 " />
<svg:polygon detid="436578056" count="1" value="126" id="4208039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 pos   module  2   Id 436578056 " fill="rgb(255,5,0)" points="534.7,2608.21 555.115,2608.21 555.115,2603.42 534.7,2603.42 " />
<svg:polygon detid="436578312" count="1" value="126" id="4208040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 pos   module  2   Id 436578312 " fill="rgb(255,5,0)" points="534.7,2603.42 555.115,2603.42 555.115,2598.63 534.7,2598.63 " />
<svg:polygon detid="436578568" count="1" value="126" id="4208041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 pos   module  2   Id 436578568 " fill="rgb(255,5,0)" points="534.7,2598.63 555.115,2598.63 555.115,2593.84 534.7,2593.84 " />
<svg:polygon detid="436578824" count="1" value="126" id="4208042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 pos   module  2   Id 436578824 " fill="rgb(255,5,0)" points="534.7,2593.84 555.115,2593.84 555.115,2589.05 534.7,2589.05 " />
<svg:polygon detid="436579080" count="1" value="126" id="4208043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 pos   module  2   Id 436579080 " fill="rgb(255,5,0)" points="534.7,2589.05 555.115,2589.05 555.115,2584.26 534.7,2584.26 " />
<svg:polygon detid="436579336" count="1" value="126" id="4208044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 pos   module  2   Id 436579336 " fill="rgb(255,5,0)" points="534.7,2584.26 555.115,2584.26 555.115,2579.47 534.7,2579.47 " />
<svg:polygon detid="436579592" count="1" value="126" id="4208045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 pos   module  2   Id 436579592 " fill="rgb(255,5,0)" points="534.7,2579.47 555.115,2579.47 555.115,2574.67 534.7,2574.67 " />
<svg:polygon detid="436579848" count="1" value="126" id="4208046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 pos   module  2   Id 436579848 " fill="rgb(255,5,0)" points="534.7,2574.67 555.115,2574.67 555.115,2569.88 534.7,2569.88 " />
<svg:polygon detid="436580104" count="1" value="126" id="4208047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 pos   module  2   Id 436580104 " fill="rgb(255,5,0)" points="534.7,2569.88 555.115,2569.88 555.115,2565.09 534.7,2565.09 " />
<svg:polygon detid="436580360" count="1" value="126" id="4208048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 pos   module  2   Id 436580360 " fill="rgb(255,5,0)" points="534.7,2565.09 555.115,2565.09 555.115,2560.3 534.7,2560.3 " />
<svg:polygon detid="436580616" count="1" value="126" id="4208049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 pos   module  2   Id 436580616 " fill="rgb(255,5,0)" points="534.7,2560.3 555.115,2560.3 555.115,2555.51 534.7,2555.51 " />
<svg:polygon detid="436580872" count="1" value="126" id="4208050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 pos   module  2   Id 436580872 " fill="rgb(255,5,0)" points="534.7,2555.51 555.115,2555.51 555.115,2550.72 534.7,2550.72 " />
<svg:polygon detid="436581128" count="1" value="126" id="4208051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 pos   module  2   Id 436581128 " fill="rgb(255,5,0)" points="534.7,2550.72 555.115,2550.72 555.115,2545.93 534.7,2545.93 " />
<svg:polygon detid="436581384" count="1" value="126" id="4208052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 pos   module  2   Id 436581384 " fill="rgb(255,5,0)" points="534.7,2545.93 555.115,2545.93 555.115,2541.14 534.7,2541.14 " />
<svg:polygon detid="436581640" count="1" value="126" id="4208053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 pos   module  2   Id 436581640 " fill="rgb(255,5,0)" points="534.7,2541.14 555.115,2541.14 555.115,2536.35 534.7,2536.35 " />
<svg:polygon detid="436581896" count="1" value="126" id="4208054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 pos   module  2   Id 436581896 " fill="rgb(255,5,0)" points="534.7,2536.35 555.115,2536.35 555.115,2531.56 534.7,2531.56 " />
<svg:polygon detid="436582152" count="1" value="126" id="4208055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 pos   module  2   Id 436582152 " fill="rgb(255,5,0)" points="534.7,2531.56 555.115,2531.56 555.115,2526.76 534.7,2526.76 " />
<svg:polygon detid="436582408" count="1" value="126" id="4208056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 pos   module  2   Id 436582408 " fill="rgb(255,5,0)" points="534.7,2526.76 555.115,2526.76 555.115,2521.97 534.7,2521.97 " />
<svg:polygon detid="436582664" count="1" value="126" id="4208057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 pos   module  2   Id 436582664 " fill="rgb(255,5,0)" points="534.7,2521.97 555.115,2521.97 555.115,2517.18 534.7,2517.18 " />
<svg:polygon detid="436582920" count="1" value="126" id="4208058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 pos   module  2   Id 436582920 " fill="rgb(255,5,0)" points="534.7,2517.18 555.115,2517.18 555.115,2512.39 534.7,2512.39 " />
<svg:polygon detid="436583176" count="1" value="126" id="4208059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 pos   module  2   Id 436583176 " fill="rgb(255,5,0)" points="534.7,2512.39 555.115,2512.39 555.115,2507.6 534.7,2507.6 " />
<svg:polygon detid="436583432" count="1" value="126" id="4208060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 pos   module  2   Id 436583432 " fill="rgb(255,5,0)" points="534.7,2507.6 555.115,2507.6 555.115,2502.81 534.7,2502.81 " />
<svg:polygon detid="436583688" count="1" value="126" id="4208061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 pos   module  2   Id 436583688 " fill="rgb(255,5,0)" points="534.7,2502.81 555.115,2502.81 555.115,2498.02 534.7,2498.02 " />
<svg:polygon detid="436583944" count="1" value="126" id="4208062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 pos   module  2   Id 436583944 " fill="rgb(255,5,0)" points="534.7,2498.02 555.115,2498.02 555.115,2493.23 534.7,2493.23 " />
<svg:polygon detid="436584200" count="1" value="126" id="4208063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 pos   module  2   Id 436584200 " fill="rgb(255,5,0)" points="534.7,2493.23 555.115,2493.23 555.115,2488.44 534.7,2488.44 " />
<svg:polygon detid="436584456" count="1" value="126" id="4208064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 pos   module  2   Id 436584456 " fill="rgb(255,5,0)" points="534.7,2488.44 555.115,2488.44 555.115,2483.65 534.7,2483.65 " />
<svg:polygon detid="436584712" count="1" value="126" id="4208065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 pos   module  2   Id 436584712 " fill="rgb(255,5,0)" points="534.7,2483.65 555.115,2483.65 555.115,2478.85 534.7,2478.85 " />
<svg:polygon detid="436584968" count="1" value="126" id="4208066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 pos   module  2   Id 436584968 " fill="rgb(255,5,0)" points="534.7,2478.85 555.115,2478.85 555.115,2474.06 534.7,2474.06 " />
<svg:polygon detid="436568332" count="1" value="126" id="4209001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 pos   module  3   Id 436568332 " fill="rgb(255,5,0)" points="557.667,2790.27 578.081,2790.27 578.081,2785.48 557.667,2785.48 " />
<svg:polygon detid="436568588" count="1" value="126" id="4209002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 pos   module  3   Id 436568588 " fill="rgb(255,5,0)" points="557.667,2785.48 578.081,2785.48 578.081,2780.69 557.667,2780.69 " />
<svg:polygon detid="436568844" count="1" value="126" id="4209003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 pos   module  3   Id 436568844 " fill="rgb(255,5,0)" points="557.667,2780.69 578.081,2780.69 578.081,2775.9 557.667,2775.9 " />
<svg:polygon detid="436569100" count="1" value="126" id="4209004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 pos   module  3   Id 436569100 " fill="rgb(255,5,0)" points="557.667,2775.9 578.081,2775.9 578.081,2771.11 557.667,2771.11 " />
<svg:polygon detid="436569356" count="1" value="126" id="4209005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 pos   module  3   Id 436569356 " fill="rgb(255,5,0)" points="557.667,2771.11 578.081,2771.11 578.081,2766.32 557.667,2766.32 " />
<svg:polygon detid="436569612" count="1" value="126" id="4209006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 pos   module  3   Id 436569612 " fill="rgb(255,5,0)" points="557.667,2766.32 578.081,2766.32 578.081,2761.52 557.667,2761.52 " />
<svg:polygon detid="436569868" count="1" value="126" id="4209007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 pos   module  3   Id 436569868 " fill="rgb(255,5,0)" points="557.667,2761.52 578.081,2761.52 578.081,2756.73 557.667,2756.73 " />
<svg:polygon detid="436570124" count="1" value="126" id="4209008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 pos   module  3   Id 436570124 " fill="rgb(255,5,0)" points="557.667,2756.73 578.081,2756.73 578.081,2751.94 557.667,2751.94 " />
<svg:polygon detid="436570380" count="1" value="126" id="4209009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 pos   module  3   Id 436570380 " fill="rgb(255,5,0)" points="557.667,2751.94 578.081,2751.94 578.081,2747.15 557.667,2747.15 " />
<svg:polygon detid="436570636" count="1" value="126" id="4209010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 pos   module  3   Id 436570636 " fill="rgb(255,5,0)" points="557.667,2747.15 578.081,2747.15 578.081,2742.36 557.667,2742.36 " />
<svg:polygon detid="436570892" count="1" value="126" id="4209011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 pos   module  3   Id 436570892 " fill="rgb(255,5,0)" points="557.667,2742.36 578.081,2742.36 578.081,2737.57 557.667,2737.57 " />
<svg:polygon detid="436571148" count="1" value="126" id="4209012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 pos   module  3   Id 436571148 " fill="rgb(255,5,0)" points="557.667,2737.57 578.081,2737.57 578.081,2732.78 557.667,2732.78 " />
<svg:polygon detid="436571404" count="1" value="126" id="4209013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 pos   module  3   Id 436571404 " fill="rgb(255,5,0)" points="557.667,2732.78 578.081,2732.78 578.081,2727.99 557.667,2727.99 " />
<svg:polygon detid="436571660" count="1" value="126" id="4209014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 pos   module  3   Id 436571660 " fill="rgb(255,5,0)" points="557.667,2727.99 578.081,2727.99 578.081,2723.2 557.667,2723.2 " />
<svg:polygon detid="436571916" count="1" value="126" id="4209015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 pos   module  3   Id 436571916 " fill="rgb(255,5,0)" points="557.667,2723.2 578.081,2723.2 578.081,2718.41 557.667,2718.41 " />
<svg:polygon detid="436572172" count="1" value="126" id="4209016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 pos   module  3   Id 436572172 " fill="rgb(255,5,0)" points="557.667,2718.41 578.081,2718.41 578.081,2713.61 557.667,2713.61 " />
<svg:polygon detid="436572428" count="1" value="126" id="4209017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 pos   module  3   Id 436572428 " fill="rgb(255,5,0)" points="557.667,2713.61 578.081,2713.61 578.081,2708.82 557.667,2708.82 " />
<svg:polygon detid="436572684" count="1" value="126" id="4209018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 pos   module  3   Id 436572684 " fill="rgb(255,5,0)" points="557.667,2708.82 578.081,2708.82 578.081,2704.03 557.667,2704.03 " />
<svg:polygon detid="436572940" count="1" value="126" id="4209019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 pos   module  3   Id 436572940 " fill="rgb(255,5,0)" points="557.667,2704.03 578.081,2704.03 578.081,2699.24 557.667,2699.24 " />
<svg:polygon detid="436573196" count="1" value="126" id="4209020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 pos   module  3   Id 436573196 " fill="rgb(255,5,0)" points="557.667,2699.24 578.081,2699.24 578.081,2694.45 557.667,2694.45 " />
<svg:polygon detid="436573452" count="1" value="126" id="4209021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 pos   module  3   Id 436573452 " fill="rgb(255,5,0)" points="557.667,2694.45 578.081,2694.45 578.081,2689.66 557.667,2689.66 " />
<svg:polygon detid="436573708" count="1" value="126" id="4209022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 pos   module  3   Id 436573708 " fill="rgb(255,5,0)" points="557.667,2689.66 578.081,2689.66 578.081,2684.87 557.667,2684.87 " />
<svg:polygon detid="436573964" count="1" value="126" id="4209023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 pos   module  3   Id 436573964 " fill="rgb(255,5,0)" points="557.667,2684.87 578.081,2684.87 578.081,2680.08 557.667,2680.08 " />
<svg:polygon detid="436574220" count="1" value="126" id="4209024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 pos   module  3   Id 436574220 " fill="rgb(255,5,0)" points="557.667,2680.08 578.081,2680.08 578.081,2675.29 557.667,2675.29 " />
<svg:polygon detid="436574476" count="1" value="126" id="4209025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 pos   module  3   Id 436574476 " fill="rgb(255,5,0)" points="557.667,2675.29 578.081,2675.29 578.081,2670.5 557.667,2670.5 " />
<svg:polygon detid="436574732" count="1" value="126" id="4209026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 pos   module  3   Id 436574732 " fill="rgb(255,5,0)" points="557.667,2670.5 578.081,2670.5 578.081,2665.7 557.667,2665.7 " />
<svg:polygon detid="436574988" count="1" value="126" id="4209027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 pos   module  3   Id 436574988 " fill="rgb(255,5,0)" points="557.667,2665.7 578.081,2665.7 578.081,2660.91 557.667,2660.91 " />
<svg:polygon detid="436575244" count="1" value="126" id="4209028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 pos   module  3   Id 436575244 " fill="rgb(255,5,0)" points="557.667,2660.91 578.081,2660.91 578.081,2656.12 557.667,2656.12 " />
<svg:polygon detid="436575500" count="1" value="126" id="4209029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 pos   module  3   Id 436575500 " fill="rgb(255,5,0)" points="557.667,2656.12 578.081,2656.12 578.081,2651.33 557.667,2651.33 " />
<svg:polygon detid="436575756" count="1" value="126" id="4209030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 pos   module  3   Id 436575756 " fill="rgb(255,5,0)" points="557.667,2651.33 578.081,2651.33 578.081,2646.54 557.667,2646.54 " />
<svg:polygon detid="436576012" count="1" value="126" id="4209031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 pos   module  3   Id 436576012 " fill="rgb(255,5,0)" points="557.667,2646.54 578.081,2646.54 578.081,2641.75 557.667,2641.75 " />
<svg:polygon detid="436576268" count="1" value="126" id="4209032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 pos   module  3   Id 436576268 " fill="rgb(255,5,0)" points="557.667,2641.75 578.081,2641.75 578.081,2636.96 557.667,2636.96 " />
<svg:polygon detid="436576524" count="1" value="126" id="4209033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 pos   module  3   Id 436576524 " fill="rgb(255,5,0)" points="557.667,2636.96 578.081,2636.96 578.081,2632.17 557.667,2632.17 " />
<svg:polygon detid="436576780" count="1" value="126" id="4209034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 pos   module  3   Id 436576780 " fill="rgb(255,5,0)" points="557.667,2632.17 578.081,2632.17 578.081,2627.38 557.667,2627.38 " />
<svg:polygon detid="436577036" count="1" value="126" id="4209035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 pos   module  3   Id 436577036 " fill="rgb(255,5,0)" points="557.667,2627.38 578.081,2627.38 578.081,2622.59 557.667,2622.59 " />
<svg:polygon detid="436577292" count="1" value="126" id="4209036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 pos   module  3   Id 436577292 " fill="rgb(255,5,0)" points="557.667,2622.59 578.081,2622.59 578.081,2617.79 557.667,2617.79 " />
<svg:polygon detid="436577548" count="1" value="126" id="4209037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 pos   module  3   Id 436577548 " fill="rgb(255,5,0)" points="557.667,2617.79 578.081,2617.79 578.081,2613 557.667,2613 " />
<svg:polygon detid="436577804" count="1" value="126" id="4209038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 pos   module  3   Id 436577804 " fill="rgb(255,5,0)" points="557.667,2613 578.081,2613 578.081,2608.21 557.667,2608.21 " />
<svg:polygon detid="436578060" count="1" value="126" id="4209039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 pos   module  3   Id 436578060 " fill="rgb(255,5,0)" points="557.667,2608.21 578.081,2608.21 578.081,2603.42 557.667,2603.42 " />
<svg:polygon detid="436578316" count="1" value="126" id="4209040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 pos   module  3   Id 436578316 " fill="rgb(255,5,0)" points="557.667,2603.42 578.081,2603.42 578.081,2598.63 557.667,2598.63 " />
<svg:polygon detid="436578572" count="1" value="126" id="4209041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 pos   module  3   Id 436578572 " fill="rgb(255,5,0)" points="557.667,2598.63 578.081,2598.63 578.081,2593.84 557.667,2593.84 " />
<svg:polygon detid="436578828" count="1" value="126" id="4209042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 pos   module  3   Id 436578828 " fill="rgb(255,5,0)" points="557.667,2593.84 578.081,2593.84 578.081,2589.05 557.667,2589.05 " />
<svg:polygon detid="436579084" count="1" value="126" id="4209043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 pos   module  3   Id 436579084 " fill="rgb(255,5,0)" points="557.667,2589.05 578.081,2589.05 578.081,2584.26 557.667,2584.26 " />
<svg:polygon detid="436579340" count="1" value="126" id="4209044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 pos   module  3   Id 436579340 " fill="rgb(255,5,0)" points="557.667,2584.26 578.081,2584.26 578.081,2579.47 557.667,2579.47 " />
<svg:polygon detid="436579596" count="1" value="126" id="4209045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 pos   module  3   Id 436579596 " fill="rgb(255,5,0)" points="557.667,2579.47 578.081,2579.47 578.081,2574.67 557.667,2574.67 " />
<svg:polygon detid="436579852" count="1" value="126" id="4209046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 pos   module  3   Id 436579852 " fill="rgb(255,5,0)" points="557.667,2574.67 578.081,2574.67 578.081,2569.88 557.667,2569.88 " />
<svg:polygon detid="436580108" count="1" value="126" id="4209047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 pos   module  3   Id 436580108 " fill="rgb(255,5,0)" points="557.667,2569.88 578.081,2569.88 578.081,2565.09 557.667,2565.09 " />
<svg:polygon detid="436580364" count="1" value="126" id="4209048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 pos   module  3   Id 436580364 " fill="rgb(255,5,0)" points="557.667,2565.09 578.081,2565.09 578.081,2560.3 557.667,2560.3 " />
<svg:polygon detid="436580620" count="1" value="126" id="4209049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 pos   module  3   Id 436580620 " fill="rgb(255,5,0)" points="557.667,2560.3 578.081,2560.3 578.081,2555.51 557.667,2555.51 " />
<svg:polygon detid="436580876" count="1" value="126" id="4209050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 pos   module  3   Id 436580876 " fill="rgb(255,5,0)" points="557.667,2555.51 578.081,2555.51 578.081,2550.72 557.667,2550.72 " />
<svg:polygon detid="436581132" count="1" value="126" id="4209051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 pos   module  3   Id 436581132 " fill="rgb(255,5,0)" points="557.667,2550.72 578.081,2550.72 578.081,2545.93 557.667,2545.93 " />
<svg:polygon detid="436581388" count="1" value="126" id="4209052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 pos   module  3   Id 436581388 " fill="rgb(255,5,0)" points="557.667,2545.93 578.081,2545.93 578.081,2541.14 557.667,2541.14 " />
<svg:polygon detid="436581644" count="1" value="126" id="4209053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 pos   module  3   Id 436581644 " fill="rgb(255,5,0)" points="557.667,2541.14 578.081,2541.14 578.081,2536.35 557.667,2536.35 " />
<svg:polygon detid="436581900" count="1" value="126" id="4209054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 pos   module  3   Id 436581900 " fill="rgb(255,5,0)" points="557.667,2536.35 578.081,2536.35 578.081,2531.56 557.667,2531.56 " />
<svg:polygon detid="436582156" count="1" value="126" id="4209055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 pos   module  3   Id 436582156 " fill="rgb(255,5,0)" points="557.667,2531.56 578.081,2531.56 578.081,2526.76 557.667,2526.76 " />
<svg:polygon detid="436582412" count="1" value="126" id="4209056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 pos   module  3   Id 436582412 " fill="rgb(255,5,0)" points="557.667,2526.76 578.081,2526.76 578.081,2521.97 557.667,2521.97 " />
<svg:polygon detid="436582668" count="1" value="126" id="4209057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 pos   module  3   Id 436582668 " fill="rgb(255,5,0)" points="557.667,2521.97 578.081,2521.97 578.081,2517.18 557.667,2517.18 " />
<svg:polygon detid="436582924" count="1" value="126" id="4209058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 pos   module  3   Id 436582924 " fill="rgb(255,5,0)" points="557.667,2517.18 578.081,2517.18 578.081,2512.39 557.667,2512.39 " />
<svg:polygon detid="436583180" count="1" value="126" id="4209059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 pos   module  3   Id 436583180 " fill="rgb(255,5,0)" points="557.667,2512.39 578.081,2512.39 578.081,2507.6 557.667,2507.6 " />
<svg:polygon detid="436583436" count="1" value="126" id="4209060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 pos   module  3   Id 436583436 " fill="rgb(255,5,0)" points="557.667,2507.6 578.081,2507.6 578.081,2502.81 557.667,2502.81 " />
<svg:polygon detid="436583692" count="1" value="126" id="4209061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 pos   module  3   Id 436583692 " fill="rgb(255,5,0)" points="557.667,2502.81 578.081,2502.81 578.081,2498.02 557.667,2498.02 " />
<svg:polygon detid="436583948" count="1" value="126" id="4209062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 pos   module  3   Id 436583948 " fill="rgb(255,5,0)" points="557.667,2498.02 578.081,2498.02 578.081,2493.23 557.667,2493.23 " />
<svg:polygon detid="436584204" count="1" value="126" id="4209063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 pos   module  3   Id 436584204 " fill="rgb(255,5,0)" points="557.667,2493.23 578.081,2493.23 578.081,2488.44 557.667,2488.44 " />
<svg:polygon detid="436584460" count="1" value="126" id="4209064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 pos   module  3   Id 436584460 " fill="rgb(255,5,0)" points="557.667,2488.44 578.081,2488.44 578.081,2483.65 557.667,2483.65 " />
<svg:polygon detid="436584716" count="1" value="126" id="4209065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 pos   module  3   Id 436584716 " fill="rgb(255,5,0)" points="557.667,2483.65 578.081,2483.65 578.081,2478.85 557.667,2478.85 " />
<svg:polygon detid="436584972" count="1" value="126" id="4209066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 pos   module  3   Id 436584972 " fill="rgb(255,5,0)" points="557.667,2478.85 578.081,2478.85 578.081,2474.06 557.667,2474.06 " />
<svg:polygon detid="436568336" count="1" value="126" id="4210001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 pos   module  4   Id 436568336 " fill="rgb(255,5,0)" points="580.633,2790.27 601.048,2790.27 601.048,2785.48 580.633,2785.48 " />
<svg:polygon detid="436568592" count="1" value="126" id="4210002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 pos   module  4   Id 436568592 " fill="rgb(255,5,0)" points="580.633,2785.48 601.048,2785.48 601.048,2780.69 580.633,2780.69 " />
<svg:polygon detid="436568848" count="1" value="126" id="4210003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 pos   module  4   Id 436568848 " fill="rgb(255,5,0)" points="580.633,2780.69 601.048,2780.69 601.048,2775.9 580.633,2775.9 " />
<svg:polygon detid="436569104" count="1" value="126" id="4210004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 pos   module  4   Id 436569104 " fill="rgb(255,5,0)" points="580.633,2775.9 601.048,2775.9 601.048,2771.11 580.633,2771.11 " />
<svg:polygon detid="436569360" count="1" value="126" id="4210005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 pos   module  4   Id 436569360 " fill="rgb(255,5,0)" points="580.633,2771.11 601.048,2771.11 601.048,2766.32 580.633,2766.32 " />
<svg:polygon detid="436569616" count="1" value="126" id="4210006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 pos   module  4   Id 436569616 " fill="rgb(255,5,0)" points="580.633,2766.32 601.048,2766.32 601.048,2761.52 580.633,2761.52 " />
<svg:polygon detid="436569872" count="1" value="126" id="4210007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 pos   module  4   Id 436569872 " fill="rgb(255,5,0)" points="580.633,2761.52 601.048,2761.52 601.048,2756.73 580.633,2756.73 " />
<svg:polygon detid="436570128" count="1" value="126" id="4210008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 pos   module  4   Id 436570128 " fill="rgb(255,5,0)" points="580.633,2756.73 601.048,2756.73 601.048,2751.94 580.633,2751.94 " />
<svg:polygon detid="436570384" count="1" value="126" id="4210009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 pos   module  4   Id 436570384 " fill="rgb(255,5,0)" points="580.633,2751.94 601.048,2751.94 601.048,2747.15 580.633,2747.15 " />
<svg:polygon detid="436570640" count="1" value="126" id="4210010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 pos   module  4   Id 436570640 " fill="rgb(255,5,0)" points="580.633,2747.15 601.048,2747.15 601.048,2742.36 580.633,2742.36 " />
<svg:polygon detid="436570896" count="1" value="126" id="4210011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 pos   module  4   Id 436570896 " fill="rgb(255,5,0)" points="580.633,2742.36 601.048,2742.36 601.048,2737.57 580.633,2737.57 " />
<svg:polygon detid="436571152" count="1" value="126" id="4210012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 pos   module  4   Id 436571152 " fill="rgb(255,5,0)" points="580.633,2737.57 601.048,2737.57 601.048,2732.78 580.633,2732.78 " />
<svg:polygon detid="436571408" count="1" value="126" id="4210013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 pos   module  4   Id 436571408 " fill="rgb(255,5,0)" points="580.633,2732.78 601.048,2732.78 601.048,2727.99 580.633,2727.99 " />
<svg:polygon detid="436571664" count="1" value="126" id="4210014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 pos   module  4   Id 436571664 " fill="rgb(255,5,0)" points="580.633,2727.99 601.048,2727.99 601.048,2723.2 580.633,2723.2 " />
<svg:polygon detid="436571920" count="1" value="126" id="4210015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 pos   module  4   Id 436571920 " fill="rgb(255,5,0)" points="580.633,2723.2 601.048,2723.2 601.048,2718.41 580.633,2718.41 " />
<svg:polygon detid="436572176" count="1" value="126" id="4210016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 pos   module  4   Id 436572176 " fill="rgb(255,5,0)" points="580.633,2718.41 601.048,2718.41 601.048,2713.61 580.633,2713.61 " />
<svg:polygon detid="436572432" count="1" value="126" id="4210017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 pos   module  4   Id 436572432 " fill="rgb(255,5,0)" points="580.633,2713.61 601.048,2713.61 601.048,2708.82 580.633,2708.82 " />
<svg:polygon detid="436572688" count="1" value="126" id="4210018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 pos   module  4   Id 436572688 " fill="rgb(255,5,0)" points="580.633,2708.82 601.048,2708.82 601.048,2704.03 580.633,2704.03 " />
<svg:polygon detid="436572944" count="1" value="126" id="4210019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 pos   module  4   Id 436572944 " fill="rgb(255,5,0)" points="580.633,2704.03 601.048,2704.03 601.048,2699.24 580.633,2699.24 " />
<svg:polygon detid="436573200" count="1" value="126" id="4210020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 pos   module  4   Id 436573200 " fill="rgb(255,5,0)" points="580.633,2699.24 601.048,2699.24 601.048,2694.45 580.633,2694.45 " />
<svg:polygon detid="436573456" count="1" value="126" id="4210021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 pos   module  4   Id 436573456 " fill="rgb(255,5,0)" points="580.633,2694.45 601.048,2694.45 601.048,2689.66 580.633,2689.66 " />
<svg:polygon detid="436573712" count="1" value="126" id="4210022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 pos   module  4   Id 436573712 " fill="rgb(255,5,0)" points="580.633,2689.66 601.048,2689.66 601.048,2684.87 580.633,2684.87 " />
<svg:polygon detid="436573968" count="1" value="126" id="4210023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 pos   module  4   Id 436573968 " fill="rgb(255,5,0)" points="580.633,2684.87 601.048,2684.87 601.048,2680.08 580.633,2680.08 " />
<svg:polygon detid="436574224" count="1" value="126" id="4210024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 pos   module  4   Id 436574224 " fill="rgb(255,5,0)" points="580.633,2680.08 601.048,2680.08 601.048,2675.29 580.633,2675.29 " />
<svg:polygon detid="436574480" count="1" value="126" id="4210025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 pos   module  4   Id 436574480 " fill="rgb(255,5,0)" points="580.633,2675.29 601.048,2675.29 601.048,2670.5 580.633,2670.5 " />
<svg:polygon detid="436574736" count="1" value="126" id="4210026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 pos   module  4   Id 436574736 " fill="rgb(255,5,0)" points="580.633,2670.5 601.048,2670.5 601.048,2665.7 580.633,2665.7 " />
<svg:polygon detid="436574992" count="1" value="126" id="4210027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 pos   module  4   Id 436574992 " fill="rgb(255,5,0)" points="580.633,2665.7 601.048,2665.7 601.048,2660.91 580.633,2660.91 " />
<svg:polygon detid="436575248" count="1" value="126" id="4210028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 pos   module  4   Id 436575248 " fill="rgb(255,5,0)" points="580.633,2660.91 601.048,2660.91 601.048,2656.12 580.633,2656.12 " />
<svg:polygon detid="436575504" count="1" value="126" id="4210029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 pos   module  4   Id 436575504 " fill="rgb(255,5,0)" points="580.633,2656.12 601.048,2656.12 601.048,2651.33 580.633,2651.33 " />
<svg:polygon detid="436575760" count="1" value="126" id="4210030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 pos   module  4   Id 436575760 " fill="rgb(255,5,0)" points="580.633,2651.33 601.048,2651.33 601.048,2646.54 580.633,2646.54 " />
<svg:polygon detid="436576016" count="1" value="126" id="4210031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 pos   module  4   Id 436576016 " fill="rgb(255,5,0)" points="580.633,2646.54 601.048,2646.54 601.048,2641.75 580.633,2641.75 " />
<svg:polygon detid="436576272" count="1" value="126" id="4210032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 pos   module  4   Id 436576272 " fill="rgb(255,5,0)" points="580.633,2641.75 601.048,2641.75 601.048,2636.96 580.633,2636.96 " />
<svg:polygon detid="436576528" count="1" value="126" id="4210033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 pos   module  4   Id 436576528 " fill="rgb(255,5,0)" points="580.633,2636.96 601.048,2636.96 601.048,2632.17 580.633,2632.17 " />
<svg:polygon detid="436576784" count="1" value="126" id="4210034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 pos   module  4   Id 436576784 " fill="rgb(255,5,0)" points="580.633,2632.17 601.048,2632.17 601.048,2627.38 580.633,2627.38 " />
<svg:polygon detid="436577040" count="1" value="126" id="4210035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 pos   module  4   Id 436577040 " fill="rgb(255,5,0)" points="580.633,2627.38 601.048,2627.38 601.048,2622.59 580.633,2622.59 " />
<svg:polygon detid="436577296" count="1" value="126" id="4210036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 pos   module  4   Id 436577296 " fill="rgb(255,5,0)" points="580.633,2622.59 601.048,2622.59 601.048,2617.79 580.633,2617.79 " />
<svg:polygon detid="436577552" count="1" value="126" id="4210037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 pos   module  4   Id 436577552 " fill="rgb(255,5,0)" points="580.633,2617.79 601.048,2617.79 601.048,2613 580.633,2613 " />
<svg:polygon detid="436577808" count="1" value="126" id="4210038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 pos   module  4   Id 436577808 " fill="rgb(255,5,0)" points="580.633,2613 601.048,2613 601.048,2608.21 580.633,2608.21 " />
<svg:polygon detid="436578064" count="1" value="126" id="4210039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 pos   module  4   Id 436578064 " fill="rgb(255,5,0)" points="580.633,2608.21 601.048,2608.21 601.048,2603.42 580.633,2603.42 " />
<svg:polygon detid="436578320" count="1" value="126" id="4210040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 pos   module  4   Id 436578320 " fill="rgb(255,5,0)" points="580.633,2603.42 601.048,2603.42 601.048,2598.63 580.633,2598.63 " />
<svg:polygon detid="436578576" count="1" value="126" id="4210041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 pos   module  4   Id 436578576 " fill="rgb(255,5,0)" points="580.633,2598.63 601.048,2598.63 601.048,2593.84 580.633,2593.84 " />
<svg:polygon detid="436578832" count="1" value="126" id="4210042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 pos   module  4   Id 436578832 " fill="rgb(255,5,0)" points="580.633,2593.84 601.048,2593.84 601.048,2589.05 580.633,2589.05 " />
<svg:polygon detid="436579088" count="1" value="126" id="4210043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 pos   module  4   Id 436579088 " fill="rgb(255,5,0)" points="580.633,2589.05 601.048,2589.05 601.048,2584.26 580.633,2584.26 " />
<svg:polygon detid="436579344" count="1" value="126" id="4210044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 pos   module  4   Id 436579344 " fill="rgb(255,5,0)" points="580.633,2584.26 601.048,2584.26 601.048,2579.47 580.633,2579.47 " />
<svg:polygon detid="436579600" count="1" value="126" id="4210045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 pos   module  4   Id 436579600 " fill="rgb(255,5,0)" points="580.633,2579.47 601.048,2579.47 601.048,2574.67 580.633,2574.67 " />
<svg:polygon detid="436579856" count="1" value="126" id="4210046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 pos   module  4   Id 436579856 " fill="rgb(255,5,0)" points="580.633,2574.67 601.048,2574.67 601.048,2569.88 580.633,2569.88 " />
<svg:polygon detid="436580112" count="1" value="126" id="4210047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 pos   module  4   Id 436580112 " fill="rgb(255,5,0)" points="580.633,2569.88 601.048,2569.88 601.048,2565.09 580.633,2565.09 " />
<svg:polygon detid="436580368" count="1" value="126" id="4210048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 pos   module  4   Id 436580368 " fill="rgb(255,5,0)" points="580.633,2565.09 601.048,2565.09 601.048,2560.3 580.633,2560.3 " />
<svg:polygon detid="436580624" count="1" value="126" id="4210049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 pos   module  4   Id 436580624 " fill="rgb(255,5,0)" points="580.633,2560.3 601.048,2560.3 601.048,2555.51 580.633,2555.51 " />
<svg:polygon detid="436580880" count="1" value="126" id="4210050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 pos   module  4   Id 436580880 " fill="rgb(255,5,0)" points="580.633,2555.51 601.048,2555.51 601.048,2550.72 580.633,2550.72 " />
<svg:polygon detid="436581136" count="1" value="126" id="4210051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 pos   module  4   Id 436581136 " fill="rgb(255,5,0)" points="580.633,2550.72 601.048,2550.72 601.048,2545.93 580.633,2545.93 " />
<svg:polygon detid="436581392" count="1" value="126" id="4210052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 pos   module  4   Id 436581392 " fill="rgb(255,5,0)" points="580.633,2545.93 601.048,2545.93 601.048,2541.14 580.633,2541.14 " />
<svg:polygon detid="436581648" count="1" value="126" id="4210053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 pos   module  4   Id 436581648 " fill="rgb(255,5,0)" points="580.633,2541.14 601.048,2541.14 601.048,2536.35 580.633,2536.35 " />
<svg:polygon detid="436581904" count="1" value="126" id="4210054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 pos   module  4   Id 436581904 " fill="rgb(255,5,0)" points="580.633,2536.35 601.048,2536.35 601.048,2531.56 580.633,2531.56 " />
<svg:polygon detid="436582160" count="1" value="126" id="4210055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 pos   module  4   Id 436582160 " fill="rgb(255,5,0)" points="580.633,2531.56 601.048,2531.56 601.048,2526.76 580.633,2526.76 " />
<svg:polygon detid="436582416" count="1" value="126" id="4210056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 pos   module  4   Id 436582416 " fill="rgb(255,5,0)" points="580.633,2526.76 601.048,2526.76 601.048,2521.97 580.633,2521.97 " />
<svg:polygon detid="436582672" count="1" value="126" id="4210057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 pos   module  4   Id 436582672 " fill="rgb(255,5,0)" points="580.633,2521.97 601.048,2521.97 601.048,2517.18 580.633,2517.18 " />
<svg:polygon detid="436582928" count="1" value="126" id="4210058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 pos   module  4   Id 436582928 " fill="rgb(255,5,0)" points="580.633,2517.18 601.048,2517.18 601.048,2512.39 580.633,2512.39 " />
<svg:polygon detid="436583184" count="1" value="126" id="4210059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 pos   module  4   Id 436583184 " fill="rgb(255,5,0)" points="580.633,2512.39 601.048,2512.39 601.048,2507.6 580.633,2507.6 " />
<svg:polygon detid="436583440" count="1" value="126" id="4210060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 pos   module  4   Id 436583440 " fill="rgb(255,5,0)" points="580.633,2507.6 601.048,2507.6 601.048,2502.81 580.633,2502.81 " />
<svg:polygon detid="436583696" count="1" value="126" id="4210061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 pos   module  4   Id 436583696 " fill="rgb(255,5,0)" points="580.633,2502.81 601.048,2502.81 601.048,2498.02 580.633,2498.02 " />
<svg:polygon detid="436583952" count="1" value="126" id="4210062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 pos   module  4   Id 436583952 " fill="rgb(255,5,0)" points="580.633,2498.02 601.048,2498.02 601.048,2493.23 580.633,2493.23 " />
<svg:polygon detid="436584208" count="1" value="126" id="4210063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 pos   module  4   Id 436584208 " fill="rgb(255,5,0)" points="580.633,2493.23 601.048,2493.23 601.048,2488.44 580.633,2488.44 " />
<svg:polygon detid="436584464" count="1" value="126" id="4210064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 pos   module  4   Id 436584464 " fill="rgb(255,5,0)" points="580.633,2488.44 601.048,2488.44 601.048,2483.65 580.633,2483.65 " />
<svg:polygon detid="436584720" count="1" value="126" id="4210065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 pos   module  4   Id 436584720 " fill="rgb(255,5,0)" points="580.633,2483.65 601.048,2483.65 601.048,2478.85 580.633,2478.85 " />
<svg:polygon detid="436584976" count="1" value="126" id="4210066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 pos   module  4   Id 436584976 " fill="rgb(255,5,0)" points="580.633,2478.85 601.048,2478.85 601.048,2474.06 580.633,2474.06 " />
<svg:polygon detid="436568340" count="1" value="126" id="4211001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 pos   module  5   Id 436568340 " fill="rgb(255,5,0)" points="603.6,2790.27 624.014,2790.27 624.014,2785.48 603.6,2785.48 " />
<svg:polygon detid="436568596" count="1" value="126" id="4211002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 pos   module  5   Id 436568596 " fill="rgb(255,5,0)" points="603.6,2785.48 624.014,2785.48 624.014,2780.69 603.6,2780.69 " />
<svg:polygon detid="436568852" count="1" value="126" id="4211003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 pos   module  5   Id 436568852 " fill="rgb(255,5,0)" points="603.6,2780.69 624.014,2780.69 624.014,2775.9 603.6,2775.9 " />
<svg:polygon detid="436569108" count="1" value="126" id="4211004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 pos   module  5   Id 436569108 " fill="rgb(255,5,0)" points="603.6,2775.9 624.014,2775.9 624.014,2771.11 603.6,2771.11 " />
<svg:polygon detid="436569364" count="1" value="126" id="4211005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 pos   module  5   Id 436569364 " fill="rgb(255,5,0)" points="603.6,2771.11 624.014,2771.11 624.014,2766.32 603.6,2766.32 " />
<svg:polygon detid="436569620" count="1" value="126" id="4211006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 pos   module  5   Id 436569620 " fill="rgb(255,5,0)" points="603.6,2766.32 624.014,2766.32 624.014,2761.52 603.6,2761.52 " />
<svg:polygon detid="436569876" count="1" value="126" id="4211007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 pos   module  5   Id 436569876 " fill="rgb(255,5,0)" points="603.6,2761.52 624.014,2761.52 624.014,2756.73 603.6,2756.73 " />
<svg:polygon detid="436570132" count="1" value="126" id="4211008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 pos   module  5   Id 436570132 " fill="rgb(255,5,0)" points="603.6,2756.73 624.014,2756.73 624.014,2751.94 603.6,2751.94 " />
<svg:polygon detid="436570388" count="1" value="126" id="4211009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 pos   module  5   Id 436570388 " fill="rgb(255,5,0)" points="603.6,2751.94 624.014,2751.94 624.014,2747.15 603.6,2747.15 " />
<svg:polygon detid="436570644" count="1" value="126" id="4211010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 pos   module  5   Id 436570644 " fill="rgb(255,5,0)" points="603.6,2747.15 624.014,2747.15 624.014,2742.36 603.6,2742.36 " />
<svg:polygon detid="436570900" count="1" value="126" id="4211011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 pos   module  5   Id 436570900 " fill="rgb(255,5,0)" points="603.6,2742.36 624.014,2742.36 624.014,2737.57 603.6,2737.57 " />
<svg:polygon detid="436571156" count="1" value="126" id="4211012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 pos   module  5   Id 436571156 " fill="rgb(255,5,0)" points="603.6,2737.57 624.014,2737.57 624.014,2732.78 603.6,2732.78 " />
<svg:polygon detid="436571412" count="1" value="126" id="4211013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 pos   module  5   Id 436571412 " fill="rgb(255,5,0)" points="603.6,2732.78 624.014,2732.78 624.014,2727.99 603.6,2727.99 " />
<svg:polygon detid="436571668" count="1" value="126" id="4211014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 pos   module  5   Id 436571668 " fill="rgb(255,5,0)" points="603.6,2727.99 624.014,2727.99 624.014,2723.2 603.6,2723.2 " />
<svg:polygon detid="436571924" count="1" value="126" id="4211015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 pos   module  5   Id 436571924 " fill="rgb(255,5,0)" points="603.6,2723.2 624.014,2723.2 624.014,2718.41 603.6,2718.41 " />
<svg:polygon detid="436572180" count="1" value="126" id="4211016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 pos   module  5   Id 436572180 " fill="rgb(255,5,0)" points="603.6,2718.41 624.014,2718.41 624.014,2713.61 603.6,2713.61 " />
<svg:polygon detid="436572436" count="1" value="126" id="4211017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 pos   module  5   Id 436572436 " fill="rgb(255,5,0)" points="603.6,2713.61 624.014,2713.61 624.014,2708.82 603.6,2708.82 " />
<svg:polygon detid="436572692" count="1" value="126" id="4211018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 pos   module  5   Id 436572692 " fill="rgb(255,5,0)" points="603.6,2708.82 624.014,2708.82 624.014,2704.03 603.6,2704.03 " />
<svg:polygon detid="436572948" count="1" value="126" id="4211019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 pos   module  5   Id 436572948 " fill="rgb(255,5,0)" points="603.6,2704.03 624.014,2704.03 624.014,2699.24 603.6,2699.24 " />
<svg:polygon detid="436573204" count="1" value="126" id="4211020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 pos   module  5   Id 436573204 " fill="rgb(255,5,0)" points="603.6,2699.24 624.014,2699.24 624.014,2694.45 603.6,2694.45 " />
<svg:polygon detid="436573460" count="1" value="126" id="4211021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 pos   module  5   Id 436573460 " fill="rgb(255,5,0)" points="603.6,2694.45 624.014,2694.45 624.014,2689.66 603.6,2689.66 " />
<svg:polygon detid="436573716" count="1" value="126" id="4211022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 pos   module  5   Id 436573716 " fill="rgb(255,5,0)" points="603.6,2689.66 624.014,2689.66 624.014,2684.87 603.6,2684.87 " />
<svg:polygon detid="436573972" count="1" value="126" id="4211023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 pos   module  5   Id 436573972 " fill="rgb(255,5,0)" points="603.6,2684.87 624.014,2684.87 624.014,2680.08 603.6,2680.08 " />
<svg:polygon detid="436574228" count="1" value="126" id="4211024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 pos   module  5   Id 436574228 " fill="rgb(255,5,0)" points="603.6,2680.08 624.014,2680.08 624.014,2675.29 603.6,2675.29 " />
<svg:polygon detid="436574484" count="1" value="126" id="4211025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 pos   module  5   Id 436574484 " fill="rgb(255,5,0)" points="603.6,2675.29 624.014,2675.29 624.014,2670.5 603.6,2670.5 " />
<svg:polygon detid="436574740" count="1" value="126" id="4211026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 pos   module  5   Id 436574740 " fill="rgb(255,5,0)" points="603.6,2670.5 624.014,2670.5 624.014,2665.7 603.6,2665.7 " />
<svg:polygon detid="436574996" count="1" value="126" id="4211027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 pos   module  5   Id 436574996 " fill="rgb(255,5,0)" points="603.6,2665.7 624.014,2665.7 624.014,2660.91 603.6,2660.91 " />
<svg:polygon detid="436575252" count="1" value="126" id="4211028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 pos   module  5   Id 436575252 " fill="rgb(255,5,0)" points="603.6,2660.91 624.014,2660.91 624.014,2656.12 603.6,2656.12 " />
<svg:polygon detid="436575508" count="1" value="126" id="4211029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 pos   module  5   Id 436575508 " fill="rgb(255,5,0)" points="603.6,2656.12 624.014,2656.12 624.014,2651.33 603.6,2651.33 " />
<svg:polygon detid="436575764" count="1" value="126" id="4211030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 pos   module  5   Id 436575764 " fill="rgb(255,5,0)" points="603.6,2651.33 624.014,2651.33 624.014,2646.54 603.6,2646.54 " />
<svg:polygon detid="436576020" count="1" value="126" id="4211031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 pos   module  5   Id 436576020 " fill="rgb(255,5,0)" points="603.6,2646.54 624.014,2646.54 624.014,2641.75 603.6,2641.75 " />
<svg:polygon detid="436576276" count="1" value="126" id="4211032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 pos   module  5   Id 436576276 " fill="rgb(255,5,0)" points="603.6,2641.75 624.014,2641.75 624.014,2636.96 603.6,2636.96 " />
<svg:polygon detid="436576532" count="1" value="126" id="4211033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 pos   module  5   Id 436576532 " fill="rgb(255,5,0)" points="603.6,2636.96 624.014,2636.96 624.014,2632.17 603.6,2632.17 " />
<svg:polygon detid="436576788" count="1" value="126" id="4211034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 pos   module  5   Id 436576788 " fill="rgb(255,5,0)" points="603.6,2632.17 624.014,2632.17 624.014,2627.38 603.6,2627.38 " />
<svg:polygon detid="436577044" count="1" value="126" id="4211035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 pos   module  5   Id 436577044 " fill="rgb(255,5,0)" points="603.6,2627.38 624.014,2627.38 624.014,2622.59 603.6,2622.59 " />
<svg:polygon detid="436577300" count="1" value="126" id="4211036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 pos   module  5   Id 436577300 " fill="rgb(255,5,0)" points="603.6,2622.59 624.014,2622.59 624.014,2617.79 603.6,2617.79 " />
<svg:polygon detid="436577556" count="1" value="126" id="4211037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 pos   module  5   Id 436577556 " fill="rgb(255,5,0)" points="603.6,2617.79 624.014,2617.79 624.014,2613 603.6,2613 " />
<svg:polygon detid="436577812" count="1" value="126" id="4211038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 pos   module  5   Id 436577812 " fill="rgb(255,5,0)" points="603.6,2613 624.014,2613 624.014,2608.21 603.6,2608.21 " />
<svg:polygon detid="436578068" count="1" value="126" id="4211039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 pos   module  5   Id 436578068 " fill="rgb(255,5,0)" points="603.6,2608.21 624.014,2608.21 624.014,2603.42 603.6,2603.42 " />
<svg:polygon detid="436578324" count="1" value="126" id="4211040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 pos   module  5   Id 436578324 " fill="rgb(255,5,0)" points="603.6,2603.42 624.014,2603.42 624.014,2598.63 603.6,2598.63 " />
<svg:polygon detid="436578580" count="1" value="126" id="4211041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 pos   module  5   Id 436578580 " fill="rgb(255,5,0)" points="603.6,2598.63 624.014,2598.63 624.014,2593.84 603.6,2593.84 " />
<svg:polygon detid="436578836" count="1" value="126" id="4211042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 pos   module  5   Id 436578836 " fill="rgb(255,5,0)" points="603.6,2593.84 624.014,2593.84 624.014,2589.05 603.6,2589.05 " />
<svg:polygon detid="436579092" count="1" value="126" id="4211043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 pos   module  5   Id 436579092 " fill="rgb(255,5,0)" points="603.6,2589.05 624.014,2589.05 624.014,2584.26 603.6,2584.26 " />
<svg:polygon detid="436579348" count="1" value="126" id="4211044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 pos   module  5   Id 436579348 " fill="rgb(255,5,0)" points="603.6,2584.26 624.014,2584.26 624.014,2579.47 603.6,2579.47 " />
<svg:polygon detid="436579604" count="1" value="126" id="4211045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 pos   module  5   Id 436579604 " fill="rgb(255,5,0)" points="603.6,2579.47 624.014,2579.47 624.014,2574.67 603.6,2574.67 " />
<svg:polygon detid="436579860" count="1" value="126" id="4211046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 pos   module  5   Id 436579860 " fill="rgb(255,5,0)" points="603.6,2574.67 624.014,2574.67 624.014,2569.88 603.6,2569.88 " />
<svg:polygon detid="436580116" count="1" value="126" id="4211047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 pos   module  5   Id 436580116 " fill="rgb(255,5,0)" points="603.6,2569.88 624.014,2569.88 624.014,2565.09 603.6,2565.09 " />
<svg:polygon detid="436580372" count="1" value="126" id="4211048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 pos   module  5   Id 436580372 " fill="rgb(255,5,0)" points="603.6,2565.09 624.014,2565.09 624.014,2560.3 603.6,2560.3 " />
<svg:polygon detid="436580628" count="1" value="126" id="4211049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 pos   module  5   Id 436580628 " fill="rgb(255,5,0)" points="603.6,2560.3 624.014,2560.3 624.014,2555.51 603.6,2555.51 " />
<svg:polygon detid="436580884" count="1" value="126" id="4211050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 pos   module  5   Id 436580884 " fill="rgb(255,5,0)" points="603.6,2555.51 624.014,2555.51 624.014,2550.72 603.6,2550.72 " />
<svg:polygon detid="436581140" count="1" value="126" id="4211051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 pos   module  5   Id 436581140 " fill="rgb(255,5,0)" points="603.6,2550.72 624.014,2550.72 624.014,2545.93 603.6,2545.93 " />
<svg:polygon detid="436581396" count="1" value="126" id="4211052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 pos   module  5   Id 436581396 " fill="rgb(255,5,0)" points="603.6,2545.93 624.014,2545.93 624.014,2541.14 603.6,2541.14 " />
<svg:polygon detid="436581652" count="1" value="126" id="4211053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 pos   module  5   Id 436581652 " fill="rgb(255,5,0)" points="603.6,2541.14 624.014,2541.14 624.014,2536.35 603.6,2536.35 " />
<svg:polygon detid="436581908" count="1" value="126" id="4211054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 pos   module  5   Id 436581908 " fill="rgb(255,5,0)" points="603.6,2536.35 624.014,2536.35 624.014,2531.56 603.6,2531.56 " />
<svg:polygon detid="436582164" count="1" value="126" id="4211055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 pos   module  5   Id 436582164 " fill="rgb(255,5,0)" points="603.6,2531.56 624.014,2531.56 624.014,2526.76 603.6,2526.76 " />
<svg:polygon detid="436582420" count="1" value="126" id="4211056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 pos   module  5   Id 436582420 " fill="rgb(255,5,0)" points="603.6,2526.76 624.014,2526.76 624.014,2521.97 603.6,2521.97 " />
<svg:polygon detid="436582676" count="1" value="126" id="4211057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 pos   module  5   Id 436582676 " fill="rgb(255,5,0)" points="603.6,2521.97 624.014,2521.97 624.014,2517.18 603.6,2517.18 " />
<svg:polygon detid="436582932" count="1" value="126" id="4211058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 pos   module  5   Id 436582932 " fill="rgb(255,5,0)" points="603.6,2517.18 624.014,2517.18 624.014,2512.39 603.6,2512.39 " />
<svg:polygon detid="436583188" count="1" value="126" id="4211059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 pos   module  5   Id 436583188 " fill="rgb(255,5,0)" points="603.6,2512.39 624.014,2512.39 624.014,2507.6 603.6,2507.6 " />
<svg:polygon detid="436583444" count="1" value="126" id="4211060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 pos   module  5   Id 436583444 " fill="rgb(255,5,0)" points="603.6,2507.6 624.014,2507.6 624.014,2502.81 603.6,2502.81 " />
<svg:polygon detid="436583700" count="1" value="126" id="4211061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 pos   module  5   Id 436583700 " fill="rgb(255,5,0)" points="603.6,2502.81 624.014,2502.81 624.014,2498.02 603.6,2498.02 " />
<svg:polygon detid="436583956" count="1" value="126" id="4211062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 pos   module  5   Id 436583956 " fill="rgb(255,5,0)" points="603.6,2498.02 624.014,2498.02 624.014,2493.23 603.6,2493.23 " />
<svg:polygon detid="436584212" count="1" value="126" id="4211063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 pos   module  5   Id 436584212 " fill="rgb(255,5,0)" points="603.6,2493.23 624.014,2493.23 624.014,2488.44 603.6,2488.44 " />
<svg:polygon detid="436584468" count="1" value="126" id="4211064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 pos   module  5   Id 436584468 " fill="rgb(255,5,0)" points="603.6,2488.44 624.014,2488.44 624.014,2483.65 603.6,2483.65 " />
<svg:polygon detid="436584724" count="1" value="126" id="4211065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 pos   module  5   Id 436584724 " fill="rgb(255,5,0)" points="603.6,2483.65 624.014,2483.65 624.014,2478.85 603.6,2478.85 " />
<svg:polygon detid="436584980" count="1" value="126" id="4211066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 pos   module  5   Id 436584980 " fill="rgb(255,5,0)" points="603.6,2478.85 624.014,2478.85 624.014,2474.06 603.6,2474.06 " />
<svg:polygon detid="436568344" count="1" value="126" id="4212001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 1 pos   module  6   Id 436568344 " fill="rgb(255,5,0)" points="626.566,2790.27 646.981,2790.27 646.981,2785.48 626.566,2785.48 " />
<svg:polygon detid="436568600" count="1" value="126" id="4212002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 2 pos   module  6   Id 436568600 " fill="rgb(255,5,0)" points="626.566,2785.48 646.981,2785.48 646.981,2780.69 626.566,2780.69 " />
<svg:polygon detid="436568856" count="1" value="126" id="4212003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 3 pos   module  6   Id 436568856 " fill="rgb(255,5,0)" points="626.566,2780.69 646.981,2780.69 646.981,2775.9 626.566,2775.9 " />
<svg:polygon detid="436569112" count="1" value="126" id="4212004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 4 pos   module  6   Id 436569112 " fill="rgb(255,5,0)" points="626.566,2775.9 646.981,2775.9 646.981,2771.11 626.566,2771.11 " />
<svg:polygon detid="436569368" count="1" value="126" id="4212005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 5 pos   module  6   Id 436569368 " fill="rgb(255,5,0)" points="626.566,2771.11 646.981,2771.11 646.981,2766.32 626.566,2766.32 " />
<svg:polygon detid="436569624" count="1" value="126" id="4212006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 6 pos   module  6   Id 436569624 " fill="rgb(255,5,0)" points="626.566,2766.32 646.981,2766.32 646.981,2761.52 626.566,2761.52 " />
<svg:polygon detid="436569880" count="1" value="126" id="4212007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 7 pos   module  6   Id 436569880 " fill="rgb(255,5,0)" points="626.566,2761.52 646.981,2761.52 646.981,2756.73 626.566,2756.73 " />
<svg:polygon detid="436570136" count="1" value="126" id="4212008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 8 pos   module  6   Id 436570136 " fill="rgb(255,5,0)" points="626.566,2756.73 646.981,2756.73 646.981,2751.94 626.566,2751.94 " />
<svg:polygon detid="436570392" count="1" value="126" id="4212009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 9 pos   module  6   Id 436570392 " fill="rgb(255,5,0)" points="626.566,2751.94 646.981,2751.94 646.981,2747.15 626.566,2747.15 " />
<svg:polygon detid="436570648" count="1" value="126" id="4212010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 10 pos   module  6   Id 436570648 " fill="rgb(255,5,0)" points="626.566,2747.15 646.981,2747.15 646.981,2742.36 626.566,2742.36 " />
<svg:polygon detid="436570904" count="1" value="126" id="4212011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 11 pos   module  6   Id 436570904 " fill="rgb(255,5,0)" points="626.566,2742.36 646.981,2742.36 646.981,2737.57 626.566,2737.57 " />
<svg:polygon detid="436571160" count="1" value="126" id="4212012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 12 pos   module  6   Id 436571160 " fill="rgb(255,5,0)" points="626.566,2737.57 646.981,2737.57 646.981,2732.78 626.566,2732.78 " />
<svg:polygon detid="436571416" count="1" value="126" id="4212013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 13 pos   module  6   Id 436571416 " fill="rgb(255,5,0)" points="626.566,2732.78 646.981,2732.78 646.981,2727.99 626.566,2727.99 " />
<svg:polygon detid="436571672" count="1" value="126" id="4212014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 14 pos   module  6   Id 436571672 " fill="rgb(255,5,0)" points="626.566,2727.99 646.981,2727.99 646.981,2723.2 626.566,2723.2 " />
<svg:polygon detid="436571928" count="1" value="126" id="4212015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 15 pos   module  6   Id 436571928 " fill="rgb(255,5,0)" points="626.566,2723.2 646.981,2723.2 646.981,2718.41 626.566,2718.41 " />
<svg:polygon detid="436572184" count="1" value="126" id="4212016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 16 pos   module  6   Id 436572184 " fill="rgb(255,5,0)" points="626.566,2718.41 646.981,2718.41 646.981,2713.61 626.566,2713.61 " />
<svg:polygon detid="436572440" count="1" value="126" id="4212017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 17 pos   module  6   Id 436572440 " fill="rgb(255,5,0)" points="626.566,2713.61 646.981,2713.61 646.981,2708.82 626.566,2708.82 " />
<svg:polygon detid="436572696" count="1" value="126" id="4212018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 18 pos   module  6   Id 436572696 " fill="rgb(255,5,0)" points="626.566,2708.82 646.981,2708.82 646.981,2704.03 626.566,2704.03 " />
<svg:polygon detid="436572952" count="1" value="126" id="4212019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 19 pos   module  6   Id 436572952 " fill="rgb(255,5,0)" points="626.566,2704.03 646.981,2704.03 646.981,2699.24 626.566,2699.24 " />
<svg:polygon detid="436573208" count="1" value="126" id="4212020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 20 pos   module  6   Id 436573208 " fill="rgb(255,5,0)" points="626.566,2699.24 646.981,2699.24 646.981,2694.45 626.566,2694.45 " />
<svg:polygon detid="436573464" count="1" value="126" id="4212021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 21 pos   module  6   Id 436573464 " fill="rgb(255,5,0)" points="626.566,2694.45 646.981,2694.45 646.981,2689.66 626.566,2689.66 " />
<svg:polygon detid="436573720" count="1" value="126" id="4212022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 22 pos   module  6   Id 436573720 " fill="rgb(255,5,0)" points="626.566,2689.66 646.981,2689.66 646.981,2684.87 626.566,2684.87 " />
<svg:polygon detid="436573976" count="1" value="126" id="4212023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 23 pos   module  6   Id 436573976 " fill="rgb(255,5,0)" points="626.566,2684.87 646.981,2684.87 646.981,2680.08 626.566,2680.08 " />
<svg:polygon detid="436574232" count="1" value="126" id="4212024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 24 pos   module  6   Id 436574232 " fill="rgb(255,5,0)" points="626.566,2680.08 646.981,2680.08 646.981,2675.29 626.566,2675.29 " />
<svg:polygon detid="436574488" count="1" value="126" id="4212025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 25 pos   module  6   Id 436574488 " fill="rgb(255,5,0)" points="626.566,2675.29 646.981,2675.29 646.981,2670.5 626.566,2670.5 " />
<svg:polygon detid="436574744" count="1" value="126" id="4212026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 26 pos   module  6   Id 436574744 " fill="rgb(255,5,0)" points="626.566,2670.5 646.981,2670.5 646.981,2665.7 626.566,2665.7 " />
<svg:polygon detid="436575000" count="1" value="126" id="4212027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 27 pos   module  6   Id 436575000 " fill="rgb(255,5,0)" points="626.566,2665.7 646.981,2665.7 646.981,2660.91 626.566,2660.91 " />
<svg:polygon detid="436575256" count="1" value="126" id="4212028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 28 pos   module  6   Id 436575256 " fill="rgb(255,5,0)" points="626.566,2660.91 646.981,2660.91 646.981,2656.12 626.566,2656.12 " />
<svg:polygon detid="436575512" count="1" value="126" id="4212029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 29 pos   module  6   Id 436575512 " fill="rgb(255,5,0)" points="626.566,2656.12 646.981,2656.12 646.981,2651.33 626.566,2651.33 " />
<svg:polygon detid="436575768" count="1" value="126" id="4212030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 30 pos   module  6   Id 436575768 " fill="rgb(255,5,0)" points="626.566,2651.33 646.981,2651.33 646.981,2646.54 626.566,2646.54 " />
<svg:polygon detid="436576024" count="1" value="126" id="4212031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 31 pos   module  6   Id 436576024 " fill="rgb(255,5,0)" points="626.566,2646.54 646.981,2646.54 646.981,2641.75 626.566,2641.75 " />
<svg:polygon detid="436576280" count="1" value="126" id="4212032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 32 pos   module  6   Id 436576280 " fill="rgb(255,5,0)" points="626.566,2641.75 646.981,2641.75 646.981,2636.96 626.566,2636.96 " />
<svg:polygon detid="436576536" count="1" value="126" id="4212033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 33 pos   module  6   Id 436576536 " fill="rgb(255,5,0)" points="626.566,2636.96 646.981,2636.96 646.981,2632.17 626.566,2632.17 " />
<svg:polygon detid="436576792" count="1" value="126" id="4212034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 34 pos   module  6   Id 436576792 " fill="rgb(255,5,0)" points="626.566,2632.17 646.981,2632.17 646.981,2627.38 626.566,2627.38 " />
<svg:polygon detid="436577048" count="1" value="126" id="4212035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 35 pos   module  6   Id 436577048 " fill="rgb(255,5,0)" points="626.566,2627.38 646.981,2627.38 646.981,2622.59 626.566,2622.59 " />
<svg:polygon detid="436577304" count="1" value="126" id="4212036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 36 pos   module  6   Id 436577304 " fill="rgb(255,5,0)" points="626.566,2622.59 646.981,2622.59 646.981,2617.79 626.566,2617.79 " />
<svg:polygon detid="436577560" count="1" value="126" id="4212037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 37 pos   module  6   Id 436577560 " fill="rgb(255,5,0)" points="626.566,2617.79 646.981,2617.79 646.981,2613 626.566,2613 " />
<svg:polygon detid="436577816" count="1" value="126" id="4212038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 38 pos   module  6   Id 436577816 " fill="rgb(255,5,0)" points="626.566,2613 646.981,2613 646.981,2608.21 626.566,2608.21 " />
<svg:polygon detid="436578072" count="1" value="126" id="4212039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 39 pos   module  6   Id 436578072 " fill="rgb(255,5,0)" points="626.566,2608.21 646.981,2608.21 646.981,2603.42 626.566,2603.42 " />
<svg:polygon detid="436578328" count="1" value="126" id="4212040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 40 pos   module  6   Id 436578328 " fill="rgb(255,5,0)" points="626.566,2603.42 646.981,2603.42 646.981,2598.63 626.566,2598.63 " />
<svg:polygon detid="436578584" count="1" value="126" id="4212041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 41 pos   module  6   Id 436578584 " fill="rgb(255,5,0)" points="626.566,2598.63 646.981,2598.63 646.981,2593.84 626.566,2593.84 " />
<svg:polygon detid="436578840" count="1" value="126" id="4212042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 42 pos   module  6   Id 436578840 " fill="rgb(255,5,0)" points="626.566,2593.84 646.981,2593.84 646.981,2589.05 626.566,2589.05 " />
<svg:polygon detid="436579096" count="1" value="126" id="4212043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 43 pos   module  6   Id 436579096 " fill="rgb(255,5,0)" points="626.566,2589.05 646.981,2589.05 646.981,2584.26 626.566,2584.26 " />
<svg:polygon detid="436579352" count="1" value="126" id="4212044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 44 pos   module  6   Id 436579352 " fill="rgb(255,5,0)" points="626.566,2584.26 646.981,2584.26 646.981,2579.47 626.566,2579.47 " />
<svg:polygon detid="436579608" count="1" value="126" id="4212045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 45 pos   module  6   Id 436579608 " fill="rgb(255,5,0)" points="626.566,2579.47 646.981,2579.47 646.981,2574.67 626.566,2574.67 " />
<svg:polygon detid="436579864" count="1" value="126" id="4212046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 46 pos   module  6   Id 436579864 " fill="rgb(255,5,0)" points="626.566,2574.67 646.981,2574.67 646.981,2569.88 626.566,2569.88 " />
<svg:polygon detid="436580120" count="1" value="126" id="4212047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 47 pos   module  6   Id 436580120 " fill="rgb(255,5,0)" points="626.566,2569.88 646.981,2569.88 646.981,2565.09 626.566,2565.09 " />
<svg:polygon detid="436580376" count="1" value="126" id="4212048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 48 pos   module  6   Id 436580376 " fill="rgb(255,5,0)" points="626.566,2565.09 646.981,2565.09 646.981,2560.3 626.566,2560.3 " />
<svg:polygon detid="436580632" count="1" value="126" id="4212049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 49 pos   module  6   Id 436580632 " fill="rgb(255,5,0)" points="626.566,2560.3 646.981,2560.3 646.981,2555.51 626.566,2555.51 " />
<svg:polygon detid="436580888" count="1" value="126" id="4212050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 50 pos   module  6   Id 436580888 " fill="rgb(255,5,0)" points="626.566,2555.51 646.981,2555.51 646.981,2550.72 626.566,2550.72 " />
<svg:polygon detid="436581144" count="1" value="126" id="4212051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 51 pos   module  6   Id 436581144 " fill="rgb(255,5,0)" points="626.566,2550.72 646.981,2550.72 646.981,2545.93 626.566,2545.93 " />
<svg:polygon detid="436581400" count="1" value="126" id="4212052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 52 pos   module  6   Id 436581400 " fill="rgb(255,5,0)" points="626.566,2545.93 646.981,2545.93 646.981,2541.14 626.566,2541.14 " />
<svg:polygon detid="436581656" count="1" value="126" id="4212053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 53 pos   module  6   Id 436581656 " fill="rgb(255,5,0)" points="626.566,2541.14 646.981,2541.14 646.981,2536.35 626.566,2536.35 " />
<svg:polygon detid="436581912" count="1" value="126" id="4212054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 54 pos   module  6   Id 436581912 " fill="rgb(255,5,0)" points="626.566,2536.35 646.981,2536.35 646.981,2531.56 626.566,2531.56 " />
<svg:polygon detid="436582168" count="1" value="126" id="4212055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 55 pos   module  6   Id 436582168 " fill="rgb(255,5,0)" points="626.566,2531.56 646.981,2531.56 646.981,2526.76 626.566,2526.76 " />
<svg:polygon detid="436582424" count="1" value="126" id="4212056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 56 pos   module  6   Id 436582424 " fill="rgb(255,5,0)" points="626.566,2526.76 646.981,2526.76 646.981,2521.97 626.566,2521.97 " />
<svg:polygon detid="436582680" count="1" value="126" id="4212057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 57 pos   module  6   Id 436582680 " fill="rgb(255,5,0)" points="626.566,2521.97 646.981,2521.97 646.981,2517.18 626.566,2517.18 " />
<svg:polygon detid="436582936" count="1" value="126" id="4212058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 58 pos   module  6   Id 436582936 " fill="rgb(255,5,0)" points="626.566,2517.18 646.981,2517.18 646.981,2512.39 626.566,2512.39 " />
<svg:polygon detid="436583192" count="1" value="126" id="4212059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 59 pos   module  6   Id 436583192 " fill="rgb(255,5,0)" points="626.566,2512.39 646.981,2512.39 646.981,2507.6 626.566,2507.6 " />
<svg:polygon detid="436583448" count="1" value="126" id="4212060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 60 pos   module  6   Id 436583448 " fill="rgb(255,5,0)" points="626.566,2507.6 646.981,2507.6 646.981,2502.81 626.566,2502.81 " />
<svg:polygon detid="436583704" count="1" value="126" id="4212061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 61 pos   module  6   Id 436583704 " fill="rgb(255,5,0)" points="626.566,2502.81 646.981,2502.81 646.981,2498.02 626.566,2498.02 " />
<svg:polygon detid="436583960" count="1" value="126" id="4212062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 62 pos   module  6   Id 436583960 " fill="rgb(255,5,0)" points="626.566,2498.02 646.981,2498.02 646.981,2493.23 626.566,2493.23 " />
<svg:polygon detid="436584216" count="1" value="126" id="4212063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 63 pos   module  6   Id 436584216 " fill="rgb(255,5,0)" points="626.566,2493.23 646.981,2493.23 646.981,2488.44 626.566,2488.44 " />
<svg:polygon detid="436584472" count="1" value="126" id="4212064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 64 pos   module  6   Id 436584472 " fill="rgb(255,5,0)" points="626.566,2488.44 646.981,2488.44 646.981,2483.65 626.566,2483.65 " />
<svg:polygon detid="436584728" count="1" value="126" id="4212065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 65 pos   module  6   Id 436584728 " fill="rgb(255,5,0)" points="626.566,2483.65 646.981,2483.65 646.981,2478.85 626.566,2478.85 " />
<svg:polygon detid="436584984" count="1" value="126" id="4212066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 5 rod 66 pos   module  6   Id 436584984 " fill="rgb(255,5,0)" points="626.566,2478.85 646.981,2478.85 646.981,2474.06 626.566,2474.06 " />
<svg:polygon detid="436601092" count="1" value="129" id="4301001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 neg   module  1   Id 436601092 " fill="rgb(255,0,0)" points="713.934,2790.78 734.349,2790.78 734.349,2786.5 713.934,2786.5 " />
<svg:polygon detid="436601348" count="1" value="129" id="4301002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 neg   module  1   Id 436601348 " fill="rgb(255,0,0)" points="713.934,2786.5 734.349,2786.5 734.349,2782.22 713.934,2782.22 " />
<svg:polygon detid="436601604" count="1" value="129" id="4301003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 neg   module  1   Id 436601604 " fill="rgb(255,0,0)" points="713.934,2782.22 734.349,2782.22 734.349,2777.94 713.934,2777.94 " />
<svg:polygon detid="436601860" count="1" value="129" id="4301004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 neg   module  1   Id 436601860 " fill="rgb(255,0,0)" points="713.934,2777.94 734.349,2777.94 734.349,2773.65 713.934,2773.65 " />
<svg:polygon detid="436602116" count="1" value="129" id="4301005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 neg   module  1   Id 436602116 " fill="rgb(255,0,0)" points="713.934,2773.65 734.349,2773.65 734.349,2769.37 713.934,2769.37 " />
<svg:polygon detid="436602372" count="1" value="129" id="4301006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 neg   module  1   Id 436602372 " fill="rgb(255,0,0)" points="713.934,2769.37 734.349,2769.37 734.349,2765.09 713.934,2765.09 " />
<svg:polygon detid="436602628" count="1" value="129" id="4301007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 neg   module  1   Id 436602628 " fill="rgb(255,0,0)" points="713.934,2765.09 734.349,2765.09 734.349,2760.81 713.934,2760.81 " />
<svg:polygon detid="436602884" count="1" value="129" id="4301008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 neg   module  1   Id 436602884 " fill="rgb(255,0,0)" points="713.934,2760.81 734.349,2760.81 734.349,2756.53 713.934,2756.53 " />
<svg:polygon detid="436603140" count="1" value="129" id="4301009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 neg   module  1   Id 436603140 " fill="rgb(255,0,0)" points="713.934,2756.53 734.349,2756.53 734.349,2752.25 713.934,2752.25 " />
<svg:polygon detid="436603396" count="1" value="129" id="4301010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 neg   module  1   Id 436603396 " fill="rgb(255,0,0)" points="713.934,2752.25 734.349,2752.25 734.349,2747.96 713.934,2747.96 " />
<svg:polygon detid="436603652" count="1" value="129" id="4301011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 neg   module  1   Id 436603652 " fill="rgb(255,0,0)" points="713.934,2747.96 734.349,2747.96 734.349,2743.68 713.934,2743.68 " />
<svg:polygon detid="436603908" count="1" value="129" id="4301012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 neg   module  1   Id 436603908 " fill="rgb(255,0,0)" points="713.934,2743.68 734.349,2743.68 734.349,2739.4 713.934,2739.4 " />
<svg:polygon detid="436604164" count="1" value="129" id="4301013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 neg   module  1   Id 436604164 " fill="rgb(255,0,0)" points="713.934,2739.4 734.349,2739.4 734.349,2735.12 713.934,2735.12 " />
<svg:polygon detid="436604420" count="1" value="129" id="4301014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 neg   module  1   Id 436604420 " fill="rgb(255,0,0)" points="713.934,2735.12 734.349,2735.12 734.349,2730.84 713.934,2730.84 " />
<svg:polygon detid="436604676" count="1" value="129" id="4301015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 neg   module  1   Id 436604676 " fill="rgb(255,0,0)" points="713.934,2730.84 734.349,2730.84 734.349,2726.56 713.934,2726.56 " />
<svg:polygon detid="436604932" count="1" value="129" id="4301016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 neg   module  1   Id 436604932 " fill="rgb(255,0,0)" points="713.934,2726.56 734.349,2726.56 734.349,2722.28 713.934,2722.28 " />
<svg:polygon detid="436605188" count="1" value="129" id="4301017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 neg   module  1   Id 436605188 " fill="rgb(255,0,0)" points="713.934,2722.28 734.349,2722.28 734.349,2717.99 713.934,2717.99 " />
<svg:polygon detid="436605444" count="1" value="129" id="4301018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 neg   module  1   Id 436605444 " fill="rgb(255,0,0)" points="713.934,2717.99 734.349,2717.99 734.349,2713.71 713.934,2713.71 " />
<svg:polygon detid="436605700" count="1" value="129" id="4301019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 neg   module  1   Id 436605700 " fill="rgb(255,0,0)" points="713.934,2713.71 734.349,2713.71 734.349,2709.43 713.934,2709.43 " />
<svg:polygon detid="436605956" count="1" value="129" id="4301020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 neg   module  1   Id 436605956 " fill="rgb(255,0,0)" points="713.934,2709.43 734.349,2709.43 734.349,2705.15 713.934,2705.15 " />
<svg:polygon detid="436606212" count="1" value="129" id="4301021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 neg   module  1   Id 436606212 " fill="rgb(255,0,0)" points="713.934,2705.15 734.349,2705.15 734.349,2700.87 713.934,2700.87 " />
<svg:polygon detid="436606468" count="1" value="129" id="4301022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 neg   module  1   Id 436606468 " fill="rgb(255,0,0)" points="713.934,2700.87 734.349,2700.87 734.349,2696.59 713.934,2696.59 " />
<svg:polygon detid="436606724" count="1" value="129" id="4301023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 neg   module  1   Id 436606724 " fill="rgb(255,0,0)" points="713.934,2696.59 734.349,2696.59 734.349,2692.3 713.934,2692.3 " />
<svg:polygon detid="436606980" count="1" value="129" id="4301024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 neg   module  1   Id 436606980 " fill="rgb(255,0,0)" points="713.934,2692.3 734.349,2692.3 734.349,2688.02 713.934,2688.02 " />
<svg:polygon detid="436607236" count="1" value="129" id="4301025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 neg   module  1   Id 436607236 " fill="rgb(255,0,0)" points="713.934,2688.02 734.349,2688.02 734.349,2683.74 713.934,2683.74 " />
<svg:polygon detid="436607492" count="1" value="129" id="4301026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 neg   module  1   Id 436607492 " fill="rgb(255,0,0)" points="713.934,2683.74 734.349,2683.74 734.349,2679.46 713.934,2679.46 " />
<svg:polygon detid="436607748" count="1" value="129" id="4301027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 neg   module  1   Id 436607748 " fill="rgb(255,0,0)" points="713.934,2679.46 734.349,2679.46 734.349,2675.18 713.934,2675.18 " />
<svg:polygon detid="436608004" count="1" value="129" id="4301028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 neg   module  1   Id 436608004 " fill="rgb(255,0,0)" points="713.934,2675.18 734.349,2675.18 734.349,2670.9 713.934,2670.9 " />
<svg:polygon detid="436608260" count="1" value="129" id="4301029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 neg   module  1   Id 436608260 " fill="rgb(255,0,0)" points="713.934,2670.9 734.349,2670.9 734.349,2666.62 713.934,2666.62 " />
<svg:polygon detid="436608516" count="1" value="129" id="4301030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 neg   module  1   Id 436608516 " fill="rgb(255,0,0)" points="713.934,2666.62 734.349,2666.62 734.349,2662.33 713.934,2662.33 " />
<svg:polygon detid="436608772" count="1" value="129" id="4301031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 neg   module  1   Id 436608772 " fill="rgb(255,0,0)" points="713.934,2662.33 734.349,2662.33 734.349,2658.05 713.934,2658.05 " />
<svg:polygon detid="436609028" count="1" value="129" id="4301032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 neg   module  1   Id 436609028 " fill="rgb(255,0,0)" points="713.934,2658.05 734.349,2658.05 734.349,2653.77 713.934,2653.77 " />
<svg:polygon detid="436609284" count="1" value="129" id="4301033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 neg   module  1   Id 436609284 " fill="rgb(255,0,0)" points="713.934,2653.77 734.349,2653.77 734.349,2649.49 713.934,2649.49 " />
<svg:polygon detid="436609540" count="1" value="129" id="4301034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 neg   module  1   Id 436609540 " fill="rgb(255,0,0)" points="713.934,2649.49 734.349,2649.49 734.349,2645.21 713.934,2645.21 " />
<svg:polygon detid="436609796" count="1" value="129" id="4301035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 neg   module  1   Id 436609796 " fill="rgb(255,0,0)" points="713.934,2645.21 734.349,2645.21 734.349,2640.93 713.934,2640.93 " />
<svg:polygon detid="436610052" count="1" value="129" id="4301036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 neg   module  1   Id 436610052 " fill="rgb(255,0,0)" points="713.934,2640.93 734.349,2640.93 734.349,2636.64 713.934,2636.64 " />
<svg:polygon detid="436610308" count="1" value="129" id="4301037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 neg   module  1   Id 436610308 " fill="rgb(255,0,0)" points="713.934,2636.64 734.349,2636.64 734.349,2632.36 713.934,2632.36 " />
<svg:polygon detid="436610564" count="1" value="129" id="4301038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 neg   module  1   Id 436610564 " fill="rgb(255,0,0)" points="713.934,2632.36 734.349,2632.36 734.349,2628.08 713.934,2628.08 " />
<svg:polygon detid="436610820" count="1" value="129" id="4301039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 neg   module  1   Id 436610820 " fill="rgb(255,0,0)" points="713.934,2628.08 734.349,2628.08 734.349,2623.8 713.934,2623.8 " />
<svg:polygon detid="436611076" count="1" value="129" id="4301040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 neg   module  1   Id 436611076 " fill="rgb(255,0,0)" points="713.934,2623.8 734.349,2623.8 734.349,2619.52 713.934,2619.52 " />
<svg:polygon detid="436611332" count="1" value="129" id="4301041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 neg   module  1   Id 436611332 " fill="rgb(255,0,0)" points="713.934,2619.52 734.349,2619.52 734.349,2615.24 713.934,2615.24 " />
<svg:polygon detid="436611588" count="1" value="129" id="4301042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 neg   module  1   Id 436611588 " fill="rgb(255,0,0)" points="713.934,2615.24 734.349,2615.24 734.349,2610.96 713.934,2610.96 " />
<svg:polygon detid="436611844" count="1" value="129" id="4301043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 neg   module  1   Id 436611844 " fill="rgb(255,0,0)" points="713.934,2610.96 734.349,2610.96 734.349,2606.67 713.934,2606.67 " />
<svg:polygon detid="436612100" count="1" value="129" id="4301044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 neg   module  1   Id 436612100 " fill="rgb(255,0,0)" points="713.934,2606.67 734.349,2606.67 734.349,2602.39 713.934,2602.39 " />
<svg:polygon detid="436612356" count="1" value="129" id="4301045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 neg   module  1   Id 436612356 " fill="rgb(255,0,0)" points="713.934,2602.39 734.349,2602.39 734.349,2598.11 713.934,2598.11 " />
<svg:polygon detid="436612612" count="1" value="129" id="4301046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 neg   module  1   Id 436612612 " fill="rgb(255,0,0)" points="713.934,2598.11 734.349,2598.11 734.349,2593.83 713.934,2593.83 " />
<svg:polygon detid="436612868" count="1" value="129" id="4301047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 neg   module  1   Id 436612868 " fill="rgb(255,0,0)" points="713.934,2593.83 734.349,2593.83 734.349,2589.55 713.934,2589.55 " />
<svg:polygon detid="436613124" count="1" value="129" id="4301048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 neg   module  1   Id 436613124 " fill="rgb(255,0,0)" points="713.934,2589.55 734.349,2589.55 734.349,2585.27 713.934,2585.27 " />
<svg:polygon detid="436613380" count="1" value="129" id="4301049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 neg   module  1   Id 436613380 " fill="rgb(255,0,0)" points="713.934,2585.27 734.349,2585.27 734.349,2580.98 713.934,2580.98 " />
<svg:polygon detid="436613636" count="1" value="129" id="4301050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 neg   module  1   Id 436613636 " fill="rgb(255,0,0)" points="713.934,2580.98 734.349,2580.98 734.349,2576.7 713.934,2576.7 " />
<svg:polygon detid="436613892" count="1" value="129" id="4301051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 neg   module  1   Id 436613892 " fill="rgb(255,0,0)" points="713.934,2576.7 734.349,2576.7 734.349,2572.42 713.934,2572.42 " />
<svg:polygon detid="436614148" count="1" value="129" id="4301052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 neg   module  1   Id 436614148 " fill="rgb(255,0,0)" points="713.934,2572.42 734.349,2572.42 734.349,2568.14 713.934,2568.14 " />
<svg:polygon detid="436614404" count="1" value="129" id="4301053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 neg   module  1   Id 436614404 " fill="rgb(255,0,0)" points="713.934,2568.14 734.349,2568.14 734.349,2563.86 713.934,2563.86 " />
<svg:polygon detid="436614660" count="1" value="129" id="4301054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 neg   module  1   Id 436614660 " fill="rgb(255,0,0)" points="713.934,2563.86 734.349,2563.86 734.349,2559.58 713.934,2559.58 " />
<svg:polygon detid="436614916" count="1" value="129" id="4301055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 neg   module  1   Id 436614916 " fill="rgb(255,0,0)" points="713.934,2559.58 734.349,2559.58 734.349,2555.3 713.934,2555.3 " />
<svg:polygon detid="436615172" count="1" value="129" id="4301056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 neg   module  1   Id 436615172 " fill="rgb(255,0,0)" points="713.934,2555.3 734.349,2555.3 734.349,2551.01 713.934,2551.01 " />
<svg:polygon detid="436615428" count="1" value="129" id="4301057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 neg   module  1   Id 436615428 " fill="rgb(255,0,0)" points="713.934,2551.01 734.349,2551.01 734.349,2546.73 713.934,2546.73 " />
<svg:polygon detid="436615684" count="1" value="129" id="4301058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 neg   module  1   Id 436615684 " fill="rgb(255,0,0)" points="713.934,2546.73 734.349,2546.73 734.349,2542.45 713.934,2542.45 " />
<svg:polygon detid="436615940" count="1" value="129" id="4301059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 neg   module  1   Id 436615940 " fill="rgb(255,0,0)" points="713.934,2542.45 734.349,2542.45 734.349,2538.17 713.934,2538.17 " />
<svg:polygon detid="436616196" count="1" value="129" id="4301060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 neg   module  1   Id 436616196 " fill="rgb(255,0,0)" points="713.934,2538.17 734.349,2538.17 734.349,2533.89 713.934,2533.89 " />
<svg:polygon detid="436616452" count="1" value="129" id="4301061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 neg   module  1   Id 436616452 " fill="rgb(255,0,0)" points="713.934,2533.89 734.349,2533.89 734.349,2529.61 713.934,2529.61 " />
<svg:polygon detid="436616708" count="1" value="129" id="4301062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 neg   module  1   Id 436616708 " fill="rgb(255,0,0)" points="713.934,2529.61 734.349,2529.61 734.349,2525.32 713.934,2525.32 " />
<svg:polygon detid="436616964" count="1" value="129" id="4301063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 neg   module  1   Id 436616964 " fill="rgb(255,0,0)" points="713.934,2525.32 734.349,2525.32 734.349,2521.04 713.934,2521.04 " />
<svg:polygon detid="436617220" count="1" value="129" id="4301064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 neg   module  1   Id 436617220 " fill="rgb(255,0,0)" points="713.934,2521.04 734.349,2521.04 734.349,2516.76 713.934,2516.76 " />
<svg:polygon detid="436617476" count="1" value="129" id="4301065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 neg   module  1   Id 436617476 " fill="rgb(255,0,0)" points="713.934,2516.76 734.349,2516.76 734.349,2512.48 713.934,2512.48 " />
<svg:polygon detid="436617732" count="1" value="129" id="4301066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 neg   module  1   Id 436617732 " fill="rgb(255,0,0)" points="713.934,2512.48 734.349,2512.48 734.349,2508.2 713.934,2508.2 " />
<svg:polygon detid="436617988" count="1" value="129" id="4301067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 neg   module  1   Id 436617988 " fill="rgb(255,0,0)" points="713.934,2508.2 734.349,2508.2 734.349,2503.92 713.934,2503.92 " />
<svg:polygon detid="436618244" count="1" value="129" id="4301068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 neg   module  1   Id 436618244 " fill="rgb(255,0,0)" points="713.934,2503.92 734.349,2503.92 734.349,2499.64 713.934,2499.64 " />
<svg:polygon detid="436618500" count="1" value="129" id="4301069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 neg   module  1   Id 436618500 " fill="rgb(255,0,0)" points="713.934,2499.64 734.349,2499.64 734.349,2495.35 713.934,2495.35 " />
<svg:polygon detid="436618756" count="1" value="129" id="4301070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 neg   module  1   Id 436618756 " fill="rgb(255,0,0)" points="713.934,2495.35 734.349,2495.35 734.349,2491.07 713.934,2491.07 " />
<svg:polygon detid="436619012" count="1" value="129" id="4301071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 neg   module  1   Id 436619012 " fill="rgb(255,0,0)" points="713.934,2491.07 734.349,2491.07 734.349,2486.79 713.934,2486.79 " />
<svg:polygon detid="436619268" count="1" value="129" id="4301072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 neg   module  1   Id 436619268 " fill="rgb(255,0,0)" points="713.934,2486.79 734.349,2486.79 734.349,2482.51 713.934,2482.51 " />
<svg:polygon detid="436619524" count="1" value="129" id="4301073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 neg   module  1   Id 436619524 " fill="rgb(255,0,0)" points="713.934,2482.51 734.349,2482.51 734.349,2478.23 713.934,2478.23 " />
<svg:polygon detid="436619780" count="1" value="129" id="4301074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 neg   module  1   Id 436619780 " fill="rgb(255,0,0)" points="713.934,2478.23 734.349,2478.23 734.349,2473.95 713.934,2473.95 " />
<svg:polygon detid="436601096" count="1" value="129" id="4302001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 neg   module  2   Id 436601096 " fill="rgb(255,0,0)" points="736.901,2790.78 757.316,2790.78 757.316,2786.5 736.901,2786.5 " />
<svg:polygon detid="436601352" count="1" value="129" id="4302002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 neg   module  2   Id 436601352 " fill="rgb(255,0,0)" points="736.901,2786.5 757.316,2786.5 757.316,2782.22 736.901,2782.22 " />
<svg:polygon detid="436601608" count="1" value="129" id="4302003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 neg   module  2   Id 436601608 " fill="rgb(255,0,0)" points="736.901,2782.22 757.316,2782.22 757.316,2777.94 736.901,2777.94 " />
<svg:polygon detid="436601864" count="1" value="129" id="4302004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 neg   module  2   Id 436601864 " fill="rgb(255,0,0)" points="736.901,2777.94 757.316,2777.94 757.316,2773.65 736.901,2773.65 " />
<svg:polygon detid="436602120" count="1" value="129" id="4302005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 neg   module  2   Id 436602120 " fill="rgb(255,0,0)" points="736.901,2773.65 757.316,2773.65 757.316,2769.37 736.901,2769.37 " />
<svg:polygon detid="436602376" count="1" value="129" id="4302006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 neg   module  2   Id 436602376 " fill="rgb(255,0,0)" points="736.901,2769.37 757.316,2769.37 757.316,2765.09 736.901,2765.09 " />
<svg:polygon detid="436602632" count="1" value="129" id="4302007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 neg   module  2   Id 436602632 " fill="rgb(255,0,0)" points="736.901,2765.09 757.316,2765.09 757.316,2760.81 736.901,2760.81 " />
<svg:polygon detid="436602888" count="1" value="129" id="4302008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 neg   module  2   Id 436602888 " fill="rgb(255,0,0)" points="736.901,2760.81 757.316,2760.81 757.316,2756.53 736.901,2756.53 " />
<svg:polygon detid="436603144" count="1" value="129" id="4302009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 neg   module  2   Id 436603144 " fill="rgb(255,0,0)" points="736.901,2756.53 757.316,2756.53 757.316,2752.25 736.901,2752.25 " />
<svg:polygon detid="436603400" count="1" value="129" id="4302010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 neg   module  2   Id 436603400 " fill="rgb(255,0,0)" points="736.901,2752.25 757.316,2752.25 757.316,2747.96 736.901,2747.96 " />
<svg:polygon detid="436603656" count="1" value="129" id="4302011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 neg   module  2   Id 436603656 " fill="rgb(255,0,0)" points="736.901,2747.96 757.316,2747.96 757.316,2743.68 736.901,2743.68 " />
<svg:polygon detid="436603912" count="1" value="129" id="4302012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 neg   module  2   Id 436603912 " fill="rgb(255,0,0)" points="736.901,2743.68 757.316,2743.68 757.316,2739.4 736.901,2739.4 " />
<svg:polygon detid="436604168" count="1" value="129" id="4302013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 neg   module  2   Id 436604168 " fill="rgb(255,0,0)" points="736.901,2739.4 757.316,2739.4 757.316,2735.12 736.901,2735.12 " />
<svg:polygon detid="436604424" count="1" value="129" id="4302014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 neg   module  2   Id 436604424 " fill="rgb(255,0,0)" points="736.901,2735.12 757.316,2735.12 757.316,2730.84 736.901,2730.84 " />
<svg:polygon detid="436604680" count="1" value="129" id="4302015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 neg   module  2   Id 436604680 " fill="rgb(255,0,0)" points="736.901,2730.84 757.316,2730.84 757.316,2726.56 736.901,2726.56 " />
<svg:polygon detid="436604936" count="1" value="129" id="4302016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 neg   module  2   Id 436604936 " fill="rgb(255,0,0)" points="736.901,2726.56 757.316,2726.56 757.316,2722.28 736.901,2722.28 " />
<svg:polygon detid="436605192" count="1" value="129" id="4302017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 neg   module  2   Id 436605192 " fill="rgb(255,0,0)" points="736.901,2722.28 757.316,2722.28 757.316,2717.99 736.901,2717.99 " />
<svg:polygon detid="436605448" count="1" value="129" id="4302018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 neg   module  2   Id 436605448 " fill="rgb(255,0,0)" points="736.901,2717.99 757.316,2717.99 757.316,2713.71 736.901,2713.71 " />
<svg:polygon detid="436605704" count="1" value="129" id="4302019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 neg   module  2   Id 436605704 " fill="rgb(255,0,0)" points="736.901,2713.71 757.316,2713.71 757.316,2709.43 736.901,2709.43 " />
<svg:polygon detid="436605960" count="1" value="129" id="4302020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 neg   module  2   Id 436605960 " fill="rgb(255,0,0)" points="736.901,2709.43 757.316,2709.43 757.316,2705.15 736.901,2705.15 " />
<svg:polygon detid="436606216" count="1" value="129" id="4302021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 neg   module  2   Id 436606216 " fill="rgb(255,0,0)" points="736.901,2705.15 757.316,2705.15 757.316,2700.87 736.901,2700.87 " />
<svg:polygon detid="436606472" count="1" value="129" id="4302022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 neg   module  2   Id 436606472 " fill="rgb(255,0,0)" points="736.901,2700.87 757.316,2700.87 757.316,2696.59 736.901,2696.59 " />
<svg:polygon detid="436606728" count="1" value="129" id="4302023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 neg   module  2   Id 436606728 " fill="rgb(255,0,0)" points="736.901,2696.59 757.316,2696.59 757.316,2692.3 736.901,2692.3 " />
<svg:polygon detid="436606984" count="1" value="129" id="4302024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 neg   module  2   Id 436606984 " fill="rgb(255,0,0)" points="736.901,2692.3 757.316,2692.3 757.316,2688.02 736.901,2688.02 " />
<svg:polygon detid="436607240" count="1" value="129" id="4302025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 neg   module  2   Id 436607240 " fill="rgb(255,0,0)" points="736.901,2688.02 757.316,2688.02 757.316,2683.74 736.901,2683.74 " />
<svg:polygon detid="436607496" count="1" value="129" id="4302026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 neg   module  2   Id 436607496 " fill="rgb(255,0,0)" points="736.901,2683.74 757.316,2683.74 757.316,2679.46 736.901,2679.46 " />
<svg:polygon detid="436607752" count="1" value="129" id="4302027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 neg   module  2   Id 436607752 " fill="rgb(255,0,0)" points="736.901,2679.46 757.316,2679.46 757.316,2675.18 736.901,2675.18 " />
<svg:polygon detid="436608008" count="1" value="129" id="4302028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 neg   module  2   Id 436608008 " fill="rgb(255,0,0)" points="736.901,2675.18 757.316,2675.18 757.316,2670.9 736.901,2670.9 " />
<svg:polygon detid="436608264" count="1" value="129" id="4302029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 neg   module  2   Id 436608264 " fill="rgb(255,0,0)" points="736.901,2670.9 757.316,2670.9 757.316,2666.62 736.901,2666.62 " />
<svg:polygon detid="436608520" count="1" value="129" id="4302030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 neg   module  2   Id 436608520 " fill="rgb(255,0,0)" points="736.901,2666.62 757.316,2666.62 757.316,2662.33 736.901,2662.33 " />
<svg:polygon detid="436608776" count="1" value="129" id="4302031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 neg   module  2   Id 436608776 " fill="rgb(255,0,0)" points="736.901,2662.33 757.316,2662.33 757.316,2658.05 736.901,2658.05 " />
<svg:polygon detid="436609032" count="1" value="129" id="4302032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 neg   module  2   Id 436609032 " fill="rgb(255,0,0)" points="736.901,2658.05 757.316,2658.05 757.316,2653.77 736.901,2653.77 " />
<svg:polygon detid="436609288" count="1" value="129" id="4302033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 neg   module  2   Id 436609288 " fill="rgb(255,0,0)" points="736.901,2653.77 757.316,2653.77 757.316,2649.49 736.901,2649.49 " />
<svg:polygon detid="436609544" count="1" value="129" id="4302034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 neg   module  2   Id 436609544 " fill="rgb(255,0,0)" points="736.901,2649.49 757.316,2649.49 757.316,2645.21 736.901,2645.21 " />
<svg:polygon detid="436609800" count="1" value="129" id="4302035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 neg   module  2   Id 436609800 " fill="rgb(255,0,0)" points="736.901,2645.21 757.316,2645.21 757.316,2640.93 736.901,2640.93 " />
<svg:polygon detid="436610056" count="1" value="129" id="4302036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 neg   module  2   Id 436610056 " fill="rgb(255,0,0)" points="736.901,2640.93 757.316,2640.93 757.316,2636.64 736.901,2636.64 " />
<svg:polygon detid="436610312" count="1" value="129" id="4302037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 neg   module  2   Id 436610312 " fill="rgb(255,0,0)" points="736.901,2636.64 757.316,2636.64 757.316,2632.36 736.901,2632.36 " />
<svg:polygon detid="436610568" count="1" value="129" id="4302038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 neg   module  2   Id 436610568 " fill="rgb(255,0,0)" points="736.901,2632.36 757.316,2632.36 757.316,2628.08 736.901,2628.08 " />
<svg:polygon detid="436610824" count="1" value="129" id="4302039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 neg   module  2   Id 436610824 " fill="rgb(255,0,0)" points="736.901,2628.08 757.316,2628.08 757.316,2623.8 736.901,2623.8 " />
<svg:polygon detid="436611080" count="1" value="129" id="4302040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 neg   module  2   Id 436611080 " fill="rgb(255,0,0)" points="736.901,2623.8 757.316,2623.8 757.316,2619.52 736.901,2619.52 " />
<svg:polygon detid="436611336" count="1" value="129" id="4302041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 neg   module  2   Id 436611336 " fill="rgb(255,0,0)" points="736.901,2619.52 757.316,2619.52 757.316,2615.24 736.901,2615.24 " />
<svg:polygon detid="436611592" count="1" value="129" id="4302042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 neg   module  2   Id 436611592 " fill="rgb(255,0,0)" points="736.901,2615.24 757.316,2615.24 757.316,2610.96 736.901,2610.96 " />
<svg:polygon detid="436611848" count="1" value="129" id="4302043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 neg   module  2   Id 436611848 " fill="rgb(255,0,0)" points="736.901,2610.96 757.316,2610.96 757.316,2606.67 736.901,2606.67 " />
<svg:polygon detid="436612104" count="1" value="129" id="4302044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 neg   module  2   Id 436612104 " fill="rgb(255,0,0)" points="736.901,2606.67 757.316,2606.67 757.316,2602.39 736.901,2602.39 " />
<svg:polygon detid="436612360" count="1" value="129" id="4302045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 neg   module  2   Id 436612360 " fill="rgb(255,0,0)" points="736.901,2602.39 757.316,2602.39 757.316,2598.11 736.901,2598.11 " />
<svg:polygon detid="436612616" count="1" value="129" id="4302046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 neg   module  2   Id 436612616 " fill="rgb(255,0,0)" points="736.901,2598.11 757.316,2598.11 757.316,2593.83 736.901,2593.83 " />
<svg:polygon detid="436612872" count="1" value="129" id="4302047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 neg   module  2   Id 436612872 " fill="rgb(255,0,0)" points="736.901,2593.83 757.316,2593.83 757.316,2589.55 736.901,2589.55 " />
<svg:polygon detid="436613128" count="1" value="129" id="4302048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 neg   module  2   Id 436613128 " fill="rgb(255,0,0)" points="736.901,2589.55 757.316,2589.55 757.316,2585.27 736.901,2585.27 " />
<svg:polygon detid="436613384" count="1" value="129" id="4302049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 neg   module  2   Id 436613384 " fill="rgb(255,0,0)" points="736.901,2585.27 757.316,2585.27 757.316,2580.98 736.901,2580.98 " />
<svg:polygon detid="436613640" count="1" value="129" id="4302050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 neg   module  2   Id 436613640 " fill="rgb(255,0,0)" points="736.901,2580.98 757.316,2580.98 757.316,2576.7 736.901,2576.7 " />
<svg:polygon detid="436613896" count="1" value="129" id="4302051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 neg   module  2   Id 436613896 " fill="rgb(255,0,0)" points="736.901,2576.7 757.316,2576.7 757.316,2572.42 736.901,2572.42 " />
<svg:polygon detid="436614152" count="1" value="129" id="4302052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 neg   module  2   Id 436614152 " fill="rgb(255,0,0)" points="736.901,2572.42 757.316,2572.42 757.316,2568.14 736.901,2568.14 " />
<svg:polygon detid="436614408" count="1" value="129" id="4302053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 neg   module  2   Id 436614408 " fill="rgb(255,0,0)" points="736.901,2568.14 757.316,2568.14 757.316,2563.86 736.901,2563.86 " />
<svg:polygon detid="436614664" count="1" value="129" id="4302054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 neg   module  2   Id 436614664 " fill="rgb(255,0,0)" points="736.901,2563.86 757.316,2563.86 757.316,2559.58 736.901,2559.58 " />
<svg:polygon detid="436614920" count="1" value="129" id="4302055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 neg   module  2   Id 436614920 " fill="rgb(255,0,0)" points="736.901,2559.58 757.316,2559.58 757.316,2555.3 736.901,2555.3 " />
<svg:polygon detid="436615176" count="1" value="129" id="4302056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 neg   module  2   Id 436615176 " fill="rgb(255,0,0)" points="736.901,2555.3 757.316,2555.3 757.316,2551.01 736.901,2551.01 " />
<svg:polygon detid="436615432" count="1" value="129" id="4302057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 neg   module  2   Id 436615432 " fill="rgb(255,0,0)" points="736.901,2551.01 757.316,2551.01 757.316,2546.73 736.901,2546.73 " />
<svg:polygon detid="436615688" count="1" value="129" id="4302058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 neg   module  2   Id 436615688 " fill="rgb(255,0,0)" points="736.901,2546.73 757.316,2546.73 757.316,2542.45 736.901,2542.45 " />
<svg:polygon detid="436615944" count="1" value="129" id="4302059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 neg   module  2   Id 436615944 " fill="rgb(255,0,0)" points="736.901,2542.45 757.316,2542.45 757.316,2538.17 736.901,2538.17 " />
<svg:polygon detid="436616200" count="1" value="129" id="4302060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 neg   module  2   Id 436616200 " fill="rgb(255,0,0)" points="736.901,2538.17 757.316,2538.17 757.316,2533.89 736.901,2533.89 " />
<svg:polygon detid="436616456" count="1" value="129" id="4302061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 neg   module  2   Id 436616456 " fill="rgb(255,0,0)" points="736.901,2533.89 757.316,2533.89 757.316,2529.61 736.901,2529.61 " />
<svg:polygon detid="436616712" count="1" value="129" id="4302062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 neg   module  2   Id 436616712 " fill="rgb(255,0,0)" points="736.901,2529.61 757.316,2529.61 757.316,2525.32 736.901,2525.32 " />
<svg:polygon detid="436616968" count="1" value="129" id="4302063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 neg   module  2   Id 436616968 " fill="rgb(255,0,0)" points="736.901,2525.32 757.316,2525.32 757.316,2521.04 736.901,2521.04 " />
<svg:polygon detid="436617224" count="1" value="129" id="4302064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 neg   module  2   Id 436617224 " fill="rgb(255,0,0)" points="736.901,2521.04 757.316,2521.04 757.316,2516.76 736.901,2516.76 " />
<svg:polygon detid="436617480" count="1" value="129" id="4302065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 neg   module  2   Id 436617480 " fill="rgb(255,0,0)" points="736.901,2516.76 757.316,2516.76 757.316,2512.48 736.901,2512.48 " />
<svg:polygon detid="436617736" count="1" value="129" id="4302066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 neg   module  2   Id 436617736 " fill="rgb(255,0,0)" points="736.901,2512.48 757.316,2512.48 757.316,2508.2 736.901,2508.2 " />
<svg:polygon detid="436617992" count="1" value="129" id="4302067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 neg   module  2   Id 436617992 " fill="rgb(255,0,0)" points="736.901,2508.2 757.316,2508.2 757.316,2503.92 736.901,2503.92 " />
<svg:polygon detid="436618248" count="1" value="129" id="4302068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 neg   module  2   Id 436618248 " fill="rgb(255,0,0)" points="736.901,2503.92 757.316,2503.92 757.316,2499.64 736.901,2499.64 " />
<svg:polygon detid="436618504" count="1" value="129" id="4302069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 neg   module  2   Id 436618504 " fill="rgb(255,0,0)" points="736.901,2499.64 757.316,2499.64 757.316,2495.35 736.901,2495.35 " />
<svg:polygon detid="436618760" count="1" value="129" id="4302070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 neg   module  2   Id 436618760 " fill="rgb(255,0,0)" points="736.901,2495.35 757.316,2495.35 757.316,2491.07 736.901,2491.07 " />
<svg:polygon detid="436619016" count="1" value="129" id="4302071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 neg   module  2   Id 436619016 " fill="rgb(255,0,0)" points="736.901,2491.07 757.316,2491.07 757.316,2486.79 736.901,2486.79 " />
<svg:polygon detid="436619272" count="1" value="129" id="4302072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 neg   module  2   Id 436619272 " fill="rgb(255,0,0)" points="736.901,2486.79 757.316,2486.79 757.316,2482.51 736.901,2482.51 " />
<svg:polygon detid="436619528" count="1" value="129" id="4302073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 neg   module  2   Id 436619528 " fill="rgb(255,0,0)" points="736.901,2482.51 757.316,2482.51 757.316,2478.23 736.901,2478.23 " />
<svg:polygon detid="436619784" count="1" value="129" id="4302074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 neg   module  2   Id 436619784 " fill="rgb(255,0,0)" points="736.901,2478.23 757.316,2478.23 757.316,2473.95 736.901,2473.95 " />
<svg:polygon detid="436601100" count="1" value="129" id="4303001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 neg   module  3   Id 436601100 " fill="rgb(255,0,0)" points="759.867,2790.78 780.282,2790.78 780.282,2786.5 759.867,2786.5 " />
<svg:polygon detid="436601356" count="1" value="129" id="4303002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 neg   module  3   Id 436601356 " fill="rgb(255,0,0)" points="759.867,2786.5 780.282,2786.5 780.282,2782.22 759.867,2782.22 " />
<svg:polygon detid="436601612" count="1" value="129" id="4303003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 neg   module  3   Id 436601612 " fill="rgb(255,0,0)" points="759.867,2782.22 780.282,2782.22 780.282,2777.94 759.867,2777.94 " />
<svg:polygon detid="436601868" count="1" value="129" id="4303004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 neg   module  3   Id 436601868 " fill="rgb(255,0,0)" points="759.867,2777.94 780.282,2777.94 780.282,2773.65 759.867,2773.65 " />
<svg:polygon detid="436602124" count="1" value="129" id="4303005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 neg   module  3   Id 436602124 " fill="rgb(255,0,0)" points="759.867,2773.65 780.282,2773.65 780.282,2769.37 759.867,2769.37 " />
<svg:polygon detid="436602380" count="1" value="129" id="4303006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 neg   module  3   Id 436602380 " fill="rgb(255,0,0)" points="759.867,2769.37 780.282,2769.37 780.282,2765.09 759.867,2765.09 " />
<svg:polygon detid="436602636" count="1" value="129" id="4303007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 neg   module  3   Id 436602636 " fill="rgb(255,0,0)" points="759.867,2765.09 780.282,2765.09 780.282,2760.81 759.867,2760.81 " />
<svg:polygon detid="436602892" count="1" value="129" id="4303008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 neg   module  3   Id 436602892 " fill="rgb(255,0,0)" points="759.867,2760.81 780.282,2760.81 780.282,2756.53 759.867,2756.53 " />
<svg:polygon detid="436603148" count="1" value="129" id="4303009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 neg   module  3   Id 436603148 " fill="rgb(255,0,0)" points="759.867,2756.53 780.282,2756.53 780.282,2752.25 759.867,2752.25 " />
<svg:polygon detid="436603404" count="1" value="129" id="4303010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 neg   module  3   Id 436603404 " fill="rgb(255,0,0)" points="759.867,2752.25 780.282,2752.25 780.282,2747.96 759.867,2747.96 " />
<svg:polygon detid="436603660" count="1" value="129" id="4303011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 neg   module  3   Id 436603660 " fill="rgb(255,0,0)" points="759.867,2747.96 780.282,2747.96 780.282,2743.68 759.867,2743.68 " />
<svg:polygon detid="436603916" count="1" value="129" id="4303012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 neg   module  3   Id 436603916 " fill="rgb(255,0,0)" points="759.867,2743.68 780.282,2743.68 780.282,2739.4 759.867,2739.4 " />
<svg:polygon detid="436604172" count="1" value="129" id="4303013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 neg   module  3   Id 436604172 " fill="rgb(255,0,0)" points="759.867,2739.4 780.282,2739.4 780.282,2735.12 759.867,2735.12 " />
<svg:polygon detid="436604428" count="1" value="129" id="4303014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 neg   module  3   Id 436604428 " fill="rgb(255,0,0)" points="759.867,2735.12 780.282,2735.12 780.282,2730.84 759.867,2730.84 " />
<svg:polygon detid="436604684" count="1" value="129" id="4303015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 neg   module  3   Id 436604684 " fill="rgb(255,0,0)" points="759.867,2730.84 780.282,2730.84 780.282,2726.56 759.867,2726.56 " />
<svg:polygon detid="436604940" count="1" value="129" id="4303016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 neg   module  3   Id 436604940 " fill="rgb(255,0,0)" points="759.867,2726.56 780.282,2726.56 780.282,2722.28 759.867,2722.28 " />
<svg:polygon detid="436605196" count="1" value="129" id="4303017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 neg   module  3   Id 436605196 " fill="rgb(255,0,0)" points="759.867,2722.28 780.282,2722.28 780.282,2717.99 759.867,2717.99 " />
<svg:polygon detid="436605452" count="1" value="129" id="4303018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 neg   module  3   Id 436605452 " fill="rgb(255,0,0)" points="759.867,2717.99 780.282,2717.99 780.282,2713.71 759.867,2713.71 " />
<svg:polygon detid="436605708" count="1" value="129" id="4303019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 neg   module  3   Id 436605708 " fill="rgb(255,0,0)" points="759.867,2713.71 780.282,2713.71 780.282,2709.43 759.867,2709.43 " />
<svg:polygon detid="436605964" count="1" value="129" id="4303020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 neg   module  3   Id 436605964 " fill="rgb(255,0,0)" points="759.867,2709.43 780.282,2709.43 780.282,2705.15 759.867,2705.15 " />
<svg:polygon detid="436606220" count="1" value="129" id="4303021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 neg   module  3   Id 436606220 " fill="rgb(255,0,0)" points="759.867,2705.15 780.282,2705.15 780.282,2700.87 759.867,2700.87 " />
<svg:polygon detid="436606476" count="1" value="129" id="4303022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 neg   module  3   Id 436606476 " fill="rgb(255,0,0)" points="759.867,2700.87 780.282,2700.87 780.282,2696.59 759.867,2696.59 " />
<svg:polygon detid="436606732" count="1" value="129" id="4303023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 neg   module  3   Id 436606732 " fill="rgb(255,0,0)" points="759.867,2696.59 780.282,2696.59 780.282,2692.3 759.867,2692.3 " />
<svg:polygon detid="436606988" count="1" value="129" id="4303024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 neg   module  3   Id 436606988 " fill="rgb(255,0,0)" points="759.867,2692.3 780.282,2692.3 780.282,2688.02 759.867,2688.02 " />
<svg:polygon detid="436607244" count="1" value="129" id="4303025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 neg   module  3   Id 436607244 " fill="rgb(255,0,0)" points="759.867,2688.02 780.282,2688.02 780.282,2683.74 759.867,2683.74 " />
<svg:polygon detid="436607500" count="1" value="129" id="4303026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 neg   module  3   Id 436607500 " fill="rgb(255,0,0)" points="759.867,2683.74 780.282,2683.74 780.282,2679.46 759.867,2679.46 " />
<svg:polygon detid="436607756" count="1" value="129" id="4303027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 neg   module  3   Id 436607756 " fill="rgb(255,0,0)" points="759.867,2679.46 780.282,2679.46 780.282,2675.18 759.867,2675.18 " />
<svg:polygon detid="436608012" count="1" value="129" id="4303028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 neg   module  3   Id 436608012 " fill="rgb(255,0,0)" points="759.867,2675.18 780.282,2675.18 780.282,2670.9 759.867,2670.9 " />
<svg:polygon detid="436608268" count="1" value="129" id="4303029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 neg   module  3   Id 436608268 " fill="rgb(255,0,0)" points="759.867,2670.9 780.282,2670.9 780.282,2666.62 759.867,2666.62 " />
<svg:polygon detid="436608524" count="1" value="129" id="4303030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 neg   module  3   Id 436608524 " fill="rgb(255,0,0)" points="759.867,2666.62 780.282,2666.62 780.282,2662.33 759.867,2662.33 " />
<svg:polygon detid="436608780" count="1" value="129" id="4303031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 neg   module  3   Id 436608780 " fill="rgb(255,0,0)" points="759.867,2662.33 780.282,2662.33 780.282,2658.05 759.867,2658.05 " />
<svg:polygon detid="436609036" count="1" value="129" id="4303032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 neg   module  3   Id 436609036 " fill="rgb(255,0,0)" points="759.867,2658.05 780.282,2658.05 780.282,2653.77 759.867,2653.77 " />
<svg:polygon detid="436609292" count="1" value="129" id="4303033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 neg   module  3   Id 436609292 " fill="rgb(255,0,0)" points="759.867,2653.77 780.282,2653.77 780.282,2649.49 759.867,2649.49 " />
<svg:polygon detid="436609548" count="1" value="129" id="4303034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 neg   module  3   Id 436609548 " fill="rgb(255,0,0)" points="759.867,2649.49 780.282,2649.49 780.282,2645.21 759.867,2645.21 " />
<svg:polygon detid="436609804" count="1" value="129" id="4303035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 neg   module  3   Id 436609804 " fill="rgb(255,0,0)" points="759.867,2645.21 780.282,2645.21 780.282,2640.93 759.867,2640.93 " />
<svg:polygon detid="436610060" count="1" value="129" id="4303036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 neg   module  3   Id 436610060 " fill="rgb(255,0,0)" points="759.867,2640.93 780.282,2640.93 780.282,2636.64 759.867,2636.64 " />
<svg:polygon detid="436610316" count="1" value="129" id="4303037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 neg   module  3   Id 436610316 " fill="rgb(255,0,0)" points="759.867,2636.64 780.282,2636.64 780.282,2632.36 759.867,2632.36 " />
<svg:polygon detid="436610572" count="1" value="129" id="4303038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 neg   module  3   Id 436610572 " fill="rgb(255,0,0)" points="759.867,2632.36 780.282,2632.36 780.282,2628.08 759.867,2628.08 " />
<svg:polygon detid="436610828" count="1" value="129" id="4303039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 neg   module  3   Id 436610828 " fill="rgb(255,0,0)" points="759.867,2628.08 780.282,2628.08 780.282,2623.8 759.867,2623.8 " />
<svg:polygon detid="436611084" count="1" value="129" id="4303040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 neg   module  3   Id 436611084 " fill="rgb(255,0,0)" points="759.867,2623.8 780.282,2623.8 780.282,2619.52 759.867,2619.52 " />
<svg:polygon detid="436611340" count="1" value="129" id="4303041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 neg   module  3   Id 436611340 " fill="rgb(255,0,0)" points="759.867,2619.52 780.282,2619.52 780.282,2615.24 759.867,2615.24 " />
<svg:polygon detid="436611596" count="1" value="129" id="4303042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 neg   module  3   Id 436611596 " fill="rgb(255,0,0)" points="759.867,2615.24 780.282,2615.24 780.282,2610.96 759.867,2610.96 " />
<svg:polygon detid="436611852" count="1" value="129" id="4303043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 neg   module  3   Id 436611852 " fill="rgb(255,0,0)" points="759.867,2610.96 780.282,2610.96 780.282,2606.67 759.867,2606.67 " />
<svg:polygon detid="436612108" count="1" value="129" id="4303044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 neg   module  3   Id 436612108 " fill="rgb(255,0,0)" points="759.867,2606.67 780.282,2606.67 780.282,2602.39 759.867,2602.39 " />
<svg:polygon detid="436612364" count="1" value="129" id="4303045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 neg   module  3   Id 436612364 " fill="rgb(255,0,0)" points="759.867,2602.39 780.282,2602.39 780.282,2598.11 759.867,2598.11 " />
<svg:polygon detid="436612620" count="1" value="129" id="4303046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 neg   module  3   Id 436612620 " fill="rgb(255,0,0)" points="759.867,2598.11 780.282,2598.11 780.282,2593.83 759.867,2593.83 " />
<svg:polygon detid="436612876" count="1" value="129" id="4303047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 neg   module  3   Id 436612876 " fill="rgb(255,0,0)" points="759.867,2593.83 780.282,2593.83 780.282,2589.55 759.867,2589.55 " />
<svg:polygon detid="436613132" count="1" value="129" id="4303048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 neg   module  3   Id 436613132 " fill="rgb(255,0,0)" points="759.867,2589.55 780.282,2589.55 780.282,2585.27 759.867,2585.27 " />
<svg:polygon detid="436613388" count="1" value="129" id="4303049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 neg   module  3   Id 436613388 " fill="rgb(255,0,0)" points="759.867,2585.27 780.282,2585.27 780.282,2580.98 759.867,2580.98 " />
<svg:polygon detid="436613644" count="1" value="129" id="4303050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 neg   module  3   Id 436613644 " fill="rgb(255,0,0)" points="759.867,2580.98 780.282,2580.98 780.282,2576.7 759.867,2576.7 " />
<svg:polygon detid="436613900" count="1" value="129" id="4303051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 neg   module  3   Id 436613900 " fill="rgb(255,0,0)" points="759.867,2576.7 780.282,2576.7 780.282,2572.42 759.867,2572.42 " />
<svg:polygon detid="436614156" count="1" value="129" id="4303052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 neg   module  3   Id 436614156 " fill="rgb(255,0,0)" points="759.867,2572.42 780.282,2572.42 780.282,2568.14 759.867,2568.14 " />
<svg:polygon detid="436614412" count="1" value="129" id="4303053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 neg   module  3   Id 436614412 " fill="rgb(255,0,0)" points="759.867,2568.14 780.282,2568.14 780.282,2563.86 759.867,2563.86 " />
<svg:polygon detid="436614668" count="1" value="129" id="4303054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 neg   module  3   Id 436614668 " fill="rgb(255,0,0)" points="759.867,2563.86 780.282,2563.86 780.282,2559.58 759.867,2559.58 " />
<svg:polygon detid="436614924" count="1" value="129" id="4303055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 neg   module  3   Id 436614924 " fill="rgb(255,0,0)" points="759.867,2559.58 780.282,2559.58 780.282,2555.3 759.867,2555.3 " />
<svg:polygon detid="436615180" count="1" value="129" id="4303056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 neg   module  3   Id 436615180 " fill="rgb(255,0,0)" points="759.867,2555.3 780.282,2555.3 780.282,2551.01 759.867,2551.01 " />
<svg:polygon detid="436615436" count="1" value="129" id="4303057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 neg   module  3   Id 436615436 " fill="rgb(255,0,0)" points="759.867,2551.01 780.282,2551.01 780.282,2546.73 759.867,2546.73 " />
<svg:polygon detid="436615692" count="1" value="129" id="4303058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 neg   module  3   Id 436615692 " fill="rgb(255,0,0)" points="759.867,2546.73 780.282,2546.73 780.282,2542.45 759.867,2542.45 " />
<svg:polygon detid="436615948" count="1" value="129" id="4303059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 neg   module  3   Id 436615948 " fill="rgb(255,0,0)" points="759.867,2542.45 780.282,2542.45 780.282,2538.17 759.867,2538.17 " />
<svg:polygon detid="436616204" count="1" value="129" id="4303060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 neg   module  3   Id 436616204 " fill="rgb(255,0,0)" points="759.867,2538.17 780.282,2538.17 780.282,2533.89 759.867,2533.89 " />
<svg:polygon detid="436616460" count="1" value="129" id="4303061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 neg   module  3   Id 436616460 " fill="rgb(255,0,0)" points="759.867,2533.89 780.282,2533.89 780.282,2529.61 759.867,2529.61 " />
<svg:polygon detid="436616716" count="1" value="129" id="4303062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 neg   module  3   Id 436616716 " fill="rgb(255,0,0)" points="759.867,2529.61 780.282,2529.61 780.282,2525.32 759.867,2525.32 " />
<svg:polygon detid="436616972" count="1" value="129" id="4303063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 neg   module  3   Id 436616972 " fill="rgb(255,0,0)" points="759.867,2525.32 780.282,2525.32 780.282,2521.04 759.867,2521.04 " />
<svg:polygon detid="436617228" count="1" value="129" id="4303064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 neg   module  3   Id 436617228 " fill="rgb(255,0,0)" points="759.867,2521.04 780.282,2521.04 780.282,2516.76 759.867,2516.76 " />
<svg:polygon detid="436617484" count="1" value="129" id="4303065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 neg   module  3   Id 436617484 " fill="rgb(255,0,0)" points="759.867,2516.76 780.282,2516.76 780.282,2512.48 759.867,2512.48 " />
<svg:polygon detid="436617740" count="1" value="129" id="4303066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 neg   module  3   Id 436617740 " fill="rgb(255,0,0)" points="759.867,2512.48 780.282,2512.48 780.282,2508.2 759.867,2508.2 " />
<svg:polygon detid="436617996" count="1" value="129" id="4303067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 neg   module  3   Id 436617996 " fill="rgb(255,0,0)" points="759.867,2508.2 780.282,2508.2 780.282,2503.92 759.867,2503.92 " />
<svg:polygon detid="436618252" count="1" value="129" id="4303068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 neg   module  3   Id 436618252 " fill="rgb(255,0,0)" points="759.867,2503.92 780.282,2503.92 780.282,2499.64 759.867,2499.64 " />
<svg:polygon detid="436618508" count="1" value="129" id="4303069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 neg   module  3   Id 436618508 " fill="rgb(255,0,0)" points="759.867,2499.64 780.282,2499.64 780.282,2495.35 759.867,2495.35 " />
<svg:polygon detid="436618764" count="1" value="129" id="4303070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 neg   module  3   Id 436618764 " fill="rgb(255,0,0)" points="759.867,2495.35 780.282,2495.35 780.282,2491.07 759.867,2491.07 " />
<svg:polygon detid="436619020" count="1" value="129" id="4303071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 neg   module  3   Id 436619020 " fill="rgb(255,0,0)" points="759.867,2491.07 780.282,2491.07 780.282,2486.79 759.867,2486.79 " />
<svg:polygon detid="436619276" count="1" value="129" id="4303072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 neg   module  3   Id 436619276 " fill="rgb(255,0,0)" points="759.867,2486.79 780.282,2486.79 780.282,2482.51 759.867,2482.51 " />
<svg:polygon detid="436619532" count="1" value="129" id="4303073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 neg   module  3   Id 436619532 " fill="rgb(255,0,0)" points="759.867,2482.51 780.282,2482.51 780.282,2478.23 759.867,2478.23 " />
<svg:polygon detid="436619788" count="1" value="129" id="4303074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 neg   module  3   Id 436619788 " fill="rgb(255,0,0)" points="759.867,2478.23 780.282,2478.23 780.282,2473.95 759.867,2473.95 " />
<svg:polygon detid="436601104" count="1" value="129" id="4304001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 neg   module  4   Id 436601104 " fill="rgb(255,0,0)" points="782.834,2790.78 803.249,2790.78 803.249,2786.5 782.834,2786.5 " />
<svg:polygon detid="436601360" count="1" value="129" id="4304002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 neg   module  4   Id 436601360 " fill="rgb(255,0,0)" points="782.834,2786.5 803.249,2786.5 803.249,2782.22 782.834,2782.22 " />
<svg:polygon detid="436601616" count="1" value="129" id="4304003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 neg   module  4   Id 436601616 " fill="rgb(255,0,0)" points="782.834,2782.22 803.249,2782.22 803.249,2777.94 782.834,2777.94 " />
<svg:polygon detid="436601872" count="1" value="129" id="4304004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 neg   module  4   Id 436601872 " fill="rgb(255,0,0)" points="782.834,2777.94 803.249,2777.94 803.249,2773.65 782.834,2773.65 " />
<svg:polygon detid="436602128" count="1" value="129" id="4304005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 neg   module  4   Id 436602128 " fill="rgb(255,0,0)" points="782.834,2773.65 803.249,2773.65 803.249,2769.37 782.834,2769.37 " />
<svg:polygon detid="436602384" count="1" value="129" id="4304006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 neg   module  4   Id 436602384 " fill="rgb(255,0,0)" points="782.834,2769.37 803.249,2769.37 803.249,2765.09 782.834,2765.09 " />
<svg:polygon detid="436602640" count="1" value="129" id="4304007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 neg   module  4   Id 436602640 " fill="rgb(255,0,0)" points="782.834,2765.09 803.249,2765.09 803.249,2760.81 782.834,2760.81 " />
<svg:polygon detid="436602896" count="1" value="129" id="4304008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 neg   module  4   Id 436602896 " fill="rgb(255,0,0)" points="782.834,2760.81 803.249,2760.81 803.249,2756.53 782.834,2756.53 " />
<svg:polygon detid="436603152" count="1" value="129" id="4304009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 neg   module  4   Id 436603152 " fill="rgb(255,0,0)" points="782.834,2756.53 803.249,2756.53 803.249,2752.25 782.834,2752.25 " />
<svg:polygon detid="436603408" count="1" value="129" id="4304010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 neg   module  4   Id 436603408 " fill="rgb(255,0,0)" points="782.834,2752.25 803.249,2752.25 803.249,2747.96 782.834,2747.96 " />
<svg:polygon detid="436603664" count="1" value="129" id="4304011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 neg   module  4   Id 436603664 " fill="rgb(255,0,0)" points="782.834,2747.96 803.249,2747.96 803.249,2743.68 782.834,2743.68 " />
<svg:polygon detid="436603920" count="1" value="129" id="4304012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 neg   module  4   Id 436603920 " fill="rgb(255,0,0)" points="782.834,2743.68 803.249,2743.68 803.249,2739.4 782.834,2739.4 " />
<svg:polygon detid="436604176" count="1" value="129" id="4304013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 neg   module  4   Id 436604176 " fill="rgb(255,0,0)" points="782.834,2739.4 803.249,2739.4 803.249,2735.12 782.834,2735.12 " />
<svg:polygon detid="436604432" count="1" value="129" id="4304014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 neg   module  4   Id 436604432 " fill="rgb(255,0,0)" points="782.834,2735.12 803.249,2735.12 803.249,2730.84 782.834,2730.84 " />
<svg:polygon detid="436604688" count="1" value="129" id="4304015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 neg   module  4   Id 436604688 " fill="rgb(255,0,0)" points="782.834,2730.84 803.249,2730.84 803.249,2726.56 782.834,2726.56 " />
<svg:polygon detid="436604944" count="1" value="129" id="4304016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 neg   module  4   Id 436604944 " fill="rgb(255,0,0)" points="782.834,2726.56 803.249,2726.56 803.249,2722.28 782.834,2722.28 " />
<svg:polygon detid="436605200" count="1" value="129" id="4304017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 neg   module  4   Id 436605200 " fill="rgb(255,0,0)" points="782.834,2722.28 803.249,2722.28 803.249,2717.99 782.834,2717.99 " />
<svg:polygon detid="436605456" count="1" value="129" id="4304018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 neg   module  4   Id 436605456 " fill="rgb(255,0,0)" points="782.834,2717.99 803.249,2717.99 803.249,2713.71 782.834,2713.71 " />
<svg:polygon detid="436605712" count="1" value="129" id="4304019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 neg   module  4   Id 436605712 " fill="rgb(255,0,0)" points="782.834,2713.71 803.249,2713.71 803.249,2709.43 782.834,2709.43 " />
<svg:polygon detid="436605968" count="1" value="129" id="4304020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 neg   module  4   Id 436605968 " fill="rgb(255,0,0)" points="782.834,2709.43 803.249,2709.43 803.249,2705.15 782.834,2705.15 " />
<svg:polygon detid="436606224" count="1" value="129" id="4304021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 neg   module  4   Id 436606224 " fill="rgb(255,0,0)" points="782.834,2705.15 803.249,2705.15 803.249,2700.87 782.834,2700.87 " />
<svg:polygon detid="436606480" count="1" value="129" id="4304022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 neg   module  4   Id 436606480 " fill="rgb(255,0,0)" points="782.834,2700.87 803.249,2700.87 803.249,2696.59 782.834,2696.59 " />
<svg:polygon detid="436606736" count="1" value="129" id="4304023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 neg   module  4   Id 436606736 " fill="rgb(255,0,0)" points="782.834,2696.59 803.249,2696.59 803.249,2692.3 782.834,2692.3 " />
<svg:polygon detid="436606992" count="1" value="129" id="4304024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 neg   module  4   Id 436606992 " fill="rgb(255,0,0)" points="782.834,2692.3 803.249,2692.3 803.249,2688.02 782.834,2688.02 " />
<svg:polygon detid="436607248" count="1" value="129" id="4304025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 neg   module  4   Id 436607248 " fill="rgb(255,0,0)" points="782.834,2688.02 803.249,2688.02 803.249,2683.74 782.834,2683.74 " />
<svg:polygon detid="436607504" count="1" value="129" id="4304026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 neg   module  4   Id 436607504 " fill="rgb(255,0,0)" points="782.834,2683.74 803.249,2683.74 803.249,2679.46 782.834,2679.46 " />
<svg:polygon detid="436607760" count="1" value="129" id="4304027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 neg   module  4   Id 436607760 " fill="rgb(255,0,0)" points="782.834,2679.46 803.249,2679.46 803.249,2675.18 782.834,2675.18 " />
<svg:polygon detid="436608016" count="1" value="129" id="4304028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 neg   module  4   Id 436608016 " fill="rgb(255,0,0)" points="782.834,2675.18 803.249,2675.18 803.249,2670.9 782.834,2670.9 " />
<svg:polygon detid="436608272" count="1" value="129" id="4304029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 neg   module  4   Id 436608272 " fill="rgb(255,0,0)" points="782.834,2670.9 803.249,2670.9 803.249,2666.62 782.834,2666.62 " />
<svg:polygon detid="436608528" count="1" value="129" id="4304030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 neg   module  4   Id 436608528 " fill="rgb(255,0,0)" points="782.834,2666.62 803.249,2666.62 803.249,2662.33 782.834,2662.33 " />
<svg:polygon detid="436608784" count="1" value="129" id="4304031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 neg   module  4   Id 436608784 " fill="rgb(255,0,0)" points="782.834,2662.33 803.249,2662.33 803.249,2658.05 782.834,2658.05 " />
<svg:polygon detid="436609040" count="1" value="129" id="4304032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 neg   module  4   Id 436609040 " fill="rgb(255,0,0)" points="782.834,2658.05 803.249,2658.05 803.249,2653.77 782.834,2653.77 " />
<svg:polygon detid="436609296" count="1" value="129" id="4304033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 neg   module  4   Id 436609296 " fill="rgb(255,0,0)" points="782.834,2653.77 803.249,2653.77 803.249,2649.49 782.834,2649.49 " />
<svg:polygon detid="436609552" count="1" value="129" id="4304034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 neg   module  4   Id 436609552 " fill="rgb(255,0,0)" points="782.834,2649.49 803.249,2649.49 803.249,2645.21 782.834,2645.21 " />
<svg:polygon detid="436609808" count="1" value="129" id="4304035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 neg   module  4   Id 436609808 " fill="rgb(255,0,0)" points="782.834,2645.21 803.249,2645.21 803.249,2640.93 782.834,2640.93 " />
<svg:polygon detid="436610064" count="1" value="129" id="4304036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 neg   module  4   Id 436610064 " fill="rgb(255,0,0)" points="782.834,2640.93 803.249,2640.93 803.249,2636.64 782.834,2636.64 " />
<svg:polygon detid="436610320" count="1" value="129" id="4304037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 neg   module  4   Id 436610320 " fill="rgb(255,0,0)" points="782.834,2636.64 803.249,2636.64 803.249,2632.36 782.834,2632.36 " />
<svg:polygon detid="436610576" count="1" value="129" id="4304038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 neg   module  4   Id 436610576 " fill="rgb(255,0,0)" points="782.834,2632.36 803.249,2632.36 803.249,2628.08 782.834,2628.08 " />
<svg:polygon detid="436610832" count="1" value="129" id="4304039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 neg   module  4   Id 436610832 " fill="rgb(255,0,0)" points="782.834,2628.08 803.249,2628.08 803.249,2623.8 782.834,2623.8 " />
<svg:polygon detid="436611088" count="1" value="129" id="4304040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 neg   module  4   Id 436611088 " fill="rgb(255,0,0)" points="782.834,2623.8 803.249,2623.8 803.249,2619.52 782.834,2619.52 " />
<svg:polygon detid="436611344" count="1" value="129" id="4304041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 neg   module  4   Id 436611344 " fill="rgb(255,0,0)" points="782.834,2619.52 803.249,2619.52 803.249,2615.24 782.834,2615.24 " />
<svg:polygon detid="436611600" count="1" value="129" id="4304042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 neg   module  4   Id 436611600 " fill="rgb(255,0,0)" points="782.834,2615.24 803.249,2615.24 803.249,2610.96 782.834,2610.96 " />
<svg:polygon detid="436611856" count="1" value="129" id="4304043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 neg   module  4   Id 436611856 " fill="rgb(255,0,0)" points="782.834,2610.96 803.249,2610.96 803.249,2606.67 782.834,2606.67 " />
<svg:polygon detid="436612112" count="1" value="129" id="4304044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 neg   module  4   Id 436612112 " fill="rgb(255,0,0)" points="782.834,2606.67 803.249,2606.67 803.249,2602.39 782.834,2602.39 " />
<svg:polygon detid="436612368" count="1" value="129" id="4304045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 neg   module  4   Id 436612368 " fill="rgb(255,0,0)" points="782.834,2602.39 803.249,2602.39 803.249,2598.11 782.834,2598.11 " />
<svg:polygon detid="436612624" count="1" value="129" id="4304046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 neg   module  4   Id 436612624 " fill="rgb(255,0,0)" points="782.834,2598.11 803.249,2598.11 803.249,2593.83 782.834,2593.83 " />
<svg:polygon detid="436612880" count="1" value="129" id="4304047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 neg   module  4   Id 436612880 " fill="rgb(255,0,0)" points="782.834,2593.83 803.249,2593.83 803.249,2589.55 782.834,2589.55 " />
<svg:polygon detid="436613136" count="1" value="129" id="4304048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 neg   module  4   Id 436613136 " fill="rgb(255,0,0)" points="782.834,2589.55 803.249,2589.55 803.249,2585.27 782.834,2585.27 " />
<svg:polygon detid="436613392" count="1" value="129" id="4304049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 neg   module  4   Id 436613392 " fill="rgb(255,0,0)" points="782.834,2585.27 803.249,2585.27 803.249,2580.98 782.834,2580.98 " />
<svg:polygon detid="436613648" count="1" value="129" id="4304050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 neg   module  4   Id 436613648 " fill="rgb(255,0,0)" points="782.834,2580.98 803.249,2580.98 803.249,2576.7 782.834,2576.7 " />
<svg:polygon detid="436613904" count="1" value="129" id="4304051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 neg   module  4   Id 436613904 " fill="rgb(255,0,0)" points="782.834,2576.7 803.249,2576.7 803.249,2572.42 782.834,2572.42 " />
<svg:polygon detid="436614160" count="1" value="129" id="4304052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 neg   module  4   Id 436614160 " fill="rgb(255,0,0)" points="782.834,2572.42 803.249,2572.42 803.249,2568.14 782.834,2568.14 " />
<svg:polygon detid="436614416" count="1" value="129" id="4304053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 neg   module  4   Id 436614416 " fill="rgb(255,0,0)" points="782.834,2568.14 803.249,2568.14 803.249,2563.86 782.834,2563.86 " />
<svg:polygon detid="436614672" count="1" value="129" id="4304054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 neg   module  4   Id 436614672 " fill="rgb(255,0,0)" points="782.834,2563.86 803.249,2563.86 803.249,2559.58 782.834,2559.58 " />
<svg:polygon detid="436614928" count="1" value="129" id="4304055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 neg   module  4   Id 436614928 " fill="rgb(255,0,0)" points="782.834,2559.58 803.249,2559.58 803.249,2555.3 782.834,2555.3 " />
<svg:polygon detid="436615184" count="1" value="129" id="4304056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 neg   module  4   Id 436615184 " fill="rgb(255,0,0)" points="782.834,2555.3 803.249,2555.3 803.249,2551.01 782.834,2551.01 " />
<svg:polygon detid="436615440" count="1" value="129" id="4304057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 neg   module  4   Id 436615440 " fill="rgb(255,0,0)" points="782.834,2551.01 803.249,2551.01 803.249,2546.73 782.834,2546.73 " />
<svg:polygon detid="436615696" count="1" value="129" id="4304058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 neg   module  4   Id 436615696 " fill="rgb(255,0,0)" points="782.834,2546.73 803.249,2546.73 803.249,2542.45 782.834,2542.45 " />
<svg:polygon detid="436615952" count="1" value="129" id="4304059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 neg   module  4   Id 436615952 " fill="rgb(255,0,0)" points="782.834,2542.45 803.249,2542.45 803.249,2538.17 782.834,2538.17 " />
<svg:polygon detid="436616208" count="1" value="129" id="4304060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 neg   module  4   Id 436616208 " fill="rgb(255,0,0)" points="782.834,2538.17 803.249,2538.17 803.249,2533.89 782.834,2533.89 " />
<svg:polygon detid="436616464" count="1" value="129" id="4304061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 neg   module  4   Id 436616464 " fill="rgb(255,0,0)" points="782.834,2533.89 803.249,2533.89 803.249,2529.61 782.834,2529.61 " />
<svg:polygon detid="436616720" count="1" value="129" id="4304062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 neg   module  4   Id 436616720 " fill="rgb(255,0,0)" points="782.834,2529.61 803.249,2529.61 803.249,2525.32 782.834,2525.32 " />
<svg:polygon detid="436616976" count="1" value="129" id="4304063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 neg   module  4   Id 436616976 " fill="rgb(255,0,0)" points="782.834,2525.32 803.249,2525.32 803.249,2521.04 782.834,2521.04 " />
<svg:polygon detid="436617232" count="1" value="129" id="4304064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 neg   module  4   Id 436617232 " fill="rgb(255,0,0)" points="782.834,2521.04 803.249,2521.04 803.249,2516.76 782.834,2516.76 " />
<svg:polygon detid="436617488" count="1" value="129" id="4304065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 neg   module  4   Id 436617488 " fill="rgb(255,0,0)" points="782.834,2516.76 803.249,2516.76 803.249,2512.48 782.834,2512.48 " />
<svg:polygon detid="436617744" count="1" value="129" id="4304066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 neg   module  4   Id 436617744 " fill="rgb(255,0,0)" points="782.834,2512.48 803.249,2512.48 803.249,2508.2 782.834,2508.2 " />
<svg:polygon detid="436618000" count="1" value="129" id="4304067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 neg   module  4   Id 436618000 " fill="rgb(255,0,0)" points="782.834,2508.2 803.249,2508.2 803.249,2503.92 782.834,2503.92 " />
<svg:polygon detid="436618256" count="1" value="129" id="4304068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 neg   module  4   Id 436618256 " fill="rgb(255,0,0)" points="782.834,2503.92 803.249,2503.92 803.249,2499.64 782.834,2499.64 " />
<svg:polygon detid="436618512" count="1" value="129" id="4304069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 neg   module  4   Id 436618512 " fill="rgb(255,0,0)" points="782.834,2499.64 803.249,2499.64 803.249,2495.35 782.834,2495.35 " />
<svg:polygon detid="436618768" count="1" value="129" id="4304070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 neg   module  4   Id 436618768 " fill="rgb(255,0,0)" points="782.834,2495.35 803.249,2495.35 803.249,2491.07 782.834,2491.07 " />
<svg:polygon detid="436619024" count="1" value="129" id="4304071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 neg   module  4   Id 436619024 " fill="rgb(255,0,0)" points="782.834,2491.07 803.249,2491.07 803.249,2486.79 782.834,2486.79 " />
<svg:polygon detid="436619280" count="1" value="129" id="4304072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 neg   module  4   Id 436619280 " fill="rgb(255,0,0)" points="782.834,2486.79 803.249,2486.79 803.249,2482.51 782.834,2482.51 " />
<svg:polygon detid="436619536" count="1" value="129" id="4304073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 neg   module  4   Id 436619536 " fill="rgb(255,0,0)" points="782.834,2482.51 803.249,2482.51 803.249,2478.23 782.834,2478.23 " />
<svg:polygon detid="436619792" count="1" value="129" id="4304074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 neg   module  4   Id 436619792 " fill="rgb(255,0,0)" points="782.834,2478.23 803.249,2478.23 803.249,2473.95 782.834,2473.95 " />
<svg:polygon detid="436601108" count="1" value="129" id="4305001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 neg   module  5   Id 436601108 " fill="rgb(255,0,0)" points="805.8,2790.78 826.215,2790.78 826.215,2786.5 805.8,2786.5 " />
<svg:polygon detid="436601364" count="1" value="129" id="4305002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 neg   module  5   Id 436601364 " fill="rgb(255,0,0)" points="805.8,2786.5 826.215,2786.5 826.215,2782.22 805.8,2782.22 " />
<svg:polygon detid="436601620" count="1" value="129" id="4305003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 neg   module  5   Id 436601620 " fill="rgb(255,0,0)" points="805.8,2782.22 826.215,2782.22 826.215,2777.94 805.8,2777.94 " />
<svg:polygon detid="436601876" count="1" value="129" id="4305004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 neg   module  5   Id 436601876 " fill="rgb(255,0,0)" points="805.8,2777.94 826.215,2777.94 826.215,2773.65 805.8,2773.65 " />
<svg:polygon detid="436602132" count="1" value="129" id="4305005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 neg   module  5   Id 436602132 " fill="rgb(255,0,0)" points="805.8,2773.65 826.215,2773.65 826.215,2769.37 805.8,2769.37 " />
<svg:polygon detid="436602388" count="1" value="129" id="4305006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 neg   module  5   Id 436602388 " fill="rgb(255,0,0)" points="805.8,2769.37 826.215,2769.37 826.215,2765.09 805.8,2765.09 " />
<svg:polygon detid="436602644" count="1" value="129" id="4305007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 neg   module  5   Id 436602644 " fill="rgb(255,0,0)" points="805.8,2765.09 826.215,2765.09 826.215,2760.81 805.8,2760.81 " />
<svg:polygon detid="436602900" count="1" value="129" id="4305008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 neg   module  5   Id 436602900 " fill="rgb(255,0,0)" points="805.8,2760.81 826.215,2760.81 826.215,2756.53 805.8,2756.53 " />
<svg:polygon detid="436603156" count="1" value="129" id="4305009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 neg   module  5   Id 436603156 " fill="rgb(255,0,0)" points="805.8,2756.53 826.215,2756.53 826.215,2752.25 805.8,2752.25 " />
<svg:polygon detid="436603412" count="1" value="129" id="4305010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 neg   module  5   Id 436603412 " fill="rgb(255,0,0)" points="805.8,2752.25 826.215,2752.25 826.215,2747.96 805.8,2747.96 " />
<svg:polygon detid="436603668" count="1" value="129" id="4305011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 neg   module  5   Id 436603668 " fill="rgb(255,0,0)" points="805.8,2747.96 826.215,2747.96 826.215,2743.68 805.8,2743.68 " />
<svg:polygon detid="436603924" count="1" value="129" id="4305012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 neg   module  5   Id 436603924 " fill="rgb(255,0,0)" points="805.8,2743.68 826.215,2743.68 826.215,2739.4 805.8,2739.4 " />
<svg:polygon detid="436604180" count="1" value="129" id="4305013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 neg   module  5   Id 436604180 " fill="rgb(255,0,0)" points="805.8,2739.4 826.215,2739.4 826.215,2735.12 805.8,2735.12 " />
<svg:polygon detid="436604436" count="1" value="129" id="4305014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 neg   module  5   Id 436604436 " fill="rgb(255,0,0)" points="805.8,2735.12 826.215,2735.12 826.215,2730.84 805.8,2730.84 " />
<svg:polygon detid="436604692" count="1" value="129" id="4305015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 neg   module  5   Id 436604692 " fill="rgb(255,0,0)" points="805.8,2730.84 826.215,2730.84 826.215,2726.56 805.8,2726.56 " />
<svg:polygon detid="436604948" count="1" value="129" id="4305016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 neg   module  5   Id 436604948 " fill="rgb(255,0,0)" points="805.8,2726.56 826.215,2726.56 826.215,2722.28 805.8,2722.28 " />
<svg:polygon detid="436605204" count="1" value="129" id="4305017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 neg   module  5   Id 436605204 " fill="rgb(255,0,0)" points="805.8,2722.28 826.215,2722.28 826.215,2717.99 805.8,2717.99 " />
<svg:polygon detid="436605460" count="1" value="129" id="4305018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 neg   module  5   Id 436605460 " fill="rgb(255,0,0)" points="805.8,2717.99 826.215,2717.99 826.215,2713.71 805.8,2713.71 " />
<svg:polygon detid="436605716" count="1" value="129" id="4305019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 neg   module  5   Id 436605716 " fill="rgb(255,0,0)" points="805.8,2713.71 826.215,2713.71 826.215,2709.43 805.8,2709.43 " />
<svg:polygon detid="436605972" count="1" value="129" id="4305020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 neg   module  5   Id 436605972 " fill="rgb(255,0,0)" points="805.8,2709.43 826.215,2709.43 826.215,2705.15 805.8,2705.15 " />
<svg:polygon detid="436606228" count="1" value="129" id="4305021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 neg   module  5   Id 436606228 " fill="rgb(255,0,0)" points="805.8,2705.15 826.215,2705.15 826.215,2700.87 805.8,2700.87 " />
<svg:polygon detid="436606484" count="1" value="129" id="4305022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 neg   module  5   Id 436606484 " fill="rgb(255,0,0)" points="805.8,2700.87 826.215,2700.87 826.215,2696.59 805.8,2696.59 " />
<svg:polygon detid="436606740" count="1" value="129" id="4305023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 neg   module  5   Id 436606740 " fill="rgb(255,0,0)" points="805.8,2696.59 826.215,2696.59 826.215,2692.3 805.8,2692.3 " />
<svg:polygon detid="436606996" count="1" value="129" id="4305024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 neg   module  5   Id 436606996 " fill="rgb(255,0,0)" points="805.8,2692.3 826.215,2692.3 826.215,2688.02 805.8,2688.02 " />
<svg:polygon detid="436607252" count="1" value="129" id="4305025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 neg   module  5   Id 436607252 " fill="rgb(255,0,0)" points="805.8,2688.02 826.215,2688.02 826.215,2683.74 805.8,2683.74 " />
<svg:polygon detid="436607508" count="1" value="129" id="4305026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 neg   module  5   Id 436607508 " fill="rgb(255,0,0)" points="805.8,2683.74 826.215,2683.74 826.215,2679.46 805.8,2679.46 " />
<svg:polygon detid="436607764" count="1" value="129" id="4305027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 neg   module  5   Id 436607764 " fill="rgb(255,0,0)" points="805.8,2679.46 826.215,2679.46 826.215,2675.18 805.8,2675.18 " />
<svg:polygon detid="436608020" count="1" value="129" id="4305028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 neg   module  5   Id 436608020 " fill="rgb(255,0,0)" points="805.8,2675.18 826.215,2675.18 826.215,2670.9 805.8,2670.9 " />
<svg:polygon detid="436608276" count="1" value="129" id="4305029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 neg   module  5   Id 436608276 " fill="rgb(255,0,0)" points="805.8,2670.9 826.215,2670.9 826.215,2666.62 805.8,2666.62 " />
<svg:polygon detid="436608532" count="1" value="129" id="4305030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 neg   module  5   Id 436608532 " fill="rgb(255,0,0)" points="805.8,2666.62 826.215,2666.62 826.215,2662.33 805.8,2662.33 " />
<svg:polygon detid="436608788" count="1" value="129" id="4305031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 neg   module  5   Id 436608788 " fill="rgb(255,0,0)" points="805.8,2662.33 826.215,2662.33 826.215,2658.05 805.8,2658.05 " />
<svg:polygon detid="436609044" count="1" value="129" id="4305032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 neg   module  5   Id 436609044 " fill="rgb(255,0,0)" points="805.8,2658.05 826.215,2658.05 826.215,2653.77 805.8,2653.77 " />
<svg:polygon detid="436609300" count="1" value="129" id="4305033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 neg   module  5   Id 436609300 " fill="rgb(255,0,0)" points="805.8,2653.77 826.215,2653.77 826.215,2649.49 805.8,2649.49 " />
<svg:polygon detid="436609556" count="1" value="129" id="4305034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 neg   module  5   Id 436609556 " fill="rgb(255,0,0)" points="805.8,2649.49 826.215,2649.49 826.215,2645.21 805.8,2645.21 " />
<svg:polygon detid="436609812" count="1" value="129" id="4305035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 neg   module  5   Id 436609812 " fill="rgb(255,0,0)" points="805.8,2645.21 826.215,2645.21 826.215,2640.93 805.8,2640.93 " />
<svg:polygon detid="436610068" count="1" value="129" id="4305036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 neg   module  5   Id 436610068 " fill="rgb(255,0,0)" points="805.8,2640.93 826.215,2640.93 826.215,2636.64 805.8,2636.64 " />
<svg:polygon detid="436610324" count="1" value="129" id="4305037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 neg   module  5   Id 436610324 " fill="rgb(255,0,0)" points="805.8,2636.64 826.215,2636.64 826.215,2632.36 805.8,2632.36 " />
<svg:polygon detid="436610580" count="1" value="129" id="4305038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 neg   module  5   Id 436610580 " fill="rgb(255,0,0)" points="805.8,2632.36 826.215,2632.36 826.215,2628.08 805.8,2628.08 " />
<svg:polygon detid="436610836" count="1" value="129" id="4305039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 neg   module  5   Id 436610836 " fill="rgb(255,0,0)" points="805.8,2628.08 826.215,2628.08 826.215,2623.8 805.8,2623.8 " />
<svg:polygon detid="436611092" count="1" value="129" id="4305040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 neg   module  5   Id 436611092 " fill="rgb(255,0,0)" points="805.8,2623.8 826.215,2623.8 826.215,2619.52 805.8,2619.52 " />
<svg:polygon detid="436611348" count="1" value="129" id="4305041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 neg   module  5   Id 436611348 " fill="rgb(255,0,0)" points="805.8,2619.52 826.215,2619.52 826.215,2615.24 805.8,2615.24 " />
<svg:polygon detid="436611604" count="1" value="129" id="4305042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 neg   module  5   Id 436611604 " fill="rgb(255,0,0)" points="805.8,2615.24 826.215,2615.24 826.215,2610.96 805.8,2610.96 " />
<svg:polygon detid="436611860" count="1" value="129" id="4305043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 neg   module  5   Id 436611860 " fill="rgb(255,0,0)" points="805.8,2610.96 826.215,2610.96 826.215,2606.67 805.8,2606.67 " />
<svg:polygon detid="436612116" count="1" value="129" id="4305044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 neg   module  5   Id 436612116 " fill="rgb(255,0,0)" points="805.8,2606.67 826.215,2606.67 826.215,2602.39 805.8,2602.39 " />
<svg:polygon detid="436612372" count="1" value="129" id="4305045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 neg   module  5   Id 436612372 " fill="rgb(255,0,0)" points="805.8,2602.39 826.215,2602.39 826.215,2598.11 805.8,2598.11 " />
<svg:polygon detid="436612628" count="1" value="129" id="4305046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 neg   module  5   Id 436612628 " fill="rgb(255,0,0)" points="805.8,2598.11 826.215,2598.11 826.215,2593.83 805.8,2593.83 " />
<svg:polygon detid="436612884" count="1" value="129" id="4305047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 neg   module  5   Id 436612884 " fill="rgb(255,0,0)" points="805.8,2593.83 826.215,2593.83 826.215,2589.55 805.8,2589.55 " />
<svg:polygon detid="436613140" count="1" value="129" id="4305048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 neg   module  5   Id 436613140 " fill="rgb(255,0,0)" points="805.8,2589.55 826.215,2589.55 826.215,2585.27 805.8,2585.27 " />
<svg:polygon detid="436613396" count="1" value="129" id="4305049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 neg   module  5   Id 436613396 " fill="rgb(255,0,0)" points="805.8,2585.27 826.215,2585.27 826.215,2580.98 805.8,2580.98 " />
<svg:polygon detid="436613652" count="1" value="129" id="4305050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 neg   module  5   Id 436613652 " fill="rgb(255,0,0)" points="805.8,2580.98 826.215,2580.98 826.215,2576.7 805.8,2576.7 " />
<svg:polygon detid="436613908" count="1" value="129" id="4305051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 neg   module  5   Id 436613908 " fill="rgb(255,0,0)" points="805.8,2576.7 826.215,2576.7 826.215,2572.42 805.8,2572.42 " />
<svg:polygon detid="436614164" count="1" value="129" id="4305052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 neg   module  5   Id 436614164 " fill="rgb(255,0,0)" points="805.8,2572.42 826.215,2572.42 826.215,2568.14 805.8,2568.14 " />
<svg:polygon detid="436614420" count="1" value="129" id="4305053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 neg   module  5   Id 436614420 " fill="rgb(255,0,0)" points="805.8,2568.14 826.215,2568.14 826.215,2563.86 805.8,2563.86 " />
<svg:polygon detid="436614676" count="1" value="129" id="4305054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 neg   module  5   Id 436614676 " fill="rgb(255,0,0)" points="805.8,2563.86 826.215,2563.86 826.215,2559.58 805.8,2559.58 " />
<svg:polygon detid="436614932" count="1" value="129" id="4305055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 neg   module  5   Id 436614932 " fill="rgb(255,0,0)" points="805.8,2559.58 826.215,2559.58 826.215,2555.3 805.8,2555.3 " />
<svg:polygon detid="436615188" count="1" value="129" id="4305056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 neg   module  5   Id 436615188 " fill="rgb(255,0,0)" points="805.8,2555.3 826.215,2555.3 826.215,2551.01 805.8,2551.01 " />
<svg:polygon detid="436615444" count="1" value="129" id="4305057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 neg   module  5   Id 436615444 " fill="rgb(255,0,0)" points="805.8,2551.01 826.215,2551.01 826.215,2546.73 805.8,2546.73 " />
<svg:polygon detid="436615700" count="1" value="129" id="4305058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 neg   module  5   Id 436615700 " fill="rgb(255,0,0)" points="805.8,2546.73 826.215,2546.73 826.215,2542.45 805.8,2542.45 " />
<svg:polygon detid="436615956" count="1" value="129" id="4305059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 neg   module  5   Id 436615956 " fill="rgb(255,0,0)" points="805.8,2542.45 826.215,2542.45 826.215,2538.17 805.8,2538.17 " />
<svg:polygon detid="436616212" count="1" value="129" id="4305060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 neg   module  5   Id 436616212 " fill="rgb(255,0,0)" points="805.8,2538.17 826.215,2538.17 826.215,2533.89 805.8,2533.89 " />
<svg:polygon detid="436616468" count="1" value="129" id="4305061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 neg   module  5   Id 436616468 " fill="rgb(255,0,0)" points="805.8,2533.89 826.215,2533.89 826.215,2529.61 805.8,2529.61 " />
<svg:polygon detid="436616724" count="1" value="129" id="4305062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 neg   module  5   Id 436616724 " fill="rgb(255,0,0)" points="805.8,2529.61 826.215,2529.61 826.215,2525.32 805.8,2525.32 " />
<svg:polygon detid="436616980" count="1" value="129" id="4305063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 neg   module  5   Id 436616980 " fill="rgb(255,0,0)" points="805.8,2525.32 826.215,2525.32 826.215,2521.04 805.8,2521.04 " />
<svg:polygon detid="436617236" count="1" value="129" id="4305064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 neg   module  5   Id 436617236 " fill="rgb(255,0,0)" points="805.8,2521.04 826.215,2521.04 826.215,2516.76 805.8,2516.76 " />
<svg:polygon detid="436617492" count="1" value="129" id="4305065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 neg   module  5   Id 436617492 " fill="rgb(255,0,0)" points="805.8,2516.76 826.215,2516.76 826.215,2512.48 805.8,2512.48 " />
<svg:polygon detid="436617748" count="1" value="129" id="4305066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 neg   module  5   Id 436617748 " fill="rgb(255,0,0)" points="805.8,2512.48 826.215,2512.48 826.215,2508.2 805.8,2508.2 " />
<svg:polygon detid="436618004" count="1" value="129" id="4305067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 neg   module  5   Id 436618004 " fill="rgb(255,0,0)" points="805.8,2508.2 826.215,2508.2 826.215,2503.92 805.8,2503.92 " />
<svg:polygon detid="436618260" count="1" value="129" id="4305068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 neg   module  5   Id 436618260 " fill="rgb(255,0,0)" points="805.8,2503.92 826.215,2503.92 826.215,2499.64 805.8,2499.64 " />
<svg:polygon detid="436618516" count="1" value="129" id="4305069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 neg   module  5   Id 436618516 " fill="rgb(255,0,0)" points="805.8,2499.64 826.215,2499.64 826.215,2495.35 805.8,2495.35 " />
<svg:polygon detid="436618772" count="1" value="129" id="4305070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 neg   module  5   Id 436618772 " fill="rgb(255,0,0)" points="805.8,2495.35 826.215,2495.35 826.215,2491.07 805.8,2491.07 " />
<svg:polygon detid="436619028" count="1" value="129" id="4305071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 neg   module  5   Id 436619028 " fill="rgb(255,0,0)" points="805.8,2491.07 826.215,2491.07 826.215,2486.79 805.8,2486.79 " />
<svg:polygon detid="436619284" count="1" value="129" id="4305072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 neg   module  5   Id 436619284 " fill="rgb(255,0,0)" points="805.8,2486.79 826.215,2486.79 826.215,2482.51 805.8,2482.51 " />
<svg:polygon detid="436619540" count="1" value="129" id="4305073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 neg   module  5   Id 436619540 " fill="rgb(255,0,0)" points="805.8,2482.51 826.215,2482.51 826.215,2478.23 805.8,2478.23 " />
<svg:polygon detid="436619796" count="1" value="129" id="4305074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 neg   module  5   Id 436619796 " fill="rgb(255,0,0)" points="805.8,2478.23 826.215,2478.23 826.215,2473.95 805.8,2473.95 " />
<svg:polygon detid="436601112" count="1" value="129" id="4306001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 neg   module  6   Id 436601112 " fill="rgb(255,0,0)" points="828.767,2790.78 849.182,2790.78 849.182,2786.5 828.767,2786.5 " />
<svg:polygon detid="436601368" count="1" value="129" id="4306002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 neg   module  6   Id 436601368 " fill="rgb(255,0,0)" points="828.767,2786.5 849.182,2786.5 849.182,2782.22 828.767,2782.22 " />
<svg:polygon detid="436601624" count="1" value="129" id="4306003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 neg   module  6   Id 436601624 " fill="rgb(255,0,0)" points="828.767,2782.22 849.182,2782.22 849.182,2777.94 828.767,2777.94 " />
<svg:polygon detid="436601880" count="1" value="129" id="4306004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 neg   module  6   Id 436601880 " fill="rgb(255,0,0)" points="828.767,2777.94 849.182,2777.94 849.182,2773.65 828.767,2773.65 " />
<svg:polygon detid="436602136" count="1" value="129" id="4306005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 neg   module  6   Id 436602136 " fill="rgb(255,0,0)" points="828.767,2773.65 849.182,2773.65 849.182,2769.37 828.767,2769.37 " />
<svg:polygon detid="436602392" count="1" value="129" id="4306006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 neg   module  6   Id 436602392 " fill="rgb(255,0,0)" points="828.767,2769.37 849.182,2769.37 849.182,2765.09 828.767,2765.09 " />
<svg:polygon detid="436602648" count="1" value="129" id="4306007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 neg   module  6   Id 436602648 " fill="rgb(255,0,0)" points="828.767,2765.09 849.182,2765.09 849.182,2760.81 828.767,2760.81 " />
<svg:polygon detid="436602904" count="1" value="129" id="4306008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 neg   module  6   Id 436602904 " fill="rgb(255,0,0)" points="828.767,2760.81 849.182,2760.81 849.182,2756.53 828.767,2756.53 " />
<svg:polygon detid="436603160" count="1" value="129" id="4306009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 neg   module  6   Id 436603160 " fill="rgb(255,0,0)" points="828.767,2756.53 849.182,2756.53 849.182,2752.25 828.767,2752.25 " />
<svg:polygon detid="436603416" count="1" value="129" id="4306010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 neg   module  6   Id 436603416 " fill="rgb(255,0,0)" points="828.767,2752.25 849.182,2752.25 849.182,2747.96 828.767,2747.96 " />
<svg:polygon detid="436603672" count="1" value="129" id="4306011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 neg   module  6   Id 436603672 " fill="rgb(255,0,0)" points="828.767,2747.96 849.182,2747.96 849.182,2743.68 828.767,2743.68 " />
<svg:polygon detid="436603928" count="1" value="129" id="4306012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 neg   module  6   Id 436603928 " fill="rgb(255,0,0)" points="828.767,2743.68 849.182,2743.68 849.182,2739.4 828.767,2739.4 " />
<svg:polygon detid="436604184" count="1" value="129" id="4306013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 neg   module  6   Id 436604184 " fill="rgb(255,0,0)" points="828.767,2739.4 849.182,2739.4 849.182,2735.12 828.767,2735.12 " />
<svg:polygon detid="436604440" count="1" value="129" id="4306014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 neg   module  6   Id 436604440 " fill="rgb(255,0,0)" points="828.767,2735.12 849.182,2735.12 849.182,2730.84 828.767,2730.84 " />
<svg:polygon detid="436604696" count="1" value="129" id="4306015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 neg   module  6   Id 436604696 " fill="rgb(255,0,0)" points="828.767,2730.84 849.182,2730.84 849.182,2726.56 828.767,2726.56 " />
<svg:polygon detid="436604952" count="1" value="129" id="4306016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 neg   module  6   Id 436604952 " fill="rgb(255,0,0)" points="828.767,2726.56 849.182,2726.56 849.182,2722.28 828.767,2722.28 " />
<svg:polygon detid="436605208" count="1" value="129" id="4306017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 neg   module  6   Id 436605208 " fill="rgb(255,0,0)" points="828.767,2722.28 849.182,2722.28 849.182,2717.99 828.767,2717.99 " />
<svg:polygon detid="436605464" count="1" value="129" id="4306018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 neg   module  6   Id 436605464 " fill="rgb(255,0,0)" points="828.767,2717.99 849.182,2717.99 849.182,2713.71 828.767,2713.71 " />
<svg:polygon detid="436605720" count="1" value="129" id="4306019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 neg   module  6   Id 436605720 " fill="rgb(255,0,0)" points="828.767,2713.71 849.182,2713.71 849.182,2709.43 828.767,2709.43 " />
<svg:polygon detid="436605976" count="1" value="129" id="4306020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 neg   module  6   Id 436605976 " fill="rgb(255,0,0)" points="828.767,2709.43 849.182,2709.43 849.182,2705.15 828.767,2705.15 " />
<svg:polygon detid="436606232" count="1" value="129" id="4306021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 neg   module  6   Id 436606232 " fill="rgb(255,0,0)" points="828.767,2705.15 849.182,2705.15 849.182,2700.87 828.767,2700.87 " />
<svg:polygon detid="436606488" count="1" value="129" id="4306022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 neg   module  6   Id 436606488 " fill="rgb(255,0,0)" points="828.767,2700.87 849.182,2700.87 849.182,2696.59 828.767,2696.59 " />
<svg:polygon detid="436606744" count="1" value="129" id="4306023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 neg   module  6   Id 436606744 " fill="rgb(255,0,0)" points="828.767,2696.59 849.182,2696.59 849.182,2692.3 828.767,2692.3 " />
<svg:polygon detid="436607000" count="1" value="129" id="4306024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 neg   module  6   Id 436607000 " fill="rgb(255,0,0)" points="828.767,2692.3 849.182,2692.3 849.182,2688.02 828.767,2688.02 " />
<svg:polygon detid="436607256" count="1" value="129" id="4306025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 neg   module  6   Id 436607256 " fill="rgb(255,0,0)" points="828.767,2688.02 849.182,2688.02 849.182,2683.74 828.767,2683.74 " />
<svg:polygon detid="436607512" count="1" value="129" id="4306026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 neg   module  6   Id 436607512 " fill="rgb(255,0,0)" points="828.767,2683.74 849.182,2683.74 849.182,2679.46 828.767,2679.46 " />
<svg:polygon detid="436607768" count="1" value="129" id="4306027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 neg   module  6   Id 436607768 " fill="rgb(255,0,0)" points="828.767,2679.46 849.182,2679.46 849.182,2675.18 828.767,2675.18 " />
<svg:polygon detid="436608024" count="1" value="129" id="4306028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 neg   module  6   Id 436608024 " fill="rgb(255,0,0)" points="828.767,2675.18 849.182,2675.18 849.182,2670.9 828.767,2670.9 " />
<svg:polygon detid="436608280" count="1" value="129" id="4306029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 neg   module  6   Id 436608280 " fill="rgb(255,0,0)" points="828.767,2670.9 849.182,2670.9 849.182,2666.62 828.767,2666.62 " />
<svg:polygon detid="436608536" count="1" value="129" id="4306030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 neg   module  6   Id 436608536 " fill="rgb(255,0,0)" points="828.767,2666.62 849.182,2666.62 849.182,2662.33 828.767,2662.33 " />
<svg:polygon detid="436608792" count="1" value="129" id="4306031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 neg   module  6   Id 436608792 " fill="rgb(255,0,0)" points="828.767,2662.33 849.182,2662.33 849.182,2658.05 828.767,2658.05 " />
<svg:polygon detid="436609048" count="1" value="129" id="4306032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 neg   module  6   Id 436609048 " fill="rgb(255,0,0)" points="828.767,2658.05 849.182,2658.05 849.182,2653.77 828.767,2653.77 " />
<svg:polygon detid="436609304" count="1" value="129" id="4306033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 neg   module  6   Id 436609304 " fill="rgb(255,0,0)" points="828.767,2653.77 849.182,2653.77 849.182,2649.49 828.767,2649.49 " />
<svg:polygon detid="436609560" count="1" value="129" id="4306034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 neg   module  6   Id 436609560 " fill="rgb(255,0,0)" points="828.767,2649.49 849.182,2649.49 849.182,2645.21 828.767,2645.21 " />
<svg:polygon detid="436609816" count="1" value="129" id="4306035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 neg   module  6   Id 436609816 " fill="rgb(255,0,0)" points="828.767,2645.21 849.182,2645.21 849.182,2640.93 828.767,2640.93 " />
<svg:polygon detid="436610072" count="1" value="129" id="4306036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 neg   module  6   Id 436610072 " fill="rgb(255,0,0)" points="828.767,2640.93 849.182,2640.93 849.182,2636.64 828.767,2636.64 " />
<svg:polygon detid="436610328" count="1" value="129" id="4306037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 neg   module  6   Id 436610328 " fill="rgb(255,0,0)" points="828.767,2636.64 849.182,2636.64 849.182,2632.36 828.767,2632.36 " />
<svg:polygon detid="436610584" count="1" value="129" id="4306038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 neg   module  6   Id 436610584 " fill="rgb(255,0,0)" points="828.767,2632.36 849.182,2632.36 849.182,2628.08 828.767,2628.08 " />
<svg:polygon detid="436610840" count="1" value="129" id="4306039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 neg   module  6   Id 436610840 " fill="rgb(255,0,0)" points="828.767,2628.08 849.182,2628.08 849.182,2623.8 828.767,2623.8 " />
<svg:polygon detid="436611096" count="1" value="129" id="4306040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 neg   module  6   Id 436611096 " fill="rgb(255,0,0)" points="828.767,2623.8 849.182,2623.8 849.182,2619.52 828.767,2619.52 " />
<svg:polygon detid="436611352" count="1" value="129" id="4306041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 neg   module  6   Id 436611352 " fill="rgb(255,0,0)" points="828.767,2619.52 849.182,2619.52 849.182,2615.24 828.767,2615.24 " />
<svg:polygon detid="436611608" count="1" value="129" id="4306042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 neg   module  6   Id 436611608 " fill="rgb(255,0,0)" points="828.767,2615.24 849.182,2615.24 849.182,2610.96 828.767,2610.96 " />
<svg:polygon detid="436611864" count="1" value="129" id="4306043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 neg   module  6   Id 436611864 " fill="rgb(255,0,0)" points="828.767,2610.96 849.182,2610.96 849.182,2606.67 828.767,2606.67 " />
<svg:polygon detid="436612120" count="1" value="129" id="4306044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 neg   module  6   Id 436612120 " fill="rgb(255,0,0)" points="828.767,2606.67 849.182,2606.67 849.182,2602.39 828.767,2602.39 " />
<svg:polygon detid="436612376" count="1" value="129" id="4306045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 neg   module  6   Id 436612376 " fill="rgb(255,0,0)" points="828.767,2602.39 849.182,2602.39 849.182,2598.11 828.767,2598.11 " />
<svg:polygon detid="436612632" count="1" value="129" id="4306046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 neg   module  6   Id 436612632 " fill="rgb(255,0,0)" points="828.767,2598.11 849.182,2598.11 849.182,2593.83 828.767,2593.83 " />
<svg:polygon detid="436612888" count="1" value="129" id="4306047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 neg   module  6   Id 436612888 " fill="rgb(255,0,0)" points="828.767,2593.83 849.182,2593.83 849.182,2589.55 828.767,2589.55 " />
<svg:polygon detid="436613144" count="1" value="129" id="4306048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 neg   module  6   Id 436613144 " fill="rgb(255,0,0)" points="828.767,2589.55 849.182,2589.55 849.182,2585.27 828.767,2585.27 " />
<svg:polygon detid="436613400" count="1" value="129" id="4306049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 neg   module  6   Id 436613400 " fill="rgb(255,0,0)" points="828.767,2585.27 849.182,2585.27 849.182,2580.98 828.767,2580.98 " />
<svg:polygon detid="436613656" count="1" value="129" id="4306050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 neg   module  6   Id 436613656 " fill="rgb(255,0,0)" points="828.767,2580.98 849.182,2580.98 849.182,2576.7 828.767,2576.7 " />
<svg:polygon detid="436613912" count="1" value="129" id="4306051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 neg   module  6   Id 436613912 " fill="rgb(255,0,0)" points="828.767,2576.7 849.182,2576.7 849.182,2572.42 828.767,2572.42 " />
<svg:polygon detid="436614168" count="1" value="129" id="4306052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 neg   module  6   Id 436614168 " fill="rgb(255,0,0)" points="828.767,2572.42 849.182,2572.42 849.182,2568.14 828.767,2568.14 " />
<svg:polygon detid="436614424" count="1" value="129" id="4306053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 neg   module  6   Id 436614424 " fill="rgb(255,0,0)" points="828.767,2568.14 849.182,2568.14 849.182,2563.86 828.767,2563.86 " />
<svg:polygon detid="436614680" count="1" value="129" id="4306054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 neg   module  6   Id 436614680 " fill="rgb(255,0,0)" points="828.767,2563.86 849.182,2563.86 849.182,2559.58 828.767,2559.58 " />
<svg:polygon detid="436614936" count="1" value="129" id="4306055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 neg   module  6   Id 436614936 " fill="rgb(255,0,0)" points="828.767,2559.58 849.182,2559.58 849.182,2555.3 828.767,2555.3 " />
<svg:polygon detid="436615192" count="1" value="129" id="4306056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 neg   module  6   Id 436615192 " fill="rgb(255,0,0)" points="828.767,2555.3 849.182,2555.3 849.182,2551.01 828.767,2551.01 " />
<svg:polygon detid="436615448" count="1" value="129" id="4306057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 neg   module  6   Id 436615448 " fill="rgb(255,0,0)" points="828.767,2551.01 849.182,2551.01 849.182,2546.73 828.767,2546.73 " />
<svg:polygon detid="436615704" count="1" value="129" id="4306058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 neg   module  6   Id 436615704 " fill="rgb(255,0,0)" points="828.767,2546.73 849.182,2546.73 849.182,2542.45 828.767,2542.45 " />
<svg:polygon detid="436615960" count="1" value="129" id="4306059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 neg   module  6   Id 436615960 " fill="rgb(255,0,0)" points="828.767,2542.45 849.182,2542.45 849.182,2538.17 828.767,2538.17 " />
<svg:polygon detid="436616216" count="1" value="129" id="4306060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 neg   module  6   Id 436616216 " fill="rgb(255,0,0)" points="828.767,2538.17 849.182,2538.17 849.182,2533.89 828.767,2533.89 " />
<svg:polygon detid="436616472" count="1" value="129" id="4306061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 neg   module  6   Id 436616472 " fill="rgb(255,0,0)" points="828.767,2533.89 849.182,2533.89 849.182,2529.61 828.767,2529.61 " />
<svg:polygon detid="436616728" count="1" value="129" id="4306062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 neg   module  6   Id 436616728 " fill="rgb(255,0,0)" points="828.767,2529.61 849.182,2529.61 849.182,2525.32 828.767,2525.32 " />
<svg:polygon detid="436616984" count="1" value="129" id="4306063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 neg   module  6   Id 436616984 " fill="rgb(255,0,0)" points="828.767,2525.32 849.182,2525.32 849.182,2521.04 828.767,2521.04 " />
<svg:polygon detid="436617240" count="1" value="129" id="4306064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 neg   module  6   Id 436617240 " fill="rgb(255,0,0)" points="828.767,2521.04 849.182,2521.04 849.182,2516.76 828.767,2516.76 " />
<svg:polygon detid="436617496" count="1" value="129" id="4306065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 neg   module  6   Id 436617496 " fill="rgb(255,0,0)" points="828.767,2516.76 849.182,2516.76 849.182,2512.48 828.767,2512.48 " />
<svg:polygon detid="436617752" count="1" value="129" id="4306066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 neg   module  6   Id 436617752 " fill="rgb(255,0,0)" points="828.767,2512.48 849.182,2512.48 849.182,2508.2 828.767,2508.2 " />
<svg:polygon detid="436618008" count="1" value="129" id="4306067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 neg   module  6   Id 436618008 " fill="rgb(255,0,0)" points="828.767,2508.2 849.182,2508.2 849.182,2503.92 828.767,2503.92 " />
<svg:polygon detid="436618264" count="1" value="129" id="4306068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 neg   module  6   Id 436618264 " fill="rgb(255,0,0)" points="828.767,2503.92 849.182,2503.92 849.182,2499.64 828.767,2499.64 " />
<svg:polygon detid="436618520" count="1" value="129" id="4306069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 neg   module  6   Id 436618520 " fill="rgb(255,0,0)" points="828.767,2499.64 849.182,2499.64 849.182,2495.35 828.767,2495.35 " />
<svg:polygon detid="436618776" count="1" value="129" id="4306070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 neg   module  6   Id 436618776 " fill="rgb(255,0,0)" points="828.767,2495.35 849.182,2495.35 849.182,2491.07 828.767,2491.07 " />
<svg:polygon detid="436619032" count="1" value="129" id="4306071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 neg   module  6   Id 436619032 " fill="rgb(255,0,0)" points="828.767,2491.07 849.182,2491.07 849.182,2486.79 828.767,2486.79 " />
<svg:polygon detid="436619288" count="1" value="129" id="4306072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 neg   module  6   Id 436619288 " fill="rgb(255,0,0)" points="828.767,2486.79 849.182,2486.79 849.182,2482.51 828.767,2482.51 " />
<svg:polygon detid="436619544" count="1" value="129" id="4306073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 neg   module  6   Id 436619544 " fill="rgb(255,0,0)" points="828.767,2482.51 849.182,2482.51 849.182,2478.23 828.767,2478.23 " />
<svg:polygon detid="436619800" count="1" value="129" id="4306074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 neg   module  6   Id 436619800 " fill="rgb(255,0,0)" points="828.767,2478.23 849.182,2478.23 849.182,2473.95 828.767,2473.95 " />
<svg:polygon detid="436633860" count="1" value="129" id="4307001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 pos   module  1   Id 436633860 " fill="rgb(255,0,0)" points="851.733,2790.78 872.148,2790.78 872.148,2786.5 851.733,2786.5 " />
<svg:polygon detid="436634116" count="1" value="129" id="4307002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 pos   module  1   Id 436634116 " fill="rgb(255,0,0)" points="851.733,2786.5 872.148,2786.5 872.148,2782.22 851.733,2782.22 " />
<svg:polygon detid="436634372" count="1" value="129" id="4307003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 pos   module  1   Id 436634372 " fill="rgb(255,0,0)" points="851.733,2782.22 872.148,2782.22 872.148,2777.94 851.733,2777.94 " />
<svg:polygon detid="436634628" count="1" value="129" id="4307004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 pos   module  1   Id 436634628 " fill="rgb(255,0,0)" points="851.733,2777.94 872.148,2777.94 872.148,2773.65 851.733,2773.65 " />
<svg:polygon detid="436634884" count="1" value="129" id="4307005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 pos   module  1   Id 436634884 " fill="rgb(255,0,0)" points="851.733,2773.65 872.148,2773.65 872.148,2769.37 851.733,2769.37 " />
<svg:polygon detid="436635140" count="1" value="129" id="4307006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 pos   module  1   Id 436635140 " fill="rgb(255,0,0)" points="851.733,2769.37 872.148,2769.37 872.148,2765.09 851.733,2765.09 " />
<svg:polygon detid="436635396" count="1" value="129" id="4307007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 pos   module  1   Id 436635396 " fill="rgb(255,0,0)" points="851.733,2765.09 872.148,2765.09 872.148,2760.81 851.733,2760.81 " />
<svg:polygon detid="436635652" count="1" value="129" id="4307008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 pos   module  1   Id 436635652 " fill="rgb(255,0,0)" points="851.733,2760.81 872.148,2760.81 872.148,2756.53 851.733,2756.53 " />
<svg:polygon detid="436635908" count="1" value="129" id="4307009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 pos   module  1   Id 436635908 " fill="rgb(255,0,0)" points="851.733,2756.53 872.148,2756.53 872.148,2752.25 851.733,2752.25 " />
<svg:polygon detid="436636164" count="1" value="129" id="4307010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 pos   module  1   Id 436636164 " fill="rgb(255,0,0)" points="851.733,2752.25 872.148,2752.25 872.148,2747.96 851.733,2747.96 " />
<svg:polygon detid="436636420" count="1" value="129" id="4307011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 pos   module  1   Id 436636420 " fill="rgb(255,0,0)" points="851.733,2747.96 872.148,2747.96 872.148,2743.68 851.733,2743.68 " />
<svg:polygon detid="436636676" count="1" value="129" id="4307012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 pos   module  1   Id 436636676 " fill="rgb(255,0,0)" points="851.733,2743.68 872.148,2743.68 872.148,2739.4 851.733,2739.4 " />
<svg:polygon detid="436636932" count="1" value="129" id="4307013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 pos   module  1   Id 436636932 " fill="rgb(255,0,0)" points="851.733,2739.4 872.148,2739.4 872.148,2735.12 851.733,2735.12 " />
<svg:polygon detid="436637188" count="1" value="129" id="4307014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 pos   module  1   Id 436637188 " fill="rgb(255,0,0)" points="851.733,2735.12 872.148,2735.12 872.148,2730.84 851.733,2730.84 " />
<svg:polygon detid="436637444" count="1" value="129" id="4307015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 pos   module  1   Id 436637444 " fill="rgb(255,0,0)" points="851.733,2730.84 872.148,2730.84 872.148,2726.56 851.733,2726.56 " />
<svg:polygon detid="436637700" count="1" value="129" id="4307016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 pos   module  1   Id 436637700 " fill="rgb(255,0,0)" points="851.733,2726.56 872.148,2726.56 872.148,2722.28 851.733,2722.28 " />
<svg:polygon detid="436637956" count="1" value="129" id="4307017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 pos   module  1   Id 436637956 " fill="rgb(255,0,0)" points="851.733,2722.28 872.148,2722.28 872.148,2717.99 851.733,2717.99 " />
<svg:polygon detid="436638212" count="1" value="129" id="4307018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 pos   module  1   Id 436638212 " fill="rgb(255,0,0)" points="851.733,2717.99 872.148,2717.99 872.148,2713.71 851.733,2713.71 " />
<svg:polygon detid="436638468" count="1" value="129" id="4307019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 pos   module  1   Id 436638468 " fill="rgb(255,0,0)" points="851.733,2713.71 872.148,2713.71 872.148,2709.43 851.733,2709.43 " />
<svg:polygon detid="436638724" count="1" value="129" id="4307020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 pos   module  1   Id 436638724 " fill="rgb(255,0,0)" points="851.733,2709.43 872.148,2709.43 872.148,2705.15 851.733,2705.15 " />
<svg:polygon detid="436638980" count="1" value="129" id="4307021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 pos   module  1   Id 436638980 " fill="rgb(255,0,0)" points="851.733,2705.15 872.148,2705.15 872.148,2700.87 851.733,2700.87 " />
<svg:polygon detid="436639236" count="1" value="129" id="4307022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 pos   module  1   Id 436639236 " fill="rgb(255,0,0)" points="851.733,2700.87 872.148,2700.87 872.148,2696.59 851.733,2696.59 " />
<svg:polygon detid="436639492" count="1" value="129" id="4307023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 pos   module  1   Id 436639492 " fill="rgb(255,0,0)" points="851.733,2696.59 872.148,2696.59 872.148,2692.3 851.733,2692.3 " />
<svg:polygon detid="436639748" count="1" value="129" id="4307024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 pos   module  1   Id 436639748 " fill="rgb(255,0,0)" points="851.733,2692.3 872.148,2692.3 872.148,2688.02 851.733,2688.02 " />
<svg:polygon detid="436640004" count="1" value="129" id="4307025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 pos   module  1   Id 436640004 " fill="rgb(255,0,0)" points="851.733,2688.02 872.148,2688.02 872.148,2683.74 851.733,2683.74 " />
<svg:polygon detid="436640260" count="1" value="129" id="4307026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 pos   module  1   Id 436640260 " fill="rgb(255,0,0)" points="851.733,2683.74 872.148,2683.74 872.148,2679.46 851.733,2679.46 " />
<svg:polygon detid="436640516" count="1" value="129" id="4307027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 pos   module  1   Id 436640516 " fill="rgb(255,0,0)" points="851.733,2679.46 872.148,2679.46 872.148,2675.18 851.733,2675.18 " />
<svg:polygon detid="436640772" count="1" value="129" id="4307028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 pos   module  1   Id 436640772 " fill="rgb(255,0,0)" points="851.733,2675.18 872.148,2675.18 872.148,2670.9 851.733,2670.9 " />
<svg:polygon detid="436641028" count="1" value="129" id="4307029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 pos   module  1   Id 436641028 " fill="rgb(255,0,0)" points="851.733,2670.9 872.148,2670.9 872.148,2666.62 851.733,2666.62 " />
<svg:polygon detid="436641284" count="1" value="129" id="4307030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 pos   module  1   Id 436641284 " fill="rgb(255,0,0)" points="851.733,2666.62 872.148,2666.62 872.148,2662.33 851.733,2662.33 " />
<svg:polygon detid="436641540" count="1" value="129" id="4307031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 pos   module  1   Id 436641540 " fill="rgb(255,0,0)" points="851.733,2662.33 872.148,2662.33 872.148,2658.05 851.733,2658.05 " />
<svg:polygon detid="436641796" count="1" value="129" id="4307032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 pos   module  1   Id 436641796 " fill="rgb(255,0,0)" points="851.733,2658.05 872.148,2658.05 872.148,2653.77 851.733,2653.77 " />
<svg:polygon detid="436642052" count="1" value="129" id="4307033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 pos   module  1   Id 436642052 " fill="rgb(255,0,0)" points="851.733,2653.77 872.148,2653.77 872.148,2649.49 851.733,2649.49 " />
<svg:polygon detid="436642308" count="1" value="129" id="4307034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 pos   module  1   Id 436642308 " fill="rgb(255,0,0)" points="851.733,2649.49 872.148,2649.49 872.148,2645.21 851.733,2645.21 " />
<svg:polygon detid="436642564" count="1" value="129" id="4307035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 pos   module  1   Id 436642564 " fill="rgb(255,0,0)" points="851.733,2645.21 872.148,2645.21 872.148,2640.93 851.733,2640.93 " />
<svg:polygon detid="436642820" count="1" value="129" id="4307036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 pos   module  1   Id 436642820 " fill="rgb(255,0,0)" points="851.733,2640.93 872.148,2640.93 872.148,2636.64 851.733,2636.64 " />
<svg:polygon detid="436643076" count="1" value="129" id="4307037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 pos   module  1   Id 436643076 " fill="rgb(255,0,0)" points="851.733,2636.64 872.148,2636.64 872.148,2632.36 851.733,2632.36 " />
<svg:polygon detid="436643332" count="1" value="129" id="4307038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 pos   module  1   Id 436643332 " fill="rgb(255,0,0)" points="851.733,2632.36 872.148,2632.36 872.148,2628.08 851.733,2628.08 " />
<svg:polygon detid="436643588" count="1" value="129" id="4307039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 pos   module  1   Id 436643588 " fill="rgb(255,0,0)" points="851.733,2628.08 872.148,2628.08 872.148,2623.8 851.733,2623.8 " />
<svg:polygon detid="436643844" count="1" value="129" id="4307040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 pos   module  1   Id 436643844 " fill="rgb(255,0,0)" points="851.733,2623.8 872.148,2623.8 872.148,2619.52 851.733,2619.52 " />
<svg:polygon detid="436644100" count="1" value="129" id="4307041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 pos   module  1   Id 436644100 " fill="rgb(255,0,0)" points="851.733,2619.52 872.148,2619.52 872.148,2615.24 851.733,2615.24 " />
<svg:polygon detid="436644356" count="1" value="129" id="4307042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 pos   module  1   Id 436644356 " fill="rgb(255,0,0)" points="851.733,2615.24 872.148,2615.24 872.148,2610.96 851.733,2610.96 " />
<svg:polygon detid="436644612" count="1" value="129" id="4307043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 pos   module  1   Id 436644612 " fill="rgb(255,0,0)" points="851.733,2610.96 872.148,2610.96 872.148,2606.67 851.733,2606.67 " />
<svg:polygon detid="436644868" count="1" value="129" id="4307044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 pos   module  1   Id 436644868 " fill="rgb(255,0,0)" points="851.733,2606.67 872.148,2606.67 872.148,2602.39 851.733,2602.39 " />
<svg:polygon detid="436645124" count="1" value="129" id="4307045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 pos   module  1   Id 436645124 " fill="rgb(255,0,0)" points="851.733,2602.39 872.148,2602.39 872.148,2598.11 851.733,2598.11 " />
<svg:polygon detid="436645380" count="1" value="129" id="4307046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 pos   module  1   Id 436645380 " fill="rgb(255,0,0)" points="851.733,2598.11 872.148,2598.11 872.148,2593.83 851.733,2593.83 " />
<svg:polygon detid="436645636" count="1" value="129" id="4307047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 pos   module  1   Id 436645636 " fill="rgb(255,0,0)" points="851.733,2593.83 872.148,2593.83 872.148,2589.55 851.733,2589.55 " />
<svg:polygon detid="436645892" count="1" value="129" id="4307048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 pos   module  1   Id 436645892 " fill="rgb(255,0,0)" points="851.733,2589.55 872.148,2589.55 872.148,2585.27 851.733,2585.27 " />
<svg:polygon detid="436646148" count="1" value="129" id="4307049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 pos   module  1   Id 436646148 " fill="rgb(255,0,0)" points="851.733,2585.27 872.148,2585.27 872.148,2580.98 851.733,2580.98 " />
<svg:polygon detid="436646404" count="1" value="129" id="4307050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 pos   module  1   Id 436646404 " fill="rgb(255,0,0)" points="851.733,2580.98 872.148,2580.98 872.148,2576.7 851.733,2576.7 " />
<svg:polygon detid="436646660" count="1" value="129" id="4307051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 pos   module  1   Id 436646660 " fill="rgb(255,0,0)" points="851.733,2576.7 872.148,2576.7 872.148,2572.42 851.733,2572.42 " />
<svg:polygon detid="436646916" count="1" value="129" id="4307052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 pos   module  1   Id 436646916 " fill="rgb(255,0,0)" points="851.733,2572.42 872.148,2572.42 872.148,2568.14 851.733,2568.14 " />
<svg:polygon detid="436647172" count="1" value="129" id="4307053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 pos   module  1   Id 436647172 " fill="rgb(255,0,0)" points="851.733,2568.14 872.148,2568.14 872.148,2563.86 851.733,2563.86 " />
<svg:polygon detid="436647428" count="1" value="129" id="4307054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 pos   module  1   Id 436647428 " fill="rgb(255,0,0)" points="851.733,2563.86 872.148,2563.86 872.148,2559.58 851.733,2559.58 " />
<svg:polygon detid="436647684" count="1" value="129" id="4307055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 pos   module  1   Id 436647684 " fill="rgb(255,0,0)" points="851.733,2559.58 872.148,2559.58 872.148,2555.3 851.733,2555.3 " />
<svg:polygon detid="436647940" count="1" value="129" id="4307056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 pos   module  1   Id 436647940 " fill="rgb(255,0,0)" points="851.733,2555.3 872.148,2555.3 872.148,2551.01 851.733,2551.01 " />
<svg:polygon detid="436648196" count="1" value="129" id="4307057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 pos   module  1   Id 436648196 " fill="rgb(255,0,0)" points="851.733,2551.01 872.148,2551.01 872.148,2546.73 851.733,2546.73 " />
<svg:polygon detid="436648452" count="1" value="129" id="4307058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 pos   module  1   Id 436648452 " fill="rgb(255,0,0)" points="851.733,2546.73 872.148,2546.73 872.148,2542.45 851.733,2542.45 " />
<svg:polygon detid="436648708" count="1" value="129" id="4307059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 pos   module  1   Id 436648708 " fill="rgb(255,0,0)" points="851.733,2542.45 872.148,2542.45 872.148,2538.17 851.733,2538.17 " />
<svg:polygon detid="436648964" count="1" value="129" id="4307060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 pos   module  1   Id 436648964 " fill="rgb(255,0,0)" points="851.733,2538.17 872.148,2538.17 872.148,2533.89 851.733,2533.89 " />
<svg:polygon detid="436649220" count="1" value="129" id="4307061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 pos   module  1   Id 436649220 " fill="rgb(255,0,0)" points="851.733,2533.89 872.148,2533.89 872.148,2529.61 851.733,2529.61 " />
<svg:polygon detid="436649476" count="1" value="129" id="4307062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 pos   module  1   Id 436649476 " fill="rgb(255,0,0)" points="851.733,2529.61 872.148,2529.61 872.148,2525.32 851.733,2525.32 " />
<svg:polygon detid="436649732" count="1" value="129" id="4307063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 pos   module  1   Id 436649732 " fill="rgb(255,0,0)" points="851.733,2525.32 872.148,2525.32 872.148,2521.04 851.733,2521.04 " />
<svg:polygon detid="436649988" count="1" value="129" id="4307064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 pos   module  1   Id 436649988 " fill="rgb(255,0,0)" points="851.733,2521.04 872.148,2521.04 872.148,2516.76 851.733,2516.76 " />
<svg:polygon detid="436650244" count="1" value="129" id="4307065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 pos   module  1   Id 436650244 " fill="rgb(255,0,0)" points="851.733,2516.76 872.148,2516.76 872.148,2512.48 851.733,2512.48 " />
<svg:polygon detid="436650500" count="1" value="129" id="4307066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 pos   module  1   Id 436650500 " fill="rgb(255,0,0)" points="851.733,2512.48 872.148,2512.48 872.148,2508.2 851.733,2508.2 " />
<svg:polygon detid="436650756" count="1" value="129" id="4307067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 pos   module  1   Id 436650756 " fill="rgb(255,0,0)" points="851.733,2508.2 872.148,2508.2 872.148,2503.92 851.733,2503.92 " />
<svg:polygon detid="436651012" count="1" value="129" id="4307068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 pos   module  1   Id 436651012 " fill="rgb(255,0,0)" points="851.733,2503.92 872.148,2503.92 872.148,2499.64 851.733,2499.64 " />
<svg:polygon detid="436651268" count="1" value="129" id="4307069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 pos   module  1   Id 436651268 " fill="rgb(255,0,0)" points="851.733,2499.64 872.148,2499.64 872.148,2495.35 851.733,2495.35 " />
<svg:polygon detid="436651524" count="1" value="129" id="4307070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 pos   module  1   Id 436651524 " fill="rgb(255,0,0)" points="851.733,2495.35 872.148,2495.35 872.148,2491.07 851.733,2491.07 " />
<svg:polygon detid="436651780" count="1" value="129" id="4307071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 pos   module  1   Id 436651780 " fill="rgb(255,0,0)" points="851.733,2491.07 872.148,2491.07 872.148,2486.79 851.733,2486.79 " />
<svg:polygon detid="436652036" count="1" value="129" id="4307072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 pos   module  1   Id 436652036 " fill="rgb(255,0,0)" points="851.733,2486.79 872.148,2486.79 872.148,2482.51 851.733,2482.51 " />
<svg:polygon detid="436652292" count="1" value="129" id="4307073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 pos   module  1   Id 436652292 " fill="rgb(255,0,0)" points="851.733,2482.51 872.148,2482.51 872.148,2478.23 851.733,2478.23 " />
<svg:polygon detid="436652548" count="1" value="129" id="4307074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 pos   module  1   Id 436652548 " fill="rgb(255,0,0)" points="851.733,2478.23 872.148,2478.23 872.148,2473.95 851.733,2473.95 " />
<svg:polygon detid="436633864" count="1" value="129" id="4308001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 pos   module  2   Id 436633864 " fill="rgb(255,0,0)" points="874.7,2790.78 895.115,2790.78 895.115,2786.5 874.7,2786.5 " />
<svg:polygon detid="436634120" count="1" value="129" id="4308002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 pos   module  2   Id 436634120 " fill="rgb(255,0,0)" points="874.7,2786.5 895.115,2786.5 895.115,2782.22 874.7,2782.22 " />
<svg:polygon detid="436634376" count="1" value="129" id="4308003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 pos   module  2   Id 436634376 " fill="rgb(255,0,0)" points="874.7,2782.22 895.115,2782.22 895.115,2777.94 874.7,2777.94 " />
<svg:polygon detid="436634632" count="1" value="129" id="4308004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 pos   module  2   Id 436634632 " fill="rgb(255,0,0)" points="874.7,2777.94 895.115,2777.94 895.115,2773.65 874.7,2773.65 " />
<svg:polygon detid="436634888" count="1" value="129" id="4308005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 pos   module  2   Id 436634888 " fill="rgb(255,0,0)" points="874.7,2773.65 895.115,2773.65 895.115,2769.37 874.7,2769.37 " />
<svg:polygon detid="436635144" count="1" value="129" id="4308006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 pos   module  2   Id 436635144 " fill="rgb(255,0,0)" points="874.7,2769.37 895.115,2769.37 895.115,2765.09 874.7,2765.09 " />
<svg:polygon detid="436635400" count="1" value="129" id="4308007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 pos   module  2   Id 436635400 " fill="rgb(255,0,0)" points="874.7,2765.09 895.115,2765.09 895.115,2760.81 874.7,2760.81 " />
<svg:polygon detid="436635656" count="1" value="129" id="4308008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 pos   module  2   Id 436635656 " fill="rgb(255,0,0)" points="874.7,2760.81 895.115,2760.81 895.115,2756.53 874.7,2756.53 " />
<svg:polygon detid="436635912" count="1" value="129" id="4308009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 pos   module  2   Id 436635912 " fill="rgb(255,0,0)" points="874.7,2756.53 895.115,2756.53 895.115,2752.25 874.7,2752.25 " />
<svg:polygon detid="436636168" count="1" value="129" id="4308010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 pos   module  2   Id 436636168 " fill="rgb(255,0,0)" points="874.7,2752.25 895.115,2752.25 895.115,2747.96 874.7,2747.96 " />
<svg:polygon detid="436636424" count="1" value="129" id="4308011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 pos   module  2   Id 436636424 " fill="rgb(255,0,0)" points="874.7,2747.96 895.115,2747.96 895.115,2743.68 874.7,2743.68 " />
<svg:polygon detid="436636680" count="1" value="129" id="4308012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 pos   module  2   Id 436636680 " fill="rgb(255,0,0)" points="874.7,2743.68 895.115,2743.68 895.115,2739.4 874.7,2739.4 " />
<svg:polygon detid="436636936" count="1" value="129" id="4308013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 pos   module  2   Id 436636936 " fill="rgb(255,0,0)" points="874.7,2739.4 895.115,2739.4 895.115,2735.12 874.7,2735.12 " />
<svg:polygon detid="436637192" count="1" value="129" id="4308014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 pos   module  2   Id 436637192 " fill="rgb(255,0,0)" points="874.7,2735.12 895.115,2735.12 895.115,2730.84 874.7,2730.84 " />
<svg:polygon detid="436637448" count="1" value="129" id="4308015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 pos   module  2   Id 436637448 " fill="rgb(255,0,0)" points="874.7,2730.84 895.115,2730.84 895.115,2726.56 874.7,2726.56 " />
<svg:polygon detid="436637704" count="1" value="129" id="4308016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 pos   module  2   Id 436637704 " fill="rgb(255,0,0)" points="874.7,2726.56 895.115,2726.56 895.115,2722.28 874.7,2722.28 " />
<svg:polygon detid="436637960" count="1" value="129" id="4308017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 pos   module  2   Id 436637960 " fill="rgb(255,0,0)" points="874.7,2722.28 895.115,2722.28 895.115,2717.99 874.7,2717.99 " />
<svg:polygon detid="436638216" count="1" value="129" id="4308018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 pos   module  2   Id 436638216 " fill="rgb(255,0,0)" points="874.7,2717.99 895.115,2717.99 895.115,2713.71 874.7,2713.71 " />
<svg:polygon detid="436638472" count="1" value="129" id="4308019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 pos   module  2   Id 436638472 " fill="rgb(255,0,0)" points="874.7,2713.71 895.115,2713.71 895.115,2709.43 874.7,2709.43 " />
<svg:polygon detid="436638728" count="1" value="129" id="4308020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 pos   module  2   Id 436638728 " fill="rgb(255,0,0)" points="874.7,2709.43 895.115,2709.43 895.115,2705.15 874.7,2705.15 " />
<svg:polygon detid="436638984" count="1" value="129" id="4308021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 pos   module  2   Id 436638984 " fill="rgb(255,0,0)" points="874.7,2705.15 895.115,2705.15 895.115,2700.87 874.7,2700.87 " />
<svg:polygon detid="436639240" count="1" value="129" id="4308022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 pos   module  2   Id 436639240 " fill="rgb(255,0,0)" points="874.7,2700.87 895.115,2700.87 895.115,2696.59 874.7,2696.59 " />
<svg:polygon detid="436639496" count="1" value="129" id="4308023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 pos   module  2   Id 436639496 " fill="rgb(255,0,0)" points="874.7,2696.59 895.115,2696.59 895.115,2692.3 874.7,2692.3 " />
<svg:polygon detid="436639752" count="1" value="129" id="4308024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 pos   module  2   Id 436639752 " fill="rgb(255,0,0)" points="874.7,2692.3 895.115,2692.3 895.115,2688.02 874.7,2688.02 " />
<svg:polygon detid="436640008" count="1" value="129" id="4308025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 pos   module  2   Id 436640008 " fill="rgb(255,0,0)" points="874.7,2688.02 895.115,2688.02 895.115,2683.74 874.7,2683.74 " />
<svg:polygon detid="436640264" count="1" value="129" id="4308026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 pos   module  2   Id 436640264 " fill="rgb(255,0,0)" points="874.7,2683.74 895.115,2683.74 895.115,2679.46 874.7,2679.46 " />
<svg:polygon detid="436640520" count="1" value="129" id="4308027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 pos   module  2   Id 436640520 " fill="rgb(255,0,0)" points="874.7,2679.46 895.115,2679.46 895.115,2675.18 874.7,2675.18 " />
<svg:polygon detid="436640776" count="1" value="129" id="4308028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 pos   module  2   Id 436640776 " fill="rgb(255,0,0)" points="874.7,2675.18 895.115,2675.18 895.115,2670.9 874.7,2670.9 " />
<svg:polygon detid="436641032" count="1" value="129" id="4308029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 pos   module  2   Id 436641032 " fill="rgb(255,0,0)" points="874.7,2670.9 895.115,2670.9 895.115,2666.62 874.7,2666.62 " />
<svg:polygon detid="436641288" count="1" value="129" id="4308030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 pos   module  2   Id 436641288 " fill="rgb(255,0,0)" points="874.7,2666.62 895.115,2666.62 895.115,2662.33 874.7,2662.33 " />
<svg:polygon detid="436641544" count="1" value="129" id="4308031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 pos   module  2   Id 436641544 " fill="rgb(255,0,0)" points="874.7,2662.33 895.115,2662.33 895.115,2658.05 874.7,2658.05 " />
<svg:polygon detid="436641800" count="1" value="129" id="4308032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 pos   module  2   Id 436641800 " fill="rgb(255,0,0)" points="874.7,2658.05 895.115,2658.05 895.115,2653.77 874.7,2653.77 " />
<svg:polygon detid="436642056" count="1" value="129" id="4308033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 pos   module  2   Id 436642056 " fill="rgb(255,0,0)" points="874.7,2653.77 895.115,2653.77 895.115,2649.49 874.7,2649.49 " />
<svg:polygon detid="436642312" count="1" value="129" id="4308034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 pos   module  2   Id 436642312 " fill="rgb(255,0,0)" points="874.7,2649.49 895.115,2649.49 895.115,2645.21 874.7,2645.21 " />
<svg:polygon detid="436642568" count="1" value="129" id="4308035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 pos   module  2   Id 436642568 " fill="rgb(255,0,0)" points="874.7,2645.21 895.115,2645.21 895.115,2640.93 874.7,2640.93 " />
<svg:polygon detid="436642824" count="1" value="129" id="4308036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 pos   module  2   Id 436642824 " fill="rgb(255,0,0)" points="874.7,2640.93 895.115,2640.93 895.115,2636.64 874.7,2636.64 " />
<svg:polygon detid="436643080" count="1" value="129" id="4308037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 pos   module  2   Id 436643080 " fill="rgb(255,0,0)" points="874.7,2636.64 895.115,2636.64 895.115,2632.36 874.7,2632.36 " />
<svg:polygon detid="436643336" count="1" value="129" id="4308038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 pos   module  2   Id 436643336 " fill="rgb(255,0,0)" points="874.7,2632.36 895.115,2632.36 895.115,2628.08 874.7,2628.08 " />
<svg:polygon detid="436643592" count="1" value="129" id="4308039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 pos   module  2   Id 436643592 " fill="rgb(255,0,0)" points="874.7,2628.08 895.115,2628.08 895.115,2623.8 874.7,2623.8 " />
<svg:polygon detid="436643848" count="1" value="129" id="4308040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 pos   module  2   Id 436643848 " fill="rgb(255,0,0)" points="874.7,2623.8 895.115,2623.8 895.115,2619.52 874.7,2619.52 " />
<svg:polygon detid="436644104" count="1" value="129" id="4308041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 pos   module  2   Id 436644104 " fill="rgb(255,0,0)" points="874.7,2619.52 895.115,2619.52 895.115,2615.24 874.7,2615.24 " />
<svg:polygon detid="436644360" count="1" value="129" id="4308042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 pos   module  2   Id 436644360 " fill="rgb(255,0,0)" points="874.7,2615.24 895.115,2615.24 895.115,2610.96 874.7,2610.96 " />
<svg:polygon detid="436644616" count="1" value="129" id="4308043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 pos   module  2   Id 436644616 " fill="rgb(255,0,0)" points="874.7,2610.96 895.115,2610.96 895.115,2606.67 874.7,2606.67 " />
<svg:polygon detid="436644872" count="1" value="129" id="4308044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 pos   module  2   Id 436644872 " fill="rgb(255,0,0)" points="874.7,2606.67 895.115,2606.67 895.115,2602.39 874.7,2602.39 " />
<svg:polygon detid="436645128" count="1" value="129" id="4308045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 pos   module  2   Id 436645128 " fill="rgb(255,0,0)" points="874.7,2602.39 895.115,2602.39 895.115,2598.11 874.7,2598.11 " />
<svg:polygon detid="436645384" count="1" value="129" id="4308046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 pos   module  2   Id 436645384 " fill="rgb(255,0,0)" points="874.7,2598.11 895.115,2598.11 895.115,2593.83 874.7,2593.83 " />
<svg:polygon detid="436645640" count="1" value="129" id="4308047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 pos   module  2   Id 436645640 " fill="rgb(255,0,0)" points="874.7,2593.83 895.115,2593.83 895.115,2589.55 874.7,2589.55 " />
<svg:polygon detid="436645896" count="1" value="129" id="4308048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 pos   module  2   Id 436645896 " fill="rgb(255,0,0)" points="874.7,2589.55 895.115,2589.55 895.115,2585.27 874.7,2585.27 " />
<svg:polygon detid="436646152" count="1" value="129" id="4308049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 pos   module  2   Id 436646152 " fill="rgb(255,0,0)" points="874.7,2585.27 895.115,2585.27 895.115,2580.98 874.7,2580.98 " />
<svg:polygon detid="436646408" count="1" value="129" id="4308050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 pos   module  2   Id 436646408 " fill="rgb(255,0,0)" points="874.7,2580.98 895.115,2580.98 895.115,2576.7 874.7,2576.7 " />
<svg:polygon detid="436646664" count="1" value="129" id="4308051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 pos   module  2   Id 436646664 " fill="rgb(255,0,0)" points="874.7,2576.7 895.115,2576.7 895.115,2572.42 874.7,2572.42 " />
<svg:polygon detid="436646920" count="1" value="129" id="4308052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 pos   module  2   Id 436646920 " fill="rgb(255,0,0)" points="874.7,2572.42 895.115,2572.42 895.115,2568.14 874.7,2568.14 " />
<svg:polygon detid="436647176" count="1" value="129" id="4308053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 pos   module  2   Id 436647176 " fill="rgb(255,0,0)" points="874.7,2568.14 895.115,2568.14 895.115,2563.86 874.7,2563.86 " />
<svg:polygon detid="436647432" count="1" value="129" id="4308054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 pos   module  2   Id 436647432 " fill="rgb(255,0,0)" points="874.7,2563.86 895.115,2563.86 895.115,2559.58 874.7,2559.58 " />
<svg:polygon detid="436647688" count="1" value="129" id="4308055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 pos   module  2   Id 436647688 " fill="rgb(255,0,0)" points="874.7,2559.58 895.115,2559.58 895.115,2555.3 874.7,2555.3 " />
<svg:polygon detid="436647944" count="1" value="129" id="4308056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 pos   module  2   Id 436647944 " fill="rgb(255,0,0)" points="874.7,2555.3 895.115,2555.3 895.115,2551.01 874.7,2551.01 " />
<svg:polygon detid="436648200" count="1" value="129" id="4308057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 pos   module  2   Id 436648200 " fill="rgb(255,0,0)" points="874.7,2551.01 895.115,2551.01 895.115,2546.73 874.7,2546.73 " />
<svg:polygon detid="436648456" count="1" value="129" id="4308058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 pos   module  2   Id 436648456 " fill="rgb(255,0,0)" points="874.7,2546.73 895.115,2546.73 895.115,2542.45 874.7,2542.45 " />
<svg:polygon detid="436648712" count="1" value="129" id="4308059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 pos   module  2   Id 436648712 " fill="rgb(255,0,0)" points="874.7,2542.45 895.115,2542.45 895.115,2538.17 874.7,2538.17 " />
<svg:polygon detid="436648968" count="1" value="129" id="4308060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 pos   module  2   Id 436648968 " fill="rgb(255,0,0)" points="874.7,2538.17 895.115,2538.17 895.115,2533.89 874.7,2533.89 " />
<svg:polygon detid="436649224" count="1" value="129" id="4308061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 pos   module  2   Id 436649224 " fill="rgb(255,0,0)" points="874.7,2533.89 895.115,2533.89 895.115,2529.61 874.7,2529.61 " />
<svg:polygon detid="436649480" count="1" value="129" id="4308062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 pos   module  2   Id 436649480 " fill="rgb(255,0,0)" points="874.7,2529.61 895.115,2529.61 895.115,2525.32 874.7,2525.32 " />
<svg:polygon detid="436649736" count="1" value="129" id="4308063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 pos   module  2   Id 436649736 " fill="rgb(255,0,0)" points="874.7,2525.32 895.115,2525.32 895.115,2521.04 874.7,2521.04 " />
<svg:polygon detid="436649992" count="1" value="129" id="4308064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 pos   module  2   Id 436649992 " fill="rgb(255,0,0)" points="874.7,2521.04 895.115,2521.04 895.115,2516.76 874.7,2516.76 " />
<svg:polygon detid="436650248" count="1" value="129" id="4308065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 pos   module  2   Id 436650248 " fill="rgb(255,0,0)" points="874.7,2516.76 895.115,2516.76 895.115,2512.48 874.7,2512.48 " />
<svg:polygon detid="436650504" count="1" value="129" id="4308066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 pos   module  2   Id 436650504 " fill="rgb(255,0,0)" points="874.7,2512.48 895.115,2512.48 895.115,2508.2 874.7,2508.2 " />
<svg:polygon detid="436650760" count="1" value="129" id="4308067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 pos   module  2   Id 436650760 " fill="rgb(255,0,0)" points="874.7,2508.2 895.115,2508.2 895.115,2503.92 874.7,2503.92 " />
<svg:polygon detid="436651016" count="1" value="129" id="4308068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 pos   module  2   Id 436651016 " fill="rgb(255,0,0)" points="874.7,2503.92 895.115,2503.92 895.115,2499.64 874.7,2499.64 " />
<svg:polygon detid="436651272" count="1" value="129" id="4308069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 pos   module  2   Id 436651272 " fill="rgb(255,0,0)" points="874.7,2499.64 895.115,2499.64 895.115,2495.35 874.7,2495.35 " />
<svg:polygon detid="436651528" count="1" value="129" id="4308070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 pos   module  2   Id 436651528 " fill="rgb(255,0,0)" points="874.7,2495.35 895.115,2495.35 895.115,2491.07 874.7,2491.07 " />
<svg:polygon detid="436651784" count="1" value="129" id="4308071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 pos   module  2   Id 436651784 " fill="rgb(255,0,0)" points="874.7,2491.07 895.115,2491.07 895.115,2486.79 874.7,2486.79 " />
<svg:polygon detid="436652040" count="1" value="129" id="4308072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 pos   module  2   Id 436652040 " fill="rgb(255,0,0)" points="874.7,2486.79 895.115,2486.79 895.115,2482.51 874.7,2482.51 " />
<svg:polygon detid="436652296" count="1" value="129" id="4308073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 pos   module  2   Id 436652296 " fill="rgb(255,0,0)" points="874.7,2482.51 895.115,2482.51 895.115,2478.23 874.7,2478.23 " />
<svg:polygon detid="436652552" count="1" value="129" id="4308074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 pos   module  2   Id 436652552 " fill="rgb(255,0,0)" points="874.7,2478.23 895.115,2478.23 895.115,2473.95 874.7,2473.95 " />
<svg:polygon detid="436633868" count="1" value="129" id="4309001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 pos   module  3   Id 436633868 " fill="rgb(255,0,0)" points="897.667,2790.78 918.081,2790.78 918.081,2786.5 897.667,2786.5 " />
<svg:polygon detid="436634124" count="1" value="129" id="4309002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 pos   module  3   Id 436634124 " fill="rgb(255,0,0)" points="897.667,2786.5 918.081,2786.5 918.081,2782.22 897.667,2782.22 " />
<svg:polygon detid="436634380" count="1" value="129" id="4309003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 pos   module  3   Id 436634380 " fill="rgb(255,0,0)" points="897.667,2782.22 918.081,2782.22 918.081,2777.94 897.667,2777.94 " />
<svg:polygon detid="436634636" count="1" value="129" id="4309004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 pos   module  3   Id 436634636 " fill="rgb(255,0,0)" points="897.667,2777.94 918.081,2777.94 918.081,2773.65 897.667,2773.65 " />
<svg:polygon detid="436634892" count="1" value="129" id="4309005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 pos   module  3   Id 436634892 " fill="rgb(255,0,0)" points="897.667,2773.65 918.081,2773.65 918.081,2769.37 897.667,2769.37 " />
<svg:polygon detid="436635148" count="1" value="129" id="4309006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 pos   module  3   Id 436635148 " fill="rgb(255,0,0)" points="897.667,2769.37 918.081,2769.37 918.081,2765.09 897.667,2765.09 " />
<svg:polygon detid="436635404" count="1" value="129" id="4309007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 pos   module  3   Id 436635404 " fill="rgb(255,0,0)" points="897.667,2765.09 918.081,2765.09 918.081,2760.81 897.667,2760.81 " />
<svg:polygon detid="436635660" count="1" value="129" id="4309008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 pos   module  3   Id 436635660 " fill="rgb(255,0,0)" points="897.667,2760.81 918.081,2760.81 918.081,2756.53 897.667,2756.53 " />
<svg:polygon detid="436635916" count="1" value="129" id="4309009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 pos   module  3   Id 436635916 " fill="rgb(255,0,0)" points="897.667,2756.53 918.081,2756.53 918.081,2752.25 897.667,2752.25 " />
<svg:polygon detid="436636172" count="1" value="129" id="4309010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 pos   module  3   Id 436636172 " fill="rgb(255,0,0)" points="897.667,2752.25 918.081,2752.25 918.081,2747.96 897.667,2747.96 " />
<svg:polygon detid="436636428" count="1" value="129" id="4309011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 pos   module  3   Id 436636428 " fill="rgb(255,0,0)" points="897.667,2747.96 918.081,2747.96 918.081,2743.68 897.667,2743.68 " />
<svg:polygon detid="436636684" count="1" value="129" id="4309012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 pos   module  3   Id 436636684 " fill="rgb(255,0,0)" points="897.667,2743.68 918.081,2743.68 918.081,2739.4 897.667,2739.4 " />
<svg:polygon detid="436636940" count="1" value="129" id="4309013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 pos   module  3   Id 436636940 " fill="rgb(255,0,0)" points="897.667,2739.4 918.081,2739.4 918.081,2735.12 897.667,2735.12 " />
<svg:polygon detid="436637196" count="1" value="129" id="4309014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 pos   module  3   Id 436637196 " fill="rgb(255,0,0)" points="897.667,2735.12 918.081,2735.12 918.081,2730.84 897.667,2730.84 " />
<svg:polygon detid="436637452" count="1" value="129" id="4309015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 pos   module  3   Id 436637452 " fill="rgb(255,0,0)" points="897.667,2730.84 918.081,2730.84 918.081,2726.56 897.667,2726.56 " />
<svg:polygon detid="436637708" count="1" value="129" id="4309016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 pos   module  3   Id 436637708 " fill="rgb(255,0,0)" points="897.667,2726.56 918.081,2726.56 918.081,2722.28 897.667,2722.28 " />
<svg:polygon detid="436637964" count="1" value="129" id="4309017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 pos   module  3   Id 436637964 " fill="rgb(255,0,0)" points="897.667,2722.28 918.081,2722.28 918.081,2717.99 897.667,2717.99 " />
<svg:polygon detid="436638220" count="1" value="129" id="4309018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 pos   module  3   Id 436638220 " fill="rgb(255,0,0)" points="897.667,2717.99 918.081,2717.99 918.081,2713.71 897.667,2713.71 " />
<svg:polygon detid="436638476" count="1" value="129" id="4309019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 pos   module  3   Id 436638476 " fill="rgb(255,0,0)" points="897.667,2713.71 918.081,2713.71 918.081,2709.43 897.667,2709.43 " />
<svg:polygon detid="436638732" count="1" value="129" id="4309020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 pos   module  3   Id 436638732 " fill="rgb(255,0,0)" points="897.667,2709.43 918.081,2709.43 918.081,2705.15 897.667,2705.15 " />
<svg:polygon detid="436638988" count="1" value="129" id="4309021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 pos   module  3   Id 436638988 " fill="rgb(255,0,0)" points="897.667,2705.15 918.081,2705.15 918.081,2700.87 897.667,2700.87 " />
<svg:polygon detid="436639244" count="1" value="129" id="4309022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 pos   module  3   Id 436639244 " fill="rgb(255,0,0)" points="897.667,2700.87 918.081,2700.87 918.081,2696.59 897.667,2696.59 " />
<svg:polygon detid="436639500" count="1" value="129" id="4309023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 pos   module  3   Id 436639500 " fill="rgb(255,0,0)" points="897.667,2696.59 918.081,2696.59 918.081,2692.3 897.667,2692.3 " />
<svg:polygon detid="436639756" count="1" value="129" id="4309024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 pos   module  3   Id 436639756 " fill="rgb(255,0,0)" points="897.667,2692.3 918.081,2692.3 918.081,2688.02 897.667,2688.02 " />
<svg:polygon detid="436640012" count="1" value="129" id="4309025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 pos   module  3   Id 436640012 " fill="rgb(255,0,0)" points="897.667,2688.02 918.081,2688.02 918.081,2683.74 897.667,2683.74 " />
<svg:polygon detid="436640268" count="1" value="129" id="4309026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 pos   module  3   Id 436640268 " fill="rgb(255,0,0)" points="897.667,2683.74 918.081,2683.74 918.081,2679.46 897.667,2679.46 " />
<svg:polygon detid="436640524" count="1" value="129" id="4309027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 pos   module  3   Id 436640524 " fill="rgb(255,0,0)" points="897.667,2679.46 918.081,2679.46 918.081,2675.18 897.667,2675.18 " />
<svg:polygon detid="436640780" count="1" value="129" id="4309028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 pos   module  3   Id 436640780 " fill="rgb(255,0,0)" points="897.667,2675.18 918.081,2675.18 918.081,2670.9 897.667,2670.9 " />
<svg:polygon detid="436641036" count="1" value="129" id="4309029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 pos   module  3   Id 436641036 " fill="rgb(255,0,0)" points="897.667,2670.9 918.081,2670.9 918.081,2666.62 897.667,2666.62 " />
<svg:polygon detid="436641292" count="1" value="129" id="4309030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 pos   module  3   Id 436641292 " fill="rgb(255,0,0)" points="897.667,2666.62 918.081,2666.62 918.081,2662.33 897.667,2662.33 " />
<svg:polygon detid="436641548" count="1" value="129" id="4309031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 pos   module  3   Id 436641548 " fill="rgb(255,0,0)" points="897.667,2662.33 918.081,2662.33 918.081,2658.05 897.667,2658.05 " />
<svg:polygon detid="436641804" count="1" value="129" id="4309032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 pos   module  3   Id 436641804 " fill="rgb(255,0,0)" points="897.667,2658.05 918.081,2658.05 918.081,2653.77 897.667,2653.77 " />
<svg:polygon detid="436642060" count="1" value="129" id="4309033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 pos   module  3   Id 436642060 " fill="rgb(255,0,0)" points="897.667,2653.77 918.081,2653.77 918.081,2649.49 897.667,2649.49 " />
<svg:polygon detid="436642316" count="1" value="129" id="4309034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 pos   module  3   Id 436642316 " fill="rgb(255,0,0)" points="897.667,2649.49 918.081,2649.49 918.081,2645.21 897.667,2645.21 " />
<svg:polygon detid="436642572" count="1" value="129" id="4309035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 pos   module  3   Id 436642572 " fill="rgb(255,0,0)" points="897.667,2645.21 918.081,2645.21 918.081,2640.93 897.667,2640.93 " />
<svg:polygon detid="436642828" count="1" value="129" id="4309036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 pos   module  3   Id 436642828 " fill="rgb(255,0,0)" points="897.667,2640.93 918.081,2640.93 918.081,2636.64 897.667,2636.64 " />
<svg:polygon detid="436643084" count="1" value="129" id="4309037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 pos   module  3   Id 436643084 " fill="rgb(255,0,0)" points="897.667,2636.64 918.081,2636.64 918.081,2632.36 897.667,2632.36 " />
<svg:polygon detid="436643340" count="1" value="129" id="4309038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 pos   module  3   Id 436643340 " fill="rgb(255,0,0)" points="897.667,2632.36 918.081,2632.36 918.081,2628.08 897.667,2628.08 " />
<svg:polygon detid="436643596" count="1" value="129" id="4309039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 pos   module  3   Id 436643596 " fill="rgb(255,0,0)" points="897.667,2628.08 918.081,2628.08 918.081,2623.8 897.667,2623.8 " />
<svg:polygon detid="436643852" count="1" value="129" id="4309040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 pos   module  3   Id 436643852 " fill="rgb(255,0,0)" points="897.667,2623.8 918.081,2623.8 918.081,2619.52 897.667,2619.52 " />
<svg:polygon detid="436644108" count="1" value="129" id="4309041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 pos   module  3   Id 436644108 " fill="rgb(255,0,0)" points="897.667,2619.52 918.081,2619.52 918.081,2615.24 897.667,2615.24 " />
<svg:polygon detid="436644364" count="1" value="129" id="4309042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 pos   module  3   Id 436644364 " fill="rgb(255,0,0)" points="897.667,2615.24 918.081,2615.24 918.081,2610.96 897.667,2610.96 " />
<svg:polygon detid="436644620" count="1" value="129" id="4309043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 pos   module  3   Id 436644620 " fill="rgb(255,0,0)" points="897.667,2610.96 918.081,2610.96 918.081,2606.67 897.667,2606.67 " />
<svg:polygon detid="436644876" count="1" value="129" id="4309044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 pos   module  3   Id 436644876 " fill="rgb(255,0,0)" points="897.667,2606.67 918.081,2606.67 918.081,2602.39 897.667,2602.39 " />
<svg:polygon detid="436645132" count="1" value="129" id="4309045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 pos   module  3   Id 436645132 " fill="rgb(255,0,0)" points="897.667,2602.39 918.081,2602.39 918.081,2598.11 897.667,2598.11 " />
<svg:polygon detid="436645388" count="1" value="129" id="4309046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 pos   module  3   Id 436645388 " fill="rgb(255,0,0)" points="897.667,2598.11 918.081,2598.11 918.081,2593.83 897.667,2593.83 " />
<svg:polygon detid="436645644" count="1" value="129" id="4309047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 pos   module  3   Id 436645644 " fill="rgb(255,0,0)" points="897.667,2593.83 918.081,2593.83 918.081,2589.55 897.667,2589.55 " />
<svg:polygon detid="436645900" count="1" value="129" id="4309048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 pos   module  3   Id 436645900 " fill="rgb(255,0,0)" points="897.667,2589.55 918.081,2589.55 918.081,2585.27 897.667,2585.27 " />
<svg:polygon detid="436646156" count="1" value="129" id="4309049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 pos   module  3   Id 436646156 " fill="rgb(255,0,0)" points="897.667,2585.27 918.081,2585.27 918.081,2580.98 897.667,2580.98 " />
<svg:polygon detid="436646412" count="1" value="129" id="4309050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 pos   module  3   Id 436646412 " fill="rgb(255,0,0)" points="897.667,2580.98 918.081,2580.98 918.081,2576.7 897.667,2576.7 " />
<svg:polygon detid="436646668" count="1" value="129" id="4309051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 pos   module  3   Id 436646668 " fill="rgb(255,0,0)" points="897.667,2576.7 918.081,2576.7 918.081,2572.42 897.667,2572.42 " />
<svg:polygon detid="436646924" count="1" value="129" id="4309052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 pos   module  3   Id 436646924 " fill="rgb(255,0,0)" points="897.667,2572.42 918.081,2572.42 918.081,2568.14 897.667,2568.14 " />
<svg:polygon detid="436647180" count="1" value="129" id="4309053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 pos   module  3   Id 436647180 " fill="rgb(255,0,0)" points="897.667,2568.14 918.081,2568.14 918.081,2563.86 897.667,2563.86 " />
<svg:polygon detid="436647436" count="1" value="129" id="4309054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 pos   module  3   Id 436647436 " fill="rgb(255,0,0)" points="897.667,2563.86 918.081,2563.86 918.081,2559.58 897.667,2559.58 " />
<svg:polygon detid="436647692" count="1" value="129" id="4309055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 pos   module  3   Id 436647692 " fill="rgb(255,0,0)" points="897.667,2559.58 918.081,2559.58 918.081,2555.3 897.667,2555.3 " />
<svg:polygon detid="436647948" count="1" value="129" id="4309056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 pos   module  3   Id 436647948 " fill="rgb(255,0,0)" points="897.667,2555.3 918.081,2555.3 918.081,2551.01 897.667,2551.01 " />
<svg:polygon detid="436648204" count="1" value="129" id="4309057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 pos   module  3   Id 436648204 " fill="rgb(255,0,0)" points="897.667,2551.01 918.081,2551.01 918.081,2546.73 897.667,2546.73 " />
<svg:polygon detid="436648460" count="1" value="129" id="4309058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 pos   module  3   Id 436648460 " fill="rgb(255,0,0)" points="897.667,2546.73 918.081,2546.73 918.081,2542.45 897.667,2542.45 " />
<svg:polygon detid="436648716" count="1" value="129" id="4309059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 pos   module  3   Id 436648716 " fill="rgb(255,0,0)" points="897.667,2542.45 918.081,2542.45 918.081,2538.17 897.667,2538.17 " />
<svg:polygon detid="436648972" count="1" value="129" id="4309060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 pos   module  3   Id 436648972 " fill="rgb(255,0,0)" points="897.667,2538.17 918.081,2538.17 918.081,2533.89 897.667,2533.89 " />
<svg:polygon detid="436649228" count="1" value="129" id="4309061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 pos   module  3   Id 436649228 " fill="rgb(255,0,0)" points="897.667,2533.89 918.081,2533.89 918.081,2529.61 897.667,2529.61 " />
<svg:polygon detid="436649484" count="1" value="129" id="4309062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 pos   module  3   Id 436649484 " fill="rgb(255,0,0)" points="897.667,2529.61 918.081,2529.61 918.081,2525.32 897.667,2525.32 " />
<svg:polygon detid="436649740" count="1" value="129" id="4309063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 pos   module  3   Id 436649740 " fill="rgb(255,0,0)" points="897.667,2525.32 918.081,2525.32 918.081,2521.04 897.667,2521.04 " />
<svg:polygon detid="436649996" count="1" value="129" id="4309064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 pos   module  3   Id 436649996 " fill="rgb(255,0,0)" points="897.667,2521.04 918.081,2521.04 918.081,2516.76 897.667,2516.76 " />
<svg:polygon detid="436650252" count="1" value="129" id="4309065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 pos   module  3   Id 436650252 " fill="rgb(255,0,0)" points="897.667,2516.76 918.081,2516.76 918.081,2512.48 897.667,2512.48 " />
<svg:polygon detid="436650508" count="1" value="129" id="4309066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 pos   module  3   Id 436650508 " fill="rgb(255,0,0)" points="897.667,2512.48 918.081,2512.48 918.081,2508.2 897.667,2508.2 " />
<svg:polygon detid="436650764" count="1" value="129" id="4309067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 pos   module  3   Id 436650764 " fill="rgb(255,0,0)" points="897.667,2508.2 918.081,2508.2 918.081,2503.92 897.667,2503.92 " />
<svg:polygon detid="436651020" count="1" value="129" id="4309068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 pos   module  3   Id 436651020 " fill="rgb(255,0,0)" points="897.667,2503.92 918.081,2503.92 918.081,2499.64 897.667,2499.64 " />
<svg:polygon detid="436651276" count="1" value="129" id="4309069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 pos   module  3   Id 436651276 " fill="rgb(255,0,0)" points="897.667,2499.64 918.081,2499.64 918.081,2495.35 897.667,2495.35 " />
<svg:polygon detid="436651532" count="1" value="129" id="4309070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 pos   module  3   Id 436651532 " fill="rgb(255,0,0)" points="897.667,2495.35 918.081,2495.35 918.081,2491.07 897.667,2491.07 " />
<svg:polygon detid="436651788" count="1" value="129" id="4309071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 pos   module  3   Id 436651788 " fill="rgb(255,0,0)" points="897.667,2491.07 918.081,2491.07 918.081,2486.79 897.667,2486.79 " />
<svg:polygon detid="436652044" count="1" value="129" id="4309072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 pos   module  3   Id 436652044 " fill="rgb(255,0,0)" points="897.667,2486.79 918.081,2486.79 918.081,2482.51 897.667,2482.51 " />
<svg:polygon detid="436652300" count="1" value="129" id="4309073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 pos   module  3   Id 436652300 " fill="rgb(255,0,0)" points="897.667,2482.51 918.081,2482.51 918.081,2478.23 897.667,2478.23 " />
<svg:polygon detid="436652556" count="1" value="129" id="4309074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 pos   module  3   Id 436652556 " fill="rgb(255,0,0)" points="897.667,2478.23 918.081,2478.23 918.081,2473.95 897.667,2473.95 " />
<svg:polygon detid="436633872" count="1" value="129" id="4310001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 pos   module  4   Id 436633872 " fill="rgb(255,0,0)" points="920.633,2790.78 941.048,2790.78 941.048,2786.5 920.633,2786.5 " />
<svg:polygon detid="436634128" count="1" value="129" id="4310002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 pos   module  4   Id 436634128 " fill="rgb(255,0,0)" points="920.633,2786.5 941.048,2786.5 941.048,2782.22 920.633,2782.22 " />
<svg:polygon detid="436634384" count="1" value="129" id="4310003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 pos   module  4   Id 436634384 " fill="rgb(255,0,0)" points="920.633,2782.22 941.048,2782.22 941.048,2777.94 920.633,2777.94 " />
<svg:polygon detid="436634640" count="1" value="129" id="4310004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 pos   module  4   Id 436634640 " fill="rgb(255,0,0)" points="920.633,2777.94 941.048,2777.94 941.048,2773.65 920.633,2773.65 " />
<svg:polygon detid="436634896" count="1" value="129" id="4310005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 pos   module  4   Id 436634896 " fill="rgb(255,0,0)" points="920.633,2773.65 941.048,2773.65 941.048,2769.37 920.633,2769.37 " />
<svg:polygon detid="436635152" count="1" value="129" id="4310006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 pos   module  4   Id 436635152 " fill="rgb(255,0,0)" points="920.633,2769.37 941.048,2769.37 941.048,2765.09 920.633,2765.09 " />
<svg:polygon detid="436635408" count="1" value="129" id="4310007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 pos   module  4   Id 436635408 " fill="rgb(255,0,0)" points="920.633,2765.09 941.048,2765.09 941.048,2760.81 920.633,2760.81 " />
<svg:polygon detid="436635664" count="1" value="129" id="4310008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 pos   module  4   Id 436635664 " fill="rgb(255,0,0)" points="920.633,2760.81 941.048,2760.81 941.048,2756.53 920.633,2756.53 " />
<svg:polygon detid="436635920" count="1" value="129" id="4310009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 pos   module  4   Id 436635920 " fill="rgb(255,0,0)" points="920.633,2756.53 941.048,2756.53 941.048,2752.25 920.633,2752.25 " />
<svg:polygon detid="436636176" count="1" value="129" id="4310010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 pos   module  4   Id 436636176 " fill="rgb(255,0,0)" points="920.633,2752.25 941.048,2752.25 941.048,2747.96 920.633,2747.96 " />
<svg:polygon detid="436636432" count="1" value="129" id="4310011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 pos   module  4   Id 436636432 " fill="rgb(255,0,0)" points="920.633,2747.96 941.048,2747.96 941.048,2743.68 920.633,2743.68 " />
<svg:polygon detid="436636688" count="1" value="129" id="4310012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 pos   module  4   Id 436636688 " fill="rgb(255,0,0)" points="920.633,2743.68 941.048,2743.68 941.048,2739.4 920.633,2739.4 " />
<svg:polygon detid="436636944" count="1" value="129" id="4310013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 pos   module  4   Id 436636944 " fill="rgb(255,0,0)" points="920.633,2739.4 941.048,2739.4 941.048,2735.12 920.633,2735.12 " />
<svg:polygon detid="436637200" count="1" value="129" id="4310014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 pos   module  4   Id 436637200 " fill="rgb(255,0,0)" points="920.633,2735.12 941.048,2735.12 941.048,2730.84 920.633,2730.84 " />
<svg:polygon detid="436637456" count="1" value="129" id="4310015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 pos   module  4   Id 436637456 " fill="rgb(255,0,0)" points="920.633,2730.84 941.048,2730.84 941.048,2726.56 920.633,2726.56 " />
<svg:polygon detid="436637712" count="1" value="129" id="4310016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 pos   module  4   Id 436637712 " fill="rgb(255,0,0)" points="920.633,2726.56 941.048,2726.56 941.048,2722.28 920.633,2722.28 " />
<svg:polygon detid="436637968" count="1" value="129" id="4310017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 pos   module  4   Id 436637968 " fill="rgb(255,0,0)" points="920.633,2722.28 941.048,2722.28 941.048,2717.99 920.633,2717.99 " />
<svg:polygon detid="436638224" count="1" value="129" id="4310018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 pos   module  4   Id 436638224 " fill="rgb(255,0,0)" points="920.633,2717.99 941.048,2717.99 941.048,2713.71 920.633,2713.71 " />
<svg:polygon detid="436638480" count="1" value="129" id="4310019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 pos   module  4   Id 436638480 " fill="rgb(255,0,0)" points="920.633,2713.71 941.048,2713.71 941.048,2709.43 920.633,2709.43 " />
<svg:polygon detid="436638736" count="1" value="129" id="4310020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 pos   module  4   Id 436638736 " fill="rgb(255,0,0)" points="920.633,2709.43 941.048,2709.43 941.048,2705.15 920.633,2705.15 " />
<svg:polygon detid="436638992" count="1" value="129" id="4310021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 pos   module  4   Id 436638992 " fill="rgb(255,0,0)" points="920.633,2705.15 941.048,2705.15 941.048,2700.87 920.633,2700.87 " />
<svg:polygon detid="436639248" count="1" value="129" id="4310022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 pos   module  4   Id 436639248 " fill="rgb(255,0,0)" points="920.633,2700.87 941.048,2700.87 941.048,2696.59 920.633,2696.59 " />
<svg:polygon detid="436639504" count="1" value="129" id="4310023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 pos   module  4   Id 436639504 " fill="rgb(255,0,0)" points="920.633,2696.59 941.048,2696.59 941.048,2692.3 920.633,2692.3 " />
<svg:polygon detid="436639760" count="1" value="129" id="4310024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 pos   module  4   Id 436639760 " fill="rgb(255,0,0)" points="920.633,2692.3 941.048,2692.3 941.048,2688.02 920.633,2688.02 " />
<svg:polygon detid="436640016" count="1" value="129" id="4310025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 pos   module  4   Id 436640016 " fill="rgb(255,0,0)" points="920.633,2688.02 941.048,2688.02 941.048,2683.74 920.633,2683.74 " />
<svg:polygon detid="436640272" count="1" value="129" id="4310026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 pos   module  4   Id 436640272 " fill="rgb(255,0,0)" points="920.633,2683.74 941.048,2683.74 941.048,2679.46 920.633,2679.46 " />
<svg:polygon detid="436640528" count="1" value="129" id="4310027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 pos   module  4   Id 436640528 " fill="rgb(255,0,0)" points="920.633,2679.46 941.048,2679.46 941.048,2675.18 920.633,2675.18 " />
<svg:polygon detid="436640784" count="1" value="129" id="4310028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 pos   module  4   Id 436640784 " fill="rgb(255,0,0)" points="920.633,2675.18 941.048,2675.18 941.048,2670.9 920.633,2670.9 " />
<svg:polygon detid="436641040" count="1" value="129" id="4310029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 pos   module  4   Id 436641040 " fill="rgb(255,0,0)" points="920.633,2670.9 941.048,2670.9 941.048,2666.62 920.633,2666.62 " />
<svg:polygon detid="436641296" count="1" value="129" id="4310030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 pos   module  4   Id 436641296 " fill="rgb(255,0,0)" points="920.633,2666.62 941.048,2666.62 941.048,2662.33 920.633,2662.33 " />
<svg:polygon detid="436641552" count="1" value="129" id="4310031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 pos   module  4   Id 436641552 " fill="rgb(255,0,0)" points="920.633,2662.33 941.048,2662.33 941.048,2658.05 920.633,2658.05 " />
<svg:polygon detid="436641808" count="1" value="129" id="4310032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 pos   module  4   Id 436641808 " fill="rgb(255,0,0)" points="920.633,2658.05 941.048,2658.05 941.048,2653.77 920.633,2653.77 " />
<svg:polygon detid="436642064" count="1" value="129" id="4310033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 pos   module  4   Id 436642064 " fill="rgb(255,0,0)" points="920.633,2653.77 941.048,2653.77 941.048,2649.49 920.633,2649.49 " />
<svg:polygon detid="436642320" count="1" value="129" id="4310034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 pos   module  4   Id 436642320 " fill="rgb(255,0,0)" points="920.633,2649.49 941.048,2649.49 941.048,2645.21 920.633,2645.21 " />
<svg:polygon detid="436642576" count="1" value="129" id="4310035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 pos   module  4   Id 436642576 " fill="rgb(255,0,0)" points="920.633,2645.21 941.048,2645.21 941.048,2640.93 920.633,2640.93 " />
<svg:polygon detid="436642832" count="1" value="129" id="4310036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 pos   module  4   Id 436642832 " fill="rgb(255,0,0)" points="920.633,2640.93 941.048,2640.93 941.048,2636.64 920.633,2636.64 " />
<svg:polygon detid="436643088" count="1" value="129" id="4310037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 pos   module  4   Id 436643088 " fill="rgb(255,0,0)" points="920.633,2636.64 941.048,2636.64 941.048,2632.36 920.633,2632.36 " />
<svg:polygon detid="436643344" count="1" value="129" id="4310038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 pos   module  4   Id 436643344 " fill="rgb(255,0,0)" points="920.633,2632.36 941.048,2632.36 941.048,2628.08 920.633,2628.08 " />
<svg:polygon detid="436643600" count="1" value="129" id="4310039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 pos   module  4   Id 436643600 " fill="rgb(255,0,0)" points="920.633,2628.08 941.048,2628.08 941.048,2623.8 920.633,2623.8 " />
<svg:polygon detid="436643856" count="1" value="129" id="4310040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 pos   module  4   Id 436643856 " fill="rgb(255,0,0)" points="920.633,2623.8 941.048,2623.8 941.048,2619.52 920.633,2619.52 " />
<svg:polygon detid="436644112" count="1" value="129" id="4310041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 pos   module  4   Id 436644112 " fill="rgb(255,0,0)" points="920.633,2619.52 941.048,2619.52 941.048,2615.24 920.633,2615.24 " />
<svg:polygon detid="436644368" count="1" value="129" id="4310042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 pos   module  4   Id 436644368 " fill="rgb(255,0,0)" points="920.633,2615.24 941.048,2615.24 941.048,2610.96 920.633,2610.96 " />
<svg:polygon detid="436644624" count="1" value="129" id="4310043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 pos   module  4   Id 436644624 " fill="rgb(255,0,0)" points="920.633,2610.96 941.048,2610.96 941.048,2606.67 920.633,2606.67 " />
<svg:polygon detid="436644880" count="1" value="129" id="4310044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 pos   module  4   Id 436644880 " fill="rgb(255,0,0)" points="920.633,2606.67 941.048,2606.67 941.048,2602.39 920.633,2602.39 " />
<svg:polygon detid="436645136" count="1" value="129" id="4310045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 pos   module  4   Id 436645136 " fill="rgb(255,0,0)" points="920.633,2602.39 941.048,2602.39 941.048,2598.11 920.633,2598.11 " />
<svg:polygon detid="436645392" count="1" value="129" id="4310046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 pos   module  4   Id 436645392 " fill="rgb(255,0,0)" points="920.633,2598.11 941.048,2598.11 941.048,2593.83 920.633,2593.83 " />
<svg:polygon detid="436645648" count="1" value="129" id="4310047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 pos   module  4   Id 436645648 " fill="rgb(255,0,0)" points="920.633,2593.83 941.048,2593.83 941.048,2589.55 920.633,2589.55 " />
<svg:polygon detid="436645904" count="1" value="129" id="4310048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 pos   module  4   Id 436645904 " fill="rgb(255,0,0)" points="920.633,2589.55 941.048,2589.55 941.048,2585.27 920.633,2585.27 " />
<svg:polygon detid="436646160" count="1" value="129" id="4310049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 pos   module  4   Id 436646160 " fill="rgb(255,0,0)" points="920.633,2585.27 941.048,2585.27 941.048,2580.98 920.633,2580.98 " />
<svg:polygon detid="436646416" count="1" value="129" id="4310050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 pos   module  4   Id 436646416 " fill="rgb(255,0,0)" points="920.633,2580.98 941.048,2580.98 941.048,2576.7 920.633,2576.7 " />
<svg:polygon detid="436646672" count="1" value="129" id="4310051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 pos   module  4   Id 436646672 " fill="rgb(255,0,0)" points="920.633,2576.7 941.048,2576.7 941.048,2572.42 920.633,2572.42 " />
<svg:polygon detid="436646928" count="1" value="129" id="4310052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 pos   module  4   Id 436646928 " fill="rgb(255,0,0)" points="920.633,2572.42 941.048,2572.42 941.048,2568.14 920.633,2568.14 " />
<svg:polygon detid="436647184" count="1" value="129" id="4310053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 pos   module  4   Id 436647184 " fill="rgb(255,0,0)" points="920.633,2568.14 941.048,2568.14 941.048,2563.86 920.633,2563.86 " />
<svg:polygon detid="436647440" count="1" value="129" id="4310054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 pos   module  4   Id 436647440 " fill="rgb(255,0,0)" points="920.633,2563.86 941.048,2563.86 941.048,2559.58 920.633,2559.58 " />
<svg:polygon detid="436647696" count="1" value="129" id="4310055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 pos   module  4   Id 436647696 " fill="rgb(255,0,0)" points="920.633,2559.58 941.048,2559.58 941.048,2555.3 920.633,2555.3 " />
<svg:polygon detid="436647952" count="1" value="129" id="4310056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 pos   module  4   Id 436647952 " fill="rgb(255,0,0)" points="920.633,2555.3 941.048,2555.3 941.048,2551.01 920.633,2551.01 " />
<svg:polygon detid="436648208" count="1" value="129" id="4310057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 pos   module  4   Id 436648208 " fill="rgb(255,0,0)" points="920.633,2551.01 941.048,2551.01 941.048,2546.73 920.633,2546.73 " />
<svg:polygon detid="436648464" count="1" value="129" id="4310058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 pos   module  4   Id 436648464 " fill="rgb(255,0,0)" points="920.633,2546.73 941.048,2546.73 941.048,2542.45 920.633,2542.45 " />
<svg:polygon detid="436648720" count="1" value="129" id="4310059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 pos   module  4   Id 436648720 " fill="rgb(255,0,0)" points="920.633,2542.45 941.048,2542.45 941.048,2538.17 920.633,2538.17 " />
<svg:polygon detid="436648976" count="1" value="129" id="4310060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 pos   module  4   Id 436648976 " fill="rgb(255,0,0)" points="920.633,2538.17 941.048,2538.17 941.048,2533.89 920.633,2533.89 " />
<svg:polygon detid="436649232" count="1" value="129" id="4310061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 pos   module  4   Id 436649232 " fill="rgb(255,0,0)" points="920.633,2533.89 941.048,2533.89 941.048,2529.61 920.633,2529.61 " />
<svg:polygon detid="436649488" count="1" value="129" id="4310062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 pos   module  4   Id 436649488 " fill="rgb(255,0,0)" points="920.633,2529.61 941.048,2529.61 941.048,2525.32 920.633,2525.32 " />
<svg:polygon detid="436649744" count="1" value="129" id="4310063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 pos   module  4   Id 436649744 " fill="rgb(255,0,0)" points="920.633,2525.32 941.048,2525.32 941.048,2521.04 920.633,2521.04 " />
<svg:polygon detid="436650000" count="1" value="129" id="4310064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 pos   module  4   Id 436650000 " fill="rgb(255,0,0)" points="920.633,2521.04 941.048,2521.04 941.048,2516.76 920.633,2516.76 " />
<svg:polygon detid="436650256" count="1" value="129" id="4310065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 pos   module  4   Id 436650256 " fill="rgb(255,0,0)" points="920.633,2516.76 941.048,2516.76 941.048,2512.48 920.633,2512.48 " />
<svg:polygon detid="436650512" count="1" value="129" id="4310066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 pos   module  4   Id 436650512 " fill="rgb(255,0,0)" points="920.633,2512.48 941.048,2512.48 941.048,2508.2 920.633,2508.2 " />
<svg:polygon detid="436650768" count="1" value="129" id="4310067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 pos   module  4   Id 436650768 " fill="rgb(255,0,0)" points="920.633,2508.2 941.048,2508.2 941.048,2503.92 920.633,2503.92 " />
<svg:polygon detid="436651024" count="1" value="129" id="4310068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 pos   module  4   Id 436651024 " fill="rgb(255,0,0)" points="920.633,2503.92 941.048,2503.92 941.048,2499.64 920.633,2499.64 " />
<svg:polygon detid="436651280" count="1" value="129" id="4310069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 pos   module  4   Id 436651280 " fill="rgb(255,0,0)" points="920.633,2499.64 941.048,2499.64 941.048,2495.35 920.633,2495.35 " />
<svg:polygon detid="436651536" count="1" value="129" id="4310070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 pos   module  4   Id 436651536 " fill="rgb(255,0,0)" points="920.633,2495.35 941.048,2495.35 941.048,2491.07 920.633,2491.07 " />
<svg:polygon detid="436651792" count="1" value="129" id="4310071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 pos   module  4   Id 436651792 " fill="rgb(255,0,0)" points="920.633,2491.07 941.048,2491.07 941.048,2486.79 920.633,2486.79 " />
<svg:polygon detid="436652048" count="1" value="129" id="4310072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 pos   module  4   Id 436652048 " fill="rgb(255,0,0)" points="920.633,2486.79 941.048,2486.79 941.048,2482.51 920.633,2482.51 " />
<svg:polygon detid="436652304" count="1" value="129" id="4310073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 pos   module  4   Id 436652304 " fill="rgb(255,0,0)" points="920.633,2482.51 941.048,2482.51 941.048,2478.23 920.633,2478.23 " />
<svg:polygon detid="436652560" count="1" value="129" id="4310074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 pos   module  4   Id 436652560 " fill="rgb(255,0,0)" points="920.633,2478.23 941.048,2478.23 941.048,2473.95 920.633,2473.95 " />
<svg:polygon detid="436633876" count="1" value="129" id="4311001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 pos   module  5   Id 436633876 " fill="rgb(255,0,0)" points="943.6,2790.78 964.014,2790.78 964.014,2786.5 943.6,2786.5 " />
<svg:polygon detid="436634132" count="1" value="129" id="4311002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 pos   module  5   Id 436634132 " fill="rgb(255,0,0)" points="943.6,2786.5 964.014,2786.5 964.014,2782.22 943.6,2782.22 " />
<svg:polygon detid="436634388" count="1" value="129" id="4311003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 pos   module  5   Id 436634388 " fill="rgb(255,0,0)" points="943.6,2782.22 964.014,2782.22 964.014,2777.94 943.6,2777.94 " />
<svg:polygon detid="436634644" count="1" value="129" id="4311004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 pos   module  5   Id 436634644 " fill="rgb(255,0,0)" points="943.6,2777.94 964.014,2777.94 964.014,2773.65 943.6,2773.65 " />
<svg:polygon detid="436634900" count="1" value="129" id="4311005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 pos   module  5   Id 436634900 " fill="rgb(255,0,0)" points="943.6,2773.65 964.014,2773.65 964.014,2769.37 943.6,2769.37 " />
<svg:polygon detid="436635156" count="1" value="129" id="4311006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 pos   module  5   Id 436635156 " fill="rgb(255,0,0)" points="943.6,2769.37 964.014,2769.37 964.014,2765.09 943.6,2765.09 " />
<svg:polygon detid="436635412" count="1" value="129" id="4311007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 pos   module  5   Id 436635412 " fill="rgb(255,0,0)" points="943.6,2765.09 964.014,2765.09 964.014,2760.81 943.6,2760.81 " />
<svg:polygon detid="436635668" count="1" value="129" id="4311008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 pos   module  5   Id 436635668 " fill="rgb(255,0,0)" points="943.6,2760.81 964.014,2760.81 964.014,2756.53 943.6,2756.53 " />
<svg:polygon detid="436635924" count="1" value="129" id="4311009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 pos   module  5   Id 436635924 " fill="rgb(255,0,0)" points="943.6,2756.53 964.014,2756.53 964.014,2752.25 943.6,2752.25 " />
<svg:polygon detid="436636180" count="1" value="129" id="4311010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 pos   module  5   Id 436636180 " fill="rgb(255,0,0)" points="943.6,2752.25 964.014,2752.25 964.014,2747.96 943.6,2747.96 " />
<svg:polygon detid="436636436" count="1" value="129" id="4311011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 pos   module  5   Id 436636436 " fill="rgb(255,0,0)" points="943.6,2747.96 964.014,2747.96 964.014,2743.68 943.6,2743.68 " />
<svg:polygon detid="436636692" count="1" value="129" id="4311012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 pos   module  5   Id 436636692 " fill="rgb(255,0,0)" points="943.6,2743.68 964.014,2743.68 964.014,2739.4 943.6,2739.4 " />
<svg:polygon detid="436636948" count="1" value="129" id="4311013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 pos   module  5   Id 436636948 " fill="rgb(255,0,0)" points="943.6,2739.4 964.014,2739.4 964.014,2735.12 943.6,2735.12 " />
<svg:polygon detid="436637204" count="1" value="129" id="4311014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 pos   module  5   Id 436637204 " fill="rgb(255,0,0)" points="943.6,2735.12 964.014,2735.12 964.014,2730.84 943.6,2730.84 " />
<svg:polygon detid="436637460" count="1" value="129" id="4311015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 pos   module  5   Id 436637460 " fill="rgb(255,0,0)" points="943.6,2730.84 964.014,2730.84 964.014,2726.56 943.6,2726.56 " />
<svg:polygon detid="436637716" count="1" value="129" id="4311016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 pos   module  5   Id 436637716 " fill="rgb(255,0,0)" points="943.6,2726.56 964.014,2726.56 964.014,2722.28 943.6,2722.28 " />
<svg:polygon detid="436637972" count="1" value="129" id="4311017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 pos   module  5   Id 436637972 " fill="rgb(255,0,0)" points="943.6,2722.28 964.014,2722.28 964.014,2717.99 943.6,2717.99 " />
<svg:polygon detid="436638228" count="1" value="129" id="4311018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 pos   module  5   Id 436638228 " fill="rgb(255,0,0)" points="943.6,2717.99 964.014,2717.99 964.014,2713.71 943.6,2713.71 " />
<svg:polygon detid="436638484" count="1" value="129" id="4311019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 pos   module  5   Id 436638484 " fill="rgb(255,0,0)" points="943.6,2713.71 964.014,2713.71 964.014,2709.43 943.6,2709.43 " />
<svg:polygon detid="436638740" count="1" value="129" id="4311020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 pos   module  5   Id 436638740 " fill="rgb(255,0,0)" points="943.6,2709.43 964.014,2709.43 964.014,2705.15 943.6,2705.15 " />
<svg:polygon detid="436638996" count="1" value="129" id="4311021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 pos   module  5   Id 436638996 " fill="rgb(255,0,0)" points="943.6,2705.15 964.014,2705.15 964.014,2700.87 943.6,2700.87 " />
<svg:polygon detid="436639252" count="1" value="129" id="4311022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 pos   module  5   Id 436639252 " fill="rgb(255,0,0)" points="943.6,2700.87 964.014,2700.87 964.014,2696.59 943.6,2696.59 " />
<svg:polygon detid="436639508" count="1" value="129" id="4311023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 pos   module  5   Id 436639508 " fill="rgb(255,0,0)" points="943.6,2696.59 964.014,2696.59 964.014,2692.3 943.6,2692.3 " />
<svg:polygon detid="436639764" count="1" value="129" id="4311024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 pos   module  5   Id 436639764 " fill="rgb(255,0,0)" points="943.6,2692.3 964.014,2692.3 964.014,2688.02 943.6,2688.02 " />
<svg:polygon detid="436640020" count="1" value="129" id="4311025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 pos   module  5   Id 436640020 " fill="rgb(255,0,0)" points="943.6,2688.02 964.014,2688.02 964.014,2683.74 943.6,2683.74 " />
<svg:polygon detid="436640276" count="1" value="129" id="4311026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 pos   module  5   Id 436640276 " fill="rgb(255,0,0)" points="943.6,2683.74 964.014,2683.74 964.014,2679.46 943.6,2679.46 " />
<svg:polygon detid="436640532" count="1" value="129" id="4311027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 pos   module  5   Id 436640532 " fill="rgb(255,0,0)" points="943.6,2679.46 964.014,2679.46 964.014,2675.18 943.6,2675.18 " />
<svg:polygon detid="436640788" count="1" value="129" id="4311028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 pos   module  5   Id 436640788 " fill="rgb(255,0,0)" points="943.6,2675.18 964.014,2675.18 964.014,2670.9 943.6,2670.9 " />
<svg:polygon detid="436641044" count="1" value="129" id="4311029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 pos   module  5   Id 436641044 " fill="rgb(255,0,0)" points="943.6,2670.9 964.014,2670.9 964.014,2666.62 943.6,2666.62 " />
<svg:polygon detid="436641300" count="1" value="129" id="4311030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 pos   module  5   Id 436641300 " fill="rgb(255,0,0)" points="943.6,2666.62 964.014,2666.62 964.014,2662.33 943.6,2662.33 " />
<svg:polygon detid="436641556" count="1" value="129" id="4311031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 pos   module  5   Id 436641556 " fill="rgb(255,0,0)" points="943.6,2662.33 964.014,2662.33 964.014,2658.05 943.6,2658.05 " />
<svg:polygon detid="436641812" count="1" value="129" id="4311032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 pos   module  5   Id 436641812 " fill="rgb(255,0,0)" points="943.6,2658.05 964.014,2658.05 964.014,2653.77 943.6,2653.77 " />
<svg:polygon detid="436642068" count="1" value="129" id="4311033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 pos   module  5   Id 436642068 " fill="rgb(255,0,0)" points="943.6,2653.77 964.014,2653.77 964.014,2649.49 943.6,2649.49 " />
<svg:polygon detid="436642324" count="1" value="129" id="4311034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 pos   module  5   Id 436642324 " fill="rgb(255,0,0)" points="943.6,2649.49 964.014,2649.49 964.014,2645.21 943.6,2645.21 " />
<svg:polygon detid="436642580" count="1" value="129" id="4311035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 pos   module  5   Id 436642580 " fill="rgb(255,0,0)" points="943.6,2645.21 964.014,2645.21 964.014,2640.93 943.6,2640.93 " />
<svg:polygon detid="436642836" count="1" value="129" id="4311036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 pos   module  5   Id 436642836 " fill="rgb(255,0,0)" points="943.6,2640.93 964.014,2640.93 964.014,2636.64 943.6,2636.64 " />
<svg:polygon detid="436643092" count="1" value="129" id="4311037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 pos   module  5   Id 436643092 " fill="rgb(255,0,0)" points="943.6,2636.64 964.014,2636.64 964.014,2632.36 943.6,2632.36 " />
<svg:polygon detid="436643348" count="1" value="129" id="4311038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 pos   module  5   Id 436643348 " fill="rgb(255,0,0)" points="943.6,2632.36 964.014,2632.36 964.014,2628.08 943.6,2628.08 " />
<svg:polygon detid="436643604" count="1" value="129" id="4311039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 pos   module  5   Id 436643604 " fill="rgb(255,0,0)" points="943.6,2628.08 964.014,2628.08 964.014,2623.8 943.6,2623.8 " />
<svg:polygon detid="436643860" count="1" value="129" id="4311040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 pos   module  5   Id 436643860 " fill="rgb(255,0,0)" points="943.6,2623.8 964.014,2623.8 964.014,2619.52 943.6,2619.52 " />
<svg:polygon detid="436644116" count="1" value="129" id="4311041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 pos   module  5   Id 436644116 " fill="rgb(255,0,0)" points="943.6,2619.52 964.014,2619.52 964.014,2615.24 943.6,2615.24 " />
<svg:polygon detid="436644372" count="1" value="129" id="4311042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 pos   module  5   Id 436644372 " fill="rgb(255,0,0)" points="943.6,2615.24 964.014,2615.24 964.014,2610.96 943.6,2610.96 " />
<svg:polygon detid="436644628" count="1" value="129" id="4311043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 pos   module  5   Id 436644628 " fill="rgb(255,0,0)" points="943.6,2610.96 964.014,2610.96 964.014,2606.67 943.6,2606.67 " />
<svg:polygon detid="436644884" count="1" value="129" id="4311044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 pos   module  5   Id 436644884 " fill="rgb(255,0,0)" points="943.6,2606.67 964.014,2606.67 964.014,2602.39 943.6,2602.39 " />
<svg:polygon detid="436645140" count="1" value="129" id="4311045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 pos   module  5   Id 436645140 " fill="rgb(255,0,0)" points="943.6,2602.39 964.014,2602.39 964.014,2598.11 943.6,2598.11 " />
<svg:polygon detid="436645396" count="1" value="129" id="4311046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 pos   module  5   Id 436645396 " fill="rgb(255,0,0)" points="943.6,2598.11 964.014,2598.11 964.014,2593.83 943.6,2593.83 " />
<svg:polygon detid="436645652" count="1" value="129" id="4311047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 pos   module  5   Id 436645652 " fill="rgb(255,0,0)" points="943.6,2593.83 964.014,2593.83 964.014,2589.55 943.6,2589.55 " />
<svg:polygon detid="436645908" count="1" value="129" id="4311048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 pos   module  5   Id 436645908 " fill="rgb(255,0,0)" points="943.6,2589.55 964.014,2589.55 964.014,2585.27 943.6,2585.27 " />
<svg:polygon detid="436646164" count="1" value="129" id="4311049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 pos   module  5   Id 436646164 " fill="rgb(255,0,0)" points="943.6,2585.27 964.014,2585.27 964.014,2580.98 943.6,2580.98 " />
<svg:polygon detid="436646420" count="1" value="129" id="4311050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 pos   module  5   Id 436646420 " fill="rgb(255,0,0)" points="943.6,2580.98 964.014,2580.98 964.014,2576.7 943.6,2576.7 " />
<svg:polygon detid="436646676" count="1" value="129" id="4311051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 pos   module  5   Id 436646676 " fill="rgb(255,0,0)" points="943.6,2576.7 964.014,2576.7 964.014,2572.42 943.6,2572.42 " />
<svg:polygon detid="436646932" count="1" value="129" id="4311052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 pos   module  5   Id 436646932 " fill="rgb(255,0,0)" points="943.6,2572.42 964.014,2572.42 964.014,2568.14 943.6,2568.14 " />
<svg:polygon detid="436647188" count="1" value="129" id="4311053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 pos   module  5   Id 436647188 " fill="rgb(255,0,0)" points="943.6,2568.14 964.014,2568.14 964.014,2563.86 943.6,2563.86 " />
<svg:polygon detid="436647444" count="1" value="129" id="4311054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 pos   module  5   Id 436647444 " fill="rgb(255,0,0)" points="943.6,2563.86 964.014,2563.86 964.014,2559.58 943.6,2559.58 " />
<svg:polygon detid="436647700" count="1" value="129" id="4311055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 pos   module  5   Id 436647700 " fill="rgb(255,0,0)" points="943.6,2559.58 964.014,2559.58 964.014,2555.3 943.6,2555.3 " />
<svg:polygon detid="436647956" count="1" value="129" id="4311056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 pos   module  5   Id 436647956 " fill="rgb(255,0,0)" points="943.6,2555.3 964.014,2555.3 964.014,2551.01 943.6,2551.01 " />
<svg:polygon detid="436648212" count="1" value="129" id="4311057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 pos   module  5   Id 436648212 " fill="rgb(255,0,0)" points="943.6,2551.01 964.014,2551.01 964.014,2546.73 943.6,2546.73 " />
<svg:polygon detid="436648468" count="1" value="129" id="4311058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 pos   module  5   Id 436648468 " fill="rgb(255,0,0)" points="943.6,2546.73 964.014,2546.73 964.014,2542.45 943.6,2542.45 " />
<svg:polygon detid="436648724" count="1" value="129" id="4311059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 pos   module  5   Id 436648724 " fill="rgb(255,0,0)" points="943.6,2542.45 964.014,2542.45 964.014,2538.17 943.6,2538.17 " />
<svg:polygon detid="436648980" count="1" value="129" id="4311060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 pos   module  5   Id 436648980 " fill="rgb(255,0,0)" points="943.6,2538.17 964.014,2538.17 964.014,2533.89 943.6,2533.89 " />
<svg:polygon detid="436649236" count="1" value="129" id="4311061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 pos   module  5   Id 436649236 " fill="rgb(255,0,0)" points="943.6,2533.89 964.014,2533.89 964.014,2529.61 943.6,2529.61 " />
<svg:polygon detid="436649492" count="1" value="129" id="4311062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 pos   module  5   Id 436649492 " fill="rgb(255,0,0)" points="943.6,2529.61 964.014,2529.61 964.014,2525.32 943.6,2525.32 " />
<svg:polygon detid="436649748" count="1" value="129" id="4311063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 pos   module  5   Id 436649748 " fill="rgb(255,0,0)" points="943.6,2525.32 964.014,2525.32 964.014,2521.04 943.6,2521.04 " />
<svg:polygon detid="436650004" count="1" value="129" id="4311064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 pos   module  5   Id 436650004 " fill="rgb(255,0,0)" points="943.6,2521.04 964.014,2521.04 964.014,2516.76 943.6,2516.76 " />
<svg:polygon detid="436650260" count="1" value="129" id="4311065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 pos   module  5   Id 436650260 " fill="rgb(255,0,0)" points="943.6,2516.76 964.014,2516.76 964.014,2512.48 943.6,2512.48 " />
<svg:polygon detid="436650516" count="1" value="129" id="4311066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 pos   module  5   Id 436650516 " fill="rgb(255,0,0)" points="943.6,2512.48 964.014,2512.48 964.014,2508.2 943.6,2508.2 " />
<svg:polygon detid="436650772" count="1" value="129" id="4311067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 pos   module  5   Id 436650772 " fill="rgb(255,0,0)" points="943.6,2508.2 964.014,2508.2 964.014,2503.92 943.6,2503.92 " />
<svg:polygon detid="436651028" count="1" value="129" id="4311068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 pos   module  5   Id 436651028 " fill="rgb(255,0,0)" points="943.6,2503.92 964.014,2503.92 964.014,2499.64 943.6,2499.64 " />
<svg:polygon detid="436651284" count="1" value="129" id="4311069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 pos   module  5   Id 436651284 " fill="rgb(255,0,0)" points="943.6,2499.64 964.014,2499.64 964.014,2495.35 943.6,2495.35 " />
<svg:polygon detid="436651540" count="1" value="129" id="4311070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 pos   module  5   Id 436651540 " fill="rgb(255,0,0)" points="943.6,2495.35 964.014,2495.35 964.014,2491.07 943.6,2491.07 " />
<svg:polygon detid="436651796" count="1" value="129" id="4311071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 pos   module  5   Id 436651796 " fill="rgb(255,0,0)" points="943.6,2491.07 964.014,2491.07 964.014,2486.79 943.6,2486.79 " />
<svg:polygon detid="436652052" count="1" value="129" id="4311072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 pos   module  5   Id 436652052 " fill="rgb(255,0,0)" points="943.6,2486.79 964.014,2486.79 964.014,2482.51 943.6,2482.51 " />
<svg:polygon detid="436652308" count="1" value="129" id="4311073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 pos   module  5   Id 436652308 " fill="rgb(255,0,0)" points="943.6,2482.51 964.014,2482.51 964.014,2478.23 943.6,2478.23 " />
<svg:polygon detid="436652564" count="1" value="129" id="4311074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 pos   module  5   Id 436652564 " fill="rgb(255,0,0)" points="943.6,2478.23 964.014,2478.23 964.014,2473.95 943.6,2473.95 " />
<svg:polygon detid="436633880" count="1" value="129" id="4312001" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 1 pos   module  6   Id 436633880 " fill="rgb(255,0,0)" points="966.566,2790.78 986.981,2790.78 986.981,2786.5 966.566,2786.5 " />
<svg:polygon detid="436634136" count="1" value="129" id="4312002" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 2 pos   module  6   Id 436634136 " fill="rgb(255,0,0)" points="966.566,2786.5 986.981,2786.5 986.981,2782.22 966.566,2782.22 " />
<svg:polygon detid="436634392" count="1" value="129" id="4312003" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 3 pos   module  6   Id 436634392 " fill="rgb(255,0,0)" points="966.566,2782.22 986.981,2782.22 986.981,2777.94 966.566,2777.94 " />
<svg:polygon detid="436634648" count="1" value="129" id="4312004" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 4 pos   module  6   Id 436634648 " fill="rgb(255,0,0)" points="966.566,2777.94 986.981,2777.94 986.981,2773.65 966.566,2773.65 " />
<svg:polygon detid="436634904" count="1" value="129" id="4312005" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 5 pos   module  6   Id 436634904 " fill="rgb(255,0,0)" points="966.566,2773.65 986.981,2773.65 986.981,2769.37 966.566,2769.37 " />
<svg:polygon detid="436635160" count="1" value="129" id="4312006" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 6 pos   module  6   Id 436635160 " fill="rgb(255,0,0)" points="966.566,2769.37 986.981,2769.37 986.981,2765.09 966.566,2765.09 " />
<svg:polygon detid="436635416" count="1" value="129" id="4312007" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 7 pos   module  6   Id 436635416 " fill="rgb(255,0,0)" points="966.566,2765.09 986.981,2765.09 986.981,2760.81 966.566,2760.81 " />
<svg:polygon detid="436635672" count="1" value="129" id="4312008" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 8 pos   module  6   Id 436635672 " fill="rgb(255,0,0)" points="966.566,2760.81 986.981,2760.81 986.981,2756.53 966.566,2756.53 " />
<svg:polygon detid="436635928" count="1" value="129" id="4312009" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 9 pos   module  6   Id 436635928 " fill="rgb(255,0,0)" points="966.566,2756.53 986.981,2756.53 986.981,2752.25 966.566,2752.25 " />
<svg:polygon detid="436636184" count="1" value="129" id="4312010" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 10 pos   module  6   Id 436636184 " fill="rgb(255,0,0)" points="966.566,2752.25 986.981,2752.25 986.981,2747.96 966.566,2747.96 " />
<svg:polygon detid="436636440" count="1" value="129" id="4312011" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 11 pos   module  6   Id 436636440 " fill="rgb(255,0,0)" points="966.566,2747.96 986.981,2747.96 986.981,2743.68 966.566,2743.68 " />
<svg:polygon detid="436636696" count="1" value="129" id="4312012" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 12 pos   module  6   Id 436636696 " fill="rgb(255,0,0)" points="966.566,2743.68 986.981,2743.68 986.981,2739.4 966.566,2739.4 " />
<svg:polygon detid="436636952" count="1" value="129" id="4312013" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 13 pos   module  6   Id 436636952 " fill="rgb(255,0,0)" points="966.566,2739.4 986.981,2739.4 986.981,2735.12 966.566,2735.12 " />
<svg:polygon detid="436637208" count="1" value="129" id="4312014" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 14 pos   module  6   Id 436637208 " fill="rgb(255,0,0)" points="966.566,2735.12 986.981,2735.12 986.981,2730.84 966.566,2730.84 " />
<svg:polygon detid="436637464" count="1" value="129" id="4312015" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 15 pos   module  6   Id 436637464 " fill="rgb(255,0,0)" points="966.566,2730.84 986.981,2730.84 986.981,2726.56 966.566,2726.56 " />
<svg:polygon detid="436637720" count="1" value="129" id="4312016" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 16 pos   module  6   Id 436637720 " fill="rgb(255,0,0)" points="966.566,2726.56 986.981,2726.56 986.981,2722.28 966.566,2722.28 " />
<svg:polygon detid="436637976" count="1" value="129" id="4312017" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 17 pos   module  6   Id 436637976 " fill="rgb(255,0,0)" points="966.566,2722.28 986.981,2722.28 986.981,2717.99 966.566,2717.99 " />
<svg:polygon detid="436638232" count="1" value="129" id="4312018" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 18 pos   module  6   Id 436638232 " fill="rgb(255,0,0)" points="966.566,2717.99 986.981,2717.99 986.981,2713.71 966.566,2713.71 " />
<svg:polygon detid="436638488" count="1" value="129" id="4312019" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 19 pos   module  6   Id 436638488 " fill="rgb(255,0,0)" points="966.566,2713.71 986.981,2713.71 986.981,2709.43 966.566,2709.43 " />
<svg:polygon detid="436638744" count="1" value="129" id="4312020" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 20 pos   module  6   Id 436638744 " fill="rgb(255,0,0)" points="966.566,2709.43 986.981,2709.43 986.981,2705.15 966.566,2705.15 " />
<svg:polygon detid="436639000" count="1" value="129" id="4312021" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 21 pos   module  6   Id 436639000 " fill="rgb(255,0,0)" points="966.566,2705.15 986.981,2705.15 986.981,2700.87 966.566,2700.87 " />
<svg:polygon detid="436639256" count="1" value="129" id="4312022" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 22 pos   module  6   Id 436639256 " fill="rgb(255,0,0)" points="966.566,2700.87 986.981,2700.87 986.981,2696.59 966.566,2696.59 " />
<svg:polygon detid="436639512" count="1" value="129" id="4312023" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 23 pos   module  6   Id 436639512 " fill="rgb(255,0,0)" points="966.566,2696.59 986.981,2696.59 986.981,2692.3 966.566,2692.3 " />
<svg:polygon detid="436639768" count="1" value="129" id="4312024" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 24 pos   module  6   Id 436639768 " fill="rgb(255,0,0)" points="966.566,2692.3 986.981,2692.3 986.981,2688.02 966.566,2688.02 " />
<svg:polygon detid="436640024" count="1" value="129" id="4312025" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 25 pos   module  6   Id 436640024 " fill="rgb(255,0,0)" points="966.566,2688.02 986.981,2688.02 986.981,2683.74 966.566,2683.74 " />
<svg:polygon detid="436640280" count="1" value="129" id="4312026" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 26 pos   module  6   Id 436640280 " fill="rgb(255,0,0)" points="966.566,2683.74 986.981,2683.74 986.981,2679.46 966.566,2679.46 " />
<svg:polygon detid="436640536" count="1" value="129" id="4312027" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 27 pos   module  6   Id 436640536 " fill="rgb(255,0,0)" points="966.566,2679.46 986.981,2679.46 986.981,2675.18 966.566,2675.18 " />
<svg:polygon detid="436640792" count="1" value="129" id="4312028" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 28 pos   module  6   Id 436640792 " fill="rgb(255,0,0)" points="966.566,2675.18 986.981,2675.18 986.981,2670.9 966.566,2670.9 " />
<svg:polygon detid="436641048" count="1" value="129" id="4312029" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 29 pos   module  6   Id 436641048 " fill="rgb(255,0,0)" points="966.566,2670.9 986.981,2670.9 986.981,2666.62 966.566,2666.62 " />
<svg:polygon detid="436641304" count="1" value="129" id="4312030" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 30 pos   module  6   Id 436641304 " fill="rgb(255,0,0)" points="966.566,2666.62 986.981,2666.62 986.981,2662.33 966.566,2662.33 " />
<svg:polygon detid="436641560" count="1" value="129" id="4312031" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 31 pos   module  6   Id 436641560 " fill="rgb(255,0,0)" points="966.566,2662.33 986.981,2662.33 986.981,2658.05 966.566,2658.05 " />
<svg:polygon detid="436641816" count="1" value="129" id="4312032" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 32 pos   module  6   Id 436641816 " fill="rgb(255,0,0)" points="966.566,2658.05 986.981,2658.05 986.981,2653.77 966.566,2653.77 " />
<svg:polygon detid="436642072" count="1" value="129" id="4312033" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 33 pos   module  6   Id 436642072 " fill="rgb(255,0,0)" points="966.566,2653.77 986.981,2653.77 986.981,2649.49 966.566,2649.49 " />
<svg:polygon detid="436642328" count="1" value="129" id="4312034" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 34 pos   module  6   Id 436642328 " fill="rgb(255,0,0)" points="966.566,2649.49 986.981,2649.49 986.981,2645.21 966.566,2645.21 " />
<svg:polygon detid="436642584" count="1" value="129" id="4312035" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 35 pos   module  6   Id 436642584 " fill="rgb(255,0,0)" points="966.566,2645.21 986.981,2645.21 986.981,2640.93 966.566,2640.93 " />
<svg:polygon detid="436642840" count="1" value="129" id="4312036" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 36 pos   module  6   Id 436642840 " fill="rgb(255,0,0)" points="966.566,2640.93 986.981,2640.93 986.981,2636.64 966.566,2636.64 " />
<svg:polygon detid="436643096" count="1" value="129" id="4312037" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 37 pos   module  6   Id 436643096 " fill="rgb(255,0,0)" points="966.566,2636.64 986.981,2636.64 986.981,2632.36 966.566,2632.36 " />
<svg:polygon detid="436643352" count="1" value="129" id="4312038" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 38 pos   module  6   Id 436643352 " fill="rgb(255,0,0)" points="966.566,2632.36 986.981,2632.36 986.981,2628.08 966.566,2628.08 " />
<svg:polygon detid="436643608" count="1" value="129" id="4312039" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 39 pos   module  6   Id 436643608 " fill="rgb(255,0,0)" points="966.566,2628.08 986.981,2628.08 986.981,2623.8 966.566,2623.8 " />
<svg:polygon detid="436643864" count="1" value="129" id="4312040" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 40 pos   module  6   Id 436643864 " fill="rgb(255,0,0)" points="966.566,2623.8 986.981,2623.8 986.981,2619.52 966.566,2619.52 " />
<svg:polygon detid="436644120" count="1" value="129" id="4312041" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 41 pos   module  6   Id 436644120 " fill="rgb(255,0,0)" points="966.566,2619.52 986.981,2619.52 986.981,2615.24 966.566,2615.24 " />
<svg:polygon detid="436644376" count="1" value="129" id="4312042" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 42 pos   module  6   Id 436644376 " fill="rgb(255,0,0)" points="966.566,2615.24 986.981,2615.24 986.981,2610.96 966.566,2610.96 " />
<svg:polygon detid="436644632" count="1" value="129" id="4312043" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 43 pos   module  6   Id 436644632 " fill="rgb(255,0,0)" points="966.566,2610.96 986.981,2610.96 986.981,2606.67 966.566,2606.67 " />
<svg:polygon detid="436644888" count="1" value="129" id="4312044" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 44 pos   module  6   Id 436644888 " fill="rgb(255,0,0)" points="966.566,2606.67 986.981,2606.67 986.981,2602.39 966.566,2602.39 " />
<svg:polygon detid="436645144" count="1" value="129" id="4312045" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 45 pos   module  6   Id 436645144 " fill="rgb(255,0,0)" points="966.566,2602.39 986.981,2602.39 986.981,2598.11 966.566,2598.11 " />
<svg:polygon detid="436645400" count="1" value="129" id="4312046" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 46 pos   module  6   Id 436645400 " fill="rgb(255,0,0)" points="966.566,2598.11 986.981,2598.11 986.981,2593.83 966.566,2593.83 " />
<svg:polygon detid="436645656" count="1" value="129" id="4312047" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 47 pos   module  6   Id 436645656 " fill="rgb(255,0,0)" points="966.566,2593.83 986.981,2593.83 986.981,2589.55 966.566,2589.55 " />
<svg:polygon detid="436645912" count="1" value="129" id="4312048" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 48 pos   module  6   Id 436645912 " fill="rgb(255,0,0)" points="966.566,2589.55 986.981,2589.55 986.981,2585.27 966.566,2585.27 " />
<svg:polygon detid="436646168" count="1" value="129" id="4312049" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 49 pos   module  6   Id 436646168 " fill="rgb(255,0,0)" points="966.566,2585.27 986.981,2585.27 986.981,2580.98 966.566,2580.98 " />
<svg:polygon detid="436646424" count="1" value="129" id="4312050" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 50 pos   module  6   Id 436646424 " fill="rgb(255,0,0)" points="966.566,2580.98 986.981,2580.98 986.981,2576.7 966.566,2576.7 " />
<svg:polygon detid="436646680" count="1" value="129" id="4312051" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 51 pos   module  6   Id 436646680 " fill="rgb(255,0,0)" points="966.566,2576.7 986.981,2576.7 986.981,2572.42 966.566,2572.42 " />
<svg:polygon detid="436646936" count="1" value="129" id="4312052" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 52 pos   module  6   Id 436646936 " fill="rgb(255,0,0)" points="966.566,2572.42 986.981,2572.42 986.981,2568.14 966.566,2568.14 " />
<svg:polygon detid="436647192" count="1" value="129" id="4312053" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 53 pos   module  6   Id 436647192 " fill="rgb(255,0,0)" points="966.566,2568.14 986.981,2568.14 986.981,2563.86 966.566,2563.86 " />
<svg:polygon detid="436647448" count="1" value="129" id="4312054" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 54 pos   module  6   Id 436647448 " fill="rgb(255,0,0)" points="966.566,2563.86 986.981,2563.86 986.981,2559.58 966.566,2559.58 " />
<svg:polygon detid="436647704" count="1" value="129" id="4312055" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 55 pos   module  6   Id 436647704 " fill="rgb(255,0,0)" points="966.566,2559.58 986.981,2559.58 986.981,2555.3 966.566,2555.3 " />
<svg:polygon detid="436647960" count="1" value="129" id="4312056" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 56 pos   module  6   Id 436647960 " fill="rgb(255,0,0)" points="966.566,2555.3 986.981,2555.3 986.981,2551.01 966.566,2551.01 " />
<svg:polygon detid="436648216" count="1" value="129" id="4312057" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 57 pos   module  6   Id 436648216 " fill="rgb(255,0,0)" points="966.566,2551.01 986.981,2551.01 986.981,2546.73 966.566,2546.73 " />
<svg:polygon detid="436648472" count="1" value="129" id="4312058" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 58 pos   module  6   Id 436648472 " fill="rgb(255,0,0)" points="966.566,2546.73 986.981,2546.73 986.981,2542.45 966.566,2542.45 " />
<svg:polygon detid="436648728" count="1" value="129" id="4312059" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 59 pos   module  6   Id 436648728 " fill="rgb(255,0,0)" points="966.566,2542.45 986.981,2542.45 986.981,2538.17 966.566,2538.17 " />
<svg:polygon detid="436648984" count="1" value="129" id="4312060" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 60 pos   module  6   Id 436648984 " fill="rgb(255,0,0)" points="966.566,2538.17 986.981,2538.17 986.981,2533.89 966.566,2533.89 " />
<svg:polygon detid="436649240" count="1" value="129" id="4312061" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 61 pos   module  6   Id 436649240 " fill="rgb(255,0,0)" points="966.566,2533.89 986.981,2533.89 986.981,2529.61 966.566,2529.61 " />
<svg:polygon detid="436649496" count="1" value="129" id="4312062" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 62 pos   module  6   Id 436649496 " fill="rgb(255,0,0)" points="966.566,2529.61 986.981,2529.61 986.981,2525.32 966.566,2525.32 " />
<svg:polygon detid="436649752" count="1" value="129" id="4312063" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 63 pos   module  6   Id 436649752 " fill="rgb(255,0,0)" points="966.566,2525.32 986.981,2525.32 986.981,2521.04 966.566,2521.04 " />
<svg:polygon detid="436650008" count="1" value="129" id="4312064" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 64 pos   module  6   Id 436650008 " fill="rgb(255,0,0)" points="966.566,2521.04 986.981,2521.04 986.981,2516.76 966.566,2516.76 " />
<svg:polygon detid="436650264" count="1" value="129" id="4312065" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 65 pos   module  6   Id 436650264 " fill="rgb(255,0,0)" points="966.566,2516.76 986.981,2516.76 986.981,2512.48 966.566,2512.48 " />
<svg:polygon detid="436650520" count="1" value="129" id="4312066" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 66 pos   module  6   Id 436650520 " fill="rgb(255,0,0)" points="966.566,2512.48 986.981,2512.48 986.981,2508.2 966.566,2508.2 " />
<svg:polygon detid="436650776" count="1" value="129" id="4312067" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 67 pos   module  6   Id 436650776 " fill="rgb(255,0,0)" points="966.566,2508.2 986.981,2508.2 986.981,2503.92 966.566,2503.92 " />
<svg:polygon detid="436651032" count="1" value="129" id="4312068" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 68 pos   module  6   Id 436651032 " fill="rgb(255,0,0)" points="966.566,2503.92 986.981,2503.92 986.981,2499.64 966.566,2499.64 " />
<svg:polygon detid="436651288" count="1" value="129" id="4312069" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 69 pos   module  6   Id 436651288 " fill="rgb(255,0,0)" points="966.566,2499.64 986.981,2499.64 986.981,2495.35 966.566,2495.35 " />
<svg:polygon detid="436651544" count="1" value="129" id="4312070" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 70 pos   module  6   Id 436651544 " fill="rgb(255,0,0)" points="966.566,2495.35 986.981,2495.35 986.981,2491.07 966.566,2491.07 " />
<svg:polygon detid="436651800" count="1" value="129" id="4312071" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 71 pos   module  6   Id 436651800 " fill="rgb(255,0,0)" points="966.566,2491.07 986.981,2491.07 986.981,2486.79 966.566,2486.79 " />
<svg:polygon detid="436652056" count="1" value="129" id="4312072" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 72 pos   module  6   Id 436652056 " fill="rgb(255,0,0)" points="966.566,2486.79 986.981,2486.79 986.981,2482.51 966.566,2482.51 " />
<svg:polygon detid="436652312" count="1" value="129" id="4312073" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 73 pos   module  6   Id 436652312 " fill="rgb(255,0,0)" points="966.566,2482.51 986.981,2482.51 986.981,2478.23 966.566,2478.23 " />
<svg:polygon detid="436652568" count="1" value="129" id="4312074" onclick="showData(evt);" onmouseover="showData(evt);" onmouseout="showData(evt);" MESSAGE="" POS="TOB   layer 6 rod 74 pos   module  6   Id 436652568 " fill="rgb(255,0,0)" points="966.566,2478.23 986.981,2478.23 986.981,2473.95 966.566,2473.95 " />
</svg:g></svg:svg>
 <svg:text id="Title" class="normalText"  x="100" y="0"> </svg:text>
</svg:svg>
</body></html>
