Mercurial > hg > nodescore
changeset 26:ac9641ecf84f
updated rasterize and ss2thumb to cycle offsets of grab for different anchors
removed some bad path stuctures
author | tzara <rc-web@kiben.net> |
---|---|
date | Mon, 16 Jul 2012 16:51:55 +0100 |
parents | 8ac67b784a8c |
children | a3387450c585 |
files | nodescore rasterize.js ss2thumb.sh svgmods.sh www/m/css/nodescore.css www/m/img/1280x800/music1.jpg www/m/img/1280x800/music2.jpg www/m/img/1280x800/music3.jpg www/m/img/1280x800/music4.jpg www/m/img/1280x800/music5.jpg www/m/img/thumbs/1.png www/m/img/thumbs/2.png www/m/img/thumbs/3.png www/m/img/thumbs/4.png www/m/img/thumbs/5.png www/m/img/thumbs/6.png www/m/img/thumbs/controls.html.png www/m/js/nodescore-client.js www/m/seta/img/1280x800/music1.jpg www/m/seta/img/1280x800/music2.jpg www/m/seta/img/1280x800/music3.jpg www/m/seta/img/1280x800/music4.jpg www/m/seta/img/1280x800/music5.jpg www/m/seta/img/thumbs/1.png www/m/seta/img/thumbs/2.png www/m/seta/img/thumbs/3.png www/m/seta/img/thumbs/4.png www/m/seta/img/thumbs/5.png www/m/seta/img/thumbs/6.png www/m/seta/music.html www/m/svg/13_6_2.svg www/m/svg/15_0_2.svg www/m/svg/24_0_3.svg www/m/svg/26_6_3.svg www/m/svg/29_6_4.svg www/m/svg/31_0_4.svg www/m/svg/40_0_5.svg www/m/svg/42_6_5.svg www/m/svg/45_6_6.svg www/m/svg/47_0_6.svg www/m/svg/58_6_7.svg www/m/svg/61_6_0.svg www/m/svg/72_0_1.svg www/m/svg/74_6_1.svg www/m/svg/svg-stylesheet.css |
diffstat | 45 files changed, 881 insertions(+), 901 deletions(-) [+] |
line wrap: on
line diff
--- a/nodescore Sun Jul 15 01:14:27 2012 +0100 +++ b/nodescore Mon Jul 16 16:51:55 2012 +0100 @@ -9,13 +9,13 @@ # nodescore@kiben.net # nodescore.kiben.net -SERVER='http://192.168.1.111:8889' +SERVER='http://192.168.1.94:8889' BASEDIR='www/m' PROJECT='seta' -THUMBPATH=$BASEDIR/$PROJECT/img/thumbs +THUMBPATH=$BASEDIR/thumbs -if [ ! -f $BASEDIR/$PROJECT/music.html ]; - then echo create $BASEDIR/$PROJECT/music.html and add some music +if [ ! -f $BASEDIR/music.html ]; + then echo create $BASEDIR/music.html and add some music exit 0; fi
--- a/rasterize.js Sun Jul 15 01:14:27 2012 +0100 +++ b/rasterize.js Mon Jul 16 16:51:55 2012 +0100 @@ -2,7 +2,9 @@ system = require('system'), address, output, size; -page.clipRect = { top: 70, left: 0, width: 1280, height: 800 } +top = system.args[3]; + +page.clipRect = { top: top, left: 0, width: 1280, height: 800 } if (system.args.length < 3 || system.args.length > 5) { console.log('Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat] [zoom]'); @@ -11,14 +13,16 @@ } else { address = system.args[1]; output = system.args[2]; + + page.viewportSize = { width: 800, height: 800 }; - if (system.args.length > 3 && system.args[2].substr(-4) === ".pdf") { - size = system.args[3].split('*'); + 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' }; } - if (system.args.length > 4) { - page.zoomFactor = system.args[4]; + if (system.args.length > 5) { + page.zoomFactor = system.args[5]; } page.open(address, function (status) { if (status !== 'success') {
--- a/ss2thumb.sh Sun Jul 15 01:14:27 2012 +0100 +++ b/ss2thumb.sh Mon Jul 16 16:51:55 2012 +0100 @@ -12,22 +12,24 @@ SERVER=$2 BASEDIR='m' PROJECT=$1 -THUMBPATH=www/$BASEDIR/$PROJECT/img/thumbs +THUMBPATH="www/$BASEDIR/thumbs" if [ ! -d $THUMBPATH ]; echo creating $THUMBPATH then mkdir -p $THUMBPATH; fi -ANCHORS=`grep '<a' www/$BASEDIR/$PROJECT/music.html|wc -l` +ANCHORS=`grep '<a' www/$BASEDIR/music.html|wc -l` +GAP=800 +TOP=0 +for each in $(seq 1 $ANCHORS); +do + echo $TOP + TOP=$(($TOP+$GAP)); + echo phantomjs rasterize.js $SERVER/$BASEDIR/music.html#$each $each.png $TOP -for each in $(seq 1 $ANCHORS); + phantomjs rasterize.js $SERVER/$BASEDIR/music.html#$each $each.png $TOP + mogrify -scale 33% $each.png + mv $each.png www/$BASEDIR/thumbs/ -do - echo phantomjs rasterize.js $SERVER/$BASEDIR/$PROJECT/music.html#$each $each.png - - phantomjs rasterize.js $SERVER/$BASEDIR/$PROJECT/music.html#$each $each.png - mogrify -scale 30% $each.png - mv $each.png www/$BASEDIR/$PROJECT/img/thumbs/ - -done \ No newline at end of file +done
--- a/svgmods.sh Sun Jul 15 01:14:27 2012 +0100 +++ b/svgmods.sh Mon Jul 16 16:51:55 2012 +0100 @@ -1,9 +1,16 @@ +#!/bin/bash + +## add reference to external stylesheet to each svg file + path="www/m/svg" header='<?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?> ' for i in `ls $path/*.svg`; do + # change size - commented out - size can be defined in html + sed -i 's/ width="105.00mm" height="60.00mm" viewBox="0 0 108.6378 62.0787"/ width="1280px" height="800px" viewBox="0 0 1280 800"/'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 ; mv tmp.svg $i; -done; \ No newline at end of file +done;
--- a/www/m/css/nodescore.css Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/css/nodescore.css Mon Jul 16 16:51:55 2012 +0100 @@ -1,5 +1,5 @@ body{ - background-color: gray; + background-color: black; color: white; font: 12px Helvetica, Arial; } @@ -67,26 +67,30 @@ background-color: black; } +.svgmusic { + +width: 1280px; +height: 800px; + +} + .magicsquare { border: 1px solid yellow; padding: 2px 2px 2px 2px; background: blue; - width: 100px; - height: 90px; + width: 100px; height: 90px; border-radius: 20px; float: left; color: black; font-size: 7em; text-align: center; -} +} .latencies{ - height: 90px; - width: 200px; + height: 90px; width: 200px; border: 1px solid blue; - position: relative; + position: relative; top: 15%; float: right; - top: 15%; padding: 5px 5px 5px 5px ; background-color: blue; } @@ -95,64 +99,48 @@ display:table-cell; vertical-align:bottom; opacity: 0.7; - height: 25px; text-align: center; - width: 858px; - font-size:1.5em; - color: yellow; + height: 25px; width: 858px; + font-size:1.5em; color: yellow; ! border: 1px solid blue; - position: absolute; + position: absolute; top: 25px; left: 206px; float: left; - left: 206px; - top: 25px; background-color: transparent; } #current{ - opacity: 0.8; - height: 25px; + position: absolute; left: 210px; top: 25px; + height: 25px; width: 130px; text-align: center; - width: 130px; - font-size:1.5em; - font-weight: bold; + font-size:1.5em; font-weight: bold; color: white; ! border: 1px solid blue; - position: absolute; float: left; - left: 210px; - top: 25px; background-color: transparent; z-index: 1; + opacity: 0.8; } #client_latency{ - opacity: 0.8; - height: 25px; - width: 160px; + position: absolute; right: 205px; top: 25px; + height: 25px; width: 160px; font-size:1.5em; color: pink; ! border: 1px solid blue; - position: absolute; - float: left; - right: 205px; - top: 25px; + float: left; background-color: black; z-index: 1; padding: 0px 15px; + opacity: 0.8; } - .metrocase { - position: absolute; - top: 0px; - left: 0px; + position: absolute; top: 0px; left: 0px; + width: 200px; height: 50px; color: black; text-align: center; - font-size: 4em; - font-color: black; + font-size: 4em; font-color: black; background: transparent; - width: 200px; - height: 50px; z-index: 2; border: 1px solid blue; } @@ -163,52 +151,39 @@ #metronome3 { width: 50px; height: 40px; border-radius: 30px; float:left; } #fluid {} -.fluid-img{height:50%; width:50%;} +.fluid-img{ height:50%; width:50%; } -.clear -{ -clear:both; -} +.clear { clear:both; } #client_chronometer{ border: 1px solid blue ; background-color: black; color: white; - font-size: 3em; - text-align: center; + font-size: 3em; text-align: center; opacity:0.7; - position: absolute; - right: 0px; - top: 0px; -// padding: 2px 2px 2px 2px; - width: 220px; - height: 50px; + position: absolute; right: 0px; top: 0px; + width: 220px; height: 50px; z-position: 2; } #countinnumber{ - background-color: gray; - font-size: 48em; + position: absolute; + width: 1280px; height: 800px; + background-color:gray; + font-size: 48em; font-weight:bolder; display:inline; text-align:center; z-index: 2; - position: absolute; opacity:0.5; - font-weight:bolder; - width: 1280px; - height: 800px; } #content-txt { -// padding: 2px 2px 2px 2px; - font-size: 3em; - text-align:center; - background-color: black; - border: 1px solid white; - height: 800px; - width: 1280px; - margin-left:auto; - margin-right:auto; - display: table-cell; - vertical-align: middle; -} + width:1280px; height:800px; + font-size:3em; + text-align:center; + background-color:black; + border:1px solid white; + margin-left:auto; margin-right:auto; + display:table-cell; + vertical-align:middle; +} \ No newline at end of file
--- a/www/m/js/nodescore-client.js Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/js/nodescore-client.js Mon Jul 16 16:51:55 2012 +0100 @@ -111,13 +111,13 @@ function pageTurnB(unit) { var units=6; - var section = "seta/" +// var section = "seta/" var next=(((unit+1)%units)+units)%units console.log("HOP TURN" + unit+ "next:" + next); // $("#live").html($("#unit"+unit).html()); - $("#live").load(section+"music.html #"+unit +" *"); - - $("#preview").html('<img src=' + section+"img/thumbs/"+next + ".png" + '>'); + $("#live").load("music.html #"+unit +" *"); + $("#preview").html("<img src='thumbs/"+next + ".png" + "'>") +// $("#preview").html('<embed src="music.html #"+next + ' width="400px">'); } ////////////////////////////////////////////////
--- a/www/m/seta/music.html Sun Jul 15 01:14:27 2012 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -<!DOCTYPE html> -<html> -<head> - - <head> - <link href="../css/nodescore.css" rel="stylesheet"> - </head> - -</head> - -<body> - <a data-role="page" id="1"><div id="unit01"> <embed src="../svg/13_6_2.svg" type="image/svg+xml"/> </div></a> - <a data-role="page" id="2"><div id="unit02"> <embed src="../svg/14_1_1.svg" type="image/svg+xml"/> </div></a> - <a data-role="page" id="3"><div id="unit03"> <embed src="../svg/15_0_2.svg" type="image/svg+xml"/> </div></a> - <a data-role="page" id="4"><div id="unit04"> <embed src="../svg/26_6_3.svg" type="image/svg+xml"/> </div></a> - <a data-role="page" id="5"><div id="unit05"> <embed src="../svg/44_7_5.svg" type="image/svg+xml"/> </div></a> - <a data-role="page" id="6"><div id="unit06"> <embed src="../svg/32_2_4.svg" type="image/svg+xml"/> </div></a> -</body> -</html>
--- a/www/m/svg/13_6_2.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/13_6_2.svg Mon Jul 16 16:51:55 2012 +0100 @@ -26,59 +26,59 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/> <path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.0213, 23.0691) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.0213, 22.0691) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.2678, 22.5691)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(25.8839, 22.5691)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 24.5691)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 23.5691)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 22.5691)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 21.5691)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 20.5691)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 25.5691)" x="27.1912" y="-0.1269" width="1.7444" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.5691)" x="43.2317" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(86.5267, 22.5691)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(73.0599, 20.0691) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(75.1324, 20.5691) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(73.5218, 25.3325) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(66.7351, 24.0691) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(28.0213, 23.6256) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.0213, 22.6256) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.2678, 23.1256)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(25.8839, 23.1256)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 25.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 24.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 23.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 22.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 21.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(21.8189, 26.1256)" x="26.7837" y="-0.1269" width="1.7444" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1256)" x="42.9767" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(86.5267, 23.1256)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(72.9103, 20.6256) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(75.0996, 21.1256) scale(0.0040, -0.0040)" 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"/> +<path transform="translate(73.4288, 25.9425) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(66.5755, 24.6256) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(68.8851, 29.0935)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(68.8851, 29.0935)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(68.1851, 24.0691) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(68.7255, 29.6442)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(68.7255, 29.6442)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(68.0255, 24.6256) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(22.6189, 23.5691) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 +<path transform="translate(22.6189, 24.1256) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188 c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27 c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337 c0 59 -6 82 -33 130z" fill="currentColor"/> -<path transform="translate(64.3099, 19.0691) scale(0.0028, -0.0028)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(63.8206, 19.6256) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> -<path transform="translate(45.6269, 25.5134) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> -<path transform="translate(44.9736, 20.5691) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(40.0932, 22.0691) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(45.2092, 26.0699) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> +<path transform="translate(44.5559, 21.1256) scale(0.0040, -0.0040)" 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"/> +<path transform="translate(40.0880, 22.6256) scale(0.0028, -0.0028)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(43.3889, 20.5691) scale(0.0045, -0.0045)" 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 +<path transform="translate(42.9712, 21.1256) scale(0.0045, -0.0045)" 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"/> -<path transform="translate(41.4232, 22.0691) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(41.2158, 22.6256) scale(0.0025, -0.0025)" 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(29.9214, 17.2256)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(33.7599, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="43.2790" y2="-0.0000" stroke-dasharray="0.45362003059591,0.54589262550301"/> -<line transform="translate(77.0389, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> +<line transform="translate(33.7599, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="43.2463" y2="-0.0000" stroke-dasharray="0.453391428930474,0.545359221616993"/> +<line transform="translate(77.0062, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> <line transform="translate(33.7599, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> -<path transform="translate(30.5034, 26.3191) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(65.2256, 19.0691) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(51.7503, 20.0691) scale(0.0032, -0.0032)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(30.3833, 26.7622) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(64.9706, 19.6256) 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"/> +<path transform="translate(51.3496, 20.6256) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(52.9733, 20.0691) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(29.9214, 22.0691) 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"/> -<path transform="translate(47.7351, 25.5691) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(52.6796, 20.6256) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(29.9214, 22.6256) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(47.3275, 26.1256) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(49.8851, 29.0935)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.8851, 29.0935)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(49.1851, 25.5691) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(49.4776, 29.6442)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(49.4776, 29.6442)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(48.7776, 26.1256) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> </svg>
--- a/www/m/svg/15_0_2.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/15_0_2.svg Mon Jul 16 16:51:55 2012 +0100 @@ -25,94 +25,95 @@ <path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/> <path transform="translate(11.5732, 13.0080) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(68.2572, 27.1755) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(68.2572, 26.1755) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(69.1428, 26.6755)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(69.8963, 26.6755)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(37.8189, 28.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 27.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 26.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 25.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<rect transform="translate(37.8189, 23.6755)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.6755)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.6755)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.6755)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.6755)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.6755)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<path transform="translate(44.0213, 27.1755) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(44.0213, 26.1755) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(43.2678, 26.6755)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(41.8839, 26.6755)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(38.6189, 27.6755) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 +<path transform="translate(68.2572, 27.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(68.2572, 26.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(69.1428, 26.8283)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(69.8963, 26.8283)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(37.8189, 28.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 27.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 25.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<rect transform="translate(37.8189, 23.8283)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.8283)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.8283)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 23.8283)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.8283)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.8283)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 23.8283)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.8283)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.8283)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<path transform="translate(44.0213, 27.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(44.0213, 26.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(43.2678, 26.8283)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(41.8839, 26.8283)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(38.6189, 27.8283) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188 c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27 c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337 c0 59 -6 82 -33 130z" fill="currentColor"/> -<path transform="translate(53.4077, 26.6755)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1247 -0.7750C6.1133 -0.0536 1.7934 -0.0536 0.7820 -0.7750L0.7820 -0.7750C1.7934 0.1309 6.1133 0.1309 7.1247 -0.7750z"/> -<path transform="translate(53.4077, 26.6755)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8068 -5.0000C6.7444 -5.7386 1.8444 -5.7386 0.7820 -5.0000L0.7820 -5.0000C1.8444 -5.9231 6.7444 -5.9231 7.8068 -5.0000z"/> -<line transform="translate(54.3230, 31.9356)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.6734" y2="0.0000"/> -<line transform="translate(54.3230, 31.9356)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.6734" y2="-0.0000"/> -<path transform="translate(45.9829, 24.6755) 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"/> -<line transform="translate(45.9829, 31.9356)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.6734" y2="0.6666"/> -<line transform="translate(45.9829, 31.9356)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.6734" y2="-0.6666"/> -<line transform="translate(51.7522, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(51.7522, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(51.0148, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(51.0148, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(50.2773, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(50.2773, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(49.5399, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(49.5399, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(48.8024, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(48.8024, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(48.0649, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(48.0649, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(51.7522, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(51.7522, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(51.0148, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(51.0148, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(50.2773, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(50.2773, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(49.5399, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(49.5399, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(48.8024, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(48.8024, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(48.0649, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(48.0649, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<path transform="translate(53.4077, 22.6755) 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"/> -<path transform="translate(53.4077, 24.6755) 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"/> -<path transform="translate(53.4077, 17.1626) scale(0.0040, -0.0040)" d="M313 -312c-14 0 -26 12 -26 26v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-25 11 -25 25v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-26 11 -26 25v122l-17 -5c-3 -1 -6 -1 -9 -1c-19 0 -36 16 -36 36v41c0 16 11 30 26 34l36 11v147l-17 -5c-3 -1 -6 -2 -9 -2 -c-19 0 -36 16 -36 36v42c0 16 11 30 26 34l36 10v136c0 14 12 26 26 26s25 -12 25 -26v-122l62 18v136c0 14 11 25 25 25s25 -11 25 -25v-122l62 18v136c0 14 12 25 26 25s25 -11 25 -25v-122l17 5c3 1 6 1 9 1c19 0 36 -16 36 -36v-41c0 -16 -11 -30 -26 -34l-36 -11v-147 -l17 5c3 1 6 2 9 2c19 0 36 -16 36 -36v-42c0 -16 -11 -30 -26 -34l-36 -10v-136c0 -14 -11 -26 -25 -26zM113 49v-147l62 17v147zM225 81v-147l62 17v147z" fill="currentColor"/> -<path transform="translate(45.9829, 22.6755) 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"/> -<path transform="translate(53.9897, 20.6626) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> -<path transform="translate(45.9829, 26.6755)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8068 -5.0000C6.7444 -5.7386 1.8444 -5.7386 0.7820 -5.0000L0.7820 -5.0000C1.8444 -5.9231 6.7444 -5.9231 7.8068 -5.0000z"/> -<path transform="translate(45.9829, 26.6755)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1247 -0.7750C6.1133 -0.0536 1.7934 -0.0536 0.7820 -0.7750L0.7820 -0.7750C1.7934 0.1309 6.1133 0.1309 7.1247 -0.7750z"/> -<line transform="translate(59.1770, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(59.1770, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(58.4396, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(58.4396, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(57.7021, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(57.7021, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(56.9646, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(56.9646, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(56.2272, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(56.2272, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(55.4897, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(55.4897, 22.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(59.1770, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(59.1770, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(58.4396, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(58.4396, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(57.7021, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(57.7021, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(56.9646, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(56.9646, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(56.2272, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(56.2272, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<line transform="translate(55.4897, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> -<line transform="translate(55.4897, 24.6755)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> -<path transform="translate(60.8325, 22.6755) 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"/> -<path transform="translate(60.8325, 24.6755) 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"/> +<path transform="translate(53.4077, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1247 -1.8104C6.1614 -1.1067 2.3273 -1.1067 1.3640 -1.8104L1.3640 -1.8104C2.3273 -0.9221 6.1614 -0.9221 7.1247 -1.8104z"/> +<path transform="translate(53.4077, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2248 -6.0000C6.2529 -6.7070 2.3359 -6.7070 1.3640 -6.0000L1.3640 -6.0000C2.3359 -6.8915 6.2529 -6.8915 7.2248 -6.0000z"/> +<line transform="translate(54.3230, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.6734" y2="0.0000"/> +<line transform="translate(54.3230, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.6734" y2="-0.0000"/> +<path transform="translate(45.9829, 24.8283) 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"/> +<line transform="translate(45.9829, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.6734" y2="0.6666"/> +<line transform="translate(45.9829, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.6734" y2="-0.6666"/> +<line transform="translate(51.7522, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(51.7522, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(51.0148, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(51.0148, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(50.2773, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(50.2773, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(49.5399, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(49.5399, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(48.8024, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(48.8024, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(48.0649, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(48.0649, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(51.7522, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(51.7522, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(51.0148, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(51.0148, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(50.2773, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(50.2773, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(49.5399, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(49.5399, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(48.8024, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(48.8024, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(48.0649, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(48.0649, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<path transform="translate(53.4077, 21.3283) 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"/> +<path transform="translate(53.4077, 24.8283) 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"/> +<path transform="translate(53.4077, 16.7154) scale(0.0040, -0.0040)" d="M118 30c-1 34 -17 68 -48 68c-26 0 -38 -31 -38 -61c0 -55 42 -96 82 -134c3 20 5 41 5 62v10zM173 -144c0 -20 -12 -38 -31 -38c-30 0 -39 37 -59 57c-54 52 -128 94 -128 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-10 330c11 6 24 9 36 9s24 -3 35 -9z" fill="currentColor"/> +<path transform="translate(45.9829, 21.3283) 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"/> +<path transform="translate(53.9897, 19.3154) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> +<path transform="translate(45.9829, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2248 -6.0000C6.2529 -6.7070 2.3359 -6.7070 1.3640 -6.0000L1.3640 -6.0000C2.3359 -6.8915 6.2529 -6.8915 7.2248 -6.0000z"/> +<path transform="translate(45.9829, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1247 -1.8104C6.1614 -1.1067 2.3273 -1.1067 1.3640 -1.8104L1.3640 -1.8104C2.3273 -0.9221 6.1614 -0.9221 7.1247 -1.8104z"/> +<line transform="translate(59.1770, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(59.1770, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(58.4396, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(58.4396, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(57.7021, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(57.7021, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(56.9646, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(56.9646, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(56.2272, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(56.2272, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(55.4897, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(55.4897, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(59.1770, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(59.1770, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(58.4396, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(58.4396, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(57.7021, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(57.7021, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(56.9646, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(56.9646, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(56.2272, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(56.2272, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<line transform="translate(55.4897, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/> +<line transform="translate(55.4897, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> +<path transform="translate(60.8325, 21.3283) 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"/> +<path transform="translate(60.8325, 24.8283) 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"/> </svg>
--- a/www/m/svg/24_0_3.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/24_0_3.svg Mon Jul 16 16:51:55 2012 +0100 @@ -28,98 +28,99 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/> <path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(68.2572, 27.2204) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(68.2572, 26.2204) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(69.1428, 26.7204)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(69.8963, 26.7204)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(37.8189, 28.7204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 27.7204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 26.7204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 25.7204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 24.7204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<path transform="translate(44.0213, 27.2204) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(44.0213, 26.2204) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(43.2678, 26.7204)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(41.8839, 26.7204)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(38.6189, 27.7204) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 +<path transform="translate(68.2572, 26.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(68.2572, 25.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(69.1428, 26.4864)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(69.8963, 26.4864)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(37.8189, 28.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 27.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 25.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 24.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<path transform="translate(44.0213, 26.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(44.0213, 25.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(43.2678, 26.4864)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(41.8839, 26.4864)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(38.6189, 27.4864) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188 c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27 c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337 c0 59 -6 82 -33 130z" fill="currentColor"/> -<path transform="translate(53.3281, 26.7204)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.3145 0.1953C6.3521 0.8987 2.5264 0.8987 1.5640 0.1953L1.5640 0.1953C2.5264 1.0833 6.3521 1.0833 7.3145 0.1953z"/> -<path transform="translate(54.3922, 26.7204)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.2505 -1.2002C5.3132 -1.8938 1.7193 -1.8938 0.7820 -1.2002L0.7820 -1.2002C1.7193 -2.0783 5.3132 -2.0783 6.2505 -1.2002z"/> -<path transform="translate(44.9456, 26.2204) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(54.5495, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.5538 0.1951C5.5896 0.8992 1.7462 0.8992 0.7820 0.1951L0.7820 0.1951C1.7462 1.0837 5.5896 1.0837 6.5538 0.1951z"/> +<path transform="translate(54.5495, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.6539 -3.0000C5.7331 -3.6870 2.2848 -3.6870 1.3640 -3.0000L1.3640 -3.0000C2.2848 -3.8715 5.7331 -3.8715 6.6539 -3.0000z"/> +<path transform="translate(44.9456, 25.9864) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(44.9456, 26.2204) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(46.2456, 23.9864) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<line transform="translate(52.8188, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(52.8188, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(52.1633, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(52.1633, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(51.5079, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(51.5079, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(50.8525, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(50.8525, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(50.1971, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(50.1971, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(49.5416, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(49.5416, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<path transform="translate(53.3281, 26.2204) 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"/> -<line transform="translate(51.7547, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(51.7547, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(51.0993, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(51.0993, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(50.4439, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(50.4439, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(49.7884, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(49.7884, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(49.1330, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(49.1330, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(48.4776, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(48.4776, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<path transform="translate(46.3956, 26.7204)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.3145 0.1953C6.3521 0.8987 2.5264 0.8987 1.5640 0.1953L1.5640 0.1953C2.5264 1.0833 6.3521 1.0833 7.3145 0.1953z"/> -<text transform="translate(46.3956, 21.1435)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> +<line transform="translate(52.9892, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(52.9892, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(52.3469, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(52.3469, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(51.7045, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(51.7045, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(51.0622, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(51.0622, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(50.4199, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(50.4199, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(49.7776, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(49.7776, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<path transform="translate(54.5495, 23.9864) 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"/> +<line transform="translate(52.9892, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(52.9892, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(52.3469, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(52.3469, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(51.7045, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(51.7045, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(51.0622, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(51.0622, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(50.4199, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(50.4199, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(49.7776, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(49.7776, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<text transform="translate(47.6956, 19.9734)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(50.2341, 20.3985)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="12.8546" y2="-0.0000" stroke-dasharray="0.443488721792942,0.522252904962752"/> -<line transform="translate(63.0887, 20.3985)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> -<line transform="translate(50.2341, 20.3985)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> -<line transform="translate(46.3956, 32.6536)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.7132" y2="0.6666"/> -<line transform="translate(46.3956, 32.6536)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.7132" y2="-0.6666"/> -<path transform="translate(47.4596, 26.2204) 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"/> -<path transform="translate(61.3247, 26.2204) 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"/> -<path transform="translate(60.2607, 26.2204) 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"/> -<line transform="translate(59.7513, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(59.7513, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(59.0959, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(59.0959, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(58.4404, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(58.4404, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(57.7850, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(57.7850, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(57.1296, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(57.1296, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(56.4742, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(56.4742, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(58.6872, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(58.6872, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(58.0318, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(58.0318, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(57.3764, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(57.3764, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(56.7210, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(56.7210, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(56.0655, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(56.0655, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<line transform="translate(55.4101, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3277" y1="-0.2838" x2="0.6554" y2="0.2838"/> -<line transform="translate(55.4101, 26.2204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2838" x2="0.3277" y2="-0.2838"/> -<path transform="translate(46.3956, 26.2204) 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"/> -<path transform="translate(47.4596, 26.7204)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.2505 -1.2002C5.3132 -1.8938 1.7193 -1.8938 0.7820 -1.2002L0.7820 -1.2002C1.7193 -2.0783 5.3132 -2.0783 6.2505 -1.2002z"/> -<path transform="translate(54.9742, 23.1435) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> -<line transform="translate(54.7755, 32.6536)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.7132" y2="0.0000"/> -<line transform="translate(54.7755, 32.6536)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.7132" y2="-0.0000"/> -<path transform="translate(54.3922, 17.6536) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42 -c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/> -<path transform="translate(54.3922, 26.2204) 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"/> +<line transform="translate(51.5341, 19.2285)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="11.6333" y2="-0.0000" stroke-dasharray="0.46285575429614,0.567442647470213"/> +<line transform="translate(63.1674, 19.2285)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> +<line transform="translate(51.5341, 19.2285)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> +<line transform="translate(47.6956, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.1026" y2="0.6666"/> +<line transform="translate(47.6956, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.1026" y2="-0.6666"/> +<path transform="translate(47.6956, 25.9864) 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"/> +<path transform="translate(47.6956, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.5538 0.1951C5.5896 0.8992 1.7462 0.8992 0.7820 0.1951L0.7820 0.1951C1.7462 1.0837 5.5896 1.0837 6.5538 0.1951z"/> +<path transform="translate(61.4034, 25.9864) 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"/> +<path transform="translate(61.4034, 23.9864) 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"/> +<line transform="translate(59.8431, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(59.8431, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(59.2007, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(59.2007, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(58.5584, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(58.5584, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(57.9161, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(57.9161, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(57.2738, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(57.2738, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(56.6315, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(56.6315, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(59.8431, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(59.8431, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(59.2007, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(59.2007, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(58.5584, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(58.5584, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(57.9161, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(57.9161, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(57.2738, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(57.2738, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<line transform="translate(56.6315, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/> +<line transform="translate(56.6315, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/> +<path transform="translate(47.6956, 23.9864) 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"/> +<path transform="translate(47.6956, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.6539 -3.0000C5.7331 -3.6870 2.2848 -3.6870 1.3640 -3.0000L1.3640 -3.0000C2.2848 -3.8715 5.7331 -3.8715 6.6539 -3.0000z"/> +<path transform="translate(55.1315, 21.9735) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> +<line transform="translate(55.4648, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.1026" y2="0.0000"/> +<line transform="translate(55.4648, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.1026" y2="-0.0000"/> +<path transform="translate(54.5495, 16.4835) scale(0.0040, -0.0040)" d="M313 -312c-14 0 -26 12 -26 26v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-25 11 -25 25v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-26 11 -26 25v122l-17 -5c-3 -1 -6 -1 -9 -1c-19 0 -36 16 -36 36v41c0 16 11 30 26 34l36 11v147l-17 -5c-3 -1 -6 -2 -9 -2 +c-19 0 -36 16 -36 36v42c0 16 11 30 26 34l36 10v136c0 14 12 26 26 26s25 -12 25 -26v-122l62 18v136c0 14 11 25 25 25s25 -11 25 -25v-122l62 18v136c0 14 12 25 26 25s25 -11 25 -25v-122l17 5c3 1 6 1 9 1c19 0 36 -16 36 -36v-41c0 -16 -11 -30 -26 -34l-36 -11v-147 +l17 5c3 1 6 2 9 2c19 0 36 -16 36 -36v-42c0 -16 -11 -30 -26 -34l-36 -10v-136c0 -14 -11 -26 -25 -26zM113 49v-147l62 17v147zM225 81v-147l62 17v147z" fill="currentColor"/> +<path transform="translate(54.5495, 25.9864) 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"/> </svg>
--- a/www/m/svg/26_6_3.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/26_6_3.svg Mon Jul 16 16:51:55 2012 +0100 @@ -25,40 +25,41 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/> <path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.1396, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.1396, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.3861, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(26.0022, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 20.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 19.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 18.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 17.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 16.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 21.7247)" x="45.3048" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 22.7247)" x="45.3048" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(86.5267, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(22.6189, 17.7247) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(28.1396, 19.6145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.1396, 18.6145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.3861, 19.1145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(26.0022, 19.1145)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 21.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 20.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 19.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 18.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 17.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(21.8189, 22.1145)" x="45.4279" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 23.1145)" x="45.4279" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(86.5267, 19.1145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(22.6189, 18.1145) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(74.7221, 19.2247) 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"/> -<path transform="translate(72.9784, 22.8754) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> -<path transform="translate(72.3251, 18.7247) scale(0.0040, -0.0040)" 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"/> -<circle transform="translate(68.1375, 25.9606)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(68.1375, 25.9606)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(44.5238, 21.6016) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(43.9418, 19.2247) 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"/> -<path transform="translate(40.6987, 17.2247) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(74.9096, 19.6145) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(73.1489, 23.2652) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> +<path transform="translate(72.4956, 19.1145) scale(0.0040, -0.0040)" 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"/> +<circle transform="translate(68.2607, 26.3505)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(68.2607, 26.3505)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(44.5238, 21.8303) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(44.1123, 19.6145) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(40.0123, 17.6145) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151 +c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22 +zM99 61v-152l77 30v152z" fill="currentColor"/> +<path transform="translate(41.7483, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(30.6198, 21.9314) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(30.1013, 17.6145) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(67.5607, 23.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> +<path transform="translate(64.5528, 17.1145) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(51.9780, 19.1145) scale(0.0040, -0.0040)" 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"/> +<path transform="translate(46.7600, 21.1145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(42.0287, 17.2247) scale(0.0032, -0.0032)" 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"/> -<path transform="translate(30.8367, 21.7445) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> -<path transform="translate(30.1013, 17.2247) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(67.4375, 22.7247) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 -c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(64.4619, 16.7247) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(52.0689, 18.7247) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(46.8831, 20.7247) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 -c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(49.0332, 25.9606)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.0332, 25.9606)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(48.3332, 20.7247) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(48.9100, 26.3505)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(48.9100, 26.3505)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(48.2100, 21.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> </svg>
--- a/www/m/svg/29_6_4.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/29_6_4.svg Mon Jul 16 16:51:55 2012 +0100 @@ -28,54 +28,55 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/> <path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.1396, 21.8003) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.1396, 20.8003) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.3861, 21.3003)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(26.0022, 21.3003)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 23.3003)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 22.3003)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 21.3003)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 20.3003)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 19.3003)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(86.5267, 21.3003)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(75.3956, 18.8003) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(73.8359, 24.0637) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(73.3739, 19.3003) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(67.4905, 22.3003) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(28.1396, 21.3064) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.1396, 20.3064) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.3861, 20.8064)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(26.0022, 20.8064)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 22.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 21.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 20.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 19.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 18.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(86.5267, 20.8064)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(75.6323, 18.3064) 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"/> +<path transform="translate(74.0083, 23.6233) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(73.4898, 18.8064) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(67.5847, 21.8064) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> -<circle transform="translate(69.3405, 29.7101)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(69.3405, 29.7101)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(68.6405, 22.3003) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(69.4347, 29.2163)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(69.4347, 29.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(68.7347, 21.8064) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(64.3564, 20.8003) scale(0.0028, -0.0028)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(64.2658, 20.3064) scale(0.0032, -0.0032)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> -<path transform="translate(22.6189, 20.3003) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(22.6189, 19.8064) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(46.3770, 24.3201) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> -<path transform="translate(45.6416, 18.8003) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(40.5995, 20.3003) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 -c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(42.0495, 20.3003) 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"/> -<path transform="translate(44.2837, 18.8003) scale(0.0050, -0.0050)" d="M33 35l-2 -60v-11c0 -21 2 -43 5 -64c42 38 87 81 87 138c0 32 -13 63 -41 63c-31 0 -48 -32 -49 -66zM-17 -141l-15 587c10 6 21 8 32 8s22 -2 32 -8l-9 -337c25 26 59 40 95 40c50 0 82 -51 82 -105c0 -77 -80 -117 -137 -169c-18 -17 -26 -48 -52 -48 -c-16 0 -28 15 -28 32z" fill="currentColor"/> -<path transform="translate(29.0639, 21.8003) scale(0.0045, -0.0045)" 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 +<path transform="translate(46.3897, 23.6833) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(45.8077, 18.3064) 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"/> +<path transform="translate(40.3837, 19.8064) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151 +c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22 +zM99 61v-152l77 30v152z" fill="currentColor"/> +<path transform="translate(42.1196, 19.8064) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(44.6577, 18.3064) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +c-19 0 -32 18 -32 38z" fill="currentColor"/> +<path transform="translate(29.0639, 21.3064) scale(0.0045, -0.0045)" 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(30.6486, 28.2101)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> +<text transform="translate(30.6486, 27.7163)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> <tspan> 8vb</tspan> </text> -<line transform="translate(34.5492, 27.4031)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="42.9173" y2="-0.0000" stroke-dasharray="0.451095899843292,0.540002987080235"/> -<line transform="translate(77.4664, 27.4031)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> -<line transform="translate(34.5492, 27.4031)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> -<path transform="translate(31.3019, 24.2445) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> -<path transform="translate(30.6486, 21.8003) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(65.2721, 20.8003) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(53.5624, 19.3003) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(48.4261, 23.8003) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<line transform="translate(34.5492, 26.9092)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="42.8472" y2="-0.0000" stroke-dasharray="0.450606921079355,0.53886203663105"/> +<line transform="translate(77.3963, 26.9092)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> +<line transform="translate(34.5492, 26.9092)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> +<path transform="translate(31.3019, 23.7507) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> +<path transform="translate(30.6486, 21.3064) scale(0.0040, -0.0040)" 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"/> +<path transform="translate(65.2508, 20.3064) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(53.4580, 18.8064) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(48.3070, 23.3064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(50.5762, 29.7101)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(50.5762, 29.7101)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(49.8762, 23.8003) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(50.4571, 29.2163)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(50.4571, 29.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(49.7571, 23.3064) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> </svg>
--- a/www/m/svg/31_0_4.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/31_0_4.svg Mon Jul 16 16:51:55 2012 +0100 @@ -27,86 +27,94 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/> <path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(68.2572, 25.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(68.2572, 24.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(69.1428, 24.7376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(69.8963, 24.7376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(37.8189, 26.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 25.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<path transform="translate(44.1396, 25.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(44.1396, 24.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(43.3861, 24.7376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(42.0022, 24.7376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(38.6189, 23.7376) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(68.2572, 27.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(68.2572, 26.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(69.1428, 26.7679)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(69.8963, 26.7679)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(37.8189, 28.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 27.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 24.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<rect transform="translate(37.8189, 23.7679)" x="8.4040" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7679)" x="8.5200" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 23.7679)" x="15.6518" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7679)" x="15.6518" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 23.7679)" x="22.8996" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7679)" x="22.8996" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<path transform="translate(44.1396, 27.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(44.1396, 26.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(43.3861, 26.7679)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(42.0022, 26.7679)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(38.6189, 25.7679) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(53.7617, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.9477 -0.8088C6.0000 -0.1111 2.3117 -0.1111 1.3640 -0.8088L1.3640 -0.8088C2.3117 0.0735 6.0000 0.0735 6.9477 -0.8088z"/> -<path transform="translate(53.7617, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.0478 -3.0000C6.0912 -3.7012 2.3206 -3.7012 1.3640 -3.0000L1.3640 -3.0000C2.3206 -3.8857 6.0912 -3.8857 7.0478 -3.0000z"/> -<path transform="translate(53.7617, 23.7376) 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"/> -<path transform="translate(53.7617, 22.2376) 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"/> -<path transform="translate(45.0639, 23.7376) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(53.7617, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.9477 -0.8088C6.0000 -0.1111 2.3117 -0.1111 1.3640 -0.8088L1.3640 -0.8088C2.3117 0.0735 6.0000 0.0735 6.9477 -0.8088z"/> +<path transform="translate(53.7617, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.0478 -5.0000C6.0912 -5.7012 2.3206 -5.7012 1.3640 -5.0000L1.3640 -5.0000C2.3206 -5.8857 6.0912 -5.8857 7.0478 -5.0000z"/> +<path transform="translate(53.7617, 22.2679) 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"/> +<path transform="translate(45.0639, 25.7679) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<line transform="translate(52.1357, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(52.1357, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(51.4278, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(51.4278, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(50.7198, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(50.7198, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(50.0118, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(50.0118, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(49.3039, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(49.3039, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(48.5959, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(48.5959, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<path transform="translate(53.7617, 17.6247) scale(0.0040, -0.0040)" d="M213 -182h-26c-30 0 -38 37 -58 57c-54 52 -129 94 -129 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-9 330c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57zM163 30 -c-1 34 -16 68 -47 68c-26 0 -39 -31 -39 -61c0 -55 43 -96 83 -134c3 20 5 41 5 62v10zM237 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68z" fill="currentColor"/> -<line transform="translate(52.1357, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(52.1357, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(51.4278, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(51.4278, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(50.7198, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(50.7198, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(50.0118, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(50.0118, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(49.3039, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(49.3039, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(48.5959, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(48.5959, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(46.5139, 30.1708)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.4964" y2="0.6666"/> -<line transform="translate(46.5139, 30.1708)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.4964" y2="-0.6666"/> -<path transform="translate(46.5139, 23.7376) 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"/> -<path transform="translate(46.5139, 22.2376) 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"/> -<line transform="translate(54.6770, 30.1708)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.4964" y2="0.0000"/> -<line transform="translate(54.6770, 30.1708)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.4964" y2="-0.0000"/> -<path transform="translate(54.3437, 20.2247) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> -<path transform="translate(46.5139, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.0478 -3.0000C6.0912 -3.7012 2.3206 -3.7012 1.3640 -3.0000L1.3640 -3.0000C2.3206 -3.8857 6.0912 -3.8857 7.0478 -3.0000z"/> -<path transform="translate(46.5139, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.9477 -0.8088C6.0000 -0.1111 2.3117 -0.1111 1.3640 -0.8088L1.3640 -0.8088C2.3117 0.0735 6.0000 0.0735 6.9477 -0.8088z"/> -<line transform="translate(59.3835, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(59.3835, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(58.6755, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(58.6755, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(57.9676, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(57.9676, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(57.2596, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(57.2596, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(56.5517, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(56.5517, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(55.8437, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(55.8437, 22.2376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(59.3835, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(59.3835, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(58.6755, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(58.6755, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(57.9676, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(57.9676, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(57.2596, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(57.2596, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(56.5517, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(56.5517, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<line transform="translate(55.8437, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> -<line transform="translate(55.8437, 23.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> -<path transform="translate(61.0095, 22.2376) 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"/> -<path transform="translate(61.0095, 23.7376) 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"/> +<path transform="translate(45.0639, 22.2679) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> +<line transform="translate(52.1357, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(52.1357, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(51.4278, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(51.4278, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(50.7198, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(50.7198, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(50.0118, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(50.0118, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(49.3039, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(49.3039, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(48.5959, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(48.5959, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<path transform="translate(53.7617, 25.7679) 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"/> +<line transform="translate(52.1357, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(52.1357, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(51.4278, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(51.4278, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(50.7198, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(50.7198, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(50.0118, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(50.0118, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(49.3039, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(49.3039, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(48.5959, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(48.5959, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(46.5139, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.4964" y2="0.6666"/> +<line transform="translate(46.5139, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.4964" y2="-0.6666"/> +<path transform="translate(46.5139, 25.7679) 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"/> +<path transform="translate(61.0095, 25.7679) 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"/> +<path transform="translate(61.0095, 22.2679) 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"/> +<line transform="translate(59.3835, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(59.3835, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(58.6755, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(58.6755, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(57.9676, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(57.9676, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(57.2596, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(57.2596, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(56.5517, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(56.5517, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(55.8437, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(55.8437, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(59.3835, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(59.3835, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(58.6755, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(58.6755, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(57.9676, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(57.9676, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(57.2596, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(57.2596, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(56.5517, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(56.5517, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<line transform="translate(55.8437, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/> +<line transform="translate(55.8437, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/> +<path transform="translate(46.5139, 22.2679) 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"/> +<path transform="translate(46.5139, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.9477 -0.8088C6.0000 -0.1111 2.3117 -0.1111 1.3640 -0.8088L1.3640 -0.8088C2.3117 0.0735 6.0000 0.0735 6.9477 -0.8088z"/> +<path transform="translate(46.5139, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.0478 -5.0000C6.0912 -5.7012 2.3206 -5.7012 1.3640 -5.0000L1.3640 -5.0000C2.3206 -5.8857 6.0912 -5.8857 7.0478 -5.0000z"/> +<path transform="translate(54.3437, 20.2550) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> +<line transform="translate(54.6770, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.4964" y2="0.0000"/> +<line transform="translate(54.6770, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.4964" y2="-0.0000"/> +<path transform="translate(53.7617, 16.7550) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42 +c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/> </svg>
--- a/www/m/svg/40_0_5.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/40_0_5.svg Mon Jul 16 16:51:55 2012 +0100 @@ -25,115 +25,108 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/> <path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(68.2572, 23.3610) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(68.2572, 22.3610) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(69.1428, 22.8610)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(69.8963, 22.8610)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(37.8189, 24.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 23.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 22.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 21.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 20.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<rect transform="translate(37.8189, 25.8610)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 26.8610)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 27.8610)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 28.8610)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 25.8610)" x="8.8181" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 26.8610)" x="8.8181" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 27.8610)" x="8.8181" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 28.8610)" x="8.8181" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 25.8610)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 26.8610)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 27.8610)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 28.8610)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 25.8610)" x="16.2825" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 26.8610)" x="16.2825" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 27.8610)" x="16.2825" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 28.8610)" x="16.2825" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 25.8610)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 26.8610)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 27.8610)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 28.8610)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 25.8610)" x="23.7470" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 26.8610)" x="23.7470" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 27.8610)" x="23.7470" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 28.8610)" x="23.7470" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<path transform="translate(44.1396, 23.3610) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(44.1396, 22.3610) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(43.3861, 22.8610)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(42.0022, 22.8610)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(53.3283, 22.8610)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 6.7500C6.7813 7.4895 1.8472 7.4895 0.7820 6.7500L0.7820 6.7500C1.8472 7.6740 6.7813 7.6740 7.8465 6.7500z"/> -<path transform="translate(38.6189, 21.8610) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(68.2572, 23.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(68.2572, 22.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(69.1428, 22.9860)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(69.8963, 22.9860)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(37.8189, 24.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 23.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 21.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 20.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<rect transform="translate(37.8189, 25.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 26.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 25.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 26.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 27.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 28.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 25.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 26.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 25.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 26.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 27.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 28.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 25.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 26.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 25.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 26.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 27.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 28.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<path transform="translate(44.1396, 23.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(44.1396, 22.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(43.3861, 22.9860)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(42.0022, 22.9860)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(38.6189, 21.9860) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(54.3924, 22.8610)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.7824 5.2500C5.7988 4.5386 1.7656 4.5386 0.7820 5.2500L0.7820 5.2500C1.7656 4.3541 5.7988 4.3541 6.7824 5.2500z"/> -<line transform="translate(51.6663, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(51.6663, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.9222, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.9222, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.1781, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.1781, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(49.4341, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(49.4341, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(48.6900, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(48.6900, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(47.9459, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(47.9459, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<path transform="translate(53.3283, 13.7942) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42 -c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/> -<path transform="translate(54.3924, 28.8610) 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"/> -<path transform="translate(53.3283, 28.8610) 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"/> -<line transform="translate(52.7303, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(52.7303, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(51.9863, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(51.9863, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(51.2422, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(51.2422, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.4981, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.4981, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(49.7540, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(49.7540, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(49.0100, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(49.0100, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(54.7757, 31.6090)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="8.2451" y2="0.0000"/> -<line transform="translate(54.7757, 31.6090)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="8.2451" y2="-0.0000"/> -<path transform="translate(45.8639, 22.8610)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 6.7500C6.7813 7.4895 1.8472 7.4895 0.7820 6.7500L0.7820 6.7500C1.8472 7.6740 6.7813 7.6740 7.8465 6.7500z"/> -<text transform="translate(45.8639, 17.2841)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> +<path transform="translate(53.3283, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 6.7500C6.7813 7.4895 1.8472 7.4895 0.7820 6.7500L0.7820 6.7500C1.8472 7.6740 6.7813 7.6740 7.8465 6.7500z"/> +<path transform="translate(53.3283, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 3.2500C6.8320 2.5275 2.4786 2.5275 1.4641 3.2500L1.4641 3.2500C2.4786 2.3430 6.8320 2.3430 7.8465 3.2500z"/> +<line transform="translate(51.6663, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(51.6663, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.9222, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.9222, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.1781, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.1781, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(49.4341, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(49.4341, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(48.6900, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(48.6900, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(47.9459, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(47.9459, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<path transform="translate(53.3283, 14.8192) scale(0.0040, -0.0040)" d="M118 30c-1 34 -17 68 -48 68c-26 0 -38 -31 -38 -61c0 -55 42 -96 82 -134c3 20 5 41 5 62v10zM173 -144c0 -20 -12 -38 -31 -38c-30 0 -39 37 -59 57c-54 52 -128 94 -128 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-10 330c11 6 24 9 36 9s24 -3 35 -9z" fill="currentColor"/> +<path transform="translate(53.3283, 28.9860) 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"/> +<path transform="translate(53.3283, 26.9860) 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"/> +<line transform="translate(51.6663, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(51.6663, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.9222, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.9222, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.1781, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.1781, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(49.4341, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(49.4341, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(48.6900, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(48.6900, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(47.9459, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(47.9459, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(54.2437, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.7131" y2="0.0000"/> +<line transform="translate(54.2437, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.7131" y2="-0.0000"/> +<text transform="translate(45.8639, 17.4091)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(49.7024, 16.5392)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="13.9185" y2="-0.0000" stroke-dasharray="0.445590559352718,0.52715719260223"/> -<line transform="translate(63.6209, 16.5392)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> -<line transform="translate(49.7024, 16.5392)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> -<line transform="translate(45.8639, 31.6090)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="8.2451" y2="0.6666"/> -<line transform="translate(45.8639, 31.6090)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="8.2451" y2="-0.6666"/> -<path transform="translate(46.9280, 28.8610) 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"/> -<path transform="translate(45.8639, 28.8610) 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"/> -<path transform="translate(54.9744, 19.2841) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> -<path transform="translate(46.9280, 22.8610)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.7824 5.2500C5.7988 4.5386 1.7656 4.5386 0.7820 5.2500L0.7820 5.2500C1.7656 4.3541 5.7988 4.3541 6.7824 5.2500z"/> -<line transform="translate(59.1307, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(59.1307, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(58.3866, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(58.3866, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(57.6426, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(57.6426, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.8985, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.8985, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.1544, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.1544, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(55.4103, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(55.4103, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(60.1948, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(60.1948, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(59.4507, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(59.4507, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(58.7066, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(58.7066, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(57.9626, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(57.9626, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(57.2185, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(57.2185, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.4744, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.4744, 28.8610)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<path transform="translate(60.7928, 28.8610) 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"/> -<path transform="translate(61.8569, 28.8610) 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"/> +<line transform="translate(49.7024, 16.6642)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="12.8544" y2="-0.0000" stroke-dasharray="0.443483473748415,0.522240659525523"/> +<line transform="translate(62.5568, 16.6642)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> +<line transform="translate(49.7024, 16.6642)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> +<line transform="translate(45.8639, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.7131" y2="0.6666"/> +<line transform="translate(45.8639, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.7131" y2="-0.6666"/> +<path transform="translate(45.8639, 28.9860) 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"/> +<path transform="translate(45.8639, 26.9860) 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"/> +<path transform="translate(53.9103, 19.4091) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> +<path transform="translate(45.8639, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 3.2500C6.8320 2.5275 2.4786 2.5275 1.4641 3.2500L1.4641 3.2500C2.4786 2.3430 6.8320 2.3430 7.8465 3.2500z"/> +<path transform="translate(45.8639, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 6.7500C6.7813 7.4895 1.8472 7.4895 0.7820 6.7500L0.7820 6.7500C1.8472 7.6740 6.7813 7.6740 7.8465 6.7500z"/> +<line transform="translate(59.1307, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(59.1307, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(58.3866, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(58.3866, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(57.6426, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(57.6426, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.8985, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.8985, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.1544, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.1544, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(55.4103, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(55.4103, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(59.1307, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(59.1307, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(58.3866, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(58.3866, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(57.6426, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(57.6426, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.8985, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.8985, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.1544, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.1544, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(55.4103, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(55.4103, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<path transform="translate(60.7928, 26.9860) 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"/> +<path transform="translate(60.7928, 28.9860) 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"/> </svg>
--- a/www/m/svg/42_6_5.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/42_6_5.svg Mon Jul 16 16:51:55 2012 +0100 @@ -26,59 +26,60 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/> <path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.1396, 23.5792) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.1396, 22.5792) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.3861, 23.0792)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(26.0022, 23.0792)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 25.0792)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 24.0792)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 23.0792)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 22.0792)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 21.0792)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 20.0792)" x="7.9899" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 20.0792)" x="19.5488" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.0792)" x="19.5488" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.0792)" x="19.6648" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 20.0792)" x="21.6455" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.0792)" x="21.6455" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 20.0792)" x="29.7121" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.0792)" x="29.7121" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.0792)" x="29.9048" y="-0.1269" width="2.0135" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 20.0792)" x="42.5497" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.0792)" x="42.5497" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.0792)" x="42.5497" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.0792)" x="42.5805" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 20.0792)" x="50.0119" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.0792)" x="50.0119" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.0792)" x="50.0119" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 20.0792)" x="52.4922" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.0792)" x="52.4922" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(86.5267, 23.0792)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(22.6189, 22.0792) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(28.1396, 24.6296) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.1396, 23.6296) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.3861, 24.1296)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(26.0022, 24.1296)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 26.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 25.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 24.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 23.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 22.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(21.8189, 21.1296)" x="7.9298" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 21.1296)" x="19.7885" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1296)" x="19.7885" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.1296)" x="19.9401" y="-0.1269" width="1.8082" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 21.1296)" x="22.1347" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1296)" x="22.1347" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 21.1296)" x="30.0445" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1296)" x="30.0445" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.1296)" x="30.0753" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 21.1296)" x="42.6000" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1296)" x="42.6000" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.1296)" x="42.6000" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.1296)" x="42.7927" y="-0.1269" width="2.0135" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 21.1296)" x="51.0521" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1296)" x="51.0521" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.1296)" x="51.0521" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 21.1296)" x="52.7939" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.1296)" x="52.7939" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(86.5267, 24.1296)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(22.6189, 23.1296) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(74.6377, 19.0792) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(72.9340, 26.0991) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> -<path transform="translate(72.1985, 18.0792) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<circle transform="translate(68.0921, 28.8022)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(68.0921, 28.8022)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(67.3921, 22.5792) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<path transform="translate(74.8721, 20.1296) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(73.4883, 26.8454) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(73.0767, 19.1296) scale(0.0025, -0.0025)" 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"/> +<circle transform="translate(68.9594, 29.8526)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(68.9594, 29.8526)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(68.2594, 23.6296) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(44.4443, 26.0235) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/> -<path transform="translate(43.7910, 19.0792) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(40.2087, 18.0792) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(44.7313, 26.9465) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(44.2128, 20.1296) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(40.3493, 19.1296) scale(0.0045, -0.0045)" 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"/> +<path transform="translate(41.9340, 19.1296) scale(0.0040, -0.0040)" 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"/> +<path transform="translate(30.6217, 27.0065) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(30.0397, 21.1296) 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"/> +<path transform="translate(52.0692, 19.1296) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(63.4286, 18.1296) scale(0.0050, -0.0050)" d="M33 35l-2 -60v-11c0 -21 2 -43 5 -64c42 38 87 81 87 138c0 32 -13 63 -41 63c-31 0 -48 -32 -49 -66zM-17 -141l-15 587c10 6 21 8 32 8s22 -2 32 -8l-9 -337c25 26 59 40 95 40c50 0 82 -51 82 -105c0 -77 -80 -117 -137 -169c-18 -17 -26 -48 -52 -48 +c-16 0 -28 15 -28 32z" fill="currentColor"/> +<path transform="translate(64.7866, 18.1296) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(51.2478, 19.1296) scale(0.0028, -0.0028)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/> +<path transform="translate(47.1116, 22.6296) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(41.6587, 18.0792) 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"/> -<path transform="translate(30.5017, 25.8427) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(30.0397, 20.0792) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(51.8987, 18.0792) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(63.6587, 17.0792) scale(0.0028, -0.0028)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 -c-19 0 -32 18 -32 38z" fill="currentColor"/> -<path transform="translate(64.5744, 17.0792) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(50.7087, 18.0792) scale(0.0050, -0.0050)" d="M-9 375c9 5 18 8 28 8s20 -3 29 -8l-4 -198l99 25h4c11 0 20 -8 20 -19l9 -558c-9 -5 -19 -8 -29 -8s-19 3 -28 8l3 198l-98 -25h-5c-11 0 -19 8 -19 19zM127 109l-84 -21l-3 -197l84 21z" fill="currentColor"/> -<path transform="translate(46.9485, 21.5792) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 -c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(49.0986, 28.8022)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.0986, 28.8022)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(48.3986, 21.5792) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(49.2617, 29.8526)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(49.2617, 29.8526)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(48.5617, 22.6296) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> </svg>
--- a/www/m/svg/45_6_6.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/45_6_6.svg Mon Jul 16 16:51:55 2012 +0100 @@ -25,47 +25,47 @@ <path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/> <path transform="translate(11.5732, 13.0080) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.0213, 20.3463) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.0213, 19.3463) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.2678, 19.8463)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(25.8839, 19.8463)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 21.8463)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 20.8463)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 19.8463)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 18.8463)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 17.8463)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 16.8463)" x="30.1616" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 22.8463)" x="46.0823" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 16.8463)" x="50.8279" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(86.5267, 19.8463)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(22.6189, 20.8463) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 +<path transform="translate(28.0213, 20.5525) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.0213, 19.5525) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.2678, 20.0525)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(25.8839, 20.0525)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 22.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 21.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 20.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 19.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 18.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(21.8189, 17.0525)" x="30.0466" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 23.0525)" x="46.3052" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.0525)" x="51.1546" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(86.5267, 20.0525)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(22.6189, 21.0525) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188 c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27 c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337 c0 59 -6 82 -33 130z" fill="currentColor"/> -<path transform="translate(74.8784, 19.3463) 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"/> -<path transform="translate(73.4246, 22.6632) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(72.9061, 16.8463) scale(0.0032, -0.0032)" 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"/> -<circle transform="translate(68.9150, 26.1876)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(68.9150, 26.1876)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(68.2150, 22.8463) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<path transform="translate(74.9558, 19.5525) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(73.5908, 22.7683) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(73.1792, 17.0525) scale(0.0025, -0.0025)" 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"/> +<circle transform="translate(69.1379, 26.3915)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(69.1379, 26.3915)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(68.4379, 23.0525) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(44.5634, 23.5963) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(43.9814, 19.3463) 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"/> -<path transform="translate(40.8990, 17.8463) scale(0.0032, -0.0032)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(44.4305, 23.6890) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(43.9686, 19.5525) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(40.6481, 18.0525) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(42.1221, 17.8463) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(30.7183, 22.8661) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> -<path transform="translate(29.9829, 17.8463) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(52.2397, 16.8463) scale(0.0032, -0.0032)" 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"/> -<path transform="translate(63.2990, 17.3463) scale(0.0045, -0.0045)" 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"/> -<path transform="translate(64.8837, 17.3463) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(46.9381, 21.3463) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(41.9781, 18.0525) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(30.5649, 22.9294) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(29.9829, 18.0525) 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"/> +<path transform="translate(52.0712, 17.0525) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(63.1723, 17.5525) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151 +c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22 +zM99 61v-152l77 30v152z" fill="currentColor"/> +<path transform="translate(64.9082, 17.5525) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(46.7354, 21.5525) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(49.0881, 26.1876)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.0881, 26.1876)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(48.3881, 21.3463) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(48.8854, 26.3915)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(48.8854, 26.3915)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(48.1854, 21.5525) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> </svg>
--- a/www/m/svg/47_0_6.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/47_0_6.svg Mon Jul 16 16:51:55 2012 +0100 @@ -27,116 +27,121 @@ <path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 -0.2866C2.5524 -0.5421 2.0551 -0.5421 1.7538 -0.2866L1.7538 -0.2866C2.0551 -0.6959 2.5524 -0.6959 2.8538 -0.2866z"/> <path transform="translate(11.5732, 11.6717) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(68.2572, 26.7033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(68.2572, 25.7033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(69.1428, 26.2033)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(69.8963, 26.2033)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(37.8189, 28.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 27.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 26.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 25.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<line transform="translate(37.8189, 24.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> -<rect transform="translate(37.8189, 23.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 21.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 20.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 19.2033)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 21.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 20.2033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 21.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 20.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 19.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 21.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 20.2033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 21.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 20.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 19.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 23.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 22.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 21.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(37.8189, 20.2033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<path transform="translate(44.1396, 26.7033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(44.1396, 25.7033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(43.3861, 26.2033)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(42.0022, 26.2033)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(38.6189, 25.2033) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(68.2572, 26.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(68.2572, 25.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(69.1428, 25.7033)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(69.8963, 25.7033)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(37.8189, 27.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 26.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 24.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<line transform="translate(37.8189, 23.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/> +<rect transform="translate(37.8189, 22.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 20.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 19.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 18.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 17.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 16.7033)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 20.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 19.7033)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 20.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 19.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 18.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 17.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 16.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 20.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 19.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 20.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 19.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 18.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 17.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 16.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 22.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 21.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 20.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(37.8189, 19.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<path transform="translate(44.1396, 26.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(44.1396, 25.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(43.3861, 25.7033)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(42.0022, 25.7033)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(38.6189, 24.7033) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(53.3283, 26.2033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1644 -5.2500C6.1499 -4.5275 1.7965 -4.5275 0.7820 -5.2500L0.7820 -5.2500C1.7965 -4.3430 6.1499 -4.3430 7.1644 -5.2500z"/> -<path transform="translate(53.3283, 26.2033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2644 -8.0000C6.2892 -8.7083 2.3392 -8.7083 1.3640 -8.0000L1.3640 -8.0000C2.3392 -8.8928 6.2892 -8.8928 7.2644 -8.0000z"/> -<path transform="translate(53.3283, 18.7033) 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"/> -<path transform="translate(44.0230, 20.2033) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(53.3283, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1644 -5.2500C6.1499 -4.5275 1.7965 -4.5275 0.7820 -5.2500L0.7820 -5.2500C1.7965 -4.3430 6.1499 -4.3430 7.1644 -5.2500z"/> +<path transform="translate(53.3283, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2644 -10.0000C6.2892 -10.7083 2.3392 -10.7083 1.3640 -10.0000L1.3640 -10.0000C2.3392 -10.8928 6.2892 -10.8928 7.2644 -10.0000z"/> +<path transform="translate(53.3283, 16.2033) 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"/> +<path transform="translate(44.7139, 19.7033) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> -<path transform="translate(44.7139, 18.7033) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(44.7139, 16.2033) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> -<line transform="translate(51.6663, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(51.6663, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.9222, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.9222, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.1781, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.1781, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(49.4341, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(49.4341, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(48.6900, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(48.6900, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(47.9459, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(47.9459, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<path transform="translate(53.3283, 20.2033) 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"/> -<line transform="translate(51.6663, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(51.6663, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.9222, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.9222, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(50.1781, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(50.1781, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(49.4341, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(49.4341, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(48.6900, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(48.6900, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(47.9459, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(47.9459, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(45.8639, 31.4634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.7131" y2="0.6666"/> -<line transform="translate(45.8639, 31.4634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.7131" y2="-0.6666"/> -<path transform="translate(45.8639, 20.2033) 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"/> -<path transform="translate(60.7928, 20.2033) 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"/> -<path transform="translate(60.7928, 18.7033) 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"/> -<line transform="translate(59.1307, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(59.1307, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(58.3866, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(58.3866, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(57.6426, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(57.6426, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.8985, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.8985, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.1544, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.1544, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(55.4103, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(55.4103, 20.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(59.1307, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(59.1307, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(58.3866, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(58.3866, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(57.6426, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(57.6426, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.8985, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.8985, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(56.1544, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(56.1544, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<line transform="translate(55.4103, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> -<line transform="translate(55.4103, 18.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> -<path transform="translate(45.8639, 18.7033) 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"/> -<path transform="translate(45.8639, 26.2033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1644 -5.2500C6.1499 -4.5275 1.7965 -4.5275 0.7820 -5.2500L0.7820 -5.2500C1.7965 -4.3430 6.1499 -4.3430 7.1644 -5.2500z"/> -<path transform="translate(45.8639, 26.2033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2644 -8.0000C6.2892 -8.7083 2.3392 -8.7083 1.3640 -8.0000L1.3640 -8.0000C2.3392 -8.8928 6.2892 -8.8928 7.2644 -8.0000z"/> -<path transform="translate(53.9103, 16.6904) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> -<line transform="translate(54.2437, 31.4634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.7131" y2="0.0000"/> -<line transform="translate(54.2437, 31.4634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.7131" y2="-0.0000"/> -<path transform="translate(53.3283, 13.1904) scale(0.0040, -0.0040)" d="M313 -312c-14 0 -26 12 -26 26v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-25 11 -25 25v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-26 11 -26 25v122l-17 -5c-3 -1 -6 -1 -9 -1c-19 0 -36 16 -36 36v41c0 16 11 30 26 34l36 11v147l-17 -5c-3 -1 -6 -2 -9 -2 -c-19 0 -36 16 -36 36v42c0 16 11 30 26 34l36 10v136c0 14 12 26 26 26s25 -12 25 -26v-122l62 18v136c0 14 11 25 25 25s25 -11 25 -25v-122l62 18v136c0 14 12 25 26 25s25 -11 25 -25v-122l17 5c3 1 6 1 9 1c19 0 36 -16 36 -36v-41c0 -16 -11 -30 -26 -34l-36 -11v-147 -l17 5c3 1 6 2 9 2c19 0 36 -16 36 -36v-42c0 -16 -11 -30 -26 -34l-36 -10v-136c0 -14 -11 -26 -25 -26zM113 49v-147l62 17v147zM225 81v-147l62 17v147z" fill="currentColor"/> +<line transform="translate(51.6663, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(51.6663, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.9222, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.9222, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.1781, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.1781, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(49.4341, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(49.4341, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(48.6900, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(48.6900, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(47.9459, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(47.9459, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<path transform="translate(53.3283, 19.7033) 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"/> +<line transform="translate(51.6663, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(51.6663, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.9222, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.9222, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(50.1781, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(50.1781, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(49.4341, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(49.4341, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(48.6900, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(48.6900, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(47.9459, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(47.9459, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(45.8639, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.7131" y2="0.6666"/> +<line transform="translate(45.8639, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.7131" y2="-0.6666"/> +<path transform="translate(45.8639, 19.7033) 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"/> +<path transform="translate(60.7928, 19.7033) 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"/> +<path transform="translate(60.7928, 16.2033) 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"/> +<line transform="translate(59.1307, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(59.1307, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(58.3866, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(58.3866, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(57.6426, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(57.6426, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.8985, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.8985, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.1544, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.1544, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(55.4103, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(55.4103, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(59.1307, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(59.1307, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(58.3866, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(58.3866, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(57.6426, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(57.6426, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.8985, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.8985, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(56.1544, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(56.1544, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<line transform="translate(55.4103, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/> +<line transform="translate(55.4103, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/> +<path transform="translate(45.8639, 16.2033) 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"/> +<path transform="translate(45.8639, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1644 -5.2500C6.1499 -4.5275 1.7965 -4.5275 0.7820 -5.2500L0.7820 -5.2500C1.7965 -4.3430 6.1499 -4.3430 7.1644 -5.2500z"/> +<path transform="translate(45.8639, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2644 -10.0000C6.2892 -10.7083 2.3392 -10.7083 1.3640 -10.0000L1.3640 -10.0000C2.3392 -10.8928 6.2892 -10.8928 7.2644 -10.0000z"/> +<path transform="translate(53.9103, 14.1904) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> +<line transform="translate(54.2437, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.7131" y2="0.0000"/> +<line transform="translate(54.2437, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.7131" y2="-0.0000"/> +<path transform="translate(53.3283, 10.6904) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42 +c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/> </svg>
--- a/www/m/svg/58_6_7.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/58_6_7.svg Mon Jul 16 16:51:55 2012 +0100 @@ -28,57 +28,56 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/> <path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.0213, 24.5290) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.0213, 23.5290) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.2678, 24.0290)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(25.8839, 24.0290)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 26.0290)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 25.0290)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 24.0290)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 23.0290)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 22.0290)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 21.0290)" x="22.9751" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 21.0290)" x="43.2352" y="-0.1269" width="1.8082" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 21.0290)" x="53.1993" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(86.5267, 24.0290)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(22.6189, 25.0290) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 +<path transform="translate(28.0213, 23.9044) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.0213, 22.9044) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.2678, 23.4044)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(25.8839, 23.4044)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 25.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 24.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 23.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 22.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 21.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(21.8189, 20.4044)" x="21.6879" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.4044)" x="42.5017" y="-0.1269" width="1.3298" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 20.4044)" x="52.7590" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(86.5267, 23.4044)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(22.6189, 24.4044) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188 c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27 c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337 c0 59 -6 82 -33 130z" fill="currentColor"/> -<path transform="translate(75.2491, 21.0290) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(73.6667, 26.7448) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(73.2552, 21.5290) scale(0.0025, -0.0025)" 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"/> -<circle transform="translate(69.0187, 29.7550)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(69.0187, 29.7550)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(68.3187, 24.5290) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<path transform="translate(74.8689, 20.4044) 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"/> +<path transform="translate(72.9471, 26.4242) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> +<path transform="translate(72.2117, 20.9044) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<circle transform="translate(67.9320, 29.1304)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(67.9320, 29.1304)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(67.2320, 23.9044) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(45.4869, 26.7924) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(45.0250, 21.0290) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(41.2401, 21.5290) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(44.3798, 26.2813) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(43.7978, 20.4044) 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"/> +<path transform="translate(40.2444, 20.9044) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(42.6901, 21.5290) 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"/> -<path transform="translate(28.9456, 23.5290) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151 -c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22 -zM99 61v-152l77 30v152z" fill="currentColor"/> -<text transform="translate(30.6815, 17.8963)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> +<path transform="translate(41.5744, 20.9044) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(28.9456, 22.9044) scale(0.0028, -0.0028)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> +<text transform="translate(30.0734, 17.8963)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor"> <tspan> 8va</tspan> </text> -<line transform="translate(34.5200, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="42.2530" y2="-0.0000" stroke-dasharray="0.453430596947843,0.545450613657521"/> -<line transform="translate(76.7730, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> -<line transform="translate(34.5200, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> -<path transform="translate(31.4169, 27.9220) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> -<path transform="translate(30.6815, 23.5290) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(65.2291, 20.5290) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(51.9184, 21.5290) scale(0.0028, -0.0028)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/> -<path transform="translate(52.7398, 21.5290) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(47.3227, 25.0290) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<line transform="translate(33.9119, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="42.7210" y2="-0.0000" stroke-dasharray="0.456773642803009,0.553251053986241"/> +<line transform="translate(76.6329, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/> +<line transform="translate(33.9119, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/> +<path transform="translate(30.4849, 26.9933) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(30.0734, 22.9044) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(64.4956, 19.9044) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(50.6504, 20.9044) scale(0.0050, -0.0050)" d="M-9 375c9 5 18 8 28 8s20 -3 29 -8l-4 -198l99 25h4c11 0 20 -8 20 -19l9 -558c-9 -5 -19 -8 -29 -8s-19 3 -28 8l3 198l-98 -25h-5c-11 0 -19 8 -19 19zM127 109l-84 -21l-3 -197l84 21z" fill="currentColor"/> +<path transform="translate(51.8404, 20.9044) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(46.3789, 24.4044) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(49.4727, 29.7550)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.4727, 29.7550)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(48.7727, 25.0290) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(48.5289, 29.1304)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(48.5289, 29.1304)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(47.8289, 24.4044) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(63.9811, 20.5290) scale(0.0045, -0.0045)" 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"/> +<path transform="translate(63.5107, 19.9044) scale(0.0032, -0.0032)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +c-19 0 -32 18 -32 38z" fill="currentColor"/> </svg>
--- a/www/m/svg/61_6_0.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/61_6_0.svg Mon Jul 16 16:51:55 2012 +0100 @@ -27,61 +27,60 @@ <path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/> <path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0 l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/> -<path transform="translate(28.1396, 22.6145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<path transform="translate(28.1396, 21.6145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> -<rect transform="translate(27.3861, 22.1145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<rect transform="translate(26.0022, 22.1145)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> -<line transform="translate(21.8189, 24.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 23.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 22.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 21.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<line transform="translate(21.8189, 20.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 19.1145)" x="8.6132" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="8.8059" y="-0.1269" width="2.0135" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.1145)" x="20.4094" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="20.4094" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.1145)" x="20.4402" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.1145)" x="23.0322" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="23.0322" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.1145)" x="23.1165" y="-0.1269" width="1.4713" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.1145)" x="30.8729" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="30.8729" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.1145)" x="42.8584" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="42.8584" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.1145)" x="42.8584" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.1145)" x="51.0145" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="51.0145" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 19.1145)" x="53.2894" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 18.1145)" x="53.2894" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.1145)" x="53.2894" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(86.5267, 22.1145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> -<path transform="translate(73.5263, 24.8780) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(22.6189, 21.1145) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 +<path transform="translate(28.1396, 23.1145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<path transform="translate(28.1396, 22.1145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/> +<rect transform="translate(27.3861, 22.6145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<rect transform="translate(26.0022, 22.6145)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/> +<line transform="translate(21.8189, 24.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 23.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 22.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 21.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<line transform="translate(21.8189, 20.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> +<rect transform="translate(21.8189, 19.6145)" x="8.0809" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="8.1969" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.6145)" x="19.4241" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="19.4241" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.6145)" x="19.5084" y="-0.1269" width="1.4713" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.6145)" x="22.4501" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="22.4501" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.6145)" x="22.6428" y="-0.1269" width="2.0135" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.6145)" x="30.8249" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="30.8249" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.6145)" x="42.8767" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="42.8767" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.6145)" x="42.8767" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.6145)" x="50.5984" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="50.5984" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 19.6145)" x="52.7630" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 18.6145)" x="52.7630" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.6145)" x="52.7630" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(86.5267, 22.6145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> +<path transform="translate(73.1102, 25.3780) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(22.6189, 21.6145) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13 c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/> -<path transform="translate(75.3675, 17.1145) scale(0.0032, -0.0032)" 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"/> -<path transform="translate(73.0644, 18.1145) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(67.4054, 20.6145) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/> -<circle transform="translate(69.1220, 27.1644)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(69.1220, 27.1644)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(68.4220, 20.6145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<path transform="translate(74.9496, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(72.6483, 18.6145) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(66.9942, 21.1145) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/> +<circle transform="translate(68.7108, 27.6644)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(68.7108, 27.6644)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(68.0108, 21.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(45.6289, 24.9314) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(45.1104, 17.1145) scale(0.0032, -0.0032)" 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"/> -<path transform="translate(41.3062, 17.1145) scale(0.0028, -0.0028)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(45.3722, 25.6344) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> +<path transform="translate(44.6367, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(40.1723, 17.6145) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(42.4341, 17.1145) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(44.1664, 17.1145) scale(0.0036, -0.0036)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/> -<path transform="translate(29.0639, 17.6145) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151 -c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22 -zM99 61v-152l77 30v152z" fill="currentColor"/> -<path transform="translate(31.5352, 25.1344) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> -<path transform="translate(30.7998, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> -<path transform="translate(64.9683, 16.6145) 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"/> -<path transform="translate(52.9228, 18.1145) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(47.8342, 20.6145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +<path transform="translate(41.5023, 17.6145) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(43.4468, 17.6145) scale(0.0050, -0.0050)" d="M-9 375c9 5 18 8 28 8s20 -3 29 -8l-4 -198l99 25h4c11 0 20 -8 20 -19l9 -558c-9 -5 -19 -8 -29 -8s-19 3 -28 8l3 198l-98 -25h-5c-11 0 -19 8 -19 19zM127 109l-84 -21l-3 -197l84 21z" fill="currentColor"/> +<path transform="translate(28.7408, 18.1145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<circle transform="translate(49.9842, 27.1644)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.9842, 27.1644)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(49.2842, 20.6145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<path transform="translate(30.7728, 25.4914) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(30.1908, 18.1145) 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"/> +<path transform="translate(64.9014, 17.1145) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(52.8747, 18.6145) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(47.7895, 21.1145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 +c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> +<circle transform="translate(49.9395, 27.6644)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(49.9395, 27.6644)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(49.2395, 21.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> </svg>
--- a/www/m/svg/72_0_1.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/72_0_1.svg Mon Jul 16 16:51:55 2012 +0100 @@ -91,7 +91,8 @@ <line transform="translate(48.0646, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/> <path transform="translate(53.4075, 19.4843) 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"/> <path transform="translate(53.4075, 22.9843) 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"/> -<path transform="translate(53.4075, 14.8714) scale(0.0040, -0.0040)" d="M118 30c-1 34 -17 68 -48 68c-26 0 -38 -31 -38 -61c0 -55 42 -96 82 -134c3 20 5 41 5 62v10zM173 -144c0 -20 -12 -38 -31 -38c-30 0 -39 37 -59 57c-54 52 -128 94 -128 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-10 330c11 6 24 9 36 9s24 -3 35 -9z" fill="currentColor"/> +<path transform="translate(53.4075, 14.8714) scale(0.0040, -0.0040)" d="M213 -182h-26c-30 0 -38 37 -58 57c-54 52 -129 94 -129 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-9 330c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57zM163 30 +c-1 34 -16 68 -47 68c-26 0 -39 -31 -39 -61c0 -55 43 -96 83 -134c3 20 5 41 5 62v10zM237 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68z" fill="currentColor"/> <path transform="translate(45.9826, 19.4843) 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"/> <path transform="translate(53.9895, 17.4714) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/> <path transform="translate(45.9826, 26.4843)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8069 -8.0000C6.7445 -8.7386 1.8444 -8.7386 0.7820 -8.0000L0.7820 -8.0000C1.8444 -8.9231 6.7445 -8.9231 7.8069 -8.0000z"/>
--- a/www/m/svg/74_6_1.svg Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/74_6_1.svg Mon Jul 16 16:51:55 2012 +0100 @@ -36,39 +36,40 @@ <line transform="translate(21.8189, 20.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> <line transform="translate(21.8189, 19.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> <line transform="translate(21.8189, 18.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/> -<rect transform="translate(21.8189, 17.5061)" x="22.8045" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.5061)" x="30.2720" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.5061)" x="51.1617" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/> -<rect transform="translate(21.8189, 17.5061)" x="53.4097" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.5061)" x="23.6594" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.5061)" x="31.0595" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.5061)" x="51.5081" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/> +<rect transform="translate(21.8189, 17.5061)" x="53.5941" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/> <rect transform="translate(86.5267, 20.5061)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/> <path transform="translate(22.6189, 21.5061) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267 c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188 c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27 c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337 c0 59 -6 82 -33 130z" fill="currentColor"/> -<path transform="translate(75.4344, 17.0061) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(73.7584, 23.3230) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(73.2399, 17.5061) scale(0.0032, -0.0032)" 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"/> -<path transform="translate(67.3691, 20.5061) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(75.6188, 17.0061) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(74.0199, 23.2695) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(73.5579, 17.5061) scale(0.0028, -0.0028)" 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"/> +<path transform="translate(67.7440, 20.5061) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> -<circle transform="translate(69.2191, 26.5624)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(69.2191, 26.5624)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(45.2099, 23.2219) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(44.7984, 17.0061) scale(0.0025, -0.0025)" 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"/> -<path transform="translate(40.4118, 18.0061) scale(0.0045, -0.0045)" d="M-10 375c9 5 20 8 30 8s21 -3 30 -8l-4 -204l96 26c2 0 3 1 5 1c11 0 20 -9 20 -20l10 -553c-9 -5 -20 -8 -30 -8s-21 3 -30 8l4 204l-96 -26c-2 0 -3 -1 -5 -1c-11 0 -20 9 -20 20zM126 108l-81 -22l-4 -194l81 22z" fill="currentColor"/> -<path transform="translate(41.5102, 18.0061) scale(0.0040, -0.0040)" 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"/> -<path transform="translate(28.9456, 18.0061) scale(0.0032, -0.0032)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144 -c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/> -<path transform="translate(30.6306, 23.2695) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> -<path transform="translate(30.1687, 18.0061) scale(0.0028, -0.0028)" 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"/> -<path transform="translate(68.5191, 20.5061) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<circle transform="translate(69.5940, 26.5624)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(69.5940, 26.5624)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(46.0648, 23.2219) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/> +<path transform="translate(45.6533, 17.0061) scale(0.0025, -0.0025)" 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"/> +<path transform="translate(41.2872, 18.0061) scale(0.0045, -0.0045)" d="M-10 375c9 5 20 8 30 8s21 -3 30 -8l-4 -204l96 26c2 0 3 1 5 1c11 0 20 -9 20 -20l10 -553c-9 -5 -20 -8 -30 -8s-21 3 -30 8l4 204l-96 -26c-2 0 -3 -1 -5 -1c-11 0 -20 9 -20 20zM126 108l-81 -22l-4 -194l81 22z" fill="currentColor"/> +<path transform="translate(42.3855, 18.0061) scale(0.0040, -0.0040)" 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"/> +<path transform="translate(28.9456, 18.0061) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151 +c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22 +zM99 61v-152l77 30v152z" fill="currentColor"/> +<path transform="translate(31.4169, 23.5259) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/> +<path transform="translate(30.6815, 18.0061) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/> +<path transform="translate(68.8940, 20.5061) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(64.6969, 18.5061) 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"/> -<path transform="translate(52.3501, 17.5061) scale(0.0032, -0.0032)" 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"/> -<circle transform="translate(49.1796, 26.5624)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> -<line transform="translate(49.1796, 26.5624)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> -<path transform="translate(48.4796, 21.5061) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 +<path transform="translate(65.2376, 18.5061) scale(0.0032, -0.0032)" 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"/> +<path transform="translate(53.1094, 17.5061) scale(0.0028, -0.0028)" 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"/> +<circle transform="translate(49.9776, 26.5624)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/> +<line transform="translate(49.9776, 26.5624)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/> +<path transform="translate(49.2776, 21.5061) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154 c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/> -<path transform="translate(43.8827, 17.0061) scale(0.0028, -0.0028)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 +<path transform="translate(44.7376, 17.0061) scale(0.0028, -0.0028)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57 c-19 0 -32 18 -32 38z" fill="currentColor"/> </svg>
--- a/www/m/svg/svg-stylesheet.css Sun Jul 15 01:14:27 2012 +0100 +++ b/www/m/svg/svg-stylesheet.css Mon Jul 16 16:51:55 2012 +0100 @@ -1,7 +1,7 @@ -svg { background-color: gray;} -line { stroke: red; } -text { fill: red;} -path { stroke: red; fill: red; } -rect { fill: red; } -circle { stroke: red; } +svg { background-color: black; width:1280px; height:800px;} +line { stroke: white; } +text { fill: white;} +path { stroke: white; fill: white; } +rect { fill: white; } +circle { stroke: white; }