slideoff 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +218 -0
- data/bin/slideoff +127 -0
- data/lib/slideoff/config_builder.rb +60 -0
- data/lib/slideoff/flickr_api.rb +50 -0
- data/lib/slideoff/flickr_image.rb +92 -0
- data/lib/slideoff/markdown.rb +145 -0
- data/lib/slideoff/presentation.rb +90 -0
- data/lib/slideoff/remote_api.rb +53 -0
- data/lib/slideoff/routes.rb +20 -0
- data/lib/slideoff/server.rb +50 -0
- data/lib/slideoff/slides_api.rb +59 -0
- data/lib/slideoff/utils.rb +453 -0
- data/lib/slideoff.rb +15 -0
- data/themes/3d_slideshow/README +2 -0
- data/themes/3d_slideshow/css/main.css +232 -0
- data/themes/3d_slideshow/css/reset.css +57 -0
- data/themes/3d_slideshow/index.erb +31 -0
- data/themes/3d_slideshow/js/slideshow.js +288 -0
- data/themes/CSSS/README +2 -0
- data/themes/CSSS/css/slideshow.css +304 -0
- data/themes/CSSS/css/theme.css +250 -0
- data/themes/CSSS/images/rainbow-wood.jpg +0 -0
- data/themes/CSSS/index.erb +36 -0
- data/themes/CSSS/js/classList.js +116 -0
- data/themes/CSSS/js/prefixfree.min.js +5 -0
- data/themes/CSSS/js/slideshow.js +621 -0
- data/themes/common/css/pygments/colorful.css +62 -0
- data/themes/common/css/pygments/manni.css +61 -0
- data/themes/common/css/pygments/native.css +70 -0
- data/themes/common/css/pygments/solarized.css +66 -0
- data/themes/common/fonts/DroidSansMono.svg +626 -0
- data/themes/common/fonts/DroidSansMono.ttf +0 -0
- data/themes/common/fonts/Lato-BoldItalic.woff +0 -0
- data/themes/common/fonts/Lato-Italic.woff +0 -0
- data/themes/common/fonts/Lato-bold.woff +0 -0
- data/themes/common/fonts/Lato.woff +0 -0
- data/themes/common/fonts/OpenSans-Bold.woff +0 -0
- data/themes/common/fonts/OpenSans-BoldItalic.woff +0 -0
- data/themes/common/fonts/OpenSans-Italic.woff +0 -0
- data/themes/common/fonts/OpenSans.woff +0 -0
- data/themes/common/fonts/PTMono.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.woff +0 -0
- data/themes/common/fonts/PTSans.woff +0 -0
- data/themes/common/fonts/TargetBlank.otf +0 -0
- data/themes/common/fonts/TargetBlank.svg +14 -0
- data/themes/common/fonts/YanoneKaffeesatz-Bold.woff +0 -0
- data/themes/common/fonts/YanoneKaffeesatz-Regular.woff +0 -0
- data/themes/common/fonts/crimson_text.ttf +0 -0
- data/themes/common/fonts/crimson_text_bold.ttf +0 -0
- data/themes/common/fonts/crimson_text_semibold.ttf +0 -0
- data/themes/common/fonts/league_gothic-webfont.ttf +0 -0
- data/themes/html5rocks/README +2 -0
- data/themes/html5rocks/css/default.css +501 -0
- data/themes/html5rocks/css/moon.css +543 -0
- data/themes/html5rocks/css/sand.css +508 -0
- data/themes/html5rocks/css/sea_wave.css +492 -0
- data/themes/html5rocks/index.erb +64 -0
- data/themes/html5rocks/js/slides.js +464 -0
- data/themes/io2012/README +2 -0
- data/themes/io2012/css/default.css +1481 -0
- data/themes/io2012/css/fonts.css +24 -0
- data/themes/io2012/css/phone.css +27 -0
- data/themes/io2012/images/google_developers_icon_128.png +0 -0
- data/themes/io2012/images/io2012_logo.png +0 -0
- data/themes/io2012/index.erb +73 -0
- data/themes/io2012/js/hammer.js +586 -0
- data/themes/io2012/js/modernizr.custom.45394.js +4 -0
- data/themes/io2012/js/order.js +8 -0
- data/themes/io2012/js/polyfills/classList.min.js +2 -0
- data/themes/io2012/js/polyfills/dataset.min.js +2 -0
- data/themes/io2012/js/polyfills/history.min.js +1 -0
- data/themes/io2012/js/prettify/lang-apollo.js +2 -0
- data/themes/io2012/js/prettify/lang-clj.js +18 -0
- data/themes/io2012/js/prettify/lang-css.js +2 -0
- data/themes/io2012/js/prettify/lang-go.js +1 -0
- data/themes/io2012/js/prettify/lang-hs.js +2 -0
- data/themes/io2012/js/prettify/lang-lisp.js +3 -0
- data/themes/io2012/js/prettify/lang-lua.js +2 -0
- data/themes/io2012/js/prettify/lang-ml.js +2 -0
- data/themes/io2012/js/prettify/lang-n.js +4 -0
- data/themes/io2012/js/prettify/lang-proto.js +1 -0
- data/themes/io2012/js/prettify/lang-scala.js +2 -0
- data/themes/io2012/js/prettify/lang-sql.js +2 -0
- data/themes/io2012/js/prettify/lang-tex.js +1 -0
- data/themes/io2012/js/prettify/lang-vb.js +2 -0
- data/themes/io2012/js/prettify/lang-vhdl.js +3 -0
- data/themes/io2012/js/prettify/lang-wiki.js +2 -0
- data/themes/io2012/js/prettify/lang-xq.js +3 -0
- data/themes/io2012/js/prettify/lang-yaml.js +2 -0
- data/themes/io2012/js/prettify/prettify.css +1 -0
- data/themes/io2012/js/prettify/prettify.js +28 -0
- data/themes/io2012/js/require-1.0.8.min.js +33 -0
- data/themes/io2012/js/slide-controller.js +109 -0
- data/themes/io2012/js/slide-deck.js +768 -0
- data/themes/io2012/js/slides.js +5 -0
- data/themes/memories/README +5 -0
- data/themes/memories/css/fonts.css +25 -0
- data/themes/memories/css/slideshow.css +286 -0
- data/themes/memories/css/theme.css +183 -0
- data/themes/memories/index.erb +37 -0
- data/themes/memories/js/prefixfree.min.js +13 -0
- data/themes/memories/js/slideshow.js +577 -0
- data/themes/modern/LICENSE +20 -0
- data/themes/modern/README.md +52 -0
- data/themes/modern/css/GENERATED_CONTENT +0 -0
- data/themes/modern/css/defaults.css +0 -0
- data/themes/modern/css/fonts.css +166 -0
- data/themes/modern/css/pygments/colorful.css +215 -0
- data/themes/modern/css/pygments/github.css +208 -0
- data/themes/modern/css/pygments/solarized-dark.css +213 -0
- data/themes/modern/css/pygments/solarized-light.css +213 -0
- data/themes/modern/css/reset.css +41 -0
- data/themes/modern/css/screen.css +1183 -0
- data/themes/modern/fonts/Collegiate.woff +0 -0
- data/themes/modern/fonts/GoudyBookletter.1911.woff +0 -0
- data/themes/modern/fonts/Inconsolata.Bold.woff +0 -0
- data/themes/modern/fonts/Inconsolata.woff +0 -0
- data/themes/modern/fonts/Junction.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Bold.woff +0 -0
- data/themes/modern/fonts/LiberationMono.BoldItalic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Italic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Bold.woff +0 -0
- data/themes/modern/fonts/OpenSans.BoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBold.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Italic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Light.woff +0 -0
- data/themes/modern/fonts/OpenSans.LightItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Semibold.woff +0 -0
- data/themes/modern/fonts/OpenSans.SemiboldItalic.woff +0 -0
- data/themes/modern/fonts/PTMono.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.woff +0 -0
- data/themes/modern/fonts/Raleway.Thin.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Bold.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.BoldItalic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Italic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Regular.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Bold.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.ExtraLight.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Light.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Regular.woff +0 -0
- data/themes/modern/images/cc/by.svg +29 -0
- data/themes/modern/images/cc/cc-white.svg +23 -0
- data/themes/modern/images/cc/cc.svg +23 -0
- data/themes/modern/images/cc/nc-eu.svg +21 -0
- data/themes/modern/images/cc/nc-jp.svg +18 -0
- data/themes/modern/images/cc/nc.svg +23 -0
- data/themes/modern/images/cc/nd.svg +20 -0
- data/themes/modern/images/cc/pd.svg +24 -0
- data/themes/modern/images/cc/remix.svg +20 -0
- data/themes/modern/images/cc/sa.svg +22 -0
- data/themes/modern/images/cc/sampling.plus.svg +33 -0
- data/themes/modern/images/cc/sampling.svg +36 -0
- data/themes/modern/images/cc/share.svg +22 -0
- data/themes/modern/images/cc/zero.svg +24 -0
- data/themes/modern/images/flickr.svg +65 -0
- data/themes/modern/images/mesh.png +0 -0
- data/themes/modern/images/mesh@2x.png +0 -0
- data/themes/modern/images/progress-grayDark.svg +55 -0
- data/themes/modern/images/progress.svg +3 -0
- data/themes/modern/index.erb +76 -0
- data/themes/modern/js/highcharts.js +294 -0
- data/themes/modern/js/jquery-2.1.0.min.js +4 -0
- data/themes/modern/js/script.coffee +480 -0
- data/themes/modern/js/script.js +678 -0
- data/themes/modern/styles/_box.scss +89 -0
- data/themes/modern/styles/_figure.scss +81 -0
- data/themes/modern/styles/_full.scss +74 -0
- data/themes/modern/styles/_increment.scss +38 -0
- data/themes/modern/styles/_list.scss +129 -0
- data/themes/modern/styles/_progress.scss +19 -0
- data/themes/modern/styles/defaults.scss +46 -0
- data/themes/modern/styles/fonts.scss +197 -0
- data/themes/modern/styles/pygments/_solarized.scss +82 -0
- data/themes/modern/styles/pygments/colorful.scss +67 -0
- data/themes/modern/styles/pygments/github.scss +67 -0
- data/themes/modern/styles/pygments/solarized-dark.scss +15 -0
- data/themes/modern/styles/pygments/solarized-light.scss +15 -0
- data/themes/modern/styles/reset.scss +46 -0
- data/themes/modern/styles/screen.scss +841 -0
- data/themes/reveal/README +2 -0
- data/themes/reveal/css/main.css +1029 -0
- data/themes/reveal/css/reset.css +57 -0
- data/themes/reveal/index.erb +102 -0
- data/themes/reveal/js/classList.js +2 -0
- data/themes/reveal/js/head.min.js +8 -0
- data/themes/reveal/js/reveal.js +951 -0
- data/themes/shower/README +2 -0
- data/themes/shower/css/fonts.css +50 -0
- data/themes/shower/css/reset.css +42 -0
- data/themes/shower/css/style.css +418 -0
- data/themes/shower/images/grid.png +0 -0
- data/themes/shower/images/linen.png +0 -0
- data/themes/shower/images/ribbon.svg +4 -0
- data/themes/shower/index.erb +35 -0
- data/themes/shower/js/script.js +325 -0
- data/themes/template/README +5 -0
- data/themes/template/css/reset.css +42 -0
- data/themes/template/index.erb +35 -0
- data/themes/template/js/prefixfree.min.js +13 -0
- metadata +343 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
version="1.0"
|
11
|
+
width="64"
|
12
|
+
height="64"
|
13
|
+
viewBox="5.5 -3.5 64 64"
|
14
|
+
id="Layer_1"
|
15
|
+
xml:space="preserve"><metadata
|
16
|
+
id="metadata3048"><rdf:RDF><cc:Work
|
17
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
18
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
19
|
+
id="defs3046" /><g
|
20
|
+
id="g3036"><circle
|
21
|
+
cx="37.637001"
|
22
|
+
cy="28.806"
|
23
|
+
r="28.275999"
|
24
|
+
id="circle3038"
|
25
|
+
style="fill:#ffffff;fill-opacity:0" /><g
|
26
|
+
id="g3040"><path
|
27
|
+
d="m 37.443,-3.5 c 8.988,0 16.57,3.085 22.742,9.257 6.208,6.21 9.315,13.791 9.315,22.743 0,8.991 -3.049,16.476 -9.145,22.456 C 53.879,57.319 46.242,60.5 37.443,60.5 28.794,60.5 21.29,57.356 14.929,51.07 8.644,44.784 5.5,37.262 5.5,28.5 5.5,19.739 8.644,12.158 14.929,5.758 21.101,-0.415 28.604,-3.5 37.443,-3.5 z m 0.114,5.772 c -7.276,0 -13.428,2.553 -18.457,7.657 -5.22,5.334 -7.829,11.525 -7.829,18.572 0,7.086 2.59,13.22 7.77,18.398 5.181,5.182 11.352,7.771 18.514,7.771 7.123,0 13.334,-2.607 18.629,-7.828 5.029,-4.838 7.543,-10.952 7.543,-18.343 0,-7.276 -2.553,-13.465 -7.656,-18.571 C 50.967,4.824 44.795,2.272 37.557,2.272 z m 8.572,18.285 V 33.642 H 42.473 V 49.184 H 32.529 V 33.643 H 28.873 V 20.557 c 0,-0.572 0.2,-1.057 0.599,-1.457 0.401,-0.399 0.887,-0.6 1.457,-0.6 h 13.144 c 0.533,0 1.01,0.2 1.428,0.6 0.417,0.4 0.628,0.886 0.628,1.457 z M 33.042,12.329 c 0,-3.008 1.485,-4.514 4.458,-4.514 2.973,0 4.457,1.504 4.457,4.514 0,2.971 -1.486,4.457 -4.457,4.457 -2.971,0 -4.458,-1.486 -4.458,-4.457 z"
|
28
|
+
id="path3042"
|
29
|
+
style="fill:#cccccc;fill-opacity:1" /></g></g></svg>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
version="1.0"
|
11
|
+
width="64"
|
12
|
+
height="64"
|
13
|
+
viewBox="5.5 -3.5 64 64"
|
14
|
+
id="Layer_1"
|
15
|
+
xml:space="preserve"><metadata
|
16
|
+
id="metadata4015"><rdf:RDF><cc:Work
|
17
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
18
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
19
|
+
id="defs4013" /><g
|
20
|
+
id="g4005"><path
|
21
|
+
d="m 37.441,-3.5 c 8.951,0 16.572,3.125 22.857,9.372 3.008,3.009 5.295,6.448 6.857,10.314 1.561,3.867 2.344,7.971 2.344,12.314 0,4.381 -0.773,8.486 -2.314,12.313 -1.543,3.828 -3.82,7.21 -6.828,10.143 -3.123,3.085 -6.666,5.448 -10.629,7.086 -3.961,1.638 -8.057,2.457 -12.285,2.457 -4.228,0 -8.276,-0.808 -12.143,-2.429 C 21.434,56.452 17.967,54.109 14.9,51.043 11.833,47.977 9.5,44.519 7.9,40.671 6.3,36.823 5.5,32.767 5.5,28.5 5.5,24.271 6.309,20.205 7.928,16.3 9.547,12.395 11.9,8.9 14.985,5.814 21.08,-0.394 28.565,-3.5 37.441,-3.5 z m 0.116,5.772 c -7.314,0 -13.467,2.553 -18.458,7.657 -2.515,2.553 -4.448,5.419 -5.8,8.6 -1.354,3.181 -2.029,6.505 -2.029,9.972 0,3.429 0.675,6.734 2.029,9.913 1.353,3.183 3.285,6.021 5.8,8.516 2.514,2.496 5.351,4.399 8.515,5.715 3.161,1.314 6.476,1.971 9.943,1.971 3.428,0 6.75,-0.665 9.973,-1.999 3.219,-1.335 6.121,-3.257 8.713,-5.771 4.99,-4.876 7.484,-10.99 7.484,-18.344 0,-3.543 -0.648,-6.895 -1.943,-10.057 C 60.491,15.283 58.604,12.465 56.13,9.987 50.984,4.844 44.795,2.272 37.557,2.272 z m -0.401,20.915 -4.287,2.229 c -0.458,-0.951 -1.019,-1.619 -1.685,-2 -0.667,-0.38 -1.286,-0.571 -1.858,-0.571 -2.856,0 -4.286,1.885 -4.286,5.657 0,1.714 0.362,3.084 1.085,4.113 0.724,1.029 1.791,1.544 3.201,1.544 1.867,0 3.181,-0.915 3.944,-2.743 l 3.942,2 c -0.838,1.563 -2,2.791 -3.486,3.686 -1.484,0.896 -3.123,1.343 -4.914,1.343 -2.857,0 -5.163,-0.875 -6.915,-2.629 -1.752,-1.752 -2.628,-4.19 -2.628,-7.313 0,-3.048 0.886,-5.466 2.657,-7.257 1.771,-1.79 4.009,-2.686 6.715,-2.686 3.963,-0.002 6.8,1.541 8.515,4.627 z m 18.457,0 -4.229,2.229 c -0.457,-0.951 -1.02,-1.619 -1.686,-2 -0.668,-0.38 -1.307,-0.571 -1.914,-0.571 -2.857,0 -4.287,1.885 -4.287,5.657 0,1.714 0.363,3.084 1.086,4.113 0.723,1.029 1.789,1.544 3.201,1.544 1.865,0 3.18,-0.915 3.941,-2.743 l 4,2 c -0.875,1.563 -2.057,2.791 -3.541,3.686 -1.486,0.896 -3.105,1.343 -4.857,1.343 -2.896,0 -5.209,-0.875 -6.941,-2.629 -1.736,-1.752 -2.602,-4.19 -2.602,-7.313 0,-3.048 0.885,-5.466 2.658,-7.257 1.77,-1.79 4.008,-2.686 6.713,-2.686 3.962,-0.002 6.783,1.541 8.458,4.627 z"
|
22
|
+
id="path4009"
|
23
|
+
style="fill:#ffffff;fill-opacity:1" /></g></svg>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
version="1.0"
|
11
|
+
width="64"
|
12
|
+
height="64"
|
13
|
+
viewBox="5.5 -3.5 64 64"
|
14
|
+
id="Layer_1"
|
15
|
+
xml:space="preserve"><metadata
|
16
|
+
id="metadata4015"><rdf:RDF><cc:Work
|
17
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
18
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
19
|
+
id="defs4013" /><g
|
20
|
+
id="g4005"><path
|
21
|
+
d="m 37.441,-3.5 c 8.951,0 16.572,3.125 22.857,9.372 3.008,3.009 5.295,6.448 6.857,10.314 1.561,3.867 2.344,7.971 2.344,12.314 0,4.381 -0.773,8.486 -2.314,12.313 -1.543,3.828 -3.82,7.21 -6.828,10.143 -3.123,3.085 -6.666,5.448 -10.629,7.086 -3.961,1.638 -8.057,2.457 -12.285,2.457 -4.228,0 -8.276,-0.808 -12.143,-2.429 C 21.434,56.452 17.967,54.109 14.9,51.043 11.833,47.977 9.5,44.519 7.9,40.671 6.3,36.823 5.5,32.767 5.5,28.5 5.5,24.271 6.309,20.205 7.928,16.3 9.547,12.395 11.9,8.9 14.985,5.814 21.08,-0.394 28.565,-3.5 37.441,-3.5 z m 0.116,5.772 c -7.314,0 -13.467,2.553 -18.458,7.657 -2.515,2.553 -4.448,5.419 -5.8,8.6 -1.354,3.181 -2.029,6.505 -2.029,9.972 0,3.429 0.675,6.734 2.029,9.913 1.353,3.183 3.285,6.021 5.8,8.516 2.514,2.496 5.351,4.399 8.515,5.715 3.161,1.314 6.476,1.971 9.943,1.971 3.428,0 6.75,-0.665 9.973,-1.999 3.219,-1.335 6.121,-3.257 8.713,-5.771 4.99,-4.876 7.484,-10.99 7.484,-18.344 0,-3.543 -0.648,-6.895 -1.943,-10.057 C 60.491,15.283 58.604,12.465 56.13,9.987 50.984,4.844 44.795,2.272 37.557,2.272 z m -0.401,20.915 -4.287,2.229 c -0.458,-0.951 -1.019,-1.619 -1.685,-2 -0.667,-0.38 -1.286,-0.571 -1.858,-0.571 -2.856,0 -4.286,1.885 -4.286,5.657 0,1.714 0.362,3.084 1.085,4.113 0.724,1.029 1.791,1.544 3.201,1.544 1.867,0 3.181,-0.915 3.944,-2.743 l 3.942,2 c -0.838,1.563 -2,2.791 -3.486,3.686 -1.484,0.896 -3.123,1.343 -4.914,1.343 -2.857,0 -5.163,-0.875 -6.915,-2.629 -1.752,-1.752 -2.628,-4.19 -2.628,-7.313 0,-3.048 0.886,-5.466 2.657,-7.257 1.771,-1.79 4.009,-2.686 6.715,-2.686 3.963,-0.002 6.8,1.541 8.515,4.627 z m 18.457,0 -4.229,2.229 c -0.457,-0.951 -1.02,-1.619 -1.686,-2 -0.668,-0.38 -1.307,-0.571 -1.914,-0.571 -2.857,0 -4.287,1.885 -4.287,5.657 0,1.714 0.363,3.084 1.086,4.113 0.723,1.029 1.789,1.544 3.201,1.544 1.865,0 3.18,-0.915 3.941,-2.743 l 4,2 c -0.875,1.563 -2.057,2.791 -3.541,3.686 -1.486,0.896 -3.105,1.343 -4.857,1.343 -2.896,0 -5.209,-0.875 -6.941,-2.629 -1.736,-1.752 -2.602,-4.19 -2.602,-7.313 0,-3.048 0.885,-5.466 2.658,-7.257 1.77,-1.79 4.008,-2.686 6.713,-2.686 3.962,-0.002 6.783,1.541 8.458,4.627 z"
|
22
|
+
id="path4009"
|
23
|
+
style="fill:#ffffff;fill-opacity:0.6585366" /></g></svg>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="36.924" cy="28.403" r="28.895"/>
|
8
|
+
<path d="M60.205,5.779C54.012-0.407,46.428-3.5,37.459-3.5c-8.865,0-16.367,3.091-22.508,9.279C8.649,12.18,5.5,19.752,5.5,28.5
|
9
|
+
c0,8.745,3.149,16.266,9.451,22.558c6.301,6.296,13.802,9.442,22.508,9.442c8.809,0,16.446-3.175,22.907-9.521
|
10
|
+
C66.455,44.952,69.5,37.459,69.5,28.5C69.499,19.539,66.401,11.964,60.205,5.779z M56.199,46.82
|
11
|
+
c-5.286,5.226-11.508,7.837-18.66,7.837c-7.156,0-13.325-2.587-18.504-7.761c-5.179-5.174-7.77-11.306-7.77-18.397
|
12
|
+
c0-3,0.474-5.837,1.41-8.51l8.479,3.754h-0.611v3.803h3.001c0,0.538-0.054,1.073-0.054,1.608v0.912h-2.947v3.803h3.481
|
13
|
+
c0.483,2.84,1.555,5.144,3,6.965c3,3.965,7.822,6.106,13.071,6.106c3.43,0,6.533-1.017,8.357-2.036l-1.287-5.944
|
14
|
+
c-1.125,0.589-3.641,1.391-6.104,1.391c-2.68,0-5.196-0.802-6.911-2.731c-0.803-0.91-1.392-2.144-1.767-3.75h11.646l16.549,7.325
|
15
|
+
C59.433,43.225,57.978,45.102,56.199,46.82z M35.387,30.065l-0.07-0.054l0.12,0.054H35.387z M45.351,27.545h0.479v-3.803h-9.07
|
16
|
+
l-3.685-1.63c0.317-0.713,0.693-1.351,1.131-1.85c1.661-2.039,4.017-2.895,6.589-2.895c2.357,0,4.553,0.696,5.945,1.285l1.5-6.108
|
17
|
+
c-1.93-0.855-4.768-1.605-8.035-1.605c-5.035,0-9.321,2.035-12.375,5.463c-0.678,0.783-1.266,1.662-1.799,2.591l-10.523-4.657
|
18
|
+
c1.02-1.529,2.219-2.997,3.608-4.398c5.021-5.12,11.16-7.681,18.424-7.681c7.26,0,13.429,2.56,18.502,7.681
|
19
|
+
c5.124,5.066,7.687,11.252,7.687,18.562c0,2.407-0.272,4.678-0.812,6.82L45.351,27.545z"/>
|
20
|
+
</g>
|
21
|
+
</svg>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="32.485" cy="31.496" r="28.44"/>
|
8
|
+
<path d="M54.708,9.279C48.512,3.093,40.932,0,31.958,0C23.095,0,15.592,3.093,9.453,9.279C3.15,15.68,0,23.253,0,32
|
9
|
+
c0,8.746,3.15,16.268,9.453,22.561C15.752,60.854,23.255,64,31.958,64c8.812,0,16.449-3.173,22.909-9.52
|
10
|
+
C60.956,48.454,64,40.959,64,32C64,23.04,60.902,15.466,54.708,9.279z M50.701,50.32c-5.287,5.227-11.508,7.839-18.661,7.839
|
11
|
+
c-7.156,0-13.324-2.587-18.503-7.761C8.357,45.227,5.768,39.093,5.768,32c0-2.728,0.391-5.318,1.164-7.777l16.383,7.295H19.71
|
12
|
+
v4.981h7.496l0.733,1.521v2.414H19.71v4.98h8.229v7.234h7.963v-7.234h8.281v-4.604l10.448,4.653
|
13
|
+
C53.561,47.202,52.252,48.822,50.701,50.32z M43.337,40.434h-7.433V38.02l0.375-0.728L43.337,40.434z M44.184,33.809v-2.291h-4.979
|
14
|
+
l8.125-14.969h-8.492l-5.595,12.388l-2.969-1.322l-5.113-11.066H16.67l3.524,6.578L9.628,18.422
|
15
|
+
c1.098-1.741,2.424-3.403,3.988-4.983c5.02-5.12,11.16-7.68,18.424-7.68c7.26,0,13.429,2.56,18.502,7.68
|
16
|
+
C55.668,18.506,58.23,24.692,58.23,32c0,2.707-0.342,5.241-1.021,7.607L44.184,33.809z"/>
|
17
|
+
</g>
|
18
|
+
</svg>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="37.47" cy="28.736" r="29.471"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.442-3.5c8.99,0,16.571,3.085,22.743,9.256C66.393,11.928,69.5,19.509,69.5,28.5c0,8.992-3.048,16.476-9.145,22.458
|
10
|
+
C53.88,57.32,46.241,60.5,37.442,60.5c-8.686,0-16.19-3.162-22.513-9.485C8.644,44.728,5.5,37.225,5.5,28.5
|
11
|
+
c0-8.762,3.144-16.343,9.429-22.743C21.1-0.414,28.604-3.5,37.442-3.5z M12.7,19.872c-0.952,2.628-1.429,5.505-1.429,8.629
|
12
|
+
c0,7.086,2.59,13.22,7.77,18.4c5.219,5.144,11.391,7.715,18.514,7.715c7.201,0,13.409-2.608,18.63-7.829
|
13
|
+
c1.867-1.79,3.332-3.657,4.398-5.602l-12.056-5.371c-0.421,2.02-1.439,3.667-3.057,4.942c-1.622,1.276-3.535,2.011-5.744,2.2
|
14
|
+
v4.915h-3.714v-4.915c-3.543-0.036-6.782-1.312-9.714-3.827l4.4-4.457c2.094,1.942,4.476,2.913,7.143,2.913
|
15
|
+
c1.104,0,2.048-0.246,2.83-0.743c0.78-0.494,1.172-1.312,1.172-2.457c0-0.801-0.287-1.448-0.858-1.943l-3.085-1.315l-3.771-1.715
|
16
|
+
l-5.086-2.229L12.7,19.872z M37.557,2.214c-7.276,0-13.428,2.571-18.457,7.714c-1.258,1.258-2.439,2.686-3.543,4.287L27.786,19.7
|
17
|
+
c0.533-1.676,1.542-3.019,3.029-4.028c1.484-1.009,3.218-1.571,5.2-1.686V9.071h3.715v4.915c2.934,0.153,5.6,1.143,8,2.971
|
18
|
+
l-4.172,4.286c-1.793-1.257-3.619-1.885-5.486-1.885c-0.991,0-1.876,0.191-2.656,0.571c-0.781,0.381-1.172,1.029-1.172,1.943
|
19
|
+
c0,0.267,0.095,0.533,0.285,0.8l4.057,1.83l2.8,1.257l5.144,2.285l16.397,7.314c0.535-2.248,0.801-4.533,0.801-6.857
|
20
|
+
c0-7.353-2.552-13.543-7.656-18.573C51.005,4.785,44.831,2.214,37.557,2.214z"/>
|
21
|
+
</g>
|
22
|
+
</g>
|
23
|
+
</svg>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64.000977px" height="64px" viewBox="0 0 64.000977 64" enable-background="new 0 0 64.000977 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="32.064453" cy="31.788086" r="29.012695"/>
|
8
|
+
<g>
|
9
|
+
<path d="M31.943848,0C40.896484,0,48.476562,3.105469,54.6875,9.314453C60.894531,15.486328,64.000977,23.045898,64.000977,32
|
10
|
+
s-3.048828,16.457031-9.145508,22.513672C48.417969,60.837891,40.779297,64,31.942871,64
|
11
|
+
c-8.648926,0-16.152832-3.142578-22.513672-9.429688C3.144043,48.286133,0,40.761719,0,32.000977
|
12
|
+
c0-8.723633,3.144043-16.285156,9.429199-22.68457C15.640137,3.105469,23.14502,0,31.943848,0z M32.060547,5.771484
|
13
|
+
c-7.275391,0-13.429688,2.570312-18.458496,7.714844C8.381836,18.783203,5.772949,24.954102,5.772949,32
|
14
|
+
c0,7.125,2.589844,13.256836,7.77002,18.400391c5.181152,5.181641,11.352051,7.770508,18.515625,7.770508
|
15
|
+
c7.123047,0,13.332031-2.608398,18.626953-7.828125C55.713867,45.466797,58.228516,39.353516,58.228516,32
|
16
|
+
c0-7.3125-2.553711-13.484375-7.65625-18.513672C45.504883,8.341797,39.333984,5.771484,32.060547,5.771484z M44.117188,24.456055
|
17
|
+
v5.485352H20.859863v-5.485352H44.117188z M44.117188,34.743164v5.481445H20.859863v-5.481445H44.117188z"/>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</svg>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="37.471" cy="28.424" r="28.553"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.443-3.5c8.988,0,16.58,3.096,22.77,9.286C66.404,11.976,69.5,19.547,69.5,28.5c0,8.954-3.049,16.437-9.145,22.456
|
10
|
+
C53.918,57.319,46.279,60.5,37.443,60.5c-8.687,0-16.182-3.144-22.486-9.43C8.651,44.784,5.5,37.262,5.5,28.5
|
11
|
+
c0-8.761,3.144-16.342,9.429-22.742C21.101-0.415,28.604-3.5,37.443-3.5z M37.529,2.272c-7.257,0-13.401,2.553-18.428,7.657
|
12
|
+
c-5.22,5.296-7.829,11.486-7.829,18.572s2.59,13.22,7.771,18.398c5.181,5.182,11.352,7.771,18.514,7.771
|
13
|
+
c7.162,0,13.371-2.607,18.629-7.828c5.029-4.877,7.543-10.991,7.543-18.343c0-7.314-2.553-13.504-7.656-18.571
|
14
|
+
C50.967,4.824,44.785,2.272,37.529,2.272z M22.471,37.186V19.472h8.8c4.342,0,6.514,1.999,6.514,6
|
15
|
+
c0,0.686-0.105,1.342-0.314,1.972c-0.209,0.629-0.572,1.256-1.086,1.886c-0.514,0.629-1.285,1.143-2.314,1.543
|
16
|
+
c-1.028,0.399-2.247,0.6-3.656,0.6h-3.486v5.714H22.471z M26.871,22.785v5.372h3.771c0.914,0,1.6-0.258,2.058-0.772
|
17
|
+
c0.458-0.513,0.687-1.152,0.687-1.915c0-1.79-0.953-2.686-2.858-2.686h-3.657V22.785z M38.984,37.186V19.472h6.859
|
18
|
+
c2.818,0,5.027,0.724,6.629,2.171c1.598,1.448,2.398,3.677,2.398,6.686c0,3.01-0.801,5.24-2.398,6.686
|
19
|
+
c-1.602,1.447-3.811,2.171-6.629,2.171H38.984z M43.387,23.186v10.287h2.57c1.562,0,2.695-0.466,3.4-1.401
|
20
|
+
c0.705-0.933,1.057-2.179,1.057-3.742c0-1.562-0.352-2.809-1.057-3.743c-0.705-0.933-1.857-1.399-3.457-1.399L43.387,23.186
|
21
|
+
L43.387,23.186z"/>
|
22
|
+
</g>
|
23
|
+
</g>
|
24
|
+
</svg>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="37.834" cy="28" r="28.834"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.443-3.5c8.951,0,16.531,3.105,22.742,9.315C66.393,11.987,69.5,19.548,69.5,28.5c0,8.954-3.049,16.457-9.145,22.514
|
10
|
+
C53.918,57.338,46.279,60.5,37.443,60.5c-8.649,0-16.153-3.143-22.514-9.429C8.644,44.786,5.5,37.264,5.5,28.501
|
11
|
+
c0-8.723,3.144-16.285,9.429-22.685C21.138-0.395,28.643-3.5,37.443-3.5z M37.557,2.272c-7.276,0-13.428,2.572-18.457,7.715
|
12
|
+
c-5.22,5.296-7.829,11.467-7.829,18.513c0,7.125,2.59,13.257,7.77,18.4c5.181,5.182,11.352,7.771,18.514,7.771
|
13
|
+
c7.123,0,13.334-2.609,18.629-7.828c5.029-4.876,7.543-10.99,7.543-18.343c0-7.313-2.553-13.485-7.656-18.513
|
14
|
+
C51.004,4.842,44.832,2.272,37.557,2.272z M58.414,29.072l0.629,0.286v9.028l-0.572,0.284l-7.771,3.315L50.357,42.1l-0.4-0.114
|
15
|
+
l-16.743-6.914l-0.572-0.229l-8.285,3.429l-8.171-3.544V26.5l7.657-3.201l-0.057-0.057v-9.029l8.686-3.828l19.6,8.114v7.943
|
16
|
+
L58.414,29.072z M49.328,39.584v-5.655h-0.057v-0.229l-14.686-6v5.83l14.686,6.058v-0.058L49.328,39.584z M50.299,32.157
|
17
|
+
l5.145-2.114l-4.744-2l-5.029,2.114L50.299,32.157z M57.043,37.072V31.53l-5.715,2.4v5.6L57.043,37.072z"/>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</svg>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="36.944" cy="28.631" r="29.105"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.443-3.5c8.951,0,16.531,3.105,22.742,9.315C66.393,11.987,69.5,19.548,69.5,28.5c0,8.954-3.049,16.457-9.145,22.514
|
10
|
+
C53.918,57.338,46.279,60.5,37.443,60.5c-8.649,0-16.153-3.143-22.514-9.429C8.644,44.786,5.5,37.264,5.5,28.501
|
11
|
+
c0-8.723,3.144-16.285,9.429-22.685C21.138-0.395,28.643-3.5,37.443-3.5z M37.557,2.272c-7.276,0-13.428,2.572-18.457,7.715
|
12
|
+
c-5.22,5.296-7.829,11.467-7.829,18.513c0,7.125,2.59,13.257,7.77,18.4c5.181,5.182,11.352,7.771,18.514,7.771
|
13
|
+
c7.123,0,13.334-2.609,18.629-7.828c5.029-4.876,7.543-10.99,7.543-18.343c0-7.313-2.553-13.485-7.656-18.513
|
14
|
+
C51.004,4.842,44.832,2.272,37.557,2.272z M23.271,23.985c0.609-3.924,2.189-6.962,4.742-9.114
|
15
|
+
c2.552-2.152,5.656-3.228,9.314-3.228c5.027,0,9.029,1.62,12,4.856c2.971,3.238,4.457,7.391,4.457,12.457
|
16
|
+
c0,4.915-1.543,9-4.627,12.256c-3.088,3.256-7.086,4.886-12.002,4.886c-3.619,0-6.743-1.085-9.371-3.257
|
17
|
+
c-2.629-2.172-4.209-5.257-4.743-9.257H31.1c0.19,3.886,2.533,5.829,7.029,5.829c2.246,0,4.057-0.972,5.428-2.914
|
18
|
+
c1.373-1.942,2.059-4.534,2.059-7.771c0-3.391-0.629-5.971-1.885-7.743c-1.258-1.771-3.066-2.657-5.43-2.657
|
19
|
+
c-4.268,0-6.667,1.885-7.2,5.656h2.343l-6.342,6.343l-6.343-6.343L23.271,23.985L23.271,23.985z"/>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</svg>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="37.447" cy="28.448" r="28.042"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.46-3.5c-8.864,0-16.367,3.093-22.509,9.28C8.65,12.18,5.5,19.753,5.5,28.5c0,8.748,3.15,16.269,9.451,22.56
|
10
|
+
c6.301,6.295,13.804,9.44,22.509,9.44c8.811,0,16.447-3.173,22.909-9.519C66.454,44.953,69.5,37.459,69.5,28.5
|
11
|
+
c0-8.96-3.098-16.533-9.291-22.72C54.014-0.407,46.432-3.5,37.46-3.5z M37.54,2.259c7.263,0,13.43,2.56,18.503,7.681
|
12
|
+
c5.125,5.066,7.688,11.252,7.688,18.56c0,7.359-2.508,13.468-7.528,18.32c-5.287,5.228-11.509,7.841-18.663,7.841
|
13
|
+
c-7.156,0-13.323-2.59-18.502-7.761c-5.181-5.173-7.771-11.309-7.771-18.4c0-7.094,2.616-13.281,7.85-18.56
|
14
|
+
C24.137,4.819,30.277,2.259,37.54,2.259z"/>
|
15
|
+
<path d="M51.362,28.791c-0.607,0-1.155,0.365-1.385,0.925l-0.511,1.228l-1.424-11.979c-0.093-0.764-0.747-1.337-1.52-1.323
|
16
|
+
c-0.767,0.015-1.404,0.61-1.466,1.378l-0.549,6.637l-0.671-8.882c-0.061-0.779-0.71-1.386-1.492-1.386
|
17
|
+
c-0.785-0.002-1.437,0.602-1.498,1.382l-0.451,5.796l-0.766-12.162c-0.05-0.791-0.703-1.407-1.498-1.407
|
18
|
+
c-0.793,0.002-1.447,0.618-1.495,1.41l-0.659,10.8l-0.557-8.552c-0.051-0.791-0.703-1.403-1.494-1.403
|
19
|
+
c-0.792,0-1.446,0.61-1.498,1.401L31.747,23l-0.534-7.349c-0.059-0.78-0.703-1.386-1.484-1.392
|
20
|
+
c-0.783-0.005-1.439,0.591-1.506,1.372l-0.999,11.59l-0.23-1.576c-0.098-0.653-0.606-1.166-1.26-1.265
|
21
|
+
c-0.655-0.099-1.294,0.241-1.577,0.838l-1.698,3.572h-5.667v2.998h6.615c0.564,0,1.083-0.318,1.337-0.82l1.386,9.436
|
22
|
+
c0.111,0.751,0.77,1.303,1.528,1.28c0.761-0.023,1.383-0.614,1.451-1.368l0.484-5.621l0.732,10.107
|
23
|
+
c0.06,0.786,0.714,1.395,1.502,1.391c0.789-0.002,1.44-0.616,1.491-1.4l0.6-9.089l0.616,9.464c0.051,0.789,0.707,1.402,1.499,1.4
|
24
|
+
c0.793,0,1.445-0.618,1.494-1.407l0.634-10.384l0.582,9.262c0.048,0.783,0.699,1.398,1.486,1.404
|
25
|
+
c0.786,0.007,1.444-0.602,1.505-1.384l0.588-7.564l0.632,8.312c0.058,0.782,0.705,1.385,1.486,1.387
|
26
|
+
c0.784,0.004,1.437-0.596,1.5-1.375l0.882-10.705l0.344,2.88c0.079,0.68,0.606,1.214,1.284,1.31
|
27
|
+
c0.678,0.093,1.329-0.28,1.589-0.912l2.324-5.601h6.515v-2.999H51.362z M41.296,29.465h-2.831v2.831
|
28
|
+
c0,0.534-0.432,0.966-0.964,0.966c-0.534,0-0.968-0.432-0.968-0.966v-2.831h-2.83c-0.533,0-0.967-0.432-0.967-0.964
|
29
|
+
c0-0.534,0.434-0.967,0.967-0.967h2.83v-2.832c0-0.534,0.434-0.966,0.968-0.966c0.532,0,0.964,0.432,0.964,0.966v2.832h2.831
|
30
|
+
c0.533,0,0.966,0.432,0.966,0.967C42.262,29.033,41.829,29.465,41.296,29.465z"/>
|
31
|
+
</g>
|
32
|
+
</g>
|
33
|
+
</svg>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="38.05" cy="28.468" r="29.482"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.443-3.5c8.988,0,16.58,3.096,22.77,9.286C66.404,11.976,69.5,19.547,69.5,28.5c0,8.954-3.049,16.437-9.145,22.456
|
10
|
+
C53.918,57.319,46.279,60.5,37.443,60.5c-8.687,0-16.182-3.144-22.486-9.43C8.651,44.784,5.5,37.262,5.5,28.5
|
11
|
+
c0-8.761,3.144-16.342,9.429-22.742C21.101-0.415,28.604-3.5,37.443-3.5z M37.529,2.272c-7.257,0-13.401,2.553-18.428,7.657
|
12
|
+
c-5.22,5.296-7.829,11.486-7.829,18.572s2.59,13.22,7.771,18.398c5.181,5.182,11.352,7.771,18.514,7.771
|
13
|
+
c7.162,0,13.371-2.607,18.629-7.828c5.029-4.877,7.543-10.991,7.543-18.343c0-7.314-2.553-13.504-7.656-18.571
|
14
|
+
C50.967,4.824,44.785,2.272,37.529,2.272z M38.014,9.128c0.381-0.038,0.715,0.067,1.002,0.314
|
15
|
+
c0.285,0.249,0.445,0.563,0.484,0.943v0.229l0.857,13.828l0.629-7.657c0-0.381,0.133-0.705,0.398-0.971s0.592-0.401,0.971-0.401
|
16
|
+
c0.381,0,0.705,0.134,0.973,0.401c0.266,0.267,0.4,0.59,0.4,0.971v0.228l0.74,10.286l0.744-8.285
|
17
|
+
c0.037-0.342,0.182-0.629,0.43-0.857c0.246-0.229,0.541-0.342,0.885-0.342s0.648,0.106,0.914,0.314
|
18
|
+
c0.268,0.21,0.42,0.486,0.459,0.829l1.486,12.457l0.686-1.657c0.229-0.572,0.666-0.858,1.312-0.858h7.486v2.744h-6.572
|
19
|
+
l-2.342,5.714c-0.268,0.685-0.764,0.972-1.486,0.856c-0.342-0.038-0.619-0.172-0.828-0.4s-0.334-0.514-0.371-0.857l-0.514-4.114
|
20
|
+
l-0.971,11.942c-0.039,0.341-0.182,0.628-0.43,0.856s-0.543,0.343-0.887,0.343c-0.342,0-0.646-0.114-0.914-0.343
|
21
|
+
c-0.266-0.229-0.418-0.513-0.457-0.856v-0.172l-0.799-9.886l-0.686,9.315c-0.078,0.342-0.24,0.629-0.486,0.857
|
22
|
+
c-0.248,0.229-0.543,0.342-0.887,0.342c-0.342,0-0.648-0.113-0.914-0.342s-0.42-0.515-0.457-0.857V43.87l-0.744-11.143
|
23
|
+
l-0.742,12.229v0.172c0,0.382-0.135,0.713-0.4,0.999s-0.59,0.43-0.971,0.43c-0.383,0-0.705-0.144-0.971-0.43
|
24
|
+
c-0.268-0.286-0.402-0.617-0.402-0.999v-0.115l-0.742-11.313l-0.686,10.914v0.171c-0.077,0.344-0.238,0.63-0.485,0.857
|
25
|
+
c-0.248,0.229-0.543,0.343-0.885,0.343s-0.648-0.114-0.914-0.343c-0.267-0.228-0.419-0.514-0.458-0.857v-0.171h-0.056v-0.17
|
26
|
+
l-0.8-11.428l-0.629,7.313c-0.038,0.344-0.191,0.63-0.457,0.857c-0.267,0.229-0.571,0.344-0.914,0.344
|
27
|
+
c-0.343,0-0.639-0.105-0.887-0.315c-0.248-0.208-0.41-0.485-0.486-0.828l-1.429-9.828l-0.171,0.341
|
28
|
+
c-0.228,0.496-0.648,0.744-1.258,0.744h-6.628V28.9h5.772l1.771-3.6c0.267-0.609,0.732-0.867,1.4-0.772
|
29
|
+
c0.666,0.095,1.057,0.467,1.171,1.114l0.4,2.628l1.085-12.628c0-0.381,0.133-0.705,0.4-0.971s0.59-0.401,0.971-0.401
|
30
|
+
s0.704,0.134,0.971,0.401c0.267,0.267,0.399,0.59,0.399,0.971v0.228l0.629,8.915l0.857-11.942v-0.171
|
31
|
+
c0.037-0.343,0.18-0.629,0.428-0.857c0.247-0.228,0.542-0.342,0.886-0.342s0.648,0.114,0.914,0.342
|
32
|
+
c0.268,0.229,0.418,0.514,0.457,0.857v0.171l0.686,10.4l0.801-12.628v-0.229c0-0.342,0.123-0.629,0.371-0.857
|
33
|
+
C37.375,9.3,37.67,9.167,38.014,9.128z"/>
|
34
|
+
</g>
|
35
|
+
</g>
|
36
|
+
</svg>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="5.5 -3.5 64 64" enable-background="new 5.5 -3.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="37.946" cy="28.887" r="29.704"/>
|
8
|
+
<g>
|
9
|
+
<path d="M37.443-3.5c8.951,0,16.531,3.105,22.742,9.315C66.393,11.987,69.5,19.548,69.5,28.5c0,8.954-3.049,16.457-9.145,22.514
|
10
|
+
C53.918,57.338,46.279,60.5,37.443,60.5c-8.649,0-16.153-3.143-22.514-9.429C8.644,44.786,5.5,37.264,5.5,28.501
|
11
|
+
c0-8.723,3.144-16.285,9.429-22.685C21.138-0.395,28.643-3.5,37.443-3.5z M37.557,2.272c-7.276,0-13.428,2.572-18.457,7.715
|
12
|
+
c-5.22,5.296-7.829,11.467-7.829,18.513c0,7.125,2.59,13.257,7.77,18.4c5.181,5.182,11.352,7.771,18.514,7.771
|
13
|
+
c7.123,0,13.334-2.609,18.629-7.828c5.029-4.876,7.543-10.99,7.543-18.343c0-7.313-2.553-13.485-7.656-18.513
|
14
|
+
C51.004,4.842,44.832,2.272,37.557,2.272z M50.586,19.357c0.494,0,0.914,0.171,1.256,0.513c0.344,0.343,0.516,0.763,0.516,1.258
|
15
|
+
v23.542c0,0.495-0.172,0.914-0.516,1.256c-0.342,0.343-0.762,0.516-1.256,0.516H33.157c-0.496,0-0.914-0.171-1.258-0.516
|
16
|
+
c-0.344-0.343-0.514-0.761-0.514-1.256v-6.973h-6.971c-0.497,0-0.915-0.17-1.258-0.513c-0.342-0.342-0.514-0.761-0.514-1.258
|
17
|
+
V12.386c0-0.458,0.151-0.848,0.458-1.171c0.303-0.323,0.685-0.523,1.142-0.6h0.171h17.428c0.494,0,0.914,0.171,1.258,0.514
|
18
|
+
c0.342,0.342,0.514,0.763,0.514,1.258v6.972H50.586z M26.128,34.214h5.257V21.128c0-0.457,0.151-0.847,0.458-1.171
|
19
|
+
c0.304-0.322,0.667-0.523,1.085-0.6h0.228h6.972v-5.2h-14V34.214z M48.871,22.842h-14v20.058h14V22.842z"/>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</svg>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="64px" height="64px" viewBox="-0.5 0.5 64 64" enable-background="new -0.5 0.5 64 64" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<circle fill="#FFFFFF" cx="31.325" cy="32.873" r="30.096"/>
|
8
|
+
<path id="text2809_1_" d="M31.5,14.08c-10.565,0-13.222,9.969-13.222,18.42c0,8.452,2.656,18.42,13.222,18.42
|
9
|
+
c10.564,0,13.221-9.968,13.221-18.42C44.721,24.049,42.064,14.08,31.5,14.08z M31.5,21.026c0.429,0,0.82,0.066,1.188,0.157
|
10
|
+
c0.761,0.656,1.133,1.561,0.403,2.823l-7.036,12.93c-0.216-1.636-0.247-3.24-0.247-4.437C25.808,28.777,26.066,21.026,31.5,21.026z
|
11
|
+
M36.766,26.987c0.373,1.984,0.426,4.056,0.426,5.513c0,3.723-0.258,11.475-5.69,11.475c-0.428,0-0.822-0.045-1.188-0.136
|
12
|
+
c-0.07-0.021-0.134-0.043-0.202-0.067c-0.112-0.032-0.23-0.068-0.336-0.11c-1.21-0.515-1.972-1.446-0.874-3.093L36.766,26.987z"/>
|
13
|
+
<path id="path2815_1_" d="M31.433,0.5c-8.877,0-16.359,3.09-22.454,9.3c-3.087,3.087-5.443,6.607-7.082,10.532
|
14
|
+
C0.297,24.219-0.5,28.271-0.5,32.5c0,4.268,0.797,8.32,2.397,12.168c1.6,3.85,3.921,7.312,6.969,10.396
|
15
|
+
c3.085,3.049,6.549,5.399,10.398,7.037c3.886,1.602,7.939,2.398,12.169,2.398c4.229,0,8.34-0.826,12.303-2.465
|
16
|
+
c3.962-1.639,7.496-3.994,10.621-7.081c3.011-2.933,5.289-6.297,6.812-10.106C62.73,41,63.5,36.883,63.5,32.5
|
17
|
+
c0-4.343-0.77-8.454-2.33-12.303c-1.562-3.885-3.848-7.32-6.857-10.33C48.025,3.619,40.385,0.5,31.433,0.5z M31.567,6.259
|
18
|
+
c7.238,0,13.412,2.566,18.554,7.709c2.477,2.477,4.375,5.31,5.67,8.471c1.296,3.162,1.949,6.518,1.949,10.061
|
19
|
+
c0,7.354-2.516,13.454-7.506,18.33c-2.592,2.516-5.502,4.447-8.74,5.781c-3.2,1.334-6.498,1.994-9.927,1.994
|
20
|
+
c-3.468,0-6.788-0.653-9.949-1.948c-3.163-1.334-6.001-3.238-8.516-5.716c-2.515-2.514-4.455-5.353-5.826-8.516
|
21
|
+
c-1.333-3.199-2.017-6.498-2.017-9.927c0-3.467,0.684-6.787,2.017-9.949c1.371-3.2,3.312-6.074,5.826-8.628
|
22
|
+
C18.092,8.818,24.252,6.259,31.567,6.259z"/>
|
23
|
+
</g>
|
24
|
+
</svg>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
version="1.1"
|
11
|
+
width="520"
|
12
|
+
height="520"
|
13
|
+
id="svg2">
|
14
|
+
<defs
|
15
|
+
id="defs4" />
|
16
|
+
<metadata
|
17
|
+
id="metadata7">
|
18
|
+
<rdf:RDF>
|
19
|
+
<cc:Work
|
20
|
+
rdf:about="">
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
22
|
+
<dc:type
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
24
|
+
<dc:title></dc:title>
|
25
|
+
</cc:Work>
|
26
|
+
</rdf:RDF>
|
27
|
+
</metadata>
|
28
|
+
<g
|
29
|
+
transform="translate(0,-552.36218)"
|
30
|
+
id="layer1"
|
31
|
+
style="display:inline" />
|
32
|
+
<g
|
33
|
+
id="layer2"
|
34
|
+
style="display:inline" />
|
35
|
+
<g
|
36
|
+
id="g4440"
|
37
|
+
style="display:inline">
|
38
|
+
<path
|
39
|
+
d="m 450,260 a 190,190 0 1 1 -380,0 190,190 0 1 1 380,0 z"
|
40
|
+
transform="matrix(0.42846632,0,0,0.42846632,52.108883,148.07338)"
|
41
|
+
id="path4442"
|
42
|
+
style="color:#000000;fill:#0063db;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:27.39999962;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
43
|
+
</g>
|
44
|
+
<g
|
45
|
+
id="g4549"
|
46
|
+
style="display:inline">
|
47
|
+
<path
|
48
|
+
d="m 450,260 a 190,190 0 1 1 -380,0 190,190 0 1 1 380,0 z"
|
49
|
+
transform="matrix(0.42846632,0,0,0.42846632,247.06832,148.07338)"
|
50
|
+
id="path4551"
|
51
|
+
style="color:#000000;fill:#ff0084;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:27.39999962;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
52
|
+
</g>
|
53
|
+
<g
|
54
|
+
id="layer3"
|
55
|
+
style="display:none">
|
56
|
+
<path
|
57
|
+
d="M 255.82592,1.1998647 106.97517,-24.556581 15.744166,101.04401 41.500612,-47.806733 -84.099982,-139.03774 l 148.850746,25.75645 91.231006,-125.6006 -25.75644,148.850747 z"
|
58
|
+
transform="matrix(0.98443129,-0.17576975,0.17576975,0.98443129,188.5014,342.94807)"
|
59
|
+
id="path4444"
|
60
|
+
style="color:#000000;fill:#0265c6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:27.39999962;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
61
|
+
</g>
|
62
|
+
<g
|
63
|
+
id="g3866"
|
64
|
+
style="display:none" />
|
65
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
+
width="1034"
|
11
|
+
height="10"
|
12
|
+
id="svg2"
|
13
|
+
version="1.1"
|
14
|
+
inkscape:version="0.48.4 r9939"
|
15
|
+
sodipodi:docname="progress.svg">
|
16
|
+
<metadata
|
17
|
+
id="metadata10">
|
18
|
+
<rdf:RDF>
|
19
|
+
<cc:Work
|
20
|
+
rdf:about="">
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
22
|
+
<dc:type
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
24
|
+
<dc:title></dc:title>
|
25
|
+
</cc:Work>
|
26
|
+
</rdf:RDF>
|
27
|
+
</metadata>
|
28
|
+
<defs
|
29
|
+
id="defs8" />
|
30
|
+
<sodipodi:namedview
|
31
|
+
pagecolor="#ffffff"
|
32
|
+
bordercolor="#666666"
|
33
|
+
borderopacity="1"
|
34
|
+
objecttolerance="10"
|
35
|
+
gridtolerance="10"
|
36
|
+
guidetolerance="10"
|
37
|
+
inkscape:pageopacity="0"
|
38
|
+
inkscape:pageshadow="2"
|
39
|
+
inkscape:window-width="1362"
|
40
|
+
inkscape:window-height="734"
|
41
|
+
id="namedview6"
|
42
|
+
showgrid="false"
|
43
|
+
inkscape:zoom="9.377176"
|
44
|
+
inkscape:cx="995.89693"
|
45
|
+
inkscape:cy="19.989715"
|
46
|
+
inkscape:window-x="2"
|
47
|
+
inkscape:window-y="17"
|
48
|
+
inkscape:window-maximized="0"
|
49
|
+
inkscape:current-layer="svg2" />
|
50
|
+
<polygon
|
51
|
+
fill="#4B86C2"
|
52
|
+
points="0,0 1024,0 1034,10 0,10"
|
53
|
+
id="polygon4"
|
54
|
+
style="fill:#46413c;fill-opacity:1" />
|
55
|
+
</svg>
|