rroonga 0.9.2-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +5 -0
- data/NEWS.ja.rdoc +114 -0
- data/NEWS.rdoc +116 -0
- data/README.ja.rdoc +65 -0
- data/README.rdoc +66 -0
- data/Rakefile +217 -0
- data/benchmark/common.rb +49 -0
- data/benchmark/read-write-many-small-items.rb +144 -0
- data/benchmark/write-many-small-items.rb +135 -0
- data/example/bookmark.rb +161 -0
- data/example/index-html.rb +89 -0
- data/example/search/config.ru +211 -0
- data/example/search/public/css/groonga.css +122 -0
- data/ext/.gitignore +2 -0
- data/ext/libruby-groonga.a +0 -0
- data/ext/rb-grn-accessor.c +52 -0
- data/ext/rb-grn-array-cursor.c +36 -0
- data/ext/rb-grn-array.c +210 -0
- data/ext/rb-grn-column.c +573 -0
- data/ext/rb-grn-context.c +655 -0
- data/ext/rb-grn-database.c +472 -0
- data/ext/rb-grn-encoding-support.c +64 -0
- data/ext/rb-grn-encoding.c +257 -0
- data/ext/rb-grn-exception.c +1110 -0
- data/ext/rb-grn-expression-builder.c +75 -0
- data/ext/rb-grn-expression.c +735 -0
- data/ext/rb-grn-fix-size-column.c +166 -0
- data/ext/rb-grn-hash-cursor.c +38 -0
- data/ext/rb-grn-hash.c +294 -0
- data/ext/rb-grn-index-column.c +488 -0
- data/ext/rb-grn-logger.c +504 -0
- data/ext/rb-grn-object.c +1369 -0
- data/ext/rb-grn-operation.c +198 -0
- data/ext/rb-grn-patricia-trie-cursor.c +39 -0
- data/ext/rb-grn-patricia-trie.c +488 -0
- data/ext/rb-grn-procedure.c +52 -0
- data/ext/rb-grn-query.c +260 -0
- data/ext/rb-grn-record.c +40 -0
- data/ext/rb-grn-snippet.c +334 -0
- data/ext/rb-grn-table-cursor-key-support.c +69 -0
- data/ext/rb-grn-table-cursor.c +247 -0
- data/ext/rb-grn-table-key-support.c +731 -0
- data/ext/rb-grn-table.c +2141 -0
- data/ext/rb-grn-type.c +181 -0
- data/ext/rb-grn-utils.c +769 -0
- data/ext/rb-grn-variable-size-column.c +36 -0
- data/ext/rb-grn-variable.c +108 -0
- data/ext/rb-grn-view-accessor.c +53 -0
- data/ext/rb-grn-view-cursor.c +35 -0
- data/ext/rb-grn-view-record.c +41 -0
- data/ext/rb-grn-view.c +421 -0
- data/ext/rb-grn.h +700 -0
- data/ext/rb-groonga.c +117 -0
- data/extconf.rb +266 -0
- data/html/bar.svg +153 -0
- data/html/developer.html +117 -0
- data/html/developer.svg +469 -0
- data/html/download.svg +253 -0
- data/html/favicon.ico +0 -0
- data/html/favicon.xcf +0 -0
- data/html/footer.html.erb +28 -0
- data/html/head.html.erb +4 -0
- data/html/header.html.erb +17 -0
- data/html/index.html +147 -0
- data/html/install.svg +636 -0
- data/html/logo.xcf +0 -0
- data/html/ranguba.css +250 -0
- data/html/tutorial.svg +559 -0
- data/lib/groonga.rb +90 -0
- data/lib/groonga/context.rb +184 -0
- data/lib/groonga/expression-builder.rb +285 -0
- data/lib/groonga/patricia-trie.rb +53 -0
- data/lib/groonga/record.rb +311 -0
- data/lib/groonga/schema.rb +1191 -0
- data/lib/groonga/view-record.rb +56 -0
- data/license/GPL +340 -0
- data/license/LGPL +504 -0
- data/license/RUBY +59 -0
- data/misc/grnop2ruby.rb +49 -0
- data/pkg-config.rb +333 -0
- data/test-unit/Rakefile +40 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/classic.html +15 -0
- data/test-unit/html/index.html +25 -0
- data/test-unit/html/index.html.ja +27 -0
- data/test-unit/lib/test/unit.rb +323 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
- data/test-unit/lib/test/unit/assertions.rb +1230 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +360 -0
- data/test-unit/lib/test/unit/collector.rb +36 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +136 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/color-scheme.rb +102 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +724 -0
- data/test-unit/lib/test/unit/error.rb +130 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +136 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +129 -0
- data/test-unit/lib/test/unit/omission.rb +191 -0
- data/test-unit/lib/test/unit/pending.rb +150 -0
- data/test-unit/lib/test/unit/priority.rb +180 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/runner/tap.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +476 -0
- data/test-unit/lib/test/unit/testresult.rb +89 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +466 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
- data/test-unit/lib/test/unit/ui/tap/testrunner.rb +92 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +28 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +41 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/test_adder.rb +20 -0
- data/test-unit/sample/test_subtracter.rb +20 -0
- data/test-unit/sample/test_user.rb +23 -0
- data/test-unit/test/collector/test-descendant.rb +133 -0
- data/test-unit/test/collector/test-load.rb +348 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +100 -0
- data/test-unit/test/run-test.rb +15 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +67 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +518 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test-testcase.rb +544 -0
- data/test-unit/test/test_assertions.rb +1151 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/test/.gitignore +1 -0
- data/test/groonga-test-utils.rb +133 -0
- data/test/run-test.rb +58 -0
- data/test/test-array.rb +97 -0
- data/test/test-column.rb +316 -0
- data/test/test-context-select.rb +93 -0
- data/test/test-context.rb +73 -0
- data/test/test-database.rb +113 -0
- data/test/test-encoding.rb +33 -0
- data/test/test-exception.rb +93 -0
- data/test/test-expression-builder.rb +156 -0
- data/test/test-expression.rb +134 -0
- data/test/test-fix-size-column.rb +65 -0
- data/test/test-gqtp.rb +72 -0
- data/test/test-hash.rb +312 -0
- data/test/test-index-column.rb +81 -0
- data/test/test-logger.rb +37 -0
- data/test/test-patricia-trie.rb +189 -0
- data/test/test-procedure.rb +37 -0
- data/test/test-query.rb +22 -0
- data/test/test-record.rb +279 -0
- data/test/test-remote.rb +54 -0
- data/test/test-schema-view.rb +90 -0
- data/test/test-schema.rb +459 -0
- data/test/test-snippet.rb +130 -0
- data/test/test-table-cursor.rb +153 -0
- data/test/test-table-offset-and-limit.rb +102 -0
- data/test/test-table-select-normalize.rb +53 -0
- data/test/test-table-select.rb +150 -0
- data/test/test-table.rb +690 -0
- data/test/test-type.rb +71 -0
- data/test/test-variable-size-column.rb +98 -0
- data/test/test-variable.rb +28 -0
- data/test/test-vector-column.rb +76 -0
- data/test/test-version.rb +31 -0
- data/test/test-view.rb +72 -0
- data/text/TUTORIAL.ja.rdoc +392 -0
- data/text/expression.rdoc +284 -0
- data/vendor/local/bin/grntest.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga.dll +0 -0
- data/vendor/local/bin/libmecab.dll +0 -0
- data/vendor/local/include/groonga.h +2285 -0
- data/vendor/local/lib/libgroonga.lib +0 -0
- metadata +280 -0
data/html/developer.html
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
8
|
+
<link rel="stylesheet" href="ranguba.css" type="text/css" />
|
9
|
+
<link rel="shortcut icon" href="/favicon.ico" />
|
10
|
+
<link rel="icon" href="/favicon.png" />
|
11
|
+
<title>開発者向け情報 - ラングバ</title>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
<div class="header">
|
15
|
+
<div class="title">
|
16
|
+
<a href="./">
|
17
|
+
<span class="title">開発者向け情報</span>
|
18
|
+
<span class="title-separator">-</span>
|
19
|
+
<span class="title-project">ラングバ</span>
|
20
|
+
</a>
|
21
|
+
</div>
|
22
|
+
<ul class="menu">
|
23
|
+
<li id="menu-reference"><a href="rroonga/">リファレンスマニュアル</a></li>
|
24
|
+
<li id="menu-tutorial"><a href="rroonga/text/TUTORIAL_ja_rdoc.html">チュートリアル</a></li>
|
25
|
+
<li id="menu-install"><a href="./#install-rroonga">インストール</a></li>
|
26
|
+
<li id="menu-developer"><a href="developer.html">開発者向け情報</a></li>
|
27
|
+
</ul>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div class="content">
|
31
|
+
<div class="main">
|
32
|
+
<h1>開発者向け情報</h1>
|
33
|
+
<p>
|
34
|
+
ラングバプロジェクトはRubyからもっと便利にgroongaを使えるようにするため、開発に参加してくれる人を募集しています。
|
35
|
+
ここでは、開発に必要となる情報を提供します。
|
36
|
+
</p>
|
37
|
+
|
38
|
+
<h2>リポジトリ</h2>
|
39
|
+
<p>
|
40
|
+
rroongaとActiveGroongaのリポジトリはRubyForge上にあります。
|
41
|
+
Subversionを利用しており、それぞれ以下のようにチェックアウトできます。
|
42
|
+
</p>
|
43
|
+
<dl>
|
44
|
+
<dt>rroonga</dt>
|
45
|
+
<dd><pre class="command">% svn co http://groonga.rubyforge.org/svn/rroonga/trunk rroonga</pre></dd>
|
46
|
+
<dt>ActiveGroonga</dt>
|
47
|
+
<dd><pre class="command">% svn co http://groonga.rubyforge.org/svn/activegroonga/trunk activegroonga</pre></dd>
|
48
|
+
</dl>
|
49
|
+
|
50
|
+
<p>
|
51
|
+
rroongaおよびActiveGroongaを利用したサンプルプログラムもリポジトリにあります。
|
52
|
+
サンプルプログラムは以下のようにチェックアウトできます。
|
53
|
+
</p>
|
54
|
+
<pre class="command">% svn co http://groonga.rubyforge.org/svn/examples ranguba-examples</pre>
|
55
|
+
|
56
|
+
<h2>バグ報告・メーリングリスト</h2>
|
57
|
+
<p>
|
58
|
+
バグ報告は<a href="http://lists.sourceforge.jp/mailman/listinfo/groonga-dev">groongaのメーリングリスト</a>または<a href="http://redmine.groonga.org/projects/rroonga/issues/new">Redmine</a>にお願いします。
|
59
|
+
また、疑問点・意見・パッチなどもgroongaのメーリングリストにお願いします。
|
60
|
+
</p>
|
61
|
+
|
62
|
+
<h2>コミットメール</h2>
|
63
|
+
<p>
|
64
|
+
リポジトリにコミットがあるとそのコミットの差分が<a href="http://rubyforge.org/mailman/listinfo/groonga-commit">groonga-commitメーリングリスト</a>に流れます。
|
65
|
+
開発に興味がある場合はgroonga-commitメーリングリストを購読してください。
|
66
|
+
</p>
|
67
|
+
|
68
|
+
<h2>ドキュメント</h2>
|
69
|
+
<p>
|
70
|
+
ドキュメントはソースコード中にRDocで記述しています。
|
71
|
+
生成されたドキュメントはHTMLに変換され、<a href="rroonga/">リファレンスマニュアル</a>で公開されます。
|
72
|
+
</p>
|
73
|
+
<p>
|
74
|
+
いつかは英語と日本語を用意できればよいとは思いますが、とりあえず、現在は日本語のみ用意しています。
|
75
|
+
日本語ドキュメントは直接ソースコード中に記述しています。RDocで多言語に対応したリファレンスマニュアルを作成する仕組みや、英語のドキュメント作成を手伝ってくれる人を募集しています。
|
76
|
+
</p>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div class="sidebar">
|
80
|
+
<ul>
|
81
|
+
<li><a href="http://rubyforge.org/projects/groonga/">プロジェクトページ</a></li>
|
82
|
+
<li>
|
83
|
+
<a href="http://lists.sourceforge.jp/mailman/listinfo/groonga-dev">メーリングリスト</a>
|
84
|
+
(groongaのメーリングリストにお願いします)
|
85
|
+
</li>
|
86
|
+
</ul>
|
87
|
+
</div>
|
88
|
+
</div>
|
89
|
+
|
90
|
+
<div class="sponsors">
|
91
|
+
<p id="sponsor-rubyforge">
|
92
|
+
<a href="http://rubyforge.org/projects/groonga/">
|
93
|
+
<img src="rubyforge.png" width="120" height="24" border="0" alt="ラングバプロジェクトはRubyForge.orgにホスティングしてもらっています。" />
|
94
|
+
</a>
|
95
|
+
</p>
|
96
|
+
<p id="sponsor-tango">
|
97
|
+
<a href="http://tango.freedesktop.org/">
|
98
|
+
<img width="120" height="53" border="0" alt="Tango Desktop Projectのアイコンを利用しています。" src="tango-logo.png" />
|
99
|
+
</a>
|
100
|
+
</p>
|
101
|
+
|
102
|
+
<!-- Piwik -->
|
103
|
+
<a href="http://piwik.org" title="Web analytics" onclick="window.open(this.href);return(false);">
|
104
|
+
<script type="text/javascript">
|
105
|
+
var pkBaseURL = (("https:" == document.location.protocol) ? "https://www.clear-code.com/piwik/" : "http://www.clear-code.com/piwik/");
|
106
|
+
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
107
|
+
</script><script type="text/javascript">
|
108
|
+
piwik_action_name = '';
|
109
|
+
piwik_idsite = 2;
|
110
|
+
piwik_url = pkBaseURL + "piwik.php";
|
111
|
+
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
112
|
+
</script>
|
113
|
+
<object><noscript><p>Web analytics <img src="http://www.clear-code.com/piwik/piwik.php?idsite=2" style="border:0" alt=""/></p></noscript></object></a>
|
114
|
+
<!-- End Piwik Tag -->
|
115
|
+
</div>
|
116
|
+
</body>
|
117
|
+
</html>
|
data/html/developer.svg
ADDED
@@ -0,0 +1,469 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
<svg
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
9
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
inkscape:export-ydpi="90.000000"
|
13
|
+
inkscape:export-xdpi="90.000000"
|
14
|
+
inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
|
15
|
+
width="18"
|
16
|
+
height="18"
|
17
|
+
id="svg11300"
|
18
|
+
sodipodi:version="0.32"
|
19
|
+
inkscape:version="0.46"
|
20
|
+
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/categories"
|
21
|
+
sodipodi:docname="tutorial.svg"
|
22
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
23
|
+
version="1.0">
|
24
|
+
<defs
|
25
|
+
id="defs3">
|
26
|
+
<inkscape:perspective
|
27
|
+
sodipodi:type="inkscape:persp3d"
|
28
|
+
inkscape:vp_x="0 : 24 : 1"
|
29
|
+
inkscape:vp_y="0 : 1000 : 0"
|
30
|
+
inkscape:vp_z="48 : 24 : 1"
|
31
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
32
|
+
id="perspective60" />
|
33
|
+
<linearGradient
|
34
|
+
inkscape:collect="always"
|
35
|
+
id="linearGradient2250">
|
36
|
+
<stop
|
37
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
38
|
+
offset="0"
|
39
|
+
id="stop2252" />
|
40
|
+
<stop
|
41
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
42
|
+
offset="1"
|
43
|
+
id="stop2254" />
|
44
|
+
</linearGradient>
|
45
|
+
<linearGradient
|
46
|
+
inkscape:collect="always"
|
47
|
+
id="linearGradient2265">
|
48
|
+
<stop
|
49
|
+
style="stop-color:#000000;stop-opacity:1;"
|
50
|
+
offset="0"
|
51
|
+
id="stop2267" />
|
52
|
+
<stop
|
53
|
+
style="stop-color:#000000;stop-opacity:0;"
|
54
|
+
offset="1"
|
55
|
+
id="stop2269" />
|
56
|
+
</linearGradient>
|
57
|
+
<linearGradient
|
58
|
+
inkscape:collect="always"
|
59
|
+
id="linearGradient2257">
|
60
|
+
<stop
|
61
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
62
|
+
offset="0"
|
63
|
+
id="stop2259" />
|
64
|
+
<stop
|
65
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
66
|
+
offset="1"
|
67
|
+
id="stop2261" />
|
68
|
+
</linearGradient>
|
69
|
+
<linearGradient
|
70
|
+
id="linearGradient3087">
|
71
|
+
<stop
|
72
|
+
style="stop-color:#3465a4;stop-opacity:1;"
|
73
|
+
offset="0"
|
74
|
+
id="stop3089" />
|
75
|
+
<stop
|
76
|
+
id="stop3095"
|
77
|
+
offset="0"
|
78
|
+
style="stop-color:#9fbce1;stop-opacity:1;" />
|
79
|
+
<stop
|
80
|
+
style="stop-color:#6b95ca;stop-opacity:1;"
|
81
|
+
offset="0"
|
82
|
+
id="stop2242" />
|
83
|
+
<stop
|
84
|
+
id="stop2244"
|
85
|
+
offset="0.75"
|
86
|
+
style="stop-color:#3d6aa5;stop-opacity:1;" />
|
87
|
+
<stop
|
88
|
+
style="stop-color:#386eb4;stop-opacity:1;"
|
89
|
+
offset="1"
|
90
|
+
id="stop3091" />
|
91
|
+
</linearGradient>
|
92
|
+
<linearGradient
|
93
|
+
id="linearGradient3077">
|
94
|
+
<stop
|
95
|
+
style="stop-color:#98a0a9;stop-opacity:1;"
|
96
|
+
offset="0"
|
97
|
+
id="stop3079" />
|
98
|
+
<stop
|
99
|
+
style="stop-color:#c3d0dd;stop-opacity:1;"
|
100
|
+
offset="1"
|
101
|
+
id="stop3081" />
|
102
|
+
</linearGradient>
|
103
|
+
<linearGradient
|
104
|
+
id="linearGradient3061">
|
105
|
+
<stop
|
106
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
107
|
+
offset="0"
|
108
|
+
id="stop3063" />
|
109
|
+
<stop
|
110
|
+
style="stop-color:#000000;stop-opacity:1;"
|
111
|
+
offset="1"
|
112
|
+
id="stop3065" />
|
113
|
+
</linearGradient>
|
114
|
+
<linearGradient
|
115
|
+
id="linearGradient3049">
|
116
|
+
<stop
|
117
|
+
style="stop-color:#b6b6b6;stop-opacity:1;"
|
118
|
+
offset="0"
|
119
|
+
id="stop3051" />
|
120
|
+
<stop
|
121
|
+
id="stop2262"
|
122
|
+
offset="0.5"
|
123
|
+
style="stop-color:#f2f2f2;stop-opacity:1;" />
|
124
|
+
<stop
|
125
|
+
style="stop-color:#fafafa;stop-opacity:1;"
|
126
|
+
offset="0.67612958"
|
127
|
+
id="stop2264" />
|
128
|
+
<stop
|
129
|
+
id="stop2268"
|
130
|
+
offset="0.84051722"
|
131
|
+
style="stop-color:#d8d8d8;stop-opacity:1;" />
|
132
|
+
<stop
|
133
|
+
id="stop2266"
|
134
|
+
offset="0.875"
|
135
|
+
style="stop-color:#f2f2f2;stop-opacity:1;" />
|
136
|
+
<stop
|
137
|
+
style="stop-color:#dbdbdb;stop-opacity:1;"
|
138
|
+
offset="1"
|
139
|
+
id="stop3053" />
|
140
|
+
</linearGradient>
|
141
|
+
<linearGradient
|
142
|
+
inkscape:collect="always"
|
143
|
+
id="linearGradient3041">
|
144
|
+
<stop
|
145
|
+
style="stop-color:#000000;stop-opacity:1;"
|
146
|
+
offset="0"
|
147
|
+
id="stop3043" />
|
148
|
+
<stop
|
149
|
+
style="stop-color:#000000;stop-opacity:0;"
|
150
|
+
offset="1"
|
151
|
+
id="stop3045" />
|
152
|
+
</linearGradient>
|
153
|
+
<radialGradient
|
154
|
+
inkscape:collect="always"
|
155
|
+
xlink:href="#linearGradient3041"
|
156
|
+
id="radialGradient2447"
|
157
|
+
gradientUnits="userSpaceOnUse"
|
158
|
+
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
|
159
|
+
cx="24.8125"
|
160
|
+
cy="39.125"
|
161
|
+
fx="24.8125"
|
162
|
+
fy="39.125"
|
163
|
+
r="17.6875" />
|
164
|
+
<radialGradient
|
165
|
+
inkscape:collect="always"
|
166
|
+
xlink:href="#linearGradient3041"
|
167
|
+
id="radialGradient2449"
|
168
|
+
gradientUnits="userSpaceOnUse"
|
169
|
+
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
|
170
|
+
cx="24.8125"
|
171
|
+
cy="39.125"
|
172
|
+
fx="24.8125"
|
173
|
+
fy="39.125"
|
174
|
+
r="17.6875" />
|
175
|
+
<linearGradient
|
176
|
+
inkscape:collect="always"
|
177
|
+
xlink:href="#linearGradient3049"
|
178
|
+
id="linearGradient2451"
|
179
|
+
gradientUnits="userSpaceOnUse"
|
180
|
+
gradientTransform="matrix(0.87827,0,0,0.87827,2.536988,4.967681)"
|
181
|
+
x1="19.648342"
|
182
|
+
y1="42.253601"
|
183
|
+
x2="20.631224"
|
184
|
+
y2="6.7758031" />
|
185
|
+
<linearGradient
|
186
|
+
inkscape:collect="always"
|
187
|
+
xlink:href="#linearGradient3061"
|
188
|
+
id="linearGradient2453"
|
189
|
+
gradientUnits="userSpaceOnUse"
|
190
|
+
gradientTransform="matrix(0.87827,0,0,0.87827,5.328299,1.650243)"
|
191
|
+
x1="50.152931"
|
192
|
+
y1="-3.6324477"
|
193
|
+
x2="25.291086"
|
194
|
+
y2="-4.3002653" />
|
195
|
+
<linearGradient
|
196
|
+
inkscape:collect="always"
|
197
|
+
xlink:href="#linearGradient3077"
|
198
|
+
id="linearGradient2455"
|
199
|
+
gradientUnits="userSpaceOnUse"
|
200
|
+
gradientTransform="matrix(0.87827,0,0,0.87827,2.847503,5.588712)"
|
201
|
+
x1="38.227654"
|
202
|
+
y1="13.602527"
|
203
|
+
x2="37.53537"
|
204
|
+
y2="6.6285896" />
|
205
|
+
<linearGradient
|
206
|
+
inkscape:collect="always"
|
207
|
+
xlink:href="#linearGradient2250"
|
208
|
+
id="linearGradient2457"
|
209
|
+
gradientUnits="userSpaceOnUse"
|
210
|
+
x1="31.177404"
|
211
|
+
y1="19.821514"
|
212
|
+
x2="40.859177"
|
213
|
+
y2="9.6568537" />
|
214
|
+
<linearGradient
|
215
|
+
inkscape:collect="always"
|
216
|
+
xlink:href="#linearGradient3087"
|
217
|
+
id="linearGradient2459"
|
218
|
+
gradientUnits="userSpaceOnUse"
|
219
|
+
gradientTransform="matrix(0.87827,0,0,0.87827,2.536988,4.967681)"
|
220
|
+
x1="9.7503242"
|
221
|
+
y1="32.28376"
|
222
|
+
x2="16.915297"
|
223
|
+
y2="39.443218" />
|
224
|
+
<linearGradient
|
225
|
+
inkscape:collect="always"
|
226
|
+
xlink:href="#linearGradient2257"
|
227
|
+
id="linearGradient2461"
|
228
|
+
gradientUnits="userSpaceOnUse"
|
229
|
+
gradientTransform="matrix(1.007254,-2.636526e-2,2.636526e-2,1.007254,1.593411,7.9191e-2)"
|
230
|
+
x1="12.004697"
|
231
|
+
y1="35.688461"
|
232
|
+
x2="10.650805"
|
233
|
+
y2="33.194965" />
|
234
|
+
<linearGradient
|
235
|
+
inkscape:collect="always"
|
236
|
+
xlink:href="#linearGradient2265"
|
237
|
+
id="linearGradient2463"
|
238
|
+
gradientUnits="userSpaceOnUse"
|
239
|
+
gradientTransform="matrix(0.878099,-1.73237e-2,1.73237e-2,0.878099,2.163687,4.067899)"
|
240
|
+
x1="14.017542"
|
241
|
+
y1="36.942543"
|
242
|
+
x2="15.415793"
|
243
|
+
y2="38.268368" />
|
244
|
+
<linearGradient
|
245
|
+
inkscape:collect="always"
|
246
|
+
xlink:href="#linearGradient2265"
|
247
|
+
id="linearGradient2466"
|
248
|
+
gradientUnits="userSpaceOnUse"
|
249
|
+
gradientTransform="matrix(0.3200671,-6.3144886e-3,6.3144886e-3,0.3200671,1.210453,0.7542151)"
|
250
|
+
x1="14.017542"
|
251
|
+
y1="36.942543"
|
252
|
+
x2="15.415793"
|
253
|
+
y2="38.268368" />
|
254
|
+
<linearGradient
|
255
|
+
inkscape:collect="always"
|
256
|
+
xlink:href="#linearGradient2257"
|
257
|
+
id="linearGradient2470"
|
258
|
+
gradientUnits="userSpaceOnUse"
|
259
|
+
gradientTransform="matrix(0.3671441,-9.6101373e-3,9.6101373e-3,0.3671441,1.0025874,-0.699669)"
|
260
|
+
x1="12.004697"
|
261
|
+
y1="35.688461"
|
262
|
+
x2="10.650805"
|
263
|
+
y2="33.194965" />
|
264
|
+
<linearGradient
|
265
|
+
inkscape:collect="always"
|
266
|
+
xlink:href="#linearGradient3087"
|
267
|
+
id="linearGradient2475"
|
268
|
+
gradientUnits="userSpaceOnUse"
|
269
|
+
gradientTransform="matrix(0.3201294,0,0,0.3201294,1.3465212,1.0821856)"
|
270
|
+
x1="9.7503242"
|
271
|
+
y1="32.28376"
|
272
|
+
x2="16.915297"
|
273
|
+
y2="39.443218" />
|
274
|
+
<linearGradient
|
275
|
+
inkscape:collect="always"
|
276
|
+
xlink:href="#linearGradient2250"
|
277
|
+
id="linearGradient2478"
|
278
|
+
gradientUnits="userSpaceOnUse"
|
279
|
+
x1="31.177404"
|
280
|
+
y1="19.821514"
|
281
|
+
x2="40.859177"
|
282
|
+
y2="9.6568537"
|
283
|
+
gradientTransform="matrix(0.3645,0,0,0.3645,0.4217891,-0.7285341)" />
|
284
|
+
<linearGradient
|
285
|
+
inkscape:collect="always"
|
286
|
+
xlink:href="#linearGradient3077"
|
287
|
+
id="linearGradient2481"
|
288
|
+
gradientUnits="userSpaceOnUse"
|
289
|
+
gradientTransform="matrix(0.3201294,0,0,0.3201294,1.4597039,1.3085514)"
|
290
|
+
x1="38.227654"
|
291
|
+
y1="13.602527"
|
292
|
+
x2="37.53537"
|
293
|
+
y2="6.6285896" />
|
294
|
+
<linearGradient
|
295
|
+
inkscape:collect="always"
|
296
|
+
xlink:href="#linearGradient3061"
|
297
|
+
id="linearGradient2484"
|
298
|
+
gradientUnits="userSpaceOnUse"
|
299
|
+
gradientTransform="matrix(0.3201294,0,0,0.3201294,1.7148018,-0.2090259)"
|
300
|
+
x1="50.152931"
|
301
|
+
y1="-3.6324477"
|
302
|
+
x2="25.291086"
|
303
|
+
y2="-4.3002653" />
|
304
|
+
<linearGradient
|
305
|
+
inkscape:collect="always"
|
306
|
+
xlink:href="#linearGradient3049"
|
307
|
+
id="linearGradient2488"
|
308
|
+
gradientUnits="userSpaceOnUse"
|
309
|
+
gradientTransform="matrix(0.3201294,0,0,0.3201294,1.3465212,1.0821856)"
|
310
|
+
x1="19.648342"
|
311
|
+
y1="42.253601"
|
312
|
+
x2="20.631224"
|
313
|
+
y2="6.7758031" />
|
314
|
+
</defs>
|
315
|
+
<sodipodi:namedview
|
316
|
+
stroke="#204a87"
|
317
|
+
fill="#3465a4"
|
318
|
+
id="base"
|
319
|
+
pagecolor="#ffffff"
|
320
|
+
bordercolor="#666666"
|
321
|
+
borderopacity="0.25490196"
|
322
|
+
inkscape:pageopacity="0.0"
|
323
|
+
inkscape:pageshadow="2"
|
324
|
+
inkscape:zoom="16"
|
325
|
+
inkscape:cx="13.218266"
|
326
|
+
inkscape:cy="12.573926"
|
327
|
+
inkscape:current-layer="layer1"
|
328
|
+
showgrid="false"
|
329
|
+
inkscape:grid-bbox="true"
|
330
|
+
inkscape:document-units="px"
|
331
|
+
inkscape:showpageshadow="false"
|
332
|
+
inkscape:window-width="1034"
|
333
|
+
inkscape:window-height="818"
|
334
|
+
inkscape:window-x="98"
|
335
|
+
inkscape:window-y="69" />
|
336
|
+
<metadata
|
337
|
+
id="metadata4">
|
338
|
+
<rdf:RDF>
|
339
|
+
<cc:Work
|
340
|
+
rdf:about="">
|
341
|
+
<dc:format>image/svg+xml</dc:format>
|
342
|
+
<dc:type
|
343
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
344
|
+
<dc:creator>
|
345
|
+
<cc:Agent>
|
346
|
+
<dc:title>Jakub Steiner</dc:title>
|
347
|
+
</cc:Agent>
|
348
|
+
</dc:creator>
|
349
|
+
<dc:source>http://jimmac.musichall.cz</dc:source>
|
350
|
+
<cc:license
|
351
|
+
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
|
352
|
+
<dc:title>Preferences System</dc:title>
|
353
|
+
<dc:subject>
|
354
|
+
<rdf:Bag>
|
355
|
+
<rdf:li>preferences</rdf:li>
|
356
|
+
<rdf:li>settings</rdf:li>
|
357
|
+
<rdf:li>control panel</rdf:li>
|
358
|
+
<rdf:li>tweaks</rdf:li>
|
359
|
+
<rdf:li>system</rdf:li>
|
360
|
+
</rdf:Bag>
|
361
|
+
</dc:subject>
|
362
|
+
</cc:Work>
|
363
|
+
<cc:License
|
364
|
+
rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
365
|
+
<cc:permits
|
366
|
+
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
367
|
+
<cc:permits
|
368
|
+
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
369
|
+
<cc:permits
|
370
|
+
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
371
|
+
</cc:License>
|
372
|
+
</rdf:RDF>
|
373
|
+
</metadata>
|
374
|
+
<g
|
375
|
+
id="layer1"
|
376
|
+
inkscape:label="Layer 1"
|
377
|
+
inkscape:groupmode="layer">
|
378
|
+
<path
|
379
|
+
transform="matrix(0.2737825,0,0,0.2109372,6.6331862,6.3294288)"
|
380
|
+
d="M 42.5,39.125 A 17.6875,6.625 0 1 1 7.125,39.125 A 17.6875,6.625 0 1 1 42.5,39.125 z"
|
381
|
+
sodipodi:ry="6.625"
|
382
|
+
sodipodi:rx="17.6875"
|
383
|
+
sodipodi:cy="39.125"
|
384
|
+
sodipodi:cx="24.8125"
|
385
|
+
id="path2258"
|
386
|
+
style="opacity:0.19886367;fill:url(#radialGradient2447);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
387
|
+
sodipodi:type="arc" />
|
388
|
+
<path
|
389
|
+
sodipodi:type="arc"
|
390
|
+
style="opacity:0.3125;fill:url(#radialGradient2449);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
391
|
+
id="path3039"
|
392
|
+
sodipodi:cx="24.8125"
|
393
|
+
sodipodi:cy="39.125"
|
394
|
+
sodipodi:rx="17.6875"
|
395
|
+
sodipodi:ry="6.625"
|
396
|
+
d="M 42.5,39.125 A 17.6875,6.625 0 1 1 7.125,39.125 A 17.6875,6.625 0 1 1 42.5,39.125 z"
|
397
|
+
transform="matrix(0.3047479,0,0,0.2498414,-2.4794877,5.0006076)" />
|
398
|
+
<path
|
399
|
+
style="fill:url(#linearGradient2488);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.3644999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
400
|
+
d="M 6.948786,7.0045798 L 13.871585,14.087443 C 14.151698,14.407573 15.039264,14.654992 15.632296,14.087443 C 16.204972,13.539376 16.072474,12.766909 15.512248,12.206683 L 8.8695625,5.0838033 C 9.6896875,2.8056783 8.0297949,0.89221078 5.8883574,1.3022733 L 5.4281711,1.7224431 L 6.8687535,3.0829932 L 6.948786,4.2834798 L 5.8732041,5.2652981 L 4.5878316,5.1238196 L 3.2672979,3.8833182 C 3.2672979,3.8833182 2.8043387,4.3407307 2.8043387,4.3407307 C 2.5890054,6.3969907 4.7390047,8.2347673 6.948786,7.0045798 z"
|
401
|
+
id="path2140"
|
402
|
+
sodipodi:nodetypes="cczcccccccccsc" />
|
403
|
+
<path
|
404
|
+
sodipodi:nodetypes="cczccccccccccc"
|
405
|
+
id="path3057"
|
406
|
+
d="M 7.0255759,6.5396323 L 14.025026,13.839697 C 14.24187,14.087518 14.92896,14.279052 15.388043,13.839697 C 15.831367,13.415423 15.728797,12.817435 15.29511,12.383748 L 8.5549465,5.2318366 C 9.1016965,2.8625866 7.8774183,1.5851462 6.0549183,1.6307087 L 5.9564555,1.7303546 L 7.2697209,2.9099738 L 7.3171665,4.4342377 L 5.9998937,5.6365348 L 4.4535732,5.4695176 L 3.2957089,4.3791228 L 3.1671727,4.5358793 C 3.0532664,6.7114886 5.5334041,7.7014761 7.0255759,6.5396323 z"
|
407
|
+
style="opacity:0.42613639;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.36449969;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
408
|
+
<rect
|
409
|
+
style="opacity:0.17045456;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2484);stroke-width:0.36449894;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
410
|
+
id="rect3059"
|
411
|
+
width="8.481286"
|
412
|
+
height="0.74922645"
|
413
|
+
x="10.04619"
|
414
|
+
y="-1.764964"
|
415
|
+
rx="0.32217449"
|
416
|
+
ry="0.32217449"
|
417
|
+
transform="matrix(0.6979381,0.7161581,-0.7161581,0.6979381,0,0)" />
|
418
|
+
<path
|
419
|
+
style="fill:url(#linearGradient2481);fill-opacity:1;fill-rule:nonzero;stroke:#878f9d;stroke-width:0.3644999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
420
|
+
d="M 8.6225995,10.252167 C 8.9264252,9.9917451 13.464557,5.3501854 13.464557,5.3501854 L 14.58501,5.2701528 L 16.345722,2.8291647 L 14.878855,1.5223623 L 12.597932,3.4831559 L 12.597932,4.6036092 L 7.9560559,9.4255585 C 7.7359671,9.6456473 8.3424864,10.492264 8.6225995,10.252167 z"
|
421
|
+
id="path2144"
|
422
|
+
sodipodi:nodetypes="ccccccccc" />
|
423
|
+
<path
|
424
|
+
sodipodi:nodetypes="ccccccccc"
|
425
|
+
id="path3085"
|
426
|
+
d="M 8.5873134,9.8731142 C 8.8230621,9.6710438 13.334708,5.0508496 13.334708,5.0508496 L 14.402176,4.960454 L 15.938148,2.8966313 L 14.884841,1.9675246 L 12.888629,3.6870433 L 12.94522,4.7262164 L 8.32478,9.5712682 C 8.1540052,9.742043 8.3699638,10.059414 8.5873134,9.8731142 z"
|
427
|
+
style="opacity:0.53977272;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2478);stroke-width:0.36450008;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
428
|
+
<path
|
429
|
+
style="fill:url(#linearGradient2475);fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.3644999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
430
|
+
d="M 3.507395,15.16788 C 3.9872911,15.701956 5.3203031,15.943596 5.9114343,14.909116 C 6.1691748,14.458071 6.6746765,13.194945 8.9299055,11.165239 C 9.3086742,10.824734 9.7099023,10.045809 9.3697647,9.6256395 L 8.4894087,8.7452835 C 8.1292633,8.3451219 7.1282148,8.5317779 6.7175104,9.0918778 C 5.4932434,10.76719 3.4931169,12.100782 3.0420711,12.261869 C 2.1789644,12.570122 2.2761069,13.842396 2.8471281,14.447589 L 3.507395,15.16788 z"
|
431
|
+
id="path2142"
|
432
|
+
sodipodi:nodetypes="ccccccscc" />
|
433
|
+
<path
|
434
|
+
sodipodi:type="arc"
|
435
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:1.13860166;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
436
|
+
id="path2146"
|
437
|
+
sodipodi:cx="41.875"
|
438
|
+
sodipodi:cy="37.5"
|
439
|
+
sodipodi:rx="1.375"
|
440
|
+
sodipodi:ry="1.375"
|
441
|
+
d="M 43.25,37.5 A 1.375,1.375 0 1 1 40.5,37.5 A 1.375,1.375 0 1 1 43.25,37.5 z"
|
442
|
+
transform="matrix(0.3201294,0,0,0.3201294,1.306505,1.1222015)" />
|
443
|
+
<path
|
444
|
+
sodipodi:type="arc"
|
445
|
+
style="opacity:0.60227272;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
446
|
+
id="path3101"
|
447
|
+
sodipodi:cx="19.003494"
|
448
|
+
sodipodi:cy="28.20101"
|
449
|
+
sodipodi:rx="1.767767"
|
450
|
+
sodipodi:ry="1.767767"
|
451
|
+
d="M 20.771261,28.20101 A 1.767767,1.767767 0 1 1 17.235727,28.20101 A 1.767767,1.767767 0 1 1 20.771261,28.20101 z"
|
452
|
+
transform="matrix(0.2080843,0,0,0.2080843,3.7587312,3.3724955)" />
|
453
|
+
<path
|
454
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2470);stroke-width:0.83634859;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
455
|
+
d="M 7.23025,10.069708 C 7.23025,10.069708 4.6168247,12.730417 3.3925579,13.181463"
|
456
|
+
id="path3103"
|
457
|
+
sodipodi:nodetypes="cc" />
|
458
|
+
<path
|
459
|
+
sodipodi:nodetypes="csccccscc"
|
460
|
+
id="path2270"
|
461
|
+
d="M 3.6315766,14.757864 C 4.1569179,15.394142 5.3081066,15.545632 5.6695543,14.622785 C 5.9178907,13.988733 6.8846595,12.557605 8.6575737,10.961983 C 8.955337,10.694299 9.2707567,10.08196 9.0033624,9.7516494 L 8.3112837,9.0595707 C 8.0281609,8.7449897 7.2412017,8.8917264 6.9183324,9.3320406 C 5.9558935,10.649063 3.8261533,12.371808 3.3113317,12.541691 C 2.514245,12.804718 2.663618,13.715855 3.1125176,14.191618 L 3.6315766,14.757864 z"
|
462
|
+
style="opacity:0.19886367;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.36449981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
463
|
+
<path
|
464
|
+
style="opacity:0.27840911;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2466);stroke-width:0.83634859;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
465
|
+
d="M 8.0123565,10.666109 C 8.0123565,10.666109 5.3432094,13.078153 4.7632936,14.624596"
|
466
|
+
id="path2247"
|
467
|
+
sodipodi:nodetypes="cc" />
|
468
|
+
</g>
|
469
|
+
</svg>
|