Mercurial > hg > nodescore
changeset 32:c4719d1b7633
svg mods
line wrap: on
line diff
--- a/rasterize.js Thu Aug 16 07:17:03 2012 +0000 +++ b/rasterize.js Sun Aug 19 21:44:23 2012 +0000 @@ -4,7 +4,7 @@ top = system.args[3]; -page.clipRect = { top: top, left: 0, width: 1000, height: 400 } +page.clipRect = { top: top, left: 0, width: 1000, height: 450 } if (system.args.length < 3 || system.args.length > 5) { console.log('Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat] [zoom]'); @@ -15,11 +15,11 @@ output = system.args[2]; - page.viewportSize = { width: 1000, height: 400 }; + page.viewportSize = { width: 1000, height: 450 }; 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' } - : { format: system.args[3], orientation: 'portrait', margin: '1cm' }; + : { format: system.args[3], orientation: 'portrait', margin: '0cm' }; } if (system.args.length > 5) { page.zoomFactor = system.args[5];
--- a/ss2thumb.sh Thu Aug 16 07:17:03 2012 +0000 +++ b/ss2thumb.sh Sun Aug 19 21:44:23 2012 +0000 @@ -20,7 +20,7 @@ fi ANCHORS=`grep '<a' www/$BASEDIR/music.html|wc -l` -GAP=400 +GAP=450 TOP=0 for each in $(seq 1 $ANCHORS); do @@ -29,7 +29,7 @@ echo phantomjs rasterize.js $SERVER/$BASEDIR/music.html#$each $each.png $TOP phantomjs rasterize.js $SERVER/$BASEDIR/music.html#$each $each.png $TOP - mogrify -scale 33% $each.png + #mogrify -resize 400x $each.png mv $each.png www/$BASEDIR/thumbs/ done
--- a/svgmods.sh Thu Aug 16 07:17:03 2012 +0000 +++ b/svgmods.sh Sun Aug 19 21:44:23 2012 +0000 @@ -10,7 +10,7 @@ for i in `ls $path/*.svg`; do # change size - commented out - size can be defined in html - sed -i 's/ width="100.00mm" height="40.00mm" viewBox="0 0 103.4646 41.3858"/ width="1000px" height="400px" viewBox="0 0 1000 400"/'g $i + sed -i 's/ width="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528"/ width="1000px" height="450px" viewBox="0 0 1000 450"/'g $i #sed -i 's/ width="105.00mm" height="60.00mm" / width="1280px" height="800px" /'g $i echo $header > tmp.svg; cat $i >> tmp.svg ;
--- a/www/m/css/nodescore.css Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/css/nodescore.css Sun Aug 19 21:44:23 2012 +0000 @@ -62,7 +62,7 @@ #comms{ border-radius: 15px; - height: 25%; + height: 180px; width: 550px; margin: 0px; border: 1px solid gray; @@ -75,7 +75,7 @@ #preview{ border-radius: 15px; - height: 25%; + height: 180px; width: 422px; margin: 0px; border: 1px solid gray; @@ -114,9 +114,11 @@ background-color: black; } -.svgmusic { -margin: 10px; -width: 90%; +.svgmusic { + display:block; + border-radius: 15px; + margin: 0px; + width: 100%; !height: 768px; }
--- a/www/m/js/nodescore-client.js Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/js/nodescore-client.js Sun Aug 19 21:44:23 2012 +0000 @@ -107,7 +107,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; bottom:14px; right:14px;';> n e x t : </h3><img src='thumbs/"+next + ".png" + "' width='400'>") + $("#preview").html("<h3 style='background:transparent; position: absolute; top:14px; right:14px;';> n e x t : </h3><img src='thumbs/"+next + ".png" + "' width='400'>") } ////////////////////////////////////////////////
--- a/www/m/music.html Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/music.html Sun Aug 19 21:44:23 2012 +0000 @@ -2,16 +2,17 @@ <html> <head> <style type="text/css"> - .svgmusic {width:1000px; height:400px;} + .svgmusic {margin:0; width:1000px; height:450px;} + .unit {padding:0px; bottom-margin:0; margin:0px; background:blue; height:450px;} </style> </head> -<body> - <a id="1"><div id="unit01"> <embed class="svgmusic" src="svg/13_6_2.svg" type="image/svg+xml"/> </div></a> - <a id="2"><div id="unit02"> <embed class="svgmusic" src="svg/14_1_1.svg" type="image/svg+xml"/> </div></a> - <a id="3"><div id="unit03"> <embed class="svgmusic" src="svg/15_0_2.svg" type="image/svg+xml"/> </div></a> - <a id="4"><div id="unit04"> <embed class="svgmusic" src="svg/26_6_3.svg" type="image/svg+xml"/> </div></a> - <a id="5"><div id="unit05"> <embed class="svgmusic" src="svg/44_7_5.svg" type="image/svg+xml"/> </div></a> - <a id="6"><div id="unit06"> <embed class="svgmusic" src="svg/32_2_4.svg" type="image/svg+xml"/> </div></a> +<body style="margin:0"> + <a id="1"><div class="unit" id="unit01"> <embed class="svgmusic" src="svg/13_6_2.svg" type="image/svg+xml"/> </div></a> + <a id="2"><div class="unit" id="unit02"> <embed class="svgmusic" src="svg/14_1_1.svg" type="image/svg+xml"/> </div></a> + <a id="3"><div class="unit" id="unit03"> <embed class="svgmusic" src="svg/15_0_2.svg" type="image/svg+xml"/> </div></a> + <a id="4"><div class="unit" id="unit04"> <embed class="svgmusic" src="svg/26_6_3.svg" type="image/svg+xml"/> </div></a> + <a id="5"><div class="unit" id="unit05"> <embed class="svgmusic" src="svg/44_7_5.svg" type="image/svg+xml"/> </div></a> + <a id="6"><div class="unit" id="unit06"> <embed class="svgmusic" src="svg/32_2_4.svg" type="image/svg+xml"/> </div></a> </body> </html>
--- a/www/m/svg/12_7_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/12_7_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,248 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 17.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.3960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 9.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 14.9138)" 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.9138)" 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.9138)" 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.9138)" 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.9138)" 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, 13.9138) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.5395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.0229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 12</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 34.7945)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 34.7945)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 34.8208)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 34.8208)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 35.0445)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 35.0445)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 34.9132)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 34.9132)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 34.7177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 34.7177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 34.7177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 34.7945)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 34.7945)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 34.8208)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 34.8208)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 34.7945)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 34.7945)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 34.4794)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 34.4794)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/13_6_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/13_6_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,249 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 18.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 13.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 17.3960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 10.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 15.9138)" 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.9138)" 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.9138)" 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.9138)" 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.9138)" 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, 14.9138) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 20.5395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.0229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 13</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 37.4259)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 37.4259)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 37.4521)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 37.4521)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 37.6759)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 37.6759)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 37.5445)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 37.5445)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 37.3490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 37.3490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 37.3490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 37.4259)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 37.4259)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 37.4521)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 37.4521)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 37.4259)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 37.4259)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 37.1107)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 37.1107)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/14_1_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/14_1_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,245 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 18.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 13.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 17.6547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 20.7982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 11.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 16.2228)" 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.2228)" 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.2228)" 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.2228)" 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.2228)" 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, 15.2228) 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(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.3319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 14</tspan> </text> -<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 37.9413)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 37.9413)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 37.9676)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 37.9676)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 38.1913)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 38.1913)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 38.0600)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 38.0600)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 37.8645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 37.8645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 37.8645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 37.9413)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 37.9413)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 37.9676)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 37.9676)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 37.9413)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 37.9413)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 37.6262)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 37.6262)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> +<path transform="translate(24.3513, 9.2228) 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"/> </svg>
--- a/www/m/svg/15_0_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/15_0_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,243 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 15.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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, 14.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 15</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 35.8812)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 36.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 36.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 35.9736)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 35.9736)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 35.8812)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 35.5397)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 35.5397)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/16_2_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/16_2_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,252 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 13.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 16.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 11.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 13.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 16</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 27.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 27.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 27.1312)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 27.1312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 27.3549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 27.3549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 27.2236)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 27.2236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 27.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 27.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 27.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 27.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 27.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 27.1312)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 27.1312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 27.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 27.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 26.7897)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 26.7897)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.0953, 30.4490)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.0953, 30.4490)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -6.69</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(12.8773, 30.3177)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(12.8773, 30.3177)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left</tspan> -</text> -<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -5.6902 0.0000 -6.6902 0.2500 -5.6902"/> -<line transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-6.4402"/> -</g> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/17_3_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/17_3_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,252 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 16.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 8.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 13.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 17</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 27.0727)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 27.0727)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 27.0989)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 27.0989)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 27.3227)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 27.3227)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 27.1913)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 27.1913)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 26.9959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 26.9959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 26.9959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 27.0727)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 27.0727)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 27.0989)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 27.0989)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 27.0727)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 27.0727)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 26.7575)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 26.7575)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.0953, 30.4329)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.0953, 30.4329)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -6.72</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(12.8773, 30.3016)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(12.8773, 30.3016)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left</tspan> -</text> -<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -5.7225 0.0000 -6.7225 0.2500 -5.7225"/> -<line transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-6.4725"/> -</g> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/18_4_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/18_4_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,240 +1,23 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 14.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 15.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 12.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 18</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 35.8812)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 36.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 36.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 35.9736)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 35.9736)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 35.8812)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 35.5397)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 35.5397)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/19_5_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/19_5_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,240 +1,23 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 17.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 14.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 14.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" 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, 9.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 11.8204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 19</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 34.6049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 34.6049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 34.6312)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 34.6312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 34.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 34.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 34.7236)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 34.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 34.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 34.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 34.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 34.6049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 34.6049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 34.6312)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 34.6312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 34.6049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 34.6049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 34.2897)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 34.2897)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/20_5_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/20_5_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,246 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 13.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 19.4637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 14.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 11.3204) 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"/> +<text transform="translate(7.6969, 17.0054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.5920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 16.2087)" 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.2087)" 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.0987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 20</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 40.0572)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 40.0572)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 40.0834)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 40.0834)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 40.3072)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 40.3072)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 40.1759)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 40.1759)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 39.9804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 39.9804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 39.9804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 40.0572)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 40.0572)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 40.0834)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 40.0834)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 40.0572)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 40.0572)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 39.7420)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 39.7420)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/21_4_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/21_4_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,243 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 15.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 14.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 21</tspan> </text> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 35.7236)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 35.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 35.7499)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 35.7499)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 35.9736)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 35.9736)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 35.8423)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 35.8423)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 35.6468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 35.6468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 35.6468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 35.7236)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 35.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 35.7499)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 35.7499)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 35.7236)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 35.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 35.4084)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 35.4084)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> </svg>
--- a/www/m/svg/22_3_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/22_3_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,252 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 20.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 19.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 15.7831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 14.7831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.7831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 19.7831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 18.3162)" 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.3162)" 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.3162)" 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.3162)" 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.3162)" 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.3162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 12.3162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.3162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 17.3162) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.7831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 22.9266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 11.3162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 20.4253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 22</tspan> </text> -<path transform="translate(44.0924, 13.7831) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 43.2623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 43.2623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 43.2885)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 43.2885)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 43.5123)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 43.5123)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 43.3810)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 43.3810)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 43.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 43.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 43.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 43.2623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 43.2623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 43.2885)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 43.2885)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 43.2623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 43.2623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 42.9471)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 42.9471)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> +<path transform="translate(24.3513, 11.3162) 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"/> </svg>
--- a/www/m/svg/23_2_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/23_2_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,248 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 14.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 20.3508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 15.2228)" 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.2228)" 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.2228)" 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.2228)" 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.2228)" 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, 12.2228) 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(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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.9078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 22.4791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 17.1111)" 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, 17.1111)" 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"/> +<text transform="translate(25.5013, 20.0011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 23</tspan> </text> -<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 42.2749)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 42.2749)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 42.3012)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 42.3012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 42.5249)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 42.5249)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 42.3936)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 42.3936)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 42.1981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 42.1981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 42.1981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 42.2749)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 42.2749)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 42.3012)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 42.3012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 42.2749)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 42.2749)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 41.9598)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 41.9598)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> +<path transform="translate(24.3513, 9.2228) 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"/> </svg>
--- a/www/m/svg/24_0_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/24_0_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,252 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<g color="rgb(100.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/> -<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/> -<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/> -</g> -<g color="rgb(50.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(25.0%, 0.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<line transform="translate(36.7944, 19.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.3831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.3831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 18.3831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 16.9162)" 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.9162)" 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.9162)" 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.9162)" 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.9162)" 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.9162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.9162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 15.9162) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.5266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.0253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 24</tspan> </text> -<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<g color="rgb(0.0%, 0.0%, 100.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 39.7623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 39.7623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 39.7886)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 39.7886)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-of-extent</tspan> -</text> -<polygon transform="translate(26.2330, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(26.2330, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(26.2330, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 100.0%, 0.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(21.9510, 40.0123)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(21.9510, 40.0123)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.50</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(26.7330, 39.8810)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(26.7330, 39.8810)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -padding</tspan> -</text> -<polygon transform="translate(26.2330, 39.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/> -<polygon transform="translate(26.2330, 39.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/> -<line transform="translate(26.2330, 39.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(9.6049, 39.7623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(9.6049, 39.7623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(14.3869, 39.7886)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(14.3869, 39.7886)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -min-dist</tspan> -</text> -<polygon transform="translate(13.8869, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(13.8869, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(13.8869, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<g color="rgb(0.0%, 0.0%, 25.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(0.0953, 39.7623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(0.0953, 39.7623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -0.00</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(4.8773, 39.4471)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(4.8773, 39.4471)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space</tspan> -</text> -<polygon transform="translate(4.3773, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/> -<polygon transform="translate(4.3773, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/> -<line transform="translate(4.3773, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/> -</g> -<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -space left: NaN/inf</tspan> -</text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -35.02</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -paper-height</tspan> -</text> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/> -<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -8.76</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -top-margin</tspan> -</text> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/> -<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/> -<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/> -</g> -<g color="rgb(0.0%, 0.0%, 50.0%)"> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -1.75</tspan> -</text> -<g color="rgb(100.0%, 100.0%, 100.0%)"> -<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/> -</g> -<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor"> -<tspan> -bottom-margin</tspan> -</text> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/> -<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/> -<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/> -</g> +<path transform="translate(24.0513, 10.9162) 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"/> </svg>
--- a/www/m/svg/25_1_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/25_1_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,31 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 12.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 17.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 14.3228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 25</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/26_6_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/26_6_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 13.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 16.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 11.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 13.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 26</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/27_7_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/27_7_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,27 +1,22 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 17.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 13.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 12.3228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 27</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/28_7_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/28_7_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 17.2316)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 9.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 14.7652)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 28</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/29_6_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/29_6_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,35 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 16.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 15.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<rect transform="translate(36.6684, 11.2547)" x="8.5250" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.4684, 13.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.4684, 18.9508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 8.8228)" x="23.5975" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 13.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228) 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(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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.5078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.3403, 18.1628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/> -<line transform="translate(49.7805, 18.1628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.3403, 18.1628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 21.0791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 15.7111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/> +<line transform="translate(45.1610, 15.7111)" 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.7111)" 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"/> +<text transform="translate(25.6693, 18.6011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 29</tspan> </text> -<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 8.8228) 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"/> </svg>
--- a/www/m/svg/30_1_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/30_1_7.svg Sun Aug 19 21:44:23 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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 16.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 15.8960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 14.4138)" 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.4138)" 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.4138)" 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.4138)" 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.4138)" 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, 13.4138) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.0395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.5229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 30</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/31_0_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/31_0_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,27 +1,22 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 11.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 10.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 11.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 16.8305)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.8228)" 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.8228)" 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.8228)" 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.8228)" 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, 7.8228)" 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, 8.8228) 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(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.6693, 14.3783)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 31</tspan> </text> -<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 8.8228) 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"/> </svg>
--- a/www/m/svg/32_2_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/32_2_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,30 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 18.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 13.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 15.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 20.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 15.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 12.8228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 32</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/33_3_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/33_3_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,31 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 11.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 16.9637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.8204)" 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.8204)" 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.8204)" 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.8204)" 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, 7.8204)" 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, 8.8204) 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"/> +<text transform="translate(7.6969, 14.5054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 16.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 16.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 16.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.0920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 13.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 13.7087)" 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, 13.7087)" 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.5987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 33</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/34_4_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/34_4_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,37 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.2831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 18.2831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 16.8162)" 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.8162)" 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.8162)" 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.8162)" 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.8162)" 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.8162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 15.8162) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.7831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.4266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 11.3162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.9253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 34</tspan> </text> -<path transform="translate(44.0924, 13.7831) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.3513, 11.3162) 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"/> </svg>
--- a/www/m/svg/35_5_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/35_5_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +1,24 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 15.2676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 18.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 13.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" 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, 12.8204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 15.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 35</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/36_5_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/36_5_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 17.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 14.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 36</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/37_4_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/37_4_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 13.3224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 15.9659)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 10.8765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 13.4856)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 37</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/38_3_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/38_3_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 17.2316)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 9.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 14.7652)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 38</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/39_2_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/39_2_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,27 +1,22 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 17.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 13.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 12.3228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 39</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/40_0_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/40_0_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,33 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 13.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 19.4637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 14.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 11.3204) 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"/> +<text transform="translate(7.6969, 17.0054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.5920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 16.2087)" 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.2087)" 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.0987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 40</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/41_1_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/41_1_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +1,24 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 15.2676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 18.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 13.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" 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, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 12.8204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 15.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 41</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/42_6_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/42_6_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,28 +1,24 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 18.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 13.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 15.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 20.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 11.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 16.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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, 13.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 42</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/43_7_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/43_7_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,40 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 20.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 19.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 15.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 14.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.8831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 19.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 13.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 12.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.4162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 18.4162)" 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.4162)" 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.4162)" 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.4162)" 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.4162)" 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, 17.4162) 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(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 23.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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"/> +<text transform="translate(25.5013, 20.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 43</tspan> </text> -<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 10.9162) 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"/> </svg>
--- a/www/m/svg/44_7_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/44_7_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,32 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 16.2547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.3457)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 14.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" 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, 13.8228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 44</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/45_6_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/45_6_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,30 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 15.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 14.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 45</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/46_1_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/46_1_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,33 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<rect transform="translate(36.7944, 16.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 15.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 14.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<line transform="translate(36.7944, 21.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 20.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 19.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 18.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 23.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 13.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 12.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 18.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" 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, 15.8228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 20.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 46</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/47_0_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/47_0_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,30 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.7457)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 12.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 17.2228)" 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.2228)" 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.2228)" 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.2228)" 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.2228)" 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, 14.2228) 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(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.3319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 47</tspan> </text> -<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.3513, 9.2228) 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"/> </svg>
--- a/www/m/svg/48_2_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/48_2_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,39 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.3831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.3831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 18.3831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 16.9162)" 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.9162)" 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.9162)" 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.9162)" 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.9162)" 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.9162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.9162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 15.9162) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.5266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.0253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 48</tspan> </text> -<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 10.9162) 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"/> </svg>
--- a/www/m/svg/49_3_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/49_3_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,37 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 15.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 14.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 16.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.4684, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 15.4162)" 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.4162)" 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.4162)" 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.4162)" 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.4162)" 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, 14.4162) 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(25.6693, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.3403, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/> -<line transform="translate(49.7805, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.3403, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.3684, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 20.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/> +<line transform="translate(45.1610, 8.1195)" 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, 8.1195)" 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"/> +<text transform="translate(25.6693, 17.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 49</tspan> </text> -<path transform="translate(43.9184, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 10.9162) 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"/> </svg>
--- a/www/m/svg/50_4_6.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/50_4_6.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,35 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 14.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 20.3508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 15.2228)" 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.2228)" 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.2228)" 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.2228)" 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.2228)" 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, 12.2228) 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(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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.9078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 22.4791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 17.1111)" 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, 17.1111)" 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"/> +<text transform="translate(25.5013, 20.0011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 50</tspan> </text> -<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.3513, 9.2228) 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"/> </svg>
--- a/www/m/svg/51_5_5.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/51_5_5.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,33 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7540, 16.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/> -<line transform="translate(36.7540, 15.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/> -<line transform="translate(36.7540, 14.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/> -<line transform="translate(36.7540, 13.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/> -<line transform="translate(36.7540, 12.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/> -<path transform="translate(37.5540, 13.1547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5540, 18.8508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 13.7228)" 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.7228)" 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.7228)" 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.7228)" 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.7228)" 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.7228) 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"/> +<text transform="translate(7.6969, 16.4078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4259, 18.0628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.2690" y2="-0.0000" stroke-dasharray="0.432280419365498,0.557372260570777"/> -<line transform="translate(49.6949, 18.0628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4259, 18.0628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2828, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2828, 20.9791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 15.6111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5288" y2="-0.0000" stroke-dasharray="0.409381457556394,0.597551443292963"/> +<line transform="translate(45.0917, 15.6111)" 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.6111)" 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(25.5307, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5307, 18.5011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 51</tspan> </text> -<path transform="translate(44.1328, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.3807, 9.2228) 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"/> </svg>
--- a/www/m/svg/52_5_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/52_5_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 13.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 16.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 12.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 9.3228) 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(25.5013, 10.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 14.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 52</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/53_4_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/53_4_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,30 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.7982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 12.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 17.2228)" 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.2228)" 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.2228)" 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.2228)" 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.2228)" 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, 14.2228) 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(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.3319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 53</tspan> </text> -<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.3513, 9.2228) 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"/> </svg>
--- a/www/m/svg/54_3_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/54_3_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,28 +1,23 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 10.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.7547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 17.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 13.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 8.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 12.3228) 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(25.5013, 8.3228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 54</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/55_2_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/55_2_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,27 +1,22 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.3684, 13.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 16.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.6693, 11.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.6693, 13.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 55</tspan> </text> -<path transform="translate(43.9184, 13.8224) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 11.3765) 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"/> </svg>
--- a/www/m/svg/56_0_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/56_0_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,33 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 18.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 13.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 17.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 20.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 16.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 15.3228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 56</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/57_1_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/57_1_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,31 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 16.5185)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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"/> +<text transform="translate(7.6969, 14.0614)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 15.7305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 15.7305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 15.7305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 10.3224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 18.6468)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 13.2648)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 13.2648)" 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, 13.2648)" 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(25.5013, 7.8765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.1548)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 57</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/58_6_7.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/58_6_7.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,39 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.3831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.3831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 18.3831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 11.9162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.9162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 16.9162)" 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.9162)" 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.9162)" 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.9162)" 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.9162)" 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, 15.9162) 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(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.5266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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"/> +<text transform="translate(25.5013, 19.0253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 58</tspan> </text> -<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 10.9162) 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"/> </svg>
--- a/www/m/svg/59_7_4.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/59_7_4.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 16.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 13.8204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 59</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/60_7_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/60_7_3.svg Sun Aug 19 21:44:23 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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.4684, 17.4508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 12.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 9.3228) 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(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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, 15.0078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/> -<line transform="translate(49.7805, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 19.5791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/> +<line transform="translate(45.1610, 14.2111)" 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, 14.2111)" 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"/> +<text transform="translate(25.6693, 17.1011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 60</tspan> </text> -<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 8.8228) 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"/> </svg>
--- a/www/m/svg/61_6_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/61_6_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,33 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 21.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 20.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 19.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 16.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 15.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 14.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 18.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 23.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 18.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" 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.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 12.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 15.8228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 20.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 61</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/62_1_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/62_1_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 17.2316)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 9.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 14.7652)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 62</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/63_0_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/63_0_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,32 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 12.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 17.9637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 12.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" 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, 9.8204) 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"/> +<text transform="translate(7.6969, 15.5054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 17.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 17.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 17.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 20.0920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 14.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 14.7087)" 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, 14.7087)" 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 17.5987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 63</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/64_2_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/64_2_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +1,24 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 15.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 18.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 14.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 13.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 64</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/65_3_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/65_3_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 17.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" 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.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 14.3204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 65</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/66_4_0.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/66_4_0.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,24 +1,20 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 11.3224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 16.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 11.3765)" 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.3765)" 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.3765)" 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.3765)" 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, 7.3765)" 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, 8.3765) 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(25.5013, 8.8765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 14.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 66</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/67_5_3.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/67_5_3.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,40 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 20.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 19.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 15.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 14.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.8831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 19.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 18.4162)" 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.4162)" 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.4162)" 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.4162)" 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.4162)" 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.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 12.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.4162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 17.4162) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 23.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 20.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 67</tspan> </text> -<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 10.9162) 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"/> </svg>
--- a/www/m/svg/68_5_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/68_5_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,30 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 17.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.1547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.1547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 19.2982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 14.7228)" 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.7228)" 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.7228)" 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.7228)" 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.7228)" 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, 9.7228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 13.7228) 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(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 16.8319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 68</tspan> </text> -<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52 -c-17 0 -30 17 -30 35z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.3513, 9.2228) 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"/> </svg>
--- a/www/m/svg/69_4_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/69_4_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,36 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 17.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 12.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.7547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.5944, 20.4508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 10.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.3228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 15.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 12.3228) 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(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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, 18.0078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.4663, 19.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 19.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 19.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 22.5791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 17.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 17.2111)" 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, 17.2111)" 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"/> +<text transform="translate(25.5013, 20.1011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 69</tspan> </text> -<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 8.8228) 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"/> </svg>
--- a/www/m/svg/70_3_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/70_3_2.svg Sun Aug 19 21:44:23 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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<text transform="translate(42.4684, 17.4508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 12.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 9.3228) 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(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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, 15.0078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/> -<line transform="translate(49.7805, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 19.5791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/> +<line transform="translate(45.1610, 14.2111)" 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, 14.2111)" 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"/> +<text transform="translate(25.6693, 17.1011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 70</tspan> </text> -<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 8.8228) 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"/> </svg>
--- a/www/m/svg/71_2_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/71_2_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,37 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 18.3960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 16.9138)" 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.9138)" 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.9138)" 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.9138)" 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.9138)" 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.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 15.9138) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.5395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 19.0229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 71</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/72_0_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/72_0_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,29 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 19.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 14.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 12.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 16.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 21.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<rect transform="translate(1.8969, 11.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 10.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 9.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<line transform="translate(1.8969, 16.8204)" 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.8204)" 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.8204)" 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.8204)" 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.8204)" 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, 13.8204) 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(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 18.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 72</tspan> </text> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> </svg>
--- a/www/m/svg/73_1_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/73_1_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,40 +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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.7944, 20.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 19.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 18.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<line transform="translate(36.7944, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/> -<rect transform="translate(36.7944, 15.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 14.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/> -<rect transform="translate(36.7944, 13.8831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/> -<path transform="translate(37.5944, 19.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 18.4162)" 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.4162)" 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.4162)" 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.4162)" 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.4162)" 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.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 12.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/> +<rect transform="translate(1.8969, 11.4162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/> +<path transform="translate(2.6969, 17.4162) 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"/> +<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/> -<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/> -<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/> -<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.2424, 23.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/> +<line transform="translate(45.0770, 8.1195)" 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, 8.1195)" 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(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.5013, 20.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 73</tspan> </text> -<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.0513, 10.9162) 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"/> </svg>
--- a/www/m/svg/74_6_1.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/74_6_1.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,30 +1,24 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265 -c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188 -c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25 -c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339 -c0 61 -6 86 -34 137z" fill="currentColor"/> -<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 17.8457)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 13.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 12.3228) 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(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.6693, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 74</tspan> </text> -<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 8.8228) 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"/> </svg>
--- a/www/m/svg/75_7_2.svg Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/75_7_2.svg Sun Aug 19 21:44:23 2012 +0000 @@ -1,27 +1,22 @@ <?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="40.00mm" viewBox="0 0 87.5469 35.0188"> +<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"> <!-- Page: 1/1 --> -<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> </tspan> </text> -<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<line transform="translate(36.6684, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/> -<path transform="translate(37.4684, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12 -c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/> -<path transform="translate(45.3684, 13.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/> -<text transform="translate(45.3684, 16.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> +<line transform="translate(1.8969, 12.3228)" 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.3228)" 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.3228)" 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.3228)" 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.3228)" 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, 9.3228) 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(25.6693, 10.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-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(25.6693, 14.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor"> <tspan> 75</tspan> </text> -<path transform="translate(43.9184, 13.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148 -c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24 -zM101 59v-148l73 30v148z" fill="currentColor"/> -<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor"> -<tspan> -rc@kiben.net</tspan> -</text> +<path transform="translate(24.2193, 10.8228) 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"/> </svg>
--- a/www/m/svg/svg-stylesheet.css Thu Aug 16 07:17:03 2012 +0000 +++ b/www/m/svg/svg-stylesheet.css Sun Aug 19 21:44:23 2012 +0000 @@ -1,4 +1,4 @@ -svg { background-color: black; width:1000px; height:400px;} +svg { background-color: black; width:1000px; height:450px; display:block;} line { stroke: white; } text { fill: white;} path { stroke: white; fill: white; }