view svg/21-Feb-CU-20-Feb.svg @ 0:fd3d8ada71ad

Inital Commit
author tschulz <>
date Wed, 17 Nov 2010 22:27:29 -0600
parents
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg height="700" onload="init(evt)" width="700" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">	<script type="text/ecmascript"><![CDATA[
		var SVGDoc; var SVGRoot;
		function init(evt) {
			SVGDoc = evt.getTarget().getOwnerDocument();
			SVGRoot = SVGDoc.getDocumentElement();
		}]]>
	</script>	<script type="text/ecmascript"><![CDATA[
	var svgns = "http://www.w3.org/2000/svg";
	var tracking;
	var x_offset = 0; var y_offset = 0; // how far off the mouse was from a group's coordinates
	var global_mouse_x; var global_mouse_y; // for seeing if the mouse moved
	
	function toggle_item_opacity(id,op1,op2) {
		if (SVGDoc.getElementById(id) != null) {
			var item = SVGDoc.getElementById(id);
			var new_op = (parseFloat(item.getAttributeNS(null, 'opacity')) == op1) ? op2 : op1;
			item.setAttributeNS(null, 'opacity',new_op.toString());
		}
	}
	function showSaver(op) {
		if (SVGDoc.getElementById('Saver') != null) {
			var theSaver = SVGDoc.getElementById('Saver');
			theSaver.setAttributeNS(null, 'opacity',op);
		}
	}
	function trackGroup(evt,id,onoff){
		tracking = onoff;
		if (onoff) {
			findGroupClickOffset(evt,id);
			showSaver(1);
		}
	}
	function findGroupClickOffset(evt,name_of_group) {
		var theClickedThing = SVGDoc.getElementById(name_of_group);
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		var group_coords = findGroupCoordinates(name_of_group);
		x_offset = mouse_x - group_coords.x; // global variable
		y_offset = mouse_y - group_coords.y; // global variable
	}
	function findGroupCoordinates(name_of_group) {
		var theGroup = SVGDoc.getElementById(name_of_group);
		var old_transform = theGroup.getAttributeNS(null, 'transform'); 
		var regex = /([0-9e.-]+),([0-9e.-]+)/;
		var numbers = regex.exec(old_transform);
		var group_x = eval(numbers[1]) + parseFloat(theGroup.getAttributeNS(null, 'x'));
		var group_y = eval(numbers[2]) + parseFloat(theGroup.getAttributeNS(null, 'y'));
		return { x: group_x, y: group_y };
	}
	function moveGroup(evt,name_of_group) {
		if (tracking) {
			var theGroup = SVGDoc.getElementById(name_of_group);
			// Find out where the mouse is, and use x and y offset values
			var scale = SVGRoot.getCurrentScale();
			var pan = SVGRoot.getCurrentTranslate();
			var new_x = evt.getClientX()/scale + (( 0.0 - pan.x ) / scale) - x_offset;
			var new_y = evt.getClientY()/scale + (( 0.0 - pan.y ) / scale) - y_offset;
			// Calculate new translation based on difference between mouse position and origin
			var new_x_transform = new_x - parseFloat(theGroup.getAttributeNS(null, 'x'));
			var new_y_transform = new_y - parseFloat(theGroup.getAttributeNS(null, 'y'));
			// Plug new translation values into old transform attribute
			var old_transform = theGroup.getAttributeNS(null, 'transform');
			var regex = /([0-9e.-]+),([0-9e.-]+)/;
			var new_transform = old_transform.replace(regex,new_x_transform+','+new_y_transform);
			theGroup.setAttributeNS(null, 'transform',new_transform);
		}
	}
	var original_stroke_color = new Object;
	var original_stroke_width = new Object;
	function highlight(name_of_thing,onoff) {
		var highlight_color = '#0000FF';
		var highlight_width = '1';
		var theThing = SVGDoc.getElementById(name_of_thing);
		if (onoff) {
			original_stroke_color[name_of_thing] = theThing.getAttributeNS(null, 'stroke');
			original_stroke_width[name_of_thing] = theThing.getAttributeNS(null, 'stroke-width');
			theThing.setAttributeNS(null, 'stroke',highlight_color);
			theThing.setAttributeNS(null, 'stroke-width',highlight_width);
		} else {
			theThing.setAttributeNS(null, 'stroke',original_stroke_color[name_of_thing]);
			theThing.setAttributeNS(null, 'stroke-width',original_stroke_width[name_of_thing]);
		}
	}
	]]>
	</script>	<script type="text/ecmascript"><![CDATA[
	function toggle_track_opacity(id,track_op,label_op) {
		toggle_item_opacity(id+' track',track_op,1);
		toggle_item_opacity(id+' label',label_op,1);
	}
	function toggle_track_opacity_from_legend(id,legend_id,track_op,label_op) {
		toggle_item_opacity(id+' track',track_op,1);
		toggle_item_opacity(id+' label',label_op,1);
		toggle_item_opacity(legend_id,label_op,1);
	}
	function trackLabelMouseDown(evt,id) {
		tracking = 1;
		showSaver(1);
		findGroupClickOffset(evt,id+' label');
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
	}
	function trackLabelMouseUp(evt,id) {
		tracking = 0;
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
			toggle_track_opacity(id,0,0.25);
		}
	}
	]]>
	</script>
	<g id="demis background" opacity="0.5" transform="translate(0,0)">
		<image height="700" id="background map 1" opacity="1" width="700" x="0" xlink:href="http://www2.demis.nl/wms/wms.asp?version=1.1.0&amp;wms=WorldMap&amp;request=GetMap&amp;srs=EPSG:4326&amp;bbox=-95.2184307,46.4478774,-95.1949643,46.4640586&amp;WIDTH=700&amp;HEIGHT=700&amp;format=PNG&amp;transparent=FALSE&amp;exceptions=INIMAGE&amp;wrapdateline=TRUE&amp;layers=Bathymetry,Countries,Topography,Builtup+areas,Coastlines,Waterbodies,Rivers,Streams,Highways,Roads,Railroads,Trails,Hillshading,Borders,Settlements,Cities,Airports" y="0" />
	</g>
	<g id="20-FEB-10 (t1) track" opacity="0.9">
		<line fill="none" id="t1 p1" stroke="#1000CC" stroke-width="2" x1="556.3775" x2="555.3931" y1="463.7734" y2="462.9082" />
		<line fill="none" id="t1 p2" stroke="#0004CC" stroke-width="2" x1="555.3931" x2="554.5280" y1="462.9082" y2="462.2160" />
		<line fill="none" id="t1 p3" stroke="#00ACCC" stroke-width="2" x1="554.5280" x2="551.8135" y1="462.2160" y2="461.4373" />
		<line fill="none" id="t1 p4" stroke="#0094CC" stroke-width="2" x1="551.8135" x2="548.8604" y1="461.4373" y2="460.8750" />
		<line fill="none" id="t1 p5" stroke="#00ACCC" stroke-width="2" x1="548.8604" x2="544.0578" y1="460.8750" y2="459.0581" />
		<line fill="none" id="t1 p6" stroke="#00C0CC" stroke-width="2" x1="544.0578" x2="539.9413" y1="459.0581" y2="456.6355" />
		<line fill="none" id="t1 p7" stroke="#00CCC4" stroke-width="2" x1="539.9413" x2="538.2111" y1="456.6355" y2="454.3860" />
		<line fill="none" id="t1 p8" stroke="#00C0CC" stroke-width="2" x1="538.2111" x2="534.4526" y1="454.3860" y2="446.4262" />
		<line fill="none" id="t1 p9" stroke="#00CC9C" stroke-width="2" x1="534.4526" x2="531.1713" y1="446.4262" y2="433.8376" />
		<line fill="none" id="t1 p10" stroke="#00CC84" stroke-width="2" x1="531.1713" x2="532.9611" y1="433.8376" y2="424.4502" />
		<line fill="none" id="t1 p11" stroke="#00CC48" stroke-width="2" x1="532.9611" x2="531.9170" y1="424.4502" y2="417.3556" />
		<line fill="none" id="t1 p12" stroke="#00CC5C" stroke-width="2" x1="531.9170" x2="527.2934" y1="417.3556" y2="410.1312" />
		<line fill="none" id="t1 p13" stroke="#00CC1C" stroke-width="2" x1="527.2934" x2="519.4780" y1="410.1312" y2="405.6322" />
		<line fill="none" id="t1 p14" stroke="#00CC08" stroke-width="2" x1="519.4780" x2="512.7365" y1="405.6322" y2="403.4259" />
		<line fill="none" id="t1 p15" stroke="#20CC00" stroke-width="2" x1="512.7365" x2="508.0234" y1="403.4259" y2="406.9299" />
		<line fill="none" id="t1 p16" stroke="#00CC30" stroke-width="2" x1="508.0234" x2="501.6696" y1="406.9299" y2="415.3224" />
		<line fill="none" id="t1 p17" stroke="#00CC48" stroke-width="2" x1="501.6696" x2="497.4636" y1="415.3224" y2="422.6333" />
		<line fill="none" id="t1 p18" stroke="#00CC70" stroke-width="2" x1="497.4636" x2="494.6596" y1="422.6333" y2="433.6645" />
		<line fill="none" id="t1 p19" stroke="#00CC48" stroke-width="2" x1="494.6596" x2="490.7519" y1="433.6645" y2="444.3930" />
		<line fill="none" id="t1 p20" stroke="#00CC5C" stroke-width="2" x1="490.7519" x2="485.2632" y1="444.3930" y2="454.5158" />
		<line fill="none" id="t1 p21" stroke="#0CCC00" stroke-width="2" x1="485.2632" x2="485.4124" y1="454.5158" y2="458.4957" />
		<line fill="none" id="t1 p22" stroke="#00CC1C" stroke-width="2" x1="485.4124" x2="487.2022" y1="458.4957" y2="463.9032" />
		<line fill="none" id="t1 p23" stroke="#00CC1C" stroke-width="2" x1="487.2022" x2="491.1695" y1="463.9032" y2="468.9213" />
		<line fill="none" id="t1 p24" stroke="#00CC70" stroke-width="2" x1="491.1695" x2="496.8074" y1="468.9213" y2="475.3238" />
		<line fill="none" id="t1 p25" stroke="#00CC48" stroke-width="2" x1="496.8074" x2="505.0404" y1="475.3238" y2="477.8328" />
		<line fill="none" id="t1 p26" stroke="#00CC70" stroke-width="2" x1="505.0404" x2="511.4538" y1="477.8328" y2="479.5200" />
		<line fill="none" id="t1 p27" stroke="#00CC84" stroke-width="2" x1="511.4538" x2="517.5092" y1="479.5200" y2="481.5532" />
		<line fill="none" id="t1 p28" stroke="#00CC48" stroke-width="2" x1="517.5092" x2="519.4482" y1="481.5532" y2="482.0723" />
		<line fill="none" id="t1 p29" stroke="#00CC9C" stroke-width="2" x1="519.4482" x2="521.8942" y1="482.0723" y2="482.9807" />
		<line fill="none" id="t1 p30" stroke="#00CC9C" stroke-width="2" x1="521.8942" x2="524.8474" y1="482.9807" y2="486.0955" />
		<line fill="none" id="t1 p31" stroke="#00ACCC" stroke-width="2" x1="524.8474" x2="526.1599" y1="486.0955" y2="487.8691" />
		<line fill="none" id="t1 p32" stroke="#00CCB0" stroke-width="2" x1="526.1599" x2="528.4270" y1="487.8691" y2="494.2283" />
		<line fill="none" id="t1 p33" stroke="#00C0CC" stroke-width="2" x1="528.4270" x2="525.7124" y1="494.2283" y2="498.2947" />
		<line fill="none" id="t1 p34" stroke="#00CC84" stroke-width="2" x1="525.7124" x2="520.3729" y1="498.2947" y2="507.6821" />
		<line fill="none" id="t1 p35" stroke="#00CC70" stroke-width="2" x1="520.3729" x2="522.5505" y1="507.6821" y2="516.2476" />
		<line fill="none" id="t1 p36" stroke="#00CC08" stroke-width="2" x1="522.5505" x2="526.2494" y1="516.2476" y2="523.2124" />
		<line fill="none" id="t1 p37" stroke="#20CC00" stroke-width="2" x1="526.2494" x2="525.6528" y1="523.2124" y2="529.0957" />
		<line fill="none" id="t1 p38" stroke="#00CC08" stroke-width="2" x1="525.6528" x2="525.6826" y1="529.0957" y2="534.2437" />
		<line fill="none" id="t1 p39" stroke="#00CC1C" stroke-width="2" x1="525.6826" x2="524.6982" y1="534.2437" y2="538.7859" />
		<line fill="none" id="t1 p40" stroke="#00CC1C" stroke-width="2" x1="524.6982" x2="522.2224" y1="538.7859" y2="542.6361" />
		<line fill="none" id="t1 p41" stroke="#00CC1C" stroke-width="2" x1="522.2224" x2="520.5519" y1="542.6361" y2="543.4147" />
		<line fill="none" id="t1 p42" stroke="#00CC1C" stroke-width="2" x1="520.5519" x2="518.4638" y1="543.4147" y2="543.7608" />
		<line fill="none" id="t1 p43" stroke="#00CC9C" stroke-width="2" x1="518.4638" x2="515.6598" y1="543.7608" y2="544.1502" />
		<line fill="none" id="t1 p44" stroke="#00CCB0" stroke-width="2" x1="515.6598" x2="510.6782" y1="544.1502" y2="547.3081" />
		<line fill="none" id="t1 p45" stroke="#0080CC" stroke-width="2" x1="510.6782" x2="506.9197" y1="547.3081" y2="549.2548" />
		<line fill="none" id="t1 p46" stroke="#0058CC" stroke-width="2" x1="506.9197" x2="501.1625" y1="549.2548" y2="549.9902" />
		<line fill="none" id="t1 p47" stroke="#0080CC" stroke-width="2" x1="501.1625" x2="494.8386" y1="549.9902" y2="545.0154" />
		<line fill="none" id="t1 p48" stroke="#00C0CC" stroke-width="2" x1="494.8386" x2="486.8740" y1="545.0154" y2="540.5163" />
		<line fill="none" id="t1 p49" stroke="#00CCC4" stroke-width="2" x1="486.8740" x2="483.7717" y1="540.5163" y2="538.8292" />
		<line fill="none" id="t1 p50" stroke="#00C0CC" stroke-width="2" x1="483.7717" x2="479.3868" y1="538.8292" y2="536.5364" />
		<line fill="none" id="t1 p51" stroke="#00ACCC" stroke-width="2" x1="479.3868" x2="474.4350" y1="536.5364" y2="533.2054" />
		<line fill="none" id="t1 p52" stroke="#0080CC" stroke-width="2" x1="474.4350" x2="472.1083" y1="533.2054" y2="526.7597" />
		<line fill="none" id="t1 p53" stroke="#006CCC" stroke-width="2" x1="472.1083" x2="468.2304" y1="526.7597" y2="516.5936" />
		<line fill="none" id="t1 p54" stroke="#00ACCC" stroke-width="2" x1="468.2304" x2="463.8156" y1="516.5936" y2="511.4457" />
		<line fill="none" id="t1 p55" stroke="#0094CC" stroke-width="2" x1="463.8156" x2="455.6721" y1="511.4457" y2="503.9185" />
		<line fill="none" id="t1 p56" stroke="#00C0CC" stroke-width="2" x1="455.6721" x2="448.3936" y1="503.9185" y2="495.3963" />
		<line fill="none" id="t1 p57" stroke="#00CCB0" stroke-width="2" x1="448.3936" x2="446.7828" y1="495.3963" y2="485.0572" />
		<line fill="none" id="t1 p58" stroke="#00ACCC" stroke-width="2" x1="446.7828" x2="446.9618" y1="485.0572" y2="479.8660" />
		<line fill="none" id="t1 p59" stroke="#00C0CC" stroke-width="2" x1="446.9618" x2="445.3808" y1="479.8660" y2="469.3972" />
		<line fill="none" id="t1 p60" stroke="#00CC9C" stroke-width="2" x1="445.3808" x2="447.1706" y1="469.3972" y2="459.7502" />
		<line fill="none" id="t1 p61" stroke="#00CC70" stroke-width="2" x1="447.1706" x2="450.9888" y1="459.7502" y2="448.8487" />
		<line fill="none" id="t1 p62" stroke="#00CC48" stroke-width="2" x1="450.9888" x2="454.4192" y1="448.8487" y2="438.6394" />
		<line fill="none" id="t1 p63" stroke="#00CC30" stroke-width="2" x1="454.4192" x2="456.5968" y1="438.6394" y2="427.7379" />
		<line fill="none" id="t1 p64" stroke="#00CC5C" stroke-width="2" x1="456.5968" x2="453.7928" y1="427.7379" y2="418.9129" />
		<line fill="none" id="t1 p65" stroke="#0CCC00" stroke-width="2" x1="453.7928" x2="450.4220" y1="418.9129" y2="413.2459" />
		<line fill="none" id="t1 p66" stroke="#0CCC00" stroke-width="2" x1="450.4220" x2="445.5896" y1="413.2459" y2="405.5889" />
		<line fill="none" id="t1 p67" stroke="#0CCC00" stroke-width="2" x1="445.5896" x2="440.7572" y1="405.5889" y2="399.1432" />
		<line fill="none" id="t1 p68" stroke="#0CCC00" stroke-width="2" x1="440.7572" x2="439.4447" y1="399.1432" y2="396.5043" />
		<line fill="none" id="t1 p69" stroke="#4CCC00" stroke-width="2" x1="439.4447" x2="439.1762" y1="396.5043" y2="396.1582" />
		<line fill="none" id="t1 p70" stroke="#60CC00" stroke-width="2" x1="439.1762" x2="438.6989" y1="396.1582" y2="391.9188" />
		<line fill="none" id="t1 p71" stroke="#74CC00" stroke-width="2" x1="438.6989" x2="438.5796" y1="391.9188" y2="382.5314" />
		<line fill="none" id="t1 p72" stroke="#B4CC00" stroke-width="2" x1="438.5796" x2="440.3396" y1="382.5314" y2="372.9277" />
		<line fill="none" id="t1 p73" stroke="#CCBC00" stroke-width="2" x1="440.3396" x2="443.5313" y1="372.9277" y2="363.0645" />
		<line fill="none" id="t1 p74" stroke="#CC5400" stroke-width="2" x1="443.5313" x2="446.9319" y1="363.0645" y2="356.4025" />
		<line fill="none" id="t1 p75" stroke="#CC5400" stroke-width="2" x1="446.9319" x2="450.1834" y1="356.4025" y2="347.9235" />
		<line fill="none" id="t1 p76" stroke="#CC7C00" stroke-width="2" x1="450.1834" x2="451.4362" y1="347.9235" y2="342.9054" />
		<line fill="none" id="t1 p77" stroke="#C8CC00" stroke-width="2" x1="451.4362" x2="451.6749" y1="342.9054" y2="341.6509" />
		<line fill="none" id="t1 p78" stroke="#C8CC00" stroke-width="2" x1="451.6749" x2="451.9433" y1="341.6509" y2="339.8772" />
		<line fill="none" id="t1 p79" stroke="#A0CC00" stroke-width="2" x1="451.9433" x2="452.3013" y1="339.8772" y2="338.6227" />
		<line fill="none" id="t1 p80" stroke="#74CC00" stroke-width="2" x1="452.3013" x2="452.4206" y1="338.6227" y2="337.5412" />
		<line fill="none" id="t1 p81" stroke="#60CC00" stroke-width="2" x1="452.4206" x2="452.5101" y1="337.5412" y2="336.7192" />
		<line fill="none" id="t1 p82" stroke="#4CCC00" stroke-width="2" x1="452.5101" x2="452.4803" y1="336.7192" y2="335.6810" />
		<line fill="none" id="t1 p83" stroke="#38CC00" stroke-width="2" x1="452.4803" x2="452.5996" y1="335.6810" y2="334.7725" />
		<line fill="none" id="t1 p84" stroke="#20CC00" stroke-width="2" x1="452.5996" x2="452.6593" y1="334.7725" y2="333.4315" />
		<line fill="none" id="t1 p85" stroke="#00CC08" stroke-width="2" x1="452.6593" x2="452.3908" y1="333.4315" y2="332.1769" />
		<line fill="none" id="t1 p86" stroke="#00CC08" stroke-width="2" x1="452.3908" x2="452.2118" y1="332.1769" y2="330.9224" />
		<line fill="none" id="t1 p87" stroke="#00CC30" stroke-width="2" x1="452.2118" x2="452.0925" y1="330.9224" y2="329.6679" />
		<line fill="none" id="t1 p88" stroke="#00CC5C" stroke-width="2" x1="452.0925" x2="451.7345" y1="329.6679" y2="328.2836" />
		<line fill="none" id="t1 p89" stroke="#00CC70" stroke-width="2" x1="451.7345" x2="451.2274" y1="328.2836" y2="327.0723" />
		<line fill="none" id="t1 p90" stroke="#00CC9C" stroke-width="2" x1="451.2274" x2="450.4519" y1="327.0723" y2="325.7745" />
		<line fill="none" id="t1 p91" stroke="#00CCB0" stroke-width="2" x1="450.4519" x2="449.0499" y1="325.7745" y2="324.1306" />
		<line fill="none" id="t1 p92" stroke="#00CCC4" stroke-width="2" x1="449.0499" x2="443.6507" y1="324.1306" y2="321.1024" />
		<line fill="none" id="t1 p93" stroke="#00CCB0" stroke-width="2" x1="443.6507" x2="437.7145" y1="321.1024" y2="319.8912" />
		<line fill="none" id="t1 p94" stroke="#00CCC4" stroke-width="2" x1="437.7145" x2="430.4659" y1="319.8912" y2="318.4203" />
		<line fill="none" id="t1 p95" stroke="#00CCB0" stroke-width="2" x1="430.4659" x2="422.9488" y1="318.4203" y2="317.8579" />
		<line fill="none" id="t1 p96" stroke="#00CCB0" stroke-width="2" x1="422.9488" x2="414.8947" y1="317.8579" y2="317.1658" />
		<line fill="none" id="t1 p97" stroke="#00CC84" stroke-width="2" x1="414.8947" x2="406.5722" y1="317.1658" y2="315.1758" />
		<line fill="none" id="t1 p98" stroke="#00CC30" stroke-width="2" x1="406.5722" x2="397.1162" y1="315.1758" y2="310.0279" />
		<line fill="none" id="t1 p99" stroke="#60CC00" stroke-width="2" x1="397.1162" x2="388.9428" y1="310.0279" y2="306.9997" />
		<line fill="none" id="t1 p100" stroke="#C8CC00" stroke-width="2" x1="388.9428" x2="384.8263" y1="306.9997" y2="305.7884" />
		<line fill="none" id="t1 p101" stroke="#88CC00" stroke-width="2" x1="384.8263" x2="377.3987" y1="305.7884" y2="303.7552" />
		<line fill="none" id="t1 p102" stroke="#A0CC00" stroke-width="2" x1="377.3987" x2="367.8233" y1="303.7552" y2="302.8900" />
		<line fill="none" id="t1 p103" stroke="#CCA800" stroke-width="2" x1="367.8233" x2="356.3388" y1="302.8900" y2="302.2844" />
		<line fill="none" id="t1 p104" stroke="#CC9000" stroke-width="2" x1="356.3388" x2="343.1242" y1="302.2844" y2="301.2462" />
		<line fill="none" id="t1 p105" stroke="#CC5400" stroke-width="2" x1="343.1242" x2="330.4764" y1="301.2462" y2="296.8337" />
		<line fill="none" id="t1 p106" stroke="#CC0000" stroke-width="2" x1="330.4764" x2="326.6284" y1="296.8337" y2="291.5127" />
		<line fill="none" id="t1 p107" stroke="#CC2800" stroke-width="2" x1="326.6284" x2="319.0218" y1="291.5127" y2="286.0187" />
		<line fill="none" id="t1 p108" stroke="#CC1400" stroke-width="2" x1="319.0218" x2="312.0714" y1="286.0187" y2="279.7460" />
		<line fill="none" id="t1 p109" stroke="#CC1400" stroke-width="2" x1="312.0714" x2="310.2816" y1="279.7460" y2="272.2188" />
		<line fill="none" id="t1 p110" stroke="#CC4000" stroke-width="2" x1="310.2816" x2="309.3867" y1="272.2188" y2="263.3938" />
		<line fill="none" id="t1 p111" stroke="#CC5400" stroke-width="2" x1="309.3867" x2="307.3881" y1="263.3938" y2="255.0447" />
		<line fill="none" id="t1 p112" stroke="#CC5400" stroke-width="2" x1="307.3881" x2="305.8370" y1="255.0447" y2="245.8303" />
		<line fill="none" id="t1 p113" stroke="#CC7C00" stroke-width="2" x1="305.8370" x2="302.6452" y1="245.8303" y2="237.9570" />
		<line fill="none" id="t1 p114" stroke="#CCA800" stroke-width="2" x1="302.6452" x2="295.1579" y1="237.9570" y2="232.8524" />
		<line fill="none" id="t1 p115" stroke="#CC7C00" stroke-width="2" x1="295.1579" x2="290.3851" y1="232.8524" y2="227.4016" />
		<line fill="none" id="t1 p116" stroke="#CC6800" stroke-width="2" x1="290.3851" x2="283.6436" y1="227.4016" y2="221.3020" />
		<line fill="none" id="t1 p117" stroke="#CC6800" stroke-width="2" x1="283.6436" x2="277.0811" y1="221.3020" y2="216.1541" />
		<line fill="none" id="t1 p118" stroke="#CC7C00" stroke-width="2" x1="277.0811" x2="270.1605" y1="216.1541" y2="213.0826" />
		<line fill="none" id="t1 p119" stroke="#C8CC00" stroke-width="2" x1="270.1605" x2="262.7627" y1="213.0826" y2="209.1460" />
		<line fill="none" id="t1 p120" stroke="#A0CC00" stroke-width="2" x1="262.7627" x2="257.7215" y1="209.1460" y2="204.6037" />
		<line fill="none" id="t1 p121" stroke="#A0CC00" stroke-width="2" x1="257.7215" x2="254.5297" y1="204.6037" y2="201.6620" />
		<line fill="none" id="t1 p122" stroke="#20CC00" stroke-width="2" x1="254.5297" x2="253.3365" y1="201.6620" y2="200.9266" />
		<line fill="none" id="t1 p123" stroke="#38CC00" stroke-width="2" x1="253.3365" x2="252.3521" y1="200.9266" y2="200.5805" />
		<line fill="none" id="t1 p124" stroke="#20CC00" stroke-width="2" x1="252.3521" x2="251.0098" y1="200.5805" y2="199.9749" />
		<line fill="none" id="t1 p125" stroke="#00CC08" stroke-width="2" x1="251.0098" x2="250.2342" y1="199.9749" y2="199.1097" />
		<line fill="none" id="t1 p126" stroke="#00CC08" stroke-width="2" x1="250.2342" x2="249.1604" y1="199.1097" y2="198.2445" />
		<line fill="none" id="t1 p127" stroke="#38CC00" stroke-width="2" x1="249.1604" x2="248.2953" y1="198.2445" y2="197.2928" />
		<line fill="none" id="t1 p128" stroke="#0CCC00" stroke-width="2" x1="248.2953" x2="247.5197" y1="197.2928" y2="196.5574" />
		<line fill="none" id="t1 p129" stroke="#00CC1C" stroke-width="2" x1="247.5197" x2="246.7441" y1="196.5574" y2="195.9085" />
		<line fill="none" id="t1 p130" stroke="#00CC48" stroke-width="2" x1="246.7441" x2="245.4018" y1="195.9085" y2="195.5191" />
		<line fill="none" id="t1 p131" stroke="#00CC5C" stroke-width="2" x1="245.4018" x2="244.5069" y1="195.5191" y2="195.1298" />
		<line fill="none" id="t1 p132" stroke="#00CC5C" stroke-width="2" x1="244.5069" x2="243.3734" y1="195.1298" y2="194.5241" />
		<line fill="none" id="t1 p133" stroke="#00CC70" stroke-width="2" x1="243.3734" x2="242.1205" y1="194.5241" y2="193.9618" />
		<line fill="none" id="t1 p134" stroke="#00CC84" stroke-width="2" x1="242.1205" x2="240.4202" y1="193.9618" y2="193.2263" />
		<line fill="none" id="t1 p135" stroke="#00CCB0" stroke-width="2" x1="240.4202" x2="238.6603" y1="193.2263" y2="192.6640" />
		<line fill="none" id="t1 p136" stroke="#00CCC4" stroke-width="2" x1="238.6603" x2="236.6318" y1="192.6640" y2="192.3611" />
		<line fill="none" id="t1 p137" stroke="#00CCB0" stroke-width="2" x1="236.6318" x2="233.7384" y1="192.3611" y2="192.8803" />
		<line fill="none" id="t1 p138" stroke="#00ACCC" stroke-width="2" x1="233.7384" x2="232.0082" y1="192.8803" y2="193.3561" />
		<line fill="none" id="t1 p139" stroke="#00ACCC" stroke-width="2" x1="232.0082" x2="227.0565" y1="193.3561" y2="194.2646" />
		<line fill="none" id="t1 p140" stroke="#00ACCC" stroke-width="2" x1="227.0565" x2="220.7326" y1="194.2646" y2="192.9235" />
		<line fill="none" id="t1 p141" stroke="#00C0CC" stroke-width="2" x1="220.7326" x2="217.4215" y1="192.9235" y2="191.4960" />
		<line fill="none" id="t1 p142" stroke="#0094CC" stroke-width="2" x1="217.4215" x2="215.4229" y1="191.4960" y2="188.0352" />
		<line fill="none" id="t1 p143" stroke="#0094CC" stroke-width="2" x1="215.4229" x2="218.3462" y1="188.0352" y2="186.7806" />
		<line fill="none" id="t1 p144" stroke="#00ACCC" stroke-width="2" x1="218.3462" x2="223.2383" y1="186.7806" y2="185.0070" />
		<line fill="none" id="t1 p145" stroke="#00CCC4" stroke-width="2" x1="223.2383" x2="229.3235" y1="185.0070" y2="182.0220" />
		<line fill="none" id="t1 p146" stroke="#00C0CC" stroke-width="2" x1="229.3235" x2="238.3321" y1="182.0220" y2="179.0371" />
		<line fill="none" id="t1 p147" stroke="#00CCB0" stroke-width="2" x1="238.3321" x2="246.7143" y1="179.0371" y2="172.8510" />
		<line fill="none" id="t1 p148" stroke="#00CCB0" stroke-width="2" x1="246.7143" x2="248.5041" y1="172.8510" y2="168.7845" />
		<line fill="none" id="t1 p149" stroke="#00CCB0" stroke-width="2" x1="248.5041" x2="251.8450" y1="168.7845" y2="160.3056" />
		<line fill="none" id="t1 p150" stroke="#00CCB0" stroke-width="2" x1="251.8450" x2="254.1419" y1="160.3056" y2="154.0329" />
		<line fill="none" id="t1 p151" stroke="#00CCB0" stroke-width="2" x1="254.1419" x2="257.7513" y1="154.0329" y2="147.0248" />
		<line fill="none" id="t1 p152" stroke="#00CCC4" stroke-width="2" x1="257.7513" x2="257.8707" y1="147.0248" y2="139.3246" />
		<line fill="none" id="t1 p153" stroke="#00C0CC" stroke-width="2" x1="257.8707" x2="257.9005" y1="139.3246" y2="137.0751" />
		<line fill="none" id="t1 p154" stroke="#00C0CC" stroke-width="2" x1="257.9005" x2="257.5127" y1="137.0751" y2="134.6958" />
		<line fill="none" id="t1 p155" stroke="#00C0CC" stroke-width="2" x1="257.5127" x2="256.9459" y1="134.6958" y2="132.3165" />
		<line fill="none" id="t1 p156" stroke="#00C0CC" stroke-width="2" x1="256.9459" x2="256.5581" y1="132.3165" y2="130.0237" />
		<line fill="none" id="t1 p157" stroke="#00CCB0" stroke-width="2" x1="256.5581" x2="256.3195" y1="130.0237" y2="124.7893" />
		<line fill="none" id="t1 p158" stroke="#00CC70" stroke-width="2" x1="256.3195" x2="257.4530" y1="124.7893" y2="116.6564" />
		<line fill="none" id="t1 p159" stroke="#00CC1C" stroke-width="2" x1="257.4530" x2="260.2272" y1="116.6564" y2="105.1493" />
		<line fill="none" id="t1 p160" stroke="#38CC00" stroke-width="2" x1="260.2272" x2="262.3451" y1="105.1493" y2="99.6553" />
		<line fill="none" id="t1 p161" stroke="#38CC00" stroke-width="2" x1="262.3451" x2="265.7457" y1="99.6553" y2="90.5275" />
		<line fill="none" id="t1 p162" stroke="#88CC00" stroke-width="2" x1="265.7457" x2="267.8636" y1="90.5275" y2="83.0868" />
		<line fill="none" id="t1 p163" stroke="#74CC00" stroke-width="2" x1="267.8636" x2="268.1023" y1="83.0868" y2="75.1270" />
		<line fill="none" id="t1 p164" stroke="#88CC00" stroke-width="2" x1="268.1023" x2="264.0753" y1="75.1270" y2="69.5897" />
		<line fill="none" id="t1 p165" stroke="#88CC00" stroke-width="2" x1="264.0753" x2="260.1377" y1="69.5897" y2="64.4851" />
		<line fill="none" id="t1 p166" stroke="#60CC00" stroke-width="2" x1="260.1377" x2="254.3806" y1="64.4851" y2="57.2174" />
		<line fill="none" id="t1 p167" stroke="#A0CC00" stroke-width="2" x1="254.3806" x2="250.4132" y1="57.2174" y2="52.1560" />
		<line fill="none" id="t1 p168" stroke="#88CC00" stroke-width="2" x1="250.4132" x2="244.4771" y1="52.1560" y2="44.0664" />
		<line fill="none" id="t1 p169" stroke="#C8CC00" stroke-width="2" x1="244.4771" x2="238.3023" y1="44.0664" y2="40.6922" />
		<line fill="none" id="t1 p170" stroke="#CCBC00" stroke-width="2" x1="238.3023" x2="232.1275" y1="40.6922" y2="40.1298" />
		<line fill="none" id="t1 p171" stroke="#C8CC00" stroke-width="2" x1="232.1275" x2="226.0721" y1="40.1298" y2="40.0000" />
		<line fill="none" id="t1 p172" stroke="#C8CC00" stroke-width="2" x1="226.0721" x2="220.1658" y1="40.0000" y2="40.4326" />
		<line fill="none" id="t1 p173" stroke="#88CC00" stroke-width="2" x1="220.1658" x2="213.0066" y1="40.4326" y2="41.8169" />
		<line fill="none" id="t1 p174" stroke="#38CC00" stroke-width="2" x1="213.0066" x2="206.7722" y1="41.8169" y2="43.7636" />
		<line fill="none" id="t1 p175" stroke="#38CC00" stroke-width="2" x1="206.7722" x2="202.5960" y1="43.7636" y2="49.3009" />
		<line fill="none" id="t1 p176" stroke="#38CC00" stroke-width="2" x1="202.5960" x2="198.1812" y1="49.3009" y2="56.4820" />
		<line fill="none" id="t1 p177" stroke="#00CC08" stroke-width="2" x1="198.1812" x2="192.3644" y1="56.4820" y2="60.8512" />
		<line fill="none" id="t1 p178" stroke="#00CC08" stroke-width="2" x1="192.3644" x2="189.5604" y1="60.8512" y2="62.5816" />
		<line fill="none" id="t1 p179" stroke="#00CC30" stroke-width="2" x1="189.5604" x2="182.5206" y1="62.5816" y2="61.1973" />
		<line fill="none" id="t1 p180" stroke="#00CC9C" stroke-width="2" x1="182.5206" x2="173.4523" y1="61.1973" y2="60.5917" />
		<line fill="none" id="t1 p181" stroke="#00CC70" stroke-width="2" x1="173.4523" x2="169.5446" y1="60.5917" y2="65.0042" />
		<line fill="none" id="t1 p182" stroke="#00CC84" stroke-width="2" x1="169.5446" x2="166.9494" y1="65.0042" y2="71.9690" />
		<line fill="none" id="t1 p183" stroke="#00CCC4" stroke-width="2" x1="166.9494" x2="163.6085" y1="71.9690" y2="79.2367" />
		<line fill="none" id="t1 p184" stroke="#0094CC" stroke-width="2" x1="163.6085" x2="158.7462" y1="79.2367" y2="84.3413" />
		<line fill="none" id="t1 p185" stroke="#0080CC" stroke-width="2" x1="158.7462" x2="152.7206" y1="84.3413" y2="87.6291" />
		<line fill="none" id="t1 p186" stroke="#0058CC" stroke-width="2" x1="152.7206" x2="147.5601" y1="87.6291" y2="90.2679" />
		<line fill="none" id="t1 p187" stroke="#0058CC" stroke-width="2" x1="147.5601" x2="143.6225" y1="90.2679" y2="98.5738" />
		<line fill="none" id="t1 p188" stroke="#0058CC" stroke-width="2" x1="143.6225" x2="146.0686" y1="98.5738" y2="108.1775" />
		<line fill="none" id="t1 p189" stroke="#00ACCC" stroke-width="2" x1="146.0686" x2="148.0075" y1="108.1775" y2="114.6665" />
		<line fill="none" id="t1 p190" stroke="#00CCC4" stroke-width="2" x1="148.0075" x2="150.2746" y1="114.6665" y2="120.4200" />
		<line fill="none" id="t1 p191" stroke="#00ACCC" stroke-width="2" x1="150.2746" x2="151.7959" y1="120.4200" y2="125.7843" />
		<line fill="none" id="t1 p192" stroke="#0094CC" stroke-width="2" x1="151.7959" x2="153.3769" y1="125.7843" y2="131.0187" />
		<line fill="none" id="t1 p193" stroke="#0058CC" stroke-width="2" x1="153.3769" x2="155.2860" y1="131.0187" y2="135.2582" />
		<line fill="none" id="t1 p194" stroke="#0044CC" stroke-width="2" x1="155.2860" x2="156.4792" y1="135.2582" y2="136.1234" />
		<line fill="none" id="t1 p195" stroke="#0058CC" stroke-width="2" x1="156.4792" x2="158.3584" y1="136.1234" y2="136.5992" />
		<line fill="none" id="t1 p196" stroke="#0044CC" stroke-width="2" x1="158.3584" x2="163.2207" y1="136.5992" y2="137.9403" />
		<line fill="none" id="t1 p197" stroke="#006CCC" stroke-width="2" x1="163.2207" x2="166.6511" y1="137.9403" y2="140.8819" />
		<line fill="none" id="t1 p198" stroke="#006CCC" stroke-width="2" x1="166.6511" x2="169.2762" y1="140.8819" y2="145.6405" />
		<line fill="none" id="t1 p199" stroke="#0018CC" stroke-width="2" x1="169.2762" x2="173.0944" y1="145.6405" y2="147.9766" />
		<line fill="none" id="t1 p200" stroke="#002CCC" stroke-width="2" x1="173.0944" x2="176.3160" y1="147.9766" y2="147.2411" />
		<line fill="none" id="t1 p201" stroke="#002CCC" stroke-width="2" x1="176.3160" x2="177.8970" y1="147.2411" y2="146.5922" />
		<line fill="none" id="t1 p202" stroke="#0044CC" stroke-width="2" x1="177.8970" x2="179.0007" y1="146.5922" y2="146.1164" />
		<line fill="none" id="t1 p203" stroke="#0058CC" stroke-width="2" x1="179.0007" x2="179.8359" y1="146.1164" y2="144.6888" />
		<line fill="none" id="t1 p204" stroke="#0058CC" stroke-width="2" x1="179.8359" x2="180.3430" y1="144.6888" y2="138.8055" />
		<line fill="none" id="t1 p205" stroke="#0094CC" stroke-width="2" x1="180.3430" x2="180.8799" y1="138.8055" y2="132.3165" />
		<line fill="none" id="t1 p206" stroke="#0094CC" stroke-width="2" x1="180.8799" x2="182.0135" y1="132.3165" y2="121.4150" />
		<line fill="none" id="t1 p207" stroke="#00CCB0" stroke-width="2" x1="182.0135" x2="185.2053" y1="121.4150" y2="111.9844" />
		<line fill="none" id="t1 p208" stroke="#00CC9C" stroke-width="2" x1="185.2053" x2="194.3034" y1="111.9844" y2="101.9481" />
		<line fill="none" id="t1 p209" stroke="#00CC48" stroke-width="2" x1="194.3034" x2="198.3900" y1="101.9481" y2="99.0929" />
		<line fill="none" id="t1 p210" stroke="#00CC1C" stroke-width="2" x1="198.3900" x2="204.6245" y1="99.0929" y2="97.7086" />
		<line fill="none" id="t1 p211" stroke="#0CCC00" stroke-width="2" x1="204.6245" x2="211.1572" y1="97.7086" y2="101.2992" />
		<line fill="none" id="t1 p212" stroke="#60CC00" stroke-width="2" x1="211.1572" x2="216.6160" y1="101.2992" y2="104.6302" />
		<line fill="none" id="t1 p213" stroke="#B4CC00" stroke-width="2" x1="216.6160" x2="220.7624" y1="104.6302" y2="110.4270" />
		<line fill="none" id="t1 p214" stroke="#A0CC00" stroke-width="2" x1="220.7624" x2="221.7169" y1="110.4270" y2="118.5599" />
		<line fill="none" id="t1 p215" stroke="#20CC00" stroke-width="2" x1="221.7169" x2="221.6871" y1="118.5599" y2="125.3949" />
		<line fill="none" id="t1 p216" stroke="#0CCC00" stroke-width="2" x1="221.6871" x2="222.7610" y1="125.3949" y2="128.9855" />
		<line fill="none" id="t1 p217" stroke="#00C0CC" stroke-width="2" x1="222.7610" x2="223.3576" y1="128.9855" y2="132.8789" />
		<line fill="none" id="t1 p218" stroke="#00C0CC" stroke-width="2" x1="223.3576" x2="223.4172" y1="132.8789" y2="136.1234" />
		<line fill="none" id="t1 p219" stroke="#00CCC4" stroke-width="2" x1="223.4172" x2="223.3874" y1="136.1234" y2="138.6324" />
		<line fill="none" id="t1 p220" stroke="#00C0CC" stroke-width="2" x1="223.3874" x2="223.1786" y1="138.6324" y2="140.2763" />
		<line fill="none" id="t1 p221" stroke="#0094CC" stroke-width="2" x1="223.1786" x2="222.8505" y1="140.2763" y2="141.0982" />
		<line fill="none" id="t1 p222" stroke="#0094CC" stroke-width="2" x1="222.8505" x2="222.3135" y1="141.0982" y2="141.9634" />
		<line fill="none" id="t1 p223" stroke="#006CCC" stroke-width="2" x1="222.3135" x2="221.5081" y1="141.9634" y2="143.2180" />
		<line fill="none" id="t1 p224" stroke="#0058CC" stroke-width="2" x1="221.5081" x2="221.0607" y1="143.2180" y2="144.0832" />
		<line fill="none" id="t1 p225" stroke="#0044CC" stroke-width="2" x1="221.0607" x2="217.8987" y1="144.0832" y2="149.2744" />
		<line fill="none" id="t1 p226" stroke="#1000CC" stroke-width="2" x1="217.8987" x2="216.4072" y1="149.2744" y2="154.8549" />
		<line fill="none" id="t1 p227" stroke="#0004CC" stroke-width="2" x1="216.4072" x2="215.2737" y1="154.8549" y2="160.7815" />
		<line fill="none" id="t1 p228" stroke="#2400CC" stroke-width="2" x1="215.2737" x2="211.0379" y1="160.7815" y2="162.5119" />
		<line fill="none" id="t1 p229" stroke="#002CCC" stroke-width="2" x1="211.0379" x2="205.7878" y1="162.5119" y2="163.4636" />
		<line fill="none" id="t1 p230" stroke="#0044CC" stroke-width="2" x1="205.7878" x2="197.6741" y1="163.4636" y2="163.3771" />
		<line fill="none" id="t1 p231" stroke="#006CCC" stroke-width="2" x1="197.6741" x2="190.0377" y1="163.3771" y2="160.8680" />
		<line fill="none" id="t1 p232" stroke="#0080CC" stroke-width="2" x1="190.0377" x2="183.5945" y1="160.8680" y2="156.2824" />
		<line fill="none" id="t1 p233" stroke="#0080CC" stroke-width="2" x1="183.5945" x2="179.5973" y1="156.2824" y2="149.7069" />
		<line fill="none" id="t1 p234" stroke="#0080CC" stroke-width="2" x1="179.5973" x2="179.5078" y1="149.7069" y2="146.8518" />
		<line fill="none" id="t1 p235" stroke="#0044CC" stroke-width="2" x1="179.5078" x2="179.8956" y1="146.8518" y2="143.7804" />
		<line fill="none" id="t1 p236" stroke="#0044CC" stroke-width="2" x1="179.8956" x2="180.4922" y1="143.7804" y2="136.9020" />
		<line fill="none" id="t1 p237" stroke="#006CCC" stroke-width="2" x1="180.4922" x2="181.5660" y1="136.9020" y2="123.1454" />
		<line fill="none" id="t1 p238" stroke="#0094CC" stroke-width="2" x1="181.5660" x2="185.6825" y1="123.1454" y2="111.1624" />
		<line fill="none" id="t1 p239" stroke="#00CC84" stroke-width="2" x1="185.6825" x2="192.2749" y1="111.1624" y2="104.1543" />
		<line fill="none" id="t1 p240" stroke="#00CC48" stroke-width="2" x1="192.2749" x2="197.2267" y1="104.1543" y2="103.9380" />
		<line fill="none" id="t1 p241" stroke="#00CC30" stroke-width="2" x1="197.2267" x2="207.0109" y1="103.9380" y2="103.8948" />
		<line fill="none" id="t1 p242" stroke="#0CCC00" stroke-width="2" x1="207.0109" x2="216.5862" y1="103.8948" y2="104.2841" />
		<line fill="none" id="t1 p243" stroke="#60CC00" stroke-width="2" x1="216.5862" x2="217.9882" y1="104.2841" y2="106.3606" />
		<line fill="none" id="t1 p244" stroke="#A0CC00" stroke-width="2" x1="217.9882" x2="219.1814" y1="106.3606" y2="108.0477" />
		<line fill="none" id="t1 p245" stroke="#A0CC00" stroke-width="2" x1="219.1814" x2="221.2397" y1="108.0477" y2="111.7681" />
		<line fill="none" id="t1 p246" stroke="#74CC00" stroke-width="2" x1="221.2397" x2="221.7468" y1="111.7681" y2="120.0307" />
		<line fill="none" id="t1 p247" stroke="#20CC00" stroke-width="2" x1="221.7468" x2="221.8363" y1="120.0307" y2="125.2219" />
		<line fill="none" id="t1 p248" stroke="#00CC84" stroke-width="2" x1="221.8363" x2="222.9996" y1="125.2219" y2="129.8507" />
		<line fill="none" id="t1 p249" stroke="#00CCC4" stroke-width="2" x1="222.9996" x2="223.2979" y1="129.8507" y2="131.7974" />
		<line fill="none" id="t1 p250" stroke="#0094CC" stroke-width="2" x1="223.2979" x2="223.3576" y1="131.7974" y2="135.1716" />
		<line fill="none" id="t1 p251" stroke="#0080CC" stroke-width="2" x1="223.3576" x2="223.3874" y1="135.1716" y2="137.7240" />
		<line fill="none" id="t1 p252" stroke="#0058CC" stroke-width="2" x1="223.3874" x2="223.2383" y1="137.7240" y2="138.8920" />
		<line fill="none" id="t1 p253" stroke="#0058CC" stroke-width="2" x1="223.2383" x2="223.0891" y1="138.8920" y2="140.2763" />
		<line fill="none" id="t1 p254" stroke="#002CCC" stroke-width="2" x1="223.0891" x2="222.5223" y1="140.2763" y2="141.6174" />
		<line fill="none" id="t1 p255" stroke="#002CCC" stroke-width="2" x1="222.5223" x2="221.7468" y1="141.6174" y2="142.6989" />
		<line fill="none" id="t1 p256" stroke="#002CCC" stroke-width="2" x1="221.7468" x2="220.9712" y1="142.6989" y2="144.2562" />
		<line fill="none" id="t1 p257" stroke="#0018CC" stroke-width="2" x1="220.9712" x2="218.0180" y1="144.2562" y2="148.8850" />
		<line fill="none" id="t1 p258" stroke="#0018CC" stroke-width="2" x1="218.0180" x2="216.1686" y1="148.8850" y2="155.8066" />
		<line fill="none" id="t1 p259" stroke="#1000CC" stroke-width="2" x1="216.1686" x2="215.1246" y1="155.8066" y2="161.1708" />
		<line fill="none" id="t1 p260" stroke="#5000CC" stroke-width="2" x1="215.1246" x2="215.9300" y1="161.1708" y2="166.6648" />
		<line fill="none" id="t1 p261" stroke="#6400CC" stroke-width="2" x1="215.9300" x2="216.0493" y1="166.6648" y2="172.0723" />
		<line fill="none" id="t1 p262" stroke="#5000CC" stroke-width="2" x1="216.0493" x2="215.6913" y1="172.0723" y2="181.1569" />
		<line fill="none" id="t1 p263" stroke="#2400CC" stroke-width="2" x1="215.6913" x2="215.4229" y1="181.1569" y2="187.9486" />
		<line fill="none" id="t1 p264" stroke="#0004CC" stroke-width="2" x1="215.4229" x2="218.3163" y1="187.9486" y2="192.0151" />
		<line fill="none" id="t1 p265" stroke="#002CCC" stroke-width="2" x1="218.3163" x2="225.1175" y1="192.0151" y2="194.4809" />
		<line fill="none" id="t1 p266" stroke="#0080CC" stroke-width="2" x1="225.1175" x2="228.0110" y1="194.4809" y2="195.5191" />
		<line fill="none" id="t1 p267" stroke="#00C0CC" stroke-width="2" x1="228.0110" x2="229.5323" y1="195.5191" y2="197.1197" />
		<line fill="none" id="t1 p268" stroke="#00ACCC" stroke-width="2" x1="229.5323" x2="232.9628" y1="197.1197" y2="207.9780" />
		<line fill="none" id="t1 p269" stroke="#00C0CC" stroke-width="2" x1="232.9628" x2="235.9159" y1="207.9780" y2="217.6682" />
		<line fill="none" id="t1 p270" stroke="#00CC1C" stroke-width="2" x1="235.9159" x2="244.7157" y1="217.6682" y2="234.5395" />
		<line fill="none" id="t1 p271" stroke="#4CCC00" stroke-width="2" x1="244.7157" x2="247.0424" y1="234.5395" y2="238.8655" />
		<line fill="none" id="t1 p272" stroke="#38CC00" stroke-width="2" x1="247.0424" x2="246.0879" y1="238.8655" y2="237.2216" />
		<line fill="none" id="t1 p273" stroke="#74CC00" stroke-width="2" x1="246.0879" x2="245.3421" y1="237.2216" y2="235.7940" />
		<line fill="none" id="t1 p274" stroke="#A0CC00" stroke-width="2" x1="245.3421" x2="246.2669" y1="235.7940" y2="233.4580" />
		<line fill="none" id="t1 p275" stroke="#88CC00" stroke-width="2" x1="246.2669" x2="247.4899" y1="233.4580" y2="230.9922" />
		<line fill="none" id="t1 p276" stroke="#74CC00" stroke-width="2" x1="247.4899" x2="249.0410" y1="230.9922" y2="227.4016" />
		<line fill="none" id="t1 p277" stroke="#60CC00" stroke-width="2" x1="249.0410" x2="251.1590" y1="227.4016" y2="221.6048" />
		<line fill="none" id="t1 p278" stroke="#74CC00" stroke-width="2" x1="251.1590" x2="255.2755" y1="221.6048" y2="216.2838" />
		<line fill="none" id="t1 p279" stroke="#4CCC00" stroke-width="2" x1="255.2755" x2="258.7954" y1="216.2838" y2="212.8663" />
		<line fill="none" id="t1 p280" stroke="#60CC00" stroke-width="2" x1="258.7954" x2="260.4062" y1="212.8663" y2="210.8764" />
		<line fill="none" id="t1 p281" stroke="#A0CC00" stroke-width="2" x1="260.4062" x2="260.5553" y1="210.8764" y2="210.5303" />
		<line fill="none" id="t1 p282" stroke="#B4CC00" stroke-width="2" x1="260.5553" x2="262.2855" y1="210.5303" y2="208.7999" />
		<line fill="none" id="t1 p283" stroke="#C8CC00" stroke-width="2" x1="262.2855" x2="259.8991" y1="208.7999" y2="211.5685" />
		<line fill="none" id="t1 p284" stroke="#CCBC00" stroke-width="2" x1="259.8991" x2="257.1547" y1="211.5685" y2="214.3371" />
		<line fill="none" id="t1 p285" stroke="#B4CC00" stroke-width="2" x1="257.1547" x2="252.9487" y1="214.3371" y2="218.8794" />
		<line fill="none" id="t1 p286" stroke="#A0CC00" stroke-width="2" x1="252.9487" x2="250.1746" y1="218.8794" y2="224.1571" />
		<line fill="none" id="t1 p287" stroke="#74CC00" stroke-width="2" x1="250.1746" x2="248.1760" y1="224.1571" y2="229.4781" />
		<line fill="none" id="t1 p288" stroke="#4CCC00" stroke-width="2" x1="248.1760" x2="246.5652" y1="229.4781" y2="232.6793" />
		<line fill="none" id="t1 p289" stroke="#4CCC00" stroke-width="2" x1="246.5652" x2="245.4018" y1="232.6793" y2="235.5345" />
		<line fill="none" id="t1 p290" stroke="#38CC00" stroke-width="2" x1="245.4018" x2="249.0112" y1="235.5345" y2="242.7589" />
		<line fill="none" id="t1 p291" stroke="#88CC00" stroke-width="2" x1="249.0112" x2="253.1874" y1="242.7589" y2="251.1513" />
		<line fill="none" id="t1 p292" stroke="#C8CC00" stroke-width="2" x1="253.1874" x2="257.5425" y1="251.1513" y2="259.2841" />
		<line fill="none" id="t1 p293" stroke="#CCBC00" stroke-width="2" x1="257.5425" x2="258.6164" y1="259.2841" y2="268.8878" />
		<line fill="none" id="t1 p294" stroke="#C8CC00" stroke-width="2" x1="258.6164" x2="258.5567" y1="268.8878" y2="269.6232" />
		<line fill="none" id="t1 p295" stroke="#B4CC00" stroke-width="2" x1="258.5567" x2="258.5269" y1="269.6232" y2="269.6232" />
		<line fill="none" id="t1 p296" stroke="#CCA800" stroke-width="2" x1="258.5269" x2="257.9303" y1="269.6232" y2="271.2671" />
		<line fill="none" id="t1 p297" stroke="#88CC00" stroke-width="2" x1="257.9303" x2="257.6320" y1="271.2671" y2="273.9059" />
		<line fill="none" id="t1 p298" stroke="#88CC00" stroke-width="2" x1="257.6320" x2="257.9303" y1="273.9059" y2="281.3466" />
		<line fill="none" id="t1 p299" stroke="#74CC00" stroke-width="2" x1="257.9303" x2="258.1391" y1="281.3466" y2="290.0851" />
		<line fill="none" id="t1 p300" stroke="#74CC00" stroke-width="2" x1="258.1391" x2="258.3479" y1="290.0851" y2="296.9634" />
		<line fill="none" id="t1 p301" stroke="#4CCC00" stroke-width="2" x1="258.3479" x2="257.7513" y1="296.9634" y2="304.4041" />
		<line fill="none" id="t1 p302" stroke="#0CCC00" stroke-width="2" x1="257.7513" x2="258.0198" y1="304.4041" y2="308.7734" />
		<line fill="none" id="t1 p303" stroke="#00CC1C" stroke-width="2" x1="258.0198" x2="260.7940" y1="308.7734" y2="313.9213" />
		<line fill="none" id="t1 p304" stroke="#00CC1C" stroke-width="2" x1="260.7940" x2="266.2528" y1="313.9213" y2="318.2040" />
		<line fill="none" id="t1 p305" stroke="#0CCC00" stroke-width="2" x1="266.2528" x2="274.5455" y1="318.2040" y2="320.0642" />
		<line fill="none" id="t1 p306" stroke="#60CC00" stroke-width="2" x1="274.5455" x2="282.5697" y1="320.0642" y2="323.1356" />
		<line fill="none" id="t1 p307" stroke="#74CC00" stroke-width="2" x1="282.5697" x2="288.2374" y1="323.1356" y2="327.6347" />
		<line fill="none" id="t1 p308" stroke="#74CC00" stroke-width="2" x1="288.2374" x2="295.4264" y1="327.6347" y2="332.5230" />
		<line fill="none" id="t1 p309" stroke="#74CC00" stroke-width="2" x1="295.4264" x2="297.7233" y1="332.5230" y2="334.7293" />
		<line fill="none" id="t1 p310" stroke="#60CC00" stroke-width="2" x1="297.7233" x2="298.9761" y1="334.7293" y2="335.7243" />
		<line fill="none" id="t1 p311" stroke="#38CC00" stroke-width="2" x1="298.9761" x2="299.8710" y1="335.7243" y2="336.7192" />
		<line fill="none" id="t1 p312" stroke="#0CCC00" stroke-width="2" x1="299.8710" x2="300.5571" y1="336.7192" y2="337.8872" />
		<line fill="none" id="t1 p313" stroke="#00CC1C" stroke-width="2" x1="300.5571" x2="301.2730" y1="337.8872" y2="339.2283" />
		<line fill="none" id="t1 p314" stroke="#00CC30" stroke-width="2" x1="301.2730" x2="301.9293" y1="339.2283" y2="340.4828" />
		<line fill="none" id="t1 p315" stroke="#00CC48" stroke-width="2" x1="301.9293" x2="302.4364" y1="340.4828" y2="341.3048" />
		<line fill="none" id="t1 p316" stroke="#00CC5C" stroke-width="2" x1="302.4364" x2="304.1069" y1="341.3048" y2="344.0301" />
		<line fill="none" id="t1 p317" stroke="#00CC70" stroke-width="2" x1="304.1069" x2="305.5685" y1="344.0301" y2="346.6257" />
		<line fill="none" id="t1 p318" stroke="#00CC9C" stroke-width="2" x1="305.5685" x2="306.5827" y1="346.6257" y2="349.6539" />
		<line fill="none" id="t1 p319" stroke="#00CCC4" stroke-width="2" x1="306.5827" x2="307.5074" y1="349.6539" y2="353.7203" />
		<line fill="none" id="t1 p320" stroke="#00ACCC" stroke-width="2" x1="307.5074" x2="308.2532" y1="353.7203" y2="358.6087" />
		<line fill="none" id="t1 p321" stroke="#0080CC" stroke-width="2" x1="308.2532" x2="309.2077" y1="358.6087" y2="367.1742" />
		<line fill="none" id="t1 p322" stroke="#006CCC" stroke-width="2" x1="309.2077" x2="310.3711" y1="367.1742" y2="374.5283" />
		<line fill="none" id="t1 p323" stroke="#0044CC" stroke-width="2" x1="310.3711" x2="314.1893" y1="374.5283" y2="379.3734" />
		<line fill="none" id="t1 p324" stroke="#0058CC" stroke-width="2" x1="314.1893" x2="323.1681" y1="379.3734" y2="383.0073" />
		<line fill="none" id="t1 p325" stroke="#0080CC" stroke-width="2" x1="323.1681" x2="335.5475" y1="383.0073" y2="387.2900" />
		<line fill="none" id="t1 p326" stroke="#00C0CC" stroke-width="2" x1="335.5475" x2="344.7052" y1="387.2900" y2="390.4479" />
		<line fill="none" id="t1 p327" stroke="#00CCB0" stroke-width="2" x1="344.7052" x2="356.1897" y1="390.4479" y2="393.6492" />
		<line fill="none" id="t1 p328" stroke="#00CC9C" stroke-width="2" x1="356.1897" x2="370.0605" y1="393.6492" y2="396.1150" />
		<line fill="none" id="t1 p329" stroke="#00CC48" stroke-width="2" x1="370.0605" x2="382.9172" y1="396.1150" y2="399.0134" />
		<line fill="none" id="t1 p330" stroke="#00CC30" stroke-width="2" x1="382.9172" x2="392.6715" y1="399.0134" y2="400.3977" />
		<line fill="none" id="t1 p331" stroke="#00CC48" stroke-width="2" x1="392.6715" x2="404.3648" y1="400.3977" y2="400.7438" />
		<line fill="none" id="t1 p332" stroke="#00CC08" stroke-width="2" x1="404.3648" x2="415.4018" y1="400.7438" y2="397.7156" />
		<line fill="none" id="t1 p333" stroke="#20CC00" stroke-width="2" x1="415.4018" x2="426.7372" y1="397.7156" y2="394.9037" />
		<line fill="none" id="t1 p334" stroke="#60CC00" stroke-width="2" x1="426.7372" x2="433.9858" y1="394.9037" y2="394.9470" />
		<line fill="none" id="t1 p335" stroke="#74CC00" stroke-width="2" x1="433.9858" x2="438.8481" y1="394.9470" y2="396.0717" />
		<line fill="none" id="t1 p336" stroke="#4CCC00" stroke-width="2" x1="438.8481" x2="438.9376" y1="396.0717" y2="390.7940" />
		<line fill="none" id="t1 p337" stroke="#4CCC00" stroke-width="2" x1="438.9376" x2="438.2813" y1="390.7940" y2="382.4016" />
		<line fill="none" id="t1 p338" stroke="#38CC00" stroke-width="2" x1="438.2813" x2="440.1606" y1="382.4016" y2="372.3221" />
		<line fill="none" id="t1 p339" stroke="#A0CC00" stroke-width="2" x1="440.1606" x2="441.4731" y1="372.3221" y2="368.8180" />
		<line fill="none" id="t1 p340" stroke="#A0CC00" stroke-width="2" x1="441.4731" x2="442.2785" y1="368.8180" y2="365.9629" />
		<line fill="none" id="t1 p341" stroke="#A0CC00" stroke-width="2" x1="442.2785" x2="440.6975" y1="365.9629" y2="364.8814" />
		<line fill="none" id="t1 p342" stroke="#CCA800" stroke-width="2" x1="440.6975" x2="436.7301" y1="364.8814" y2="362.0695" />
		<line fill="none" id="t1 p343" stroke="#CCA800" stroke-width="2" x1="436.7301" x2="429.1235" y1="362.0695" y2="360.2526" />
		<line fill="none" id="t1 p344" stroke="#CCBC00" stroke-width="2" x1="429.1235" x2="419.8763" y1="360.2526" y2="359.0846" />
		<line fill="none" id="t1 p345" stroke="#B4CC00" stroke-width="2" x1="419.8763" x2="412.2697" y1="359.0846" y2="360.2526" />
		<line fill="none" id="t1 p346" stroke="#74CC00" stroke-width="2" x1="412.2697" x2="405.3492" y1="360.2526" y2="358.3059" />
		<line fill="none" id="t1 p347" stroke="#74CC00" stroke-width="2" x1="405.3492" x2="398.9358" y1="358.3059" y2="359.8632" />
		<line fill="none" id="t1 p348" stroke="#74CC00" stroke-width="2" x1="398.9358" x2="392.1644" y1="359.8632" y2="363.1510" />
		<line fill="none" id="t1 p349" stroke="#88CC00" stroke-width="2" x1="392.1644" x2="389.0323" y1="363.1510" y2="367.5202" />
		<line fill="none" id="t1 p350" stroke="#60CC00" stroke-width="2" x1="389.0323" x2="385.0053" y1="367.5202" y2="370.7647" />
		<line fill="none" id="t1 p351" stroke="#4CCC00" stroke-width="2" x1="385.0053" x2="382.6785" y1="370.7647" y2="372.0625" />
		<line fill="none" id="t1 p352" stroke="#0CCC00" stroke-width="2" x1="382.6785" x2="381.9030" y1="372.0625" y2="372.4519" />
		<line fill="none" id="t1 p353" stroke="#00CC08" stroke-width="2" x1="381.9030" x2="381.1871" y1="372.4519" y2="372.6682" />
		<line fill="none" id="t1 p354" stroke="#00CC1C" stroke-width="2" x1="381.1871" x2="380.4711" y1="372.6682" y2="373.2738" />
		<line fill="none" id="t1 p355" stroke="#00CC5C" stroke-width="2" x1="380.4711" x2="379.8149" y1="373.2738" y2="373.4901" />
		<line fill="none" id="t1 p356" stroke="#00CC70" stroke-width="2" x1="379.8149" x2="379.2779" y1="373.4901" y2="374.0092" />
		<line fill="none" id="t1 p357" stroke="#00CC70" stroke-width="2" x1="379.2779" x2="378.3234" y1="374.0092" y2="374.6581" />
		<line fill="none" id="t1 p358" stroke="#00CCB0" stroke-width="2" x1="378.3234" x2="377.3987" y1="374.6581" y2="375.4368" />
		<line fill="none" id="t1 p359" stroke="#00C0CC" stroke-width="2" x1="377.3987" x2="374.8035" y1="375.4368" y2="377.4267" />
		<line fill="none" id="t1 p360" stroke="#0094CC" stroke-width="2" x1="374.8035" x2="371.4029" y1="377.4267" y2="379.3734" />
		<line fill="none" id="t1 p361" stroke="#0058CC" stroke-width="2" x1="371.4029" x2="369.8517" y1="379.3734" y2="380.3251" />
		<line fill="none" id="t1 p362" stroke="#0044CC" stroke-width="2" x1="369.8517" x2="367.8531" y1="380.3251" y2="381.1903" />
		<line fill="none" id="t1 p363" stroke="#0044CC" stroke-width="2" x1="367.8531" x2="365.2281" y1="381.1903" y2="381.2336" />
		<line fill="none" id="t1 p364" stroke="#002CCC" stroke-width="2" x1="365.2281" x2="362.7821" y1="381.2336" y2="381.4932" />
		<line fill="none" id="t1 p365" stroke="#0044CC" stroke-width="2" x1="362.7821" x2="360.0676" y1="381.4932" y2="381.2336" />
		<line fill="none" id="t1 p366" stroke="#002CCC" stroke-width="2" x1="360.0676" x2="357.8602" y1="381.2336" y2="380.8875" />
	</g>
	<g id="20-FEB-10 (t1) label" onmousedown="trackLabelMouseDown(evt,'20-FEB-10 (t1)')" onmousemove="moveGroup(evt,'20-FEB-10 (t1) label')" onmouseout="highlight('20-FEB-10 (t1) label',0)" onmouseover="highlight('20-FEB-10 (t1) label',1)" onmouseup="trackLabelMouseUp(evt,'20-FEB-10 (t1)')" opacity="1" transform="translate(0,0)" x="554.3775" y="463.7734">		<text fill="#000000" font-family="Verdana" font-size="10" id="20-FEB-10 (t1) name" opacity="1" text-anchor="middle" x="554.3775" y="463.7734">20-FEB-10
		</text>
	</g>
	<g id="21-Feb-CU-20-Feb 2 (t2) track" opacity="0.9">
		<line fill="none" id="t2 p1" stroke="#7800CC" stroke-width="2" x1="525.1457" x2="526.6372" y1="542.1169" y2="526.4136" />
		<line fill="none" id="t2 p2" stroke="#8C00CC" stroke-width="2" x1="526.6372" x2="522.0732" y1="526.4136" y2="515.5554" />
		<line fill="none" id="t2 p3" stroke="#6400CC" stroke-width="2" x1="522.0732" x2="520.9397" y1="515.5554" y2="506.5574" />
		<line fill="none" id="t2 p4" stroke="#2400CC" stroke-width="2" x1="520.9397" x2="527.8005" y1="506.5574" y2="495.2233" />
		<line fill="none" id="t2 p5" stroke="#3C00CC" stroke-width="2" x1="527.8005" x2="532.1557" y1="495.2233" y2="490.3349" />
		<line fill="none" id="t2 p6" stroke="#0004CC" stroke-width="2" x1="532.1557" x2="536.9881" y1="490.3349" y2="486.8741" />
		<line fill="none" id="t2 p7" stroke="#002CCC" stroke-width="2" x1="536.9881" x2="542.7453" y1="486.8741" y2="481.5964" />
		<line fill="none" id="t2 p8" stroke="#0094CC" stroke-width="2" x1="542.7453" x2="548.7410" y1="481.5964" y2="474.1125" />
		<line fill="none" id="t2 p9" stroke="#002CCC" stroke-width="2" x1="548.7410" x2="553.6928" y1="474.1125" y2="467.9696" />
	</g>
	<g id="21-Feb-CU-20-Feb 2 (t2) label" onmousedown="trackLabelMouseDown(evt,'21-Feb-CU-20-Feb 2 (t2)')" onmousemove="moveGroup(evt,'21-Feb-CU-20-Feb 2 (t2) label')" onmouseout="highlight('21-Feb-CU-20-Feb 2 (t2) label',0)" onmouseover="highlight('21-Feb-CU-20-Feb 2 (t2) label',1)" onmouseup="trackLabelMouseUp(evt,'21-Feb-CU-20-Feb 2 (t2)')" opacity="1" transform="translate(0,0)" x="523.1457" y="542.1169">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-Feb-CU-20-Feb 2 (t2) name" opacity="1" text-anchor="middle" x="523.1457" y="542.1169">21-Feb-CU-20-Feb 2
		</text>
	</g>
	<g id="21-Feb-CU-20-Feb 3 (t3) track" opacity="0.9">
		<line fill="none" id="t3 p1" stroke="#0018CC" stroke-width="2" x1="337.2776" x2="335.4878" y1="388.0687" y2="388.0687" />
		<line fill="none" id="t3 p2" stroke="#0018CC" stroke-width="2" x1="335.4878" x2="333.1909" y1="388.0687" y2="389.1069" />
		<line fill="none" id="t3 p3" stroke="#0018CC" stroke-width="2" x1="333.1909" x2="331.6099" y1="389.1069" y2="390.3182" />
		<line fill="none" id="t3 p4" stroke="#0044CC" stroke-width="2" x1="331.6099" x2="330.1184" y1="390.3182" y2="392.1783" />
		<line fill="none" id="t3 p5" stroke="#0044CC" stroke-width="2" x1="330.1184" x2="329.4324" y1="392.1783" y2="395.1200" />
		<line fill="none" id="t3 p6" stroke="#0044CC" stroke-width="2" x1="329.4324" x2="329.9395" y1="395.1200" y2="397.7156" />
		<line fill="none" id="t3 p7" stroke="#0044CC" stroke-width="2" x1="329.9395" x2="332.1767" y1="397.7156" y2="405.2428" />
		<line fill="none" id="t3 p8" stroke="#0058CC" stroke-width="2" x1="332.1767" x2="341.5433" y1="405.2428" y2="420.7298" />
		<line fill="none" id="t3 p9" stroke="#0080CC" stroke-width="2" x1="341.5433" x2="347.0916" y1="420.7298" y2="432.2370" />
		<line fill="none" id="t3 p10" stroke="#0094CC" stroke-width="2" x1="347.0916" x2="352.4311" y1="432.2370" y2="442.3598" />
		<line fill="none" id="t3 p11" stroke="#00CCC4" stroke-width="2" x1="352.4311" x2="357.1442" y1="442.3598" y2="451.7904" />
		<line fill="none" id="t3 p12" stroke="#00CCC4" stroke-width="2" x1="357.1442" x2="359.4113" y1="451.7904" y2="457.7170" />
		<line fill="none" id="t3 p13" stroke="#00CCC4" stroke-width="2" x1="359.4113" x2="363.6770" y1="457.7170" y2="468.3589" />
		<line fill="none" id="t3 p14" stroke="#00C0CC" stroke-width="2" x1="363.6770" x2="367.6742" y1="468.3589" y2="463.4273" />
		<line fill="none" id="t3 p15" stroke="#00CCC4" stroke-width="2" x1="367.6742" x2="369.4639" y1="463.4273" y2="459.1013" />
		<line fill="none" id="t3 p16" stroke="#00CCB0" stroke-width="2" x1="369.4639" x2="371.6117" y1="459.1013" y2="453.1747" />
		<line fill="none" id="t3 p17" stroke="#00CC84" stroke-width="2" x1="371.6117" x2="376.2353" y1="453.1747" y2="445.5177" />
		<line fill="none" id="t3 p18" stroke="#00CC70" stroke-width="2" x1="376.2353" x2="380.0237" y1="445.5177" y2="437.5147" />
		<line fill="none" id="t3 p19" stroke="#00CC48" stroke-width="2" x1="380.0237" x2="381.9925" y1="437.5147" y2="431.9341" />
		<line fill="none" id="t3 p20" stroke="#00CC9C" stroke-width="2" x1="381.9925" x2="383.9612" y1="431.9341" y2="424.5800" />
		<line fill="none" id="t3 p21" stroke="#00CCC4" stroke-width="2" x1="383.9612" x2="386.0493" y1="424.5800" y2="417.9179" />
		<line fill="none" id="t3 p22" stroke="#0094CC" stroke-width="2" x1="386.0493" x2="388.5550" y1="417.9179" y2="411.9481" />
		<line fill="none" id="t3 p23" stroke="#0080CC" stroke-width="2" x1="388.5550" x2="390.3150" y1="411.9481" y2="404.3344" />
		<line fill="none" id="t3 p24" stroke="#0080CC" stroke-width="2" x1="390.3150" x2="390.7028" y1="404.3344" y2="402.0416" />
		<line fill="none" id="t3 p25" stroke="#0080CC" stroke-width="2" x1="390.7028" x2="391.3590" y1="402.0416" y2="400.3545" />
		<line fill="none" id="t3 p26" stroke="#0080CC" stroke-width="2" x1="391.3590" x2="401.5608" y1="400.3545" y2="400.8736" />
		<line fill="none" id="t3 p27" stroke="#00CCC4" stroke-width="2" x1="401.5608" x2="410.7186" y1="400.8736" y2="398.8836" />
		<line fill="none" id="t3 p28" stroke="#00CC70" stroke-width="2" x1="410.7186" x2="421.6661" y1="398.8836" y2="395.6824" />
		<line fill="none" id="t3 p29" stroke="#00CC1C" stroke-width="2" x1="421.6661" x2="433.9858" y1="395.6824" y2="395.2931" />
		<line fill="none" id="t3 p30" stroke="#4CCC00" stroke-width="2" x1="433.9858" x2="438.9972" y1="395.2931" y2="396.1150" />
		<line fill="none" id="t3 p31" stroke="#38CC00" stroke-width="2" x1="438.9972" x2="444.1876" y1="396.1150" y2="403.6422" />
		<line fill="none" id="t3 p32" stroke="#00CC08" stroke-width="2" x1="444.1876" x2="450.3325" y1="403.6422" y2="412.8565" />
		<line fill="none" id="t3 p33" stroke="#38CC00" stroke-width="2" x1="450.3325" x2="453.8823" y1="412.8565" y2="419.0860" />
		<line fill="none" id="t3 p34" stroke="#38CC00" stroke-width="2" x1="453.8823" x2="456.5073" y1="419.0860" y2="428.4301" />
		<line fill="none" id="t3 p35" stroke="#38CC00" stroke-width="2" x1="456.5073" x2="454.5982" y1="428.4301" y2="437.9040" />
		<line fill="none" id="t3 p36" stroke="#0CCC00" stroke-width="2" x1="454.5982" x2="452.8084" y1="437.9040" y2="443.7873" />
		<line fill="none" id="t3 p37" stroke="#0CCC00" stroke-width="2" x1="452.8084" x2="450.2729" y1="443.7873" y2="451.0550" />
		<line fill="none" id="t3 p38" stroke="#00CC1C" stroke-width="2" x1="450.2729" x2="447.4987" y1="451.0550" y2="459.3609" />
		<line fill="none" id="t3 p39" stroke="#00CC48" stroke-width="2" x1="447.4987" x2="446.5740" y1="459.3609" y2="462.8649" />
		<line fill="none" id="t3 p40" stroke="#00CC48" stroke-width="2" x1="446.5740" x2="443.7401" y1="462.8649" y2="462.6486" />
		<line fill="none" id="t3 p41" stroke="#00CC48" stroke-width="2" x1="443.7401" x2="438.9972" y1="462.6486" y2="462.4756" />
		<line fill="none" id="t3 p42" stroke="#00CC30" stroke-width="2" x1="438.9972" x2="432.1065" y1="462.4756" y2="462.1728" />
		<line fill="none" id="t3 p43" stroke="#00CC5C" stroke-width="2" x1="432.1065" x2="424.2016" y1="462.1728" y2="463.2110" />
		<line fill="none" id="t3 p44" stroke="#00CC9C" stroke-width="2" x1="424.2016" x2="418.5936" y1="463.2110" y2="463.8599" />
		<line fill="none" id="t3 p45" stroke="#00ACCC" stroke-width="2" x1="418.5936" x2="415.4018" y1="463.8599" y2="465.9796" />
		<line fill="none" id="t3 p46" stroke="#0080CC" stroke-width="2" x1="415.4018" x2="415.5510" y1="465.9796" y2="473.0310" />
		<line fill="none" id="t3 p47" stroke="#0058CC" stroke-width="2" x1="415.5510" x2="416.2967" y1="473.0310" y2="481.9858" />
		<line fill="none" id="t3 p48" stroke="#0044CC" stroke-width="2" x1="416.2967" x2="422.5013" y1="481.9858" y2="487.6961" />
		<line fill="none" id="t3 p49" stroke="#0080CC" stroke-width="2" x1="422.5013" x2="426.0511" y1="487.6961" y2="493.7957" />
		<line fill="none" id="t3 p50" stroke="#00C0CC" stroke-width="2" x1="426.0511" x2="424.8579" y1="493.7957" y2="497.8189" />
		<line fill="none" id="t3 p51" stroke="#00C0CC" stroke-width="2" x1="424.8579" x2="420.7414" y1="497.8189" y2="498.5975" />
		<line fill="none" id="t3 p52" stroke="#006CCC" stroke-width="2" x1="420.7414" x2="415.8791" y1="498.5975" y2="496.9969" />
		<line fill="none" id="t3 p53" stroke="#002CCC" stroke-width="2" x1="415.8791" x2="409.4955" y1="496.9969" y2="494.3148" />
		<line fill="none" id="t3 p54" stroke="#2400CC" stroke-width="2" x1="409.4955" x2="403.7384" y1="494.3148" y2="494.0553" />
		<line fill="none" id="t3 p55" stroke="#2400CC" stroke-width="2" x1="403.7384" x2="394.7000" y1="494.0553" y2="493.1901" />
		<line fill="none" id="t3 p56" stroke="#0018CC" stroke-width="2" x1="394.7000" x2="389.3008" y1="493.1901" y2="495.2233" />
		<line fill="none" id="t3 p57" stroke="#0058CC" stroke-width="2" x1="389.3008" x2="385.2141" y1="495.2233" y2="498.0352" />
		<line fill="none" id="t3 p58" stroke="#0044CC" stroke-width="2" x1="385.2141" x2="381.1274" y1="498.0352" y2="501.7123" />
		<line fill="none" id="t3 p59" stroke="#0018CC" stroke-width="2" x1="381.1274" x2="378.4129" y1="501.7123" y2="504.7837" />
		<line fill="none" id="t3 p60" stroke="#0058CC" stroke-width="2" x1="378.4129" x2="379.5464" y1="504.7837" y2="515.5554" />
		<line fill="none" id="t3 p61" stroke="#002CCC" stroke-width="2" x1="379.5464" x2="377.4285" y1="515.5554" y2="522.5202" />
		<line fill="none" id="t3 p62" stroke="#0058CC" stroke-width="2" x1="377.4285" x2="368.8375" y1="522.5202" y2="531.2587" />
		<line fill="none" id="t3 p63" stroke="#002CCC" stroke-width="2" x1="368.8375" x2="362.7522" y1="531.2587" y2="537.0123" />
		<line fill="none" id="t3 p64" stroke="#0044CC" stroke-width="2" x1="362.7522" x2="357.5022" y1="537.0123" y2="542.2900" />
		<line fill="none" id="t3 p65" stroke="#006CCC" stroke-width="2" x1="357.5022" x2="350.2536" y1="542.2900" y2="547.4379" />
		<line fill="none" id="t3 p66" stroke="#0080CC" stroke-width="2" x1="350.2536" x2="344.0490" y1="547.4379" y2="551.1582" />
		<line fill="none" id="t3 p67" stroke="#002CCC" stroke-width="2" x1="344.0490" x2="336.4722" y1="551.1582" y2="557.2579" />
		<line fill="none" id="t3 p68" stroke="#0004CC" stroke-width="2" x1="336.4722" x2="330.0886" y1="557.2579" y2="561.1080" />
		<line fill="none" id="t3 p69" stroke="#0044CC" stroke-width="2" x1="330.0886" x2="328.2392" y1="561.1080" y2="565.8666" />
		<line fill="none" id="t3 p70" stroke="#0044CC" stroke-width="2" x1="328.2392" x2="329.0744" y1="565.8666" y2="572.8314" />
		<line fill="none" id="t3 p71" stroke="#002CCC" stroke-width="2" x1="329.0744" x2="332.1469" y1="572.8314" y2="580.0126" />
		<line fill="none" id="t3 p72" stroke="#0044CC" stroke-width="2" x1="332.1469" x2="335.0404" y1="580.0126" y2="584.3385" />
		<line fill="none" id="t3 p73" stroke="#002CCC" stroke-width="2" x1="335.0404" x2="337.4566" y1="584.3385" y2="592.2118" />
		<line fill="none" id="t3 p74" stroke="#002CCC" stroke-width="2" x1="337.4566" x2="340.8572" y1="592.2118" y2="601.2531" />
		<line fill="none" id="t3 p75" stroke="#002CCC" stroke-width="2" x1="340.8572" x2="345.8089" y1="601.2531" y2="614.8367" />
		<line fill="none" id="t3 p76" stroke="#002CCC" stroke-width="2" x1="345.8089" x2="345.1527" y1="614.8367" y2="620.0712" />
		<line fill="none" id="t3 p77" stroke="#0044CC" stroke-width="2" x1="345.1527" x2="338.4111" y1="620.0712" y2="627.6416" />
		<line fill="none" id="t3 p78" stroke="#0058CC" stroke-width="2" x1="338.4111" x2="331.7889" y1="627.6416" y2="635.7312" />
		<line fill="none" id="t3 p79" stroke="#006CCC" stroke-width="2" x1="331.7889" x2="329.3130" y1="635.7312" y2="642.1769" />
		<line fill="none" id="t3 p80" stroke="#006CCC" stroke-width="2" x1="329.3130" x2="330.2676" y1="642.1769" y2="647.8440" />
		<line fill="none" id="t3 p81" stroke="#0058CC" stroke-width="2" x1="330.2676" x2="334.4438" y1="647.8440" y2="652.8189" />
		<line fill="none" id="t3 p82" stroke="#0058CC" stroke-width="2" x1="334.4438" x2="342.5575" y1="652.8189" y2="658.0966" />
		<line fill="none" id="t3 p83" stroke="#0080CC" stroke-width="2" x1="342.5575" x2="348.7322" y1="658.0966" y2="659.8270" />
		<line fill="none" id="t3 p84" stroke="#0094CC" stroke-width="2" x1="348.7322" x2="357.1442" y1="659.8270" y2="655.9336" />
		<line fill="none" id="t3 p85" stroke="#00ACCC" stroke-width="2" x1="357.1442" x2="366.7196" y1="655.9336" y2="649.2716" />
		<line fill="none" id="t3 p86" stroke="#0080CC" stroke-width="2" x1="366.7196" x2="373.4313" y1="649.2716" y2="647.0653" />
		<line fill="none" id="t3 p87" stroke="#0044CC" stroke-width="2" x1="373.4313" x2="379.5464" y1="647.0653" y2="647.8872" />
		<line fill="none" id="t3 p88" stroke="#0018CC" stroke-width="2" x1="379.5464" x2="388.0777" y1="647.8872" y2="652.6026" />
		<line fill="none" id="t3 p89" stroke="#002CCC" stroke-width="2" x1="388.0777" x2="394.3420" y1="652.6026" y2="656.1931" />
		<line fill="none" id="t3 p90" stroke="#002CCC" stroke-width="2" x1="394.3420" x2="400.8747" y1="656.1931" y2="659.0050" />
		<line fill="none" id="t3 p91" stroke="#0044CC" stroke-width="2" x1="400.8747" x2="408.9586" y1="659.0050" y2="657.7937" />
		<line fill="none" id="t3 p92" stroke="#0058CC" stroke-width="2" x1="408.9586" x2="418.2953" y1="657.7937" y2="657.8370" />
		<line fill="none" id="t3 p93" stroke="#0058CC" stroke-width="2" x1="418.2953" x2="426.3494" y1="657.8370" y2="659.3078" />
		<line fill="none" id="t3 p94" stroke="#0044CC" stroke-width="2" x1="426.3494" x2="433.4489" y1="659.3078" y2="660.0000" />
		<line fill="none" id="t3 p95" stroke="#0044CC" stroke-width="2" x1="433.4489" x2="441.9205" y1="660.0000" y2="654.3762" />
		<line fill="none" id="t3 p96" stroke="#0044CC" stroke-width="2" x1="441.9205" x2="452.4505" y1="654.3762" y2="648.5361" />
		<line fill="none" id="t3 p97" stroke="#0044CC" stroke-width="2" x1="452.4505" x2="460.5343" y1="648.5361" y2="646.6760" />
		<line fill="none" id="t3 p98" stroke="#0044CC" stroke-width="2" x1="460.5343" x2="466.5003" y1="646.6760" y2="644.7293" />
		<line fill="none" id="t3 p99" stroke="#0058CC" stroke-width="2" x1="466.5003" x2="475.9563" y1="644.7293" y2="644.0804" />
		<line fill="none" id="t3 p100" stroke="#002CCC" stroke-width="2" x1="475.9563" x2="475.8668" y1="644.0804" y2="629.0260" />
		<line fill="none" id="t3 p101" stroke="#3C00CC" stroke-width="2" x1="475.8668" x2="472.0486" y1="629.0260" y2="616.3941" />
		<line fill="none" id="t3 p102" stroke="#5000CC" stroke-width="2" x1="472.0486" x2="471.1239" y1="616.3941" y2="602.6807" />
		<line fill="none" id="t3 p103" stroke="#8C00CC" stroke-width="2" x1="471.1239" x2="471.8100" y1="602.6807" y2="592.9473" />
		<line fill="none" id="t3 p104" stroke="#CC00CC" stroke-width="2" x1="471.8100" x2="477.0600" y1="592.9473" y2="568.4189" />
		<line fill="none" id="t3 p105" stroke="#CC00CC" stroke-width="2" x1="477.0600" x2="477.4180" y1="568.4189" y2="561.6704" />
		<line fill="none" id="t3 p106" stroke="#6400CC" stroke-width="2" x1="477.4180" x2="475.7774" y1="561.6704" y2="555.6573" />
	</g>
	<g id="21-Feb-CU-20-Feb 3 (t3) label" onmousedown="trackLabelMouseDown(evt,'21-Feb-CU-20-Feb 3 (t3)')" onmousemove="moveGroup(evt,'21-Feb-CU-20-Feb 3 (t3) label')" onmouseout="highlight('21-Feb-CU-20-Feb 3 (t3) label',0)" onmouseover="highlight('21-Feb-CU-20-Feb 3 (t3) label',1)" onmouseup="trackLabelMouseUp(evt,'21-Feb-CU-20-Feb 3 (t3)')" opacity="1" transform="translate(0,0)" x="339.2776" y="388.0687">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-Feb-CU-20-Feb 3 (t3) name" opacity="1" text-anchor="middle" x="339.2776" y="388.0687">21-Feb-CU-20-Feb 3
		</text>
	</g>
	<g id="Waypoints" />
	<g id="Legend" onmousedown="trackGroup(evt,'Legend',1)" onmousemove="moveGroup(evt,'Legend')" onmouseup="trackGroup(evt,'Legend',0)" transform="translate(0,0)" x="6" y="686">		<text fill="#CC0000" font-family="Verdana" font-size="10" id="legend label 1" text-anchor="start" x="6" y="686">405.3
		</text>		<text fill="#98CC00" font-family="Verdana" font-size="10" id="legend label 2" text-anchor="start" x="6" y="676">411.2
		</text>		<text fill="#00CC68" font-family="Verdana" font-size="10" id="legend label 3" text-anchor="start" x="6" y="666">417.1
		</text>		<text fill="#0034CC" font-family="Verdana" font-size="10" id="legend label 4" text-anchor="start" x="6" y="656">423.0
		</text>		<text fill="#CC00CC" font-family="Verdana" font-size="10" id="legend label 5" text-anchor="start" x="6" y="646">428.9
		</text>		<text fill="#000000" font-family="Verdana" font-size="10" id="legend header" onmouseout="highlight('Legend',0)" onmouseover="highlight('Legend',1)" text-anchor="start" x="6" y="634">Elevation (m)
		</text>
	</g>
	<g id="Scale" onmousedown="trackGroup(evt,'Scale',1)" onmousemove="moveGroup(evt,'Scale')" onmouseout="highlight('Scale',0)" onmouseover="highlight('Scale',1)" onmouseup="trackGroup(evt,'Scale',0)" transform="translate(0,0)" x="350" y="350">
		<line fill="none" id="scale_line" stroke="#000000" stroke-width="1" x1="155.041462451867" x2="544.958537548133" y1="682" y2="682" />
		<line fill="none" id="scale_end1" stroke="#000000" stroke-width="1" x1="155.041462451867" x2="155.041462451867" y1="680" y2="684" />
		<line fill="none" id="scale_end2" stroke="#000000" stroke-width="1" x1="544.958537548133" x2="544.958537548133" y1="680" y2="684" />		<text fill="#000000" font-family="Verdana" font-size="10" id="scale_text" text-anchor="middle" x="350" y="680">1 km
		</text>
	</g>
	<g id="Logo" onmousedown="trackGroup(evt,'Logo',1)" onmousemove="moveGroup(evt,'Logo')" onmouseout="highlight('Logo',0)" onmouseover="highlight('Logo',1)" onmouseup="trackGroup(evt,'Logo',0)" transform="translate(0,0)" x="350" y="697">
		<rect fill="#FFFFFF" height="11" id="logo box" opacity="0.6" width="160" x="270" y="688" />
		<a target="_blank" xlink:href="http://www.gpsvisualizer.com/">			<text fill="#000000" font-family="Verdana" font-size="9" id="logo_text" text-anchor="middle" transform="translate(350,697) rotate(0) translate(-350,-697)" x="350" y="697">created by GPSVisualizer.com
			</text>
		</a>
	</g>
	<rect fill="none" height="699" id="image_boundary" opacity="0" stroke="#000000" stroke-width="1" width="699" x="0.5" y="0.5" />
	<a id="modified_source_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/display/1289917614-14113-208.123.41.2-modified.svg" />
	<a id="localized_jpeg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/localize?localize_mode=rasterize_jpg&amp;local_input=/1289917614-14113-208.123.41.2-modified.svg" />
	<a id="localized_png_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/localize?localize_mode=rasterize_png&amp;local_input=/1289917614-14113-208.123.41.2-modified.svg" />
	<a id="localized_svg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/localize?localize_mode=embed&amp;local_input=/1289917614-14113-208.123.41.2-modified.svg" />	<script type="text/ecmascript"><![CDATA[
	function saveModifiedSource() {
		var okay_to_continue;
		if (document.URL.substr(0,4) == 'http') {
			okay_to_continue = confirm('After you click "OK" or "Yes" in this box, please wait a few moments while your updated SVG file is sent to the server.')
		} else {
			alert('Sorry.  For security reasons, you can only save modifications to a file that resides on gpsvisualizer.com.');
			return;
		}
		if (SVGDoc.getElementById('modified_source_link text') != null) {
			var theThingToDelete = SVGDoc.getElementById('modified_source_link text');
			theThingToDelete.getParentNode().removeChild(theThingToDelete);
		}
		if (SVGDoc.getElementById('localized_jpeg_link text') != null) {
			var theThingToDelete2 = SVGDoc.getElementById('localized_jpeg_link text');
			theThingToDelete2.getParentNode().removeChild(theThingToDelete2);
		}
		if (SVGDoc.getElementById('localized_png_link text') != null) {
			var theThingToDelete3 = SVGDoc.getElementById('localized_png_link text');
			theThingToDelete3.getParentNode().removeChild(theThingToDelete3);
		}
		if (okay_to_continue) {
			showSaver(0);
			var theSource = printNode(document.rootElement);
			showSaver(1);
			postURL('http://www.gpsvisualizer.com/save_modified.cgi?/1289917614-14113-208.123.41.2.svg',theSource,postIsDone,"image/svg-xml");
		}
	}
	function postIsDone() {
		if (SVGDoc.getElementById('modified_source_link') != null) {
			
			var theExistingModifiedLink = SVGDoc.getElementById('modified_source_link');
			var newModLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newModLinkLabel.setAttributeNS(null, 'id', 'modified_source_link text');
			newModLinkLabel.setAttributeNS(null, 'x', 3); newModLinkLabel.setAttributeNS(null, 'y', 14);
			newModLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newModLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newModLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newModLinkText = document.createTextNode('Retrieve modified SVG');
			newModLinkLabel.appendChild(newModLinkText);
			theExistingModifiedLink.appendChild(newModLinkLabel);

			var theExistingJPEGLink = SVGDoc.getElementById('localized_jpeg_link');
			var newJPEGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newJPEGLinkLabel.setAttributeNS(null, 'id', 'localized_jpeg_link text');
			newJPEGLinkLabel.setAttributeNS(null, 'x', 3); newJPEGLinkLabel.setAttributeNS(null, 'y', 28);
			newJPEGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newJPEGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newJPEGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newJPEGLinkText = document.createTextNode('Convert modified SVG to JPEG');
			newJPEGLinkLabel.appendChild(newJPEGLinkText);
			theExistingJPEGLink.appendChild(newJPEGLinkLabel);

			var theExistingPNGLink = SVGDoc.getElementById('localized_png_link');
			var newPNGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newPNGLinkLabel.setAttributeNS(null, 'id', 'localized_png_link text');
			newPNGLinkLabel.setAttributeNS(null, 'x', 3); newPNGLinkLabel.setAttributeNS(null, 'y', 42);
			newPNGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newPNGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newPNGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newPNGLinkText = document.createTextNode('Convert modified SVG to PNG');
			newPNGLinkLabel.appendChild(newPNGLinkText);
			theExistingPNGLink.appendChild(newPNGLinkLabel);

			var theExistingSVGLink = SVGDoc.getElementById('localized_svg_link');
			var newSVGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newSVGLinkLabel.setAttributeNS(null, 'id', 'localized_svg_link text');
			newSVGLinkLabel.setAttributeNS(null, 'x', 3); newSVGLinkLabel.setAttributeNS(null, 'y', 56);
			newSVGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newSVGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newSVGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newSVGLinkText = document.createTextNode('Localize modified SVG (embed background)');
			newSVGLinkLabel.appendChild(newSVGLinkText);
			theExistingSVGLink.appendChild(newSVGLinkLabel);

			alert('The modified data has been recorded.  Click "Retrieve modified SVG" to open your new file, or click "Convert modified SVG to JPEG/PNG" or "Localize modified SVG" to create a flat graphic or simplified SVG of your drawing.')
		}
	}
	function saverMouseDown(evt,id) {
		var theSaver = SVGDoc.getElementById('Saver');
		if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
		tracking = 1;
		findGroupClickOffset(evt,id);
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
	}
	function saverMouseUp(evt,id) {
		var theSaver = SVGDoc.getElementById('Saver');
		if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
		// Any time the mouse is lifted off the saver, clear the blue highlights
		var theGroupTags = SVGDoc.getElementsByTagName('g');
		for(g=0; g < theGroupTags.length; g++){
			theGroupTags.item(g).setAttributeNS(null, 'stroke','none');
			theGroupTags.item(g).setAttributeNS(null, 'stroke-width',0);
		}
		tracking = 0;
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
			saveModifiedSource();
		}
	}
	]]>
	</script>
	<g id="Saver" onmousedown="saverMouseDown(evt,'Saver')" onmousemove="moveGroup(evt,'Saver')" onmouseup="saverMouseUp(evt,'Saver')" opacity="0" transform="translate(682,2)" x="682" y="2">
		<rect fill="#CC0000" height="16" id="saver 1" rx="1.5" ry="1.5" width="16" x="0" y="0" />
		<rect fill="#FFFFFF" height="8.5" id="saver 2" width="12" x="2" y="0.5" />
		<rect fill="#999999" height="1" id="saver 3a" width="11" x="2.5" y="2" />
		<rect fill="#999999" height="1" id="saver 3b" width="11" x="2.5" y="4" />
		<rect fill="#999999" height="1" id="saver 3c" width="11" x="2.5" y="6" />
		<rect fill="#CCCCCC" height="5.5" id="saver 4" width="8" x="4" y="10.5" />
		<rect fill="#CC0000" height="4.5" id="saver 5" width="2" x="5.5" y="11" />
	</g><!-- debugging stuff:
 --><!-- key = 1289917614-14113
 --><!-- min. altitude = 405.333008
 --><!-- max. altitude = 428.885376
 --><!-- colorize min = 405.333008
 --><!-- colorize max = 428.885376
 --><!-- colorize range = 23.552368
 --><!-- upper left (data) = 46.463134,-95.213616
 --><!-- lower right (data) = 46.448802,-95.199779
 --><!-- upper left (drawing) = 46.4640586451613,-95.2184307329234
 --><!-- lower right (drawing) = 46.4478773548387,-95.1949642670766
 --><!-- center = 46.455968,-95.2066975
 --><!-- width,height (pixels) = 700,700
 --><!-- width,height (degrees) = 0.0234664658467807,0.016181290322578
 --><!-- scale = 7294, resolution = 2.573 m/pixel
 --><!-- map = http://www2.demis.nl/wms/wms.asp?version=1.1.0&wms=WorldMap&request=GetMap&srs=EPSG:4326&bbox=-95.2184307,46.4478774,-95.1949643,46.4640586&WIDTH=700&HEIGHT=700&format=PNG&transparent=FALSE&exceptions=INIMAGE&wrapdateline=TRUE&layers=Bathymetry,Countries,Topography,Builtup+areas,Coastlines,Waterbodies,Rivers,Streams,Highways,Roads,Railroads,Trails,Hillshading,Borders,Settlements,Cities,Airports
 --><!-- backgrounds = http://www.gpsvisualizer.com/backgrounds?max_dimension=700&margin=0&mw=-95.2184307329234&me=-95.1949642670766&ms=46.4478773548387&mn=46.4640586451613&submitted=1
 --><!-- e-mail = 
 --><!-- 
	Generated using the Perl SVG Module V2.49
	by Ronan Oger
	Info: http://www.roitsystems.com/
 -->
</svg>