changeset 43:7f0485e0d0ff

updates via ljubljana
author tzara <rc-web@kiben.net>
date Sat, 08 Sep 2012 08:25:19 +0000
parents 49c94f63b8b0
children 8fc7155aa3ac
files nodescore.js rasterize.js ss2thumb.sh www/index.html www/m/c.html www/m/css/chat-tablet.css www/m/css/nodescore-tablet.css www/m/ctrl.html www/m/js/nodescore-slides.js www/m/music.html www/m/score.html www/m/slides.html www/m/svg/12_7_1.svg www/m/svg/13_6_2.svg www/m/svg/14_1_1.svg www/m/svg/15_0_2.svg www/m/svg/16_2_2.svg www/m/svg/17_3_1.svg www/m/svg/18_4_2.svg www/m/svg/19_5_1.svg www/m/svg/20_5_0.svg www/m/svg/21_4_3.svg www/m/svg/22_3_0.svg www/m/svg/23_2_3.svg www/m/svg/24_0_3.svg www/m/svg/25_1_0.svg www/m/svg/26_6_3.svg www/m/svg/27_7_0.svg www/m/svg/28_7_7.svg www/m/svg/29_6_4.svg www/m/svg/30_1_7.svg www/m/svg/31_0_4.svg www/m/svg/32_2_4.svg www/m/svg/33_3_7.svg www/m/svg/34_4_4.svg www/m/svg/35_5_7.svg www/m/svg/36_5_6.svg www/m/svg/37_4_5.svg www/m/svg/38_3_6.svg www/m/svg/39_2_5.svg www/m/svg/40_0_5.svg www/m/svg/41_1_6.svg www/m/svg/42_6_5.svg www/m/svg/43_7_6.svg www/m/svg/44_7_5.svg www/m/svg/45_6_6.svg www/m/svg/46_1_5.svg www/m/svg/47_0_6.svg www/m/svg/48_2_6.svg www/m/svg/49_3_5.svg www/m/svg/50_4_6.svg www/m/svg/51_5_5.svg www/m/svg/52_5_4.svg www/m/svg/53_4_7.svg www/m/svg/54_3_4.svg www/m/svg/55_2_7.svg www/m/svg/56_0_7.svg www/m/svg/57_1_4.svg www/m/svg/58_6_7.svg www/m/svg/59_7_4.svg www/m/svg/60_7_3.svg www/m/svg/61_6_0.svg www/m/svg/62_1_3.svg www/m/svg/63_0_0.svg www/m/svg/64_2_0.svg www/m/svg/65_3_3.svg www/m/svg/66_4_0.svg www/m/svg/67_5_3.svg www/m/svg/68_5_2.svg www/m/svg/69_4_1.svg www/m/svg/70_3_2.svg www/m/svg/71_2_1.svg www/m/svg/72_0_1.svg www/m/svg/73_1_2.svg www/m/svg/74_6_1.svg www/m/svg/75_7_2.svg www/m/svg/svg-stylesheet.css www/m/thumbs/1.png www/m/thumbs/2.png www/m/thumbs/3.png www/m/thumbs/4.png www/m/thumbs/5.png www/m/thumbs/6.png www/p/index.html
diffstat 84 files changed, 1842 insertions(+), 2882 deletions(-) [+]
line wrap: on
line diff
--- a/nodescore.js	Tue Sep 04 07:25:49 2012 +0000
+++ b/nodescore.js	Sat Sep 08 08:25:19 2012 +0000
@@ -7,31 +7,27 @@
 
 ////////////////////////////////////////////
 */
-
 var sio = require('socket.io')
 , http = require('http')
 , fs = require('fs')
-,  $ = require('jQuery')
 , static = require('node-static');
+// run webserver serving static html
+////////////////////////////////////////////
+var clientFiles = new static.Server('./www');
+var httpServer = http.createServer(
+    function(request, response) {
+	request.addListener('end', function () {
+	    clientFiles.serve(request, response);	    
+	    process.setMaxListeners(0);
+	});    
+    });
+
+httpServer.listen(8889);
+
 
 var pinging=0
-
 console.log("ping set to 0")
 
-// run webserver serving static html
-////////////////////////////////////////////
-
-var clientFiles = new static.Server('./www');
-
-var httpServer = http.createServer(function(request, response) {
-    request.addListener('end', function () {
-	clientFiles.serve(request, response);	    
-	process.setMaxListeners(0);
-    });    
-});
-
-httpServer.listen(8889);
-
 ////////////////////////////////////////////
 // connect to websockets 
 ////////////////////////////////////////////
@@ -121,10 +117,11 @@
     }
 
     socket.on('startChr', function () { startChr();}); 
+    // if not already started start the chronometer    
     function startChr() { if (chronstate !== 1) { 
 	chronstate = 1; chronometer();} 
-			}      // if not already started start the chronometer    
-
+			}
+    
     socket.on('stopChr', function () { stopChr();} );    
     function stopChr() {  chronstate = 0; }  
     // stop the chronometer
@@ -153,18 +150,22 @@
     srcsqr[2] = [03,00,17,16,35,34];
     srcsqr[3] = [01,02,19,18,33,32];
 
-    var seqA = { metrobeat:0, voice:1, name: "A", counter: 0, mm: 120, beatsinbar: 4, durations: srcsqr[0], units: [1,2,3,1,2,4]};
+    var seqA = { metrobeat:0, voice:1, name: "A", counter: 0, mm: 60, beatsinbar: 4, durations: srcsqr[0], units: [1,2,3,1,2,4]};
     var seqB = { metrobeat:0, voice:2, name: "B", counter: 0, mm: 120, beatsinbar: 4, durations: srcsqr[1], units: [3,2,1,1,2,3]};
