view svg/bike.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="blacks_grove_gpx (t1) track" opacity="0.9">
		<line fill="none" id="t1 p1" stroke="#7A7A7A" stroke-width="1" x1="531.0953" x2="531.4465" y1="477.1751" y2="477.1327"/>
		<line fill="none" id="t1 p2" stroke="#7A7A7A" stroke-width="1" x1="531.4465" x2="532.5295" y1="477.1327" y2="477.9817"/>
		<line fill="none" id="t1 p3" stroke="#7A7A7A" stroke-width="1" x1="532.5295" x2="534.4613" y1="477.9817" y2="480.7832"/>
		<line fill="none" id="t1 p4" stroke="#7A7A7A" stroke-width="1" x1="534.4613" x2="535.0760" y1="480.7832" y2="482.6934"/>
		<line fill="none" id="t1 p5" stroke="#7A7A7A" stroke-width="1" x1="535.0760" x2="535.6614" y1="482.6934" y2="485.4101"/>
		<line fill="none" id="t1 p6" stroke="#7A7A7A" stroke-width="1" x1="535.6614" x2="539.0275" y1="485.4101" y2="489.7398"/>
		<line fill="none" id="t1 p7" stroke="#7A7A7A" stroke-width="1" x1="539.0275" x2="548.4233" y1="489.7398" y2="493.3904"/>
		<line fill="none" id="t1 p8" stroke="#7A7A7A" stroke-width="1" x1="548.4233" x2="550.3258" y1="493.3904" y2="495.7675"/>
		<line fill="none" id="t1 p9" stroke="#7A7A7A" stroke-width="1" x1="550.3258" x2="550.8820" y1="495.7675" y2="497.2107"/>
		<line fill="none" id="t1 p10" stroke="#7A7A7A" stroke-width="1" x1="550.8820" x2="553.0480" y1="497.2107" y2="499.3332"/>
		<line fill="none" id="t1 p11" stroke="#7A7A7A" stroke-width="1" x1="553.0480" x2="554.2480" y1="499.3332" y2="499.9699"/>
		<line fill="none" id="t1 p12" stroke="#7A7A7A" stroke-width="1" x1="554.2480" x2="558.5215" y1="499.9699" y2="497.8475"/>
		<line fill="none" id="t1 p13" stroke="#7A7A7A" stroke-width="1" x1="558.5215" x2="561.4778" y1="497.8475" y2="498.5266"/>
		<line fill="none" id="t1 p14" stroke="#7A7A7A" stroke-width="1" x1="561.4778" x2="562.0632" y1="498.5266" y2="503.0262"/>
		<line fill="none" id="t1 p15" stroke="#7A7A7A" stroke-width="1" x1="562.0632" x2="562.2681" y1="503.0262" y2="504.6392"/>
		<line fill="none" id="t1 p16" stroke="#7A7A7A" stroke-width="1" x1="562.2681" x2="562.9121" y1="504.6392" y2="513.4684"/>
		<line fill="none" id="t1 p17" stroke="#7A7A7A" stroke-width="1" x1="562.9121" x2="562.4730" y1="513.4684" y2="520.4724"/>
		<line fill="none" id="t1 p18" stroke="#7A7A7A" stroke-width="1" x1="562.4730" x2="563.0291" y1="520.4724" y2="521.8308"/>
		<line fill="none" id="t1 p19" stroke="#7A7A7A" stroke-width="1" x1="563.0291" x2="562.8535" y1="521.8308" y2="528.9621"/>
		<line fill="none" id="t1 p20" stroke="#7A7A7A" stroke-width="1" x1="562.8535" x2="565.1951" y1="528.9621" y2="532.1457"/>
		<line fill="none" id="t1 p21" stroke="#7A7A7A" stroke-width="1" x1="565.1951" x2="566.7465" y1="532.1457" y2="534.8624"/>
		<line fill="none" id="t1 p22" stroke="#7A7A7A" stroke-width="1" x1="566.7465" x2="568.5319" y1="534.8624" y2="537.6215"/>
		<line fill="none" id="t1 p23" stroke="#7A7A7A" stroke-width="1" x1="568.5319" x2="567.2733" y1="537.6215" y2="544.7953"/>
		<line fill="none" id="t1 p24" stroke="#7A7A7A" stroke-width="1" x1="567.2733" x2="568.3271" y1="544.7953" y2="552.6482"/>
		<line fill="none" id="t1 p25" stroke="#7A7A7A" stroke-width="1" x1="568.3271" x2="570.2589" y1="552.6482" y2="557.4449"/>
		<line fill="none" id="t1 p26" stroke="#7A7A7A" stroke-width="1" x1="570.2589" x2="571.8395" y1="557.4449" y2="560.8832"/>
		<line fill="none" id="t1 p27" stroke="#7A7A7A" stroke-width="1" x1="571.8395" x2="573.2152" y1="560.8832" y2="564.6611"/>
		<line fill="none" id="t1 p28" stroke="#7A7A7A" stroke-width="1" x1="573.2152" x2="573.8299" y1="564.6611" y2="572.4291"/>
		<line fill="none" id="t1 p29" stroke="#7A7A7A" stroke-width="1" x1="573.8299" x2="573.8299" y1="572.4291" y2="574.4667"/>
		<line fill="none" id="t1 p30" stroke="#7A7A7A" stroke-width="1" x1="573.8299" x2="576.2886" y1="574.4667" y2="582.4045"/>
		<line fill="none" id="t1 p31" stroke="#7A7A7A" stroke-width="1" x1="576.2886" x2="580.2693" y1="582.4045" y2="585.7579"/>
		<line fill="none" id="t1 p32" stroke="#7A7A7A" stroke-width="1" x1="580.2693" x2="579.2741" y1="585.7579" y2="590.2574"/>
		<line fill="none" id="t1 p33" stroke="#7A7A7A" stroke-width="1" x1="579.2741" x2="577.3423" y1="590.2574" y2="592.6770"/>
		<line fill="none" id="t1 p34" stroke="#7A7A7A" stroke-width="1" x1="577.3423" x2="573.2445" y1="592.6770" y2="596.8794"/>
		<line fill="none" id="t1 p35" stroke="#7A7A7A" stroke-width="1" x1="573.2445" x2="573.5372" y1="596.8794" y2="601.2515"/>
		<line fill="none" id="t1 p36" stroke="#7A7A7A" stroke-width="1" x1="573.5372" x2="573.9470" y1="601.2515" y2="604.0956"/>
		<line fill="none" id="t1 p37" stroke="#7A7A7A" stroke-width="1" x1="573.9470" x2="574.3275" y1="604.0956" y2="612.3730"/>
		<line fill="none" id="t1 p38" stroke="#7A7A7A" stroke-width="1" x1="574.3275" x2="572.0444" y1="612.3730" y2="613.2644"/>
		<line fill="none" id="t1 p39" stroke="#7A7A7A" stroke-width="1" x1="572.0444" x2="571.2248" y1="613.2644" y2="612.0759"/>
		<line fill="none" id="t1 p40" stroke="#7A7A7A" stroke-width="1" x1="571.2248" x2="566.6001" y1="612.0759" y2="604.8596"/>
		<line fill="none" id="t1 p41" stroke="#7A7A7A" stroke-width="1" x1="566.6001" x2="562.8242" y1="604.8596" y2="601.2091"/>
		<line fill="none" id="t1 p42" stroke="#7A7A7A" stroke-width="1" x1="562.8242" x2="556.2677" y1="601.2091" y2="597.0916"/>
		<line fill="none" id="t1 p43" stroke="#7A7A7A" stroke-width="1" x1="556.2677" x2="555.1262" y1="597.0916" y2="592.9741"/>
		<line fill="none" id="t1 p44" stroke="#7A7A7A" stroke-width="1" x1="555.1262" x2="555.7408" y1="592.9741" y2="585.7155"/>
		<line fill="none" id="t1 p45" stroke="#7A7A7A" stroke-width="1" x1="555.7408" x2="552.5211" y1="585.7155" y2="582.1498"/>
		<line fill="none" id="t1 p46" stroke="#7A7A7A" stroke-width="1" x1="552.5211" x2="549.8868" y1="582.1498" y2="578.3719"/>
		<line fill="none" id="t1 p47" stroke="#7A7A7A" stroke-width="1" x1="549.8868" x2="551.5845" y1="578.3719" y2="573.6177"/>
		<line fill="none" id="t1 p48" stroke="#7A7A7A" stroke-width="1" x1="551.5845" x2="552.5211" y1="573.6177" y2="572.5565"/>
		<line fill="none" id="t1 p49" stroke="#7A7A7A" stroke-width="1" x1="552.5211" x2="556.0043" y1="572.5565" y2="565.3827"/>
		<line fill="none" id="t1 p50" stroke="#7A7A7A" stroke-width="1" x1="556.0043" x2="557.2629" y1="565.3827" y2="558.7608"/>
		<line fill="none" id="t1 p51" stroke="#7A7A7A" stroke-width="1" x1="557.2629" x2="557.7312" y1="558.7608" y2="556.3412"/>
		<line fill="none" id="t1 p52" stroke="#7A7A7A" stroke-width="1" x1="557.7312" x2="554.7749" y1="556.3412" y2="555.3649"/>
		<line fill="none" id="t1 p53" stroke="#7A7A7A" stroke-width="1" x1="554.7749" x2="547.3110" y1="555.3649" y2="553.4972"/>
		<line fill="none" id="t1 p54" stroke="#7A7A7A" stroke-width="1" x1="547.3110" x2="546.5207" y1="553.4972" y2="550.1013"/>
		<line fill="none" id="t1 p55" stroke="#7A7A7A" stroke-width="1" x1="546.5207" x2="546.4622" y1="550.1013" y2="548.1487"/>
		<line fill="none" id="t1 p56" stroke="#7A7A7A" stroke-width="1" x1="546.4622" x2="546.5500" y1="548.1487" y2="548.1063"/>
		<line fill="none" id="t1 p57" stroke="#7A7A7A" stroke-width="1" x1="546.5500" x2="549.0379" y1="548.1063" y2="549.6344"/>
		<line fill="none" id="t1 p58" stroke="#7A7A7A" stroke-width="1" x1="549.0379" x2="549.4185" y1="549.6344" y2="550.8654"/>
		<line fill="none" id="t1 p59" stroke="#7A7A7A" stroke-width="1" x1="549.4185" x2="550.3258" y1="550.8654" y2="552.8605"/>
		<line fill="none" id="t1 p60" stroke="#7A7A7A" stroke-width="1" x1="550.3258" x2="551.9942" y1="552.8605" y2="552.9454"/>
		<line fill="none" id="t1 p61" stroke="#7A7A7A" stroke-width="1" x1="551.9942" x2="551.9650" y1="552.9454" y2="552.9029"/>
		<line fill="none" id="t1 p62" stroke="#7A7A7A" stroke-width="1" x1="551.9650" x2="554.8335" y1="552.9029" y2="549.6344"/>
		<line fill="none" id="t1 p63" stroke="#7A7A7A" stroke-width="1" x1="554.8335" x2="554.8335" y1="549.6344" y2="549.2948"/>
		<line fill="none" id="t1 p64" stroke="#7A7A7A" stroke-width="1" x1="554.8335" x2="552.2869" y1="549.2948" y2="548.3609"/>
		<line fill="none" id="t1 p65" stroke="#7A7A7A" stroke-width="1" x1="552.2869" x2="550.7942" y1="548.3609" y2="548.0638"/>
		<line fill="none" id="t1 p66" stroke="#7A7A7A" stroke-width="1" x1="550.7942" x2="549.0087" y1="548.0638" y2="546.4508"/>
		<line fill="none" id="t1 p67" stroke="#7A7A7A" stroke-width="1" x1="549.0087" x2="548.1891" y1="546.4508" y2="545.9414"/>
		<line fill="none" id="t1 p68" stroke="#7A7A7A" stroke-width="1" x1="548.1891" x2="547.5159" y1="545.9414" y2="544.0737"/>
		<line fill="none" id="t1 p69" stroke="#7A7A7A" stroke-width="1" x1="547.5159" x2="547.6622" y1="544.0737" y2="543.3945"/>
		<line fill="none" id="t1 p70" stroke="#7A7A7A" stroke-width="1" x1="547.6622" x2="548.0720" y1="543.3945" y2="543.7341"/>
		<line fill="none" id="t1 p71" stroke="#7A7A7A" stroke-width="1" x1="548.0720" x2="548.3647" y1="543.7341" y2="544.7953"/>
		<line fill="none" id="t1 p72" stroke="#7A7A7A" stroke-width="1" x1="548.3647" x2="549.5648" y1="544.7953" y2="544.2010"/>
		<line fill="none" id="t1 p73" stroke="#7A7A7A" stroke-width="1" x1="549.5648" x2="550.1209" y1="544.2010" y2="543.2672"/>
		<line fill="none" id="t1 p74" stroke="#7A7A7A" stroke-width="1" x1="550.1209" x2="549.3014" y1="543.2672" y2="538.9799"/>
		<line fill="none" id="t1 p75" stroke="#7A7A7A" stroke-width="1" x1="549.3014" x2="548.1598" y1="538.9799" y2="540.6354"/>
		<line fill="none" id="t1 p76" stroke="#7A7A7A" stroke-width="1" x1="548.1598" x2="548.1306" y1="540.6354" y2="542.0361"/>
		<line fill="none" id="t1 p77" stroke="#7A7A7A" stroke-width="1" x1="548.1306" x2="545.8182" y1="542.0361" y2="541.2721"/>
		<line fill="none" id="t1 p78" stroke="#7A7A7A" stroke-width="1" x1="545.8182" x2="541.7204" y1="541.2721" y2="539.5741"/>
		<line fill="none" id="t1 p79" stroke="#7A7A7A" stroke-width="1" x1="541.7204" x2="540.2276" y1="539.5741" y2="537.3244"/>
		<line fill="none" id="t1 p80" stroke="#7A7A7A" stroke-width="1" x1="540.2276" x2="541.0179" y1="537.3244" y2="533.6314"/>
		<line fill="none" id="t1 p81" stroke="#7A7A7A" stroke-width="1" x1="541.0179" x2="541.3399" y1="533.6314" y2="531.9759"/>
		<line fill="none" id="t1 p82" stroke="#7A7A7A" stroke-width="1" x1="541.3399" x2="541.3106" y1="531.9759" y2="525.8209"/>
		<line fill="none" id="t1 p83" stroke="#7A7A7A" stroke-width="1" x1="541.3106" x2="541.0764" y1="525.8209" y2="523.6136"/>
		<line fill="none" id="t1 p84" stroke="#7A7A7A" stroke-width="1" x1="541.0764" x2="538.7055" y1="523.6136" y2="523.0618"/>
		<line fill="none" id="t1 p85" stroke="#7A7A7A" stroke-width="1" x1="538.7055" x2="538.5299" y1="523.0618" y2="523.5711"/>
		<line fill="none" id="t1 p86" stroke="#7A7A7A" stroke-width="1" x1="538.5299" x2="540.0812" y1="523.5711" y2="529.0045"/>
		<line fill="none" id="t1 p87" stroke="#7A7A7A" stroke-width="1" x1="540.0812" x2="539.7300" y1="529.0045" y2="529.7686"/>
		<line fill="none" id="t1 p88" stroke="#7A7A7A" stroke-width="1" x1="539.7300" x2="538.2079" y1="529.7686" y2="528.1980"/>
		<line fill="none" id="t1 p89" stroke="#7A7A7A" stroke-width="1" x1="538.2079" x2="537.3298" y1="528.1980" y2="526.1180"/>
		<line fill="none" id="t1 p90" stroke="#7A7A7A" stroke-width="1" x1="537.3298" x2="536.3346" y1="526.1180" y2="523.1467"/>
		<line fill="none" id="t1 p91" stroke="#7A7A7A" stroke-width="1" x1="536.3346" x2="535.6614" y1="523.1467" y2="520.2602"/>
		<line fill="none" id="t1 p92" stroke="#7A7A7A" stroke-width="1" x1="535.6614" x2="534.6955" y1="520.2602" y2="519.3263"/>
		<line fill="none" id="t1 p93" stroke="#7A7A7A" stroke-width="1" x1="534.6955" x2="533.9052" y1="519.3263" y2="517.2463"/>
		<line fill="none" id="t1 p94" stroke="#7A7A7A" stroke-width="1" x1="533.9052" x2="534.3443" y1="517.2463" y2="515.8455"/>
		<line fill="none" id="t1 p95" stroke="#7A7A7A" stroke-width="1" x1="534.3443" x2="534.4321" y1="515.8455" y2="515.4211"/>
		<line fill="none" id="t1 p96" stroke="#7A7A7A" stroke-width="1" x1="534.4321" x2="533.7881" y1="515.4211" y2="511.0064"/>
		<line fill="none" id="t1 p97" stroke="#7A7A7A" stroke-width="1" x1="533.7881" x2="532.0612" y1="511.0064" y2="509.2661"/>
		<line fill="none" id="t1 p98" stroke="#7A7A7A" stroke-width="1" x1="532.0612" x2="529.6610" y1="509.2661" y2="510.5820"/>
		<line fill="none" id="t1 p99" stroke="#7A7A7A" stroke-width="1" x1="529.6610" x2="528.8414" y1="510.5820" y2="512.2374"/>
		<line fill="none" id="t1 p100" stroke="#7A7A7A" stroke-width="1" x1="528.8414" x2="527.8170" y1="512.2374" y2="512.4497"/>
		<line fill="none" id="t1 p101" stroke="#7A7A7A" stroke-width="1" x1="527.8170" x2="524.4802" y1="512.4497" y2="509.4783"/>
		<line fill="none" id="t1 p102" stroke="#7A7A7A" stroke-width="1" x1="524.4802" x2="524.4216" y1="509.4783" y2="506.8465"/>
		<line fill="none" id="t1 p103" stroke="#7A7A7A" stroke-width="1" x1="524.4216" x2="524.7143" y1="506.8465" y2="505.4457"/>
		<line fill="none" id="t1 p104" stroke="#7A7A7A" stroke-width="1" x1="524.7143" x2="524.1875" y1="505.4457" y2="503.9600"/>
		<line fill="none" id="t1 p105" stroke="#7A7A7A" stroke-width="1" x1="524.1875" x2="523.9826" y1="503.9600" y2="503.7478"/>
		<line fill="none" id="t1 p106" stroke="#7A7A7A" stroke-width="1" x1="523.9826" x2="522.5191" y1="503.7478" y2="501.4556"/>
		<line fill="none" id="t1 p107" stroke="#7A7A7A" stroke-width="1" x1="522.5191" x2="520.5287" y1="501.4556" y2="500.0548"/>
		<line fill="none" id="t1 p108" stroke="#7A7A7A" stroke-width="1" x1="520.5287" x2="519.2115" y1="500.0548" y2="497.4654"/>
		<line fill="none" id="t1 p109" stroke="#7A7A7A" stroke-width="1" x1="519.2115" x2="519.2408" y1="497.4654" y2="496.9560"/>
		<line fill="none" id="t1 p110" stroke="#7A7A7A" stroke-width="1" x1="519.2408" x2="520.2360" y1="496.9560" y2="494.3667"/>
		<line fill="none" id="t1 p111" stroke="#7A7A7A" stroke-width="1" x1="520.2360" x2="520.7336" y1="494.3667" y2="492.4990"/>
		<line fill="none" id="t1 p112" stroke="#7A7A7A" stroke-width="1" x1="520.7336" x2="522.1385" y1="492.4990" y2="489.0182"/>
		<line fill="none" id="t1 p113" stroke="#7A7A7A" stroke-width="1" x1="522.1385" x2="522.9581" y1="489.0182" y2="483.8395"/>
		<line fill="none" id="t1 p114" stroke="#7A7A7A" stroke-width="1" x1="522.9581" x2="524.0118" y1="483.8395" y2="480.0192"/>
		<line fill="none" id="t1 p115" stroke="#7A7A7A" stroke-width="1" x1="524.0118" x2="525.9730" y1="480.0192" y2="477.1751"/>
		<line fill="none" id="t1 p116" stroke="#7A7A7A" stroke-width="1" x1="525.9730" x2="528.0219" y1="477.1751" y2="473.9915"/>
		<line fill="none" id="t1 p117" stroke="#7A7A7A" stroke-width="1" x1="528.0219" x2="530.1879" y1="473.9915" y2="469.1949"/>
		<line fill="none" id="t1 p118" stroke="#7A7A7A" stroke-width="1" x1="530.1879" x2="531.6514" y1="469.1949" y2="466.0537"/>
		<line fill="none" id="t1 p119" stroke="#7A7A7A" stroke-width="1" x1="531.6514" x2="533.5832" y1="466.0537" y2="465.0349"/>
		<line fill="none" id="t1 p120" stroke="#7A7A7A" stroke-width="1" x1="533.5832" x2="534.6370" y1="465.0349" y2="461.2146"/>
		<line fill="none" id="t1 p121" stroke="#7A7A7A" stroke-width="1" x1="534.6370" x2="536.0419" y1="461.2146" y2="457.4367"/>
		<line fill="none" id="t1 p122" stroke="#7A7A7A" stroke-width="1" x1="536.0419" x2="536.4810" y1="457.4367" y2="457.0971"/>
		<line fill="none" id="t1 p123" stroke="#7A7A7A" stroke-width="1" x1="536.4810" x2="539.4080" y1="457.0971" y2="457.1395"/>
		<line fill="none" id="t1 p124" stroke="#7A7A7A" stroke-width="1" x1="539.4080" x2="538.9690" y1="457.1395" y2="458.3281"/>
		<line fill="none" id="t1 p125" stroke="#7A7A7A" stroke-width="1" x1="538.9690" x2="538.7641" y1="458.3281" y2="456.4179"/>
		<line fill="none" id="t1 p126" stroke="#7A7A7A" stroke-width="1" x1="538.7641" x2="538.7641" y1="456.4179" y2="456.0359"/>
		<line fill="none" id="t1 p127" stroke="#7A7A7A" stroke-width="1" x1="538.7641" x2="538.7641" y1="456.0359" y2="455.9510"/>
		<line fill="none" id="t1 p128" stroke="#7A7A7A" stroke-width="1" x1="538.7641" x2="538.7933" y1="455.9510" y2="455.4840"/>
		<line fill="none" id="t1 p129" stroke="#7A7A7A" stroke-width="1" x1="538.7933" x2="538.4714" y1="455.4840" y2="455.6538"/>
		<line fill="none" id="t1 p130" stroke="#7A7A7A" stroke-width="1" x1="538.4714" x2="539.5251" y1="455.6538" y2="452.5976"/>
		<line fill="none" id="t1 p131" stroke="#7A7A7A" stroke-width="1" x1="539.5251" x2="539.6422" y1="452.5976" y2="452.5127"/>
		<line fill="none" id="t1 p132" stroke="#7A7A7A" stroke-width="1" x1="539.6422" x2="539.7885" y1="452.5127" y2="451.7061"/>
		<line fill="none" id="t1 p133" stroke="#7A7A7A" stroke-width="1" x1="539.7885" x2="539.5544" y1="451.7061" y2="452.3853"/>
		<line fill="none" id="t1 p134" stroke="#7A7A7A" stroke-width="1" x1="539.5544" x2="539.4958" y1="452.3853" y2="452.7674"/>
		<line fill="none" id="t1 p135" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="539.4958" y1="452.7674" y2="452.9796"/>
		<line fill="none" id="t1 p136" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="539.3202" y1="452.9796" y2="453.0220"/>
		<line fill="none" id="t1 p137" stroke="#7A7A7A" stroke-width="1" x1="539.3202" x2="538.9982" y1="453.0220" y2="452.3004"/>
		<line fill="none" id="t1 p138" stroke="#7A7A7A" stroke-width="1" x1="538.9982" x2="538.3250" y1="452.3004" y2="452.0882"/>
		<line fill="none" id="t1 p139" stroke="#7A7A7A" stroke-width="1" x1="538.3250" x2="536.2176" y1="452.0882" y2="453.7861"/>
		<line fill="none" id="t1 p140" stroke="#7A7A7A" stroke-width="1" x1="536.2176" x2="535.1638" y1="453.7861" y2="456.7150"/>
		<line fill="none" id="t1 p141" stroke="#7A7A7A" stroke-width="1" x1="535.1638" x2="537.3884" y1="456.7150" y2="458.0309"/>
		<line fill="none" id="t1 p142" stroke="#7A7A7A" stroke-width="1" x1="537.3884" x2="539.1739" y1="458.0309" y2="457.5640"/>
		<line fill="none" id="t1 p143" stroke="#7A7A7A" stroke-width="1" x1="539.1739" x2="540.0812" y1="457.5640" y2="456.7999"/>
		<line fill="none" id="t1 p144" stroke="#7A7A7A" stroke-width="1" x1="540.0812" x2="539.4373" y1="456.7999" y2="456.0359"/>
		<line fill="none" id="t1 p145" stroke="#7A7A7A" stroke-width="1" x1="539.4373" x2="537.1835" y1="456.0359" y2="456.3330"/>
		<line fill="none" id="t1 p146" stroke="#7A7A7A" stroke-width="1" x1="537.1835" x2="534.6955" y1="456.3330" y2="455.8236"/>
		<line fill="none" id="t1 p147" stroke="#7A7A7A" stroke-width="1" x1="534.6955" x2="533.6125" y1="455.8236" y2="455.7812"/>
		<line fill="none" id="t1 p148" stroke="#7A7A7A" stroke-width="1" x1="533.6125" x2="533.3198" y1="455.7812" y2="457.9460"/>
		<line fill="none" id="t1 p149" stroke="#7A7A7A" stroke-width="1" x1="533.3198" x2="535.0175" y1="457.9460" y2="457.9460"/>
		<line fill="none" id="t1 p150" stroke="#7A7A7A" stroke-width="1" x1="535.0175" x2="535.3687" y1="457.9460" y2="456.9697"/>
		<line fill="none" id="t1 p151" stroke="#7A7A7A" stroke-width="1" x1="535.3687" x2="535.4858" y1="456.9697" y2="455.2718"/>
		<line fill="none" id="t1 p152" stroke="#7A7A7A" stroke-width="1" x1="535.4858" x2="534.0223" y1="455.2718" y2="456.2057"/>
		<line fill="none" id="t1 p153" stroke="#7A7A7A" stroke-width="1" x1="534.0223" x2="533.8759" y1="456.2057" y2="457.0122"/>
		<line fill="none" id="t1 p154" stroke="#7A7A7A" stroke-width="1" x1="533.8759" x2="535.3102" y1="457.0122" y2="458.6677"/>
		<line fill="none" id="t1 p155" stroke="#7A7A7A" stroke-width="1" x1="535.3102" x2="536.6273" y1="458.6677" y2="458.7526"/>
		<line fill="none" id="t1 p156" stroke="#7A7A7A" stroke-width="1" x1="536.6273" x2="538.1787" y1="458.7526" y2="459.4317"/>
		<line fill="none" id="t1 p157" stroke="#7A7A7A" stroke-width="1" x1="538.1787" x2="540.0227" y1="459.4317" y2="458.2432"/>
		<line fill="none" id="t1 p158" stroke="#7A7A7A" stroke-width="1" x1="540.0227" x2="541.2228" y1="458.2432" y2="458.2432"/>
		<line fill="none" id="t1 p159" stroke="#7A7A7A" stroke-width="1" x1="541.2228" x2="543.2717" y1="458.2432" y2="457.6065"/>
		<line fill="none" id="t1 p160" stroke="#7A7A7A" stroke-width="1" x1="543.2717" x2="543.1546" y1="457.6065" y2="455.6963"/>
		<line fill="none" id="t1 p161" stroke="#7A7A7A" stroke-width="1" x1="543.1546" x2="543.0083" y1="455.6963" y2="455.2718"/>
		<line fill="none" id="t1 p162" stroke="#7A7A7A" stroke-width="1" x1="543.0083" x2="541.6326" y1="455.2718" y2="455.3567"/>
		<line fill="none" id="t1 p163" stroke="#7A7A7A" stroke-width="1" x1="541.6326" x2="539.4958" y1="455.3567" y2="457.8187"/>
		<line fill="none" id="t1 p164" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="537.7981" y1="457.8187" y2="458.5828"/>
		<line fill="none" id="t1 p165" stroke="#7A7A7A" stroke-width="1" x1="537.7981" x2="536.5395" y1="458.5828" y2="457.2669"/>
		<line fill="none" id="t1 p166" stroke="#7A7A7A" stroke-width="1" x1="536.5395" x2="538.2372" y1="457.2669" y2="457.9036"/>
		<line fill="none" id="t1 p167" stroke="#7A7A7A" stroke-width="1" x1="538.2372" x2="539.0860" y1="457.9036" y2="459.0073"/>
		<line fill="none" id="t1 p168" stroke="#7A7A7A" stroke-width="1" x1="539.0860" x2="541.4277" y1="459.0073" y2="460.5778"/>
		<line fill="none" id="t1 p169" stroke="#7A7A7A" stroke-width="1" x1="541.4277" x2="543.1546" y1="460.5778" y2="458.7101"/>
		<line fill="none" id="t1 p170" stroke="#7A7A7A" stroke-width="1" x1="543.1546" x2="540.5496" y1="458.7101" y2="456.6726"/>
		<line fill="none" id="t1 p171" stroke="#7A7A7A" stroke-width="1" x1="540.5496" x2="539.8471" y1="456.6726" y2="456.3755"/>
		<line fill="none" id="t1 p172" stroke="#7A7A7A" stroke-width="1" x1="539.8471" x2="538.0030" y1="456.3755" y2="455.3567"/>
		<line fill="none" id="t1 p173" stroke="#7A7A7A" stroke-width="1" x1="538.0030" x2="536.5688" y1="455.3567" y2="456.6302"/>
		<line fill="none" id="t1 p174" stroke="#7A7A7A" stroke-width="1" x1="536.5688" x2="536.6859" y1="456.6302" y2="457.1395"/>
		<line fill="none" id="t1 p175" stroke="#7A7A7A" stroke-width="1" x1="536.6859" x2="537.4176" y1="457.1395" y2="458.7950"/>
		<line fill="none" id="t1 p176" stroke="#7A7A7A" stroke-width="1" x1="537.4176" x2="540.6374" y1="458.7950" y2="458.1158"/>
		<line fill="none" id="t1 p177" stroke="#7A7A7A" stroke-width="1" x1="540.6374" x2="539.8763" y1="458.1158" y2="456.4179"/>
		<line fill="none" id="t1 p178" stroke="#7A7A7A" stroke-width="1" x1="539.8763" x2="536.4810" y1="456.4179" y2="455.5265"/>
		<line fill="none" id="t1 p179" stroke="#7A7A7A" stroke-width="1" x1="536.4810" x2="534.8126" y1="455.5265" y2="457.8187"/>
		<line fill="none" id="t1 p180" stroke="#7A7A7A" stroke-width="1" x1="534.8126" x2="532.8515" y1="457.8187" y2="460.4929"/>
		<line fill="none" id="t1 p181" stroke="#7A7A7A" stroke-width="1" x1="532.8515" x2="532.8515" y1="460.4929" y2="460.8325"/>
		<line fill="none" id="t1 p182" stroke="#7A7A7A" stroke-width="1" x1="532.8515" x2="532.9393" y1="460.8325" y2="464.1860"/>
		<line fill="none" id="t1 p183" stroke="#7A7A7A" stroke-width="1" x1="532.9393" x2="531.5636" y1="464.1860" y2="466.0961"/>
		<line fill="none" id="t1 p184" stroke="#7A7A7A" stroke-width="1" x1="531.5636" x2="529.7195" y1="466.0961" y2="471.8691"/>
		<line fill="none" id="t1 p185" stroke="#7A7A7A" stroke-width="1" x1="529.7195" x2="530.1293" y1="471.8691" y2="475.3074"/>
		<line fill="none" id="t1 p186" stroke="#7A7A7A" stroke-width="1" x1="530.1293" x2="530.5977" y1="475.3074" y2="475.9866"/>
		<line fill="none" id="t1 p187" stroke="#7A7A7A" stroke-width="1" x1="530.5977" x2="532.2368" y1="475.9866" y2="477.1751"/>
		<line fill="none" id="t1 p188" stroke="#7A7A7A" stroke-width="1" x1="532.2368" x2="532.0904" y1="477.1751" y2="477.3874"/>
		<line fill="none" id="t1 p189" stroke="#7A7A7A" stroke-width="1" x1="532.0904" x2="534.4028" y1="477.3874" y2="481.5473"/>
		<line fill="none" id="t1 p190" stroke="#7A7A7A" stroke-width="1" x1="534.4028" x2="536.4517" y1="481.5473" y2="487.2354"/>
		<line fill="none" id="t1 p191" stroke="#7A7A7A" stroke-width="1" x1="536.4517" x2="537.3006" y1="487.2354" y2="488.2966"/>
		<line fill="none" id="t1 p192" stroke="#7A7A7A" stroke-width="1" x1="537.3006" x2="541.2520" y1="488.2966" y2="491.4802"/>
		<line fill="none" id="t1 p193" stroke="#7A7A7A" stroke-width="1" x1="541.2520" x2="546.9305" y1="491.4802" y2="493.3479"/>
		<line fill="none" id="t1 p194" stroke="#7A7A7A" stroke-width="1" x1="546.9305" x2="550.3844" y1="493.3479" y2="497.2532"/>
		<line fill="none" id="t1 p195" stroke="#7A7A7A" stroke-width="1" x1="550.3844" x2="554.2188" y1="497.2532" y2="499.0785"/>
		<line fill="none" id="t1 p196" stroke="#7A7A7A" stroke-width="1" x1="554.2188" x2="556.6189" y1="499.0785" y2="498.6115"/>
		<line fill="none" id="t1 p197" stroke="#7A7A7A" stroke-width="1" x1="556.6189" x2="560.5997" y1="498.6115" y2="497.6352"/>
		<line fill="none" id="t1 p198" stroke="#7A7A7A" stroke-width="1" x1="560.5997" x2="561.7412" y1="497.6352" y2="500.0548"/>
		<line fill="none" id="t1 p199" stroke="#7A7A7A" stroke-width="1" x1="561.7412" x2="562.2974" y1="500.0548" y2="505.2759"/>
		<line fill="none" id="t1 p200" stroke="#7A7A7A" stroke-width="1" x1="562.2974" x2="562.7657" y1="505.2759" y2="510.2848"/>
		<line fill="none" id="t1 p201" stroke="#7A7A7A" stroke-width="1" x1="562.7657" x2="562.3266" y1="510.2848" y2="517.2463"/>
		<line fill="none" id="t1 p202" stroke="#7A7A7A" stroke-width="1" x1="562.3266" x2="563.3511" y1="517.2463" y2="523.3164"/>
		<line fill="none" id="t1 p203" stroke="#7A7A7A" stroke-width="1" x1="563.3511" x2="562.7657" y1="523.3164" y2="527.9433"/>
		<line fill="none" id="t1 p204" stroke="#7A7A7A" stroke-width="1" x1="562.7657" x2="565.2537" y1="527.9433" y2="532.6551"/>
		<line fill="none" id="t1 p205" stroke="#7A7A7A" stroke-width="1" x1="565.2537" x2="566.8050" y1="532.6551" y2="535.4142"/>
		<line fill="none" id="t1 p206" stroke="#7A7A7A" stroke-width="1" x1="566.8050" x2="568.5027" y1="535.4142" y2="538.2158"/>
		<line fill="none" id="t1 p207" stroke="#7A7A7A" stroke-width="1" x1="568.5027" x2="566.7465" y1="538.2158" y2="546.9602"/>
		<line fill="none" id="t1 p208" stroke="#7A7A7A" stroke-width="1" x1="566.7465" x2="569.0588" y1="546.9602" y2="555.1102"/>
		<line fill="none" id="t1 p209" stroke="#7A7A7A" stroke-width="1" x1="569.0588" x2="571.8688" y1="555.1102" y2="561.2652"/>
		<line fill="none" id="t1 p210" stroke="#7A7A7A" stroke-width="1" x1="571.8688" x2="573.4201" y1="561.2652" y2="565.8072"/>
		<line fill="none" id="t1 p211" stroke="#7A7A7A" stroke-width="1" x1="573.4201" x2="574.0640" y1="565.8072" y2="568.0145"/>
		<line fill="none" id="t1 p212" stroke="#7A7A7A" stroke-width="1" x1="574.0640" x2="573.3030" y1="568.0145" y2="578.0748"/>
		<line fill="none" id="t1 p213" stroke="#7A7A7A" stroke-width="1" x1="573.3030" x2="576.6691" y1="578.0748" y2="583.5506"/>
		<line fill="none" id="t1 p214" stroke="#7A7A7A" stroke-width="1" x1="576.6691" x2="578.4546" y1="583.5506" y2="584.7391"/>
		<line fill="none" id="t1 p215" stroke="#7A7A7A" stroke-width="1" x1="578.4546" x2="580.0352" y1="584.7391" y2="587.4134"/>
		<line fill="none" id="t1 p216" stroke="#7A7A7A" stroke-width="1" x1="580.0352" x2="577.6935" y1="587.4134" y2="592.2101"/>
		<line fill="none" id="t1 p217" stroke="#7A7A7A" stroke-width="1" x1="577.6935" x2="573.0981" y1="592.2101" y2="597.4312"/>
		<line fill="none" id="t1 p218" stroke="#7A7A7A" stroke-width="1" x1="573.0981" x2="573.5664" y1="597.4312" y2="602.5674"/>
		<line fill="none" id="t1 p219" stroke="#7A7A7A" stroke-width="1" x1="573.5664" x2="573.7421" y1="602.5674" y2="604.3078"/>
		<line fill="none" id="t1 p220" stroke="#7A7A7A" stroke-width="1" x1="573.7421" x2="574.0640" y1="604.3078" y2="612.3730"/>
		<line fill="none" id="t1 p221" stroke="#7A7A7A" stroke-width="1" x1="574.0640" x2="571.8980" y1="612.3730" y2="613.5191"/>
		<line fill="none" id="t1 p222" stroke="#7A7A7A" stroke-width="1" x1="571.8980" x2="571.0199" y1="613.5191" y2="612.3305"/>
		<line fill="none" id="t1 p223" stroke="#7A7A7A" stroke-width="1" x1="571.0199" x2="566.3367" y1="612.3305" y2="604.9021"/>
		<line fill="none" id="t1 p224" stroke="#7A7A7A" stroke-width="1" x1="566.3367" x2="557.5556" y1="604.9021" y2="598.8320"/>
		<line fill="none" id="t1 p225" stroke="#7A7A7A" stroke-width="1" x1="557.5556" x2="554.9213" y1="598.8320" y2="594.6296"/>
		<line fill="none" id="t1 p226" stroke="#7A7A7A" stroke-width="1" x1="554.9213" x2="556.0628" y1="594.6296" y2="588.0926"/>
		<line fill="none" id="t1 p227" stroke="#7A7A7A" stroke-width="1" x1="556.0628" x2="553.5456" y1="588.0926" y2="583.3808"/>
		<line fill="none" id="t1 p228" stroke="#7A7A7A" stroke-width="1" x1="553.5456" x2="551.2625" y1="583.3808" y2="581.0886"/>
		<line fill="none" id="t1 p229" stroke="#7A7A7A" stroke-width="1" x1="551.2625" x2="549.5941" y1="581.0886" y2="578.3719"/>
		<line fill="none" id="t1 p230" stroke="#7A7A7A" stroke-width="1" x1="549.5941" x2="551.5845" y1="578.3719" y2="573.8299"/>
		<line fill="none" id="t1 p231" stroke="#7A7A7A" stroke-width="1" x1="551.5845" x2="554.8627" y1="573.8299" y2="569.3304"/>
		<line fill="none" id="t1 p232" stroke="#7A7A7A" stroke-width="1" x1="554.8627" x2="556.5019" y1="569.3304" y2="562.4113"/>
		<line fill="none" id="t1 p233" stroke="#7A7A7A" stroke-width="1" x1="556.5019" x2="557.0873" y1="562.4113" y2="559.7795"/>
		<line fill="none" id="t1 p234" stroke="#7A7A7A" stroke-width="1" x1="557.0873" x2="557.5263" y1="559.7795" y2="555.5347"/>
		<line fill="none" id="t1 p235" stroke="#7A7A7A" stroke-width="1" x1="557.5263" x2="557.2043" y1="555.5347" y2="555.3649"/>
		<line fill="none" id="t1 p236" stroke="#7A7A7A" stroke-width="1" x1="557.2043" x2="553.6334" y1="555.3649" y2="555.6621"/>
		<line fill="none" id="t1 p237" stroke="#7A7A7A" stroke-width="1" x1="553.6334" x2="551.6723" y1="555.6621" y2="555.7470"/>
		<line fill="none" id="t1 p238" stroke="#7A7A7A" stroke-width="1" x1="551.6723" x2="547.3695" y1="555.7470" y2="552.4784"/>
		<line fill="none" id="t1 p239" stroke="#7A7A7A" stroke-width="1" x1="547.3695" x2="547.3695" y1="552.4784" y2="549.8891"/>
		<line fill="none" id="t1 p240" stroke="#7A7A7A" stroke-width="1" x1="547.3695" x2="547.1646" y1="549.8891" y2="548.9552"/>
		<line fill="none" id="t1 p241" stroke="#7A7A7A" stroke-width="1" x1="547.1646" x2="548.0720" y1="548.9552" y2="548.0214"/>
		<line fill="none" id="t1 p242" stroke="#7A7A7A" stroke-width="1" x1="548.0720" x2="548.0720" y1="548.0214" y2="548.1912"/>
		<line fill="none" id="t1 p243" stroke="#7A7A7A" stroke-width="1" x1="548.0720" x2="549.0087" y1="548.1912" y2="549.0401"/>
		<line fill="none" id="t1 p244" stroke="#7A7A7A" stroke-width="1" x1="549.0087" x2="549.7990" y1="549.0401" y2="550.9078"/>
		<line fill="none" id="t1 p245" stroke="#7A7A7A" stroke-width="1" x1="549.7990" x2="552.0528" y1="550.9078" y2="553.4547"/>
		<line fill="none" id="t1 p246" stroke="#7A7A7A" stroke-width="1" x1="552.0528" x2="553.1065" y1="553.4547" y2="552.9454"/>
		<line fill="none" id="t1 p247" stroke="#7A7A7A" stroke-width="1" x1="553.1065" x2="553.5748" y1="552.9454" y2="552.0964"/>
		<line fill="none" id="t1 p248" stroke="#7A7A7A" stroke-width="1" x1="553.5748" x2="554.1017" y1="552.0964" y2="549.4222"/>
		<line fill="none" id="t1 p249" stroke="#7A7A7A" stroke-width="1" x1="554.1017" x2="551.6137" y1="549.4222" y2="548.7430"/>
		<line fill="none" id="t1 p250" stroke="#7A7A7A" stroke-width="1" x1="551.6137" x2="549.4770" y1="548.7430" y2="547.2148"/>
		<line fill="none" id="t1 p251" stroke="#7A7A7A" stroke-width="1" x1="549.4770" x2="547.3695" y1="547.2148" y2="544.5830"/>
		<line fill="none" id="t1 p252" stroke="#7A7A7A" stroke-width="1" x1="547.3695" x2="548.0135" y1="544.5830" y2="544.0312"/>
		<line fill="none" id="t1 p253" stroke="#7A7A7A" stroke-width="1" x1="548.0135" x2="548.9209" y1="544.0312" y2="545.0075"/>
		<line fill="none" id="t1 p254" stroke="#7A7A7A" stroke-width="1" x1="548.9209" x2="550.8820" y1="545.0075" y2="543.6916"/>
		<line fill="none" id="t1 p255" stroke="#7A7A7A" stroke-width="1" x1="550.8820" x2="550.9698" y1="543.6916" y2="542.8851"/>
		<line fill="none" id="t1 p256" stroke="#7A7A7A" stroke-width="1" x1="550.9698" x2="551.0576" y1="542.8851" y2="541.7390"/>
		<line fill="none" id="t1 p257" stroke="#7A7A7A" stroke-width="1" x1="551.0576" x2="550.0624" y1="541.7390" y2="539.5741"/>
		<line fill="none" id="t1 p258" stroke="#7A7A7A" stroke-width="1" x1="550.0624" x2="548.3940" y1="539.5741" y2="540.7627"/>
		<line fill="none" id="t1 p259" stroke="#7A7A7A" stroke-width="1" x1="548.3940" x2="546.6085" y1="540.7627" y2="541.7390"/>
		<line fill="none" id="t1 p260" stroke="#7A7A7A" stroke-width="1" x1="546.6085" x2="545.3499" y1="541.7390" y2="541.1023"/>
		<line fill="none" id="t1 p261" stroke="#7A7A7A" stroke-width="1" x1="545.3499" x2="541.1935" y1="541.1023" y2="539.4893"/>
		<line fill="none" id="t1 p262" stroke="#7A7A7A" stroke-width="1" x1="541.1935" x2="539.4958" y1="539.4893" y2="536.9424"/>
		<line fill="none" id="t1 p263" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="540.0812" y1="536.9424" y2="536.0085"/>
		<line fill="none" id="t1 p264" stroke="#7A7A7A" stroke-width="1" x1="540.0812" x2="540.5203" y1="536.0085" y2="534.9473"/>
		<line fill="none" id="t1 p265" stroke="#7A7A7A" stroke-width="1" x1="540.5203" x2="541.3984" y1="534.9473" y2="531.9759"/>
		<line fill="none" id="t1 p266" stroke="#7A7A7A" stroke-width="1" x1="541.3984" x2="542.0423" y1="531.9759" y2="528.7498"/>
		<line fill="none" id="t1 p267" stroke="#7A7A7A" stroke-width="1" x1="542.0423" x2="541.9545" y1="528.7498" y2="527.6886"/>
		<line fill="none" id="t1 p268" stroke="#7A7A7A" stroke-width="1" x1="541.9545" x2="540.6959" y1="527.6886" y2="523.7834"/>
		<line fill="none" id="t1 p269" stroke="#7A7A7A" stroke-width="1" x1="540.6959" x2="538.6177" y1="523.7834" y2="523.2740"/>
		<line fill="none" id="t1 p270" stroke="#7A7A7A" stroke-width="1" x1="538.6177" x2="538.5592" y1="523.2740" y2="524.6323"/>
		<line fill="none" id="t1 p271" stroke="#7A7A7A" stroke-width="1" x1="538.5592" x2="540.1105" y1="524.6323" y2="529.3441"/>
		<line fill="none" id="t1 p272" stroke="#7A7A7A" stroke-width="1" x1="540.1105" x2="537.8274" y1="529.3441" y2="528.0282"/>
		<line fill="none" id="t1 p273" stroke="#7A7A7A" stroke-width="1" x1="537.8274" x2="536.3932" y1="528.0282" y2="524.3777"/>
		<line fill="none" id="t1 p274" stroke="#7A7A7A" stroke-width="1" x1="536.3932" x2="535.6614" y1="524.3777" y2="520.0479"/>
		<line fill="none" id="t1 p275" stroke="#7A7A7A" stroke-width="1" x1="535.6614" x2="534.4321" y1="520.0479" y2="518.6047"/>
		<line fill="none" id="t1 p276" stroke="#7A7A7A" stroke-width="1" x1="534.4321" x2="533.8467" y1="518.6047" y2="516.5672"/>
		<line fill="none" id="t1 p277" stroke="#7A7A7A" stroke-width="1" x1="533.8467" x2="534.0516" y1="516.5672" y2="515.9729"/>
		<line fill="none" id="t1 p278" stroke="#7A7A7A" stroke-width="1" x1="534.0516" x2="534.1394" y1="515.9729" y2="512.1950"/>
		<line fill="none" id="t1 p279" stroke="#7A7A7A" stroke-width="1" x1="534.1394" x2="530.6562" y1="512.1950" y2="509.5632"/>
		<line fill="none" id="t1 p280" stroke="#7A7A7A" stroke-width="1" x1="530.6562" x2="529.5147" y1="509.5632" y2="511.2187"/>
		<line fill="none" id="t1 p281" stroke="#7A7A7A" stroke-width="1" x1="529.5147" x2="526.9681" y1="511.2187" y2="512.7044"/>
		<line fill="none" id="t1 p282" stroke="#7A7A7A" stroke-width="1" x1="526.9681" x2="523.8362" y1="512.7044" y2="509.9028"/>
		<line fill="none" id="t1 p283" stroke="#7A7A7A" stroke-width="1" x1="523.8362" x2="523.7191" y1="509.9028" y2="507.4832"/>
		<line fill="none" id="t1 p284" stroke="#7A7A7A" stroke-width="1" x1="523.7191" x2="523.9533" y1="507.4832" y2="505.9975"/>
		<line fill="none" id="t1 p285" stroke="#7A7A7A" stroke-width="1" x1="523.9533" x2="523.7191" y1="505.9975" y2="505.7004"/>
		<line fill="none" id="t1 p286" stroke="#7A7A7A" stroke-width="1" x1="523.7191" x2="523.7191" y1="505.7004" y2="504.5967"/>
		<line fill="none" id="t1 p287" stroke="#7A7A7A" stroke-width="1" x1="523.7191" x2="523.5435" y1="504.5967" y2="504.4269"/>
		<line fill="none" id="t1 p288" stroke="#7A7A7A" stroke-width="1" x1="523.5435" x2="521.5531" y1="504.4269" y2="501.4980"/>
		<line fill="none" id="t1 p289" stroke="#7A7A7A" stroke-width="1" x1="521.5531" x2="519.2701" y1="501.4980" y2="499.3756"/>
		<line fill="none" id="t1 p290" stroke="#7A7A7A" stroke-width="1" x1="519.2701" x2="519.0944" y1="499.3756" y2="498.9087"/>
		<line fill="none" id="t1 p291" stroke="#7A7A7A" stroke-width="1" x1="519.0944" x2="519.5042" y1="498.9087" y2="496.7863"/>
		<line fill="none" id="t1 p292" stroke="#7A7A7A" stroke-width="1" x1="519.5042" x2="519.5335" y1="496.7863" y2="496.4467"/>
		<line fill="none" id="t1 p293" stroke="#7A7A7A" stroke-width="1" x1="519.5335" x2="520.2360" y1="496.4467" y2="493.9847"/>
		<line fill="none" id="t1 p294" stroke="#7A7A7A" stroke-width="1" x1="520.2360" x2="520.5287" y1="493.9847" y2="492.6263"/>
		<line fill="none" id="t1 p295" stroke="#7A7A7A" stroke-width="1" x1="520.5287" x2="521.7288" y1="492.6263" y2="491.9047"/>
		<line fill="none" id="t1 p296" stroke="#7A7A7A" stroke-width="1" x1="521.7288" x2="522.2264" y1="491.9047" y2="493.3904"/>
		<line fill="none" id="t1 p297" stroke="#7A7A7A" stroke-width="1" x1="522.2264" x2="519.2701" y1="493.3904" y2="494.6214"/>
		<line fill="none" id="t1 p298" stroke="#7A7A7A" stroke-width="1" x1="519.2701" x2="519.0359" y1="494.6214" y2="495.9797"/>
		<line fill="none" id="t1 p299" stroke="#7A7A7A" stroke-width="1" x1="519.0359" x2="513.5038" y1="495.9797" y2="495.8524"/>
		<line fill="none" id="t1 p300" stroke="#7A7A7A" stroke-width="1" x1="513.5038" x2="510.1085" y1="495.8524" y2="495.2157"/>
		<line fill="none" id="t1 p301" stroke="#7A7A7A" stroke-width="1" x1="510.1085" x2="502.3226" y1="495.2157" y2="495.0883"/>
		<line fill="none" id="t1 p302" stroke="#7A7A7A" stroke-width="1" x1="502.3226" x2="492.7512" y1="495.0883" y2="497.3805"/>
		<line fill="none" id="t1 p303" stroke="#7A7A7A" stroke-width="1" x1="492.7512" x2="489.9120" y1="497.3805" y2="500.5642"/>
		<line fill="none" id="t1 p304" stroke="#7A7A7A" stroke-width="1" x1="489.9120" x2="490.6730" y1="500.5642" y2="503.7478"/>
		<line fill="none" id="t1 p305" stroke="#7A7A7A" stroke-width="1" x1="490.6730" x2="494.9757" y1="503.7478" y2="510.9215"/>
		<line fill="none" id="t1 p306" stroke="#7A7A7A" stroke-width="1" x1="494.9757" x2="496.9368" y1="510.9215" y2="515.0815"/>
		<line fill="none" id="t1 p307" stroke="#7A7A7A" stroke-width="1" x1="496.9368" x2="496.6149" y1="515.0815" y2="523.4013"/>
		<line fill="none" id="t1 p308" stroke="#7A7A7A" stroke-width="1" x1="496.6149" x2="495.2684" y1="523.4013" y2="526.9246"/>
		<line fill="none" id="t1 p309" stroke="#7A7A7A" stroke-width="1" x1="495.2684" x2="489.3266" y1="526.9246" y2="528.3253"/>
		<line fill="none" id="t1 p310" stroke="#7A7A7A" stroke-width="1" x1="489.3266" x2="485.7556" y1="528.3253" y2="530.2780"/>
		<line fill="none" id="t1 p311" stroke="#7A7A7A" stroke-width="1" x1="485.7556" x2="484.0286" y1="530.2780" y2="530.2780"/>
		<line fill="none" id="t1 p312" stroke="#7A7A7A" stroke-width="1" x1="484.0286" x2="482.8286" y1="530.2780" y2="531.9335"/>
		<line fill="none" id="t1 p313" stroke="#7A7A7A" stroke-width="1" x1="482.8286" x2="481.7456" y1="531.9335" y2="534.2681"/>
		<line fill="none" id="t1 p314" stroke="#7A7A7A" stroke-width="1" x1="481.7456" x2="481.1309" y1="534.2681" y2="535.1171"/>
		<line fill="none" id="t1 p315" stroke="#7A7A7A" stroke-width="1" x1="481.1309" x2="479.9601" y1="535.1171" y2="535.5416"/>
		<line fill="none" id="t1 p316" stroke="#7A7A7A" stroke-width="1" x1="479.9601" x2="478.5258" y1="535.5416" y2="538.0460"/>
		<line fill="none" id="t1 p317" stroke="#7A7A7A" stroke-width="1" x1="478.5258" x2="477.0330" y1="538.0460" y2="539.0648"/>
		<line fill="none" id="t1 p318" stroke="#7A7A7A" stroke-width="1" x1="477.0330" x2="474.5451" y1="539.0648" y2="539.1072"/>
		<line fill="none" id="t1 p319" stroke="#7A7A7A" stroke-width="1" x1="474.5451" x2="475.6281" y1="539.1072" y2="536.6028"/>
		<line fill="none" id="t1 p320" stroke="#7A7A7A" stroke-width="1" x1="475.6281" x2="477.4428" y1="536.6028" y2="534.2257"/>
		<line fill="none" id="t1 p321" stroke="#7A7A7A" stroke-width="1" x1="477.4428" x2="475.7744" y1="534.2257" y2="530.9147"/>
		<line fill="none" id="t1 p322" stroke="#7A7A7A" stroke-width="1" x1="475.7744" x2="477.2087" y1="530.9147" y2="527.2217"/>
		<line fill="none" id="t1 p323" stroke="#7A7A7A" stroke-width="1" x1="477.2087" x2="481.1309" y1="527.2217" y2="526.2029"/>
		<line fill="none" id="t1 p324" stroke="#7A7A7A" stroke-width="1" x1="481.1309" x2="482.0675" y1="526.2029" y2="524.5474"/>
		<line fill="none" id="t1 p325" stroke="#7A7A7A" stroke-width="1" x1="482.0675" x2="481.5699" y1="524.5474" y2="523.8258"/>
		<line fill="none" id="t1 p326" stroke="#7A7A7A" stroke-width="1" x1="481.5699" x2="480.1357" y1="523.8258" y2="523.0193"/>
		<line fill="none" id="t1 p327" stroke="#7A7A7A" stroke-width="1" x1="480.1357" x2="479.6088" y1="523.0193" y2="522.9344"/>
		<line fill="none" id="t1 p328" stroke="#7A7A7A" stroke-width="1" x1="479.6088" x2="476.5354" y1="522.9344" y2="519.6234"/>
		<line fill="none" id="t1 p329" stroke="#7A7A7A" stroke-width="1" x1="476.5354" x2="472.8474" y1="519.6234" y2="516.1427"/>
		<line fill="none" id="t1 p330" stroke="#7A7A7A" stroke-width="1" x1="472.8474" x2="469.3935" y1="516.1427" y2="514.7843"/>
		<line fill="none" id="t1 p331" stroke="#7A7A7A" stroke-width="1" x1="469.3935" x2="465.1200" y1="514.7843" y2="512.2374"/>
		<line fill="none" id="t1 p332" stroke="#7A7A7A" stroke-width="1" x1="465.1200" x2="462.3394" y1="512.2374" y2="510.9640"/>
		<line fill="none" id="t1 p333" stroke="#7A7A7A" stroke-width="1" x1="462.3394" x2="461.8710" y1="510.9640" y2="510.2424"/>
		<line fill="none" id="t1 p334" stroke="#7A7A7A" stroke-width="1" x1="461.8710" x2="460.0270" y1="510.2424" y2="507.1012"/>
		<line fill="none" id="t1 p335" stroke="#7A7A7A" stroke-width="1" x1="460.0270" x2="458.2415" y1="507.1012" y2="506.8465"/>
		<line fill="none" id="t1 p336" stroke="#7A7A7A" stroke-width="1" x1="458.2415" x2="458.0366" y1="506.8465" y2="507.2710"/>
		<line fill="none" id="t1 p337" stroke="#7A7A7A" stroke-width="1" x1="458.0366" x2="458.8562" y1="507.2710" y2="509.5207"/>
		<line fill="none" id="t1 p338" stroke="#7A7A7A" stroke-width="1" x1="458.8562" x2="459.2952" y1="509.5207" y2="510.8366"/>
		<line fill="none" id="t1 p339" stroke="#7A7A7A" stroke-width="1" x1="459.2952" x2="456.6902" y1="510.8366" y2="513.7231"/>
		<line fill="none" id="t1 p340" stroke="#7A7A7A" stroke-width="1" x1="456.6902" x2="455.8414" y1="513.7231" y2="514.1052"/>
		<line fill="none" id="t1 p341" stroke="#7A7A7A" stroke-width="1" x1="455.8414" x2="455.0218" y1="514.1052" y2="514.2325"/>
		<line fill="none" id="t1 p342" stroke="#7A7A7A" stroke-width="1" x1="455.0218" x2="453.5290" y1="514.2325" y2="513.8505"/>
		<line fill="none" id="t1 p343" stroke="#7A7A7A" stroke-width="1" x1="453.5290" x2="452.5631" y1="513.8505" y2="513.0015"/>
		<line fill="none" id="t1 p344" stroke="#7A7A7A" stroke-width="1" x1="452.5631" x2="450.2507" y1="513.0015" y2="508.5444"/>
		<line fill="none" id="t1 p345" stroke="#7A7A7A" stroke-width="1" x1="450.2507" x2="449.1677" y1="508.5444" y2="505.4033"/>
		<line fill="none" id="t1 p346" stroke="#7A7A7A" stroke-width="1" x1="449.1677" x2="448.2603" y1="505.4033" y2="504.4269"/>
		<line fill="none" id="t1 p347" stroke="#7A7A7A" stroke-width="1" x1="448.2603" x2="446.8261" y1="504.4269" y2="503.3233"/>
		<line fill="none" id="t1 p348" stroke="#7A7A7A" stroke-width="1" x1="446.8261" x2="445.8016" y1="503.3233" y2="503.7053"/>
		<line fill="none" id="t1 p349" stroke="#7A7A7A" stroke-width="1" x1="445.8016" x2="445.5382" y1="503.7053" y2="507.0587"/>
		<line fill="none" id="t1 p350" stroke="#7A7A7A" stroke-width="1" x1="445.5382" x2="445.4211" y1="507.0587" y2="508.5869"/>
		<line fill="none" id="t1 p351" stroke="#7A7A7A" stroke-width="1" x1="445.4211" x2="445.8895" y1="508.5869" y2="510.1999"/>
		<line fill="none" id="t1 p352" stroke="#7A7A7A" stroke-width="1" x1="445.8895" x2="446.7968" y1="510.1999" y2="513.1713"/>
		<line fill="none" id="t1 p353" stroke="#7A7A7A" stroke-width="1" x1="446.7968" x2="446.5919" y1="513.1713" y2="513.8929"/>
		<line fill="none" id="t1 p354" stroke="#7A7A7A" stroke-width="1" x1="446.5919" x2="444.8943" y1="513.8929" y2="519.1565"/>
		<line fill="none" id="t1 p355" stroke="#7A7A7A" stroke-width="1" x1="444.8943" x2="443.2551" y1="519.1565" y2="521.4912"/>
		<line fill="none" id="t1 p356" stroke="#7A7A7A" stroke-width="1" x1="443.2551" x2="441.2355" y1="521.4912" y2="525.2691"/>
		<line fill="none" id="t1 p357" stroke="#7A7A7A" stroke-width="1" x1="441.2355" x2="436.8157" y1="525.2691" y2="524.4625"/>
		<line fill="none" id="t1 p358" stroke="#7A7A7A" stroke-width="1" x1="436.8157" x2="433.6252" y1="524.4625" y2="521.7459"/>
		<line fill="none" id="t1 p359" stroke="#7A7A7A" stroke-width="1" x1="433.6252" x2="432.5715" y1="521.7459" y2="521.8308"/>
		<line fill="none" id="t1 p360" stroke="#7A7A7A" stroke-width="1" x1="432.5715" x2="430.7860" y1="521.8308" y2="522.4250"/>
		<line fill="none" id="t1 p361" stroke="#7A7A7A" stroke-width="1" x1="430.7860" x2="430.2591" y1="522.4250" y2="524.2928"/>
		<line fill="none" id="t1 p362" stroke="#7A7A7A" stroke-width="1" x1="430.2591" x2="431.8104" y1="524.2928" y2="528.2404"/>
		<line fill="none" id="t1 p363" stroke="#7A7A7A" stroke-width="1" x1="431.8104" x2="433.7423" y1="528.2404" y2="529.9808"/>
		<line fill="none" id="t1 p364" stroke="#7A7A7A" stroke-width="1" x1="433.7423" x2="439.3915" y1="529.9808" y2="533.5040"/>
		<line fill="none" id="t1 p365" stroke="#7A7A7A" stroke-width="1" x1="439.3915" x2="445.0992" y1="533.5040" y2="535.8811"/>
		<line fill="none" id="t1 p366" stroke="#7A7A7A" stroke-width="1" x1="445.0992" x2="446.0943" y1="535.8811" y2="536.1358"/>
		<line fill="none" id="t1 p367" stroke="#7A7A7A" stroke-width="1" x1="446.0943" x2="450.8361" y1="536.1358" y2="535.2020"/>
		<line fill="none" id="t1 p368" stroke="#7A7A7A" stroke-width="1" x1="450.8361" x2="454.1729" y1="535.2020" y2="534.6077"/>
		<line fill="none" id="t1 p369" stroke="#7A7A7A" stroke-width="1" x1="454.1729" x2="455.8121" y1="534.6077" y2="533.7587"/>
		<line fill="none" id="t1 p370" stroke="#7A7A7A" stroke-width="1" x1="455.8121" x2="456.4853" y1="533.7587" y2="532.6975"/>
		<line fill="none" id="t1 p371" stroke="#7A7A7A" stroke-width="1" x1="456.4853" x2="459.5294" y1="532.6975" y2="534.0983"/>
		<line fill="none" id="t1 p372" stroke="#7A7A7A" stroke-width="1" x1="459.5294" x2="463.0418" y1="534.0983" y2="536.6028"/>
		<line fill="none" id="t1 p373" stroke="#7A7A7A" stroke-width="1" x1="463.0418" x2="466.4079" y1="536.6028" y2="538.8101"/>
		<line fill="none" id="t1 p374" stroke="#7A7A7A" stroke-width="1" x1="466.4079" x2="468.6910" y1="538.8101" y2="540.2958"/>
		<line fill="none" id="t1 p375" stroke="#7A7A7A" stroke-width="1" x1="468.6910" x2="468.9252" y1="540.2958" y2="540.8051"/>
		<line fill="none" id="t1 p376" stroke="#7A7A7A" stroke-width="1" x1="468.9252" x2="466.2323" y1="540.8051" y2="543.9888"/>
		<line fill="none" id="t1 p377" stroke="#7A7A7A" stroke-width="1" x1="466.2323" x2="465.2957" y1="543.9888" y2="544.5830"/>
		<line fill="none" id="t1 p378" stroke="#7A7A7A" stroke-width="1" x1="465.2957" x2="458.0659" y1="544.5830" y2="548.8279"/>
		<line fill="none" id="t1 p379" stroke="#7A7A7A" stroke-width="1" x1="458.0659" x2="456.7487" y1="548.8279" y2="549.3373"/>
		<line fill="none" id="t1 p380" stroke="#7A7A7A" stroke-width="1" x1="456.7487" x2="454.3778" y1="549.3373" y2="554.0915"/>
		<line fill="none" id="t1 p381" stroke="#7A7A7A" stroke-width="1" x1="454.3778" x2="456.1926" y1="554.0915" y2="555.9592"/>
		<line fill="none" id="t1 p382" stroke="#7A7A7A" stroke-width="1" x1="456.1926" x2="458.0952" y1="555.9592" y2="557.6996"/>
		<line fill="none" id="t1 p383" stroke="#7A7A7A" stroke-width="1" x1="458.0952" x2="463.6565" y1="557.6996" y2="558.4636"/>
		<line fill="none" id="t1 p384" stroke="#7A7A7A" stroke-width="1" x1="463.6565" x2="468.3105" y1="558.4636" y2="557.4873"/>
		<line fill="none" id="t1 p385" stroke="#7A7A7A" stroke-width="1" x1="468.3105" x2="471.3546" y1="557.4873" y2="558.6759"/>
		<line fill="none" id="t1 p386" stroke="#7A7A7A" stroke-width="1" x1="471.3546" x2="472.4961" y1="558.6759" y2="559.5673"/>
		<line fill="none" id="t1 p387" stroke="#7A7A7A" stroke-width="1" x1="472.4961" x2="474.6621" y1="559.5673" y2="560.4163"/>
		<line fill="none" id="t1 p388" stroke="#7A7A7A" stroke-width="1" x1="474.6621" x2="481.2187" y1="560.4163" y2="560.3314"/>
		<line fill="none" id="t1 p389" stroke="#7A7A7A" stroke-width="1" x1="481.2187" x2="482.6237" y1="560.3314" y2="560.2889"/>
		<line fill="none" id="t1 p390" stroke="#7A7A7A" stroke-width="1" x1="482.6237" x2="485.6092" y1="560.2889" y2="563.2179"/>
		<line fill="none" id="t1 p391" stroke="#7A7A7A" stroke-width="1" x1="485.6092" x2="484.9360" y1="563.2179" y2="565.1280"/>
		<line fill="none" id="t1 p392" stroke="#7A7A7A" stroke-width="1" x1="484.9360" x2="484.2628" y1="565.1280" y2="566.1468"/>
		<line fill="none" id="t1 p393" stroke="#7A7A7A" stroke-width="1" x1="484.2628" x2="484.0872" y1="566.1468" y2="566.6137"/>
		<line fill="none" id="t1 p394" stroke="#7A7A7A" stroke-width="1" x1="484.0872" x2="486.0190" y1="566.6137" y2="569.3729"/>
		<line fill="none" id="t1 p395" stroke="#7A7A7A" stroke-width="1" x1="486.0190" x2="489.9412" y1="569.3729" y2="570.6039"/>
		<line fill="none" id="t1 p396" stroke="#7A7A7A" stroke-width="1" x1="489.9412" x2="495.9416" y1="570.6039" y2="567.2080"/>
		<line fill="none" id="t1 p397" stroke="#7A7A7A" stroke-width="1" x1="495.9416" x2="496.4100" y1="567.2080" y2="562.2840"/>
		<line fill="none" id="t1 p398" stroke="#7A7A7A" stroke-width="1" x1="496.4100" x2="495.4148" y1="562.2840" y2="561.2228"/>
		<line fill="none" id="t1 p399" stroke="#7A7A7A" stroke-width="1" x1="495.4148" x2="491.1999" y1="561.2228" y2="555.7470"/>
		<line fill="none" id="t1 p400" stroke="#7A7A7A" stroke-width="1" x1="491.1999" x2="490.7023" y1="555.7470" y2="554.6433"/>
		<line fill="none" id="t1 p401" stroke="#7A7A7A" stroke-width="1" x1="490.7023" x2="492.0487" y1="554.6433" y2="550.8654"/>
		<line fill="none" id="t1 p402" stroke="#7A7A7A" stroke-width="1" x1="492.0487" x2="494.0976" y1="550.8654" y2="548.7854"/>
		<line fill="none" id="t1 p403" stroke="#7A7A7A" stroke-width="1" x1="494.0976" x2="498.9858" y1="548.7854" y2="544.9651"/>
		<line fill="none" id="t1 p404" stroke="#7A7A7A" stroke-width="1" x1="498.9858" x2="499.4248" y1="544.9651" y2="540.9749"/>
		<line fill="none" id="t1 p405" stroke="#7A7A7A" stroke-width="1" x1="499.4248" x2="502.8202" y1="540.9749" y2="540.5080"/>
		<line fill="none" id="t1 p406" stroke="#7A7A7A" stroke-width="1" x1="502.8202" x2="504.1959" y1="540.5080" y2="541.0174"/>
		<line fill="none" id="t1 p407" stroke="#7A7A7A" stroke-width="1" x1="504.1959" x2="510.1085" y1="541.0174" y2="541.4843"/>
		<line fill="none" id="t1 p408" stroke="#7A7A7A" stroke-width="1" x1="510.1085" x2="514.2648" y1="541.4843" y2="534.2681"/>
		<line fill="none" id="t1 p409" stroke="#7A7A7A" stroke-width="1" x1="514.2648" x2="513.7087" y1="534.2681" y2="530.2780"/>
		<line fill="none" id="t1 p410" stroke="#7A7A7A" stroke-width="1" x1="513.7087" x2="513.2111" y1="530.2780" y2="529.1319"/>
		<line fill="none" id="t1 p411" stroke="#7A7A7A" stroke-width="1" x1="513.2111" x2="512.3037" y1="529.1319" y2="526.3303"/>
		<line fill="none" id="t1 p412" stroke="#7A7A7A" stroke-width="1" x1="512.3037" x2="507.3571" y1="526.3303" y2="524.8870"/>
		<line fill="none" id="t1 p413" stroke="#7A7A7A" stroke-width="1" x1="507.3571" x2="504.5471" y1="524.8870" y2="522.5948"/>
		<line fill="none" id="t1 p414" stroke="#7A7A7A" stroke-width="1" x1="504.5471" x2="505.5423" y1="522.5948" y2="519.4961"/>
		<line fill="none" id="t1 p415" stroke="#7A7A7A" stroke-width="1" x1="505.5423" x2="509.0255" y1="519.4961" y2="517.9680"/>
		<line fill="none" id="t1 p416" stroke="#7A7A7A" stroke-width="1" x1="509.0255" x2="510.4304" y1="517.9680" y2="517.2463"/>
		<line fill="none" id="t1 p417" stroke="#7A7A7A" stroke-width="1" x1="510.4304" x2="511.3964" y1="517.2463" y2="516.9492"/>
		<line fill="none" id="t1 p418" stroke="#7A7A7A" stroke-width="1" x1="511.3964" x2="513.5038" y1="516.9492" y2="518.6471"/>
		<line fill="none" id="t1 p419" stroke="#7A7A7A" stroke-width="1" x1="513.5038" x2="516.0503" y1="518.6471" y2="520.2602"/>
		<line fill="none" id="t1 p420" stroke="#7A7A7A" stroke-width="1" x1="516.0503" x2="516.6943" y1="520.2602" y2="520.7695"/>
		<line fill="none" id="t1 p421" stroke="#7A7A7A" stroke-width="1" x1="516.6943" x2="518.0700" y1="520.7695" y2="521.4063"/>
		<line fill="none" id="t1 p422" stroke="#7A7A7A" stroke-width="1" x1="518.0700" x2="519.0652" y1="521.4063" y2="522.5524"/>
		<line fill="none" id="t1 p423" stroke="#7A7A7A" stroke-width="1" x1="519.0652" x2="520.9677" y1="522.5524" y2="526.7548"/>
		<line fill="none" id="t1 p424" stroke="#7A7A7A" stroke-width="1" x1="520.9677" x2="524.5094" y1="526.7548" y2="531.4241"/>
		<line fill="none" id="t1 p425" stroke="#7A7A7A" stroke-width="1" x1="524.5094" x2="524.6265" y1="531.4241" y2="533.6314"/>
		<line fill="none" id="t1 p426" stroke="#7A7A7A" stroke-width="1" x1="524.6265" x2="526.0608" y1="533.6314" y2="536.2207"/>
		<line fill="none" id="t1 p427" stroke="#7A7A7A" stroke-width="1" x1="526.0608" x2="526.2364" y1="536.2207" y2="538.5554"/>
		<line fill="none" id="t1 p428" stroke="#7A7A7A" stroke-width="1" x1="526.2364" x2="526.2071" y1="538.5554" y2="539.7439"/>
		<line fill="none" id="t1 p429" stroke="#7A7A7A" stroke-width="1" x1="526.2071" x2="525.6510" y1="539.7439" y2="540.5929"/>
		<line fill="none" id="t1 p430" stroke="#7A7A7A" stroke-width="1" x1="525.6510" x2="523.5142" y1="540.5929" y2="544.9651"/>
		<line fill="none" id="t1 p431" stroke="#7A7A7A" stroke-width="1" x1="523.5142" x2="523.1630" y1="544.9651" y2="546.1112"/>
		<line fill="none" id="t1 p432" stroke="#7A7A7A" stroke-width="1" x1="523.1630" x2="523.2508" y1="546.1112" y2="546.9602"/>
		<line fill="none" id="t1 p433" stroke="#7A7A7A" stroke-width="1" x1="523.2508" x2="525.3290" y1="546.9602" y2="549.3797"/>
		<line fill="none" id="t1 p434" stroke="#7A7A7A" stroke-width="1" x1="525.3290" x2="526.2657" y1="549.3797" y2="550.4409"/>
		<line fill="none" id="t1 p435" stroke="#7A7A7A" stroke-width="1" x1="526.2657" x2="527.5243" y1="550.4409" y2="552.9878"/>
		<line fill="none" id="t1 p436" stroke="#7A7A7A" stroke-width="1" x1="527.5243" x2="531.7685" y1="552.9878" y2="555.4074"/>
		<line fill="none" id="t1 p437" stroke="#7A7A7A" stroke-width="1" x1="531.7685" x2="532.8222" y1="555.4074" y2="561.0530"/>
		<line fill="none" id="t1 p438" stroke="#7A7A7A" stroke-width="1" x1="532.8222" x2="533.3491" y1="561.0530" y2="561.9869"/>
		<line fill="none" id="t1 p439" stroke="#7A7A7A" stroke-width="1" x1="533.3491" x2="533.9052" y1="561.9869" y2="565.5101"/>
		<line fill="none" id="t1 p440" stroke="#7A7A7A" stroke-width="1" x1="533.9052" x2="533.5540" y1="565.5101" y2="566.1468"/>
		<line fill="none" id="t1 p441" stroke="#7A7A7A" stroke-width="1" x1="533.5540" x2="533.3491" y1="566.1468" y2="566.4015"/>
		<line fill="none" id="t1 p442" stroke="#7A7A7A" stroke-width="1" x1="533.3491" x2="530.9782" y1="566.4015" y2="568.8635"/>
		<line fill="none" id="t1 p443" stroke="#7A7A7A" stroke-width="1" x1="530.9782" x2="527.5535" y1="568.8635" y2="573.1932"/>
		<line fill="none" id="t1 p444" stroke="#7A7A7A" stroke-width="1" x1="527.5535" x2="526.2657" y1="573.1932" y2="574.4242"/>
		<line fill="none" id="t1 p445" stroke="#7A7A7A" stroke-width="1" x1="526.2657" x2="524.0997" y1="574.4242" y2="575.3581"/>
		<line fill="none" id="t1 p446" stroke="#7A7A7A" stroke-width="1" x1="524.0997" x2="521.1434" y1="575.3581" y2="575.1458"/>
		<line fill="none" id="t1 p447" stroke="#7A7A7A" stroke-width="1" x1="521.1434" x2="520.0311" y1="575.1458" y2="574.2969"/>
		<line fill="none" id="t1 p448" stroke="#7A7A7A" stroke-width="1" x1="520.0311" x2="519.9433" y1="574.2969" y2="568.9908"/>
		<line fill="none" id="t1 p449" stroke="#7A7A7A" stroke-width="1" x1="519.9433" x2="516.0503" y1="568.9908" y2="564.8309"/>
		<line fill="none" id="t1 p450" stroke="#7A7A7A" stroke-width="1" x1="516.0503" x2="512.0988" y1="564.8309" y2="560.2889"/>
		<line fill="none" id="t1 p451" stroke="#7A7A7A" stroke-width="1" x1="512.0988" x2="510.4012" y1="560.2889" y2="558.9306"/>
		<line fill="none" id="t1 p452" stroke="#7A7A7A" stroke-width="1" x1="510.4012" x2="506.6253" y1="558.9306" y2="560.8832"/>
		<line fill="none" id="t1 p453" stroke="#7A7A7A" stroke-width="1" x1="506.6253" x2="509.2596" y1="560.8832" y2="564.1942"/>
		<line fill="none" id="t1 p454" stroke="#7A7A7A" stroke-width="1" x1="509.2596" x2="512.3037" y1="564.1942" y2="566.2741"/>
		<line fill="none" id="t1 p455" stroke="#7A7A7A" stroke-width="1" x1="512.3037" x2="514.1478" y1="566.2741" y2="570.5190"/>
		<line fill="none" id="t1 p456" stroke="#7A7A7A" stroke-width="1" x1="514.1478" x2="511.6891" y1="570.5190" y2="572.2169"/>
		<line fill="none" id="t1 p457" stroke="#7A7A7A" stroke-width="1" x1="511.6891" x2="509.8743" y1="572.2169" y2="573.9148"/>
		<line fill="none" id="t1 p458" stroke="#7A7A7A" stroke-width="1" x1="509.8743" x2="507.8839" y1="573.9148" y2="577.1833"/>
		<line fill="none" id="t1 p459" stroke="#7A7A7A" stroke-width="1" x1="507.8839" x2="505.2496" y1="577.1833" y2="582.1498"/>
		<line fill="none" id="t1 p460" stroke="#7A7A7A" stroke-width="1" x1="505.2496" x2="505.2496" y1="582.1498" y2="583.9751"/>
		<line fill="none" id="t1 p461" stroke="#7A7A7A" stroke-width="1" x1="505.2496" x2="507.2985" y1="583.9751" y2="585.4183"/>
		<line fill="none" id="t1 p462" stroke="#7A7A7A" stroke-width="1" x1="507.2985" x2="509.2596" y1="585.4183" y2="586.9040"/>
		<line fill="none" id="t1 p463" stroke="#7A7A7A" stroke-width="1" x1="509.2596" x2="510.3719" y1="586.9040" y2="587.6256"/>
		<line fill="none" id="t1 p464" stroke="#7A7A7A" stroke-width="1" x1="510.3719" x2="510.0206" y1="587.6256" y2="587.9228"/>
		<line fill="none" id="t1 p465" stroke="#7A7A7A" stroke-width="1" x1="510.0206" x2="507.6498" y1="587.9228" y2="588.6444"/>
		<line fill="none" id="t1 p466" stroke="#7A7A7A" stroke-width="1" x1="507.6498" x2="507.0351" y1="588.6444" y2="588.1775"/>
		<line fill="none" id="t1 p467" stroke="#7A7A7A" stroke-width="1" x1="507.0351" x2="503.5812" y1="588.1775" y2="585.9277"/>
		<line fill="none" id="t1 p468" stroke="#7A7A7A" stroke-width="1" x1="503.5812" x2="502.3226" y1="585.9277" y2="585.3334"/>
		<line fill="none" id="t1 p469" stroke="#7A7A7A" stroke-width="1" x1="502.3226" x2="498.5467" y1="585.3334" y2="587.2860"/>
		<line fill="none" id="t1 p470" stroke="#7A7A7A" stroke-width="1" x1="498.5467" x2="495.1221" y1="587.2860" y2="588.2199"/>
		<line fill="none" id="t1 p471" stroke="#7A7A7A" stroke-width="1" x1="495.1221" x2="488.6533" y1="588.2199" y2="591.1064"/>
		<line fill="none" id="t1 p472" stroke="#7A7A7A" stroke-width="1" x1="488.6533" x2="485.0531" y1="591.1064" y2="593.8655"/>
		<line fill="none" id="t1 p473" stroke="#7A7A7A" stroke-width="1" x1="485.0531" x2="481.6577" y1="593.8655" y2="593.3137"/>
		<line fill="none" id="t1 p474" stroke="#7A7A7A" stroke-width="1" x1="481.6577" x2="480.1357" y1="593.3137" y2="592.1676"/>
		<line fill="none" id="t1 p475" stroke="#7A7A7A" stroke-width="1" x1="480.1357" x2="479.6381" y1="592.1676" y2="590.3423"/>
		<line fill="none" id="t1 p476" stroke="#7A7A7A" stroke-width="1" x1="479.6381" x2="479.0820" y1="590.3423" y2="586.8616"/>
		<line fill="none" id="t1 p477" stroke="#7A7A7A" stroke-width="1" x1="479.0820" x2="477.2379" y1="586.8616" y2="586.9040"/>
		<line fill="none" id="t1 p478" stroke="#7A7A7A" stroke-width="1" x1="477.2379" x2="476.4476" y1="586.9040" y2="588.0926"/>
		<line fill="none" id="t1 p479" stroke="#7A7A7A" stroke-width="1" x1="476.4476" x2="475.0719" y1="588.0926" y2="589.9178"/>
		<line fill="none" id="t1 p480" stroke="#7A7A7A" stroke-width="1" x1="475.0719" x2="471.3839" y1="589.9178" y2="589.7905"/>
		<line fill="none" id="t1 p481" stroke="#7A7A7A" stroke-width="1" x1="471.3839" x2="470.0960" y1="589.7905" y2="592.5921"/>
		<line fill="none" id="t1 p482" stroke="#7A7A7A" stroke-width="1" x1="470.0960" x2="469.9204" y1="592.5921" y2="593.6108"/>
		<line fill="none" id="t1 p483" stroke="#7A7A7A" stroke-width="1" x1="469.9204" x2="469.5398" y1="593.6108" y2="595.2239"/>
		<line fill="none" id="t1 p484" stroke="#7A7A7A" stroke-width="1" x1="469.5398" x2="467.9885" y1="595.2239" y2="595.0965"/>
		<line fill="none" id="t1 p485" stroke="#7A7A7A" stroke-width="1" x1="467.9885" x2="465.7054" y1="595.0965" y2="596.0304"/>
		<line fill="none" id="t1 p486" stroke="#7A7A7A" stroke-width="1" x1="465.7054" x2="464.3883" y1="596.0304" y2="598.1104"/>
		<line fill="none" id="t1 p487" stroke="#7A7A7A" stroke-width="1" x1="464.3883" x2="460.1734" y1="598.1104" y2="600.1479"/>
		<line fill="none" id="t1 p488" stroke="#7A7A7A" stroke-width="1" x1="460.1734" x2="456.5438" y1="600.1479" y2="599.6385"/>
		<line fill="none" id="t1 p489" stroke="#7A7A7A" stroke-width="1" x1="456.5438" x2="457.3927" y1="599.6385" y2="597.8557"/>
		<line fill="none" id="t1 p490" stroke="#7A7A7A" stroke-width="1" x1="457.3927" x2="462.3686" y1="597.8557" y2="594.9692"/>
		<line fill="none" id="t1 p491" stroke="#7A7A7A" stroke-width="1" x1="462.3686" x2="462.1052" y1="594.9692" y2="591.9554"/>
		<line fill="none" id="t1 p492" stroke="#7A7A7A" stroke-width="1" x1="462.1052" x2="463.2467" y1="591.9554" y2="589.0264"/>
		<line fill="none" id="t1 p493" stroke="#7A7A7A" stroke-width="1" x1="463.2467" x2="463.6565" y1="589.0264" y2="586.6069"/>
		<line fill="none" id="t1 p494" stroke="#7A7A7A" stroke-width="1" x1="463.6565" x2="462.4272" y1="586.6069" y2="584.5694"/>
		<line fill="none" id="t1 p495" stroke="#7A7A7A" stroke-width="1" x1="462.4272" x2="462.2515" y1="584.5694" y2="582.8290"/>
		<line fill="none" id="t1 p496" stroke="#7A7A7A" stroke-width="1" x1="462.2515" x2="464.7395" y1="582.8290" y2="581.0461"/>
		<line fill="none" id="t1 p497" stroke="#7A7A7A" stroke-width="1" x1="464.7395" x2="467.6665" y1="581.0461" y2="584.5694"/>
		<line fill="none" id="t1 p498" stroke="#7A7A7A" stroke-width="1" x1="467.6665" x2="469.1593" y1="584.5694" y2="583.8053"/>
		<line fill="none" id="t1 p499" stroke="#7A7A7A" stroke-width="1" x1="469.1593" x2="469.2471" y1="583.8053" y2="578.1172"/>
		<line fill="none" id="t1 p500" stroke="#7A7A7A" stroke-width="1" x1="469.2471" x2="469.7740" y1="578.1172" y2="574.8487"/>
		<line fill="none" id="t1 p501" stroke="#7A7A7A" stroke-width="1" x1="469.7740" x2="467.4324" y1="574.8487" y2="569.1606"/>
		<line fill="none" id="t1 p502" stroke="#7A7A7A" stroke-width="1" x1="467.4324" x2="462.9248" y1="569.1606" y2="565.4252"/>
		<line fill="none" id="t1 p503" stroke="#7A7A7A" stroke-width="1" x1="462.9248" x2="458.2122" y1="565.4252" y2="562.1566"/>
		<line fill="none" id="t1 p504" stroke="#7A7A7A" stroke-width="1" x1="458.2122" x2="453.0607" y1="562.1566" y2="558.9306"/>
		<line fill="none" id="t1 p505" stroke="#7A7A7A" stroke-width="1" x1="453.0607" x2="446.9139" y1="558.9306" y2="556.6384"/>
		<line fill="none" id="t1 p506" stroke="#7A7A7A" stroke-width="1" x1="446.9139" x2="439.9769" y1="556.6384" y2="554.4311"/>
		<line fill="none" id="t1 p507" stroke="#7A7A7A" stroke-width="1" x1="439.9769" x2="431.3421" y1="554.4311" y2="551.1625"/>
		<line fill="none" id="t1 p508" stroke="#7A7A7A" stroke-width="1" x1="431.3421" x2="430.5226" y1="551.1625" y2="551.2474"/>
		<line fill="none" id="t1 p509" stroke="#7A7A7A" stroke-width="1" x1="430.5226" x2="429.1469" y1="551.2474" y2="550.8229"/>
		<line fill="none" id="t1 p510" stroke="#7A7A7A" stroke-width="1" x1="429.1469" x2="429.1761" y1="550.8229" y2="549.9740"/>
		<line fill="none" id="t1 p511" stroke="#7A7A7A" stroke-width="1" x1="429.1761" x2="425.0490" y1="549.9740" y2="545.6443"/>
		<line fill="none" id="t1 p512" stroke="#7A7A7A" stroke-width="1" x1="425.0490" x2="420.6877" y1="545.6443" y2="541.7390"/>
		<line fill="none" id="t1 p513" stroke="#7A7A7A" stroke-width="1" x1="420.6877" x2="417.8485" y1="541.7390" y2="537.8338"/>
		<line fill="none" id="t1 p514" stroke="#7A7A7A" stroke-width="1" x1="417.8485" x2="416.0338" y1="537.8338" y2="535.8811"/>
		<line fill="none" id="t1 p515" stroke="#7A7A7A" stroke-width="1" x1="416.0338" x2="410.3553" y1="535.8811" y2="531.8486"/>
		<line fill="none" id="t1 p516" stroke="#7A7A7A" stroke-width="1" x1="410.3553" x2="406.6380" y1="531.8486" y2="530.3629"/>
		<line fill="none" id="t1 p517" stroke="#7A7A7A" stroke-width="1" x1="406.6380" x2="402.5694" y1="530.3629" y2="529.6412"/>
		<line fill="none" id="t1 p518" stroke="#7A7A7A" stroke-width="1" x1="402.5694" x2="397.8569" y1="529.6412" y2="528.0707"/>
		<line fill="none" id="t1 p519" stroke="#7A7A7A" stroke-width="1" x1="397.8569" x2="393.3786" y1="528.0707" y2="525.0144"/>
		<line fill="none" id="t1 p520" stroke="#7A7A7A" stroke-width="1" x1="393.3786" x2="392.1492" y1="525.0144" y2="524.3352"/>
		<line fill="none" id="t1 p521" stroke="#7A7A7A" stroke-width="1" x1="392.1492" x2="388.0514" y1="524.3352" y2="523.2315"/>
		<line fill="none" id="t1 p522" stroke="#7A7A7A" stroke-width="1" x1="388.0514" x2="387.3782" y1="523.2315" y2="519.5810"/>
		<line fill="none" id="t1 p523" stroke="#7A7A7A" stroke-width="1" x1="387.3782" x2="385.6512" y1="519.5810" y2="516.9916"/>
		<line fill="none" id="t1 p524" stroke="#7A7A7A" stroke-width="1" x1="385.6512" x2="386.1488" y1="516.9916" y2="515.0815"/>
		<line fill="none" id="t1 p525" stroke="#7A7A7A" stroke-width="1" x1="386.1488" x2="386.3244" y1="515.0815" y2="513.0864"/>
		<line fill="none" id="t1 p526" stroke="#7A7A7A" stroke-width="1" x1="386.3244" x2="385.9439" y1="513.0864" y2="509.8179"/>
		<line fill="none" id="t1 p527" stroke="#7A7A7A" stroke-width="1" x1="385.9439" x2="383.4852" y1="509.8179" y2="504.8514"/>
		<line fill="none" id="t1 p528" stroke="#7A7A7A" stroke-width="1" x1="383.4852" x2="382.8413" y1="504.8514" y2="503.8327"/>
		<line fill="none" id="t1 p529" stroke="#7A7A7A" stroke-width="1" x1="382.8413" x2="380.6460" y1="503.8327" y2="499.9699"/>
		<line fill="none" id="t1 p530" stroke="#7A7A7A" stroke-width="1" x1="380.6460" x2="380.8509" y1="499.9699" y2="495.1732"/>
		<line fill="none" id="t1 p531" stroke="#7A7A7A" stroke-width="1" x1="380.8509" x2="382.8705" y1="495.1732" y2="494.9185"/>
		<line fill="none" id="t1 p532" stroke="#7A7A7A" stroke-width="1" x1="382.8705" x2="387.7587" y1="494.9185" y2="495.3430"/>
		<line fill="none" id="t1 p533" stroke="#7A7A7A" stroke-width="1" x1="387.7587" x2="392.4126" y1="495.3430" y2="497.0834"/>
		<line fill="none" id="t1 p534" stroke="#7A7A7A" stroke-width="1" x1="392.4126" x2="395.6031" y1="497.0834" y2="499.4180"/>
		<line fill="none" id="t1 p535" stroke="#7A7A7A" stroke-width="1" x1="395.6031" x2="398.5594" y1="499.4180" y2="500.6915"/>
		<line fill="none" id="t1 p536" stroke="#7A7A7A" stroke-width="1" x1="398.5594" x2="399.0863" y1="500.6915" y2="501.0735"/>
		<line fill="none" id="t1 p537" stroke="#7A7A7A" stroke-width="1" x1="399.0863" x2="402.4816" y1="501.0735" y2="501.2433"/>
		<line fill="none" id="t1 p538" stroke="#7A7A7A" stroke-width="1" x1="402.4816" x2="403.2719" y1="501.2433" y2="499.5029"/>
		<line fill="none" id="t1 p539" stroke="#7A7A7A" stroke-width="1" x1="403.2719" x2="401.9548" y1="499.5029" y2="495.7675"/>
		<line fill="none" id="t1 p540" stroke="#7A7A7A" stroke-width="1" x1="401.9548" x2="400.5498" y1="495.7675" y2="493.4328"/>
		<line fill="none" id="t1 p541" stroke="#7A7A7A" stroke-width="1" x1="400.5498" x2="397.6228" y1="493.4328" y2="495.0034"/>
		<line fill="none" id="t1 p542" stroke="#7A7A7A" stroke-width="1" x1="397.6228" x2="395.4568" y1="495.0034" y2="492.7961"/>
		<line fill="none" id="t1 p543" stroke="#7A7A7A" stroke-width="1" x1="395.4568" x2="393.9932" y1="492.7961" y2="489.4427"/>
		<line fill="none" id="t1 p544" stroke="#7A7A7A" stroke-width="1" x1="393.9932" x2="391.2711" y1="489.4427" y2="486.5138"/>
		<line fill="none" id="t1 p545" stroke="#7A7A7A" stroke-width="1" x1="391.2711" x2="388.5782" y1="486.5138" y2="483.8395"/>
		<line fill="none" id="t1 p546" stroke="#7A7A7A" stroke-width="1" x1="388.5782" x2="386.1195" y1="483.8395" y2="480.8257"/>
		<line fill="none" id="t1 p547" stroke="#7A7A7A" stroke-width="1" x1="386.1195" x2="380.2069" y1="480.8257" y2="477.8119"/>
		<line fill="none" id="t1 p548" stroke="#7A7A7A" stroke-width="1" x1="380.2069" x2="378.9776" y1="477.8119" y2="477.2600"/>
		<line fill="none" id="t1 p549" stroke="#7A7A7A" stroke-width="1" x1="378.9776" x2="373.6211" y1="477.2600" y2="476.2413"/>
		<line fill="none" id="t1 p550" stroke="#7A7A7A" stroke-width="1" x1="373.6211" x2="373.9724" y1="476.2413" y2="474.2462"/>
		<line fill="none" id="t1 p551" stroke="#7A7A7A" stroke-width="1" x1="373.9724" x2="377.3092" y1="474.2462" y2="473.4821"/>
		<line fill="none" id="t1 p552" stroke="#7A7A7A" stroke-width="1" x1="377.3092" x2="378.9483" y1="473.4821" y2="472.5907"/>
		<line fill="none" id="t1 p553" stroke="#7A7A7A" stroke-width="1" x1="378.9483" x2="378.2458" y1="472.5907" y2="469.4495"/>
		<line fill="none" id="t1 p554" stroke="#7A7A7A" stroke-width="1" x1="378.2458" x2="378.1580" y1="469.4495" y2="468.2610"/>
		<line fill="none" id="t1 p555" stroke="#7A7A7A" stroke-width="1" x1="378.1580" x2="377.9531" y1="468.2610" y2="461.5966"/>
		<line fill="none" id="t1 p556" stroke="#7A7A7A" stroke-width="1" x1="377.9531" x2="377.3092" y1="461.5966" y2="455.4416"/>
		<line fill="none" id="t1 p557" stroke="#7A7A7A" stroke-width="1" x1="377.3092" x2="379.1532" y1="455.4416" y2="450.3903"/>
		<line fill="none" id="t1 p558" stroke="#7A7A7A" stroke-width="1" x1="379.1532" x2="381.6412" y1="450.3903" y2="447.5887"/>
		<line fill="none" id="t1 p559" stroke="#7A7A7A" stroke-width="1" x1="381.6412" x2="382.9291" y1="447.5887" y2="448.1405"/>
		<line fill="none" id="t1 p560" stroke="#7A7A7A" stroke-width="1" x1="382.9291" x2="383.5730" y1="448.1405" y2="452.3429"/>
		<line fill="none" id="t1 p561" stroke="#7A7A7A" stroke-width="1" x1="383.5730" x2="383.8072" y1="452.3429" y2="454.8473"/>
		<line fill="none" id="t1 p562" stroke="#7A7A7A" stroke-width="1" x1="383.8072" x2="383.5145" y1="454.8473" y2="457.1395"/>
		<line fill="none" id="t1 p563" stroke="#7A7A7A" stroke-width="1" x1="383.5145" x2="384.2170" y1="457.1395" y2="457.9460"/>
		<line fill="none" id="t1 p564" stroke="#7A7A7A" stroke-width="1" x1="384.2170" x2="391.0662" y1="457.9460" y2="462.7427"/>
		<line fill="none" id="t1 p565" stroke="#7A7A7A" stroke-width="1" x1="391.0662" x2="395.4568" y1="462.7427" y2="466.4357"/>
		<line fill="none" id="t1 p566" stroke="#7A7A7A" stroke-width="1" x1="395.4568" x2="399.4375" y1="466.4357" y2="470.8928"/>
		<line fill="none" id="t1 p567" stroke="#7A7A7A" stroke-width="1" x1="399.4375" x2="402.8329" y1="470.8928" y2="476.4111"/>
		<line fill="none" id="t1 p568" stroke="#7A7A7A" stroke-width="1" x1="402.8329" x2="409.5650" y1="476.4111" y2="479.4673"/>
		<line fill="none" id="t1 p569" stroke="#7A7A7A" stroke-width="1" x1="409.5650" x2="412.5506" y1="479.4673" y2="483.1179"/>
		<line fill="none" id="t1 p570" stroke="#7A7A7A" stroke-width="1" x1="412.5506" x2="411.3798" y1="483.1179" y2="485.6648"/>
		<line fill="none" id="t1 p571" stroke="#7A7A7A" stroke-width="1" x1="411.3798" x2="409.9748" y1="485.6648" y2="487.5325"/>
		<line fill="none" id="t1 p572" stroke="#7A7A7A" stroke-width="1" x1="409.9748" x2="408.4235" y1="487.5325" y2="489.1031"/>
		<line fill="none" id="t1 p573" stroke="#7A7A7A" stroke-width="1" x1="408.4235" x2="409.5065" y1="489.1031" y2="492.5839"/>
		<line fill="none" id="t1 p574" stroke="#7A7A7A" stroke-width="1" x1="409.5065" x2="409.0089" y1="492.5839" y2="494.8336"/>
		<line fill="none" id="t1 p575" stroke="#7A7A7A" stroke-width="1" x1="409.0089" x2="410.3846" y1="494.8336" y2="499.0360"/>
		<line fill="none" id="t1 p576" stroke="#7A7A7A" stroke-width="1" x1="410.3846" x2="412.8433" y1="499.0360" y2="502.8988"/>
		<line fill="none" id="t1 p577" stroke="#7A7A7A" stroke-width="1" x1="412.8433" x2="413.3409" y1="502.8988" y2="503.4931"/>
		<line fill="none" id="t1 p578" stroke="#7A7A7A" stroke-width="1" x1="413.3409" x2="417.9363" y1="503.4931" y2="509.8603"/>
		<line fill="none" id="t1 p579" stroke="#7A7A7A" stroke-width="1" x1="417.9363" x2="420.1316" y1="509.8603" y2="511.8979"/>
		<line fill="none" id="t1 p580" stroke="#7A7A7A" stroke-width="1" x1="420.1316" x2="427.5663" y1="511.8979" y2="512.8317"/>
		<line fill="none" id="t1 p581" stroke="#7A7A7A" stroke-width="1" x1="427.5663" x2="430.7860" y1="512.8317" y2="512.5346"/>
		<line fill="none" id="t1 p582" stroke="#7A7A7A" stroke-width="1" x1="430.7860" x2="433.9472" y1="512.5346" y2="512.2799"/>
		<line fill="none" id="t1 p583" stroke="#7A7A7A" stroke-width="1" x1="433.9472" x2="437.6352" y1="512.2799" y2="513.7231"/>
		<line fill="none" id="t1 p584" stroke="#7A7A7A" stroke-width="1" x1="437.6352" x2="442.0843" y1="513.7231" y2="512.6195"/>
		<line fill="none" id="t1 p585" stroke="#7A7A7A" stroke-width="1" x1="442.0843" x2="442.9039" y1="512.6195" y2="511.6007"/>
		<line fill="none" id="t1 p586" stroke="#7A7A7A" stroke-width="1" x1="442.9039" x2="443.4015" y1="511.6007" y2="507.8653"/>
		<line fill="none" id="t1 p587" stroke="#7A7A7A" stroke-width="1" x1="443.4015" x2="443.1380" y1="507.8653" y2="506.9738"/>
		<line fill="none" id="t1 p588" stroke="#7A7A7A" stroke-width="1" x1="443.1380" x2="441.1769" y1="506.9738" y2="505.4882"/>
		<line fill="none" id="t1 p589" stroke="#7A7A7A" stroke-width="1" x1="441.1769" x2="439.2158" y1="505.4882" y2="505.4033"/>
		<line fill="none" id="t1 p590" stroke="#7A7A7A" stroke-width="1" x1="439.2158" x2="438.1328" y1="505.4033" y2="505.4033"/>
		<line fill="none" id="t1 p591" stroke="#7A7A7A" stroke-width="1" x1="438.1328" x2="436.4059" y1="505.4033" y2="505.2759"/>
		<line fill="none" id="t1 p592" stroke="#7A7A7A" stroke-width="1" x1="436.4059" x2="435.4107" y1="505.2759" y2="504.8514"/>
		<line fill="none" id="t1 p593" stroke="#7A7A7A" stroke-width="1" x1="435.4107" x2="432.1910" y1="504.8514" y2="501.2009"/>
		<line fill="none" id="t1 p594" stroke="#7A7A7A" stroke-width="1" x1="432.1910" x2="431.5763" y1="501.2009" y2="500.5642"/>
		<line fill="none" id="t1 p595" stroke="#7A7A7A" stroke-width="1" x1="431.5763" x2="431.9275" y1="500.5642" y2="498.6540"/>
		<line fill="none" id="t1 p596" stroke="#7A7A7A" stroke-width="1" x1="431.9275" x2="432.3373" y1="498.6540" y2="497.5079"/>
		<line fill="none" id="t1 p597" stroke="#7A7A7A" stroke-width="1" x1="432.3373" x2="429.7323" y1="497.5079" y2="493.7300"/>
		<line fill="none" id="t1 p598" stroke="#7A7A7A" stroke-width="1" x1="429.7323" x2="428.2102" y1="493.7300" y2="492.3716"/>
		<line fill="none" id="t1 p599" stroke="#7A7A7A" stroke-width="1" x1="428.2102" x2="427.6833" y1="492.3716" y2="491.8198"/>
		<line fill="none" id="t1 p600" stroke="#7A7A7A" stroke-width="1" x1="427.6833" x2="426.9808" y1="491.8198" y2="490.8010"/>
		<line fill="none" id="t1 p601" stroke="#7A7A7A" stroke-width="1" x1="426.9808" x2="425.4003" y1="490.8010" y2="488.9758"/>
		<line fill="none" id="t1 p602" stroke="#7A7A7A" stroke-width="1" x1="425.4003" x2="426.5125" y1="488.9758" y2="484.8158"/>
		<line fill="none" id="t1 p603" stroke="#7A7A7A" stroke-width="1" x1="426.5125" x2="427.8590" y1="484.8158" y2="484.3913"/>
		<line fill="none" id="t1 p604" stroke="#7A7A7A" stroke-width="1" x1="427.8590" x2="429.5566" y1="484.3913" y2="481.2926"/>
		<line fill="none" id="t1 p605" stroke="#7A7A7A" stroke-width="1" x1="429.5566" x2="427.9468" y1="481.2926" y2="478.5759"/>
		<line fill="none" id="t1 p606" stroke="#7A7A7A" stroke-width="1" x1="427.9468" x2="426.6003" y1="478.5759" y2="475.4348"/>
		<line fill="none" id="t1 p607" stroke="#7A7A7A" stroke-width="1" x1="426.6003" x2="429.0590" y1="475.4348" y2="471.2748"/>
		<line fill="none" id="t1 p608" stroke="#7A7A7A" stroke-width="1" x1="429.0590" x2="430.5518" y1="471.2748" y2="468.5581"/>
		<line fill="none" id="t1 p609" stroke="#7A7A7A" stroke-width="1" x1="430.5518" x2="430.4347" y1="468.5581" y2="467.6667"/>
		<line fill="none" id="t1 p610" stroke="#7A7A7A" stroke-width="1" x1="430.4347" x2="429.4981" y1="467.6667" y2="465.4170"/>
		<line fill="none" id="t1 p611" stroke="#7A7A7A" stroke-width="1" x1="429.4981" x2="429.1761" y1="465.4170" y2="464.6953"/>
		<line fill="none" id="t1 p612" stroke="#7A7A7A" stroke-width="1" x1="429.1761" x2="427.7711" y1="464.6953" y2="463.0823"/>
		<line fill="none" id="t1 p613" stroke="#7A7A7A" stroke-width="1" x1="427.7711" x2="426.3954" y1="463.0823" y2="462.4031"/>
		<line fill="none" id="t1 p614" stroke="#7A7A7A" stroke-width="1" x1="426.3954" x2="425.9271" y1="462.4031" y2="461.7239"/>
		<line fill="none" id="t1 p615" stroke="#7A7A7A" stroke-width="1" x1="425.9271" x2="423.9953" y1="461.7239" y2="460.4929"/>
		<line fill="none" id="t1 p616" stroke="#7A7A7A" stroke-width="1" x1="423.9953" x2="423.7904" y1="460.4929" y2="459.7289"/>
		<line fill="none" id="t1 p617" stroke="#7A7A7A" stroke-width="1" x1="423.7904" x2="423.0294" y1="459.7289" y2="459.5166"/>
		<line fill="none" id="t1 p618" stroke="#7A7A7A" stroke-width="1" x1="423.0294" x2="421.3902" y1="459.5166" y2="458.4554"/>
		<line fill="none" id="t1 p619" stroke="#7A7A7A" stroke-width="1" x1="421.3902" x2="420.7170" y1="458.4554" y2="456.7575"/>
		<line fill="none" id="t1 p620" stroke="#7A7A7A" stroke-width="1" x1="420.7170" x2="420.4243" y1="456.7575" y2="453.7861"/>
		<line fill="none" id="t1 p621" stroke="#7A7A7A" stroke-width="1" x1="420.4243" x2="418.9901" y1="453.7861" y2="452.0033"/>
		<line fill="none" id="t1 p622" stroke="#7A7A7A" stroke-width="1" x1="418.9901" x2="416.5899" y1="452.0033" y2="449.8384"/>
		<line fill="none" id="t1 p623" stroke="#7A7A7A" stroke-width="1" x1="416.5899" x2="411.4969" y1="449.8384" y2="448.1405"/>
		<line fill="none" id="t1 p624" stroke="#7A7A7A" stroke-width="1" x1="411.4969" x2="409.0674" y1="448.1405" y2="448.8621"/>
		<line fill="none" id="t1 p625" stroke="#7A7A7A" stroke-width="1" x1="409.0674" x2="408.0430" y1="448.8621" y2="451.7486"/>
		<line fill="none" id="t1 p626" stroke="#7A7A7A" stroke-width="1" x1="408.0430" x2="407.0771" y1="451.7486" y2="455.2718"/>
		<line fill="none" id="t1 p627" stroke="#7A7A7A" stroke-width="1" x1="407.0771" x2="406.3746" y1="455.2718" y2="457.1820"/>
		<line fill="none" id="t1 p628" stroke="#7A7A7A" stroke-width="1" x1="406.3746" x2="404.8818" y1="457.1820" y2="461.5542"/>
		<line fill="none" id="t1 p629" stroke="#7A7A7A" stroke-width="1" x1="404.8818" x2="404.4135" y1="461.5542" y2="462.2333"/>
		<line fill="none" id="t1 p630" stroke="#7A7A7A" stroke-width="1" x1="404.4135" x2="403.0378" y1="462.2333" y2="462.8701"/>
		<line fill="none" id="t1 p631" stroke="#7A7A7A" stroke-width="1" x1="403.0378" x2="398.3545" y1="462.8701" y2="461.4693"/>
		<line fill="none" id="t1 p632" stroke="#7A7A7A" stroke-width="1" x1="398.3545" x2="396.0422" y1="461.4693" y2="460.8750"/>
		<line fill="none" id="t1 p633" stroke="#7A7A7A" stroke-width="1" x1="396.0422" x2="391.7394" y1="460.8750" y2="459.2619"/>
		<line fill="none" id="t1 p634" stroke="#7A7A7A" stroke-width="1" x1="391.7394" x2="391.1540" y1="459.2619" y2="458.5828"/>
		<line fill="none" id="t1 p635" stroke="#7A7A7A" stroke-width="1" x1="391.1540" x2="390.0417" y1="458.5828" y2="457.4367"/>
		<line fill="none" id="t1 p636" stroke="#7A7A7A" stroke-width="1" x1="390.0417" x2="390.3052" y1="457.4367" y2="456.7575"/>
		<line fill="none" id="t1 p637" stroke="#7A7A7A" stroke-width="1" x1="390.3052" x2="392.6761" y1="456.7575" y2="456.2481"/>
		<line fill="none" id="t1 p638" stroke="#7A7A7A" stroke-width="1" x1="392.6761" x2="397.5935" y1="456.2481" y2="454.3804"/>
		<line fill="none" id="t1 p639" stroke="#7A7A7A" stroke-width="1" x1="397.5935" x2="400.8425" y1="454.3804" y2="452.9371"/>
		<line fill="none" id="t1 p640" stroke="#7A7A7A" stroke-width="1" x1="400.8425" x2="404.2086" y1="452.9371" y2="449.9233"/>
		<line fill="none" id="t1 p641" stroke="#7A7A7A" stroke-width="1" x1="404.2086" x2="406.2868" y1="449.9233" y2="446.2728"/>
		<line fill="none" id="t1 p642" stroke="#7A7A7A" stroke-width="1" x1="406.2868" x2="406.3160" y1="446.2728" y2="445.5087"/>
		<line fill="none" id="t1 p643" stroke="#7A7A7A" stroke-width="1" x1="406.3160" x2="409.2431" y1="445.5087" y2="442.9193"/>
		<line fill="none" id="t1 p644" stroke="#7A7A7A" stroke-width="1" x1="409.2431" x2="409.8870" y1="442.9193" y2="442.1128"/>
		<line fill="none" id="t1 p645" stroke="#7A7A7A" stroke-width="1" x1="409.8870" x2="412.7262" y1="442.1128" y2="438.3349"/>
		<line fill="none" id="t1 p646" stroke="#7A7A7A" stroke-width="1" x1="412.7262" x2="417.6729" y1="438.3349" y2="440.5847"/>
		<line fill="none" id="t1 p647" stroke="#7A7A7A" stroke-width="1" x1="417.6729" x2="421.0683" y1="440.5847" y2="445.1267"/>
		<line fill="none" id="t1 p648" stroke="#7A7A7A" stroke-width="1" x1="421.0683" x2="421.1853" y1="445.1267" y2="446.9095"/>
		<line fill="none" id="t1 p649" stroke="#7A7A7A" stroke-width="1" x1="421.1853" x2="421.5073" y1="446.9095" y2="451.7486"/>
		<line fill="none" id="t1 p650" stroke="#7A7A7A" stroke-width="1" x1="421.5073" x2="422.7659" y1="451.7486" y2="455.3143"/>
		<line fill="none" id="t1 p651" stroke="#7A7A7A" stroke-width="1" x1="422.7659" x2="423.4977" y1="455.3143" y2="454.8898"/>
		<line fill="none" id="t1 p652" stroke="#7A7A7A" stroke-width="1" x1="423.4977" x2="423.7318" y1="454.8898" y2="451.3241"/>
		<line fill="none" id="t1 p653" stroke="#7A7A7A" stroke-width="1" x1="423.7318" x2="424.9027" y1="451.3241" y2="448.9046"/>
		<line fill="none" id="t1 p654" stroke="#7A7A7A" stroke-width="1" x1="424.9027" x2="424.9612" y1="448.9046" y2="448.1405"/>
		<line fill="none" id="t1 p655" stroke="#7A7A7A" stroke-width="1" x1="424.9612" x2="425.1954" y1="448.1405" y2="446.2303"/>
		<line fill="none" id="t1 p656" stroke="#7A7A7A" stroke-width="1" x1="425.1954" x2="425.1368" y1="446.2303" y2="442.9193"/>
		<line fill="none" id="t1 p657" stroke="#7A7A7A" stroke-width="1" x1="425.1368" x2="423.9075" y1="442.9193" y2="439.8631"/>
		<line fill="none" id="t1 p658" stroke="#7A7A7A" stroke-width="1" x1="423.9075" x2="423.6733" y1="439.8631" y2="438.7170"/>
		<line fill="none" id="t1 p659" stroke="#7A7A7A" stroke-width="1" x1="423.6733" x2="424.9027" y1="438.7170" y2="434.3448"/>
		<line fill="none" id="t1 p660" stroke="#7A7A7A" stroke-width="1" x1="424.9027" x2="425.4588" y1="434.3448" y2="433.4958"/>
		<line fill="none" id="t1 p661" stroke="#7A7A7A" stroke-width="1" x1="425.4588" x2="426.2491" y1="433.4958" y2="432.2224"/>
		<line fill="none" id="t1 p662" stroke="#7A7A7A" stroke-width="1" x1="426.2491" x2="426.5125" y1="432.2224" y2="431.7130"/>
		<line fill="none" id="t1 p663" stroke="#7A7A7A" stroke-width="1" x1="426.5125" x2="429.3517" y1="431.7130" y2="429.3359"/>
		<line fill="none" id="t1 p664" stroke="#7A7A7A" stroke-width="1" x1="429.3517" x2="430.8153" y1="429.3359" y2="426.7041"/>
		<line fill="none" id="t1 p665" stroke="#7A7A7A" stroke-width="1" x1="430.8153" x2="432.0739" y1="426.7041" y2="425.6429"/>
		<line fill="none" id="t1 p666" stroke="#7A7A7A" stroke-width="1" x1="432.0739" x2="435.1473" y1="425.6429" y2="422.8413"/>
		<line fill="none" id="t1 p667" stroke="#7A7A7A" stroke-width="1" x1="435.1473" x2="436.2010" y1="422.8413" y2="421.3981"/>
		<line fill="none" id="t1 p668" stroke="#7A7A7A" stroke-width="1" x1="436.2010" x2="441.9380" y1="421.3981" y2="421.1858"/>
		<line fill="none" id="t1 p669" stroke="#7A7A7A" stroke-width="1" x1="441.9380" x2="449.0799" y1="421.1858" y2="422.0772"/>
		<line fill="none" id="t1 p670" stroke="#7A7A7A" stroke-width="1" x1="449.0799" x2="451.7142" y1="422.0772" y2="422.0348"/>
		<line fill="none" id="t1 p671" stroke="#7A7A7A" stroke-width="1" x1="451.7142" x2="453.2070" y1="422.0348" y2="422.2046"/>
		<line fill="none" id="t1 p672" stroke="#7A7A7A" stroke-width="1" x1="453.2070" x2="455.3438" y1="422.2046" y2="420.5915"/>
		<line fill="none" id="t1 p673" stroke="#7A7A7A" stroke-width="1" x1="455.3438" x2="455.4316" y1="420.5915" y2="420.3368"/>
		<line fill="none" id="t1 p674" stroke="#7A7A7A" stroke-width="1" x1="455.4316" x2="454.2900" y1="420.3368" y2="417.6626"/>
		<line fill="none" id="t1 p675" stroke="#7A7A7A" stroke-width="1" x1="454.2900" x2="453.8217" y1="417.6626" y2="413.3753"/>
		<line fill="none" id="t1 p676" stroke="#7A7A7A" stroke-width="1" x1="453.8217" x2="454.3486" y1="413.3753" y2="409.4701"/>
		<line fill="none" id="t1 p677" stroke="#7A7A7A" stroke-width="1" x1="454.3486" x2="455.6657" y1="409.4701" y2="405.6073"/>
		<line fill="none" id="t1 p678" stroke="#7A7A7A" stroke-width="1" x1="455.6657" x2="456.0755" y1="405.6073" y2="403.8669"/>
		<line fill="none" id="t1 p679" stroke="#7A7A7A" stroke-width="1" x1="456.0755" x2="456.1341" y1="403.8669" y2="402.9755"/>
		<line fill="none" id="t1 p680" stroke="#7A7A7A" stroke-width="1" x1="456.1341" x2="456.2511" y1="402.9755" y2="398.3911"/>
		<line fill="none" id="t1 p681" stroke="#7A7A7A" stroke-width="1" x1="456.2511" x2="455.1681" y1="398.3911" y2="396.7780"/>
		<line fill="none" id="t1 p682" stroke="#7A7A7A" stroke-width="1" x1="455.1681" x2="451.3337" y1="396.7780" y2="395.0377"/>
		<line fill="none" id="t1 p683" stroke="#7A7A7A" stroke-width="1" x1="451.3337" x2="448.3774" y1="395.0377" y2="392.4483"/>
		<line fill="none" id="t1 p684" stroke="#7A7A7A" stroke-width="1" x1="448.3774" x2="444.0454" y1="392.4483" y2="389.6043"/>
		<line fill="none" id="t1 p685" stroke="#7A7A7A" stroke-width="1" x1="444.0454" x2="438.9231" y1="389.6043" y2="389.5618"/>
		<line fill="none" id="t1 p686" stroke="#7A7A7A" stroke-width="1" x1="438.9231" x2="433.9764" y1="389.5618" y2="391.4720"/>
		<line fill="none" id="t1 p687" stroke="#7A7A7A" stroke-width="1" x1="433.9764" x2="432.1910" y1="391.4720" y2="391.9389"/>
		<line fill="none" id="t1 p688" stroke="#7A7A7A" stroke-width="1" x1="432.1910" x2="428.7078" y1="391.9389" y2="393.2124"/>
		<line fill="none" id="t1 p689" stroke="#7A7A7A" stroke-width="1" x1="428.7078" x2="426.1320" y1="393.2124" y2="395.9291"/>
		<line fill="none" id="t1 p690" stroke="#7A7A7A" stroke-width="1" x1="426.1320" x2="425.6051" y1="395.9291" y2="396.5233"/>
		<line fill="none" id="t1 p691" stroke="#7A7A7A" stroke-width="1" x1="425.6051" x2="422.4147" y1="396.5233" y2="398.1364"/>
		<line fill="none" id="t1 p692" stroke="#7A7A7A" stroke-width="1" x1="422.4147" x2="420.1316" y1="398.1364" y2="398.2637"/>
		<line fill="none" id="t1 p693" stroke="#7A7A7A" stroke-width="1" x1="420.1316" x2="416.7362" y1="398.2637" y2="400.5559"/>
		<line fill="none" id="t1 p694" stroke="#7A7A7A" stroke-width="1" x1="416.7362" x2="413.6043" y1="400.5559" y2="401.4898"/>
		<line fill="none" id="t1 p695" stroke="#7A7A7A" stroke-width="1" x1="413.6043" x2="410.5017" y1="401.4898" y2="403.4849"/>
		<line fill="none" id="t1 p696" stroke="#7A7A7A" stroke-width="1" x1="410.5017" x2="407.6332" y1="403.4849" y2="406.4138"/>
		<line fill="none" id="t1 p697" stroke="#7A7A7A" stroke-width="1" x1="407.6332" x2="405.2623" y1="406.4138" y2="410.6162"/>
		<line fill="none" id="t1 p698" stroke="#7A7A7A" stroke-width="1" x1="405.2623" x2="404.1500" y1="410.6162" y2="413.2904"/>
		<line fill="none" id="t1 p699" stroke="#7A7A7A" stroke-width="1" x1="404.1500" x2="403.0670" y1="413.2904" y2="414.6912"/>
		<line fill="none" id="t1 p700" stroke="#7A7A7A" stroke-width="1" x1="403.0670" x2="401.2815" y1="414.6912" y2="416.9410"/>
		<line fill="none" id="t1 p701" stroke="#7A7A7A" stroke-width="1" x1="401.2815" x2="399.7009" y1="416.9410" y2="417.9173"/>
		<line fill="none" id="t1 p702" stroke="#7A7A7A" stroke-width="1" x1="399.7009" x2="398.6179" y1="417.9173" y2="418.9785"/>
		<line fill="none" id="t1 p703" stroke="#7A7A7A" stroke-width="1" x1="398.6179" x2="395.7202" y1="418.9785" y2="420.3368"/>
		<line fill="none" id="t1 p704" stroke="#7A7A7A" stroke-width="1" x1="395.7202" x2="394.6372" y1="420.3368" y2="420.9311"/>
		<line fill="none" id="t1 p705" stroke="#7A7A7A" stroke-width="1" x1="394.6372" x2="392.6175" y1="420.9311" y2="423.3931"/>
		<line fill="none" id="t1 p706" stroke="#7A7A7A" stroke-width="1" x1="392.6175" x2="390.9784" y1="423.3931" y2="423.0960"/>
		<line fill="none" id="t1 p707" stroke="#7A7A7A" stroke-width="1" x1="390.9784" x2="390.8613" y1="423.0960" y2="422.9262"/>
		<line fill="none" id="t1 p708" stroke="#7A7A7A" stroke-width="1" x1="390.8613" x2="387.6416" y1="422.9262" y2="419.7426"/>
		<line fill="none" id="t1 p709" stroke="#7A7A7A" stroke-width="1" x1="387.6416" x2="384.6560" y1="419.7426" y2="417.1957"/>
		<line fill="none" id="t1 p710" stroke="#7A7A7A" stroke-width="1" x1="384.6560" x2="384.1877" y1="417.1957" y2="416.8561"/>
		<line fill="none" id="t1 p711" stroke="#7A7A7A" stroke-width="1" x1="384.1877" x2="382.0510" y1="416.8561" y2="415.6251"/>
		<line fill="none" id="t1 p712" stroke="#7A7A7A" stroke-width="1" x1="382.0510" x2="379.1239" y1="415.6251" y2="414.1394"/>
		<line fill="none" id="t1 p713" stroke="#7A7A7A" stroke-width="1" x1="379.1239" x2="375.8749" y1="414.1394" y2="412.1019"/>
		<line fill="none" id="t1 p714" stroke="#7A7A7A" stroke-width="1" x1="375.8749" x2="369.0257" y1="412.1019" y2="411.6774"/>
		<line fill="none" id="t1 p715" stroke="#7A7A7A" stroke-width="1" x1="369.0257" x2="367.0646" y1="411.6774" y2="409.2154"/>
		<line fill="none" id="t1 p716" stroke="#7A7A7A" stroke-width="1" x1="367.0646" x2="368.4695" y1="409.2154" y2="404.9706"/>
		<line fill="none" id="t1 p717" stroke="#7A7A7A" stroke-width="1" x1="368.4695" x2="367.3280" y1="404.9706" y2="401.2776"/>
		<line fill="none" id="t1 p718" stroke="#7A7A7A" stroke-width="1" x1="367.3280" x2="370.7234" y1="401.2776" y2="394.6132"/>
		<line fill="none" id="t1 p719" stroke="#7A7A7A" stroke-width="1" x1="370.7234" x2="368.4403" y1="394.6132" y2="391.4295"/>
		<line fill="none" id="t1 p720" stroke="#7A7A7A" stroke-width="1" x1="368.4403" x2="366.1572" y1="391.4295" y2="387.6092"/>
		<line fill="none" id="t1 p721" stroke="#7A7A7A" stroke-width="1" x1="366.1572" x2="365.4547" y1="387.6092" y2="385.1896"/>
		<line fill="none" id="t1 p722" stroke="#7A7A7A" stroke-width="1" x1="365.4547" x2="362.4106" y1="385.1896" y2="381.3693"/>
		<line fill="none" id="t1 p723" stroke="#7A7A7A" stroke-width="1" x1="362.4106" x2="363.8741" y1="381.3693" y2="376.4028"/>
		<line fill="none" id="t1 p724" stroke="#7A7A7A" stroke-width="1" x1="363.8741" x2="366.5377" y1="376.4028" y2="373.9408"/>
		<line fill="none" id="t1 p725" stroke="#7A7A7A" stroke-width="1" x1="366.5377" x2="370.5770" y1="373.9408" y2="374.8323"/>
		<line fill="none" id="t1 p726" stroke="#7A7A7A" stroke-width="1" x1="370.5770" x2="375.9335" y1="374.8323" y2="376.2755"/>
		<line fill="none" id="t1 p727" stroke="#7A7A7A" stroke-width="1" x1="375.9335" x2="376.5774" y1="376.2755" y2="376.9547"/>
		<line fill="none" id="t1 p728" stroke="#7A7A7A" stroke-width="1" x1="376.5774" x2="376.1091" y1="376.9547" y2="379.6289"/>
		<line fill="none" id="t1 p729" stroke="#7A7A7A" stroke-width="1" x1="376.1091" x2="375.6115" y1="379.6289" y2="381.7938"/>
		<line fill="none" id="t1 p730" stroke="#7A7A7A" stroke-width="1" x1="375.6115" x2="375.9335" y1="381.7938" y2="382.8550"/>
		<line fill="none" id="t1 p731" stroke="#7A7A7A" stroke-width="1" x1="375.9335" x2="379.3288" y1="382.8550" y2="383.4493"/>
		<line fill="none" id="t1 p732" stroke="#7A7A7A" stroke-width="1" x1="379.3288" x2="380.7338" y1="383.4493" y2="383.2370"/>
		<line fill="none" id="t1 p733" stroke="#7A7A7A" stroke-width="1" x1="380.7338" x2="383.3096" y1="383.2370" y2="380.0959"/>
		<line fill="none" id="t1 p734" stroke="#7A7A7A" stroke-width="1" x1="383.3096" x2="385.8268" y1="380.0959" y2="376.5302"/>
		<line fill="none" id="t1 p735" stroke="#7A7A7A" stroke-width="1" x1="385.8268" x2="388.8124" y1="376.5302" y2="376.7849"/>
		<line fill="none" id="t1 p736" stroke="#7A7A7A" stroke-width="1" x1="388.8124" x2="392.8810" y1="376.7849" y2="378.6951"/>
		<line fill="none" id="t1 p737" stroke="#7A7A7A" stroke-width="1" x1="392.8810" x2="396.9203" y1="378.6951" y2="377.5065"/>
		<line fill="none" id="t1 p738" stroke="#7A7A7A" stroke-width="1" x1="396.9203" x2="397.4471" y1="377.5065" y2="375.4690"/>
		<line fill="none" id="t1 p739" stroke="#7A7A7A" stroke-width="1" x1="397.4471" x2="396.5398" y1="375.4690" y2="373.0070"/>
		<line fill="none" id="t1 p740" stroke="#7A7A7A" stroke-width="1" x1="396.5398" x2="397.1837" y1="373.0070" y2="369.3989"/>
		<line fill="none" id="t1 p741" stroke="#7A7A7A" stroke-width="1" x1="397.1837" x2="397.5057" y1="369.3989" y2="365.4087"/>
		<line fill="none" id="t1 p742" stroke="#7A7A7A" stroke-width="1" x1="397.5057" x2="395.8665" y1="365.4087" y2="363.7533"/>
		<line fill="none" id="t1 p743" stroke="#7A7A7A" stroke-width="1" x1="395.8665" x2="393.1444" y1="363.7533" y2="361.8006"/>
		<line fill="none" id="t1 p744" stroke="#7A7A7A" stroke-width="1" x1="393.1444" x2="392.7932" y1="361.8006" y2="359.1264"/>
		<line fill="none" id="t1 p745" stroke="#7A7A7A" stroke-width="1" x1="392.7932" x2="392.3248" y1="359.1264" y2="357.3011"/>
		<line fill="none" id="t1 p746" stroke="#7A7A7A" stroke-width="1" x1="392.3248" x2="389.4271" y1="357.3011" y2="352.9714"/>
		<line fill="none" id="t1 p747" stroke="#7A7A7A" stroke-width="1" x1="389.4271" x2="388.1977" y1="352.9714" y2="350.9339"/>
		<line fill="none" id="t1 p748" stroke="#7A7A7A" stroke-width="1" x1="388.1977" x2="388.1685" y1="350.9339" y2="347.3258"/>
		<line fill="none" id="t1 p749" stroke="#7A7A7A" stroke-width="1" x1="388.1685" x2="386.1781" y1="347.3258" y2="346.6466"/>
		<line fill="none" id="t1 p750" stroke="#7A7A7A" stroke-width="1" x1="386.1781" x2="385.0365" y1="346.6466" y2="346.1797"/>
		<line fill="none" id="t1 p751" stroke="#7A7A7A" stroke-width="1" x1="385.0365" x2="382.2851" y1="346.1797" y2="345.9674"/>
		<line fill="none" id="t1 p752" stroke="#7A7A7A" stroke-width="1" x1="382.2851" x2="381.4070" y1="345.9674" y2="345.7976"/>
		<line fill="none" id="t1 p753" stroke="#7A7A7A" stroke-width="1" x1="381.4070" x2="378.8020" y1="345.7976" y2="345.4580"/>
		<line fill="none" id="t1 p754" stroke="#7A7A7A" stroke-width="1" x1="378.8020" x2="376.5189" y1="345.4580" y2="344.6091"/>
		<line fill="none" id="t1 p755" stroke="#7A7A7A" stroke-width="1" x1="376.5189" x2="375.4066" y1="344.6091" y2="344.5242"/>
		<line fill="none" id="t1 p756" stroke="#7A7A7A" stroke-width="1" x1="375.4066" x2="371.5429" y1="344.5242" y2="343.1234"/>
		<line fill="none" id="t1 p757" stroke="#7A7A7A" stroke-width="1" x1="371.5429" x2="367.5622" y1="343.1234" y2="343.3781"/>
		<line fill="none" id="t1 p758" stroke="#7A7A7A" stroke-width="1" x1="367.5622" x2="366.5963" y1="343.3781" y2="343.5479"/>
		<line fill="none" id="t1 p759" stroke="#7A7A7A" stroke-width="1" x1="366.5963" x2="362.6448" y1="343.5479" y2="343.5479"/>
		<line fill="none" id="t1 p760" stroke="#7A7A7A" stroke-width="1" x1="362.6448" x2="361.5325" y1="343.5479" y2="344.1846"/>
		<line fill="none" id="t1 p761" stroke="#7A7A7A" stroke-width="1" x1="361.5325" x2="357.9322" y1="344.1846" y2="345.2458"/>
		<line fill="none" id="t1 p762" stroke="#7A7A7A" stroke-width="1" x1="357.9322" x2="356.8200" y1="345.2458" y2="345.4156"/>
		<line fill="none" id="t1 p763" stroke="#7A7A7A" stroke-width="1" x1="356.8200" x2="354.5662" y1="345.4156" y2="346.8588"/>
		<line fill="none" id="t1 p764" stroke="#7A7A7A" stroke-width="1" x1="354.5662" x2="353.9222" y1="346.8588" y2="347.1560"/>
		<line fill="none" id="t1 p765" stroke="#7A7A7A" stroke-width="1" x1="353.9222" x2="350.9952" y1="347.1560" y2="349.1510"/>
		<line fill="none" id="t1 p766" stroke="#7A7A7A" stroke-width="1" x1="350.9952" x2="350.7610" y1="349.1510" y2="349.8302"/>
		<line fill="none" id="t1 p767" stroke="#7A7A7A" stroke-width="1" x1="350.7610" x2="350.5854" y1="349.8302" y2="352.0800"/>
		<line fill="none" id="t1 p768" stroke="#7A7A7A" stroke-width="1" x1="350.5854" x2="350.3805" y1="352.0800" y2="353.6081"/>
		<line fill="none" id="t1 p769" stroke="#7A7A7A" stroke-width="1" x1="350.3805" x2="347.1022" y1="353.6081" y2="356.3672"/>
		<line fill="none" id="t1 p770" stroke="#7A7A7A" stroke-width="1" x1="347.1022" x2="345.4631" y1="356.3672" y2="358.3199"/>
		<line fill="none" id="t1 p771" stroke="#7A7A7A" stroke-width="1" x1="345.4631" x2="344.7606" y1="358.3199" y2="358.5321"/>
		<line fill="none" id="t1 p772" stroke="#7A7A7A" stroke-width="1" x1="344.7606" x2="342.6824" y1="358.5321" y2="357.4285"/>
		<line fill="none" id="t1 p773" stroke="#7A7A7A" stroke-width="1" x1="342.6824" x2="338.2626" y1="357.4285" y2="355.6032"/>
		<line fill="none" id="t1 p774" stroke="#7A7A7A" stroke-width="1" x1="338.2626" x2="335.0136" y1="355.6032" y2="354.8391"/>
		<line fill="none" id="t1 p775" stroke="#7A7A7A" stroke-width="1" x1="335.0136" x2="334.3404" y1="354.8391" y2="355.5607"/>
		<line fill="none" id="t1 p776" stroke="#7A7A7A" stroke-width="1" x1="334.3404" x2="333.1696" y1="355.5607" y2="356.9615"/>
		<line fill="none" id="t1 p777" stroke="#7A7A7A" stroke-width="1" x1="333.1696" x2="332.9940" y1="356.9615" y2="357.1738"/>
		<line fill="none" id="t1 p778" stroke="#7A7A7A" stroke-width="1" x1="332.9940" x2="333.0232" y1="357.1738" y2="358.7444"/>
		<line fill="none" id="t1 p779" stroke="#7A7A7A" stroke-width="1" x1="333.0232" x2="334.1648" y1="358.7444" y2="359.7631"/>
		<line fill="none" id="t1 p780" stroke="#7A7A7A" stroke-width="1" x1="334.1648" x2="335.2770" y1="359.7631" y2="361.2064"/>
		<line fill="none" id="t1 p781" stroke="#7A7A7A" stroke-width="1" x1="335.2770" x2="335.5697" y1="361.2064" y2="362.2676"/>
		<line fill="none" id="t1 p782" stroke="#7A7A7A" stroke-width="1" x1="335.5697" x2="335.6868" y1="362.2676" y2="362.7345"/>
		<line fill="none" id="t1 p783" stroke="#7A7A7A" stroke-width="1" x1="335.6868" x2="334.9551" y1="362.7345" y2="365.0267"/>
		<line fill="none" id="t1 p784" stroke="#7A7A7A" stroke-width="1" x1="334.9551" x2="334.6331" y1="365.0267" y2="365.1965"/>
		<line fill="none" id="t1 p785" stroke="#7A7A7A" stroke-width="1" x1="334.6331" x2="331.2085" y1="365.1965" y2="364.7296"/>
		<line fill="none" id="t1 p786" stroke="#7A7A7A" stroke-width="1" x1="331.2085" x2="327.7253" y1="364.7296" y2="364.9843"/>
		<line fill="none" id="t1 p787" stroke="#7A7A7A" stroke-width="1" x1="327.7253" x2="325.2959" y1="364.9843" y2="367.9981"/>
		<line fill="none" id="t1 p788" stroke="#7A7A7A" stroke-width="1" x1="325.2959" x2="325.5886" y1="367.9981" y2="370.4176"/>
		<line fill="none" id="t1 p789" stroke="#7A7A7A" stroke-width="1" x1="325.5886" x2="329.6572" y1="370.4176" y2="371.1393"/>
		<line fill="none" id="t1 p790" stroke="#7A7A7A" stroke-width="1" x1="329.6572" x2="330.4182" y1="371.1393" y2="371.0119"/>
		<line fill="none" id="t1 p791" stroke="#7A7A7A" stroke-width="1" x1="330.4182" x2="333.5208" y1="371.0119" y2="371.0544"/>
		<line fill="none" id="t1 p792" stroke="#7A7A7A" stroke-width="1" x1="333.5208" x2="334.4282" y1="371.0544" y2="370.5874"/>
		<line fill="none" id="t1 p793" stroke="#7A7A7A" stroke-width="1" x1="334.4282" x2="337.5601" y1="370.5874" y2="368.5499"/>
		<line fill="none" id="t1 p794" stroke="#7A7A7A" stroke-width="1" x1="337.5601" x2="340.8969" y1="368.5499" y2="369.5687"/>
		<line fill="none" id="t1 p795" stroke="#7A7A7A" stroke-width="1" x1="340.8969" x2="341.6287" y1="369.5687" y2="369.0593"/>
		<line fill="none" id="t1 p796" stroke="#7A7A7A" stroke-width="1" x1="341.6287" x2="346.2241" y1="369.0593" y2="365.9181"/>
		<line fill="none" id="t1 p797" stroke="#7A7A7A" stroke-width="1" x1="346.2241" x2="348.5072" y1="365.9181" y2="364.1353"/>
		<line fill="none" id="t1 p798" stroke="#7A7A7A" stroke-width="1" x1="348.5072" x2="350.3805" y1="364.1353" y2="364.5598"/>
		<line fill="none" id="t1 p799" stroke="#7A7A7A" stroke-width="1" x1="350.3805" x2="355.4735" y1="364.5598" y2="365.0267"/>
		<line fill="none" id="t1 p800" stroke="#7A7A7A" stroke-width="1" x1="355.4735" x2="357.5517" y1="365.0267" y2="366.7246"/>
		<line fill="none" id="t1 p801" stroke="#7A7A7A" stroke-width="1" x1="357.5517" x2="357.6395" y1="366.7246" y2="367.1067"/>
		<line fill="none" id="t1 p802" stroke="#7A7A7A" stroke-width="1" x1="357.6395" x2="356.3224" y1="367.1067" y2="369.7809"/>
		<line fill="none" id="t1 p803" stroke="#7A7A7A" stroke-width="1" x1="356.3224" x2="354.6832" y1="369.7809" y2="371.2666"/>
		<line fill="none" id="t1 p804" stroke="#7A7A7A" stroke-width="1" x1="354.6832" x2="354.3613" y1="371.2666" y2="373.5164"/>
		<line fill="none" id="t1 p805" stroke="#7A7A7A" stroke-width="1" x1="354.3613" x2="352.4880" y1="373.5164" y2="375.1294"/>
		<line fill="none" id="t1 p806" stroke="#7A7A7A" stroke-width="1" x1="352.4880" x2="350.7610" y1="375.1294" y2="378.3555"/>
		<line fill="none" id="t1 p807" stroke="#7A7A7A" stroke-width="1" x1="350.7610" x2="350.6147" y1="378.3555" y2="379.6289"/>
		<line fill="none" id="t1 p808" stroke="#7A7A7A" stroke-width="1" x1="350.6147" x2="348.4487" y1="379.6289" y2="382.8125"/>
		<line fill="none" id="t1 p809" stroke="#7A7A7A" stroke-width="1" x1="348.4487" x2="345.8729" y1="382.8125" y2="382.3456"/>
		<line fill="none" id="t1 p810" stroke="#7A7A7A" stroke-width="1" x1="345.8729" x2="344.5850" y1="382.3456" y2="382.3032"/>
		<line fill="none" id="t1 p811" stroke="#7A7A7A" stroke-width="1" x1="344.5850" x2="341.4238" y1="382.3032" y2="382.0909"/>
		<line fill="none" id="t1 p812" stroke="#7A7A7A" stroke-width="1" x1="341.4238" x2="340.6628" y1="382.0909" y2="380.6901"/>
		<line fill="none" id="t1 p813" stroke="#7A7A7A" stroke-width="1" x1="340.6628" x2="339.3163" y1="380.6901" y2="376.7000"/>
		<line fill="none" id="t1 p814" stroke="#7A7A7A" stroke-width="1" x1="339.3163" x2="337.8821" y1="376.7000" y2="376.0633"/>
		<line fill="none" id="t1 p815" stroke="#7A7A7A" stroke-width="1" x1="337.8821" x2="332.1159" y1="376.0633" y2="375.2567"/>
		<line fill="none" id="t1 p816" stroke="#7A7A7A" stroke-width="1" x1="332.1159" x2="327.2277" y1="375.2567" y2="375.3416"/>
		<line fill="none" id="t1 p817" stroke="#7A7A7A" stroke-width="1" x1="327.2277" x2="321.6956" y1="375.3416" y2="374.3653"/>
		<line fill="none" id="t1 p818" stroke="#7A7A7A" stroke-width="1" x1="321.6956" x2="316.1928" y1="374.3653" y2="372.3703"/>
		<line fill="none" id="t1 p819" stroke="#7A7A7A" stroke-width="1" x1="316.1928" x2="313.0316" y1="372.3703" y2="369.1442"/>
		<line fill="none" id="t1 p820" stroke="#7A7A7A" stroke-width="1" x1="313.0316" x2="312.5926" y1="369.1442" y2="364.6022"/>
		<line fill="none" id="t1 p821" stroke="#7A7A7A" stroke-width="1" x1="312.5926" x2="313.3536" y1="364.6022" y2="363.5410"/>
		<line fill="none" id="t1 p822" stroke="#7A7A7A" stroke-width="1" x1="313.3536" x2="318.5052" y1="363.5410" y2="362.9467"/>
		<line fill="none" id="t1 p823" stroke="#7A7A7A" stroke-width="1" x1="318.5052" x2="323.4811" y1="362.9467" y2="359.5933"/>
		<line fill="none" id="t1 p824" stroke="#7A7A7A" stroke-width="1" x1="323.4811" x2="325.2666" y1="359.5933" y2="356.9191"/>
		<line fill="none" id="t1 p825" stroke="#7A7A7A" stroke-width="1" x1="325.2666" x2="325.3544" y1="356.9191" y2="354.7542"/>
		<line fill="none" id="t1 p826" stroke="#7A7A7A" stroke-width="1" x1="325.3544" x2="325.7642" y1="354.7542" y2="351.9951"/>
		<line fill="none" id="t1 p827" stroke="#7A7A7A" stroke-width="1" x1="325.7642" x2="321.1102" y1="351.9951" y2="349.5331"/>
		<line fill="none" id="t1 p828" stroke="#7A7A7A" stroke-width="1" x1="321.1102" x2="319.4126" y1="349.5331" y2="349.8302"/>
		<line fill="none" id="t1 p829" stroke="#7A7A7A" stroke-width="1" x1="319.4126" x2="318.0661" y1="349.8302" y2="348.8963"/>
		<line fill="none" id="t1 p830" stroke="#7A7A7A" stroke-width="1" x1="318.0661" x2="317.1587" y1="348.8963" y2="347.4955"/>
		<line fill="none" id="t1 p831" stroke="#7A7A7A" stroke-width="1" x1="317.1587" x2="316.4270" y1="347.4955" y2="347.7502"/>
		<line fill="none" id="t1 p832" stroke="#7A7A7A" stroke-width="1" x1="316.4270" x2="316.5733" y1="347.7502" y2="348.3021"/>
		<line fill="none" id="t1 p833" stroke="#7A7A7A" stroke-width="1" x1="316.5733" x2="316.8953" y1="348.3021" y2="348.6417"/>
		<line fill="none" id="t1 p834" stroke="#7A7A7A" stroke-width="1" x1="316.8953" x2="316.7490" y1="348.6417" y2="351.1037"/>
		<line fill="none" id="t1 p835" stroke="#7A7A7A" stroke-width="1" x1="316.7490" x2="317.0709" y1="351.1037" y2="352.0800"/>
		<line fill="none" id="t1 p836" stroke="#7A7A7A" stroke-width="1" x1="317.0709" x2="316.3392" y1="352.0800" y2="352.5893"/>
		<line fill="none" id="t1 p837" stroke="#7A7A7A" stroke-width="1" x1="316.3392" x2="312.7682" y1="352.5893" y2="352.2922"/>
		<line fill="none" id="t1 p838" stroke="#7A7A7A" stroke-width="1" x1="312.7682" x2="311.0413" y1="352.2922" y2="352.2922"/>
		<line fill="none" id="t1 p839" stroke="#7A7A7A" stroke-width="1" x1="311.0413" x2="308.7289" y1="352.2922" y2="350.2547"/>
		<line fill="none" id="t1 p840" stroke="#7A7A7A" stroke-width="1" x1="308.7289" x2="306.6800" y1="350.2547" y2="349.0237"/>
		<line fill="none" id="t1 p841" stroke="#7A7A7A" stroke-width="1" x1="306.6800" x2="305.9775" y1="349.0237" y2="347.7078"/>
		<line fill="none" id="t1 p842" stroke="#7A7A7A" stroke-width="1" x1="305.9775" x2="303.3432" y1="347.7078" y2="346.2645"/>
		<line fill="none" id="t1 p843" stroke="#7A7A7A" stroke-width="1" x1="303.3432" x2="302.4358" y1="346.2645" y2="346.0099"/>
		<line fill="none" id="t1 p844" stroke="#7A7A7A" stroke-width="1" x1="302.4358" x2="301.1772" y1="346.0099" y2="344.3544"/>
		<line fill="none" id="t1 p845" stroke="#7A7A7A" stroke-width="1" x1="301.1772" x2="300.0356" y1="344.3544" y2="343.8025"/>
		<line fill="none" id="t1 p846" stroke="#7A7A7A" stroke-width="1" x1="300.0356" x2="297.8696" y1="343.8025" y2="342.8262"/>
		<line fill="none" id="t1 p847" stroke="#7A7A7A" stroke-width="1" x1="297.8696" x2="300.7967" y1="342.8262" y2="341.9773"/>
		<line fill="none" id="t1 p848" stroke="#7A7A7A" stroke-width="1" x1="300.7967" x2="301.6162" y1="341.9773" y2="341.9348"/>
		<line fill="none" id="t1 p849" stroke="#7A7A7A" stroke-width="1" x1="301.6162" x2="303.5481" y1="341.9348" y2="341.4254"/>
		<line fill="none" id="t1 p850" stroke="#7A7A7A" stroke-width="1" x1="303.5481" x2="309.2265" y1="341.4254" y2="342.1895"/>
		<line fill="none" id="t1 p851" stroke="#7A7A7A" stroke-width="1" x1="309.2265" x2="311.5974" y1="342.1895" y2="343.9299"/>
		<line fill="none" id="t1 p852" stroke="#7A7A7A" stroke-width="1" x1="311.5974" x2="311.7437" y1="343.9299" y2="340.3642"/>
		<line fill="none" id="t1 p853" stroke="#7A7A7A" stroke-width="1" x1="311.7437" x2="311.4510" y1="340.3642" y2="339.9398"/>
		<line fill="none" id="t1 p854" stroke="#7A7A7A" stroke-width="1" x1="311.4510" x2="309.8997" y1="339.9398" y2="339.3455"/>
		<line fill="none" id="t1 p855" stroke="#7A7A7A" stroke-width="1" x1="309.8997" x2="308.2313" y1="339.3455" y2="339.4728"/>
		<line fill="none" id="t1 p856" stroke="#7A7A7A" stroke-width="1" x1="308.2313" x2="305.6555" y1="339.4728" y2="338.5390"/>
		<line fill="none" id="t1 p857" stroke="#7A7A7A" stroke-width="1" x1="305.6555" x2="304.2798" y1="338.5390" y2="338.1145"/>
		<line fill="none" id="t1 p858" stroke="#7A7A7A" stroke-width="1" x1="304.2798" x2="302.9041" y1="338.1145" y2="337.9871"/>
		<line fill="none" id="t1 p859" stroke="#7A7A7A" stroke-width="1" x1="302.9041" x2="302.2016" y1="337.9871" y2="338.8361"/>
		<line fill="none" id="t1 p860" stroke="#7A7A7A" stroke-width="1" x1="302.2016" x2="300.8552" y1="338.8361" y2="337.8173"/>
		<line fill="none" id="t1 p861" stroke="#7A7A7A" stroke-width="1" x1="300.8552" x2="299.9771" y1="337.8173" y2="337.5626"/>
		<line fill="none" id="t1 p862" stroke="#7A7A7A" stroke-width="1" x1="299.9771" x2="298.3672" y1="337.5626" y2="337.2655"/>
		<line fill="none" id="t1 p863" stroke="#7A7A7A" stroke-width="1" x1="298.3672" x2="297.1964" y1="337.2655" y2="337.9022"/>
		<line fill="none" id="t1 p864" stroke="#7A7A7A" stroke-width="1" x1="297.1964" x2="296.6988" y1="337.9022" y2="338.4116"/>
		<line fill="none" id="t1 p865" stroke="#7A7A7A" stroke-width="1" x1="296.6988" x2="294.7670" y1="338.4116" y2="339.3455"/>
		<line fill="none" id="t1 p866" stroke="#7A7A7A" stroke-width="1" x1="294.7670" x2="293.3327" y1="339.3455" y2="340.7463"/>
		<line fill="none" id="t1 p867" stroke="#7A7A7A" stroke-width="1" x1="293.3327" x2="292.8351" y1="340.7463" y2="341.2981"/>
		<line fill="none" id="t1 p868" stroke="#7A7A7A" stroke-width="1" x1="292.8351" x2="288.2397" y1="341.2981" y2="340.5765"/>
		<line fill="none" id="t1 p869" stroke="#7A7A7A" stroke-width="1" x1="288.2397" x2="284.6687" y1="340.5765" y2="339.4304"/>
		<line fill="none" id="t1 p870" stroke="#7A7A7A" stroke-width="1" x1="284.6687" x2="282.7076" y1="339.4304" y2="335.5676"/>
		<line fill="none" id="t1 p871" stroke="#7A7A7A" stroke-width="1" x1="282.7076" x2="282.1222" y1="335.5676" y2="333.7847"/>
		<line fill="none" id="t1 p872" stroke="#7A7A7A" stroke-width="1" x1="282.1222" x2="281.8295" y1="333.7847" y2="332.9358"/>
		<line fill="none" id="t1 p873" stroke="#7A7A7A" stroke-width="1" x1="281.8295" x2="279.6342" y1="332.9358" y2="330.6011"/>
		<line fill="none" id="t1 p874" stroke="#7A7A7A" stroke-width="1" x1="279.6342" x2="276.2974" y1="330.6011" y2="323.5972"/>
		<line fill="none" id="t1 p875" stroke="#7A7A7A" stroke-width="1" x1="276.2974" x2="274.8339" y1="323.5972" y2="315.9565"/>
		<line fill="none" id="t1 p876" stroke="#7A7A7A" stroke-width="1" x1="274.8339" x2="273.3704" y1="315.9565" y2="312.6455"/>
		<line fill="none" id="t1 p877" stroke="#7A7A7A" stroke-width="1" x1="273.3704" x2="268.4237" y1="312.6455" y2="306.2782"/>
		<line fill="none" id="t1 p878" stroke="#7A7A7A" stroke-width="1" x1="268.4237" x2="259.2328" y1="306.2782" y2="301.9061"/>
		<line fill="none" id="t1 p879" stroke="#7A7A7A" stroke-width="1" x1="259.2328" x2="257.5937" y1="301.9061" y2="301.1844"/>
		<line fill="none" id="t1 p880" stroke="#7A7A7A" stroke-width="1" x1="257.5937" x2="254.6667" y1="301.1844" y2="299.6563"/>
		<line fill="none" id="t1 p881" stroke="#7A7A7A" stroke-width="1" x1="254.6667" x2="250.7152" y1="299.6563" y2="299.0196"/>
		<line fill="none" id="t1 p882" stroke="#7A7A7A" stroke-width="1" x1="250.7152" x2="250.2469" y1="299.0196" y2="298.2131"/>
		<line fill="none" id="t1 p883" stroke="#7A7A7A" stroke-width="1" x1="250.2469" x2="246.5588" y1="298.2131" y2="295.3690"/>
		<line fill="none" id="t1 p884" stroke="#7A7A7A" stroke-width="1" x1="246.5588" x2="242.9293" y1="295.3690" y2="291.1242"/>
		<line fill="none" id="t1 p885" stroke="#7A7A7A" stroke-width="1" x1="242.9293" x2="238.2753" y1="291.1242" y2="287.3887"/>
		<line fill="none" id="t1 p886" stroke="#7A7A7A" stroke-width="1" x1="238.2753" x2="236.4898" y1="287.3887" y2="286.4973"/>
		<line fill="none" id="t1 p887" stroke="#7A7A7A" stroke-width="1" x1="236.4898" x2="234.4409" y1="286.4973" y2="283.9929"/>
		<line fill="none" id="t1 p888" stroke="#7A7A7A" stroke-width="1" x1="234.4409" x2="234.2653" y1="283.9929" y2="282.9317"/>
		<line fill="none" id="t1 p889" stroke="#7A7A7A" stroke-width="1" x1="234.2653" x2="233.7677" y1="282.9317" y2="275.6306"/>
		<line fill="none" id="t1 p890" stroke="#7A7A7A" stroke-width="1" x1="233.7677" x2="233.0652" y1="275.6306" y2="271.8951"/>
		<line fill="none" id="t1 p891" stroke="#7A7A7A" stroke-width="1" x1="233.0652" x2="233.4457" y1="271.8951" y2="267.9474"/>
		<line fill="none" id="t1 p892" stroke="#7A7A7A" stroke-width="1" x1="233.4457" x2="233.4457" y1="267.9474" y2="266.9711"/>
		<line fill="none" id="t1 p893" stroke="#7A7A7A" stroke-width="1" x1="233.4457" x2="232.5676" y1="266.9711" y2="266.2070"/>
		<line fill="none" id="t1 p894" stroke="#7A7A7A" stroke-width="1" x1="232.5676" x2="231.4261" y1="266.2070" y2="266.6315"/>
		<line fill="none" id="t1 p895" stroke="#7A7A7A" stroke-width="1" x1="231.4261" x2="230.8114" y1="266.6315" y2="266.7164"/>
		<line fill="none" id="t1 p896" stroke="#7A7A7A" stroke-width="1" x1="230.8114" x2="228.1478" y1="266.7164" y2="267.5654"/>
		<line fill="none" id="t1 p897" stroke="#7A7A7A" stroke-width="1" x1="228.1478" x2="226.4794" y1="267.5654" y2="270.6217"/>
		<line fill="none" id="t1 p898" stroke="#7A7A7A" stroke-width="1" x1="226.4794" x2="224.6646" y1="270.6217" y2="271.4706"/>
		<line fill="none" id="t1 p899" stroke="#7A7A7A" stroke-width="1" x1="224.6646" x2="224.3427" y1="271.4706" y2="271.1310"/>
		<line fill="none" id="t1 p900" stroke="#7A7A7A" stroke-width="1" x1="224.3427" x2="222.7328" y1="271.1310" y2="267.6078"/>
		<line fill="none" id="t1 p901" stroke="#7A7A7A" stroke-width="1" x1="222.7328" x2="222.0889" y1="267.6078" y2="266.2919"/>
		<line fill="none" id="t1 p902" stroke="#7A7A7A" stroke-width="1" x1="222.0889" x2="219.5716" y1="266.2919" y2="267.1409"/>
		<line fill="none" id="t1 p903" stroke="#7A7A7A" stroke-width="1" x1="219.5716" x2="216.9666" y1="267.1409" y2="268.7964"/>
		<line fill="none" id="t1 p904" stroke="#7A7A7A" stroke-width="1" x1="216.9666" x2="215.8250" y1="268.7964" y2="266.9287"/>
		<line fill="none" id="t1 p905" stroke="#7A7A7A" stroke-width="1" x1="215.8250" x2="214.8298" y1="266.9287" y2="263.5328"/>
		<line fill="none" id="t1 p906" stroke="#7A7A7A" stroke-width="1" x1="214.8298" x2="213.7176" y1="263.5328" y2="261.8349"/>
		<line fill="none" id="t1 p907" stroke="#7A7A7A" stroke-width="1" x1="213.7176" x2="212.3711" y1="261.8349" y2="260.5614"/>
		<line fill="none" id="t1 p908" stroke="#7A7A7A" stroke-width="1" x1="212.3711" x2="210.7613" y1="260.5614" y2="259.1182"/>
		<line fill="none" id="t1 p909" stroke="#7A7A7A" stroke-width="1" x1="210.7613" x2="210.6442" y1="259.1182" y2="258.3965"/>
		<line fill="none" id="t1 p910" stroke="#7A7A7A" stroke-width="1" x1="210.6442" x2="210.6442" y1="258.3965" y2="258.2268"/>
		<line fill="none" id="t1 p911" stroke="#7A7A7A" stroke-width="1" x1="210.6442" x2="210.1173" y1="258.2268" y2="255.0856"/>
		<line fill="none" id="t1 p912" stroke="#7A7A7A" stroke-width="1" x1="210.1173" x2="210.2637" y1="255.0856" y2="254.7460"/>
		<line fill="none" id="t1 p913" stroke="#7A7A7A" stroke-width="1" x1="210.2637" x2="210.7905" y1="254.7460" y2="253.4301"/>
		<line fill="none" id="t1 p914" stroke="#7A7A7A" stroke-width="1" x1="210.7905" x2="210.4100" y1="253.4301" y2="250.9256"/>
		<line fill="none" id="t1 p915" stroke="#7A7A7A" stroke-width="1" x1="210.4100" x2="209.9710" y1="250.9256" y2="249.1004"/>
		<line fill="none" id="t1 p916" stroke="#7A7A7A" stroke-width="1" x1="209.9710" x2="210.0295" y1="249.1004" y2="248.5485"/>
		<line fill="none" id="t1 p917" stroke="#7A7A7A" stroke-width="1" x1="210.0295" x2="210.9369" y1="248.5485" y2="245.7470"/>
		<line fill="none" id="t1 p918" stroke="#7A7A7A" stroke-width="1" x1="210.9369" x2="212.5175" y1="245.7470" y2="245.2376"/>
		<line fill="none" id="t1 p919" stroke="#7A7A7A" stroke-width="1" x1="212.5175" x2="214.5664" y1="245.2376" y2="245.4498"/>
		<line fill="none" id="t1 p920" stroke="#7A7A7A" stroke-width="1" x1="214.5664" x2="217.7861" y1="245.4498" y2="243.4123"/>
		<line fill="none" id="t1 p921" stroke="#7A7A7A" stroke-width="1" x1="217.7861" x2="218.2544" y1="243.4123" y2="240.9927"/>
		<line fill="none" id="t1 p922" stroke="#7A7A7A" stroke-width="1" x1="218.2544" x2="217.5812" y1="240.9927" y2="238.4883"/>
		<line fill="none" id="t1 p923" stroke="#7A7A7A" stroke-width="1" x1="217.5812" x2="216.7324" y1="238.4883" y2="237.4695"/>
		<line fill="none" id="t1 p924" stroke="#7A7A7A" stroke-width="1" x1="216.7324" x2="216.1177" y1="237.4695" y2="237.0450"/>
		<line fill="none" id="t1 p925" stroke="#7A7A7A" stroke-width="1" x1="216.1177" x2="215.4445" y1="237.0450" y2="232.4182"/>
		<line fill="none" id="t1 p926" stroke="#7A7A7A" stroke-width="1" x1="215.4445" x2="213.3370" y1="232.4182" y2="228.4280"/>
		<line fill="none" id="t1 p927" stroke="#7A7A7A" stroke-width="1" x1="213.3370" x2="214.4200" y1="228.4280" y2="222.6551"/>
		<line fill="none" id="t1 p928" stroke="#7A7A7A" stroke-width="1" x1="214.4200" x2="213.4249" y1="222.6551" y2="220.7873"/>
		<line fill="none" id="t1 p929" stroke="#7A7A7A" stroke-width="1" x1="213.4249" x2="210.9661" y1="220.7873" y2="213.9956"/>
		<line fill="none" id="t1 p930" stroke="#7A7A7A" stroke-width="1" x1="210.9661" x2="209.1221" y1="213.9956" y2="208.7745"/>
		<line fill="none" id="t1 p931" stroke="#7A7A7A" stroke-width="1" x1="209.1221" x2="207.7464" y1="208.7745" y2="203.8505"/>
		<line fill="none" id="t1 p932" stroke="#7A7A7A" stroke-width="1" x1="207.7464" x2="207.5415" y1="203.8505" y2="200.4122"/>
		<line fill="none" id="t1 p933" stroke="#7A7A7A" stroke-width="1" x1="207.5415" x2="207.2196" y1="200.4122" y2="198.7991"/>
		<line fill="none" id="t1 p934" stroke="#7A7A7A" stroke-width="1" x1="207.2196" x2="206.3122" y1="198.7991" y2="198.1624"/>
		<line fill="none" id="t1 p935" stroke="#7A7A7A" stroke-width="1" x1="206.3122" x2="203.9120" y1="198.1624" y2="200.5820"/>
		<line fill="none" id="t1 p936" stroke="#7A7A7A" stroke-width="1" x1="203.9120" x2="202.9461" y1="200.5820" y2="202.5770"/>
		<line fill="none" id="t1 p937" stroke="#7A7A7A" stroke-width="1" x1="202.9461" x2="204.0584" y1="202.5770" y2="205.2088"/>
		<line fill="none" id="t1 p938" stroke="#7A7A7A" stroke-width="1" x1="204.0584" x2="204.0876" y1="205.2088" y2="207.2463"/>
		<line fill="none" id="t1 p939" stroke="#7A7A7A" stroke-width="1" x1="204.0876" x2="202.9461" y1="207.2463" y2="206.4823"/>
		<line fill="none" id="t1 p940" stroke="#7A7A7A" stroke-width="1" x1="202.9461" x2="200.9850" y1="206.4823" y2="203.5533"/>
		<line fill="none" id="t1 p941" stroke="#7A7A7A" stroke-width="1" x1="200.9850" x2="201.3362" y1="203.5533" y2="201.2611"/>
		<line fill="none" id="t1 p942" stroke="#7A7A7A" stroke-width="1" x1="201.3362" x2="200.7215" y1="201.2611" y2="197.8653"/>
		<line fill="none" id="t1 p943" stroke="#7A7A7A" stroke-width="1" x1="200.7215" x2="200.4288" y1="197.8653" y2="197.3983"/>
		<line fill="none" id="t1 p944" stroke="#7A7A7A" stroke-width="1" x1="200.4288" x2="200.4874" y1="197.3983" y2="196.4220"/>
		<line fill="none" id="t1 p945" stroke="#7A7A7A" stroke-width="1" x1="200.4874" x2="203.0632" y1="196.4220" y2="194.2147"/>
		<line fill="none" id="t1 p946" stroke="#7A7A7A" stroke-width="1" x1="203.0632" x2="207.1025" y1="194.2147" y2="194.0449"/>
		<line fill="none" id="t1 p947" stroke="#7A7A7A" stroke-width="1" x1="207.1025" x2="209.7368" y1="194.0449" y2="193.4931"/>
		<line fill="none" id="t1 p948" stroke="#7A7A7A" stroke-width="1" x1="209.7368" x2="213.8346" y1="193.4931" y2="194.3421"/>
		<line fill="none" id="t1 p949" stroke="#7A7A7A" stroke-width="1" x1="213.8346" x2="217.3178" y1="194.3421" y2="199.0963"/>
		<line fill="none" id="t1 p950" stroke="#7A7A7A" stroke-width="1" x1="217.3178" x2="216.4104" y1="199.0963" y2="201.0913"/>
		<line fill="none" id="t1 p951" stroke="#7A7A7A" stroke-width="1" x1="216.4104" x2="213.1614" y1="201.0913" y2="203.5533"/>
		<line fill="none" id="t1 p952" stroke="#7A7A7A" stroke-width="1" x1="213.1614" x2="214.8298" y1="203.5533" y2="206.4823"/>
		<line fill="none" id="t1 p953" stroke="#7A7A7A" stroke-width="1" x1="214.8298" x2="221.2693" y1="206.4823" y2="207.0765"/>
		<line fill="none" id="t1 p954" stroke="#7A7A7A" stroke-width="1" x1="221.2693" x2="227.6795" y1="207.0765" y2="206.4823"/>
		<line fill="none" id="t1 p955" stroke="#7A7A7A" stroke-width="1" x1="227.6795" x2="229.4650" y1="206.4823" y2="206.2700"/>
		<line fill="none" id="t1 p956" stroke="#7A7A7A" stroke-width="1" x1="229.4650" x2="233.7677" y1="206.2700" y2="205.6757"/>
		<line fill="none" id="t1 p957" stroke="#7A7A7A" stroke-width="1" x1="233.7677" x2="234.8214" y1="205.6757" y2="203.2137"/>
		<line fill="none" id="t1 p958" stroke="#7A7A7A" stroke-width="1" x1="234.8214" x2="232.2749" y1="203.2137" y2="200.9215"/>
		<line fill="none" id="t1 p959" stroke="#7A7A7A" stroke-width="1" x1="232.2749" x2="228.1185" y1="200.9215" y2="197.0163"/>
		<line fill="none" id="t1 p960" stroke="#7A7A7A" stroke-width="1" x1="228.1185" x2="225.0452" y1="197.0163" y2="194.3845"/>
		<line fill="none" id="t1 p961" stroke="#7A7A7A" stroke-width="1" x1="225.0452" x2="223.9329" y1="194.3845" y2="193.3233"/>
		<line fill="none" id="t1 p962" stroke="#7A7A7A" stroke-width="1" x1="223.9329" x2="221.6498" y1="193.3233" y2="191.7527"/>
		<line fill="none" id="t1 p963" stroke="#7A7A7A" stroke-width="1" x1="221.6498" x2="219.3082" y1="191.7527" y2="190.3095"/>
		<line fill="none" id="t1 p964" stroke="#7A7A7A" stroke-width="1" x1="219.3082" x2="217.4056" y1="190.3095" y2="189.4180"/>
		<line fill="none" id="t1 p965" stroke="#7A7A7A" stroke-width="1" x1="217.4056" x2="217.0836" y1="189.4180" y2="189.4180"/>
		<line fill="none" id="t1 p966" stroke="#7A7A7A" stroke-width="1" x1="217.0836" x2="212.6053" y1="189.4180" y2="189.1209"/>
		<line fill="none" id="t1 p967" stroke="#7A7A7A" stroke-width="1" x1="212.6053" x2="207.9220" y1="189.1209" y2="190.6066"/>
		<line fill="none" id="t1 p968" stroke="#7A7A7A" stroke-width="1" x1="207.9220" x2="203.7364" y1="190.6066" y2="191.1160"/>
		<line fill="none" id="t1 p969" stroke="#7A7A7A" stroke-width="1" x1="203.7364" x2="198.5555" y1="191.1160" y2="192.6017"/>
		<line fill="none" id="t1 p970" stroke="#7A7A7A" stroke-width="1" x1="198.5555" x2="192.1454" y1="192.6017" y2="195.9975"/>
		<line fill="none" id="t1 p971" stroke="#7A7A7A" stroke-width="1" x1="192.1454" x2="187.1694" y1="195.9975" y2="197.8228"/>
		<line fill="none" id="t1 p972" stroke="#7A7A7A" stroke-width="1" x1="187.1694" x2="185.8815" y1="197.8228" y2="201.5158"/>
		<line fill="none" id="t1 p973" stroke="#7A7A7A" stroke-width="1" x1="185.8815" x2="185.2961" y1="201.5158" y2="205.5484"/>
		<line fill="none" id="t1 p974" stroke="#7A7A7A" stroke-width="1" x1="185.2961" x2="185.5010" y1="205.5484" y2="209.0716"/>
		<line fill="none" id="t1 p975" stroke="#7A7A7A" stroke-width="1" x1="185.5010" x2="187.1109" y1="209.0716" y2="210.0479"/>
		<line fill="none" id="t1 p976" stroke="#7A7A7A" stroke-width="1" x1="187.1109" x2="190.5648" y1="210.0479" y2="210.4724"/>
		<line fill="none" id="t1 p977" stroke="#7A7A7A" stroke-width="1" x1="190.5648" x2="192.4673" y1="210.4724" y2="210.6847"/>
		<line fill="none" id="t1 p978" stroke="#7A7A7A" stroke-width="1" x1="192.4673" x2="194.9260" y1="210.6847" y2="208.8169"/>
		<line fill="none" id="t1 p979" stroke="#7A7A7A" stroke-width="1" x1="194.9260" x2="197.5311" y1="208.8169" y2="208.5622"/>
		<line fill="none" id="t1 p980" stroke="#7A7A7A" stroke-width="1" x1="197.5311" x2="196.7993" y1="208.5622" y2="210.3451"/>
		<line fill="none" id="t1 p981" stroke="#7A7A7A" stroke-width="1" x1="196.7993" x2="196.8286" y1="210.3451" y2="210.8120"/>
		<line fill="none" id="t1 p982" stroke="#7A7A7A" stroke-width="1" x1="196.8286" x2="200.2825" y1="210.8120" y2="217.2217"/>
		<line fill="none" id="t1 p983" stroke="#7A7A7A" stroke-width="1" x1="200.2825" x2="203.8535" y1="217.2217" y2="220.4902"/>
		<line fill="none" id="t1 p984" stroke="#7A7A7A" stroke-width="1" x1="203.8535" x2="205.0828" y1="220.4902" y2="225.8387"/>
		<line fill="none" id="t1 p985" stroke="#7A7A7A" stroke-width="1" x1="205.0828" x2="206.1951" y1="225.8387" y2="228.1734"/>
		<line fill="none" id="t1 p986" stroke="#7A7A7A" stroke-width="1" x1="206.1951" x2="209.7075" y1="228.1734" y2="231.6966"/>
		<line fill="none" id="t1 p987" stroke="#7A7A7A" stroke-width="1" x1="209.7075" x2="210.9661" y1="231.6966" y2="235.2198"/>
		<line fill="none" id="t1 p988" stroke="#7A7A7A" stroke-width="1" x1="210.9661" x2="209.9710" y1="235.2198" y2="240.8229"/>
		<line fill="none" id="t1 p989" stroke="#7A7A7A" stroke-width="1" x1="209.9710" x2="206.3414" y1="240.8229" y2="243.9641"/>
		<line fill="none" id="t1 p990" stroke="#7A7A7A" stroke-width="1" x1="206.3414" x2="207.0732" y1="243.9641" y2="247.4449"/>
		<line fill="none" id="t1 p991" stroke="#7A7A7A" stroke-width="1" x1="207.0732" x2="205.6975" y1="247.4449" y2="250.9256"/>
		<line fill="none" id="t1 p992" stroke="#7A7A7A" stroke-width="1" x1="205.6975" x2="202.6534" y1="250.9256" y2="252.9632"/>
		<line fill="none" id="t1 p993" stroke="#7A7A7A" stroke-width="1" x1="202.6534" x2="198.1165" y1="252.9632" y2="258.4390"/>
		<line fill="none" id="t1 p994" stroke="#7A7A7A" stroke-width="1" x1="198.1165" x2="200.0483" y1="258.4390" y2="263.5328"/>
		<line fill="none" id="t1 p995" stroke="#7A7A7A" stroke-width="1" x1="200.0483" x2="199.3166" y1="263.5328" y2="267.8201"/>
		<line fill="none" id="t1 p996" stroke="#7A7A7A" stroke-width="1" x1="199.3166" x2="198.2336" y1="267.8201" y2="268.4568"/>
		<line fill="none" id="t1 p997" stroke="#7A7A7A" stroke-width="1" x1="198.2336" x2="191.0038" y1="268.4568" y2="268.5841"/>
		<line fill="none" id="t1 p998" stroke="#7A7A7A" stroke-width="1" x1="191.0038" x2="191.1209" y1="268.5841" y2="266.0797"/>
		<line fill="none" id="t1 p999" stroke="#7A7A7A" stroke-width="1" x1="191.1209" x2="192.3210" y1="266.0797" y2="261.4953"/>
		<line fill="none" id="t1 p1000" stroke="#7A7A7A" stroke-width="1" x1="192.3210" x2="190.3599" y1="261.4953" y2="257.9296"/>
		<line fill="none" id="t1 p1001" stroke="#7A7A7A" stroke-width="1" x1="190.3599" x2="188.6329" y1="257.9296" y2="255.3403"/>
		<line fill="none" id="t1 p1002" stroke="#7A7A7A" stroke-width="1" x1="188.6329" x2="188.8964" y1="255.3403" y2="254.0668"/>
		<line fill="none" id="t1 p1003" stroke="#7A7A7A" stroke-width="1" x1="188.8964" x2="190.7111" y1="254.0668" y2="252.6236"/>
		<line fill="none" id="t1 p1004" stroke="#7A7A7A" stroke-width="1" x1="190.7111" x2="191.6185" y1="252.6236" y2="252.4962"/>
		<line fill="none" id="t1 p1005" stroke="#7A7A7A" stroke-width="1" x1="191.6185" x2="192.7600" y1="252.4962" y2="252.9632"/>
		<line fill="none" id="t1 p1006" stroke="#7A7A7A" stroke-width="1" x1="192.7600" x2="196.4481" y1="252.9632" y2="249.6946"/>
		<line fill="none" id="t1 p1007" stroke="#7A7A7A" stroke-width="1" x1="196.4481" x2="196.8579" y1="249.6946" y2="246.5110"/>
		<line fill="none" id="t1 p1008" stroke="#7A7A7A" stroke-width="1" x1="196.8579" x2="196.2432" y1="246.5110" y2="239.1675"/>
		<line fill="none" id="t1 p1009" stroke="#7A7A7A" stroke-width="1" x1="196.2432" x2="194.8675" y1="239.1675" y2="234.4133"/>
		<line fill="none" id="t1 p1010" stroke="#7A7A7A" stroke-width="1" x1="194.8675" x2="194.4284" y1="234.4133" y2="230.2109"/>
		<line fill="none" id="t1 p1011" stroke="#7A7A7A" stroke-width="1" x1="194.4284" x2="193.0235" y1="230.2109" y2="228.0036"/>
		<line fill="none" id="t1 p1012" stroke="#7A7A7A" stroke-width="1" x1="193.0235" x2="190.3306" y1="228.0036" y2="224.3955"/>
		<line fill="none" id="t1 p1013" stroke="#7A7A7A" stroke-width="1" x1="190.3306" x2="189.2183" y1="224.3955" y2="221.9759"/>
		<line fill="none" id="t1 p1014" stroke="#7A7A7A" stroke-width="1" x1="189.2183" x2="189.1012" y1="221.9759" y2="221.5939"/>
		<line fill="none" id="t1 p1015" stroke="#7A7A7A" stroke-width="1" x1="189.1012" x2="188.4280" y1="221.5939" y2="221.1694"/>
		<line fill="none" id="t1 p1016" stroke="#7A7A7A" stroke-width="1" x1="188.4280" x2="187.9304" y1="221.1694" y2="221.4665"/>
		<line fill="none" id="t1 p1017" stroke="#7A7A7A" stroke-width="1" x1="187.9304" x2="187.6963" y1="221.4665" y2="223.0796"/>
		<line fill="none" id="t1 p1018" stroke="#7A7A7A" stroke-width="1" x1="187.6963" x2="188.6329" y1="223.0796" y2="227.4093"/>
		<line fill="none" id="t1 p1019" stroke="#7A7A7A" stroke-width="1" x1="188.6329" x2="187.9890" y1="227.4093" y2="233.6067"/>
		<line fill="none" id="t1 p1020" stroke="#7A7A7A" stroke-width="1" x1="187.9890" x2="186.8474" y1="233.6067" y2="235.4745"/>
		<line fill="none" id="t1 p1021" stroke="#7A7A7A" stroke-width="1" x1="186.8474" x2="187.5499" y1="235.4745" y2="241.8417"/>
		<line fill="none" id="t1 p1022" stroke="#7A7A7A" stroke-width="1" x1="187.5499" x2="188.9256" y1="241.8417" y2="243.9217"/>
		<line fill="none" id="t1 p1023" stroke="#7A7A7A" stroke-width="1" x1="188.9256" x2="188.2524" y1="243.9217" y2="247.0204"/>
		<line fill="none" id="t1 p1024" stroke="#7A7A7A" stroke-width="1" x1="188.2524" x2="185.1498" y1="247.0204" y2="248.3363"/>
		<line fill="none" id="t1 p1025" stroke="#7A7A7A" stroke-width="1" x1="185.1498" x2="180.4665" y1="248.3363" y2="251.8171"/>
		<line fill="none" id="t1 p1026" stroke="#7A7A7A" stroke-width="1" x1="180.4665" x2="179.2664" y1="251.8171" y2="253.6423"/>
		<line fill="none" id="t1 p1027" stroke="#7A7A7A" stroke-width="1" x1="179.2664" x2="179.1201" y1="253.6423" y2="254.1517"/>
		<line fill="none" id="t1 p1028" stroke="#7A7A7A" stroke-width="1" x1="179.1201" x2="178.7396" y1="254.1517" y2="256.9533"/>
		<line fill="none" id="t1 p1029" stroke="#7A7A7A" stroke-width="1" x1="178.7396" x2="178.3590" y1="256.9533" y2="261.9198"/>
		<line fill="none" id="t1 p1030" stroke="#7A7A7A" stroke-width="1" x1="178.3590" x2="177.8907" y1="261.9198" y2="269.6029"/>
		<line fill="none" id="t1 p1031" stroke="#7A7A7A" stroke-width="1" x1="177.8907" x2="177.7151" y1="269.6029" y2="271.7678"/>
		<line fill="none" id="t1 p1032" stroke="#7A7A7A" stroke-width="1" x1="177.7151" x2="178.8566" y1="271.7678" y2="275.9701"/>
		<line fill="none" id="t1 p1033" stroke="#7A7A7A" stroke-width="1" x1="178.8566" x2="181.8715" y1="275.9701" y2="282.8043"/>
		<line fill="none" id="t1 p1034" stroke="#7A7A7A" stroke-width="1" x1="181.8715" x2="184.6229" y1="282.8043" y2="288.7046"/>
		<line fill="none" id="t1 p1035" stroke="#7A7A7A" stroke-width="1" x1="184.6229" x2="187.1401" y1="288.7046" y2="294.0531"/>
		<line fill="none" id="t1 p1036" stroke="#7A7A7A" stroke-width="1" x1="187.1401" x2="188.6622" y1="294.0531" y2="297.0670"/>
		<line fill="none" id="t1 p1037" stroke="#7A7A7A" stroke-width="1" x1="188.6622" x2="190.0672" y1="297.0670" y2="300.5477"/>
		<line fill="none" id="t1 p1038" stroke="#7A7A7A" stroke-width="1" x1="190.0672" x2="192.1454" y1="300.5477" y2="305.3868"/>
		<line fill="none" id="t1 p1039" stroke="#7A7A7A" stroke-width="1" x1="192.1454" x2="193.8430" y1="305.3868" y2="309.4194"/>
		<line fill="none" id="t1 p1040" stroke="#7A7A7A" stroke-width="1" x1="193.8430" x2="195.4822" y1="309.4194" y2="313.2398"/>
		<line fill="none" id="t1 p1041" stroke="#7A7A7A" stroke-width="1" x1="195.4822" x2="196.5652" y1="313.2398" y2="315.4895"/>
		<line fill="none" id="t1 p1042" stroke="#7A7A7A" stroke-width="1" x1="196.5652" x2="198.2043" y1="315.4895" y2="318.4609"/>
		<line fill="none" id="t1 p1043" stroke="#7A7A7A" stroke-width="1" x1="198.2043" x2="200.1361" y1="318.4609" y2="322.2813"/>
		<line fill="none" id="t1 p1044" stroke="#7A7A7A" stroke-width="1" x1="200.1361" x2="202.8875" y1="322.2813" y2="327.5024"/>
		<line fill="none" id="t1 p1045" stroke="#7A7A7A" stroke-width="1" x1="202.8875" x2="206.5171" y1="327.5024" y2="331.9170"/>
		<line fill="none" id="t1 p1046" stroke="#7A7A7A" stroke-width="1" x1="206.5171" x2="210.5856" y1="331.9170" y2="336.1619"/>
		<line fill="none" id="t1 p1047" stroke="#7A7A7A" stroke-width="1" x1="210.5856" x2="217.4641" y1="336.1619" y2="343.0385"/>
		<line fill="none" id="t1 p1048" stroke="#7A7A7A" stroke-width="1" x1="217.4641" x2="221.9132" y1="343.0385" y2="347.7502"/>
		<line fill="none" id="t1 p1049" stroke="#7A7A7A" stroke-width="1" x1="221.9132" x2="223.1426" y1="347.7502" y2="348.9388"/>
		<line fill="none" id="t1 p1050" stroke="#7A7A7A" stroke-width="1" x1="223.1426" x2="226.7721" y1="348.9388" y2="348.1747"/>
		<line fill="none" id="t1 p1051" stroke="#7A7A7A" stroke-width="1" x1="226.7721" x2="230.8407" y1="348.1747" y2="344.9487"/>
		<line fill="none" id="t1 p1052" stroke="#7A7A7A" stroke-width="1" x1="230.8407" x2="234.9092" y1="344.9487" y2="343.3781"/>
		<line fill="none" id="t1 p1053" stroke="#7A7A7A" stroke-width="1" x1="234.9092" x2="242.0805" y1="343.3781" y2="341.3405"/>
		<line fill="none" id="t1 p1054" stroke="#7A7A7A" stroke-width="1" x1="242.0805" x2="247.8467" y1="341.3405" y2="339.4728"/>
		<line fill="none" id="t1 p1055" stroke="#7A7A7A" stroke-width="1" x1="247.8467" x2="251.4762" y1="339.4728" y2="340.3642"/>
		<line fill="none" id="t1 p1056" stroke="#7A7A7A" stroke-width="1" x1="251.4762" x2="258.1206" y1="340.3642" y2="343.0809"/>
		<line fill="none" id="t1 p1057" stroke="#7A7A7A" stroke-width="1" x1="258.1206" x2="259.6134" y1="343.0809" y2="343.3356"/>
		<line fill="none" id="t1 p1058" stroke="#7A7A7A" stroke-width="1" x1="259.6134" x2="263.9161" y1="343.3356" y2="341.9348"/>
		<line fill="none" id="t1 p1059" stroke="#7A7A7A" stroke-width="1" x1="263.9161" x2="264.7942" y1="341.9348" y2="338.7087"/>
		<line fill="none" id="t1 p1060" stroke="#7A7A7A" stroke-width="1" x1="264.7942" x2="262.3940" y1="338.7087" y2="335.9921"/>
		<line fill="none" id="t1 p1061" stroke="#7A7A7A" stroke-width="1" x1="262.3940" x2="260.8134" y1="335.9921" y2="333.6998"/>
		<line fill="none" id="t1 p1062" stroke="#7A7A7A" stroke-width="1" x1="260.8134" x2="261.0769" y1="333.6998" y2="329.6248"/>
		<line fill="none" id="t1 p1063" stroke="#7A7A7A" stroke-width="1" x1="261.0769" x2="260.5500" y1="329.6248" y2="328.8607"/>
		<line fill="none" id="t1 p1064" stroke="#7A7A7A" stroke-width="1" x1="260.5500" x2="258.0328" y1="328.8607" y2="326.1441"/>
		<line fill="none" id="t1 p1065" stroke="#7A7A7A" stroke-width="1" x1="258.0328" x2="260.4329" y1="326.1441" y2="322.3237"/>
		<line fill="none" id="t1 p1066" stroke="#7A7A7A" stroke-width="1" x1="260.4329" x2="261.7208" y1="322.3237" y2="322.3662"/>
		<line fill="none" id="t1 p1067" stroke="#7A7A7A" stroke-width="1" x1="261.7208" x2="263.0087" y1="322.3662" y2="323.7245"/>
		<line fill="none" id="t1 p1068" stroke="#7A7A7A" stroke-width="1" x1="263.0087" x2="264.2088" y1="323.7245" y2="325.9318"/>
		<line fill="none" id="t1 p1069" stroke="#7A7A7A" stroke-width="1" x1="264.2088" x2="266.5504" y1="325.9318" y2="328.8607"/>
		<line fill="none" id="t1 p1070" stroke="#7A7A7A" stroke-width="1" x1="266.5504" x2="266.9017" y1="328.8607" y2="329.0305"/>
		<line fill="none" id="t1 p1071" stroke="#7A7A7A" stroke-width="1" x1="266.9017" x2="267.6920" y1="329.0305" y2="329.9219"/>
		<line fill="none" id="t1 p1072" stroke="#7A7A7A" stroke-width="1" x1="267.6920" x2="267.9847" y1="329.9219" y2="332.4688"/>
		<line fill="none" id="t1 p1073" stroke="#7A7A7A" stroke-width="1" x1="267.9847" x2="270.3556" y1="332.4688" y2="334.0394"/>
		<line fill="none" id="t1 p1074" stroke="#7A7A7A" stroke-width="1" x1="270.3556" x2="272.2289" y1="334.0394" y2="334.8460"/>
		<line fill="none" id="t1 p1075" stroke="#7A7A7A" stroke-width="1" x1="272.2289" x2="273.1655" y1="334.8460" y2="337.1382"/>
		<line fill="none" id="t1 p1076" stroke="#7A7A7A" stroke-width="1" x1="273.1655" x2="274.3656" y1="337.1382" y2="339.3455"/>
		<line fill="none" id="t1 p1077" stroke="#7A7A7A" stroke-width="1" x1="274.3656" x2="274.5997" y1="339.3455" y2="342.7838"/>
		<line fill="none" id="t1 p1078" stroke="#7A7A7A" stroke-width="1" x1="274.5997" x2="273.8973" y1="342.7838" y2="346.0099"/>
		<line fill="none" id="t1 p1079" stroke="#7A7A7A" stroke-width="1" x1="273.8973" x2="274.3070" y1="346.0099" y2="347.6229"/>
		<line fill="none" id="t1 p1080" stroke="#7A7A7A" stroke-width="1" x1="274.3070" x2="275.6242" y1="347.6229" y2="350.8065"/>
		<line fill="none" id="t1 p1081" stroke="#7A7A7A" stroke-width="1" x1="275.6242" x2="277.6439" y1="350.8065" y2="351.5706"/>
		<line fill="none" id="t1 p1082" stroke="#7A7A7A" stroke-width="1" x1="277.6439" x2="282.2686" y1="351.5706" y2="356.8766"/>
		<line fill="none" id="t1 p1083" stroke="#7A7A7A" stroke-width="1" x1="282.2686" x2="284.0833" y1="356.8766" y2="365.7483"/>
		<line fill="none" id="t1 p1084" stroke="#7A7A7A" stroke-width="1" x1="284.0833" x2="287.8885" y1="365.7483" y2="371.0119"/>
		<line fill="none" id="t1 p1085" stroke="#7A7A7A" stroke-width="1" x1="287.8885" x2="296.0256" y1="371.0119" y2="374.4502"/>
		<line fill="none" id="t1 p1086" stroke="#7A7A7A" stroke-width="1" x1="296.0256" x2="309.2558" y1="374.4502" y2="378.9922"/>
		<line fill="none" id="t1 p1087" stroke="#7A7A7A" stroke-width="1" x1="309.2558" x2="323.4226" y1="378.9922" y2="385.9537"/>
		<line fill="none" id="t1 p1088" stroke="#7A7A7A" stroke-width="1" x1="323.4226" x2="325.1495" y1="385.9537" y2="388.7978"/>
		<line fill="none" id="t1 p1089" stroke="#7A7A7A" stroke-width="1" x1="325.1495" x2="329.5401" y1="388.7978" y2="392.0238"/>
		<line fill="none" id="t1 p1090" stroke="#7A7A7A" stroke-width="1" x1="329.5401" x2="335.0429" y1="392.0238" y2="396.6931"/>
		<line fill="none" id="t1 p1091" stroke="#7A7A7A" stroke-width="1" x1="335.0429" x2="334.8965" y1="396.6931" y2="399.7494"/>
		<line fill="none" id="t1 p1092" stroke="#7A7A7A" stroke-width="1" x1="334.8965" x2="338.0285" y1="399.7494" y2="410.0644"/>
		<line fill="none" id="t1 p1093" stroke="#7A7A7A" stroke-width="1" x1="338.0285" x2="340.6042" y1="410.0644" y2="412.1868"/>
		<line fill="none" id="t1 p1094" stroke="#7A7A7A" stroke-width="1" x1="340.6042" x2="346.1656" y1="412.1868" y2="419.0634"/>
		<line fill="none" id="t1 p1095" stroke="#7A7A7A" stroke-width="1" x1="346.1656" x2="350.6439" y1="419.0634" y2="425.0911"/>
		<line fill="none" id="t1 p1096" stroke="#7A7A7A" stroke-width="1" x1="350.6439" x2="351.5513" y1="425.0911" y2="426.4919"/>
		<line fill="none" id="t1 p1097" stroke="#7A7A7A" stroke-width="1" x1="351.5513" x2="350.1756" y1="426.4919" y2="432.3922"/>
		<line fill="none" id="t1 p1098" stroke="#7A7A7A" stroke-width="1" x1="350.1756" x2="346.9266" y1="432.3922" y2="438.5047"/>
		<line fill="none" id="t1 p1099" stroke="#7A7A7A" stroke-width="1" x1="346.9266" x2="343.5898" y1="438.5047" y2="445.7634"/>
		<line fill="none" id="t1 p1100" stroke="#7A7A7A" stroke-width="1" x1="343.5898" x2="340.2823" y1="445.7634" y2="453.7861"/>
		<line fill="none" id="t1 p1101" stroke="#7A7A7A" stroke-width="1" x1="340.2823" x2="338.3504" y1="453.7861" y2="459.3893"/>
		<line fill="none" id="t1 p1102" stroke="#7A7A7A" stroke-width="1" x1="338.3504" x2="339.3456" y1="459.3893" y2="468.2610"/>
		<line fill="none" id="t1 p1103" stroke="#7A7A7A" stroke-width="1" x1="339.3456" x2="342.8288" y1="468.2610" y2="473.7793"/>
		<line fill="none" id="t1 p1104" stroke="#7A7A7A" stroke-width="1" x1="342.8288" x2="347.5413" y1="473.7793" y2="480.4437"/>
		<line fill="none" id="t1 p1105" stroke="#7A7A7A" stroke-width="1" x1="347.5413" x2="348.7999" y1="480.4437" y2="486.5987"/>
		<line fill="none" id="t1 p1106" stroke="#7A7A7A" stroke-width="1" x1="348.7999" x2="349.9415" y1="486.5987" y2="492.9235"/>
		<line fill="none" id="t1 p1107" stroke="#7A7A7A" stroke-width="1" x1="349.9415" x2="350.9659" y1="492.9235" y2="499.5454"/>
		<line fill="none" id="t1 p1108" stroke="#7A7A7A" stroke-width="1" x1="350.9659" x2="350.8196" y1="499.5454" y2="505.7853"/>
		<line fill="none" id="t1 p1109" stroke="#7A7A7A" stroke-width="1" x1="350.8196" x2="348.9463" y1="505.7853" y2="512.1101"/>
		<line fill="none" id="t1 p1110" stroke="#7A7A7A" stroke-width="1" x1="348.9463" x2="348.0682" y1="512.1101" y2="513.5109"/>
		<line fill="none" id="t1 p1111" stroke="#7A7A7A" stroke-width="1" x1="348.0682" x2="343.0337" y1="513.5109" y2="518.9018"/>
		<line fill="none" id="t1 p1112" stroke="#7A7A7A" stroke-width="1" x1="343.0337" x2="336.7406" y1="518.9018" y2="524.2928"/>
		<line fill="none" id="t1 p1113" stroke="#7A7A7A" stroke-width="1" x1="336.7406" x2="332.1451" y1="524.2928" y2="529.7686"/>
		<line fill="none" id="t1 p1114" stroke="#7A7A7A" stroke-width="1" x1="332.1451" x2="327.2277" y1="529.7686" y2="534.3106"/>
		<line fill="none" id="t1 p1115" stroke="#7A7A7A" stroke-width="1" x1="327.2277" x2="320.4077" y1="534.3106" y2="537.7064"/>
		<line fill="none" id="t1 p1116" stroke="#7A7A7A" stroke-width="1" x1="320.4077" x2="315.4903" y1="537.7064" y2="540.3807"/>
		<line fill="none" id="t1 p1117" stroke="#7A7A7A" stroke-width="1" x1="315.4903" x2="308.4069" y1="540.3807" y2="545.6867"/>
		<line fill="none" id="t1 p1118" stroke="#7A7A7A" stroke-width="1" x1="308.4069" x2="307.1776" y1="545.6867" y2="546.7904"/>
		<line fill="none" id="t1 p1119" stroke="#7A7A7A" stroke-width="1" x1="307.1776" x2="300.7381" y1="546.7904" y2="553.4972"/>
		<line fill="none" id="t1 p1120" stroke="#7A7A7A" stroke-width="1" x1="300.7381" x2="297.8696" y1="553.4972" y2="555.8743"/>
		<line fill="none" id="t1 p1121" stroke="#7A7A7A" stroke-width="1" x1="297.8696" x2="296.8159" y1="555.8743" y2="556.3837"/>
		<line fill="none" id="t1 p1122" stroke="#7A7A7A" stroke-width="1" x1="296.8159" x2="292.1912" y1="556.3837" y2="558.2090"/>
		<line fill="none" id="t1 p1123" stroke="#7A7A7A" stroke-width="1" x1="292.1912" x2="287.8592" y1="558.2090" y2="558.6334"/>
		<line fill="none" id="t1 p1124" stroke="#7A7A7A" stroke-width="1" x1="287.8592" x2="285.7517" y1="558.6334" y2="559.7795"/>
		<line fill="none" id="t1 p1125" stroke="#7A7A7A" stroke-width="1" x1="285.7517" x2="286.7762" y1="559.7795" y2="564.1093"/>
		<line fill="none" id="t1 p1126" stroke="#7A7A7A" stroke-width="1" x1="286.7762" x2="287.8885" y1="564.1093" y2="568.8635"/>
		<line fill="none" id="t1 p1127" stroke="#7A7A7A" stroke-width="1" x1="287.8885" x2="288.9715" y1="568.8635" y2="570.5614"/>
		<line fill="none" id="t1 p1128" stroke="#7A7A7A" stroke-width="1" x1="288.9715" x2="289.8788" y1="570.5614" y2="573.5752"/>
		<line fill="none" id="t1 p1129" stroke="#7A7A7A" stroke-width="1" x1="289.8788" x2="291.2253" y1="573.5752" y2="575.9099"/>
		<line fill="none" id="t1 p1130" stroke="#7A7A7A" stroke-width="1" x1="291.2253" x2="294.8548" y1="575.9099" y2="578.8813"/>
		<line fill="none" id="t1 p1131" stroke="#7A7A7A" stroke-width="1" x1="294.8548" x2="296.1427" y1="578.8813" y2="579.1784"/>
		<line fill="none" id="t1 p1132" stroke="#7A7A7A" stroke-width="1" x1="296.1427" x2="302.2309" y1="579.1784" y2="580.7066"/>
		<line fill="none" id="t1 p1133" stroke="#7A7A7A" stroke-width="1" x1="302.2309" x2="306.8263" y1="580.7066" y2="581.3857"/>
		<line fill="none" id="t1 p1134" stroke="#7A7A7A" stroke-width="1" x1="306.8263" x2="311.0998" y1="581.3857" y2="579.8151"/>
		<line fill="none" id="t1 p1135" stroke="#7A7A7A" stroke-width="1" x1="311.0998" x2="315.1684" y1="579.8151" y2="576.4617"/>
		<line fill="none" id="t1 p1136" stroke="#7A7A7A" stroke-width="1" x1="315.1684" x2="317.7149" y1="576.4617" y2="574.0422"/>
		<line fill="none" id="t1 p1137" stroke="#7A7A7A" stroke-width="1" x1="317.7149" x2="320.7590" y1="574.0422" y2="573.0234"/>
		<line fill="none" id="t1 p1138" stroke="#7A7A7A" stroke-width="1" x1="320.7590" x2="321.3737" y1="573.0234" y2="570.3067"/>
		<line fill="none" id="t1 p1139" stroke="#7A7A7A" stroke-width="1" x1="321.3737" x2="322.0176" y1="570.3067" y2="569.2880"/>
		<line fill="none" id="t1 p1140" stroke="#7A7A7A" stroke-width="1" x1="322.0176" x2="326.0276" y1="569.2880" y2="565.1280"/>
		<line fill="none" id="t1 p1141" stroke="#7A7A7A" stroke-width="1" x1="326.0276" x2="329.8620" y1="565.1280" y2="568.8635"/>
		<line fill="none" id="t1 p1142" stroke="#7A7A7A" stroke-width="1" x1="329.8620" x2="330.7109" y1="568.8635" y2="570.1794"/>
		<line fill="none" id="t1 p1143" stroke="#7A7A7A" stroke-width="1" x1="330.7109" x2="333.4623" y1="570.1794" y2="574.0422"/>
		<line fill="none" id="t1 p1144" stroke="#7A7A7A" stroke-width="1" x1="333.4623" x2="337.6187" y1="574.0422" y2="574.6365"/>
		<line fill="none" id="t1 p1145" stroke="#7A7A7A" stroke-width="1" x1="337.6187" x2="338.2041" y1="574.6365" y2="570.9010"/>
		<line fill="none" id="t1 p1146" stroke="#7A7A7A" stroke-width="1" x1="338.2041" x2="338.3504" y1="570.9010" y2="569.5427"/>
		<line fill="none" id="t1 p1147" stroke="#7A7A7A" stroke-width="1" x1="338.3504" x2="340.5457" y1="569.5427" y2="564.8309"/>
		<line fill="none" id="t1 p1148" stroke="#7A7A7A" stroke-width="1" x1="340.5457" x2="340.9555" y1="564.8309" y2="565.0007"/>
		<line fill="none" id="t1 p1149" stroke="#7A7A7A" stroke-width="1" x1="340.9555" x2="345.0533" y1="565.0007" y2="566.4015"/>
		<line fill="none" id="t1 p1150" stroke="#7A7A7A" stroke-width="1" x1="345.0533" x2="351.4635" y1="566.4015" y2="567.6749"/>
		<line fill="none" id="t1 p1151" stroke="#7A7A7A" stroke-width="1" x1="351.4635" x2="356.7322" y1="567.6749" y2="568.9059"/>
		<line fill="none" id="t1 p1152" stroke="#7A7A7A" stroke-width="1" x1="356.7322" x2="362.4691" y1="568.9059" y2="569.5851"/>
		<line fill="none" id="t1 p1153" stroke="#7A7A7A" stroke-width="1" x1="362.4691" x2="367.2987" y1="569.5851" y2="568.9484"/>
		<line fill="none" id="t1 p1154" stroke="#7A7A7A" stroke-width="1" x1="367.2987" x2="370.6648" y1="568.9484" y2="572.1744"/>
		<line fill="none" id="t1 p1155" stroke="#7A7A7A" stroke-width="1" x1="370.6648" x2="371.0453" y1="572.1744" y2="573.4054"/>
		<line fill="none" id="t1 p1156" stroke="#7A7A7A" stroke-width="1" x1="371.0453" x2="369.9623" y1="573.4054" y2="579.2633"/>
		<line fill="none" id="t1 p1157" stroke="#7A7A7A" stroke-width="1" x1="369.9623" x2="365.9230" y1="579.2633" y2="585.4608"/>
		<line fill="none" id="t1 p1158" stroke="#7A7A7A" stroke-width="1" x1="365.9230" x2="363.9912" y1="585.4608" y2="590.1725"/>
		<line fill="none" id="t1 p1159" stroke="#7A7A7A" stroke-width="1" x1="363.9912" x2="362.6448" y1="590.1725" y2="593.7806"/>
		<line fill="none" id="t1 p1160" stroke="#7A7A7A" stroke-width="1" x1="362.6448" x2="362.9960" y1="593.7806" y2="600.6997"/>
		<line fill="none" id="t1 p1161" stroke="#7A7A7A" stroke-width="1" x1="362.9960" x2="363.6985" y1="600.6997" y2="604.5201"/>
		<line fill="none" id="t1 p1162" stroke="#7A7A7A" stroke-width="1" x1="363.6985" x2="364.3132" y1="604.5201" y2="606.5151"/>
		<line fill="none" id="t1 p1163" stroke="#7A7A7A" stroke-width="1" x1="364.3132" x2="367.1231" y1="606.5151" y2="607.4065"/>
		<line fill="none" id="t1 p1164" stroke="#7A7A7A" stroke-width="1" x1="367.1231" x2="371.6893" y1="607.4065" y2="604.7748"/>
		<line fill="none" id="t1 p1165" stroke="#7A7A7A" stroke-width="1" x1="371.6893" x2="378.2166" y1="604.7748" y2="601.2091"/>
		<line fill="none" id="t1 p1166" stroke="#7A7A7A" stroke-width="1" x1="378.2166" x2="379.1825" y1="601.2091" y2="600.6997"/>
		<line fill="none" id="t1 p1167" stroke="#7A7A7A" stroke-width="1" x1="379.1825" x2="382.8120" y1="600.6997" y2="597.8557"/>
		<line fill="none" id="t1 p1168" stroke="#7A7A7A" stroke-width="1" x1="382.8120" x2="383.2218" y1="597.8557" y2="596.9218"/>
		<line fill="none" id="t1 p1169" stroke="#7A7A7A" stroke-width="1" x1="383.2218" x2="386.5586" y1="596.9218" y2="593.5684"/>
		<line fill="none" id="t1 p1170" stroke="#7A7A7A" stroke-width="1" x1="386.5586" x2="389.2222" y1="593.5684" y2="591.0215"/>
		<line fill="none" id="t1 p1171" stroke="#7A7A7A" stroke-width="1" x1="389.2222" x2="393.5542" y1="591.0215" y2="584.2298"/>
		<line fill="none" id="t1 p1172" stroke="#7A7A7A" stroke-width="1" x1="393.5542" x2="396.8617" y1="584.2298" y2="579.8151"/>
		<line fill="none" id="t1 p1173" stroke="#7A7A7A" stroke-width="1" x1="396.8617" x2="401.1059" y1="579.8151" y2="579.0935"/>
		<line fill="none" id="t1 p1174" stroke="#7A7A7A" stroke-width="1" x1="401.1059" x2="407.1356" y1="579.0935" y2="575.8250"/>
		<line fill="none" id="t1 p1175" stroke="#7A7A7A" stroke-width="1" x1="407.1356" x2="410.8529" y1="575.8250" y2="575.1883"/>
		<line fill="none" id="t1 p1176" stroke="#7A7A7A" stroke-width="1" x1="410.8529" x2="413.6629" y1="575.1883" y2="577.2258"/>
		<line fill="none" id="t1 p1177" stroke="#7A7A7A" stroke-width="1" x1="413.6629" x2="417.0290" y1="577.2258" y2="578.2446"/>
		<line fill="none" id="t1 p1178" stroke="#7A7A7A" stroke-width="1" x1="417.0290" x2="418.6095" y1="578.2446" y2="580.1547"/>
		<line fill="none" id="t1 p1179" stroke="#7A7A7A" stroke-width="1" x1="418.6095" x2="420.4536" y1="580.1547" y2="583.3808"/>
		<line fill="none" id="t1 p1180" stroke="#7A7A7A" stroke-width="1" x1="420.4536" x2="420.8048" y1="583.3808" y2="588.8566"/>
		<line fill="none" id="t1 p1181" stroke="#7A7A7A" stroke-width="1" x1="420.8048" x2="419.9853" y1="588.8566" y2="593.7806"/>
		<line fill="none" id="t1 p1182" stroke="#7A7A7A" stroke-width="1" x1="419.9853" x2="419.6925" y1="593.7806" y2="594.7994"/>
		<line fill="none" id="t1 p1183" stroke="#7A7A7A" stroke-width="1" x1="419.6925" x2="418.3461" y1="594.7994" y2="598.7046"/>
		<line fill="none" id="t1 p1184" stroke="#7A7A7A" stroke-width="1" x1="418.3461" x2="419.5462" y1="598.7046" y2="604.0531"/>
		<line fill="none" id="t1 p1185" stroke="#7A7A7A" stroke-width="1" x1="419.5462" x2="417.4973" y1="604.0531" y2="610.8024"/>
		<line fill="none" id="t1 p1186" stroke="#7A7A7A" stroke-width="1" x1="417.4973" x2="416.6192" y1="610.8024" y2="613.5616"/>
		<line fill="none" id="t1 p1187" stroke="#7A7A7A" stroke-width="1" x1="416.6192" x2="416.3850" y1="613.5616" y2="614.5379"/>
		<line fill="none" id="t1 p1188" stroke="#7A7A7A" stroke-width="1" x1="416.3850" x2="415.3313" y1="614.5379" y2="616.3207"/>
		<line fill="none" id="t1 p1189" stroke="#7A7A7A" stroke-width="1" x1="415.3313" x2="413.3116" y1="616.3207" y2="614.7077"/>
		<line fill="none" id="t1 p1190" stroke="#7A7A7A" stroke-width="1" x1="413.3116" x2="410.6480" y1="614.7077" y2="612.2881"/>
		<line fill="none" id="t1 p1191" stroke="#7A7A7A" stroke-width="1" x1="410.6480" x2="409.0674" y1="612.2881" y2="610.9722"/>
		<line fill="none" id="t1 p1192" stroke="#7A7A7A" stroke-width="1" x1="409.0674" x2="407.9844" y1="610.9722" y2="607.5339"/>
		<line fill="none" id="t1 p1193" stroke="#7A7A7A" stroke-width="1" x1="407.9844" x2="410.9993" y1="607.5339" y2="601.6336"/>
		<line fill="none" id="t1 p1194" stroke="#7A7A7A" stroke-width="1" x1="410.9993" x2="412.2872" y1="601.6336" y2="595.5210"/>
		<line fill="none" id="t1 p1195" stroke="#7A7A7A" stroke-width="1" x1="412.2872" x2="414.1605" y1="595.5210" y2="591.1488"/>
		<line fill="none" id="t1 p1196" stroke="#7A7A7A" stroke-width="1" x1="414.1605" x2="414.4239" y1="591.1488" y2="589.1113"/>
		<line fill="none" id="t1 p1197" stroke="#7A7A7A" stroke-width="1" x1="414.4239" x2="412.9897" y1="589.1113" y2="588.2199"/>
		<line fill="none" id="t1 p1198" stroke="#7A7A7A" stroke-width="1" x1="412.9897" x2="410.3553" y1="588.2199" y2="588.3048"/>
		<line fill="none" id="t1 p1199" stroke="#7A7A7A" stroke-width="1" x1="410.3553" x2="406.3746" y1="588.3048" y2="592.1252"/>
		<line fill="none" id="t1 p1200" stroke="#7A7A7A" stroke-width="1" x1="406.3746" x2="405.2623" y1="592.1252" y2="592.0827"/>
		<line fill="none" id="t1 p1201" stroke="#7A7A7A" stroke-width="1" x1="405.2623" x2="401.7206" y1="592.0827" y2="592.0827"/>
		<line fill="none" id="t1 p1202" stroke="#7A7A7A" stroke-width="1" x1="401.7206" x2="401.1937" y1="592.0827" y2="595.0116"/>
		<line fill="none" id="t1 p1203" stroke="#7A7A7A" stroke-width="1" x1="401.1937" x2="402.1889" y1="595.0116" y2="599.8083"/>
		<line fill="none" id="t1 p1204" stroke="#7A7A7A" stroke-width="1" x1="402.1889" x2="397.9155" y1="599.8083" y2="600.5724"/>
		<line fill="none" id="t1 p1205" stroke="#7A7A7A" stroke-width="1" x1="397.9155" x2="394.2274" y1="600.5724" y2="603.6286"/>
		<line fill="none" id="t1 p1206" stroke="#7A7A7A" stroke-width="1" x1="394.2274" x2="391.4760" y1="603.6286" y2="609.7837"/>
		<line fill="none" id="t1 p1207" stroke="#7A7A7A" stroke-width="1" x1="391.4760" x2="386.9976" y1="609.7837" y2="612.6277"/>
		<line fill="none" id="t1 p1208" stroke="#7A7A7A" stroke-width="1" x1="386.9976" x2="384.3633" y1="612.6277" y2="616.1933"/>
		<line fill="none" id="t1 p1209" stroke="#7A7A7A" stroke-width="1" x1="384.3633" x2="384.1584" y1="616.1933" y2="619.9712"/>
		<line fill="none" id="t1 p1210" stroke="#7A7A7A" stroke-width="1" x1="384.1584" x2="386.0317" y1="619.9712" y2="622.0512"/>
		<line fill="none" id="t1 p1211" stroke="#7A7A7A" stroke-width="1" x1="386.0317" x2="388.4026" y1="622.0512" y2="626.5932"/>
		<line fill="none" id="t1 p1212" stroke="#7A7A7A" stroke-width="1" x1="388.4026" x2="389.2807" y1="626.5932" y2="632.8331"/>
		<line fill="none" id="t1 p1213" stroke="#7A7A7A" stroke-width="1" x1="389.2807" x2="388.2270" y1="632.8331" y2="635.5498"/>
		<line fill="none" id="t1 p1214" stroke="#7A7A7A" stroke-width="1" x1="388.2270" x2="387.7879" y1="635.5498" y2="641.3652"/>
		<line fill="none" id="t1 p1215" stroke="#7A7A7A" stroke-width="1" x1="387.7879" x2="388.5197" y1="641.3652" y2="646.5863"/>
		<line fill="none" id="t1 p1216" stroke="#7A7A7A" stroke-width="1" x1="388.5197" x2="389.3685" y1="646.5863" y2="648.0296"/>
		<line fill="none" id="t1 p1217" stroke="#7A7A7A" stroke-width="1" x1="389.3685" x2="392.9688" y1="648.0296" y2="650.4916"/>
		<line fill="none" id="t1 p1218" stroke="#7A7A7A" stroke-width="1" x1="392.9688" x2="396.2763" y1="650.4916" y2="653.7177"/>
		<line fill="none" id="t1 p1219" stroke="#7A7A7A" stroke-width="1" x1="396.2763" x2="398.6472" y1="653.7177" y2="655.8401"/>
		<line fill="none" id="t1 p1220" stroke="#7A7A7A" stroke-width="1" x1="398.6472" x2="402.3353" y1="655.8401" y2="658.9388"/>
		<line fill="none" id="t1 p1221" stroke="#7A7A7A" stroke-width="1" x1="402.3353" x2="409.0674" y1="658.9388" y2="660.0000"/>
		<line fill="none" id="t1 p1222" stroke="#7A7A7A" stroke-width="1" x1="409.0674" x2="409.3601" y1="660.0000" y2="657.5380"/>
		<line fill="none" id="t1 p1223" stroke="#7A7A7A" stroke-width="1" x1="409.3601" x2="409.0967" y1="657.5380" y2="654.9062"/>
		<line fill="none" id="t1 p1224" stroke="#7A7A7A" stroke-width="1" x1="409.0967" x2="408.9504" y1="654.9062" y2="653.1234"/>
		<line fill="none" id="t1 p1225" stroke="#7A7A7A" stroke-width="1" x1="408.9504" x2="412.1701" y1="653.1234" y2="647.2231"/>
		<line fill="none" id="t1 p1226" stroke="#7A7A7A" stroke-width="1" x1="412.1701" x2="413.1360" y1="647.2231" y2="646.6712"/>
		<line fill="none" id="t1 p1227" stroke="#7A7A7A" stroke-width="1" x1="413.1360" x2="416.9997" y1="646.6712" y2="644.5064"/>
		<line fill="none" id="t1 p1228" stroke="#7A7A7A" stroke-width="1" x1="416.9997" x2="421.0975" y1="644.5064" y2="642.5537"/>
		<line fill="none" id="t1 p1229" stroke="#7A7A7A" stroke-width="1" x1="421.0975" x2="424.3173" y1="642.5537" y2="643.6574"/>
		<line fill="none" id="t1 p1230" stroke="#7A7A7A" stroke-width="1" x1="424.3173" x2="427.6541" y1="643.6574" y2="645.2280"/>
		<line fill="none" id="t1 p1231" stroke="#7A7A7A" stroke-width="1" x1="427.6541" x2="434.5326" y1="645.2280" y2="645.8647"/>
		<line fill="none" id="t1 p1232" stroke="#7A7A7A" stroke-width="1" x1="434.5326" x2="439.8012" y1="645.8647" y2="646.3741"/>
		<line fill="none" id="t1 p1233" stroke="#7A7A7A" stroke-width="1" x1="439.8012" x2="443.8405" y1="646.3741" y2="648.8785"/>
		<line fill="none" id="t1 p1234" stroke="#7A7A7A" stroke-width="1" x1="443.8405" x2="444.7772" y1="648.8785" y2="649.5153"/>
		<line fill="none" id="t1 p1235" stroke="#7A7A7A" stroke-width="1" x1="444.7772" x2="447.2066" y1="649.5153" y2="651.6801"/>
		<line fill="none" id="t1 p1236" stroke="#7A7A7A" stroke-width="1" x1="447.2066" x2="453.9681" y1="651.6801" y2="652.7838"/>
		<line fill="none" id="t1 p1237" stroke="#7A7A7A" stroke-width="1" x1="453.9681" x2="455.7243" y1="652.7838" y2="652.7838"/>
		<line fill="none" id="t1 p1238" stroke="#7A7A7A" stroke-width="1" x1="455.7243" x2="460.7880" y1="652.7838" y2="651.5528"/>
		<line fill="none" id="t1 p1239" stroke="#7A7A7A" stroke-width="1" x1="460.7880" x2="465.4713" y1="651.5528" y2="648.0720"/>
		<line fill="none" id="t1 p1240" stroke="#7A7A7A" stroke-width="1" x1="465.4713" x2="470.7107" y1="648.0720" y2="648.4541"/>
		<line fill="none" id="t1 p1241" stroke="#7A7A7A" stroke-width="1" x1="470.7107" x2="473.5206" y1="648.4541" y2="647.3504"/>
		<line fill="none" id="t1 p1242" stroke="#7A7A7A" stroke-width="1" x1="473.5206" x2="473.2572" y1="647.3504" y2="646.2892"/>
		<line fill="none" id="t1 p1243" stroke="#7A7A7A" stroke-width="1" x1="473.2572" x2="471.2082" y1="646.2892" y2="640.8983"/>
		<line fill="none" id="t1 p1244" stroke="#7A7A7A" stroke-width="1" x1="471.2082" x2="470.5350" y1="640.8983" y2="639.1154"/>
		<line fill="none" id="t1 p1245" stroke="#7A7A7A" stroke-width="1" x1="470.5350" x2="466.9641" y1="639.1154" y2="638.5636"/>
		<line fill="none" id="t1 p1246" stroke="#7A7A7A" stroke-width="1" x1="466.9641" x2="464.2419" y1="638.5636" y2="638.6061"/>
		<line fill="none" id="t1 p1247" stroke="#7A7A7A" stroke-width="1" x1="464.2419" x2="460.5246" y1="638.6061" y2="637.9269"/>
		<line fill="none" id="t1 p1248" stroke="#7A7A7A" stroke-width="1" x1="460.5246" x2="457.8317" y1="637.9269" y2="638.9032"/>
		<line fill="none" id="t1 p1249" stroke="#7A7A7A" stroke-width="1" x1="457.8317" x2="454.7876" y1="638.9032" y2="639.0305"/>
		<line fill="none" id="t1 p1250" stroke="#7A7A7A" stroke-width="1" x1="454.7876" x2="453.4119" y1="639.0305" y2="639.2003"/>
		<line fill="none" id="t1 p1251" stroke="#7A7A7A" stroke-width="1" x1="453.4119" x2="451.2752" y1="639.2003" y2="639.5824"/>
		<line fill="none" id="t1 p1252" stroke="#7A7A7A" stroke-width="1" x1="451.2752" x2="449.0506" y1="639.5824" y2="638.5636"/>
		<line fill="none" id="t1 p1253" stroke="#7A7A7A" stroke-width="1" x1="449.0506" x2="447.2944" y1="638.5636" y2="638.1391"/>
		<line fill="none" id="t1 p1254" stroke="#7A7A7A" stroke-width="1" x1="447.2944" x2="444.6308" y1="638.1391" y2="639.5824"/>
		<line fill="none" id="t1 p1255" stroke="#7A7A7A" stroke-width="1" x1="444.6308" x2="444.6308" y1="639.5824" y2="641.5350"/>
		<line fill="none" id="t1 p1256" stroke="#7A7A7A" stroke-width="1" x1="444.6308" x2="444.0747" y1="641.5350" y2="642.6386"/>
		<line fill="none" id="t1 p1257" stroke="#7A7A7A" stroke-width="1" x1="444.0747" x2="441.0891" y1="642.6386" y2="643.5301"/>
		<line fill="none" id="t1 p1258" stroke="#7A7A7A" stroke-width="1" x1="441.0891" x2="440.0061" y1="643.5301" y2="641.9595"/>
		<line fill="none" id="t1 p1259" stroke="#7A7A7A" stroke-width="1" x1="440.0061" x2="438.6012" y1="641.9595" y2="638.6485"/>
		<line fill="none" id="t1 p1260" stroke="#7A7A7A" stroke-width="1" x1="438.6012" x2="435.4107" y1="638.6485" y2="638.9456"/>
		<line fill="none" id="t1 p1261" stroke="#7A7A7A" stroke-width="1" x1="435.4107" x2="434.5911" y1="638.9456" y2="639.2428"/>
		<line fill="none" id="t1 p1262" stroke="#7A7A7A" stroke-width="1" x1="434.5911" x2="430.2884" y1="639.2428" y2="639.7097"/>
		<line fill="none" id="t1 p1263" stroke="#7A7A7A" stroke-width="1" x1="430.2884" x2="426.9808" y1="639.7097" y2="638.1391"/>
		<line fill="none" id="t1 p1264" stroke="#7A7A7A" stroke-width="1" x1="426.9808" x2="425.3417" y1="638.1391" y2="636.2714"/>
		<line fill="none" id="t1 p1265" stroke="#7A7A7A" stroke-width="1" x1="425.3417" x2="423.9367" y1="636.2714" y2="633.4698"/>
		<line fill="none" id="t1 p1266" stroke="#7A7A7A" stroke-width="1" x1="423.9367" x2="425.1368" y1="633.4698" y2="628.7580"/>
		<line fill="none" id="t1 p1267" stroke="#7A7A7A" stroke-width="1" x1="425.1368" x2="425.9564" y1="628.7580" y2="626.3809"/>
		<line fill="none" id="t1 p1268" stroke="#7A7A7A" stroke-width="1" x1="425.9564" x2="428.4736" y1="626.3809" y2="622.2210"/>
		<line fill="none" id="t1 p1269" stroke="#7A7A7A" stroke-width="1" x1="428.4736" x2="433.8594" y1="622.2210" y2="618.9100"/>
		<line fill="none" id="t1 p1270" stroke="#7A7A7A" stroke-width="1" x1="433.8594" x2="436.8742" y1="618.9100" y2="618.6553"/>
		<line fill="none" id="t1 p1271" stroke="#7A7A7A" stroke-width="1" x1="436.8742" x2="441.0306" y1="618.6553" y2="618.4007"/>
		<line fill="none" id="t1 p1272" stroke="#7A7A7A" stroke-width="1" x1="441.0306" x2="441.6453" y1="618.4007" y2="618.9949"/>
		<line fill="none" id="t1 p1273" stroke="#7A7A7A" stroke-width="1" x1="441.6453" x2="446.1822" y1="618.9949" y2="622.6879"/>
		<line fill="none" id="t1 p1274" stroke="#7A7A7A" stroke-width="1" x1="446.1822" x2="454.0851" y1="622.6879" y2="623.3247"/>
		<line fill="none" id="t1 p1275" stroke="#7A7A7A" stroke-width="1" x1="454.0851" x2="461.4905" y1="623.3247" y2="626.3809"/>
		<line fill="none" id="t1 p1276" stroke="#7A7A7A" stroke-width="1" x1="461.4905" x2="464.5639" y1="626.3809" y2="627.6968"/>
		<line fill="none" id="t1 p1277" stroke="#7A7A7A" stroke-width="1" x1="464.5639" x2="468.9837" y1="627.6968" y2="624.3010"/>
		<line fill="none" id="t1 p1278" stroke="#7A7A7A" stroke-width="1" x1="468.9837" x2="469.3935" y1="624.3010" y2="622.4332"/>
		<line fill="none" id="t1 p1279" stroke="#7A7A7A" stroke-width="1" x1="469.3935" x2="466.6421" y1="622.4332" y2="618.0611"/>
		<line fill="none" id="t1 p1280" stroke="#7A7A7A" stroke-width="1" x1="466.6421" x2="466.7006" y1="618.0611" y2="615.6415"/>
		<line fill="none" id="t1 p1281" stroke="#7A7A7A" stroke-width="1" x1="466.7006" x2="467.7836" y1="615.6415" y2="614.1983"/>
		<line fill="none" id="t1 p1282" stroke="#7A7A7A" stroke-width="1" x1="467.7836" x2="472.9937" y1="614.1983" y2="611.0995"/>
		<line fill="none" id="t1 p1283" stroke="#7A7A7A" stroke-width="1" x1="472.9937" x2="475.7744" y1="611.0995" y2="603.6711"/>
		<line fill="none" id="t1 p1284" stroke="#7A7A7A" stroke-width="1" x1="475.7744" x2="479.1405" y1="603.6711" y2="598.7046"/>
		<line fill="none" id="t1 p1285" stroke="#7A7A7A" stroke-width="1" x1="479.1405" x2="484.0286" y1="598.7046" y2="599.2989"/>
		<line fill="none" id="t1 p1286" stroke="#7A7A7A" stroke-width="1" x1="484.0286" x2="489.9412" y1="599.2989" y2="597.0067"/>
		<line fill="none" id="t1 p1287" stroke="#7A7A7A" stroke-width="1" x1="489.9412" x2="492.2829" y1="597.0067" y2="596.1153"/>
		<line fill="none" id="t1 p1288" stroke="#7A7A7A" stroke-width="1" x1="492.2829" x2="497.3173" y1="596.1153" y2="600.6573"/>
		<line fill="none" id="t1 p1289" stroke="#7A7A7A" stroke-width="1" x1="497.3173" x2="504.1373" y1="600.6573" y2="602.1854"/>
		<line fill="none" id="t1 p1290" stroke="#7A7A7A" stroke-width="1" x1="504.1373" x2="506.5960" y1="602.1854" y2="600.2752"/>
		<line fill="none" id="t1 p1291" stroke="#7A7A7A" stroke-width="1" x1="506.5960" x2="511.6891" y1="600.2752" y2="595.5635"/>
		<line fill="none" id="t1 p1292" stroke="#7A7A7A" stroke-width="1" x1="511.6891" x2="518.6554" y1="595.5635" y2="589.4509"/>
		<line fill="none" id="t1 p1293" stroke="#7A7A7A" stroke-width="1" x1="518.6554" x2="520.0018" y1="589.4509" y2="588.9840"/>
		<line fill="none" id="t1 p1294" stroke="#7A7A7A" stroke-width="1" x1="520.0018" x2="527.3194" y1="588.9840" y2="589.9603"/>
		<line fill="none" id="t1 p1295" stroke="#7A7A7A" stroke-width="1" x1="527.3194" x2="528.9878" y1="589.9603" y2="591.1913"/>
		<line fill="none" id="t1 p1296" stroke="#7A7A7A" stroke-width="1" x1="528.9878" x2="529.1927" y1="591.1913" y2="591.1488"/>
		<line fill="none" id="t1 p1297" stroke="#7A7A7A" stroke-width="1" x1="529.1927" x2="530.1001" y1="591.1488" y2="589.3236"/>
		<line fill="none" id="t1 p1298" stroke="#7A7A7A" stroke-width="1" x1="530.1001" x2="530.1586" y1="589.3236" y2="588.6868"/>
		<line fill="none" id="t1 p1299" stroke="#7A7A7A" stroke-width="1" x1="530.1586" x2="528.9000" y1="588.6868" y2="586.0975"/>
		<line fill="none" id="t1 p1300" stroke="#7A7A7A" stroke-width="1" x1="528.9000" x2="528.8122" y1="586.0975" y2="582.4894"/>
		<line fill="none" id="t1 p1301" stroke="#7A7A7A" stroke-width="1" x1="528.8122" x2="528.9293" y1="582.4894" y2="578.5417"/>
		<line fill="none" id="t1 p1302" stroke="#7A7A7A" stroke-width="1" x1="528.9293" x2="527.2901" y1="578.5417" y2="574.2120"/>
		<line fill="none" id="t1 p1303" stroke="#7A7A7A" stroke-width="1" x1="527.2901" x2="525.7681" y1="574.2120" y2="572.5989"/>
		<line fill="none" id="t1 p1304" stroke="#7A7A7A" stroke-width="1" x1="525.7681" x2="523.4557" y1="572.5989" y2="568.2692"/>
		<line fill="none" id="t1 p1305" stroke="#7A7A7A" stroke-width="1" x1="523.4557" x2="523.2508" y1="568.2692" y2="562.0293"/>
		<line fill="none" id="t1 p1306" stroke="#7A7A7A" stroke-width="1" x1="523.2508" x2="521.7873" y1="562.0293" y2="554.5584"/>
		<line fill="none" id="t1 p1307" stroke="#7A7A7A" stroke-width="1" x1="521.7873" x2="518.5383" y1="554.5584" y2="548.0214"/>
		<line fill="none" id="t1 p1308" stroke="#7A7A7A" stroke-width="1" x1="518.5383" x2="512.4208" y1="548.0214" y2="543.1823"/>
		<line fill="none" id="t1 p1309" stroke="#7A7A7A" stroke-width="1" x1="512.4208" x2="504.0202" y1="543.1823" y2="538.5129"/>
		<line fill="none" id="t1 p1310" stroke="#7A7A7A" stroke-width="1" x1="504.0202" x2="496.9954" y1="538.5129" y2="536.5603"/>
		<line fill="none" id="t1 p1311" stroke="#7A7A7A" stroke-width="1" x1="496.9954" x2="494.3025" y1="536.5603" y2="531.7637"/>
		<line fill="none" id="t1 p1312" stroke="#7A7A7A" stroke-width="1" x1="494.3025" x2="494.1269" y1="531.7637" y2="525.9907"/>
		<line fill="none" id="t1 p1313" stroke="#7A7A7A" stroke-width="1" x1="494.1269" x2="494.8586" y1="525.9907" y2="521.2365"/>
		<line fill="none" id="t1 p1314" stroke="#7A7A7A" stroke-width="1" x1="494.8586" x2="496.4685" y1="521.2365" y2="513.6382"/>
		<line fill="none" id="t1 p1315" stroke="#7A7A7A" stroke-width="1" x1="496.4685" x2="494.7123" y1="513.6382" y2="508.7142"/>
		<line fill="none" id="t1 p1316" stroke="#7A7A7A" stroke-width="1" x1="494.7123" x2="491.1999" y1="508.7142" y2="502.3894"/>
		<line fill="none" id="t1 p1317" stroke="#7A7A7A" stroke-width="1" x1="491.1999" x2="490.8486" y1="502.3894" y2="496.8711"/>
		<line fill="none" id="t1 p1318" stroke="#7A7A7A" stroke-width="1" x1="490.8486" x2="493.9513" y1="496.8711" y2="495.6826"/>
		<line fill="none" id="t1 p1319" stroke="#7A7A7A" stroke-width="1" x1="493.9513" x2="497.9027" y1="495.6826" y2="494.5365"/>
		<line fill="none" id="t1 p1320" stroke="#7A7A7A" stroke-width="1" x1="497.9027" x2="504.8983" y1="494.5365" y2="493.4753"/>
		<line fill="none" id="t1 p1321" stroke="#7A7A7A" stroke-width="1" x1="504.8983" x2="508.9669" y1="493.4753" y2="493.8998"/>
		<line fill="none" id="t1 p1322" stroke="#7A7A7A" stroke-width="1" x1="508.9669" x2="513.8551" y1="493.8998" y2="494.4091"/>
		<line fill="none" id="t1 p1323" stroke="#7A7A7A" stroke-width="1" x1="513.8551" x2="515.4357" y1="494.4091" y2="494.7912"/>
		<line fill="none" id="t1 p1324" stroke="#7A7A7A" stroke-width="1" x1="515.4357" x2="516.8114" y1="494.7912" y2="495.4704"/>
		<line fill="none" id="t1 p1325" stroke="#7A7A7A" stroke-width="1" x1="516.8114" x2="517.9529" y1="495.4704" y2="495.1308"/>
		<line fill="none" id="t1 p1326" stroke="#7A7A7A" stroke-width="1" x1="517.9529" x2="519.1530" y1="495.1308" y2="492.5839"/>
		<line fill="none" id="t1 p1327" stroke="#7A7A7A" stroke-width="1" x1="519.1530" x2="520.0018" y1="492.5839" y2="488.6362"/>
		<line fill="none" id="t1 p1328" stroke="#7A7A7A" stroke-width="1" x1="520.0018" x2="523.6606" y1="488.6362" y2="483.1603"/>
		<line fill="none" id="t1 p1329" stroke="#7A7A7A" stroke-width="1" x1="523.6606" x2="528.4609" y1="483.1603" y2="480.0616"/>
		<line fill="none" id="t1 p1330" stroke="#7A7A7A" stroke-width="1" x1="528.4609" x2="531.3880" y1="480.0616" y2="477.7270"/>
		<line fill="none" id="t1 p1331" stroke="#7A7A7A" stroke-width="1" x1="531.3880" x2="532.5002" y1="477.7270" y2="477.0478"/>
		<line fill="none" id="t1 p1332" stroke="#7A7A7A" stroke-width="1" x1="532.5002" x2="532.5295" y1="477.0478" y2="476.9629"/>
		<line fill="none" id="t1 p1333" stroke="#7A7A7A" stroke-width="1" x1="532.5295" x2="532.5588" y1="476.9629" y2="473.8642"/>
		<line fill="none" id="t1 p1334" stroke="#7A7A7A" stroke-width="1" x1="532.5588" x2="530.0415" y1="473.8642" y2="468.3883"/>
		<line fill="none" id="t1 p1335" stroke="#7A7A7A" stroke-width="1" x1="530.0415" x2="531.8856" y1="468.3883" y2="462.8701"/>
		<line fill="none" id="t1 p1336" stroke="#7A7A7A" stroke-width="1" x1="531.8856" x2="532.7344" y1="462.8701" y2="461.8088"/>
		<line fill="none" id="t1 p1337" stroke="#7A7A7A" stroke-width="1" x1="532.7344" x2="532.3539" y1="461.8088" y2="458.4554"/>
		<line fill="none" id="t1 p1338" stroke="#7A7A7A" stroke-width="1" x1="532.3539" x2="533.2613" y1="458.4554" y2="457.3942"/>
		<line fill="none" id="t1 p1339" stroke="#7A7A7A" stroke-width="1" x1="533.2613" x2="535.0760" y1="457.3942" y2="455.9934"/>
		<line fill="none" id="t1 p1340" stroke="#7A7A7A" stroke-width="1" x1="535.0760" x2="535.9541" y1="455.9934" y2="454.6775"/>
		<line fill="none" id="t1 p1341" stroke="#7A7A7A" stroke-width="1" x1="535.9541" x2="536.2761" y1="454.6775" y2="455.6963"/>
	</g>
		
	<g id="Waypoints"/>
	
	<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/map?format=svg&amp;local_input=convert/display/1289918140-14799-208.123.41.2-modified.svg"/>
	<a id="localized_jpeg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/localize?localize_mode=rasterize_jpg&amp;local_input=/1289918140-14799-208.123.41.2-modified.svg"/>
	<a id="localized_png_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/localize?localize_mode=rasterize_png&amp;local_input=/1289918140-14799-208.123.41.2-modified.svg"/>
	<a id="localized_svg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/localize?localize_mode=embed&amp;local_input=/1289918140-14799-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/map?format=svg&local_input=convert/save_modified.cgi?/1289918140-14799-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 = 1289918140-14799
 --><!-- min. altitude = 404.371704
 --><!-- max. altitude = 453.398926
 --><!-- colorize min = 404.371704
 --><!-- colorize max = 453.398926
 --><!-- colorize range = 49.027222
 --><!-- upper left (data) = 46.463134,-95.213616
 --><!-- lower right (data) = 46.448528,-95.197882
 --><!-- upper left (drawing) = 46.4640763225806,-95.2177065193959
 --><!-- lower right (drawing) = 46.4475856774194,-95.1937914806041
 --><!-- center = 46.455831,-95.205749
 --><!-- width,height (pixels) = 700,700
 --><!-- width,height (degrees) = 0.0239150387917419,0.0164906451612765
 --><!-- scale = 7434, resolution = 2.622 m/pixel
 --><!-- map = http://www2.demis.nl/wms/wms.asp?version=1.1.0&wms=WorldMap&request=GetMap&srs=EPSG:4326&bbox=-95.2177065,46.4475857,-95.1937915,46.4640763&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.2177065193959&me=-95.1937914806041&ms=46.4475856774194&mn=46.4640763225806&submitted=1
 --><!-- e-mail = 
 --><!-- 
	Generated using the Perl SVG Module V2.49
	by Ronan Oger
	Info: http://www.roitsystems.com/
 -->
</svg>