summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEinar Egilsson <einar@einaregilsson.com>2015-10-08 23:29:47 +0000
committerEinar Egilsson <einar@einaregilsson.com>2015-10-08 23:29:47 +0000
commitf76939d1536b172ab28f2b85ac86222c0ffc403f (patch)
tree987ecfe5f50549007317edf805c8b89e0c0d17ee
parentd436bf94a8f6826ce2d0051b073d5164ecf3d12d (diff)
Added example page
-rw-r--r--.gitignore2
-rw-r--r--cards.js5
-rw-r--r--example.css73
-rw-r--r--example.html26
-rw-r--r--example.js61
-rw-r--r--svg/c2.svg310
-rw-r--r--svg/c8.svg378
-rw-r--r--svg/d8.svg362
-rw-r--r--svg/h8.svg1022
-rw-r--r--svg/s8.svg792
10 files changed, 1598 insertions, 1433 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5ca0973
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.DS_Store
+
diff --git a/cards.js b/cards.js
index 03e4c0f..aa2f538 100644
--- a/cards.js
+++ b/cards.js
@@ -261,12 +261,15 @@ var cards = (function() {
return 'Deck';
},
- deal : function(count, hands, speed) {
+ deal : function(count, hands, speed, callback) {
var me = this;
var i = 0;
var totalCount = count*hands.length;
function dealOne() {
if (me.length == 0 || i == totalCount) {
+ if (callback) {
+ callback();
+ }
return;
}
hands[i%hands.length].addCard(me.topCard());
diff --git a/example.css b/example.css
new file mode 100644
index 0000000..5596f77
--- /dev/null
+++ b/example.css
@@ -0,0 +1,73 @@
+html {
+ background-color:#092E20;
+}
+
+body {
+ position:relative;
+ border-radius:8px;
+ box-shadow:black 0px 0px 2px;
+ width: 600px;
+ background:#FFF;
+ margin:20px auto;
+ border:solid 1px black;
+ font-family: arial, sans-serif;
+ padding:50px;
+}
+#buttons {
+ text-align:center;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: 0;
+}
+button {
+ height:30px;
+ width:100px;
+ margin:8px auto;
+}
+img.preload {
+ display:none;
+}
+h1 {
+ font-size:60px;
+ text-align:center;
+ padding:0px;
+ margin:10px auto;
+}
+
+#card-table {
+ background-color:green;
+ height:400px;
+ width:600px;
+ border:solid 6px brown;
+ border-radius:8px;
+ -webkit-border-radius:8px;
+ -moz-border-radius:8px;
+ -ms-border-radius:8px;
+ -o-border-radius:8px;
+ box-shadow:#111 1px 1px 2px;
+}
+a:visited {color:blue;}
+
+#deal {
+ position: absolute;
+ left:310px;
+ top:170px;
+}
+
+footer {
+ font-size : 12px;
+ color:grey;
+ margin:10px;
+}
+
+footer a, footer a:visited{
+ color:grey;
+}
+
+footer a:hover {
+ color:black;
+}
diff --git a/example.html b/example.html
new file mode 100644
index 0000000..6649e3d
--- /dev/null
+++ b/example.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>cards.js - Example</title>
+ <meta charset="UTF-8">
+ <link rel="stylesheet" href="example.css"/>
+ <script src="jquery-1.7.min.js"></script>
+ </head>
+ <body>
+ <h1>Cards.js - Example</h1>
+
+ <img class="preload" src="img/cards.png"/>
+
+ <div id="card-table">
+ <button id="deal">DEAL</button>
+ </div>
+ <footer>
+ cards.js was created by <a href="http://einaregilsson.com">Einar Egilsson</a> and is licensed
+ under the MIT license. The card images were created by <a href="http://nicubunu.ro">Nicu Buculei</a> and are
+ in the public domain.
+ </footer>
+ <!-- load this at the bottom so the #card-table element exists -->
+ <script src="cards.js"></script>
+ <script src="example.js"></script>
+ </body>
+</html> \ No newline at end of file
diff --git a/example.js b/example.js
new file mode 100644
index 0000000..ad71036
--- /dev/null
+++ b/example.js
@@ -0,0 +1,61 @@
+
+//Tell the library which element to use for the table
+cards.init({table:'#card-table'});
+
+//Create a new deck of cards
+deck = new cards.Deck();
+//By default it's in the middle of the container, put it slightly to the side
+deck.x -= 50;
+
+//cards.all contains all cards, put them all in the deck
+deck.addCards(cards.all);
+//No animation here, just get the deck onto the table.
+deck.render({immediate:true});
+
+//Now lets create a couple of hands, one face down, one face up.
+upperhand = new cards.Hand({faceUp:false, y:60});
+lowerhand = new cards.Hand({faceUp:true, y:340});
+
+//Lets add a discard pile
+discardPile = new cards.Deck({faceUp:true});
+discardPile.x += 50;
+
+
+//Let's deal when the Deal button is pressed:
+$('#deal').click(function() {
+ //Deck has a built in method to deal to hands.
+ $('#deal').hide();
+ deck.deal(5, [upperhand, lowerhand], 50, function() {
+ //This is a callback function, called when the dealing
+ //is done.
+ discardPile.addCard(deck.topCard());
+ discardPile.render();
+ });
+});
+
+
+//When you click on the top card of a deck, a card is added
+//to your hand
+deck.click(function(card){
+ if (card === deck.topCard()) {
+ lowerhand.addCard(deck.topCard());
+ lowerhand.render();
+ }
+});
+
+//Finally, when you click a card in your hand, if it's
+//the same suit or rank as the top card of the discard pile
+//then it's added to it
+lowerhand.click(function(card){
+ if (card.suit == discardPile.topCard().suit
+ || card.rank == discardPile.topCard().rank) {
+ discardPile.addCard(card);
+ discardPile.render();
+ lowerhand.render();
+ }
+});
+
+
+//So, that should give you some idea about how to render a card game.
+//Now you just need to write some logic around who can play when etc...
+//Good luck :)
diff --git a/svg/c2.svg b/svg/c2.svg
index 7e58dd1..9f2911e 100644
--- a/svg/c2.svg
+++ b/svg/c2.svg
@@ -1,155 +1,155 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- id="svg2"
- height="190.00000"
- width="140.00000"
- y="0.0000000"
- x="0.0000000"
- preserveAspectRatio="xMinYMin meet"
- viewBox="0 0 140 190"
- version="1.0"
- sodipodi:version="0.32"
- inkscape:version="0.41+cvs"
- sodipodi:docname="white_c_2.svg"
- sodipodi:docbase="/home/nicu/Desktop/card_nicu_buculei_01.zip_FILES/cards/white">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:window-width="1152"
- inkscape:window-height="791"
- inkscape:zoom="1.0000000"
- inkscape:cx="70.000000"
- inkscape:cy="94.999969"
- inkscape:window-x="0"
- inkscape:window-y="26"
- inkscape:current-layer="layer1" />
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient2060">
- <stop
- id="stop2062"
- offset="0.0000000"
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
- <stop
- id="stop2064"
- offset="1.0000000"
- style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient4853"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- </defs>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1"
- transform="translate(175.5055,96.07025)">
- <g
- id="g2218"
- transform="translate(-175.5055,-96.07025)">
- <path
- style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
- d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
- id="path2226" />
- </g>
- <g
- transform="translate(-448.5000,-231.5000)"
- id="g5495"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1" />
- </g>
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path908"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 20.527261,48.670000 C 17.860877,48.670000 15.697394,51.933523 15.697394,55.955664 C 15.697394,59.382240 20.089490,65.147330 19.918919,67.885240 C 18.508668,68.667660 14.151660,61.447720 11.899866,61.447720 C 9.2334820,61.447720 7.0700000,64.711240 7.0700000,68.733380 C 7.0700000,72.755530 9.2334820,76.019050 11.899866,76.019050 C 14.212394,76.019050 18.175527,68.805060 19.918919,69.456390 L 16.990005,82.330000 L 24.013589,82.288290 C 24.013589,82.288290 20.936644,69.807100 20.932822,69.512000 L 20.988126,69.512000 L 20.988126,69.525910 C 22.695429,68.886200 26.793987,76.158080 29.090134,76.158090 C 31.756521,76.158090 33.920003,72.894570 33.920000,68.872420 C 33.920000,64.850280 31.756521,61.586760 29.090134,61.586760 C 26.847510,61.586760 22.782426,68.687290 20.997343,67.954760 C 21.022420,65.149330 25.357127,59.378473 25.357127,55.955664 C 25.357127,51.933523 23.193647,48.670000 20.527261,48.670000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2688"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 117.41824,139.96000 C 120.08462,139.96000 122.24811,136.69648 122.24811,132.67434 C 122.24811,129.24776 117.85601,123.48267 118.02658,120.74476 C 119.43683,119.96234 123.79384,127.18228 126.04563,127.18228 C 128.71202,127.18228 130.87550,123.91876 130.87550,119.89662 C 130.87550,115.87447 128.71202,112.61095 126.04563,112.61095 C 123.73311,112.61095 119.76997,119.82494 118.02658,119.17361 L 120.95550,106.30000 L 113.93191,106.34171 C 113.93191,106.34171 117.00886,118.82290 117.01268,119.11800 L 116.95737,119.11800 L 116.95737,119.10409 C 115.25007,119.74380 111.15151,112.47192 108.85537,112.47191 C 106.18898,112.47191 104.02550,115.73543 104.02550,119.75758 C 104.02550,123.77972 106.18898,127.04324 108.85537,127.04324 C 111.09799,127.04324 115.16307,119.94271 116.94816,120.67524 C 116.92308,123.48067 112.58837,129.25153 112.58837,132.67434 C 112.58837,136.69648 114.75185,139.96000 117.41824,139.96000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2250"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 68.838790,50.220000 C 67.285640,50.220000 66.025420,52.137780 66.025420,54.501356 C 66.025420,56.514953 68.583790,59.902757 68.484440,61.511665 C 67.662970,61.971447 65.125040,57.728714 63.813380,57.728714 C 62.260220,57.728714 61.000000,59.646492 61.000000,62.010067 C 61.000000,64.373648 62.260220,66.291426 63.813380,66.291426 C 65.160410,66.291426 67.468920,62.052189 68.484440,62.434937 L 66.778360,70.000000 L 70.869560,69.975489 C 70.869560,69.975489 69.077260,62.641029 69.075030,62.467616 L 69.107250,62.467616 L 69.107250,62.475790 C 70.101740,62.099870 72.489130,66.373126 73.826630,66.373132 C 75.379790,66.373132 76.640000,64.455353 76.640000,62.091773 C 76.640000,59.728198 75.379790,57.810419 73.826630,57.810419 C 72.520310,57.810419 70.152420,61.982983 69.112610,61.552518 C 69.127220,59.903932 71.652170,56.512739 71.652170,54.501356 C 71.652170,52.137780 70.391950,50.220000 68.838790,50.220000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2262"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 68.801210,137.00000 C 70.354370,137.00000 71.614590,135.08222 71.614590,132.71865 C 71.614590,130.70505 69.056210,127.31725 69.155570,125.70834 C 69.977030,125.24856 72.514970,129.49129 73.826630,129.49129 C 75.379790,129.49129 76.640000,127.57351 76.640000,125.20994 C 76.640000,122.84635 75.379790,120.92858 73.826630,120.92858 C 72.479590,120.92858 70.171090,125.16781 69.155570,124.78507 L 70.861650,117.22000 L 66.770440,117.24451 C 66.770440,117.24451 68.562750,124.57897 68.564980,124.75239 L 68.532760,124.75239 L 68.532760,124.74421 C 67.538260,125.12013 65.150870,120.84688 63.813380,120.84687 C 62.260220,120.84687 61.000000,122.76465 61.000000,125.12823 C 61.000000,127.49180 62.260220,129.40958 63.813380,129.40958 C 65.119700,129.40958 67.487590,125.23702 68.527390,125.66748 C 68.512780,127.31607 65.987840,130.70726 65.987840,132.71865 C 65.987840,135.08222 67.248060,137.00000 68.801210,137.00000 z " />
- <path
- id="text2035"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- d="M 18.800572,36.311461 L 29.715475,36.311461 L 29.715475,41.997932 L 11.690105,41.997932 L 11.690105,36.311461 L 20.744326,26.646458 C 21.552823,25.762354 22.150894,24.898333 22.538548,24.054393 C 22.926184,23.210475 23.119998,22.333058 23.120016,21.422131 C 23.119998,20.015605 22.726824,18.883668 21.940477,18.026322 C 21.165178,17.169020 20.129624,16.740353 18.833797,16.740331 C 17.836996,16.740353 16.746058,17.001569 15.560991,17.523981 C 14.375905,18.033042 13.107766,18.796600 11.756555,19.814644 L 11.756555,13.223954 C 13.196367,12.647973 14.619566,12.212619 16.026161,11.917881 C 17.432739,11.609803 18.811638,11.455758 20.162858,11.455725 C 23.131082,11.455758 25.434775,12.246107 27.073965,13.826770 C 28.724194,15.407489 29.549322,17.611083 29.549340,20.437553 C 29.549322,22.071841 29.200439,23.598957 28.502711,25.018878 C 27.804928,26.425448 26.337428,28.314234 24.100195,30.685268 L 18.800572,36.311461" />
- <path
- id="text2062"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- d="M 120.11996,152.44437 L 109.20506,152.44437 L 109.20506,146.75788 L 127.23043,146.75788 L 127.23043,152.44437 L 118.17622,162.10937 C 117.36772,162.99346 116.76964,163.85748 116.38199,164.70143 C 115.99436,165.54534 115.80054,166.42276 115.80052,167.33369 C 115.80054,168.74022 116.19372,169.87216 116.98006,170.72951 C 117.75536,171.58681 118.79092,172.01546 120.08674,172.01549 C 121.08354,172.01546 122.17448,171.75425 123.35955,171.23185 C 124.54463,170.72279 125.81277,169.95923 127.16398,168.94117 L 127.16398,175.53186 C 125.72417,176.10784 124.30097,176.54321 122.89437,176.83795 C 121.48780,177.14601 120.10890,177.30007 118.75768,177.30009 C 115.78946,177.30007 113.48576,176.50972 111.84657,174.92906 C 110.19634,173.34834 109.37121,171.14474 109.37120,168.31827 C 109.37121,166.68398 109.72010,165.15687 110.41783,163.73695 C 111.11561,162.33038 112.58311,160.44158 114.82034,158.07056 L 120.11996,152.44437" />
-
-
- <metadata>
- <rdf:RDF
- xmlns="http://web.resource.org/cc/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <Work rdf:about="">
- <dc:title>card</dc:title>
- <dc:description></dc:description>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>white</rdf:li>
- <rdf:li>card</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:publisher>
- <Agent>
- <dc:title></dc:title>
- </Agent>
- </dc:publisher>
- <dc:creator>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:creator>
- <dc:rights>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:rights>
- <dc:date></dc:date>
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
- <dc:language>en</dc:language>
- </Work>
-
- <License rdf:about="http://web.resource.org/cc/PublicDomain">
- <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
- <permits rdf:resource="http://web.resource.org/cc/Distribution" />
- <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- </License>
-
- </rdf:RDF>
- </metadata>
-</svg>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ height="190.00000"
+ width="140.00000"
+ y="0.0000000"
+ x="0.0000000"
+ preserveAspectRatio="xMinYMin meet"
+ viewBox="0 0 140 190"
+ version="1.0"
+ sodipodi:version="0.32"
+ inkscape:version="0.41+cvs"
+ sodipodi:docname="white_c_2.svg"
+ sodipodi:docbase="/home/nicu/Desktop/card_nicu_buculei_01.zip_FILES/cards/white">
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1152"
+ inkscape:window-height="791"
+ inkscape:zoom="1.0000000"
+ inkscape:cx="70.000000"
+ inkscape:cy="94.999969"
+ inkscape:window-x="0"
+ inkscape:window-y="26"
+ inkscape:current-layer="layer1" />
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient2060">
+ <stop
+ id="stop2062"
+ offset="0.0000000"
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
+ <stop
+ id="stop2064"
+ offset="1.0000000"
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient4853"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ </defs>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(175.5055,96.07025)">
+ <g
+ id="g2218"
+ transform="translate(-175.5055,-96.07025)">
+ <path
+ style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+ d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+ id="path2226" />
+ </g>
+ <g
+ transform="translate(-448.5000,-231.5000)"
+ id="g5495"
+ inkscape:groupmode="layer"
+ inkscape:label="Layer 1" />
+ </g>
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path908"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 20.527261,48.670000 C 17.860877,48.670000 15.697394,51.933523 15.697394,55.955664 C 15.697394,59.382240 20.089490,65.147330 19.918919,67.885240 C 18.508668,68.667660 14.151660,61.447720 11.899866,61.447720 C 9.2334820,61.447720 7.0700000,64.711240 7.0700000,68.733380 C 7.0700000,72.755530 9.2334820,76.019050 11.899866,76.019050 C 14.212394,76.019050 18.175527,68.805060 19.918919,69.456390 L 16.990005,82.330000 L 24.013589,82.288290 C 24.013589,82.288290 20.936644,69.807100 20.932822,69.512000 L 20.988126,69.512000 L 20.988126,69.525910 C 22.695429,68.886200 26.793987,76.158080 29.090134,76.158090 C 31.756521,76.158090 33.920003,72.894570 33.920000,68.872420 C 33.920000,64.850280 31.756521,61.586760 29.090134,61.586760 C 26.847510,61.586760 22.782426,68.687290 20.997343,67.954760 C 21.022420,65.149330 25.357127,59.378473 25.357127,55.955664 C 25.357127,51.933523 23.193647,48.670000 20.527261,48.670000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2688"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 117.41824,139.96000 C 120.08462,139.96000 122.24811,136.69648 122.24811,132.67434 C 122.24811,129.24776 117.85601,123.48267 118.02658,120.74476 C 119.43683,119.96234 123.79384,127.18228 126.04563,127.18228 C 128.71202,127.18228 130.87550,123.91876 130.87550,119.89662 C 130.87550,115.87447 128.71202,112.61095 126.04563,112.61095 C 123.73311,112.61095 119.76997,119.82494 118.02658,119.17361 L 120.95550,106.30000 L 113.93191,106.34171 C 113.93191,106.34171 117.00886,118.82290 117.01268,119.11800 L 116.95737,119.11800 L 116.95737,119.10409 C 115.25007,119.74380 111.15151,112.47192 108.85537,112.47191 C 106.18898,112.47191 104.02550,115.73543 104.02550,119.75758 C 104.02550,123.77972 106.18898,127.04324 108.85537,127.04324 C 111.09799,127.04324 115.16307,119.94271 116.94816,120.67524 C 116.92308,123.48067 112.58837,129.25153 112.58837,132.67434 C 112.58837,136.69648 114.75185,139.96000 117.41824,139.96000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2250"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 68.838790,50.220000 C 67.285640,50.220000 66.025420,52.137780 66.025420,54.501356 C 66.025420,56.514953 68.583790,59.902757 68.484440,61.511665 C 67.662970,61.971447 65.125040,57.728714 63.813380,57.728714 C 62.260220,57.728714 61.000000,59.646492 61.000000,62.010067 C 61.000000,64.373648 62.260220,66.291426 63.813380,66.291426 C 65.160410,66.291426 67.468920,62.052189 68.484440,62.434937 L 66.778360,70.000000 L 70.869560,69.975489 C 70.869560,69.975489 69.077260,62.641029 69.075030,62.467616 L 69.107250,62.467616 L 69.107250,62.475790 C 70.101740,62.099870 72.489130,66.373126 73.826630,66.373132 C 75.379790,66.373132 76.640000,64.455353 76.640000,62.091773 C 76.640000,59.728198 75.379790,57.810419 73.826630,57.810419 C 72.520310,57.810419 70.152420,61.982983 69.112610,61.552518 C 69.127220,59.903932 71.652170,56.512739 71.652170,54.501356 C 71.652170,52.137780 70.391950,50.220000 68.838790,50.220000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2262"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 68.801210,137.00000 C 70.354370,137.00000 71.614590,135.08222 71.614590,132.71865 C 71.614590,130.70505 69.056210,127.31725 69.155570,125.70834 C 69.977030,125.24856 72.514970,129.49129 73.826630,129.49129 C 75.379790,129.49129 76.640000,127.57351 76.640000,125.20994 C 76.640000,122.84635 75.379790,120.92858 73.826630,120.92858 C 72.479590,120.92858 70.171090,125.16781 69.155570,124.78507 L 70.861650,117.22000 L 66.770440,117.24451 C 66.770440,117.24451 68.562750,124.57897 68.564980,124.75239 L 68.532760,124.75239 L 68.532760,124.74421 C 67.538260,125.12013 65.150870,120.84688 63.813380,120.84687 C 62.260220,120.84687 61.000000,122.76465 61.000000,125.12823 C 61.000000,127.49180 62.260220,129.40958 63.813380,129.40958 C 65.119700,129.40958 67.487590,125.23702 68.527390,125.66748 C 68.512780,127.31607 65.987840,130.70726 65.987840,132.71865 C 65.987840,135.08222 67.248060,137.00000 68.801210,137.00000 z " />
+ <path
+ id="text2035"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ d="M 18.800572,36.311461 L 29.715475,36.311461 L 29.715475,41.997932 L 11.690105,41.997932 L 11.690105,36.311461 L 20.744326,26.646458 C 21.552823,25.762354 22.150894,24.898333 22.538548,24.054393 C 22.926184,23.210475 23.119998,22.333058 23.120016,21.422131 C 23.119998,20.015605 22.726824,18.883668 21.940477,18.026322 C 21.165178,17.169020 20.129624,16.740353 18.833797,16.740331 C 17.836996,16.740353 16.746058,17.001569 15.560991,17.523981 C 14.375905,18.033042 13.107766,18.796600 11.756555,19.814644 L 11.756555,13.223954 C 13.196367,12.647973 14.619566,12.212619 16.026161,11.917881 C 17.432739,11.609803 18.811638,11.455758 20.162858,11.455725 C 23.131082,11.455758 25.434775,12.246107 27.073965,13.826770 C 28.724194,15.407489 29.549322,17.611083 29.549340,20.437553 C 29.549322,22.071841 29.200439,23.598957 28.502711,25.018878 C 27.804928,26.425448 26.337428,28.314234 24.100195,30.685268 L 18.800572,36.311461" />
+ <path
+ id="text2062"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ d="M 120.11996,152.44437 L 109.20506,152.44437 L 109.20506,146.75788 L 127.23043,146.75788 L 127.23043,152.44437 L 118.17622,162.10937 C 117.36772,162.99346 116.76964,163.85748 116.38199,164.70143 C 115.99436,165.54534 115.80054,166.42276 115.80052,167.33369 C 115.80054,168.74022 116.19372,169.87216 116.98006,170.72951 C 117.75536,171.58681 118.79092,172.01546 120.08674,172.01549 C 121.08354,172.01546 122.17448,171.75425 123.35955,171.23185 C 124.54463,170.72279 125.81277,169.95923 127.16398,168.94117 L 127.16398,175.53186 C 125.72417,176.10784 124.30097,176.54321 122.89437,176.83795 C 121.48780,177.14601 120.10890,177.30007 118.75768,177.30009 C 115.78946,177.30007 113.48576,176.50972 111.84657,174.92906 C 110.19634,173.34834 109.37121,171.14474 109.37120,168.31827 C 109.37121,166.68398 109.72010,165.15687 110.41783,163.73695 C 111.11561,162.33038 112.58311,160.44158 114.82034,158.07056 L 120.11996,152.44437" />
+
+
+ <metadata>
+ <rdf:RDF
+ xmlns="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <Work rdf:about="">
+ <dc:title>card</dc:title>
+ <dc:description></dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>white</rdf:li>
+ <rdf:li>card</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:publisher>
+ <Agent>
+ <dc:title></dc:title>
+ </Agent>
+ </dc:publisher>
+ <dc:creator>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:creator>
+ <dc:rights>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:rights>
+ <dc:date></dc:date>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+ <dc:language>en</dc:language>
+ </Work>
+
+ <License rdf:about="http://web.resource.org/cc/PublicDomain">
+ <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+ <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ </License>
+
+ </rdf:RDF>
+ </metadata>
+</svg>
diff --git a/svg/c8.svg b/svg/c8.svg
index 1160db1..2d9a735 100644
--- a/svg/c8.svg
+++ b/svg/c8.svg
@@ -1,189 +1,189 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- id="svg2"
- height="190.00000"
- width="140.00000"
- preserveAspectRatio="xMinYMin meet"
- viewBox="0 0 140 190"
- y="0.0000000"
- x="0.0000000"
- version="1.0"
- sodipodi:version="0.32"
- inkscape:version="0.41+cvs"
- sodipodi:docname="white_c_8.svg"
- sodipodi:docbase="/home/nicu/Desktop/card_nicu_buculei_01.zip_FILES/cards/white">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:window-width="1152"
- inkscape:window-height="791"
- inkscape:zoom="1.0000000"
- inkscape:cx="70.000000"
- inkscape:cy="94.999969"
- inkscape:window-x="0"
- inkscape:window-y="26"
- inkscape:current-layer="svg2" />
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient2060">
- <stop
- id="stop2062"
- offset="0.0000000"
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
- <stop
- id="stop2064"
- offset="1.0000000"
- style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient4853"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- </defs>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <g
- id="g5630">
- <path
- style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
- d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
- id="rect1306" />
- </g>
- <g
- transform="translate(-448.5000,-231.5000)"
- id="g5495"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1" />
- </g>
- <g
- id="g5581"
- transform="translate(351.5000,184.5000)">
- <path
- id="text1488"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- transform="scale(0.909282,1.099768)"
- d="M -363.90944,-141.56117 C -365.22494,-141.56116 -366.23592,-141.20183 -366.94238,-140.48320 C -367.64885,-139.76454 -368.00209,-138.73529 -368.00208,-137.39544 C -368.00209,-136.05558 -367.64885,-135.02633 -366.94238,-134.30769 C -366.23592,-133.60122 -365.22494,-133.24798 -363.90944,-133.24799 C -362.60614,-133.24798 -361.60734,-133.60122 -360.91304,-134.30769 C -360.21877,-135.02633 -359.87162,-136.05558 -359.87160,-137.39544 C -359.87162,-138.74747 -360.21877,-139.77672 -360.91304,-140.48320 C -361.60734,-141.20183 -362.60614,-141.56116 -363.90944,-141.56117 M -369.04351,-143.88155 C -370.70006,-144.38093 -371.94856,-145.14830 -372.78901,-146.18366 C -373.62946,-147.21898 -374.04969,-148.51011 -374.04969,-150.05706 C -374.04969,-152.35914 -373.19097,-154.11313 -371.47352,-155.31902 C -369.75607,-156.52486 -367.23472,-157.12780 -363.90944,-157.12783 C -360.60854,-157.12780 -358.09936,-156.52486 -356.38190,-155.31902 C -354.66447,-154.12531 -353.80575,-152.37132 -353.80572,-150.05706 C -353.80575,-148.51011 -354.23206,-147.21898 -355.08467,-146.18366 C -355.92515,-145.14830 -357.17365,-144.38093 -358.83017,-143.88155 C -356.97876,-143.36996 -355.58410,-142.53559 -354.64618,-141.37846 C -353.69612,-140.23348 -353.22108,-138.78401 -353.22106,-137.03003 C -353.22108,-134.32596 -354.12244,-132.27964 -355.92513,-130.89106 C -357.71568,-129.51467 -360.37711,-128.82647 -363.90944,-128.82647 C -367.45397,-128.82647 -370.13367,-129.51467 -371.94855,-130.89106 C -373.75127,-132.27964 -374.65262,-134.32596 -374.65262,-137.03003 C -374.65262,-138.78401 -374.18368,-140.23348 -373.24578,-141.37846 C -372.29570,-142.53559 -370.89495,-143.36996 -369.04351,-143.88155 M -367.39914,-149.34450 C -367.39915,-148.26041 -367.10073,-147.42605 -366.50388,-146.84141 C -365.89487,-146.25673 -365.03005,-145.96440 -363.90944,-145.96441 C -362.81321,-145.96440 -361.96666,-146.25673 -361.36980,-146.84141 C -360.77298,-147.42605 -360.47456,-148.26041 -360.47454,-149.34450 C -360.47456,-150.42854 -360.77298,-151.25681 -361.36980,-151.82932 C -361.96666,-152.41396 -362.81321,-152.70629 -363.90944,-152.70631 C -365.03005,-152.70629 -365.89487,-152.41396 -366.50388,-151.82932 C -367.10073,-151.24463 -367.39915,-150.41636 -367.39914,-149.34450" />
- <path
- id="text3657"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- transform="scale(-0.909282,-1.099768)"
- d="M 256.76709,21.958894 C 255.45159,21.958906 254.44061,22.318230 253.73415,23.036866 C 253.02768,23.755525 252.67444,24.784775 252.67445,26.124619 C 252.67444,27.464479 253.02768,28.493729 253.73415,29.212372 C 254.44061,29.918844 255.45159,30.272078 256.76709,30.272074 C 258.07039,30.272078 259.06919,29.918844 259.76349,29.212372 C 260.45776,28.493729 260.80491,27.464479 260.80492,26.124619 C 260.80491,24.772595 260.45776,23.743345 259.76349,23.036866 C 259.06919,22.318230 258.07039,21.958906 256.76709,21.958894 M 251.63302,19.638512 C 249.97647,19.139127 248.72797,18.371757 247.88752,17.336400 C 247.04706,16.301077 246.62684,15.009947 246.62684,13.463006 C 246.62684,11.160918 247.48556,9.4069301 249.20301,8.2010375 C 250.92045,6.9951968 253.44181,6.3922634 256.76709,6.3922357 C 260.06799,6.3922634 262.57717,6.9951968 264.29463,8.2010375 C 266.01206,9.3947496 266.87078,11.148738 266.87080,13.463006 C 266.87078,15.009947 266.44447,16.301077 265.59185,17.336400 C 264.75138,18.371757 263.50288,19.139127 261.84636,19.638512 C 263.69777,20.150106 265.09243,20.984468 266.03035,22.141601 C 266.98041,23.286577 267.45544,24.736053 267.45547,26.490034 C 267.45544,29.194106 266.55409,31.240425 264.75140,32.628997 C 262.96085,34.005392 260.29942,34.693589 256.76709,34.693589 C 253.22256,34.693589 250.54286,34.005392 248.72797,32.628997 C 246.92526,31.240425 246.02390,29.194106 246.02391,26.490034 C 246.02390,24.736053 246.49285,23.286577 247.43075,22.141601 C 248.38083,20.984468 249.78158,20.150106 251.63302,19.638512 M 253.27739,14.175565 C 253.27738,15.259647 253.57580,16.094009 254.17265,16.678654 C 254.78166,17.263334 255.64648,17.555665 256.76709,17.555649 C 257.86332,17.555665 258.70987,17.263334 259.30672,16.678654 C 259.90355,16.094009 260.20197,15.259647 260.20199,14.175565 C 260.20197,13.091523 259.90355,12.263251 259.30672,11.690746 C 258.70987,11.106106 257.86332,10.813775 256.76709,10.813751 C 255.64648,10.813775 254.78166,11.106106 254.17265,11.690746 C 253.57580,12.275431 253.27738,13.103703 253.27739,14.175565" />
- </g>
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path908"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 20.527261,48.665000 C 17.860877,48.665000 15.697394,51.928523 15.697394,55.950664 C 15.697394,59.377240 20.089490,65.142330 19.918919,67.880240 C 18.508668,68.662660 14.151660,61.442720 11.899866,61.442720 C 9.2334820,61.442720 7.0700000,64.706240 7.0700000,68.728380 C 7.0700000,72.750530 9.2334820,76.014050 11.899866,76.014050 C 14.212394,76.014050 18.175527,68.800060 19.918919,69.451390 L 16.990005,82.325000 L 24.013589,82.283290 C 24.013589,82.283290 20.936644,69.802100 20.932822,69.507000 L 20.988126,69.507000 L 20.988126,69.520910 C 22.695429,68.881200 26.793987,76.153080 29.090134,76.153090 C 31.756521,76.153090 33.920003,72.889570 33.920000,68.867420 C 33.920000,64.845280 31.756521,61.581760 29.090134,61.581760 C 26.847510,61.581760 22.782426,68.682290 20.997343,67.949760 C 21.022420,65.144330 25.357127,59.373473 25.357127,55.950664 C 25.357127,51.928523 23.193647,48.665000 20.527261,48.665000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path3647"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 117.41824,139.96250 C 120.08462,139.96250 122.24811,136.69898 122.24811,132.67684 C 122.24811,129.25026 117.85601,123.48517 118.02658,120.74726 C 119.43683,119.96484 123.79384,127.18478 126.04563,127.18478 C 128.71202,127.18478 130.87550,123.92126 130.87550,119.89912 C 130.87550,115.87697 128.71202,112.61345 126.04563,112.61345 C 123.73311,112.61345 119.76997,119.82744 118.02658,119.17611 L 120.95550,106.30250 L 113.93191,106.34421 C 113.93191,106.34421 117.00886,118.82540 117.01268,119.12050 L 116.95737,119.12050 L 116.95737,119.10659 C 115.25007,119.74630 111.15151,112.47442 108.85537,112.47441 C 106.18898,112.47441 104.02550,115.73793 104.02550,119.76008 C 104.02550,123.78222 106.18898,127.04574 108.85537,127.04574 C 111.09799,127.04574 115.16307,119.94521 116.94816,120.67774 C 116.92308,123.48317 112.58837,129.25403 112.58837,132.67684 C 112.58837,136.69898 114.75185,139.96250 117.41824,139.96250 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2242"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 49.198790,36.000000 C 47.645640,36.000000 46.385420,37.917780 46.385420,40.281356 C 46.385420,42.294953 48.943790,45.682757 48.844430,47.291665 C 48.022970,47.751447 45.485030,43.508714 44.173370,43.508714 C 42.620220,43.508714 41.360000,45.426492 41.360000,47.790067 C 41.360000,50.153648 42.620220,52.071426 44.173370,52.071426 C 45.520410,52.071426 47.828920,47.832189 48.844430,48.214937 L 47.138360,55.780000 L 51.229560,55.755489 C 51.229560,55.755489 49.437260,48.421029 49.435030,48.247616 L 49.467240,48.247616 L 49.467240,48.255790 C 50.461740,47.879870 52.849130,52.153126 54.186630,52.153132 C 55.739780,52.153132 57.000000,50.235353 57.000000,47.871773 C 57.000000,45.508198 55.739780,43.590419 54.186630,43.590419 C 52.880310,43.590419 50.512410,47.762983 49.472610,47.332518 C 49.487220,45.683932 52.012170,42.292739 52.012170,40.281356 C 52.012170,37.917780 50.751950,36.000000 49.198790,36.000000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2248"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 90.198800,36.220003 C 88.645640,36.220003 87.385420,38.137783 87.385420,40.501359 C 87.385420,42.514956 89.943800,45.902760 89.844440,47.511668 C 89.022980,47.971450 86.485040,43.728717 85.173380,43.728717 C 83.620220,43.728717 82.360000,45.646495 82.360000,48.010070 C 82.360000,50.373650 83.620220,52.291430 85.173380,52.291430 C 86.520420,52.291430 88.828920,48.052192 89.844440,48.434940 L 88.138360,56.000000 L 92.229570,55.975490 C 92.229570,55.975490 90.437260,48.641030 90.435030,48.467620 L 90.467250,48.467620 L 90.467250,48.475790 C 91.461740,48.099873 93.849140,52.373130 95.186630,52.373140 C 96.739790,52.373140 98.000010,50.455360 98.000000,48.091776 C 98.000000,45.728201 96.739790,43.810422 95.186630,43.810422 C 93.880310,43.810422 91.512420,47.982986 90.472620,47.552521 C 90.487220,45.903935 93.012170,42.512742 93.012170,40.501359 C 93.012170,38.137783 91.751950,36.220003 90.198800,36.220003 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2254"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 48.838790,71.220000 C 47.285640,71.220000 46.025420,73.137780 46.025420,75.501350 C 46.025420,77.514950 48.583790,80.902750 48.484440,82.511660 C 47.662970,82.971440 45.125040,78.728710 43.813380,78.728710 C 42.260220,78.728710 41.000000,80.646490 41.000000,83.010060 C 41.000000,85.373640 42.260220,87.291420 43.813380,87.291420 C 45.160410,87.291420 47.468920,83.052190 48.484440,83.434930 L 46.778360,91.000000 L 50.869560,90.975490 C 50.869560,90.975490 49.077260,83.641030 49.075030,83.467610 L 49.107250,83.467610 L 49.107250,83.475790 C 50.101740,83.099870 52.489130,87.373120 53.826630,87.373130 C 55.379790,87.373130 56.640000,85.455350 56.640000,83.091770 C 56.640000,80.728190 55.379790,78.810420 53.826630,78.810420 C 52.520310,78.810420 50.152420,82.982980 49.112610,82.552510 C 49.127220,80.903930 51.652170,77.512740 51.652170,75.501350 C 51.652170,73.137780 50.391950,71.220000 48.838790,71.220000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2252"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 88.198790,70.000000 C 86.645630,70.000000 85.385410,71.917780 85.385410,74.281360 C 85.385410,76.294950 87.943790,79.682760 87.844430,81.291660 C 87.022970,81.751450 84.485030,77.508710 83.173370,77.508710 C 81.620210,77.508710 80.360000,79.426490 80.360000,81.790070 C 80.360000,84.153650 81.620210,86.071430 83.173370,86.071430 C 84.520410,86.071430 86.828910,81.832190 87.844430,82.214940 L 86.138350,89.779990 L 90.229560,89.755480 C 90.229560,89.755480 88.437250,82.421030 88.435030,82.247620 L 88.467240,82.247620 L 88.467240,82.255790 C 89.461740,81.879870 91.849130,86.153130 93.186620,86.153130 C 94.739780,86.153130 96.000000,84.235350 96.000000,81.871770 C 96.000000,79.508200 94.739780,77.590420 93.186620,77.590420 C 91.880300,77.590420 89.512410,81.762980 88.472610,81.332520 C 88.487220,79.683930 91.012160,76.292740 91.012160,74.281360 C 91.012160,71.917780 89.751950,70.000000 88.198790,70.000000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2258"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 48.161210,119.00000 C 49.714360,119.00000 50.974580,117.08222 50.974580,114.71864 C 50.974580,112.70505 48.416210,109.31724 48.515560,107.70834 C 49.337030,107.24855 51.874970,111.49129 53.186630,111.49129 C 54.739780,111.49129 56.000000,109.57351 56.000000,107.20993 C 56.000000,104.84635 54.739780,102.92857 53.186630,102.92857 C 51.839590,102.92857 49.531080,107.16781 48.515560,106.78506 L 50.221640,99.220000 L 46.130440,99.244510 C 46.130440,99.244510 47.922740,106.57897 47.924970,106.75238 L 47.892760,106.75238 L 47.892760,106.74421 C 46.898260,107.12013 44.510870,102.84687 43.173370,102.84687 C 41.620220,102.84687 40.360000,104.76465 40.360000,107.12823 C 40.360000,109.49180 41.620220,111.40958 43.173370,111.40958 C 44.479690,111.40958 46.847580,107.23702 47.887390,107.66748 C 47.872780,109.31607 45.347830,112.70726 45.347830,114.71864 C 45.347830,117.08222 46.608050,119.00000 48.161210,119.00000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2256"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 89.801210,119.78000 C 91.354360,119.78000 92.614580,117.86222 92.614580,115.49864 C 92.614580,113.48505 90.056210,110.09724 90.155560,108.48833 C 90.977030,108.02855 93.514970,112.27128 94.826630,112.27128 C 96.379780,112.27128 97.640000,110.35351 97.640000,107.98993 C 97.640000,105.62635 96.379780,103.70857 94.826630,103.70857 C 93.479590,103.70857 91.171080,107.94781 90.155560,107.56506 L 91.861640,100.00000 L 87.770440,100.02451 C 87.770440,100.02451 89.562740,107.35897 89.564970,107.53238 L 89.532760,107.53238 L 89.532760,107.52421 C 88.538260,107.90013 86.150870,103.62687 84.813370,103.62687 C 83.260220,103.62687 82.000000,105.54465 82.000000,107.90823 C 82.000000,110.27180 83.260220,112.18958 84.813370,112.18958 C 86.119690,112.18958 88.487580,108.01702 89.527390,108.44748 C 89.512780,110.09607 86.987830,113.48726 86.987830,115.49864 C 86.987830,117.86222 88.248050,119.78000 89.801210,119.78000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2264"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 90.161210,149.78000 C 91.714360,149.78000 92.974580,147.86222 92.974580,145.49864 C 92.974580,143.48505 90.416210,140.09724 90.515570,138.48833 C 91.337030,138.02855 93.874970,142.27128 95.186630,142.27128 C 96.739780,142.27128 98.000000,140.35351 98.000000,137.98993 C 98.000000,135.62635 96.739780,133.70857 95.186630,133.70857 C 93.839590,133.70857 91.531080,137.94781 90.515570,137.56506 L 92.221640,130.00000 L 88.130440,130.02451 C 88.130440,130.02451 89.922740,137.35897 89.924970,137.53238 L 89.892760,137.53238 L 89.892760,137.52421 C 88.898260,137.90013 86.510870,133.62687 85.173370,133.62687 C 83.620220,133.62687 82.360000,135.54465 82.360000,137.90823 C 82.360000,140.27180 83.620220,142.18958 85.173370,142.18958 C 86.479690,142.18958 88.847590,138.01702 89.887390,138.44748 C 89.872780,140.09607 87.347830,143.48726 87.347830,145.49864 C 87.347830,147.86222 88.608050,149.78000 90.161210,149.78000 z " />
- <path
- sodipodi:nodetypes="cscsssccccccssscsc"
- id="path2260"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 49.161210,149.78000 C 50.714370,149.78000 51.974590,147.86222 51.974590,145.49865 C 51.974590,143.48505 49.416210,140.09725 49.515570,138.48834 C 50.337030,138.02856 52.874970,142.27129 54.186630,142.27129 C 55.739790,142.27129 57.000000,140.35351 57.000000,137.98994 C 57.000000,135.62636 55.739790,133.70858 54.186630,133.70858 C 52.839590,133.70858 50.531090,137.94782 49.515570,137.56507 L 51.221650,130.00000 L 47.130440,130.02452 C 47.130440,130.02452 48.922750,137.35898 48.924970,137.53239 L 48.892760,137.53239 L 48.892760,137.52421 C 47.898260,137.90013 45.510870,133.62688 44.173380,133.62687 C 42.620220,133.62687 41.360000,135.54465 41.360000,137.90823 C 41.360000,140.27181 42.620220,142.18959 44.173380,142.18959 C 45.479700,142.18959 47.847590,138.01702 48.887390,138.44749 C 48.872780,140.09607 46.347840,143.48727 46.347840,145.49865 C 46.347840,147.86222 47.608050,149.78000 49.161210,149.78000 z " />
-
-
- <metadata>
- <rdf:RDF
- xmlns="http://web.resource.org/cc/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <Work rdf:about="">
- <dc:title>card</dc:title>
- <dc:description></dc:description>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>white</rdf:li>
- <rdf:li>card</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:publisher>
- <Agent>
- <dc:title></dc:title>
- </Agent>
- </dc:publisher>
- <dc:creator>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:creator>
- <dc:rights>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:rights>
- <dc:date></dc:date>
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
- <dc:language>en</dc:language>
- </Work>
-
- <License rdf:about="http://web.resource.org/cc/PublicDomain">
- <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
- <permits rdf:resource="http://web.resource.org/cc/Distribution" />
- <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- </License>
-
- </rdf:RDF>
- </metadata>
-</svg>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ height="190.00000"
+ width="140.00000"
+ preserveAspectRatio="xMinYMin meet"
+ viewBox="0 0 140 190"
+ y="0.0000000"
+ x="0.0000000"
+ version="1.0"
+ sodipodi:version="0.32"
+ inkscape:version="0.41+cvs"
+ sodipodi:docname="white_c_8.svg"
+ sodipodi:docbase="/home/nicu/Desktop/card_nicu_buculei_01.zip_FILES/cards/white">
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1152"
+ inkscape:window-height="791"
+ inkscape:zoom="1.0000000"
+ inkscape:cx="70.000000"
+ inkscape:cy="94.999969"
+ inkscape:window-x="0"
+ inkscape:window-y="26"
+ inkscape:current-layer="svg2" />
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient2060">
+ <stop
+ id="stop2062"
+ offset="0.0000000"
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
+ <stop
+ id="stop2064"
+ offset="1.0000000"
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient4853"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ </defs>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g5630">
+ <path
+ style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+ d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+ id="rect1306" />
+ </g>
+ <g
+ transform="translate(-448.5000,-231.5000)"
+ id="g5495"
+ inkscape:groupmode="layer"
+ inkscape:label="Layer 1" />
+ </g>
+ <g
+ id="g5581"
+ transform="translate(351.5000,184.5000)">
+ <path
+ id="text1488"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ transform="scale(0.909282,1.099768)"
+ d="M -363.90944,-141.56117 C -365.22494,-141.56116 -366.23592,-141.20183 -366.94238,-140.48320 C -367.64885,-139.76454 -368.00209,-138.73529 -368.00208,-137.39544 C -368.00209,-136.05558 -367.64885,-135.02633 -366.94238,-134.30769 C -366.23592,-133.60122 -365.22494,-133.24798 -363.90944,-133.24799 C -362.60614,-133.24798 -361.60734,-133.60122 -360.91304,-134.30769 C -360.21877,-135.02633 -359.87162,-136.05558 -359.87160,-137.39544 C -359.87162,-138.74747 -360.21877,-139.77672 -360.91304,-140.48320 C -361.60734,-141.20183 -362.60614,-141.56116 -363.90944,-141.56117 M -369.04351,-143.88155 C -370.70006,-144.38093 -371.94856,-145.14830 -372.78901,-146.18366 C -373.62946,-147.21898 -374.04969,-148.51011 -374.04969,-150.05706 C -374.04969,-152.35914 -373.19097,-154.11313 -371.47352,-155.31902 C -369.75607,-156.52486 -367.23472,-157.12780 -363.90944,-157.12783 C -360.60854,-157.12780 -358.09936,-156.52486 -356.38190,-155.31902 C -354.66447,-154.12531 -353.80575,-152.37132 -353.80572,-150.05706 C -353.80575,-148.51011 -354.23206,-147.21898 -355.08467,-146.18366 C -355.92515,-145.14830 -357.17365,-144.38093 -358.83017,-143.88155 C -356.97876,-143.36996 -355.58410,-142.53559 -354.64618,-141.37846 C -353.69612,-140.23348 -353.22108,-138.78401 -353.22106,-137.03003 C -353.22108,-134.32596 -354.12244,-132.27964 -355.92513,-130.89106 C -357.71568,-129.51467 -360.37711,-128.82647 -363.90944,-128.82647 C -367.45397,-128.82647 -370.13367,-129.51467 -371.94855,-130.89106 C -373.75127,-132.27964 -374.65262,-134.32596 -374.65262,-137.03003 C -374.65262,-138.78401 -374.18368,-140.23348 -373.24578,-141.37846 C -372.29570,-142.53559 -370.89495,-143.36996 -369.04351,-143.88155 M -367.39914,-149.34450 C -367.39915,-148.26041 -367.10073,-147.42605 -366.50388,-146.84141 C -365.89487,-146.25673 -365.03005,-145.96440 -363.90944,-145.96441 C -362.81321,-145.96440 -361.96666,-146.25673 -361.36980,-146.84141 C -360.77298,-147.42605 -360.47456,-148.26041 -360.47454,-149.34450 C -360.47456,-150.42854 -360.77298,-151.25681 -361.36980,-151.82932 C -361.96666,-152.41396 -362.81321,-152.70629 -363.90944,-152.70631 C -365.03005,-152.70629 -365.89487,-152.41396 -366.50388,-151.82932 C -367.10073,-151.24463 -367.39915,-150.41636 -367.39914,-149.34450" />
+ <path
+ id="text3657"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ transform="scale(-0.909282,-1.099768)"
+ d="M 256.76709,21.958894 C 255.45159,21.958906 254.44061,22.318230 253.73415,23.036866 C 253.02768,23.755525 252.67444,24.784775 252.67445,26.124619 C 252.67444,27.464479 253.02768,28.493729 253.73415,29.212372 C 254.44061,29.918844 255.45159,30.272078 256.76709,30.272074 C 258.07039,30.272078 259.06919,29.918844 259.76349,29.212372 C 260.45776,28.493729 260.80491,27.464479 260.80492,26.124619 C 260.80491,24.772595 260.45776,23.743345 259.76349,23.036866 C 259.06919,22.318230 258.07039,21.958906 256.76709,21.958894 M 251.63302,19.638512 C 249.97647,19.139127 248.72797,18.371757 247.88752,17.336400 C 247.04706,16.301077 246.62684,15.009947 246.62684,13.463006 C 246.62684,11.160918 247.48556,9.4069301 249.20301,8.2010375 C 250.92045,6.9951968 253.44181,6.3922634 256.76709,6.3922357 C 260.06799,6.3922634 262.57717,6.9951968 264.29463,8.2010375 C 266.01206,9.3947496 266.87078,11.148738 266.87080,13.463006 C 266.87078,15.009947 266.44447,16.301077 265.59185,17.336400 C 264.75138,18.371757 263.50288,19.139127 261.84636,19.638512 C 263.69777,20.150106 265.09243,20.984468 266.03035,22.141601 C 266.98041,23.286577 267.45544,24.736053 267.45547,26.490034 C 267.45544,29.194106 266.55409,31.240425 264.75140,32.628997 C 262.96085,34.005392 260.29942,34.693589 256.76709,34.693589 C 253.22256,34.693589 250.54286,34.005392 248.72797,32.628997 C 246.92526,31.240425 246.02390,29.194106 246.02391,26.490034 C 246.02390,24.736053 246.49285,23.286577 247.43075,22.141601 C 248.38083,20.984468 249.78158,20.150106 251.63302,19.638512 M 253.27739,14.175565 C 253.27738,15.259647 253.57580,16.094009 254.17265,16.678654 C 254.78166,17.263334 255.64648,17.555665 256.76709,17.555649 C 257.86332,17.555665 258.70987,17.263334 259.30672,16.678654 C 259.90355,16.094009 260.20197,15.259647 260.20199,14.175565 C 260.20197,13.091523 259.90355,12.263251 259.30672,11.690746 C 258.70987,11.106106 257.86332,10.813775 256.76709,10.813751 C 255.64648,10.813775 254.78166,11.106106 254.17265,11.690746 C 253.57580,12.275431 253.27738,13.103703 253.27739,14.175565" />
+ </g>
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path908"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 20.527261,48.665000 C 17.860877,48.665000 15.697394,51.928523 15.697394,55.950664 C 15.697394,59.377240 20.089490,65.142330 19.918919,67.880240 C 18.508668,68.662660 14.151660,61.442720 11.899866,61.442720 C 9.2334820,61.442720 7.0700000,64.706240 7.0700000,68.728380 C 7.0700000,72.750530 9.2334820,76.014050 11.899866,76.014050 C 14.212394,76.014050 18.175527,68.800060 19.918919,69.451390 L 16.990005,82.325000 L 24.013589,82.283290 C 24.013589,82.283290 20.936644,69.802100 20.932822,69.507000 L 20.988126,69.507000 L 20.988126,69.520910 C 22.695429,68.881200 26.793987,76.153080 29.090134,76.153090 C 31.756521,76.153090 33.920003,72.889570 33.920000,68.867420 C 33.920000,64.845280 31.756521,61.581760 29.090134,61.581760 C 26.847510,61.581760 22.782426,68.682290 20.997343,67.949760 C 21.022420,65.144330 25.357127,59.373473 25.357127,55.950664 C 25.357127,51.928523 23.193647,48.665000 20.527261,48.665000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path3647"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 117.41824,139.96250 C 120.08462,139.96250 122.24811,136.69898 122.24811,132.67684 C 122.24811,129.25026 117.85601,123.48517 118.02658,120.74726 C 119.43683,119.96484 123.79384,127.18478 126.04563,127.18478 C 128.71202,127.18478 130.87550,123.92126 130.87550,119.89912 C 130.87550,115.87697 128.71202,112.61345 126.04563,112.61345 C 123.73311,112.61345 119.76997,119.82744 118.02658,119.17611 L 120.95550,106.30250 L 113.93191,106.34421 C 113.93191,106.34421 117.00886,118.82540 117.01268,119.12050 L 116.95737,119.12050 L 116.95737,119.10659 C 115.25007,119.74630 111.15151,112.47442 108.85537,112.47441 C 106.18898,112.47441 104.02550,115.73793 104.02550,119.76008 C 104.02550,123.78222 106.18898,127.04574 108.85537,127.04574 C 111.09799,127.04574 115.16307,119.94521 116.94816,120.67774 C 116.92308,123.48317 112.58837,129.25403 112.58837,132.67684 C 112.58837,136.69898 114.75185,139.96250 117.41824,139.96250 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2242"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 49.198790,36.000000 C 47.645640,36.000000 46.385420,37.917780 46.385420,40.281356 C 46.385420,42.294953 48.943790,45.682757 48.844430,47.291665 C 48.022970,47.751447 45.485030,43.508714 44.173370,43.508714 C 42.620220,43.508714 41.360000,45.426492 41.360000,47.790067 C 41.360000,50.153648 42.620220,52.071426 44.173370,52.071426 C 45.520410,52.071426 47.828920,47.832189 48.844430,48.214937 L 47.138360,55.780000 L 51.229560,55.755489 C 51.229560,55.755489 49.437260,48.421029 49.435030,48.247616 L 49.467240,48.247616 L 49.467240,48.255790 C 50.461740,47.879870 52.849130,52.153126 54.186630,52.153132 C 55.739780,52.153132 57.000000,50.235353 57.000000,47.871773 C 57.000000,45.508198 55.739780,43.590419 54.186630,43.590419 C 52.880310,43.590419 50.512410,47.762983 49.472610,47.332518 C 49.487220,45.683932 52.012170,42.292739 52.012170,40.281356 C 52.012170,37.917780 50.751950,36.000000 49.198790,36.000000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2248"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 90.198800,36.220003 C 88.645640,36.220003 87.385420,38.137783 87.385420,40.501359 C 87.385420,42.514956 89.943800,45.902760 89.844440,47.511668 C 89.022980,47.971450 86.485040,43.728717 85.173380,43.728717 C 83.620220,43.728717 82.360000,45.646495 82.360000,48.010070 C 82.360000,50.373650 83.620220,52.291430 85.173380,52.291430 C 86.520420,52.291430 88.828920,48.052192 89.844440,48.434940 L 88.138360,56.000000 L 92.229570,55.975490 C 92.229570,55.975490 90.437260,48.641030 90.435030,48.467620 L 90.467250,48.467620 L 90.467250,48.475790 C 91.461740,48.099873 93.849140,52.373130 95.186630,52.373140 C 96.739790,52.373140 98.000010,50.455360 98.000000,48.091776 C 98.000000,45.728201 96.739790,43.810422 95.186630,43.810422 C 93.880310,43.810422 91.512420,47.982986 90.472620,47.552521 C 90.487220,45.903935 93.012170,42.512742 93.012170,40.501359 C 93.012170,38.137783 91.751950,36.220003 90.198800,36.220003 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2254"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 48.838790,71.220000 C 47.285640,71.220000 46.025420,73.137780 46.025420,75.501350 C 46.025420,77.514950 48.583790,80.902750 48.484440,82.511660 C 47.662970,82.971440 45.125040,78.728710 43.813380,78.728710 C 42.260220,78.728710 41.000000,80.646490 41.000000,83.010060 C 41.000000,85.373640 42.260220,87.291420 43.813380,87.291420 C 45.160410,87.291420 47.468920,83.052190 48.484440,83.434930 L 46.778360,91.000000 L 50.869560,90.975490 C 50.869560,90.975490 49.077260,83.641030 49.075030,83.467610 L 49.107250,83.467610 L 49.107250,83.475790 C 50.101740,83.099870 52.489130,87.373120 53.826630,87.373130 C 55.379790,87.373130 56.640000,85.455350 56.640000,83.091770 C 56.640000,80.728190 55.379790,78.810420 53.826630,78.810420 C 52.520310,78.810420 50.152420,82.982980 49.112610,82.552510 C 49.127220,80.903930 51.652170,77.512740 51.652170,75.501350 C 51.652170,73.137780 50.391950,71.220000 48.838790,71.220000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2252"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 88.198790,70.000000 C 86.645630,70.000000 85.385410,71.917780 85.385410,74.281360 C 85.385410,76.294950 87.943790,79.682760 87.844430,81.291660 C 87.022970,81.751450 84.485030,77.508710 83.173370,77.508710 C 81.620210,77.508710 80.360000,79.426490 80.360000,81.790070 C 80.360000,84.153650 81.620210,86.071430 83.173370,86.071430 C 84.520410,86.071430 86.828910,81.832190 87.844430,82.214940 L 86.138350,89.779990 L 90.229560,89.755480 C 90.229560,89.755480 88.437250,82.421030 88.435030,82.247620 L 88.467240,82.247620 L 88.467240,82.255790 C 89.461740,81.879870 91.849130,86.153130 93.186620,86.153130 C 94.739780,86.153130 96.000000,84.235350 96.000000,81.871770 C 96.000000,79.508200 94.739780,77.590420 93.186620,77.590420 C 91.880300,77.590420 89.512410,81.762980 88.472610,81.332520 C 88.487220,79.683930 91.012160,76.292740 91.012160,74.281360 C 91.012160,71.917780 89.751950,70.000000 88.198790,70.000000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2258"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 48.161210,119.00000 C 49.714360,119.00000 50.974580,117.08222 50.974580,114.71864 C 50.974580,112.70505 48.416210,109.31724 48.515560,107.70834 C 49.337030,107.24855 51.874970,111.49129 53.186630,111.49129 C 54.739780,111.49129 56.000000,109.57351 56.000000,107.20993 C 56.000000,104.84635 54.739780,102.92857 53.186630,102.92857 C 51.839590,102.92857 49.531080,107.16781 48.515560,106.78506 L 50.221640,99.220000 L 46.130440,99.244510 C 46.130440,99.244510 47.922740,106.57897 47.924970,106.75238 L 47.892760,106.75238 L 47.892760,106.74421 C 46.898260,107.12013 44.510870,102.84687 43.173370,102.84687 C 41.620220,102.84687 40.360000,104.76465 40.360000,107.12823 C 40.360000,109.49180 41.620220,111.40958 43.173370,111.40958 C 44.479690,111.40958 46.847580,107.23702 47.887390,107.66748 C 47.872780,109.31607 45.347830,112.70726 45.347830,114.71864 C 45.347830,117.08222 46.608050,119.00000 48.161210,119.00000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2256"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 89.801210,119.78000 C 91.354360,119.78000 92.614580,117.86222 92.614580,115.49864 C 92.614580,113.48505 90.056210,110.09724 90.155560,108.48833 C 90.977030,108.02855 93.514970,112.27128 94.826630,112.27128 C 96.379780,112.27128 97.640000,110.35351 97.640000,107.98993 C 97.640000,105.62635 96.379780,103.70857 94.826630,103.70857 C 93.479590,103.70857 91.171080,107.94781 90.155560,107.56506 L 91.861640,100.00000 L 87.770440,100.02451 C 87.770440,100.02451 89.562740,107.35897 89.564970,107.53238 L 89.532760,107.53238 L 89.532760,107.52421 C 88.538260,107.90013 86.150870,103.62687 84.813370,103.62687 C 83.260220,103.62687 82.000000,105.54465 82.000000,107.90823 C 82.000000,110.27180 83.260220,112.18958 84.813370,112.18958 C 86.119690,112.18958 88.487580,108.01702 89.527390,108.44748 C 89.512780,110.09607 86.987830,113.48726 86.987830,115.49864 C 86.987830,117.86222 88.248050,119.78000 89.801210,119.78000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2264"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 90.161210,149.78000 C 91.714360,149.78000 92.974580,147.86222 92.974580,145.49864 C 92.974580,143.48505 90.416210,140.09724 90.515570,138.48833 C 91.337030,138.02855 93.874970,142.27128 95.186630,142.27128 C 96.739780,142.27128 98.000000,140.35351 98.000000,137.98993 C 98.000000,135.62635 96.739780,133.70857 95.186630,133.70857 C 93.839590,133.70857 91.531080,137.94781 90.515570,137.56506 L 92.221640,130.00000 L 88.130440,130.02451 C 88.130440,130.02451 89.922740,137.35897 89.924970,137.53238 L 89.892760,137.53238 L 89.892760,137.52421 C 88.898260,137.90013 86.510870,133.62687 85.173370,133.62687 C 83.620220,133.62687 82.360000,135.54465 82.360000,137.90823 C 82.360000,140.27180 83.620220,142.18958 85.173370,142.18958 C 86.479690,142.18958 88.847590,138.01702 89.887390,138.44748 C 89.872780,140.09607 87.347830,143.48726 87.347830,145.49864 C 87.347830,147.86222 88.608050,149.78000 90.161210,149.78000 z " />
+ <path
+ sodipodi:nodetypes="cscsssccccccssscsc"
+ id="path2260"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+ d="M 49.161210,149.78000 C 50.714370,149.78000 51.974590,147.86222 51.974590,145.49865 C 51.974590,143.48505 49.416210,140.09725 49.515570,138.48834 C 50.337030,138.02856 52.874970,142.27129 54.186630,142.27129 C 55.739790,142.27129 57.000000,140.35351 57.000000,137.98994 C 57.000000,135.62636 55.739790,133.70858 54.186630,133.70858 C 52.839590,133.70858 50.531090,137.94782 49.515570,137.56507 L 51.221650,130.00000 L 47.130440,130.02452 C 47.130440,130.02452 48.922750,137.35898 48.924970,137.53239 L 48.892760,137.53239 L 48.892760,137.52421 C 47.898260,137.90013 45.510870,133.62688 44.173380,133.62687 C 42.620220,133.62687 41.360000,135.54465 41.360000,137.90823 C 41.360000,140.27181 42.620220,142.18959 44.173380,142.18959 C 45.479700,142.18959 47.847590,138.01702 48.887390,138.44749 C 48.872780,140.09607 46.347840,143.48727 46.347840,145.49865 C 46.347840,147.86222 47.608050,149.78000 49.161210,149.78000 z " />
+
+
+ <metadata>
+ <rdf:RDF
+ xmlns="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <Work rdf:about="">
+ <dc:title>card</dc:title>
+ <dc:description></dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>white</rdf:li>
+ <rdf:li>card</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:publisher>
+ <Agent>
+ <dc:title></dc:title>
+ </Agent>
+ </dc:publisher>
+ <dc:creator>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:creator>
+ <dc:rights>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:rights>
+ <dc:date></dc:date>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+ <dc:language>en</dc:language>
+ </Work>
+
+ <License rdf:about="http://web.resource.org/cc/PublicDomain">
+ <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+ <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ </License>
+
+ </rdf:RDF>
+ </metadata>
+</svg>
diff --git a/svg/d8.svg b/svg/d8.svg
index 0ae117f..ca40fd3 100644
--- a/svg/d8.svg
+++ b/svg/d8.svg
@@ -1,181 +1,181 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- sodipodi:docbase="/home/nicu/Desktop/simple"
- sodipodi:docname="d_8.svg"
- inkscape:version="0.41"
- sodipodi:version="0.32"
- version="1.0"
- x="0.0000000"
- y="0.0000000"
- preserveAspectRatio="xMinYMin meet"
- viewBox="0 0 140 190"
- width="140.00000"
- height="190.00000"
- id="svg2">
-
- <sodipodi:namedview
- inkscape:current-layer="svg2"
- inkscape:window-y="26"
- inkscape:window-x="0"
- inkscape:cy="95.000001"
- inkscape:cx="70.000003"
- inkscape:zoom="1.9105263"
- inkscape:window-height="791"
- inkscape:window-width="1152"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0.0"
- borderopacity="1.0"
- bordercolor="#666666"
- pagecolor="#ffffff"
- id="base" />
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient2060">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2062" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2064" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient4853"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- </defs>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <g
- id="g5630">
- <path
- id="rect1306"
- d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
- style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
- </g>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="g5495"
- transform="translate(-448.5000,-231.5000)" />
- </g>
- <g
- transform="translate(351.5000,184.5000)"
- id="g5581">
- <path
- d="M -363.90944,-141.56117 C -365.22494,-141.56116 -366.23592,-141.20183 -366.94238,-140.48320 C -367.64885,-139.76454 -368.00209,-138.73529 -368.00208,-137.39544 C -368.00209,-136.05558 -367.64885,-135.02633 -366.94238,-134.30769 C -366.23592,-133.60122 -365.22494,-133.24798 -363.90944,-133.24799 C -362.60614,-133.24798 -361.60734,-133.60122 -360.91304,-134.30769 C -360.21877,-135.02633 -359.87162,-136.05558 -359.87160,-137.39544 C -359.87162,-138.74747 -360.21877,-139.77672 -360.91304,-140.48320 C -361.60734,-141.20183 -362.60614,-141.56116 -363.90944,-141.56117 M -369.04351,-143.88155 C -370.70006,-144.38093 -371.94856,-145.14830 -372.78901,-146.18366 C -373.62946,-147.21898 -374.04969,-148.51011 -374.04969,-150.05706 C -374.04969,-152.35914 -373.19097,-154.11313 -371.47352,-155.31902 C -369.75607,-156.52486 -367.23472,-157.12780 -363.90944,-157.12783 C -360.60854,-157.12780 -358.09936,-156.52486 -356.38190,-155.31902 C -354.66447,-154.12531 -353.80575,-152.37132 -353.80572,-150.05706 C -353.80575,-148.51011 -354.23206,-147.21898 -355.08467,-146.18366 C -355.92515,-145.14830 -357.17365,-144.38093 -358.83017,-143.88155 C -356.97876,-143.36996 -355.58410,-142.53559 -354.64618,-141.37846 C -353.69612,-140.23348 -353.22108,-138.78401 -353.22106,-137.03003 C -353.22108,-134.32596 -354.12244,-132.27964 -355.92513,-130.89106 C -357.71568,-129.51467 -360.37711,-128.82647 -363.90944,-128.82647 C -367.45397,-128.82647 -370.13367,-129.51467 -371.94855,-130.89106 C -373.75127,-132.27964 -374.65262,-134.32596 -374.65262,-137.03003 C -374.65262,-138.78401 -374.18368,-140.23348 -373.24578,-141.37846 C -372.29570,-142.53559 -370.89495,-143.36996 -369.04351,-143.88155 M -367.39914,-149.34450 C -367.39915,-148.26041 -367.10073,-147.42605 -366.50388,-146.84141 C -365.89487,-146.25673 -365.03005,-145.96440 -363.90944,-145.96441 C -362.81321,-145.96440 -361.96666,-146.25673 -361.36980,-146.84141 C -360.77298,-147.42605 -360.47456,-148.26041 -360.47454,-149.34450 C -360.47456,-150.42854 -360.77298,-151.25681 -361.36980,-151.82932 C -361.96666,-152.41396 -362.81321,-152.70629 -363.90944,-152.70631 C -365.03005,-152.70629 -365.89487,-152.41396 -366.50388,-151.82932 C -367.10073,-151.24463 -367.39915,-150.41636 -367.39914,-149.34450"
- transform="scale(0.909282,1.099768)"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- id="text1488" />
- <path
- d="M 256.76709,21.958894 C 255.45159,21.958906 254.44061,22.318230 253.73415,23.036866 C 253.02768,23.755525 252.67444,24.784775 252.67445,26.124619 C 252.67444,27.464479 253.02768,28.493729 253.73415,29.212372 C 254.44061,29.918844 255.45159,30.272078 256.76709,30.272074 C 258.07039,30.272078 259.06919,29.918844 259.76349,29.212372 C 260.45776,28.493729 260.80491,27.464479 260.80492,26.124619 C 260.80491,24.772595 260.45776,23.743345 259.76349,23.036866 C 259.06919,22.318230 258.07039,21.958906 256.76709,21.958894 M 251.63302,19.638512 C 249.97647,19.139127 248.72797,18.371757 247.88752,17.336400 C 247.04706,16.301077 246.62684,15.009947 246.62684,13.463006 C 246.62684,11.160918 247.48556,9.4069301 249.20301,8.2010375 C 250.92045,6.9951968 253.44181,6.3922634 256.76709,6.3922357 C 260.06799,6.3922634 262.57717,6.9951968 264.29463,8.2010375 C 266.01206,9.3947496 266.87078,11.148738 266.87080,13.463006 C 266.87078,15.009947 266.44447,16.301077 265.59185,17.336400 C 264.75138,18.371757 263.50288,19.139127 261.84636,19.638512 C 263.69777,20.150106 265.09243,20.984468 266.03035,22.141601 C 266.98041,23.286577 267.45544,24.736053 267.45547,26.490034 C 267.45544,29.194106 266.55409,31.240425 264.75140,32.628997 C 262.96085,34.005392 260.29942,34.693589 256.76709,34.693589 C 253.22256,34.693589 250.54286,34.005392 248.72797,32.628997 C 246.92526,31.240425 246.02390,29.194106 246.02391,26.490034 C 246.02390,24.736053 246.49285,23.286577 247.43075,22.141601 C 248.38083,20.984468 249.78158,20.150106 251.63302,19.638512 M 253.27739,14.175565 C 253.27738,15.259647 253.57580,16.094009 254.17265,16.678654 C 254.78166,17.263334 255.64648,17.555665 256.76709,17.555649 C 257.86332,17.555665 258.70987,17.263334 259.30672,16.678654 C 259.90355,16.094009 260.20197,15.259647 260.20199,14.175565 C 260.20197,13.091523 259.90355,12.263251 259.30672,11.690746 C 258.70987,11.106106 257.86332,10.813775 256.76709,10.813751 C 255.64648,10.813775 254.78166,11.106106 254.17265,11.690746 C 253.57580,12.275431 253.27738,13.103703 253.27739,14.175565"
- transform="scale(-0.909282,-1.099768)"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- id="text3444" />
- </g>
- <path
- d="M 20.409550,48.665000 C 16.283710,56.910480 13.275310,61.163050 7.0700000,65.704560 C 12.942390,70.191570 17.082700,74.829030 20.530180,82.325000 C 23.609430,75.203780 27.376590,69.895050 33.920000,65.481900 C 27.338020,62.132990 23.527370,56.828250 20.409550,48.665000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1608" />
- <path
- d="M 49.130230,36.220000 C 46.726940,41.065383 44.974560,43.564367 41.360000,46.233150 C 44.780640,48.869900 47.192350,51.595060 49.200490,56.000000 C 50.994140,51.815280 53.188490,48.695650 57.000000,46.102300 C 53.166030,44.134340 50.946340,41.017061 49.130230,36.220000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1498" />
- <path
- d="M 90.130230,36.220000 C 87.726950,41.065383 85.974570,43.564367 82.360000,46.233150 C 85.780650,48.869900 88.192360,51.595060 90.200500,56.000000 C 91.994150,51.815280 94.188500,48.695650 98.000000,46.102300 C 94.166030,44.134340 91.946350,41.017061 90.130230,36.220000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1500" />
- <path
- d="M 48.770230,71.220000 C 46.366940,76.065390 44.614560,78.564370 41.000000,81.233150 C 44.420640,83.869900 46.832350,86.595060 48.840490,91.000000 C 50.634140,86.815280 52.828490,83.695650 56.640000,81.102300 C 52.806030,79.134340 50.586340,76.017070 48.770230,71.220000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1504" />
- <path
- d="M 88.130230,70.219999 C 85.726940,75.065380 83.974560,77.564370 80.360000,80.233150 C 83.780640,82.869900 86.192350,85.595060 88.200490,90.000000 C 89.994140,85.815280 92.188490,82.695650 96.000000,80.102300 C 92.166030,78.134340 89.946340,75.017060 88.130230,70.219999 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1506" />
- <path
- d="M 89.770220,100.00000 C 87.366940,104.84539 85.614560,107.34437 82.000000,110.01315 C 85.420640,112.64990 87.832350,115.37506 89.840490,119.78000 C 91.634140,115.59528 93.828490,112.47565 97.640000,109.88230 C 93.806020,107.91434 91.586340,104.79707 89.770220,100.00000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1508" />
- <path
- d="M 48.130230,100.00000 C 45.726940,104.84538 43.974570,107.34436 40.360000,110.01315 C 43.780640,112.64990 46.192360,115.37506 48.200500,119.78000 C 49.994150,115.59528 52.188500,112.47565 56.000000,109.88230 C 52.166030,107.91434 49.946350,104.79706 48.130230,100.00000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1510" />
- <path
- d="M 49.130230,130.00000 C 46.726940,134.84538 44.974560,137.34437 41.360000,140.01315 C 44.780640,142.64990 47.192350,145.37506 49.200490,149.78000 C 50.994140,145.59528 53.188490,142.47565 57.000000,139.88230 C 53.166030,137.91434 50.946340,134.79706 49.130230,130.00000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1512" />
- <path
- d="M 90.130230,130.22000 C 87.726950,135.06539 85.974570,137.56437 82.360000,140.23315 C 85.780650,142.86990 88.192360,145.59506 90.200500,150.00000 C 91.994150,145.81528 94.188500,142.69565 98.000000,140.10230 C 94.166030,138.13434 91.946350,135.01707 90.130230,130.22000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1516" />
- <path
- d="M 118.33956,106.34000 C 114.21371,114.58548 111.20531,118.83805 105.00000,123.37956 C 110.87239,127.86657 115.01271,132.50403 118.46019,140.00000 C 121.53944,132.87878 125.30659,127.57005 131.85000,123.15690 C 125.26803,119.80799 121.45738,114.50325 118.33956,106.34000 z "
- style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
- id="path1518" />
-
-
-
- <metadata>
- <rdf:RDF
- xmlns="http://web.resource.org/cc/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <Work rdf:about="">
- <dc:title>card</dc:title>
- <dc:description></dc:description>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>white</rdf:li>
- <rdf:li>card</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:publisher>
- <Agent>
- <dc:title></dc:title>
- </Agent>
- </dc:publisher>
- <dc:creator>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:creator>
- <dc:rights>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:rights>
- <dc:date></dc:date>
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
- <dc:language>en</dc:language>
- </Work>
-
- <License rdf:about="http://web.resource.org/cc/PublicDomain">
- <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
- <permits rdf:resource="http://web.resource.org/cc/Distribution" />
- <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- </License>
-
- </rdf:RDF>
- </metadata>
-</svg>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ sodipodi:docbase="/home/nicu/Desktop/simple"
+ sodipodi:docname="d_8.svg"
+ inkscape:version="0.41"
+ sodipodi:version="0.32"
+ version="1.0"
+ x="0.0000000"
+ y="0.0000000"
+ preserveAspectRatio="xMinYMin meet"
+ viewBox="0 0 140 190"
+ width="140.00000"
+ height="190.00000"
+ id="svg2">
+
+ <sodipodi:namedview
+ inkscape:current-layer="svg2"
+ inkscape:window-y="26"
+ inkscape:window-x="0"
+ inkscape:cy="95.000001"
+ inkscape:cx="70.000003"
+ inkscape:zoom="1.9105263"
+ inkscape:window-height="791"
+ inkscape:window-width="1152"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base" />
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient2060">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop2062" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop2064" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient4853"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ </defs>
+ <g
+ id="layer1"
+ inkscape:groupmode="layer"
+ inkscape:label="Layer 1">
+ <g
+ id="g5630">
+ <path
+ id="rect1306"
+ d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+ style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+ </g>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="g5495"
+ transform="translate(-448.5000,-231.5000)" />
+ </g>
+ <g
+ transform="translate(351.5000,184.5000)"
+ id="g5581">
+ <path
+ d="M -363.90944,-141.56117 C -365.22494,-141.56116 -366.23592,-141.20183 -366.94238,-140.48320 C -367.64885,-139.76454 -368.00209,-138.73529 -368.00208,-137.39544 C -368.00209,-136.05558 -367.64885,-135.02633 -366.94238,-134.30769 C -366.23592,-133.60122 -365.22494,-133.24798 -363.90944,-133.24799 C -362.60614,-133.24798 -361.60734,-133.60122 -360.91304,-134.30769 C -360.21877,-135.02633 -359.87162,-136.05558 -359.87160,-137.39544 C -359.87162,-138.74747 -360.21877,-139.77672 -360.91304,-140.48320 C -361.60734,-141.20183 -362.60614,-141.56116 -363.90944,-141.56117 M -369.04351,-143.88155 C -370.70006,-144.38093 -371.94856,-145.14830 -372.78901,-146.18366 C -373.62946,-147.21898 -374.04969,-148.51011 -374.04969,-150.05706 C -374.04969,-152.35914 -373.19097,-154.11313 -371.47352,-155.31902 C -369.75607,-156.52486 -367.23472,-157.12780 -363.90944,-157.12783 C -360.60854,-157.12780 -358.09936,-156.52486 -356.38190,-155.31902 C -354.66447,-154.12531 -353.80575,-152.37132 -353.80572,-150.05706 C -353.80575,-148.51011 -354.23206,-147.21898 -355.08467,-146.18366 C -355.92515,-145.14830 -357.17365,-144.38093 -358.83017,-143.88155 C -356.97876,-143.36996 -355.58410,-142.53559 -354.64618,-141.37846 C -353.69612,-140.23348 -353.22108,-138.78401 -353.22106,-137.03003 C -353.22108,-134.32596 -354.12244,-132.27964 -355.92513,-130.89106 C -357.71568,-129.51467 -360.37711,-128.82647 -363.90944,-128.82647 C -367.45397,-128.82647 -370.13367,-129.51467 -371.94855,-130.89106 C -373.75127,-132.27964 -374.65262,-134.32596 -374.65262,-137.03003 C -374.65262,-138.78401 -374.18368,-140.23348 -373.24578,-141.37846 C -372.29570,-142.53559 -370.89495,-143.36996 -369.04351,-143.88155 M -367.39914,-149.34450 C -367.39915,-148.26041 -367.10073,-147.42605 -366.50388,-146.84141 C -365.89487,-146.25673 -365.03005,-145.96440 -363.90944,-145.96441 C -362.81321,-145.96440 -361.96666,-146.25673 -361.36980,-146.84141 C -360.77298,-147.42605 -360.47456,-148.26041 -360.47454,-149.34450 C -360.47456,-150.42854 -360.77298,-151.25681 -361.36980,-151.82932 C -361.96666,-152.41396 -362.81321,-152.70629 -363.90944,-152.70631 C -365.03005,-152.70629 -365.89487,-152.41396 -366.50388,-151.82932 C -367.10073,-151.24463 -367.39915,-150.41636 -367.39914,-149.34450"
+ transform="scale(0.909282,1.099768)"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ id="text1488" />
+ <path
+ d="M 256.76709,21.958894 C 255.45159,21.958906 254.44061,22.318230 253.73415,23.036866 C 253.02768,23.755525 252.67444,24.784775 252.67445,26.124619 C 252.67444,27.464479 253.02768,28.493729 253.73415,29.212372 C 254.44061,29.918844 255.45159,30.272078 256.76709,30.272074 C 258.07039,30.272078 259.06919,29.918844 259.76349,29.212372 C 260.45776,28.493729 260.80491,27.464479 260.80492,26.124619 C 260.80491,24.772595 260.45776,23.743345 259.76349,23.036866 C 259.06919,22.318230 258.07039,21.958906 256.76709,21.958894 M 251.63302,19.638512 C 249.97647,19.139127 248.72797,18.371757 247.88752,17.336400 C 247.04706,16.301077 246.62684,15.009947 246.62684,13.463006 C 246.62684,11.160918 247.48556,9.4069301 249.20301,8.2010375 C 250.92045,6.9951968 253.44181,6.3922634 256.76709,6.3922357 C 260.06799,6.3922634 262.57717,6.9951968 264.29463,8.2010375 C 266.01206,9.3947496 266.87078,11.148738 266.87080,13.463006 C 266.87078,15.009947 266.44447,16.301077 265.59185,17.336400 C 264.75138,18.371757 263.50288,19.139127 261.84636,19.638512 C 263.69777,20.150106 265.09243,20.984468 266.03035,22.141601 C 266.98041,23.286577 267.45544,24.736053 267.45547,26.490034 C 267.45544,29.194106 266.55409,31.240425 264.75140,32.628997 C 262.96085,34.005392 260.29942,34.693589 256.76709,34.693589 C 253.22256,34.693589 250.54286,34.005392 248.72797,32.628997 C 246.92526,31.240425 246.02390,29.194106 246.02391,26.490034 C 246.02390,24.736053 246.49285,23.286577 247.43075,22.141601 C 248.38083,20.984468 249.78158,20.150106 251.63302,19.638512 M 253.27739,14.175565 C 253.27738,15.259647 253.57580,16.094009 254.17265,16.678654 C 254.78166,17.263334 255.64648,17.555665 256.76709,17.555649 C 257.86332,17.555665 258.70987,17.263334 259.30672,16.678654 C 259.90355,16.094009 260.20197,15.259647 260.20199,14.175565 C 260.20197,13.091523 259.90355,12.263251 259.30672,11.690746 C 258.70987,11.106106 257.86332,10.813775 256.76709,10.813751 C 255.64648,10.813775 254.78166,11.106106 254.17265,11.690746 C 253.57580,12.275431 253.27738,13.103703 253.27739,14.175565"
+ transform="scale(-0.909282,-1.099768)"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ id="text3444" />
+ </g>
+ <path
+ d="M 20.409550,48.665000 C 16.283710,56.910480 13.275310,61.163050 7.0700000,65.704560 C 12.942390,70.191570 17.082700,74.829030 20.530180,82.325000 C 23.609430,75.203780 27.376590,69.895050 33.920000,65.481900 C 27.338020,62.132990 23.527370,56.828250 20.409550,48.665000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1608" />
+ <path
+ d="M 49.130230,36.220000 C 46.726940,41.065383 44.974560,43.564367 41.360000,46.233150 C 44.780640,48.869900 47.192350,51.595060 49.200490,56.000000 C 50.994140,51.815280 53.188490,48.695650 57.000000,46.102300 C 53.166030,44.134340 50.946340,41.017061 49.130230,36.220000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1498" />
+ <path
+ d="M 90.130230,36.220000 C 87.726950,41.065383 85.974570,43.564367 82.360000,46.233150 C 85.780650,48.869900 88.192360,51.595060 90.200500,56.000000 C 91.994150,51.815280 94.188500,48.695650 98.000000,46.102300 C 94.166030,44.134340 91.946350,41.017061 90.130230,36.220000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1500" />
+ <path
+ d="M 48.770230,71.220000 C 46.366940,76.065390 44.614560,78.564370 41.000000,81.233150 C 44.420640,83.869900 46.832350,86.595060 48.840490,91.000000 C 50.634140,86.815280 52.828490,83.695650 56.640000,81.102300 C 52.806030,79.134340 50.586340,76.017070 48.770230,71.220000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1504" />
+ <path
+ d="M 88.130230,70.219999 C 85.726940,75.065380 83.974560,77.564370 80.360000,80.233150 C 83.780640,82.869900 86.192350,85.595060 88.200490,90.000000 C 89.994140,85.815280 92.188490,82.695650 96.000000,80.102300 C 92.166030,78.134340 89.946340,75.017060 88.130230,70.219999 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1506" />
+ <path
+ d="M 89.770220,100.00000 C 87.366940,104.84539 85.614560,107.34437 82.000000,110.01315 C 85.420640,112.64990 87.832350,115.37506 89.840490,119.78000 C 91.634140,115.59528 93.828490,112.47565 97.640000,109.88230 C 93.806020,107.91434 91.586340,104.79707 89.770220,100.00000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1508" />
+ <path
+ d="M 48.130230,100.00000 C 45.726940,104.84538 43.974570,107.34436 40.360000,110.01315 C 43.780640,112.64990 46.192360,115.37506 48.200500,119.78000 C 49.994150,115.59528 52.188500,112.47565 56.000000,109.88230 C 52.166030,107.91434 49.946350,104.79706 48.130230,100.00000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1510" />
+ <path
+ d="M 49.130230,130.00000 C 46.726940,134.84538 44.974560,137.34437 41.360000,140.01315 C 44.780640,142.64990 47.192350,145.37506 49.200490,149.78000 C 50.994140,145.59528 53.188490,142.47565 57.000000,139.88230 C 53.166030,137.91434 50.946340,134.79706 49.130230,130.00000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1512" />
+ <path
+ d="M 90.130230,130.22000 C 87.726950,135.06539 85.974570,137.56437 82.360000,140.23315 C 85.780650,142.86990 88.192360,145.59506 90.200500,150.00000 C 91.994150,145.81528 94.188500,142.69565 98.000000,140.10230 C 94.166030,138.13434 91.946350,135.01707 90.130230,130.22000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1516" />
+ <path
+ d="M 118.33956,106.34000 C 114.21371,114.58548 111.20531,118.83805 105.00000,123.37956 C 110.87239,127.86657 115.01271,132.50403 118.46019,140.00000 C 121.53944,132.87878 125.30659,127.57005 131.85000,123.15690 C 125.26803,119.80799 121.45738,114.50325 118.33956,106.34000 z "
+ style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000"
+ id="path1518" />
+
+
+
+ <metadata>
+ <rdf:RDF
+ xmlns="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <Work rdf:about="">
+ <dc:title>card</dc:title>
+ <dc:description></dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>white</rdf:li>
+ <rdf:li>card</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:publisher>
+ <Agent>
+ <dc:title></dc:title>
+ </Agent>
+ </dc:publisher>
+ <dc:creator>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:creator>
+ <dc:rights>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:rights>
+ <dc:date></dc:date>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+ <dc:language>en</dc:language>
+ </Work>
+
+ <License rdf:about="http://web.resource.org/cc/PublicDomain">
+ <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+ <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ </License>
+
+ </rdf:RDF>
+ </metadata>
+</svg>
diff --git a/svg/h8.svg b/svg/h8.svg
index 3c99348..4b3dd8e 100644
--- a/svg/h8.svg
+++ b/svg/h8.svg
@@ -1,511 +1,511 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- sodipodi:docbase="/home/nicu/Desktop/simple"
- sodipodi:docname="h_8.svg"
- inkscape:version="0.41"
- sodipodi:version="0.32"
- version="1.0"
- x="0.0000000"
- y="0.0000000"
- preserveAspectRatio="xMinYMin meet"
- viewBox="0 0 140 190"
- width="140.00000"
- height="190.00000"
- id="svg2">
-
- <sodipodi:namedview
- inkscape:current-layer="svg2"
- inkscape:window-y="26"
- inkscape:window-x="0"
- inkscape:cy="95.000001"
- inkscape:cx="70.000003"
- inkscape:zoom="1.9105263"
- inkscape:window-height="791"
- inkscape:window-width="1152"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0.0"
- borderopacity="1.0"
- bordercolor="#666666"
- pagecolor="#ffffff"
- id="base" />
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient3920">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3922" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop3924" />
- </linearGradient>
- <linearGradient
- id="linearGradient2060">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2062" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2064" />
- </linearGradient>
- <linearGradient
- id="linearGradient1575">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.50000000;"
- offset="0.0000000"
- id="stop1576" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1577" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient4853"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- x1="233.88673"
- y1="142.78372"
- x2="159.43488"
- y2="209.56096"
- id="linearGradient3926"
- xlink:href="#linearGradient3920"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="233.88673"
- y1="142.78372"
- x2="159.43488"
- y2="209.56096"
- id="linearGradient1368"
- xlink:href="#linearGradient3920"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient1366"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- id="linearGradient1360">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.50000000;"
- offset="0.0000000"
- id="stop1362" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1364" />
- </linearGradient>
- <linearGradient
- id="linearGradient1354">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1356" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1358" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient1398"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5619"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- id="linearGradient5547">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop5549" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop5551" />
- </linearGradient>
- <linearGradient
- id="linearGradient5553">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.50000000;"
- offset="0.0000000"
- id="stop5555" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop5557" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5559"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- x1="233.88673"
- y1="142.78372"
- x2="159.43488"
- y2="209.56096"
- id="linearGradient5561"
- xlink:href="#linearGradient3920"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="233.88673"
- y1="142.78372"
- x2="159.43488"
- y2="209.56096"
- id="linearGradient5563"
- xlink:href="#linearGradient3920"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5565"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- id="linearGradient5567">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.50000000;"
- offset="0.0000000"
- id="stop5569" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop5571" />
- </linearGradient>
- <linearGradient
- id="linearGradient5573">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop5575" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop5577" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5579"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5182"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- id="linearGradient5176">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop5178" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop5180" />
- </linearGradient>
- <linearGradient
- id="linearGradient5170">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.50000000;"
- offset="0.0000000"
- id="stop5172" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop5174" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5168"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- x1="233.88673"
- y1="142.78372"
- x2="159.43488"
- y2="209.56096"
- id="linearGradient5166"
- xlink:href="#linearGradient3920"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="233.88673"
- y1="142.78372"
- x2="159.43488"
- y2="209.56096"
- id="linearGradient5164"
- xlink:href="#linearGradient3920"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5162"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- <linearGradient
- id="linearGradient5156">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.50000000;"
- offset="0.0000000"
- id="stop5158" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop5160" />
- </linearGradient>
- <linearGradient
- id="linearGradient5150">
- <stop
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop5152" />
- <stop
- style="stop-color:#ffffeb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop5154" />
- </linearGradient>
- <linearGradient
- x1="2.0000000"
- y1="63.099518"
- x2="109.00000"
- y2="128.69501"
- id="linearGradient5238"
- xlink:href="#linearGradient2060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0.000000,-1.000000)" />
- </defs>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <g
- id="g5630">
- <path
- id="rect1306"
- d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
- style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
- </g>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="g5495"
- transform="translate(-448.5000,-231.5000)" />
- </g>
- <path
- d="M 20.843790,28.575298 C 19.647625,28.575313 18.728360,28.970486 18.085991,29.760820 C 17.443604,30.551178 17.122415,31.683114 17.122423,33.156632 C 17.122415,34.630168 17.443604,35.762104 18.085991,36.552445 C 18.728360,37.329401 19.647625,37.717876 20.843790,37.717872 C 22.028856,37.717876 22.937046,37.329401 23.568363,36.552445 C 24.199651,35.762104 24.515303,34.630168 24.515318,33.156632 C 24.515303,31.669719 24.199651,30.537782 23.568363,29.760820 C 22.937046,28.970486 22.028856,28.575313 20.843790,28.575298 M 16.175468,26.023415 C 14.669194,25.474208 13.533957,24.630279 12.769752,23.491626 C 12.005539,22.353010 11.623435,20.933067 11.623437,19.231790 C 11.623435,16.700025 12.404257,14.771046 13.965906,13.444842 C 15.527544,12.118697 17.820170,11.455610 20.843790,11.455579 C 23.845236,11.455610 26.126786,12.118697 27.688449,13.444842 C 29.250073,14.757649 30.030896,16.686630 30.030917,19.231790 C 30.030896,20.933067 29.643253,22.353010 28.867990,23.491626 C 28.103761,24.630279 26.968523,25.474208 25.462274,26.023415 C 27.145731,26.586051 28.413875,27.503656 29.266707,28.776235 C 30.130575,30.035443 30.562519,31.629531 30.562541,33.558503 C 30.562519,36.532356 29.742933,38.782835 28.103780,40.309942 C 26.475664,41.823658 24.055670,42.580515 20.843790,42.580515 C 17.620811,42.580515 15.184204,41.823658 13.533961,40.309942 C 11.894784,38.782835 11.075198,36.532356 11.075200,33.558503 C 11.075198,31.629531 11.501604,30.035443 12.354420,28.776235 C 13.218305,27.503656 14.491986,26.586051 16.175468,26.023415 M 17.670660,20.015439 C 17.670651,21.207679 17.942001,22.125283 18.484709,22.768258 C 19.038474,23.411271 19.824834,23.732767 20.843790,23.732749 C 21.840573,23.732767 22.610319,23.411271 23.153032,22.768258 C 23.695717,22.125283 23.967066,21.207679 23.967081,20.015439 C 23.967066,18.823244 23.695717,17.912336 23.153032,17.282713 C 22.610319,16.639745 21.840573,16.318249 20.843790,16.318222 C 19.824834,16.318249 19.038474,16.639745 18.484709,17.282713 C 17.942001,17.925732 17.670651,18.836639 17.670660,20.015439"
- style="font-size:37.418461;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- id="text1386" />
- <g
- transform="matrix(0.286388,0.000000,0.000000,0.388772,-29.60833,-9.472414)"
- style="fill:#ff0000;fill-opacity:1.0000000"
- id="g1390">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path1392" />
- </g>
- <path
- d="M 118.02167,160.42463 C 119.21783,160.42462 120.13709,160.02944 120.77946,159.23910 C 121.42184,158.44876 121.74304,157.31682 121.74303,155.84330 C 121.74304,154.36976 121.42184,153.23782 120.77946,152.44749 C 120.13709,151.67052 119.21783,151.28205 118.02167,151.28205 C 116.83660,151.28205 115.92841,151.67052 115.29709,152.44749 C 114.66580,153.23782 114.35015,154.36976 114.35013,155.84330 C 114.35015,157.33021 114.66580,158.46215 115.29709,159.23910 C 115.92841,160.02944 116.83660,160.42462 118.02167,160.42463 M 122.68998,162.97651 C 124.19626,163.52572 125.33149,164.36965 126.09570,165.50830 C 126.85991,166.64692 127.24201,168.06686 127.24201,169.76814 C 127.24201,172.29990 126.46119,174.22889 124.89955,175.55509 C 123.33791,176.88123 121.04528,177.54431 118.02167,177.54435 C 115.02022,177.54431 112.73867,176.88123 111.17700,175.55509 C 109.61538,174.24228 108.83455,172.31330 108.83454,169.76814 C 108.83455,168.06686 109.22220,166.64692 109.99746,165.50830 C 110.76170,164.36965 111.89692,163.52572 113.40318,162.97651 C 111.71972,162.41388 110.45158,161.49627 109.59874,160.22369 C 108.73488,158.96448 108.30293,157.37040 108.30292,155.44143 C 108.30293,152.46757 109.12252,150.21709 110.76168,148.68999 C 112.38979,147.17627 114.80978,146.41942 118.02167,146.41942 C 121.24464,146.41942 123.68125,147.17627 125.33149,148.68999 C 126.97067,150.21709 127.79026,152.46757 127.79026,155.44143 C 127.79026,157.37040 127.36385,158.96448 126.51103,160.22369 C 125.64715,161.49627 124.37347,162.41388 122.68998,162.97651 M 121.19480,168.98449 C 121.19480,167.79225 120.92345,166.87465 120.38074,166.23167 C 119.82698,165.58866 119.04062,165.26716 118.02167,165.26717 C 117.02488,165.26716 116.25513,165.58866 115.71242,166.23167 C 115.16974,166.87465 114.89838,167.79225 114.89837,168.98449 C 114.89838,170.17668 115.16974,171.08760 115.71242,171.71721 C 116.25513,172.36018 117.02488,172.68168 118.02167,172.68171 C 119.04062,172.68168 119.82698,172.36018 120.38074,171.71721 C 120.92345,171.07419 121.19480,170.16329 121.19480,168.98449"
- style="font-size:37.418461;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- id="text15077" />
- <g
- transform="matrix(-0.286388,0.000000,0.000000,-0.388772,168.4700,198.3135)"
- style="fill:#ff0000;fill-opacity:1.0000000"
- id="g15081">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path15083" />
- </g>
- <g
- id="g5202">
- <g
- transform="translate(351.5000,184.5000)"
- id="g5581" />
- </g>
- <g
- transform="matrix(0.166355,0.000000,0.000000,0.229660,19.05389,5.772344)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g1861">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path1863" />
- </g>
- <g
- transform="matrix(0.166355,0.000000,0.000000,0.229660,58.05389,5.552379)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5250">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5252" />
- </g>
- <g
- transform="matrix(0.166355,0.000000,0.000000,0.229660,19.69390,36.77234)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5254">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5256" />
- </g>
- <g
- transform="matrix(0.166355,0.000000,0.000000,0.229660,59.05389,35.77234)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5258">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5260" />
- </g>
- <g
- transform="matrix(-0.166355,0.000000,0.000000,-0.229660,78.30610,154.2277)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5262">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5264" />
- </g>
- <g
- transform="matrix(-0.166355,0.000000,0.000000,-0.229660,78.94611,181.2277)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5266">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5268" />
- </g>
- <g
- transform="matrix(-0.166355,0.000000,0.000000,-0.229660,116.3061,181.2277)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5270">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5272" />
- </g>
- <g
- transform="matrix(-0.166355,0.000000,0.000000,-0.229660,117.9461,153.4476)"
- style="fill-opacity:1.0000000;fill:#ff0000"
- id="g5274">
- <path
- d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
- transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
- style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="path5276" />
- </g>
-
-
-
- <metadata>
- <rdf:RDF
- xmlns="http://web.resource.org/cc/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <Work rdf:about="">
- <dc:title>card</dc:title>
- <dc:description></dc:description>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>white</rdf:li>
- <rdf:li>card</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:publisher>
- <Agent>
- <dc:title></dc:title>
- </Agent>
- </dc:publisher>
- <dc:creator>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:creator>
- <dc:rights>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:rights>
- <dc:date></dc:date>
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
- <dc:language>en</dc:language>
- </Work>
-
- <License rdf:about="http://web.resource.org/cc/PublicDomain">
- <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
- <permits rdf:resource="http://web.resource.org/cc/Distribution" />
- <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- </License>
-
- </rdf:RDF>
- </metadata>
-</svg>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ sodipodi:docbase="/home/nicu/Desktop/simple"
+ sodipodi:docname="h_8.svg"
+ inkscape:version="0.41"
+ sodipodi:version="0.32"
+ version="1.0"
+ x="0.0000000"
+ y="0.0000000"
+ preserveAspectRatio="xMinYMin meet"
+ viewBox="0 0 140 190"
+ width="140.00000"
+ height="190.00000"
+ id="svg2">
+
+ <sodipodi:namedview
+ inkscape:current-layer="svg2"
+ inkscape:window-y="26"
+ inkscape:window-x="0"
+ inkscape:cy="95.000001"
+ inkscape:cx="70.000003"
+ inkscape:zoom="1.9105263"
+ inkscape:window-height="791"
+ inkscape:window-width="1152"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base" />
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient3920">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop3922" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop3924" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2060">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop2062" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop2064" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1575">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.50000000;"
+ offset="0.0000000"
+ id="stop1576" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop1577" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient4853"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ x1="233.88673"
+ y1="142.78372"
+ x2="159.43488"
+ y2="209.56096"
+ id="linearGradient3926"
+ xlink:href="#linearGradient3920"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="233.88673"
+ y1="142.78372"
+ x2="159.43488"
+ y2="209.56096"
+ id="linearGradient1368"
+ xlink:href="#linearGradient3920"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient1366"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ id="linearGradient1360">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.50000000;"
+ offset="0.0000000"
+ id="stop1362" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop1364" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1354">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop1356" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop1358" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient1398"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5619"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ id="linearGradient5547">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop5549" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop5551" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5553">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.50000000;"
+ offset="0.0000000"
+ id="stop5555" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop5557" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5559"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ x1="233.88673"
+ y1="142.78372"
+ x2="159.43488"
+ y2="209.56096"
+ id="linearGradient5561"
+ xlink:href="#linearGradient3920"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="233.88673"
+ y1="142.78372"
+ x2="159.43488"
+ y2="209.56096"
+ id="linearGradient5563"
+ xlink:href="#linearGradient3920"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5565"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ id="linearGradient5567">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.50000000;"
+ offset="0.0000000"
+ id="stop5569" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop5571" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5573">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop5575" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop5577" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5579"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5182"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ id="linearGradient5176">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop5178" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop5180" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5170">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.50000000;"
+ offset="0.0000000"
+ id="stop5172" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop5174" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5168"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ x1="233.88673"
+ y1="142.78372"
+ x2="159.43488"
+ y2="209.56096"
+ id="linearGradient5166"
+ xlink:href="#linearGradient3920"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="233.88673"
+ y1="142.78372"
+ x2="159.43488"
+ y2="209.56096"
+ id="linearGradient5164"
+ xlink:href="#linearGradient3920"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5162"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ <linearGradient
+ id="linearGradient5156">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.50000000;"
+ offset="0.0000000"
+ id="stop5158" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.0000000;"
+ offset="1.0000000"
+ id="stop5160" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5150">
+ <stop
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop5152" />
+ <stop
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop5154" />
+ </linearGradient>
+ <linearGradient
+ x1="2.0000000"
+ y1="63.099518"
+ x2="109.00000"
+ y2="128.69501"
+ id="linearGradient5238"
+ xlink:href="#linearGradient2060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.000000,-1.000000)" />
+ </defs>
+ <g
+ id="layer1"
+ inkscape:groupmode="layer"
+ inkscape:label="Layer 1">
+ <g
+ id="g5630">
+ <path
+ id="rect1306"
+ d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+ style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+ </g>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="g5495"
+ transform="translate(-448.5000,-231.5000)" />
+ </g>
+ <path
+ d="M 20.843790,28.575298 C 19.647625,28.575313 18.728360,28.970486 18.085991,29.760820 C 17.443604,30.551178 17.122415,31.683114 17.122423,33.156632 C 17.122415,34.630168 17.443604,35.762104 18.085991,36.552445 C 18.728360,37.329401 19.647625,37.717876 20.843790,37.717872 C 22.028856,37.717876 22.937046,37.329401 23.568363,36.552445 C 24.199651,35.762104 24.515303,34.630168 24.515318,33.156632 C 24.515303,31.669719 24.199651,30.537782 23.568363,29.760820 C 22.937046,28.970486 22.028856,28.575313 20.843790,28.575298 M 16.175468,26.023415 C 14.669194,25.474208 13.533957,24.630279 12.769752,23.491626 C 12.005539,22.353010 11.623435,20.933067 11.623437,19.231790 C 11.623435,16.700025 12.404257,14.771046 13.965906,13.444842 C 15.527544,12.118697 17.820170,11.455610 20.843790,11.455579 C 23.845236,11.455610 26.126786,12.118697 27.688449,13.444842 C 29.250073,14.757649 30.030896,16.686630 30.030917,19.231790 C 30.030896,20.933067 29.643253,22.353010 28.867990,23.491626 C 28.103761,24.630279 26.968523,25.474208 25.462274,26.023415 C 27.145731,26.586051 28.413875,27.503656 29.266707,28.776235 C 30.130575,30.035443 30.562519,31.629531 30.562541,33.558503 C 30.562519,36.532356 29.742933,38.782835 28.103780,40.309942 C 26.475664,41.823658 24.055670,42.580515 20.843790,42.580515 C 17.620811,42.580515 15.184204,41.823658 13.533961,40.309942 C 11.894784,38.782835 11.075198,36.532356 11.075200,33.558503 C 11.075198,31.629531 11.501604,30.035443 12.354420,28.776235 C 13.218305,27.503656 14.491986,26.586051 16.175468,26.023415 M 17.670660,20.015439 C 17.670651,21.207679 17.942001,22.125283 18.484709,22.768258 C 19.038474,23.411271 19.824834,23.732767 20.843790,23.732749 C 21.840573,23.732767 22.610319,23.411271 23.153032,22.768258 C 23.695717,22.125283 23.967066,21.207679 23.967081,20.015439 C 23.967066,18.823244 23.695717,17.912336 23.153032,17.282713 C 22.610319,16.639745 21.840573,16.318249 20.843790,16.318222 C 19.824834,16.318249 19.038474,16.639745 18.484709,17.282713 C 17.942001,17.925732 17.670651,18.836639 17.670660,20.015439"
+ style="font-size:37.418461;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ id="text1386" />
+ <g
+ transform="matrix(0.286388,0.000000,0.000000,0.388772,-29.60833,-9.472414)"
+ style="fill:#ff0000;fill-opacity:1.0000000"
+ id="g1390">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path1392" />
+ </g>
+ <path
+ d="M 118.02167,160.42463 C 119.21783,160.42462 120.13709,160.02944 120.77946,159.23910 C 121.42184,158.44876 121.74304,157.31682 121.74303,155.84330 C 121.74304,154.36976 121.42184,153.23782 120.77946,152.44749 C 120.13709,151.67052 119.21783,151.28205 118.02167,151.28205 C 116.83660,151.28205 115.92841,151.67052 115.29709,152.44749 C 114.66580,153.23782 114.35015,154.36976 114.35013,155.84330 C 114.35015,157.33021 114.66580,158.46215 115.29709,159.23910 C 115.92841,160.02944 116.83660,160.42462 118.02167,160.42463 M 122.68998,162.97651 C 124.19626,163.52572 125.33149,164.36965 126.09570,165.50830 C 126.85991,166.64692 127.24201,168.06686 127.24201,169.76814 C 127.24201,172.29990 126.46119,174.22889 124.89955,175.55509 C 123.33791,176.88123 121.04528,177.54431 118.02167,177.54435 C 115.02022,177.54431 112.73867,176.88123 111.17700,175.55509 C 109.61538,174.24228 108.83455,172.31330 108.83454,169.76814 C 108.83455,168.06686 109.22220,166.64692 109.99746,165.50830 C 110.76170,164.36965 111.89692,163.52572 113.40318,162.97651 C 111.71972,162.41388 110.45158,161.49627 109.59874,160.22369 C 108.73488,158.96448 108.30293,157.37040 108.30292,155.44143 C 108.30293,152.46757 109.12252,150.21709 110.76168,148.68999 C 112.38979,147.17627 114.80978,146.41942 118.02167,146.41942 C 121.24464,146.41942 123.68125,147.17627 125.33149,148.68999 C 126.97067,150.21709 127.79026,152.46757 127.79026,155.44143 C 127.79026,157.37040 127.36385,158.96448 126.51103,160.22369 C 125.64715,161.49627 124.37347,162.41388 122.68998,162.97651 M 121.19480,168.98449 C 121.19480,167.79225 120.92345,166.87465 120.38074,166.23167 C 119.82698,165.58866 119.04062,165.26716 118.02167,165.26717 C 117.02488,165.26716 116.25513,165.58866 115.71242,166.23167 C 115.16974,166.87465 114.89838,167.79225 114.89837,168.98449 C 114.89838,170.17668 115.16974,171.08760 115.71242,171.71721 C 116.25513,172.36018 117.02488,172.68168 118.02167,172.68171 C 119.04062,172.68168 119.82698,172.36018 120.38074,171.71721 C 120.92345,171.07419 121.19480,170.16329 121.19480,168.98449"
+ style="font-size:37.418461;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ id="text15077" />
+ <g
+ transform="matrix(-0.286388,0.000000,0.000000,-0.388772,168.4700,198.3135)"
+ style="fill:#ff0000;fill-opacity:1.0000000"
+ id="g15081">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path15083" />
+ </g>
+ <g
+ id="g5202">
+ <g
+ transform="translate(351.5000,184.5000)"
+ id="g5581" />
+ </g>
+ <g
+ transform="matrix(0.166355,0.000000,0.000000,0.229660,19.05389,5.772344)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g1861">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path1863" />
+ </g>
+ <g
+ transform="matrix(0.166355,0.000000,0.000000,0.229660,58.05389,5.552379)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5250">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5252" />
+ </g>
+ <g
+ transform="matrix(0.166355,0.000000,0.000000,0.229660,19.69390,36.77234)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5254">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5256" />
+ </g>
+ <g
+ transform="matrix(0.166355,0.000000,0.000000,0.229660,59.05389,35.77234)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5258">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5260" />
+ </g>
+ <g
+ transform="matrix(-0.166355,0.000000,0.000000,-0.229660,78.30610,154.2277)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5262">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5264" />
+ </g>
+ <g
+ transform="matrix(-0.166355,0.000000,0.000000,-0.229660,78.94611,181.2277)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5266">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5268" />
+ </g>
+ <g
+ transform="matrix(-0.166355,0.000000,0.000000,-0.229660,116.3061,181.2277)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5270">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5272" />
+ </g>
+ <g
+ transform="matrix(-0.166355,0.000000,0.000000,-0.229660,117.9461,153.4476)"
+ style="fill-opacity:1.0000000;fill:#ff0000"
+ id="g5274">
+ <path
+ d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+ transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ id="path5276" />
+ </g>
+
+
+
+ <metadata>
+ <rdf:RDF
+ xmlns="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <Work rdf:about="">
+ <dc:title>card</dc:title>
+ <dc:description></dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>white</rdf:li>
+ <rdf:li>card</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:publisher>
+ <Agent>
+ <dc:title></dc:title>
+ </Agent>
+ </dc:publisher>
+ <dc:creator>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:creator>
+ <dc:rights>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:rights>
+ <dc:date></dc:date>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+ <dc:language>en</dc:language>
+ </Work>
+
+ <License rdf:about="http://web.resource.org/cc/PublicDomain">
+ <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+ <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ </License>
+
+ </rdf:RDF>
+ </metadata>
+</svg>
diff --git a/svg/s8.svg b/svg/s8.svg
index b31543f..d345080 100644
--- a/svg/s8.svg
+++ b/svg/s8.svg
@@ -1,396 +1,396 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- id="svg2"
- height="190.00000"
- width="140.00000"
- y="0.0000000"
- x="0.0000000"
- preserveAspectRatio="xMinYMin meet"
- viewBox="0 0 140 190"
- version="1.0"
- sodipodi:version="0.32"
- inkscape:version="0.41+cvs"
- sodipodi:docname="white_s_8.svg"
- sodipodi:docbase="/home/nicu/Desktop/card_nicu_buculei_01.zip_FILES/cards/white">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:window-width="1152"
- inkscape:window-height="791"
- inkscape:zoom="1.0000000"
- inkscape:cx="70.000000"
- inkscape:cy="95.000000"
- inkscape:window-x="0"
- inkscape:window-y="26"
- inkscape:current-layer="svg2" />
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient3920">
- <stop
- id="stop3922"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop3924"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2060">
- <stop
- id="stop2062"
- offset="0.0000000"
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
- <stop
- id="stop2064"
- offset="1.0000000"
- style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient1575">
- <stop
- id="stop1576"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.50000000;" />
- <stop
- id="stop1577"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient4853"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3920"
- id="linearGradient3926"
- y2="209.56096"
- x2="159.43488"
- y1="142.78372"
- x1="233.88673" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3920"
- id="linearGradient1368"
- y2="209.56096"
- x2="159.43488"
- y1="142.78372"
- x1="233.88673" />
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient1366"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- <linearGradient
- id="linearGradient1360">
- <stop
- id="stop1362"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.50000000;" />
- <stop
- id="stop1364"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient1354">
- <stop
- id="stop1356"
- offset="0.0000000"
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
- <stop
- id="stop1358"
- offset="1.0000000"
- style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient1398"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient5579"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- <linearGradient
- id="linearGradient5573">
- <stop
- id="stop5575"
- offset="0.0000000"
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
- <stop
- id="stop5577"
- offset="1.0000000"
- style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5567">
- <stop
- id="stop5569"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.50000000;" />
- <stop
- id="stop5571"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient5565"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3920"
- id="linearGradient5563"
- y2="209.56096"
- x2="159.43488"
- y1="142.78372"
- x1="233.88673" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3920"
- id="linearGradient5561"
- y2="209.56096"
- x2="159.43488"
- y1="142.78372"
- x1="233.88673" />
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient5559"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- <linearGradient
- id="linearGradient5553">
- <stop
- id="stop5555"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.50000000;" />
- <stop
- id="stop5557"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5547">
- <stop
- id="stop5549"
- offset="0.0000000"
- style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
- <stop
- id="stop5551"
- offset="1.0000000"
- style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(0.000000,-1.000000)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2060"
- id="linearGradient5619"
- y2="128.69501"
- x2="109.00000"
- y1="63.099518"
- x1="2.0000000" />
- </defs>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <g
- id="g5630">
- <path
- style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
- d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
- id="rect1306" />
- </g>
- <g
- transform="translate(-448.5000,-231.5000)"
- id="g5495"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1" />
- </g>
- <g
- id="g1720"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(0.593136,0.000000,0.000000,0.238935,-105.4057,0.481054)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1722"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1733"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(0.593136,0.000000,0.000000,0.238935,-64.26963,0.398840)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1735"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1737"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(0.593136,0.000000,0.000000,0.238935,-105.9338,35.65834)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1739"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1741"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(0.593136,0.000000,0.000000,0.238935,-65.97313,34.48302)">
- <path
- id="path1743"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 C 259.69522,201.71931 259.49057,224.93251 258.88602,226.30607 C 257.55965,229.31954 255.87955,229.08720 255.87955,229.08720 L 255.91411,232.36832 L 264.69161,232.27457 L 264.72617,229.02470 C 264.72617,229.02470 263.05759,229.22580 261.73122,226.21232 C 261.12658,224.83857 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1745"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(-0.593136,0.000000,0.000000,-0.238935,202.5319,155.1307)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1747"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1749"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(-0.593136,0.000000,0.000000,-0.238935,244.1962,155.2129)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1751"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1757"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(-0.593136,0.000000,0.000000,-0.238935,244.8433,185.7711)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1759"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <g
- id="g1761"
- style="stroke-opacity:1.0000000;stroke:none"
- transform="matrix(-0.593136,0.000000,0.000000,-0.238935,203.7073,185.7711)">
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path1763"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
- d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
- </g>
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path5596"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.48046079;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 20.644539,48.665000 C 15.720220,56.489660 0.60988027,69.814120 10.182240,73.927920 C 15.992770,75.821660 18.757920,71.945080 19.929069,69.378560 L 20.163649,69.378560 L 16.304800,82.325000 L 25.242329,82.286872 C 25.242329,82.286872 21.392229,69.842020 21.383469,69.365860 L 21.477309,69.365860 C 22.423249,71.463040 26.012729,75.804530 29.961289,74.151140 C 41.507139,69.516250 24.505589,56.327260 20.644539,48.665000 z " />
- <path
- id="text1488"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- d="M 20.603697,28.815555 C 19.407536,28.815566 18.488270,29.210746 17.845899,30.001072 C 17.203518,30.791431 16.882324,31.923368 16.882333,33.396892 C 16.882324,34.870427 17.203518,36.002363 17.845899,36.792700 C 18.488270,37.569653 19.407536,37.958136 20.603697,37.958125 C 21.788764,37.958136 22.696955,37.569653 23.328269,36.792700 C 23.959556,36.002363 24.275214,34.870427 24.275232,33.396892 C 24.275214,31.909972 23.959556,30.778036 23.328269,30.001072 C 22.696955,29.210746 21.788764,28.815566 20.603697,28.815555 M 15.935379,26.263676 C 14.429108,25.714473 13.293869,24.870544 12.529663,23.731889 C 11.765457,22.593277 11.383350,21.173333 11.383350,19.472047 C 11.383350,16.940293 12.164168,15.011311 13.725815,13.685112 C 15.287461,12.358968 17.580079,11.695874 20.603697,11.695841 C 23.605146,11.695874 25.886698,12.358968 27.448353,13.685112 C 29.009981,14.997916 29.790800,16.926898 29.790827,19.472047 C 29.790800,21.173333 29.403164,22.593277 28.627901,23.731889 C 27.863668,24.870544 26.728429,25.714473 25.222185,26.263676 C 26.905639,26.826306 28.173778,27.743919 29.026612,29.016494 C 29.890485,30.275706 30.322430,31.869787 30.322448,33.798758 C 30.322430,36.772608 29.502840,39.023085 27.863686,40.550201 C 26.235571,42.063910 23.815581,42.820771 20.603697,42.820771 C 17.380719,42.820771 14.944116,42.063910 13.293879,40.550201 C 11.654698,39.023085 10.835116,36.772608 10.835116,33.798758 C 10.835116,31.869787 11.261515,30.275706 12.114331,29.016494 C 12.978221,27.743919 14.251898,26.826306 15.935379,26.263676 M 17.430575,20.255698 C 17.430566,21.447945 17.701914,22.365548 18.244619,23.008516 C 18.798381,23.651529 19.584746,23.973024 20.603697,23.973013 C 21.600479,23.973024 22.370231,23.651529 22.912946,23.008516 C 23.455623,22.365548 23.726971,21.447945 23.726989,20.255698 C 23.726971,19.063505 23.455623,18.152601 22.912946,17.522972 C 22.370231,16.880004 21.600479,16.558509 20.603697,16.558487 C 19.584746,16.558509 18.798381,16.880004 18.244619,17.522972 C 17.701914,18.165996 17.430566,19.076901 17.430575,20.255698" />
- <path
- sodipodi:nodetypes="cccccccccc"
- id="path19034"
- style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.48046079;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 117.98526,140.00000 C 122.90958,132.17534 138.01992,118.85088 128.44756,114.73708 C 122.63703,112.84333 119.87188,116.71992 118.70073,119.28644 L 118.46615,119.28644 L 122.32500,106.34000 L 113.38747,106.37813 C 113.38747,106.37813 117.23757,118.82298 117.24633,119.29914 L 117.15250,119.29914 C 116.20655,117.20196 112.61706,112.86047 108.66851,114.51386 C 97.122660,119.14875 114.12421,132.33774 117.98526,140.00000 z " />
- <path
- id="text19036"
- style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
- d="M 118.02631,160.35031 C 119.22247,160.35030 120.14173,159.95512 120.78410,159.16479 C 121.42649,158.37443 121.74768,157.24250 121.74767,155.76898 C 121.74768,154.29544 121.42649,153.16351 120.78410,152.37317 C 120.14173,151.59621 119.22247,151.20774 118.02631,151.20774 C 116.84124,151.20774 115.93305,151.59621 115.30173,152.37317 C 114.67045,153.16351 114.35479,154.29544 114.35478,155.76898 C 114.35479,157.25589 114.67045,158.38783 115.30173,159.16479 C 115.93305,159.95512 116.84124,160.35030 118.02631,160.35031 M 122.69462,162.90219 C 124.20090,163.45140 125.33613,164.29533 126.10034,165.43398 C 126.86456,166.57260 127.24665,167.99254 127.24665,169.69382 C 127.24665,172.22558 126.46584,174.15456 124.90419,175.48076 C 123.34255,176.80691 121.04992,177.46999 118.02631,177.47002 C 115.02486,177.46999 112.74331,176.80691 111.18165,175.48076 C 109.62002,174.16796 108.83920,172.23897 108.83919,169.69382 C 108.83920,167.99254 109.22684,166.57260 110.00211,165.43398 C 110.76634,164.29533 111.90157,163.45140 113.40782,162.90219 C 111.72436,162.33956 110.45623,161.42195 109.60339,160.14938 C 108.73952,158.89017 108.30758,157.29608 108.30756,155.36711 C 108.30758,152.39326 109.12716,150.14278 110.76632,148.61567 C 112.39443,147.10196 114.81442,146.34510 118.02631,146.34510 C 121.24928,146.34510 123.68589,147.10196 125.33613,148.61567 C 126.97531,150.14278 127.79490,152.39326 127.79489,155.36711 C 127.79490,157.29608 127.36849,158.89017 126.51567,160.14938 C 125.65178,161.42195 124.37811,162.33956 122.69462,162.90219 M 121.19943,168.91017 C 121.19944,167.71793 120.92809,166.80032 120.38538,166.15735 C 119.83162,165.51434 119.04526,165.19284 118.02631,165.19286 C 117.02952,165.19284 116.25977,165.51434 115.71707,166.15735 C 115.17438,166.80032 114.90303,167.71793 114.90301,168.91017 C 114.90303,170.10236 115.17438,171.01327 115.71707,171.64289 C 116.25977,172.28586 117.02952,172.60736 118.02631,172.60738 C 119.04526,172.60736 119.83162,172.28586 120.38538,171.64289 C 120.92809,170.99987 121.19944,170.08897 121.19943,168.91017" />
-
-
- <metadata>
- <rdf:RDF
- xmlns="http://web.resource.org/cc/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <Work rdf:about="">
- <dc:title>card</dc:title>
- <dc:description></dc:description>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>white</rdf:li>
- <rdf:li>card</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:publisher>
- <Agent>
- <dc:title></dc:title>
- </Agent>
- </dc:publisher>
- <dc:creator>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:creator>
- <dc:rights>
- <Agent>
- <dc:title>Nicu Buculei</dc:title>
- </Agent>
- </dc:rights>
- <dc:date></dc:date>
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
- <dc:language>en</dc:language>
- </Work>
-
- <License rdf:about="http://web.resource.org/cc/PublicDomain">
- <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
- <permits rdf:resource="http://web.resource.org/cc/Distribution" />
- <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- </License>
-
- </rdf:RDF>
- </metadata>
-</svg>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ height="190.00000"
+ width="140.00000"
+ y="0.0000000"
+ x="0.0000000"
+ preserveAspectRatio="xMinYMin meet"
+ viewBox="0 0 140 190"
+ version="1.0"
+ sodipodi:version="0.32"
+ inkscape:version="0.41+cvs"
+ sodipodi:docname="white_s_8.svg"
+ sodipodi:docbase="/home/nicu/Desktop/card_nicu_buculei_01.zip_FILES/cards/white">
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1152"
+ inkscape:window-height="791"
+ inkscape:zoom="1.0000000"
+ inkscape:cx="70.000000"
+ inkscape:cy="95.000000"
+ inkscape:window-x="0"
+ inkscape:window-y="26"
+ inkscape:current-layer="svg2" />
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient3920">
+ <stop
+ id="stop3922"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop3924"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2060">
+ <stop
+ id="stop2062"
+ offset="0.0000000"
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
+ <stop
+ id="stop2064"
+ offset="1.0000000"
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1575">
+ <stop
+ id="stop1576"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.50000000;" />
+ <stop
+ id="stop1577"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient4853"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3920"
+ id="linearGradient3926"
+ y2="209.56096"
+ x2="159.43488"
+ y1="142.78372"
+ x1="233.88673" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3920"
+ id="linearGradient1368"
+ y2="209.56096"
+ x2="159.43488"
+ y1="142.78372"
+ x1="233.88673" />
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient1366"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ <linearGradient
+ id="linearGradient1360">
+ <stop
+ id="stop1362"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.50000000;" />
+ <stop
+ id="stop1364"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1354">
+ <stop
+ id="stop1356"
+ offset="0.0000000"
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
+ <stop
+ id="stop1358"
+ offset="1.0000000"
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient1398"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient5579"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ <linearGradient
+ id="linearGradient5573">
+ <stop
+ id="stop5575"
+ offset="0.0000000"
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
+ <stop
+ id="stop5577"
+ offset="1.0000000"
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5567">
+ <stop
+ id="stop5569"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.50000000;" />
+ <stop
+ id="stop5571"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient5565"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3920"
+ id="linearGradient5563"
+ y2="209.56096"
+ x2="159.43488"
+ y1="142.78372"
+ x1="233.88673" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3920"
+ id="linearGradient5561"
+ y2="209.56096"
+ x2="159.43488"
+ y1="142.78372"
+ x1="233.88673" />
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient5559"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ <linearGradient
+ id="linearGradient5553">
+ <stop
+ id="stop5555"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.50000000;" />
+ <stop
+ id="stop5557"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5547">
+ <stop
+ id="stop5549"
+ offset="0.0000000"
+ style="stop-color:#ebf0d0;stop-opacity:1.0000000;" />
+ <stop
+ id="stop5551"
+ offset="1.0000000"
+ style="stop-color:#ffffeb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.000000,-1.000000)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2060"
+ id="linearGradient5619"
+ y2="128.69501"
+ x2="109.00000"
+ y1="63.099518"
+ x1="2.0000000" />
+ </defs>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g5630">
+ <path
+ style="fill:#ffffff;fill-opacity:1.0000000;stroke:black;stroke-width:0.70000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+ d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+ id="rect1306" />
+ </g>
+ <g
+ transform="translate(-448.5000,-231.5000)"
+ id="g5495"
+ inkscape:groupmode="layer"
+ inkscape:label="Layer 1" />
+ </g>
+ <g
+ id="g1720"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(0.593136,0.000000,0.000000,0.238935,-105.4057,0.481054)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1722"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1733"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(0.593136,0.000000,0.000000,0.238935,-64.26963,0.398840)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1735"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1737"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(0.593136,0.000000,0.000000,0.238935,-105.9338,35.65834)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1739"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1741"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(0.593136,0.000000,0.000000,0.238935,-65.97313,34.48302)">
+ <path
+ id="path1743"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 C 259.69522,201.71931 259.49057,224.93251 258.88602,226.30607 C 257.55965,229.31954 255.87955,229.08720 255.87955,229.08720 L 255.91411,232.36832 L 264.69161,232.27457 L 264.72617,229.02470 C 264.72617,229.02470 263.05759,229.22580 261.73122,226.21232 C 261.12658,224.83857 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1745"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(-0.593136,0.000000,0.000000,-0.238935,202.5319,155.1307)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1747"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1749"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(-0.593136,0.000000,0.000000,-0.238935,244.1962,155.2129)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1751"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1757"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(-0.593136,0.000000,0.000000,-0.238935,244.8433,185.7711)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1759"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <g
+ id="g1761"
+ style="stroke-opacity:1.0000000;stroke:none"
+ transform="matrix(-0.593136,0.000000,0.000000,-0.238935,203.7073,185.7711)">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path1763"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:0.75889903;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000"
+ d="M 260.17615,149.59720 C 255.34000,168.83832 240.50022,201.60363 249.90118,211.71962 C 255.60767,216.37640 258.32331,206.84375 259.47349,200.53259 L 259.70387,200.53259 L 255.91411,232.36832 L 264.69161,232.27457 C 264.69161,232.27457 260.91045,201.67223 260.90185,200.50134 L 260.99400,200.50134 C 261.92301,205.65839 265.44822,216.33425 269.32607,212.26849 C 280.66519,200.87117 263.96806,168.43896 260.17615,149.59720 z " />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path5596"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.48046079;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ d="M 20.644539,48.665000 C 15.720220,56.489660 0.60988027,69.814120 10.182240,73.927920 C 15.992770,75.821660 18.757920,71.945080 19.929069,69.378560 L 20.163649,69.378560 L 16.304800,82.325000 L 25.242329,82.286872 C 25.242329,82.286872 21.392229,69.842020 21.383469,69.365860 L 21.477309,69.365860 C 22.423249,71.463040 26.012729,75.804530 29.961289,74.151140 C 41.507139,69.516250 24.505589,56.327260 20.644539,48.665000 z " />
+ <path
+ id="text1488"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ d="M 20.603697,28.815555 C 19.407536,28.815566 18.488270,29.210746 17.845899,30.001072 C 17.203518,30.791431 16.882324,31.923368 16.882333,33.396892 C 16.882324,34.870427 17.203518,36.002363 17.845899,36.792700 C 18.488270,37.569653 19.407536,37.958136 20.603697,37.958125 C 21.788764,37.958136 22.696955,37.569653 23.328269,36.792700 C 23.959556,36.002363 24.275214,34.870427 24.275232,33.396892 C 24.275214,31.909972 23.959556,30.778036 23.328269,30.001072 C 22.696955,29.210746 21.788764,28.815566 20.603697,28.815555 M 15.935379,26.263676 C 14.429108,25.714473 13.293869,24.870544 12.529663,23.731889 C 11.765457,22.593277 11.383350,21.173333 11.383350,19.472047 C 11.383350,16.940293 12.164168,15.011311 13.725815,13.685112 C 15.287461,12.358968 17.580079,11.695874 20.603697,11.695841 C 23.605146,11.695874 25.886698,12.358968 27.448353,13.685112 C 29.009981,14.997916 29.790800,16.926898 29.790827,19.472047 C 29.790800,21.173333 29.403164,22.593277 28.627901,23.731889 C 27.863668,24.870544 26.728429,25.714473 25.222185,26.263676 C 26.905639,26.826306 28.173778,27.743919 29.026612,29.016494 C 29.890485,30.275706 30.322430,31.869787 30.322448,33.798758 C 30.322430,36.772608 29.502840,39.023085 27.863686,40.550201 C 26.235571,42.063910 23.815581,42.820771 20.603697,42.820771 C 17.380719,42.820771 14.944116,42.063910 13.293879,40.550201 C 11.654698,39.023085 10.835116,36.772608 10.835116,33.798758 C 10.835116,31.869787 11.261515,30.275706 12.114331,29.016494 C 12.978221,27.743919 14.251898,26.826306 15.935379,26.263676 M 17.430575,20.255698 C 17.430566,21.447945 17.701914,22.365548 18.244619,23.008516 C 18.798381,23.651529 19.584746,23.973024 20.603697,23.973013 C 21.600479,23.973024 22.370231,23.651529 22.912946,23.008516 C 23.455623,22.365548 23.726971,21.447945 23.726989,20.255698 C 23.726971,19.063505 23.455623,18.152601 22.912946,17.522972 C 22.370231,16.880004 21.600479,16.558509 20.603697,16.558487 C 19.584746,16.558509 18.798381,16.880004 18.244619,17.522972 C 17.701914,18.165996 17.430566,19.076901 17.430575,20.255698" />
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="path19034"
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.48046079;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+ d="M 117.98526,140.00000 C 122.90958,132.17534 138.01992,118.85088 128.44756,114.73708 C 122.63703,112.84333 119.87188,116.71992 118.70073,119.28644 L 118.46615,119.28644 L 122.32500,106.34000 L 113.38747,106.37813 C 113.38747,106.37813 117.23757,118.82298 117.24633,119.29914 L 117.15250,119.29914 C 116.20655,117.20196 112.61706,112.86047 108.66851,114.51386 C 97.122660,119.14875 114.12421,132.33774 117.98526,140.00000 z " />
+ <path
+ id="text19036"
+ style="font-size:37.418446;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+ d="M 118.02631,160.35031 C 119.22247,160.35030 120.14173,159.95512 120.78410,159.16479 C 121.42649,158.37443 121.74768,157.24250 121.74767,155.76898 C 121.74768,154.29544 121.42649,153.16351 120.78410,152.37317 C 120.14173,151.59621 119.22247,151.20774 118.02631,151.20774 C 116.84124,151.20774 115.93305,151.59621 115.30173,152.37317 C 114.67045,153.16351 114.35479,154.29544 114.35478,155.76898 C 114.35479,157.25589 114.67045,158.38783 115.30173,159.16479 C 115.93305,159.95512 116.84124,160.35030 118.02631,160.35031 M 122.69462,162.90219 C 124.20090,163.45140 125.33613,164.29533 126.10034,165.43398 C 126.86456,166.57260 127.24665,167.99254 127.24665,169.69382 C 127.24665,172.22558 126.46584,174.15456 124.90419,175.48076 C 123.34255,176.80691 121.04992,177.46999 118.02631,177.47002 C 115.02486,177.46999 112.74331,176.80691 111.18165,175.48076 C 109.62002,174.16796 108.83920,172.23897 108.83919,169.69382 C 108.83920,167.99254 109.22684,166.57260 110.00211,165.43398 C 110.76634,164.29533 111.90157,163.45140 113.40782,162.90219 C 111.72436,162.33956 110.45623,161.42195 109.60339,160.14938 C 108.73952,158.89017 108.30758,157.29608 108.30756,155.36711 C 108.30758,152.39326 109.12716,150.14278 110.76632,148.61567 C 112.39443,147.10196 114.81442,146.34510 118.02631,146.34510 C 121.24928,146.34510 123.68589,147.10196 125.33613,148.61567 C 126.97531,150.14278 127.79490,152.39326 127.79489,155.36711 C 127.79490,157.29608 127.36849,158.89017 126.51567,160.14938 C 125.65178,161.42195 124.37811,162.33956 122.69462,162.90219 M 121.19943,168.91017 C 121.19944,167.71793 120.92809,166.80032 120.38538,166.15735 C 119.83162,165.51434 119.04526,165.19284 118.02631,165.19286 C 117.02952,165.19284 116.25977,165.51434 115.71707,166.15735 C 115.17438,166.80032 114.90303,167.71793 114.90301,168.91017 C 114.90303,170.10236 115.17438,171.01327 115.71707,171.64289 C 116.25977,172.28586 117.02952,172.60736 118.02631,172.60738 C 119.04526,172.60736 119.83162,172.28586 120.38538,171.64289 C 120.92809,170.99987 121.19944,170.08897 121.19943,168.91017" />
+
+
+ <metadata>
+ <rdf:RDF
+ xmlns="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <Work rdf:about="">
+ <dc:title>card</dc:title>
+ <dc:description></dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>white</rdf:li>
+ <rdf:li>card</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:publisher>
+ <Agent>
+ <dc:title></dc:title>
+ </Agent>
+ </dc:publisher>
+ <dc:creator>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:creator>
+ <dc:rights>
+ <Agent>
+ <dc:title>Nicu Buculei</dc:title>
+ </Agent>
+ </dc:rights>
+ <dc:date></dc:date>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+ <dc:language>en</dc:language>
+ </Work>
+
+ <License rdf:about="http://web.resource.org/cc/PublicDomain">
+ <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+ <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ </License>
+
+ </rdf:RDF>
+ </metadata>
+</svg>