-    var seqC = { metrobeat:0, voice:3, name: "C", counter: 0, mm: 120, beatsinbar: 4, durations: srcsqr[2], units: [4,5,6,5,4,2]};
-    var seqD = { metrobeat:0, voice:4, name: "D", counter: 0, mm: 120, beatsinbar: 4, durations: srcsqr[3], units: [2,3,4,2,3,1]};
+    var seqC = { metrobeat:0, voice:3, name: "C", counter: 0, mm: 90, beatsinbar: 4, durations: srcsqr[2], units: [4,5,6,5,4,2]};
+    var seqD = { metrobeat:0, voice:4, name: "D", counter: 0, mm: 105, beatsinbar: 4, durations: srcsqr[3], units: [2,3,4,2,3,1]};
     
      var countdowntick = function(seq){
 
-	 var tempoms = 60000/seq.mm
-	 var timemultiplier=tempoms
-	 var outcount = 12; var incount=12;
+	// var tempoms = Math.floor(60000/seq.mm)
+	 var tempoms = Math.floor(60000/seq.mm)
+	 console.log(tempoms)
+	 var timemultiplier=1
+	 var outcount = 4; var incount=4;
 	 var time = ((seq.durations[seq.counter]+1) *timemultiplier) + 30000 + (outcount*tempoms);
-	 var ztime = time; var totaltime = time/tempoms
+	 var time = Math.floor(time)
+	 var ztime = time; 
+	 var totaltime = Math.floor(time/tempoms)
 	 var unit = seq.units[seq.counter];
 	 
 	 // initiate first page here
@@ -172,15 +173,15 @@
 	 socket.emit("pageFlipfromserver", seq.voice, unit, time, seq.mm,seq.counter);
 	 
 	 function sequenCer() {
-	     
+	 //    console.log(ztime)
 	     if (ztime >= 0 ){
 		 
 		// basic unit is still the second/1000ms - change this to tempoms? no i dont think so
 		// count in and count out
 		////////////////////////////////////////////
 		
-		 var counter = ztime/tempoms
-		 //
+		 var counter = Math.floor(ztime/tempoms)
+		 //console.log(counter)
 		 if (counter >= 0 ){
 		     socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 		     socket.emit('counterText', seq.voice, seq.counter, counter);
@@ -218,7 +219,8 @@
 	     }
 	     
 	     // flip the page 
-	     if (ztime == 0){
+	     if (counter == 0){
+
 		 seq.counter = (seq.counter + 1) % seq.durations.length	    		
 		socket.broadcast.emit("pageFlipfromserver", seq.voice, unit, time, seq.mm,seq.counter);
 		 //delete tockTock;	
@@ -248,7 +250,10 @@
 	if (sequencerState == 0) { 
 	    console.log("sequencer starting...")	    
 	    startChr();
-	    step(seqA); step(seqB); step(seqC); step(seqD);	    
+
+//////////////////////////////////////////////////////////////////
+
+	    step(seqA);step(seqB); step(seqC); step(seqD);	    
 	    ztime =-1;
 	}
 	else console.log("sequencer already started...")
@@ -292,23 +297,17 @@
     */
 
 
-// periodically broadcast  a ping
-  
+// periodically broadcast a ping
     function serverTime(freq) {
-
-	if (pinging==0){
-	    st = setInterval(function() {
-		var pinging=1;
-		var d = new Date(); var n = d.getTime(); 
-		socket.emit("timeFromServer", n); 
-		//socket.broadcast.emit("timeFromServer", n); 	    
-	    }, 1000);   }
-	else console.log("already pinging")
+	if (pinging==0){ st = setInterval(function() {
+	    var pinging=1;
+	    var d = new Date(); var n = d.getTime(); 
+	    socket.emit("timeFromServer", n); 
+	}, 1000);   } else console.log("already pinging")
     }
-    
     // receive the pong calculate the latency and
     // return the response to the client
-    
+
     socket.on("clientTimeResponse", function(x) {
 	var d = new Date(); var n = d.getTime();
 	var latency = (n-x)/2;
--- a/rasterize.js	Tue Sep 04 07:25:49 2012 +0000
+++ b/rasterize.js	Sat Sep 08 08:25:19 2012 +0000
@@ -4,7 +4,7 @@
 
 top = system.args[3];
 
-page.clipRect = { top: top, left: 0, width: 1000, height: 450 }
+page.clipRect = { top: top, left: 0, width: 1000, height: 330 }
 
 if (system.args.length < 3 || system.args.length > 5) {
     console.log('Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat] [zoom]');
@@ -15,7 +15,7 @@
     output = system.args[2];
  
 
-    page.viewportSize = { width: 1000, height: 450 };
+    page.viewportSize = { width: 1000, height: 330 };
     if (system.args.length > 4 && system.args[2].substr(-4) === ".pdf") {
         size = system.args[4].split('*');
         page.paperSize = size.length === 2 ? { width: size[0], height: size[1], margin: '0px' }
--- a/ss2thumb.sh	Tue Sep 04 07:25:49 2012 +0000
+++ b/ss2thumb.sh	Sat Sep 08 08:25:19 2012 +0000
@@ -20,7 +20,7 @@
 fi
 
 ANCHORS=`grep '<a' www/$BASEDIR/music.html|wc -l`
-GAP=450
+GAP=330
 TOP=0
 for each in $(seq 1 $ANCHORS);
 do
--- a/www/index.html	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/index.html	Sat Sep 08 08:25:19 2012 +0000
@@ -28,7 +28,7 @@
 			     ">
       
       <h1 style="margin:0px;">NodeScore</h1>
-      http://nodescore.kiben.net:8889
+      http://nodescore.kiben.net
     </div>
     
     <div align="left" class="readme" style="background:white; 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/www/m/c.html	Sat Sep 08 08:25:19 2012 +0000
@@ -0,0 +1,150 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta charset="UTF-8">  
+  <title>controls@nodescore</title>
+  
+  <link rel="shortcut icon" href="/kiben_favicon.ico" type="image/x-icon" />
+
+  <link href="css/nodescore-tablet.css" rel="stylesheet">
+  <link href="css/chat-tablet.css" rel="stylesheet">
+  <link href="css/menu.css" rel="stylesheet">
+
+  <script src="js/jquery-1.7.1.min.js"></script>  
+  <script src="/socket.io/socket.io.js"></script>
+  <script src="js/nodescore-slides.js"></script>
+  <script src="js/controlseq.js"></script>
+</head>
+
+<body>
+
+  <input type="hidden" id="group" value='1'> 
+  <div class="outermaster">     
+
+  <h1 style=" font-size:1.5em; background:transparent; left:24px; top:14px;">magick square sequencer:</h1>      
+  <br>
+      <div>
+	<p class="magicsquare" id="1magicsquare0"></p>
+	<p class="magicsquare" id="1magicsquare1"></p>
+	<p class="magicsquare" id="1magicsquare2"></p>
+	<p class="magicsquare" id="1magicsquare3"></p>
+	<p class="magicsquare" id="1magicsquare4"></p>
+	<p class="magicsquare" id="1magicsquare5"></p>
+      </div>
+      <br><br><br><br>
+      <div>
+	<p class="magicsquare" id="2magicsquare0"></p>
+	<p class="magicsquare" id="2magicsquare1"></p>
+	<p class="magicsquare" id="2magicsquare2"></p>
+	<p class="magicsquare" id="2magicsquare3"></p>
+	<p class="magicsquare" id="2magicsquare4"></p>
+	<p class="magicsquare" id="2magicsquare5"></p>
+      </div>
+      <br><br><br><br>
+      <div>
+	<p class="magicsquare" id="3magicsquare0"></p>
+	<p class="magicsquare" id="3magicsquare1"></p>
+	<p class="magicsquare" id="3magicsquare2"></p>
+	<p class="magicsquare" id="3magicsquare3"></p>
+	<p class="magicsquare" id="3magicsquare4"></p>
+	<p class="magicsquare" id="3magicsquare5"></p>
+      </div>
+      <br><br><br><br>
+      <div>
+	<p class="magicsquare" id="4magicsquare0"></p>
+	<p class="magicsquare" id="4magicsquare1"></p>
+	<p class="magicsquare" id="4magicsquare2"></p>
+	<p class="magicsquare" id="4magicsquare3"></p>
+	<p class="magicsquare" id="4magicsquare4"></p>
+	<p class="magicsquare" id="4magicsquare5"></p>
+      </div>
+     
+      <br/><br/><br/><br/>
+
+      <input type="button" value="START" onclick="startSeq();" />
+      <input type="button" value="STOP" onclick="stopSeq();" />
+      <input type="button" value="RESET" onclick="resetSeq();" />    
+
+
+
+
+
+
+  
+    <div id="info">
+    <div id="comms"> 
+      <div id="chat" title="type here to chat with others connected to network" >
+	<div id="nickname" title="type your login name and press enter" >
+	  <form id="set-nickname" class="wrap">
+	    <p>LOGIN:</p>
+	    <input id="nick">
+	    <p id="nickname-err">Nickname already in use</p>
+	  </form>
+	</div>
+	<div id="connecting">
+	  <div class="wrap">Connecting to socket.io server</div>
+	</div>
+	<div id="messages">
+	  <div id="nicknames"></div>
+	  <div id="lines"></div>
+	</div>
+	<form id="send-message">
+	  <input id="message">
+	  <button>Send</button>
+	</form>
+      </div>
+    </div>    
+  
+    <div id="midfoot">
+
+      <div id="midcomms">
+	<div id="counttitle" style="display:inline;"></div>
+	<div id="count" style="color:white"></div>
+      </div>
+
+      <div id="remainingtime">
+	next in:
+	<div id="totalcountdown">.</div>
+      </div>
+
+      <div class="metrocase" id="metro">
+	<div id="metronome0"></div>
+      </div>
+
+      <div id="timeinfo">
+		<div id="datetime"></div>
+	<div id="client_chronometer"  style="z-index: 2;">00:00:00.0</div>      
+	<div id="client_latency">Latency: 0ms</div>
+      </div>
+
+      <div id="current">
+	<script type="text/javascript">
+	  function setPart(sel) {
+	  var value = sel.options[sel.selectedIndex].value;  
+	  document.getElementById('group').value=value; 
+	  //$('div#current').text('GROUP ' +value).text='value';
+	  }
+	</script>
+	<div>
+	  <select id="setPart" onchange="setPart(this)">
+	    <option value="1">Stream 01</option>
+	    <option value="2">Stream 02</option>
+	    <option value="3">Stream 03</option>
+	    <option value="4">Stream 04</option>
+	  </select>
+	</div>
+      </div>      
+
+
+    </div>
+    
+
+    <div id="preview"></div>
+    
+    </div>    
+    
+  
+</div>
+
+</body>
+</html>
--- a/www/m/css/chat-tablet.css	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/css/chat-tablet.css	Sat Sep 08 08:25:19 2012 +0000
@@ -153,16 +153,16 @@
   user-select: none;
   display: inline-block;
   text-decoration: none;
-  background: #43a1f7;
-  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #377ad0));
-  background: -webkit-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
-  background: -moz-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
-  background: linear-gradient(top, #43a1f7 0%, #377ad0 100%);
+  background: white;
+  !background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #377ad0));
+  !background: -webkit-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
+  !background: -moz-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
+  !background: linear-gradient(top, #43a1f7 0%, #377ad0 100%);
   border: 1px solid #2e70c4;
   -webkit-border-radius: 16px;
   -moz-border-radius: 16px;
   border-radius: 16px;
-  color: #fff;
+  color: black;
   font-family: "lucida grande", sans-serif;
   font-size: 11px;
   font-weight: normal;
@@ -173,11 +173,11 @@
 }
 button:hover,
 button.hover {
-  background: darker;
-  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #2e70c4));
-  background: -webkit-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
-  background: -moz-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
-  background: linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
+  background: white;
+  !background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #2e70c4));
+  !background: -webkit-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
+  !background: -moz-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
+  !background: linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
   border: 1px solid #2e70c4;
   cursor: pointer;
   text-shadow: 0 -1px 1px #2c6bbb;
--- a/www/m/css/nodescore-tablet.css	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/css/nodescore-tablet.css	Sat Sep 08 08:25:19 2012 +0000
@@ -3,7 +3,7 @@
     color: white;
     font: 12px Helvetica, Arial;      
     padding:0px;
-    margin-top:0px;
+    margin-top:2px;
     margin-left:0px;
     height:100%;
 } 
@@ -39,18 +39,18 @@
 .outermaster{
     margin-top:4px;
     height: 470px;
-    width: 1024px;
+    width: 1022px;
     border-radius: 15px;
-    background-color:black;
-    border: 1px solid gray;
+    !2Bbackground-color:black;
+    !border: 1px solid gray;
     position: relative;
     !padding: 5px 5px 5px 5px ;
-    color: white;
-    opacity:0.8;
+    !color: white;
+    !opacity:0.8;
     !top: 10%
     +filter: invert(100%);
-    margin-left: 0px;
- padding:0px;
+    !2Bmargin-left: 0px;
+ !padding:0px;
 }
 
 #live{
@@ -78,7 +78,7 @@
 position: absolute;
 border: 0px solid red;
 border-radius:15px;
-top: 338px;
+top: 335px;
 !padding: 5px 5px 5px 5px;
 height: 135px;
 width: 100%;
@@ -101,7 +101,7 @@
     height: 120px;
     width: 30%;
     margin: 0px;
-    margin-left:15px;
+    margin-left:6%;
     border: 1px solid gray;
     padding: 5px 5px 5px 5px ;
     background: black;
@@ -112,7 +112,7 @@
 #preview{
     border-radius: 15px;
     height: 120px;
-    width: 400px;
+    width: 30%;
     margin: 0px;
     border: 1px solid gray;
     !position: absolute;
@@ -122,7 +122,9 @@
     color: black;
     overflow:hidden;
     float:right;
+    font-size:1em;
 }
+#preview img{margin-top:15px;}
 
 #timeinfo{
     border-radius: 15px;
@@ -137,12 +139,14 @@
 
 #remainingtime{
 !display:table-cell; vertical-align:middle;
+padding:0;
+margin:0;
 font-size:1.4em;
 color:white;
 position:relative;
-left:30px;
-top:40px;
-width: 120px;
+left:40px;
+top:90px;
+width:120px;
 float:left;
 background-color:transparent;
 }
@@ -176,11 +180,13 @@
 }
 
 .svgmusic {
+    padding:0px;
+    border: 1px solid gray;
     display:block;
     border-radius: 15px;
     margin: 0px;
     width: 100%;
-height: 450px;
+    height: 330px;
 }
 
 .magicsquare {
@@ -208,27 +214,24 @@
 
 
 #datetime{
-!    display:table-cell; vertical-align:middle;
-    width:80px;
-    float:clear;
-    !margin-top: 30px; 
-     !margin-right: 30px;
-    !float:left;
+    display:table-cell; vertical-align:middle;
+    width:90px;
     !padding: 1px 1px 1px 1px;
-    font-size:1em; color: white;
-    !position: absolute; 
-    !bottom: 10px; 
-    !left: 25%;
-    !float: left;
-    !background-color: transparent;    
+    font-size:0.9em; color: white;
+    text-align:center;
+    position: relative; 
+    bottom: 25px; 
+    right: 4px;
+    float: left;
+    background-color: transparent;    
     !opacity: 0.7;
 }
 
 #current{
     float:right;
     position: relative; 
-    right: 5%;
-    bottom:-5px;
+    right: 70%;
+    bottom:50px;
     font-size:1.7em; 
     font-weight: bold;
     color: white;
@@ -241,15 +244,15 @@
 #client_latency{
     background:transparent;
     width:135px;
-    font-size:1.2em;
+    font-size:1em;
     color: white;
     z-index: 1;
     padding: 3px 3px 3px 3px;
-    opacity: 0.6;
+    opacity: 0.8;
     float:left;
     position:relative;
-    left: 100px;
-    bottom: 10px;
+    left: 90px;
+    bottom: 72px;
 
 }
 
@@ -257,9 +260,9 @@
     float:right;
     border-radius: 5px;
     position: relative; 
-    right: 40px;
+    right: 20px;
     top:-25px;
-    width: 50px;  
+    width: 60px;  
     height: 30px;
     color: black;
     text-align: center;
@@ -269,7 +272,7 @@
     border: 1px solid white;
 }
 
-#metronome0 { position: absolute; width: 50px; height: 30px; border-radius: 5px; float:left; }
+#metronome0 { position: absolute; width: 60px; height: 30px; border-radius: 5px; float:left; }
 #metronome1 { width: 50px; height: 40px; border-radius: 30px; float:left; }
 #metronome2 { width: 50px; height: 40px; border-radius: 30px; float:left; }
 #metronome3 { width: 50px; height: 40px; border-radius: 30px; float:left; }
@@ -293,15 +296,15 @@
     border-radius: 15px;
     !border: 2px solid gray ; 
     float:right;
-    background-color: black;   
+    background-color: transparent;   
     color: white;
-    font-size: 2.8em; 
+    font-size: 3.7em; 
     text-align: center;
-    opacity:0.7;
+    opacity:0.8;
     position: relative; 
-    left: 20px; 
-    bottom:10px;
-    width: 200px; 
+    left: 10px; 
+    bottom:64px;
+    width: 210px; 
     !height: 40px;
     z-position: 2;
 }
@@ -312,18 +315,19 @@
     float:left;
     width:120px;
     position:relative;
-    top:5px;
-    left:5px;
+    top:-5px;
+    left:20px;
 }
 
 #count {
     width:40px;
     font-size: 5em;
     font-weight:bolder;
+    font-align:center;
     margin:0;
     padding:0;
     position:relative;
-    left:15px;
+    left:35px;
     top: -10px;
     background:transparent;
     float:left;
@@ -331,11 +335,12 @@
 }
 
 #totalcountdown  {
-    font-size: 1.3em;
-    color:red;
+    font-size: 1.7em;
+    font-weight:bolder;
+    color:orange;
     position:relative;
-    left: 10px;
-    !top: 0px;
+    left: 0px;
+    bottom: -3px;
     !text-align:center
     font-weight:bolder;
     !width:100%;
--- a/www/m/ctrl.html	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/ctrl.html	Sat Sep 08 08:25:19 2012 +0000
@@ -64,7 +64,6 @@
       <input type="button" value="RESET" onclick="resetSeq();" />    
     </div>
           
-
     
       <div id="comms"> 
 	<div id="chat">
--- a/www/m/js/nodescore-slides.js	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/js/nodescore-slides.js	Sat Sep 08 08:25:19 2012 +0000
@@ -119,7 +119,7 @@
     var next=(((unit+1)%units)+units)%units
     //console.log("HOP TURN" + unit+ "next:" + next);
     $("#live").load("music.html #"+unit +" *"); 
-    $("#preview").html("<h3 style='background:transparent; position: absolute; font-size:2em;top:14px; right:4px;';> n e x t : </h3><img src='thumbs/"+next + ".png" + "' width='400'>")
+    $("#preview").html("<h3 style='background:transparent; position: relative; font-size:1.5em;top:14px; left:10px;';> n e x t : </h3><img src='thumbs/"+next + ".png" + "' width='315'>")
 }
 
 ////////////////////////////////////////////////
--- a/www/m/music.html	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/music.html	Sat Sep 08 08:25:19 2012 +0000
@@ -2,8 +2,8 @@
 <html>
 <head>
     <style type="text/css">
-      .svgmusic {margin:0; width:1000px; height:450px;}
-      .unit {padding:0px; bottom-margin:0; margin:0px; background:blue; height:450px;}
+      .svgmusic {margin:0; width:1000px; height:330px;}
+      .unit {padding:0px; bottom-margin:0; margin:0px; background:blue; height:330px;}
     </style>
 </head>
 
--- a/www/m/score.html	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/score.html	Sat Sep 08 08:25:19 2012 +0000
@@ -1,50 +1,29 @@
 <!DOCTYPE html>
 <html>
 <head>
+  <script src="/socket.io/socket.io.js"></script>
   <meta charset="UTF-8">  
   <title>score@nodescore</title>
   
   <link rel="shortcut icon" href="/kiben_favicon.ico" type="image/x-icon" />
 
-
-  <link href="css/nodescore.css" rel="stylesheet">
-  <link href="css/chat.css" rel="stylesheet">
+  <link href="css/nodescore-tablet.css" rel="stylesheet">
+  <link href="css/chat-tablet.css" rel="stylesheet">
   <link href="css/menu.css" rel="stylesheet">
 
   <script src="js/jquery-1.7.1.min.js"></script>  
-  <script src="/socket.io/socket.io.js"></script>
-  <script src="js/nodescore-client.js"></script>
-
+  <script src="js/nodescore-slides.js"></script>
 
 </head>
 
-<body onload='document.getElementById("countinnumber").style.visibility="hidden";'>
+<body>
 
   <input type="hidden" id="group" value='1'> 
+  <div class="outermaster">     
 
-
+    <div id="live"> </div>    
   
-  <div class="outermaster"> 
-    <div style="position:absolute; 
-		width:97%;
-		padding: 0px 0px 0px 0px ;
-		margin:0 0 0 0px; 
-		left:14px; top:12px; 
-		border:2px solid white; 
-		border-radius:15px;
-		opacity:0.5;
-		">
- 
-      <h1 style="background:transparent;
-		 text-align:center;
-		 margin:0px 0px 0px 0px; 
-		 padding: 0px 0px 0px 0px ;
-		 opacity: 1;
-		 ">static notation demo  + + + n o d e s c o r e</h1>
-    </div>
-    <div id="countinnumber"></div>    
-    <div id="live"> </div>    
-    
+    <div id="info">
     <div id="comms"> 
       <div id="chat" title="type here to chat with others connected to network" >
 	<div id="nickname" title="type your login name and press enter" >
@@ -67,53 +46,57 @@
 	</form>
       </div>
     </div>    
-      
-    <div id="midcomms">
-      <h2 id="counttitle" style="padding-top:9px; margin:0;">...</h2>
-      <p id="count" style="color:white">...</p>
-      <div id="totalcountdown">...</div>
+  
+    <div id="midfoot">
+
+      <div id="midcomms">
+	<div id="counttitle" style="display:inline;"></div>
+	<div id="count" style="color:white"></div>
+      </div>
+
+      <div id="remainingtime">
+	next in:
+	<div id="totalcountdown">.</div>
+      </div>
+
+      <div class="metrocase" id="metro">
+	<div id="metronome0"></div>
+      </div>
+
+      <div id="timeinfo">
+		<div id="datetime"></div>
+	<div id="client_chronometer"  style="z-index: 2;">00:00:00.0</div>      
+	<div id="client_latency">Latency: 0ms</div>
+      </div>
+
+      <div id="current">
+	<script type="text/javascript">
+	  function setPart(sel) {
+	  var value = sel.options[sel.selectedIndex].value;  
+	  document.getElementById('group').value=value; 
+	  //$('div#current').text('GROUP ' +value).text='value';
+	  }
+	</script>
+	<div>
+	  <select id="setPart" onchange="setPart(this)">
+	    <option value="1">Stream 01</option>
+	    <option value="2">Stream 02</option>
+	    <option value="3">Stream 03</option>
+	    <option value="4">Stream 04</option>
+	  </select>
+	</div>
+      </div>      
+
+
+    </div>
+    
+
+    <div id="preview"></div>
+    
     </div>    
     
-    <div id="preview">
-    </div>    
-    
-    <div class="footdata">
-      
-      <div class="metrocase" id="metro">
-	<div id="metronome0"></div>
-	<div id="metronome1"></div>
-	<div id="metronome2"></div>
-	<div id="metronome3"></div>
-      </div>
-      
-      <div id="current">GROUP: 1</div>    
-      <div id="client_latency">Latency: 0ms</div>     
-      <div id="datetime"></div>
-      <div id="client_chronometer"  style="z-index: 2;">00:00:00.0</div>    
-      
-    </div>
-
-  </div>
-
-    <ul id="nav"> 
-      <li><a href="javascript:void(0)">Menu</a>
-	<ul>
-	  <li><a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='3'">SELECT PART:</a>
-	    <ul>
-	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='1'; $('div#current').text('GROUP 1').text='1'">GROUP 1</a>
-	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='2'; $('div#current').text('GROUP 2').text='2'">GROUP 2</a>
-	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='3'; $('div#current').text('GROUP 3').text='3'">GROUP 3</a>
-	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='4'; $('div#current').text('GROUP 4').text='4'">GROUP 4</a>
-	    </ul>
-	  </li> 
-	  <li><a href="http://nodescore.kiben.net">help</a></li>
-	  <li><a href="http://nodescore.kiben.net:8889/m/controls.html" target="_blank">control panel</a></li>
-	</ul>
-      </li>
-    </ul>
-
- 
-
+  
+</div>
 
 </body>
 </html>
--- a/www/m/slides.html	Tue Sep 04 07:25:49 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,103 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="UTF-8">  
-  <title>score@nodescore</title>
-  
-  <link rel="shortcut icon" href="/kiben_favicon.ico" type="image/x-icon" />
-
-  <link href="css/nodescore-tablet.css" rel="stylesheet">
-  <link href="css/chat-tablet.css" rel="stylesheet">
-  <link href="css/menu.css" rel="stylesheet">
-
-  <script src="js/jquery-1.7.1.min.js"></script>  
-  <script src="/socket.io/socket.io.js"></script>
-  <script src="js/nodescore-slides.js"></script>
-
-
-</head>
-
-<body>
-
-  <input type="hidden" id="group" value='1'> 
-  <div class="outermaster">     
-
-    <div id="live"> </div>    
-  
-    <div id="info">
-    <div id="comms"> 
-      <div id="chat" title="type here to chat with others connected to network" >
-	<div id="nickname" title="type your login name and press enter" >
-	  <form id="set-nickname" class="wrap">
-	    <p>LOGIN:</p>
-	    <input id="nick">
-	    <p id="nickname-err">Nickname already in use</p>
-	  </form>
-	</div>
-	<div id="connecting">
-	  <div class="wrap">Connecting to socket.io server</div>
-	</div>
-	<div id="messages">
-	  <div id="nicknames"></div>
-	  <div id="lines"></div>
-	</div>
-	<form id="send-message">
-	  <input id="message">
-	  <button>Send</button>
-	</form>
-      </div>
-    </div>    
-  
-    <div id="midfoot">
-
-      <div id="midcomms">
-	<div id="counttitle" style="display:inline;"></div>
-	<div id="count" style="color:white"></div>
-      </div>
-
-      <div id="remainingtime">
-	next in:
-	<div id="totalcountdown">.</div>
-      </div>
-
-      <div class="metrocase" id="metro">
-	<div id="metronome0"></div>
-      </div>
-
-      <div id="timeinfo">
-	
-	<div id="client_chronometer"  style="z-index: 2;">00:00:00.0</div>      
-	<div id="client_latency">Latency: 0ms</div>
-      </div>
-
-      <div id="current">
-	<script type="text/javascript">
-	  function setPart(sel) {
-	  var value = sel.options[sel.selectedIndex].value;  
-	  document.getElementById('group').value=value; 
-	  //$('div#current').text('GROUP ' +value).text='value';
-	  }
-	</script>
-	<div>
-	  <select id="setPart" onchange="setPart(this)">
-	    <option value="1">Part 1</option>
-	    <option value="2">Part 2</option>
-	    <option value="3">Part 3</option>
-	    <option value="4">Part 4</option>
-	  </select>
-	</div>
-      </div>      
-
-
-    </div>
-    
-
-    <div id="preview"></div>
-    
-    </div>    
-    
-  
-</div>
-
-</body>
-</html>
--- a/www/m/svg/12_7_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/12_7_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,62 +1,34 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 21.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 20.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 16.6808)" x="11.7110" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="18.3359" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="18.3359" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="25.4609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="25.4609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="25.5787" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="32.4310" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="39.4381" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="39.4381" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="39.4381" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="39.5559" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="46.6809" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.7528, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.3027, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 11.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 10.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 6.1779)" x="34.1790" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 6.1779)" x="49.1852" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.1779)" x="49.3030" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(50.0364, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(40.1778, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(51.4864, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.4745, 6.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.6278, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 20.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(2.8084, 10.1779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.5256, 15.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.9006, 16.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1648" y2="-0.0000" stroke-dasharray="0.406400191485423,0.59059515579403"/>
-<line transform="translate(56.7277, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(33.3528, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(21.5112, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.6232, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.4492, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.3625, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.9245, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.2125, 5.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.5028, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.2006, 14.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.6506, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-12</tspan>
-</text>
+<path transform="translate(29.0732, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/13_6_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/13_6_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,66 +1,35 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 16.6808)" x="11.7026" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="11.7026" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="18.8193" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="18.8193" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="18.9371" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="25.7810" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="32.7798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="32.7798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="32.7798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="32.8976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="40.0143" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="46.5798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="46.5798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="46.5798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="46.6976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 21.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 20.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.7528, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(48.7694, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.0861, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 20.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 11.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 10.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 6.1779)" x="27.0920" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 6.1779)" x="42.0816" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.1779)" x="42.1994" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.5031, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3828, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 10.1779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(33.5195, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(21.9946, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.1255, 5.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.4409, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.8291, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.9328, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(21.0089, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.8923, 15.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1731" y2="-0.0000" stroke-dasharray="0.406455747040979,0.590724785423659"/>
-<line transform="translate(56.7361, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.9695, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.7028, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(40.6361, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(35.3791, 6.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.8528, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.5589, 14.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(29.2755, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.4864, 6.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(20.5445, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-13</tspan>
-</text>
 </svg>
--- a/www/m/svg/14_1_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/14_1_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,48 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 12.5874)" x="11.9811" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="11.9811" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="12.0989" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="18.6261" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.6261" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="18.6261" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.0211" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.0211" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="31.9829" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="31.9829" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="32.1007" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="38.6279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="38.6279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.0230" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.0230" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.1407" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.2126, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.8175, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.0912, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.3316, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(13.0207, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(14.0765, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.1707, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.8157, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.7626, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2265, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.2361, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.6412, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(33.1558, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(34.1725, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.2108, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4571, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-14</tspan>
-</text>
+<path transform="translate(35.3053, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(36.3220, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.9957, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/15_0_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/15_0_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,46 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.5874)" x="11.8956" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="11.8956" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="11.8956" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="18.2053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.2053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.0149" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.0149" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="25.0149" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="31.5745" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="31.5745" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="38.8842" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="38.8842" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.0019" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.1938" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.3116" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3834, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(39.6238, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.0738, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1171, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.3949, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0853, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.7642, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.9334, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(41.9205, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.2045, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-15</tspan>
-</text>
+<path transform="translate(43.3705, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3805, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.6339, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.6238, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.6671, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(28.6272, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/16_2_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/16_2_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,34 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.6411)" x="18.1229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6411)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6411)" x="46.3940" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 12.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4658, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(39.9178, 12.6411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1995, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.2144, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 9.6411) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(20.3125, 14.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.1309, 13.1411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(27.5536, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0441, 12.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0993, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.3678, 12.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.3158, 13.6411) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(14.5927, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.2981, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.9590, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.6644, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.0495, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.5809, 13.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4571, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-16</tspan>
-</text>
+<path transform="translate(29.0036, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/17_3_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/17_3_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,29 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3209, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(40.9800, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.7074, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.1165, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.3892, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.8709, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.0546, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(43.2767, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.6930, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.6651, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.2488, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.6046, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(32.9392, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(34.7988, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.0483, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4950, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-17</tspan>
-</text>
+<path transform="translate(28.4709, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/18_4_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/18_4_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,48 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.4874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="18.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="18.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="25.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="25.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="25.4287" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="32.5526" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="32.6704" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="39.5215" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="39.5215" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="39.5215" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="39.6393" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="46.4476" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.5028, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(48.5194, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.5611, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.2620, 9.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(51.2787, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.8962, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(41.7111, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.2589, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.0506, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(21.2190, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.4348, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0173, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.7422, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.2922, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(14.5531, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.5507, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.0462, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.1007, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.5006, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-18</tspan>
-</text>
+<path transform="translate(28.8848, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/19_5_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/19_5_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,48 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.4874)" x="11.8672" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="11.8672" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="11.8672" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="18.3984" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="18.3984" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="18.3984" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="24.6797" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="24.6797" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="31.9609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="31.9609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="32.0787" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="39.2421" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="39.3599" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="46.2506" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="46.2506" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="46.2506" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="46.3684" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4403, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(39.9818, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1995, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.2144, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(20.5881, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0569, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(32.7005, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(21.5481, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5927, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.5090, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.1505, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.4318, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.2902, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(35.9590, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.6644, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.0495, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(26.8693, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-19</tspan>
-</text>
+<path transform="translate(28.2536, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/20_5_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/20_5_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,54 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.0874)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="18.9020" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="19.0198" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="26.0600" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="26.0600" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="26.1778" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="33.0477" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="33.1655" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="39.7724" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="39.7724" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="39.8902" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="46.4970" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="46.6148" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.6700, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(48.6867, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.9620, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 14.0874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(34.0873, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.4204, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.2587, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.0773, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.2223, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.4823, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.0970, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.2420, 5.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(35.9470, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(21.0917, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.9337, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.7723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1318" y2="-0.0000" stroke-dasharray="0.406179946064783,0.590081249812537"/>
-<line transform="translate(56.6947, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.2373, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.7997, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(29.6723, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.4037, 5.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(20.6273, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(40.9453, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.2497, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.6417, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-20</tspan>
-</text>
 </svg>
--- a/www/m/svg/21_4_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/21_4_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,60 +1,36 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 16.0874)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.0874)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.0874)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="39.2959" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="46.3940" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 21.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 20.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4658, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(39.9178, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.3678, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 20.0874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 12.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 11.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 10.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 7.6779)" x="19.4969" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 7.6779)" x="33.6578" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 6.6779)" x="33.6578" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 7.6779)" x="41.3632" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 6.6779)" x="41.3632" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.6779)" x="41.4810" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 7.6779)" x="48.8983" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 6.6779)" x="48.8983" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.6779)" x="49.0161" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.1995, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 11.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.8125, 12.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0441, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0993, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.3158, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(42.2144, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(43.6644, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.7981, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5927, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.9590, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.0495, 5.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.3309, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-21</tspan>
-</text>
+<path transform="translate(28.7536, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/22_3_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/22_3_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,61 +1,33 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 14.6808)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="11.8618" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="18.4687" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="18.4687" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="18.5865" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="25.6267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="25.6267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="25.7445" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="32.7847" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="32.9025" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="39.5094" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="39.5094" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="39.6272" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="46.4970" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="46.4970" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="46.6148" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.5367, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.4153, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(48.6867, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.6990, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(51.5653, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.2131, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.6583, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.7837, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(22.0787, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.8395, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(13.9337, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1318" y2="-0.0000" stroke-dasharray="0.406179946064784,0.590081249812537"/>
-<line transform="translate(56.6947, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.9744, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.3663, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(14.9895, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.1238, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.1513, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(33.5243, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(35.6738, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.8163, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.6824, 12.1808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(19.6417, 12.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-22</tspan>
-</text>
+<path transform="translate(29.6013, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.1964, 5.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(21.0620, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/23_2_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/23_2_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,50 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="12.0051" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.6886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="18.6886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="18.6886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="25.2399" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="25.2399" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="38.9091" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="39.0269" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="46.3282" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4001, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.0821, 10.5850) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(41.0988, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 13.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(12.9270, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="34.0791" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.2787, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.5962, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(13.9827, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.0770, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.2700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9885" y2="-0.0000" stroke-dasharray="0.405224672963399,0.587852279242641"/>
-<line transform="translate(56.5514, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.2308, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.9501, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.1328, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.2986, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.8287, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.4295, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.8782, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-23</tspan>
-</text>
+<path transform="translate(36.3803, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.6128, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.2145, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/24_0_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/24_0_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,55 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 14.5808)" x="11.9070" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5808)" x="12.0248" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5808)" x="18.7279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5808)" x="18.7279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5808)" x="18.7279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5808)" x="25.8786" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5808)" x="25.8786" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5808)" x="25.9964" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5808)" x="39.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5808)" x="39.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5808)" x="46.2889" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 19.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3608, 14.0808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.2101, 13.0808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.5808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.2820, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.7881, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.6466, 13.5808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(13.8515, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0966, 13.5808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9688" y2="-0.0000" stroke-dasharray="0.405093535664484,0.587546292211839"/>
-<line transform="translate(56.5317, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.8892, 11.5808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.9182, 12.5808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.3015, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.4657, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.1320, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(47.2108, 14.0808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(37.1238, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.8096, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(28.0682, 12.5808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.9176, 12.0808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-24</tspan>
-</text>
+<path transform="translate(29.9596, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/25_1_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/25_1_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,58 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 14.9874)" x="11.9823" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="11.9823" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="11.9823" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="12.1001" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="32.5007" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="32.5007" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="32.5007" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="32.6185" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="39.7420" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.2102, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.6639, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1314, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.2418, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(20.8182, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.7219, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(13.9268, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.1719, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.5404, 11.9874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.3768, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.3663, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.7750, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.6904, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.8139, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.4644, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-25</tspan>
-</text>
+<path transform="translate(36.9250, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3918, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.3558, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/26_6_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/26_6_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,27 +1,25 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.2495, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.1729, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(50.9832, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.4696, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(14.1523, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(21.0288, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.6229, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.2463, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.4054, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-26</tspan>
-</text>
+<path transform="translate(14.7009, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.0145, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.9196, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.1060, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.8281, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/27_7_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/27_7_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,34 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 10.9874)" x="26.4075" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="39.3724" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4200, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.5620, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 14.9874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1537, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8587, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(21.3583, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.3293, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(28.7520, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.0670, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.7707, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.4033, 11.4874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.4793, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9083, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(14.6156, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.3440, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.6303, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.1370, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.9020, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8940, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-27</tspan>
-</text>
 </svg>
--- a/www/m/svg/28_7_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/28_7_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,32 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 14.8284)" x="46.4139" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 13.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4858, 14.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.3976, 13.3284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.8284) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(33.4392, 13.8284) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.2195, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.6943, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.1079, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5827, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.0695, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(35.2988, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(21.1222, 12.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0341, 11.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.3358, 14.8284) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(36.7488, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.0533, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.9579, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.8892, 13.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.6307, 12.3284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9722, 12.8284) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-28</tspan>
-</text>
 </svg>
--- a/www/m/svg/29_6_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/29_6_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,51 +1,32 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.5874)" x="11.9438" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.8630" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="25.9808" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="32.6030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="32.6030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="32.6030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.8430" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.9608" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.5227, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.0327, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(12.5657, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="34.7261" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.4439, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.6106, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.6335, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7705, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0157, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0497" y2="-0.0000" stroke-dasharray="0.405633225529568,0.588805568563702"/>
-<line transform="translate(56.6127, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(28.0526, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.7926, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.9026, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.2205, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.0273, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.7940, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(40.5826, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(29.9440, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.1606, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(19.9353, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(21.4835, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(21.0853, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-29</tspan>
-</text>
 </svg>
--- a/www/m/svg/30_1_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/30_1_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,38 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.2158, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(39.6724, 13.1808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.9495, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(40.8224, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.5625, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.1691, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.8963" y2="-0.0000" stroke-dasharray="0.404610496008667,0.586419199681598"/>
-<line transform="translate(56.4593, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(33.5993, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.7658, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(41.9691, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(43.1191, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.5481, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.7177, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.4590, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.4995, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.2059, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-30</tspan>
-</text>
+<path transform="translate(28.6286, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/31_0_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/31_0_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,33 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.2033, 12.1443) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(49.9370, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(48.6533, 12.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.4787, 12.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.6443) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.1250, 11.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.2503, 10.6443) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(51.3870, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.7753, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.1106, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7989, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.7003, 10.6443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.1540, 11.1443) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.2489, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.0137, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(35.3040, 11.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.8497, 10.1443) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(37.1637, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.2723, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(28.2997, 10.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4571, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-31</tspan>
-</text>
+<path transform="translate(29.7223, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/32_2_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/32_2_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,48 +1,32 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.4874)" x="11.8489" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="11.8489" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="11.9667" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="19.1119" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="19.2297" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="26.1021" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="26.1021" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="26.1021" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="26.2199" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="32.9317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="33.0495" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="39.1946" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="46.2872" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="46.4050" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4768, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.3842, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.3015, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.5886, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.4236, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.0006, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.8241, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7806, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0386, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(35.1213, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.1417, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.2306, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.4072, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.0971, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.1047, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.2917, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.8515, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(36.3905, 9.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(30.2471, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3740, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(47.3268, 12.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(50.2736, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-32</tspan>
-</text>
 </svg>
--- a/www/m/svg/33_3_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/33_3_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,37 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3319, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.2526, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(41.2693, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 11.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.4464, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.1110, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 17.6723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 16.8757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9544" y2="-0.0000" stroke-dasharray="0.404997402484301,0.587321981458078"/>
-<line transform="translate(56.5173, 16.8757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 16.8757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.3672, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.1819, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.0912, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.4853, 9.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.4065, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.6468, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.9412, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(28.0318, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9964, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(36.1757, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.5019, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.4161, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.9565, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-33</tspan>
-</text>
 </svg>
--- a/www/m/svg/34_4_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/34_4_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,44 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.1808)" x="12.0051" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.1808)" x="26.4899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.1808)" x="26.6077" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4001, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.8488, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.5308, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.2787, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3629, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.9270, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(22.7986, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9827, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.0770, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9885" y2="-0.0000" stroke-dasharray="0.405224678575072,0.587852292336543"/>
-<line transform="translate(56.5514, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.5475, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.2295, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.1328, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.6970, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.0145, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(28.6796, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9282, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(36.6803, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(30.4645, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3486, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(21.3783, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-34</tspan>
-</text>
 </svg>
--- a/www/m/svg/35_5_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/35_5_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,39 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.0874)" x="11.7623" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="11.7623" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="25.3649" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="46.4605" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="46.5783" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(47.2001, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(49.9338, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(48.6501, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.4571, 11.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.0874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(51.3838, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.7538, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(21.1283, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.9520, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.7308, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.4738, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.2808, 12.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(22.1139, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5006, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.5905, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.7705, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.1405, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.5545, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.6782, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(28.9772, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6639, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-35</tspan>
-</text>
 </svg>
--- a/www/m/svg/36_5_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/36_5_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,50 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="18.9525" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="18.9525" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.9525" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="19.0703" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="25.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="25.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="25.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="32.4894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="32.4894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="32.6071" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="39.0078" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="39.0078" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="46.3940" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4658, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.1974, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(33.2290, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1995, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.4941, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.1278, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5927, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.7495, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(21.1422, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0441, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.0158, 12.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(35.0887, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.6790, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.4106, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9922, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(36.5387, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.8332, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.9778, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-36</tspan>
-</text>
 </svg>
--- a/www/m/svg/37_4_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/37_4_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,31 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.5908, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.1053, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.3245, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.4019, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(26.4434, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(27.8661, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(13.9816, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.6875, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.3493, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.5553, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.4408, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(14.5302, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.6731, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.2090, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8519, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.1745, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.8934, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-37</tspan>
-</text>
+<path transform="translate(29.3161, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/38_3_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/38_3_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,32 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.5908, 11.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(48.6075, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.6933, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.3245, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(51.3412, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.9899, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.1708, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.9732, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.8160, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.8433, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.3660, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.1565, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5218, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.6757, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.1399, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.2257, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.6184, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.7208, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(29.0411, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.7065, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-38</tspan>
-</text>
 </svg>
--- a/www/m/svg/39_2_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/39_2_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,47 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.5874)" x="18.4187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.4187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.5850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.5850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="25.7028" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="32.5810" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="32.5810" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="32.6988" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.4318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.5982" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.2200, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(49.9537, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(48.6700, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.4870, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(51.4037, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.7837, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(41.5037, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.6083, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.3247, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(21.5940, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.7473, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(13.9420, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.7707, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.6207, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(14.4906, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.6303, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8003, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.4803, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.7747, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-39</tspan>
-</text>
+<path transform="translate(29.1973, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/40_0_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/40_0_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,45 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="25.0788" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="25.0788" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="32.5275" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="38.9906" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3408, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.1803, 11.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 13.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(20.9375, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.1066, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.2700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9588" y2="-0.0000" stroke-dasharray="0.405027162675333,0.58739142190382"/>
-<line transform="translate(56.5218, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(33.1493, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="19.6219" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.0745, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(43.4769, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.9231, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.6552, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.4590, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.9245, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(35.0090, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.5993, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.1908, 12.0850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.2684, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-40</tspan>
-</text>
+<path transform="translate(28.6911, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/41_1_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/41_1_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,49 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.5874)" x="11.7836" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="11.7836" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="18.9812" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.9812" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="19.0990" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="26.0084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="26.0084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="26.1262" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="32.7727" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="32.7727" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="32.8905" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="39.9703" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="40.0881" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.4179" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.4179" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.6075, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.1599, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.3412, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.4566, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(21.1708, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.0481, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(22.1565, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.4707, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(13.9732, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.7099, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(14.5218, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.0066, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.9623, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.9457, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.1981, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.7208, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(36.8220, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.8053, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.6207, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.7065, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-41</tspan>
-</text>
 </svg>
--- a/www/m/svg/42_6_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/42_6_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,50 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="25.9084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="25.9084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="25.9084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="26.0262" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="32.2393" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="32.2393" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="32.2393" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="39.5703" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="39.5703" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="39.6881" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3408, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.3099, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1013, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(42.6468, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.7599, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(26.9481, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(44.0968, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.3305, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.1066, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.9375, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.4290, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(28.0981, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-42</tspan>
-</text>
+<path transform="translate(14.6418, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.8963, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.3422, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.4805, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/43_7_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/43_7_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,49 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 14.6808)" x="11.8857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="11.8857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="12.0035" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="19.1854" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="19.3032" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="25.4850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="32.7321" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4033, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.9533, 15.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(49.8745, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.1037, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(51.3245, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.6816, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.6253, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(22.9231, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.8302, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0753, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(21.3750, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9901" y2="-0.0000" stroke-dasharray="0.405235501620339,0.587877546108833"/>
-<line transform="translate(56.5530, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.8040, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.6540, 14.1808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.2802, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.8887, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.6747, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9250, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(37.0387, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.5661, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.4731, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-43</tspan>
-</text>
 </svg>
--- a/www/m/svg/44_7_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/44_7_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,42 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.5850)" x="11.8248" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="11.9426" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.5636" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="18.5636" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="18.5636" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="25.3691" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="25.4869" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="39.0967" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(47.0751, 12.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(49.9963, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(48.5251, 12.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.2863, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(51.4463, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8642, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.7532, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.5644, 10.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(22.3014, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7693, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0145, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.3475, 12.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2193, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.5822, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.7975, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.5420, 10.5850) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(27.5587, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.3812, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-44</tspan>
-</text>
+<path transform="translate(37.0322, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.4334, 7.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.4501, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/45_6_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/45_6_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,38 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.1886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="18.1886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4001, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.0821, 12.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1338, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.3788, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.3782, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.2295, 12.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(27.6522, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0770, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.2308, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.5321, 12.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.3834, 12.0850) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(27.6795, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-45</tspan>
-</text>
+<path transform="translate(14.6256, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3639, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.0905, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8288, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.1171, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.1022, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/46_1_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/46_1_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,65 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 21.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 20.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 16.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="12.0917" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="19.2069" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="26.1615" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="39.7670" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.2268, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.8389, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.2788, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.7136, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 11.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 10.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 6.0779)" x="20.6435" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.1480, 8.5779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.4168, 7.5779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 10.0779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.8269, 5.5779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9184, 7.0779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.1636, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.6213, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.2167, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.2334, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.6889, 12.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.3684, 7.0779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.8560, 8.0779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.1081, 7.0779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(30.1248, 7.0779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.2668, 7.5779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(20.1288, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(21.6769, 5.5779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-46</tspan>
-</text>
 </svg>
--- a/www/m/svg/47_0_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/47_0_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,42 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.4874)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="12.1285" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="18.4354" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="18.4354" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="24.8600" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="32.1143" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="32.2321" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="38.5390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="46.0815" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.1533, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.7287, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(13.0503, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 10.6779)" x="40.9415" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 10.6779)" x="48.8485" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.0320, 10.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.2427, 10.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(14.1061, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.2003, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.6250, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.7033, 13.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2561, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.0454, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.5819, 10.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(33.1540, 12.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(35.3035, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.3040, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.0497, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4571, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-47</tspan>
-</text>
+<path transform="translate(36.4535, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.8346, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/48_2_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/48_2_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,40 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.1808)" x="12.1044" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.1808)" x="12.2222" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(47.9658, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.6178, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.8870, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.8441, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(43.1957, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0489, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.2941, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.7713" y2="-0.0000" stroke-dasharray="0.410515238194617,0.600196931448816"/>
-<line transform="translate(56.3343, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.0993, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.8158, 14.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.4989, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.3606, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.3340, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.7370, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.3309, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.8125, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-48</tspan>
-</text>
+<path transform="translate(29.2223, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/49_3_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/49_3_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,41 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.1808)" x="20.0011" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.1808)" x="20.1189" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3376, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.0051, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.0713, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3017, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(13.4082, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(13.9568, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.8582, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9572" y2="-0.0000" stroke-dasharray="0.405016345241738,0.587366181225432"/>
-<line transform="translate(56.5201, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.4225, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(28.0733, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(29.0900, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.7408, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.4068, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(23.1764, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.2822, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.4959, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(30.5126, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.7264, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(22.1908, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-49</tspan>
-</text>
 </svg>
--- a/www/m/svg/50_4_6.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/50_4_6.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,52 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.5874)" x="11.8790" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="11.9968" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.6719" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="18.6719" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="18.6719" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.9649" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="26.0827" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="32.5079" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="32.5079" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="32.5079" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.3675" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.4853" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.2271" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.3449" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4168, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.4001, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(40.5405, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(41.5571, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(12.9186, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="19.9807" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(50.2787, 5.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(51.2954, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.0545, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.2819, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9744, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.0686, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9968" y2="-0.0000" stroke-dasharray="0.405280228518955,0.58798190887227"/>
-<line transform="translate(56.5597, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.6975, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.7045, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.1244, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.0712, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.8470, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.4895, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(28.1545, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.8616, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-50</tspan>
-</text>
+<path transform="translate(29.9395, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/51_5_5.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/51_5_5.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,51 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.8591" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="18.9769" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.6319" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="25.6319" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="25.6319" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="32.9048" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="33.0226" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.4277" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.4277" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="39.4277" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.2673" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.3851" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4569, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.4403, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(41.6174, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(12.8985, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="27.3053" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(50.3189, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(51.3355, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.1314, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.4691, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9543, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.0485, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0169" y2="-0.0000" stroke-dasharray="0.405414069150967,0.5882942036803"/>
-<line transform="translate(56.5798, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.0945, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.6445, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.1043, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.7940, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.8216, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.8987, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(37.2440, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.6065, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3191, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(21.0487, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4761, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-51</tspan>
-</text>
 </svg>
--- a/www/m/svg/52_5_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/52_5_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,29 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3834, 11.0157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 11.0157) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(41.0738, 11.0157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.3949, 13.5157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0853, 12.5157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.5142, 10.5157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.9334, 11.0157) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1171, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(43.3705, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3805, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.6339, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.3738, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.6671, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(33.0642, 10.5157) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(34.9238, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.2045, 12.0157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-52</tspan>
-</text>
+<path transform="translate(28.6272, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/53_4_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/53_4_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,46 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.4874)" x="11.9581" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="11.9581" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="11.9581" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="12.0759" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="18.3303" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="18.3303" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="18.3303" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="25.7024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="25.7024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="25.8202" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="32.3245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="32.3245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="39.6967" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="39.8145" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.4874)" x="46.0688" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.2584, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.4363, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 10.6779)" x="48.8358" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.1370, 10.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.9503, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(12.9978, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(14.0536, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.1478, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.5199, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.4420, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2036, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.9403, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.2270, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.5142, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.8863, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.8920, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-53</tspan>
-</text>
+<path transform="translate(36.6637, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.4004, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.6770, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/54_3_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/54_3_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,44 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 12.5874)" x="11.8461" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.1163" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.1163" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="32.3764" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="32.3764" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="32.4942" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="39.4661" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.4661" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.5839" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.4107" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4825, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.5058, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.2162, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.8024, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(20.5458, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0357, 12.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.1160, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(21.5315, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5843, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.9757, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.5660, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.6558, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.4658, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(27.3059, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-54</tspan>
-</text>
+<path transform="translate(36.4257, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.9524, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(50.1995, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.7286, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/55_2_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/55_2_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,34 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 12.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.6411)" x="33.1988" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6411)" x="39.9318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.6700, 12.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.0037, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 9.6411) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.1083, 13.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.2420, 12.6411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.4037, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3004, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.0940, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7906, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.6920, 12.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(35.2707, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.8247, 13.1411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2406, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.1303, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.2473, 9.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.1207, 13.6411) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(35.9803, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(40.9870, 13.6411) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.2747, 13.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-55</tspan>
-</text>
+<path transform="translate(43.2837, 9.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.6973, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/56_0_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/56_0_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,51 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 12.5874)" x="11.8461" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="11.8461" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="11.9639" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="18.9358" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.9358" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="19.0536" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.7626" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.7626" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="25.8804" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="33.0227" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="33.1405" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="39.5328" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.5328" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4825, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.7224, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.4037, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3004, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(21.1255, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.5857, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(22.6736, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7906, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0357, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(35.2123, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.9356, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(33.7623, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2406, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.4470, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.8270, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(35.9970, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.9522, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9755, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(29.8436, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.5236, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-56</tspan>
-</text>
 </svg>
--- a/www/m/svg/57_1_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/57_1_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,34 +1,26 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.1959, 11.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.0925, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 10.6779)" x="41.6558" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(50.9296, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.3892, 10.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.5426, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.0850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(14.1790, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.8324, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 16.2700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 15.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.8864" y2="-0.0000" stroke-dasharray="0.404544117407844,0.586264316279678"/>
-<line transform="translate(56.4493, 15.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 15.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.1392, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.7358, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-57</tspan>
-</text>
+<path transform="translate(14.7276, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.8180, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8392, 10.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.9988, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.1584, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/58_6_7.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/58_6_7.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,44 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.1808)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.1808)" x="12.1285" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.1808)" x="18.4354" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.1808)" x="25.8075" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.1533, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.2787, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1013, 10.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.8968, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.7287, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.7503, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(13.9418, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.2003, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.8651" y2="-0.0000" stroke-dasharray="0.404402162675333,0.585933088570487"/>
-<line transform="translate(56.4280, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(34.3040, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.7293, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.3918, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.1463, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.5805, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.8793, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.6250, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-58</tspan>
-</text>
+<path transform="translate(36.5922, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3468, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.7305, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/59_7_4.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/59_7_4.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,53 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="32.4893" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="32.4893" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="32.4893" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5850)" x="32.6071" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="38.8203" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="38.8203" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="38.8203" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5850)" x="46.2690" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.3408, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.0099, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(20.6875, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.1066, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.6790, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.8908, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.0745, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(43.3066, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.6731, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.6552, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.5387, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.6245, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(33.5290, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(35.3887, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(27.5184, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-59</tspan>
-</text>
+<path transform="translate(28.9411, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/60_7_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/60_7_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,50 +1,34 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.5874)" x="19.5588" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="33.1030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="33.2208" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.6555" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.6555" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="39.6555" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.7080" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.8258" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.8977, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.4477, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="41.8790" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.6570, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.1802, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.5907, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.6640, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.8452, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(13.1282, 13.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.1140, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.2035, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.7471, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(36.0535, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(29.8971, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.1407, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.5782, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.2372" y2="-0.0000" stroke-dasharray="0.406883236752913,0.591722261418172"/>
-<line transform="translate(56.8002, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.2926, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.3629, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.1426, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(28.5129, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.1807, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(50.2070, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(21.6307, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-60</tspan>
-</text>
 </svg>
--- a/www/m/svg/61_6_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/61_6_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,65 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 20.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 15.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="12.1384" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="39.3770" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.1334, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 17.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(39.9988, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="27.1697" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.0546, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(42.5767, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(41.4488, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.7603, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(44.0267, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9651, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.2103, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.8949, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0142, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.5795, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-61</tspan>
-</text>
+<path transform="translate(15.4151, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.4430, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.2488, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.4709, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/62_1_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/62_1_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,31 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4658, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.0474, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1995, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.3441, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.3125, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0441, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.6493, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.2981, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.5927, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.5090, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(35.0994, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.1974, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.8309, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.8625, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(36.9590, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.4941, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.2536, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8481, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-62</tspan>
-</text>
 </svg>
--- a/www/m/svg/63_0_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/63_0_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,52 +1,32 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.0850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0850)" x="19.2407" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0850)" x="26.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0850)" x="26.3387" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0850)" x="32.9894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0850)" x="32.9894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0850)" x="32.9894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4658, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.9474, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 15.0850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.3125, 13.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.0441, 13.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 20.7700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 19.9733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0213" y2="-0.0000" stroke-dasharray="0.405443829342,0.588363644126043"/>
-<line transform="translate(56.5843, 19.9733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 19.9733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.1790, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.2606, 12.0850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<line transform="translate(2.0084, 10.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 5.6755)" x="34.7374" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.6755)" x="41.9429" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 4.6755)" x="41.9429" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.6755)" x="48.8983" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 4.6755)" x="48.8983" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.1995, 4.6755) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 9.6755) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(44.2441, 4.1755) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.6832, 7.1755) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(28.4106, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.8625, 13.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(14.5927, 8.1755) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.2981, 8.1755) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.8332, 7.1755) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.0387, 5.6755) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8481, 8.1755) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-63</tspan>
-</text>
 </svg>
--- a/www/m/svg/64_2_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/64_2_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,45 +1,26 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.4874)" x="12.0024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="12.0024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="19.2483" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="19.2483" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="19.3661" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="25.9147" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="25.9147" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="25.9147" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="32.3310" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="32.3310" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.4874)" x="39.4318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4874)" x="45.9804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4874)" x="45.9804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.1700, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.4870, 10.4874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(41.5037, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.4874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.9037, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(21.4380, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.1920, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.5207, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(28.1043, 9.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.2880, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(42.7837, 6.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(43.8003, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.4236, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.7406, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.3803, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.5270, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.2736, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.3812, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-64</tspan>
-</text>
 </svg>
--- a/www/m/svg/65_3_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/65_3_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,67 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 16.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="19.1871" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="26.4287" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="33.3976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="40.2059" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 21.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 20.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.5194, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.2778, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(21.2589, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.0506, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 11.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 10.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.0779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 6.0779)" x="35.1457" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.2531, 8.0779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.5745, 7.0779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 10.0779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.2446, 6.5779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.4732, 7.0779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0173, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.2611, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(35.4695, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.3195, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(14.5659, 7.5779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.5578, 7.0779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(37.3291, 5.5779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.1791, 5.5779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(28.5006, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.8089, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(29.9232, 7.0779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.7945, 6.5779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-65</tspan>
-</text>
 </svg>
--- a/www/m/svg/66_4_0.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/66_4_0.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,27 +1,25 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 10.0874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(48.1334, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(39.9988, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(50.8671, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.2955, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(20.8949, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(14.2103, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.4488, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0142, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.5795, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-66</tspan>
-</text>
+<path transform="translate(14.7589, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.8805, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.7455, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.8738, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.0022, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/67_5_3.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/67_5_3.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,67 +1,35 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 16.6808)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="11.9454" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="18.9144" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="26.0382" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="26.0382" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="26.0382" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="26.1560" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="33.3976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="40.2059" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 16.6808)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 15.6808)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 21.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 20.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.5194, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.2778, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0195, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 11.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 10.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 9.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.1779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 6.1779)" x="20.3509" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 6.1779)" x="35.4029" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<rect transform="translate(2.0084, 5.1779)" x="35.5207" y="-0.1058" width="1.6390" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.4406, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.8557, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.2541, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 20.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<path transform="translate(2.8084, 10.1779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.5673, 14.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(22.5343, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7721, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0173, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.9862, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0481" y2="-0.0000" stroke-dasharray="0.405622408095973,0.588780327885313"/>
-<line transform="translate(56.6111, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.4695, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.7778, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2221, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.7041, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.6692, 6.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(28.2278, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.2611, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(19.8362, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(30.1192, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.8390, 6.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(21.3843, 5.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-67</tspan>
-</text>
 </svg>
--- a/www/m/svg/68_5_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/68_5_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,38 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 12.5874)" x="12.0759" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="25.2024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="38.6966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="38.6966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.5874)" x="46.0688" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.5874)" x="46.0688" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.5874)" x="46.1866" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.2584, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1370, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(40.8863, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(12.9978, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(43.4003, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0536, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.1478, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.5199, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0142, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(46.8084, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2036, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.9403, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.1637, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.6870, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(27.3920, 12.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-68</tspan>
-</text>
+<path transform="translate(29.1770, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/69_4_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/69_4_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,55 +1,32 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.0874)" x="11.8065" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="11.9243" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="19.0270" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="19.0270" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="19.1448" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="26.0772" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="26.1950" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="32.8644" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="32.8644" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="32.9822" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="39.6515" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="39.7693" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.0874)" x="46.3720" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.0874)" x="46.3720" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.0874)" x="46.3720" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.5617, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.8412, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.0373, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(2.6969, 14.0874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(12.5462, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<rect transform="translate(2.0084, 4.6779)" x="49.1816" y="-0.1058" width="1.7568" height="0.2116" ry="0.1058" fill="currentColor"/>
+<path transform="translate(51.4829, 4.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.4191, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.2720, 5.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.7648, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.7510, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(13.9962, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(21.2167, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 19.7723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0693" y2="-0.0000" stroke-dasharray="0.405763273786445,0.589109014496413"/>
-<line transform="translate(56.6322, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.0540, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.1168, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.2010, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.2887, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.0082, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(28.2668, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.8245, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(19.7667, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(30.1582, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.4024, 5.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(21.3148, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-69</tspan>
-</text>
 </svg>
--- a/www/m/svg/70_3_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/70_3_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,38 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.5617, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.5450, 11.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(41.7745, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(13.2962, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(50.2787, 9.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(51.2954, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.0712, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(22.7819, 9.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.8448, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.7462, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 16.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(11.5629, 15.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0693" y2="-0.0000" stroke-dasharray="0.405763273786445,0.589109014496413"/>
-<line transform="translate(56.6322, 15.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 15.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.0540, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.5668, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.5835, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.6463, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.2948, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.9137, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.9895, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(30.0061, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.6319, 9.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(21.7963, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-70</tspan>
-</text>
 </svg>
--- a/www/m/svg/71_2_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/71_2_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,59 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 14.6808)" x="11.7523" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="11.7523" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="11.7523" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="18.9187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="18.9187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="19.0365" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="26.0850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="26.2028" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="32.8180" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="32.8180" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="32.9358" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="39.8140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="39.8140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="39.9318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.6700, 11.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.0037, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.9910, 12.1808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.4037, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.3004, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(21.1083, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(13.9420, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1234" y2="-0.0000" stroke-dasharray="0.406124390509228,0.589951620182908"/>
-<line transform="translate(56.6863, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(40.8537, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(22.0940, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.2473, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.4906, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.1504, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(35.0077, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.8247, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(36.8673, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.8507, 5.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.6973, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6440, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(28.2747, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.6583, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-71</tspan>
-</text>
 </svg>
--- a/www/m/svg/72_0_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/72_0_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,60 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 14.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="25.3857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="25.3857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="25.3857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="25.5035" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="32.4708" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="39.5930" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="39.5930" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="39.5930" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="39.7108" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.5227, 9.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.3326, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.2564, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.6293, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(2.6969, 16.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(20.5057, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.4253, 11.9874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(27.8480, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(14.0157, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(33.3926, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(14.5643, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.4913, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.2523, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(34.5426, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.7827, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.5753, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-72</tspan>
-</text>
+<path transform="translate(36.4023, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.0793, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.9980, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/73_1_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/73_1_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,58 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 14.6808)" x="11.8773" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="11.8773" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="11.9951" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="19.1687" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="19.2865" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="26.0267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="26.0267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="26.1445" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="33.1477" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="33.1477" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="33.2655" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 14.6808)" x="46.2304" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 13.6808)" x="46.2304" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4200, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(42.1287, 11.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.1873, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.3412, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.7066, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(12.6170, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(22.9065, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.8218, 5.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.0670, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9984" y2="-0.0000" stroke-dasharray="0.405291051564222,0.588007162644561"/>
-<line transform="translate(56.5613, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(35.3373, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(27.1997, 12.1808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(28.2163, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(19.9083, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.2719, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(37.5720, 6.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.0911, 5.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(36.4220, 6.1779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(30.1077, 5.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.4565, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(21.3583, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-73</tspan>
-</text>
 </svg>
--- a/www/m/svg/74_6_1.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/74_6_1.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,36 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 10.9874)" x="19.8036" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="32.7060" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.9874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(48.4825, 9.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(40.7058, 11.4874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(2.6969, 14.9874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.2162, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.0024, 8.6779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(13.3357, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(13.8843, 8.6779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.7858, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(21.8755, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(34.8957, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.7224, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(28.1356, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(20.7255, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+<path transform="translate(15.3344, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.8611, 7.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(36.7553, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(44.0191, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(29.5582, 9.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.7111, 7.6779) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
 c-14 0 -25 13 -25 27z" fill="currentColor"/>
-<text transform="translate(30.4761, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-74</tspan>
-</text>
 </svg>
--- a/www/m/svg/75_7_2.svg	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/75_7_2.svg	Sat Sep 08 08:25:19 2012 +0000
@@ -1,30 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="33.00mm" viewBox="0 0 66.9477 22.0927">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(2.0084, 2.6779)" font-family="Century Schoolbook L" font-size="2.1993" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(48.4626, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(41.1925, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
-c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(13.3457, 12.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<line transform="translate(2.0084, 9.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 8.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 7.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 6.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<line transform="translate(2.0084, 5.6779)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1116" stroke="currentColor" x1="0.0558" y1="-0.0000" x2="62.8750" y2="-0.0000"/>
+<path transform="translate(51.1963, 5.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(43.4892, 6.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.8084, 8.6779) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
+c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
+c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
+<path transform="translate(13.8943, 7.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(14.7957, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(21.0658, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(47.0126, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+<path transform="translate(15.3443, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(22.0514, 8.6779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(49.7463, 5.1779) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
 c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
-<path transform="translate(34.4225, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<path transform="translate(26.8858, 12.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
-<path transform="translate(27.9025, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
-<tspan>
-75</tspan>
-</text>
+<path transform="translate(36.2822, 8.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.3084, 7.1779) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.3251, 7.1779) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/svg-stylesheet.css	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/m/svg/svg-stylesheet.css	Sat Sep 08 08:25:19 2012 +0000
@@ -1,6 +1,6 @@
-svg { background-color: black; width:1000px; height:450px; display:block;}
+svg { background-color: black; width:1000px; height:330px; display:block;}
 line { stroke: white; }
-text {   fill: white;}
+text { fill: white;}
 path { stroke: white; fill: white; }
 rect { fill: white; }
 circle { stroke: white; }
Binary file www/m/thumbs/1.png has changed
Binary file www/m/thumbs/2.png has changed
Binary file www/m/thumbs/3.png has changed
Binary file www/m/thumbs/4.png has changed
Binary file www/m/thumbs/5.png has changed
Binary file www/m/thumbs/6.png has changed
--- a/www/p/index.html	Tue Sep 04 07:25:49 2012 +0000
+++ b/www/p/index.html	Sat Sep 08 08:25:19 2012 +0000
@@ -1,12 +1,12 @@
 <!doctype html>  
 <html lang="en">
-	
+
 	<head>
 		<meta charset="utf-8">
 		
 		<title>nodescore</title>
 
-		<meta name="nodescore" content="bla">
+		<meta name="nodescore" content="nodescore">
 		<meta name="author" content="Rob Canning">
 
 		<meta name="apple-mobile-web-app-capable" content="yes" />
@@ -15,7 +15,7 @@
 		<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
 		
 		<link rel="stylesheet" href="css/main.css">
-		<link rel="stylesheet" href="css/theme/default.css" id="theme">
+		<link rel="stylesheet" href="css/theme/sky.css" id="theme">
 
 		<!-- For syntax highlighting -->
 		<link rel="stylesheet" href="lib/css/zenburn.css">
@@ -32,299 +32,277 @@
 	
 	<body>
 		
-		<div class="reveal">
+	  <div class="reveal">
+	    
+	    <!-- Used to fade in a background when a specific slide state is reached -->
+	    <div class="state-background"></div>
+	    
+	    <!-- Any section element inside of this container is displayed as a slide -->
+	    <div class="slides">
+	      <section>
+		
+		<h3>REALTIME WEB TECHNOLOGIES IN THE NETWORKED PERFORMANCE ENVIRONMENT</h3>
+		<p>
+		  
+		  <i><small>- <a href="http://rob.kiben.net">http://rob.kiben.net</a> <a href="rob@kiben.net">rob@kiben.net</a> -</small></i>
+		</p>
+	      </section>
+	      
+	      <section>
+		<h2>NODESCORE</h2>
+		<p>
+		  NodeScore is a web based framework to facilitate networked ensemble performance.
+		</p>
+		<ul>
+		  <li>Scores assembled in HTML5</li>
+		  <li>Musicians displays controled remotely</li>
+		  <li>Not all-in-one solution - Modular Approach</li>
+		  <li>Runs alongside other streams: media, OSC automation etc.</li>
+		</ul>
 
-			<!-- Used to fade in a background when a specific slide state is reached -->
-			<div class="state-background"></div>
-			
-			<!-- Any section element inside of this container is displayed as a slide -->
-			<div class="slides">
-				<section>
-					<h1>ICMC 2012</h1>
-					<h3>REALTIME WEB TECHNOLOGIES IN THE NETWORKED PERFORMANCE ENVIRONMENT</h3>
-					<p>
-					  
-					  <i><small>- <a href="http://rob.kiben.net">http://rob.kiben.net</a> <a href="rob@kiben.net">rob@kiben.net</a> -</small></i>
-					</p>
-				</section>
-				
-				<section>
-					<h2>NODESCORE</h2>
-					<p>
-NodeScore is a web based framework to facilitate networked telematic ensemble performance.
-					</p>
-				
-					<aside class="notes">
-						Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you run the speaker notes server.
-					</aside>
-				</section>
-				
-				<!-- Example of nested vertical slides -->
-				<section>
-					<section>
-						<h2>Vertical Slides</h2>
-						<p>
-							Slides can be nested inside of other slides,
-							try pressing <a href="#/2/1">down</a>.
-						</p>
-						<a href="#/2/1" class="image">
-							<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
-						</a>
-					</section>
-					<section>
-						<h2>Basement Level 1</h2>
-						<p>Press down or up to navigate.</p>
-					</section>
-					<section>
-						<h2>Basement Level 2</h2>
-						<p>Cornify</p>
-						<a class="test" href="http://cornify.com">
-							<img width="280" height="326" src="https://s3.amazonaws.com/hakim-static/reveal-js/cornify.gif" alt="Unicorn">
-						</a>
-					</section>
-					<section>
-						<h2>Basement Level 3</h2>
-						<p>That's it, time to go back up.</p>
-						<a href="#/2" class="image">
-							<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(180deg);">
-						</a>
-					</section>
-				</section>
+		<aside class="notes">
+		  Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you run the speaker notes server.
+		</aside>
+	      </section>
 
-				<section>
-					<h2>Holistic Overview</h2>
-					<p>
-						Press <strong>ESC</strong> to enter the slide overview!
-					</p>
-				</section>
 
-				<section>
-					<h2>Works in Mobile Safari</h2>
-					<p>
-						Try it out! You can swipe through the slides pinch your way to the overview.
-					</p>
-				</section>
+	      <section>
+		<h2>NODESCORE</h2>
+		<p>
 
-				<section>
-					<h2>Marvelous Unordered List</h2>
-					<ul>
-						<li>No order here</li>
-						<li>Or here</li>
-						<li>Or here</li>
-						<li>Or here</li>
-					</ul>
-				</section>
-				
-				<section>
-					<h2>Fantastic Ordered List</h2>
-					<ol>
-						<li>One is smaller than...</li>
-						<li>Two is smaller than...</li>
-						<li>Three!</li>
-					</ol>
-				</section>
+		</p>
 
-				<section data-markdown>
-					## Markdown support
-					
-					For those of you who like that sort of thing. Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown).
 
-					<pre><code contenteditable style="margin-top: 20px;">&lt;section data-markdown&gt;
-  ## Markdown support
+		<img width="250" height="250" src="images/directed.png" alt="BreakDOM game screenshot">
+		
+		<img width="250" height="250" src="images/democracy.png" alt="BreakDOM game screenshot">
+		  
+		<aside class="notes">
+		  Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you run the speaker notes server.
+		</aside>
+	      </section>
 
-  For those of you who like that sort of thing. 
-  Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown).
-&lt;/section&gt;
-					</code></pre>
-				</section>
 
-				<section>
-					<h2>Transition Styles</h2>
-					<p>
-						You can select from different transitions, like: <br>
-						<a href="http://lab.hakim.se/reveal-js/?transition=cube">Cube</a> -
-						<a href="http://lab.hakim.se/reveal-js/?transition=page">Page</a> -
-						<a href="http://lab.hakim.se/reveal-js/?transition=concave">Concave</a> -
-						<a href="http://lab.hakim.se/reveal-js/?transition=linear">Linear</a>
-					</p>
-				</section>
+	      
+	      <section>
+		<h2>Standards Complient</h2>
 
-				<section>
-					<h2>Themes</h2>
-					<p>
-						Reveal.js comes with a few themes built in: <br>
-						<a href="http://lab.hakim.se/reveal-js/?theme=sky">Sky</a> -
-						<a href="http://lab.hakim.se/reveal-js/?theme=beige">Beige</a> -
-						<a href="http://lab.hakim.se/reveal-js/?theme=simple">Simple</a> -
-						<a href="http://lab.hakim.se/reveal-js/">Default</a>
-					</p>
-					<p>
-						<small>
-							* Theme demos are loaded after the presentation which leads to flicker. In production you should load your theme in the <code>&lt;head&gt;</code> using a <code>&lt;link&gt;</code>.
-						</small>
-					</p>
-				</section>
+		    <img width="300" src="images/tim.jpg" alt="BreakDOM game screenshot">
 
-				<section>
-					<section data-state="alert">
-						<h2>Global State</h2>
-						<p>
-							Set <code>data-state="something"</code> on a slide and <code>"something"</code>
-							will be added as a class to the document element when the slide is open. This lets you
-							apply broader style changes, like switching the background.
-						</p>
-						<a href="#/7/1" class="image">
-							<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
-						</a>
-					</section>
-					<section data-state="blackout">
-						<h2>"blackout"</h2>
-						<a href="#/7/2" class="image">
-							<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
-						</a>
-					</section>
-					<section data-state="soothe">
-						<h2>"soothe"</h2>
-						<a href="#/7/0" class="image">
-							<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(180deg);">
-						</a>
-					</section>
-				</section>
+		<ul>
+		  <li>HTML5</li>
+		  <li>CSS3</li>
+		  <li>(JAVASCRIPT)</li>
+		  <li>WEBSOCKETS</li>
+		</ul>
+		<br><br>
+		<p>
+		  Open Source - No Plugins <br>(Flash, Flex, Shockwave, Java)
+		</p>
+	      </section>
+	      
+	      <section>
+		<h2>WEBSOCKETS</h2>
+	
+	  <p>
+		  Server Push Technology<br>
+		  </p>		 
+	  <a class="image" href="http://hakim.se/experiments/html5/breakdom/" target="_blank">
+		    <img width="250" height="250" src="images/websockets.png" alt="BreakDOM game screenshot">
+		  </a>
+		<ul>
+		  <li>More efficient than AJAX/Comet Programming</li>
+		  <li>Persistant bidirectional TCP socket</li>
+		  <li>REQUEST/RESPONSE handshakes elimintated</li>
+		</ul>
+	
 
-				<section data-state="customevent">
-					<h2>Custom Events</h2>
-					<p>
-						Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.
-					</p>
-					<pre><code contenteditable style="font-size: 18px; margin-top: 20px;">Reveal.addEventListener( 'customevent', function() {
-	console.log( '"customevent" has fired' );
-} );
-					</code></pre>
-				</section>
 
-				<section>
-					<h2>Clever Quotes</h2>
-					<p>
-						These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
-						The nice thing about standards is that there are so many to choose from</q> and block:
-					</p>
-					<blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
-						For years there has been a theory that millions of monkeys typing at random on millions of typewriters would 
-						reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.
-					</blockquote>
-				</section>
-				
-				<section>
-					<h2>Pretty Code</h2>
-					<pre><code contenteditable>
-function linkify( selector ) {
-  if( supports3DTransforms ) {
-    
-    var nodes = document.querySelectorAll( selector );
+		<aside class="notes">
+		  Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you run the speaker notes server.
+		</aside>
+	      </section>
 
-    for( var i = 0, len = nodes.length; i &lt; len; i++ ) {
-      var node = nodes[i];
 
-      if( !node.className ) ) {
-        node.className += ' roll';
-      }
-    };
-  }
-}
-					</code></pre>
-					<p>Courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p>
-				</section>
-				
-				<section>
-					<h2>Intergalactic Interconnections</h2>
-					<p>
-						You can link between slides internally,
-						<a href="#/2/3">like this</a>.
-					</p>
-				</section>
+	      <section>
+		<h2>HTTP://SOCKET.IO</h2>
 
-				<section>
-					<h2>Fragmented Views</h2>
-					<p>Hit the next arrow...</p>
-					<p class="fragment">... to step through ...</p>
-					<ol>
-						<li class="fragment"><code>any type</code></li>
-						<li class="fragment"><em>of view</em></li>
-						<li class="fragment"><strong>fragments</strong></li>
-					</ol>
-				</section>
-				
-				<section>
-					<h2>Spectacular image!</h2>
-					<a class="image" href="http://hakim.se/experiments/html5/breakdom/" target="_blank">
-						<img width="320" height="412" src="https://s3.amazonaws.com/hakim-static/reveal-js/breakdom.png" alt="BreakDOM game screenshot">
-					</a>
-				</section>
-				
-				<section>
-					<h2>Export to PDF</h2>
-					<p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, below is an example that's been uploaded to SlideShare.</p>
-					<iframe id="slideshare" src="http://www.slideshare.net/slideshow/embed_code/13872948" width="455" height="356" style="margin:0;overflow:hidden;border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe>
-					<script>
-						document.getElementById('slideshare').attributeName = 'allowfullscreen';
-					</script>
-				</section>
-				
-				<section>
-					<h2>Stellar Links</h2>
-					<ul>
-						<li><a href="https://github.com/hakimel/reveal.js">Source code on github</a></li>
-						<li><a href="http://hakim.se/projects/reveal-js">Read more on my site</a></li>
-						<li><a href="http://twitter.com/hakimel">Follow me on Twitter</a></li>
-					</ul>
-				</section>
-				
-				<section>
-					<h1>THE END</h1>
-					<h3>BY Hakim El Hattab / hakim.se</h3>
-				</section>
-			</div>
+		<p>Socket.IO simplifies the WebSocket API and unifies the APIs of its fallback transports.</p>
+		  <a class="image" href="http://hakim.se/experiments/html5/breakdom/" target="_blank">
+		    <img height="250" src="images/socketio.png" alt="BreakDOM game screenshot">
+		  </a>
 
-			<!-- The navigational controls UI -->
-			<aside class="controls">
-				<a class="left" href="#">&#x25C4;</a>
-				<a class="right" href="#">&#x25BA;</a>
-				<a class="up" href="#">&#x25B2;</a>
-				<a class="down" href="#">&#x25BC;</a>
-			</aside>
+		<aside class="notes">
+		<p>Racket/PHP Alternative</p>
+		</aside>
+	      </section>
 
-			<!-- Presentation progress bar -->
-			<div class="progress"><span></span></div>
-			
-		</div>
 
-		<script src="lib/js/head.min.js"></script>
-		<script src="js/reveal.min.js"></script>
 
-		<script>
-			
-			// Full list of configuration options available here:
-			// https://github.com/hakimel/reveal.js#configuration
-			Reveal.initialize({
-				controls: true,
-				progress: true,
-				history: true,
-				
-				theme: Reveal.getQueryHash().theme || 'default', // available themes are in /css/theme
-				transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/linear(2d)
+	      <section>
+		<h2>Serverside Javascript</h2>
+		<h3>NodeJS Server</h3>
+		<pre><code contenteditable>var sio = require('socket.io')
+, http = require('http'), fs = require('fs'), static = require('node-static');
 
-				// Optional libraries used to extend on reveal.js
-				dependencies: [
-					{ src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } },
-					{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
-					{ src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
-					{ src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
-					{ src: 'socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
-					{ src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
-				]
-			});
-			
-		</script>
+var clientFiles = new static.Server('./www');
+var httpServer = http.createServer(
+    function(request, response) {
+	request.addListener('end', function () {
+	    clientFiles.serve(request, response);
+	    process.setMaxListeners(0);
+	});    
+    }); httpServer.listen(8889);
 
+var io = sio.listen(httpServer);
+io.set('log level', 1); // reduce logging                                                                
+io.sockets.on('connection', function (socket) {</code></pre>
+
+	      </section>
+
+<section>
+		<h2>Client Plumbing</h2>
+
+		// load the sockets lib
+		<pre><code contenteditable>&lt;script src="/socket.io/socket.io.js"&gt &lt;/script&gt
+		</code></pre>
+// connect to socket
+<pre><code contenteditable>
+var socket = io.connect();
+</code></pre> 
+
+//send something down the pipe
+<pre><code contenteditable>
+function startChr() { socket.emit("startChr") }                                                          </code></pre> 
+     </section>
+
+	      <section>
+		<h2>CLIENT->SERVER->CLIENT</h2>
+Chronometer on server pushes -> client
+	<pre><code contenteditable>// instruction from "director" client executed on server
+socket.on('startChr', function () { startChr();}); 
+function startChr() { if (chronstate !== 1) { 
+   chronstate = 1; chronometer();} }
+	    ---snip--- 
+	    setTimeout(function(){chronometer()}, 100);
+	    socket.broadcast.emit('chronFromServer', chron)
+	    socket.emit('chronFromServer', chron) 
+	    ---snip---
+// update chron value on the clients in line with server
+socket.on("chronFromServer", function(chron) {
+    $("div#client_chronometer").text(chron);
+}); </code></pre>
+
+	      </section>
+
+	      <section>
+		<h2>NODESCORE: INFO PANEL</h2>
+<a class="image" href="http://hakim.se/experiments/html5/breakdom/" target="_blank">
+		    <img width="800" src="images/nodescore-infopanel.png" alt="screenshot">
+		  </a>
+
+		<p>
+		</p>
+	      </section>
+
+	      <section>
+		<h2>NODESCORE: CHAT PANEL</h2>
+<a class="image" href="http://hakim.se/experiments/html5/breakdom/" target="_blank">
+		    <img width="800" src="images/nodescore-chat.png" alt="screenshot">
+		  </a>
+
+		<p>
+		</p>
+	      </section>
+
+	      <section>
+		<h2>NODESCORE: NEXUS7 CSS</h2>
+<a class="image" href="http://hakim.se/experiments/html5/breakdom/" target="_blank">
+		    <img width="800" src="images/nodescore-nexus.png" alt="screenshot">
+		  </a>
+
+		<p>
+		</p>
+	      </section>
+
+
+	      <section>
+		<h2>Future Work</h2>
+		<p>the TODO list...</p>
+		<ol>
+		  <li class="fragment"><stron>trials room->field->world</strong></li>
+		  <li class="fragment"><em>Animated SVG, WebGL, <code>&lt;audio&gt;,&lt;video&gt;</em></code></li>
+		  
+		  <li class="fragment">
+		    <code>stop coding start composing</code><br>
+		  </li>
+
+		</ol>
+	      </section>
+	      
+
+
+		</ul>
+	      </section>
+	      
+	      <section>
+		<h2>links</h2>
+		<a href="http://nodescore.kiben.net/p/">This Presentation: http://nodescore.kiben.net/p/</a><br><br>
+
+		<a href="http://nodescore.kiben.net">http://nodescore.kiben.net</a><br><br>
+
+                <a href="http://nodescore.kiben.net/p/canning_netscores_shortpaper-2012.pdf">ICMC2012 Paper</a><br><br>
+		<a href="http://gitorious.org/nodescore">Source Code on Gitorious</a><br><br>
+          
+		<a href="mailto:rc-web@kiben.net">rc-web@kiben.net</a><br><br>
+		<a href="http://uk.linkedin.com/pub/rob-canning/35/9b5/481">
+		  <img src="http://www.linkedin.com/img/webpromo/btn_liprofile_blue_80x15.png" width="80" height="15" border="0" alt="View Rob Canning's profile on LinkedIn">  
+		</a><br><br>
+
+		
+	      </section>
+	    </div>
+	    
+	    <!-- The navigational controls UI -->
+	    <aside class="controls">
+	      <a class="left" href="#">&#x25C4;</a>
+	      <a class="right" href="#">&#x25BA;</a>
+	      <a class="up" href="#">&#x25B2;</a>
+	      <a class="down" href="#">&#x25BC;</a>
+	    </aside>
+	    
+	    <!-- Presentation progress bar -->
+	    <div class="progress"><span></span></div>
+	    
+	  </div>
+	  
+	  <script src="lib/js/head.min.js"></script>
+	  <script src="js/reveal.min.js"></script>
+	  
+	  <script>
+	    
+	    // Full list of configuration options available here:
+	    // https://github.com/hakimel/reveal.js#configuration
+	    Reveal.initialize({
+	    controls: true,
+	    progress: true,
+	    history: true,
+	    
+	    theme: Reveal.getQueryHash().theme || 'default', // available themes are in /css/theme
+	    transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/linear(2d)
+	    
+	    // Optional libraries used to extend on reveal.js
+	    dependencies: [
+	    { src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } },
+	    { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
+	    { src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
+	    { src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
+	    { src: 'socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
+	    { src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
+	    ]
+	    });
+	    
+	  </script>
+	  
 	</body>
 </html>