update installer

workspace
Brendan Howell 4 years ago
parent 6e23617c85
commit 5915728a2f

@ -1,5 +1,5 @@
#!/usr/bin/env bash
sudo apt install vlc git python3-dev build-essential python3-pip python3-wheel python3-cffi python3-venv libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info cups libzmq-dev fortunes-off cups-bsd liblmdb-dev tcl8.6-dev tk8.6-dev libxml2-dev libxslt1-dev uvccapture uvcdynctrl
sudo apt install vlc git python3-dev build-essential python3-pip python3-wheel python3-cffi python3-venv pmount fuse3 libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info cups libzmq-dev fortunes-off cups-bsd liblmdb-dev tcl8.6-dev tk8.6-dev libxml2-dev libxslt1-dev uvccapture uvcdynctrl
if sudo apt install linux-headers-$(uname -r) ; then
echo "installed kernel headers for debian"
else

@ -17,11 +17,13 @@
}
pre, code {
font-family: "Fantasque Sans Mono";
}
pre {
column-span: all;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Cormorant SC";
font-weight: 400;
font-weight: 400;
}
img {
max-width: 100%;

@ -112,6 +112,16 @@
text-align: justify;
hyphens: auto;
}
.forecast {
clear: both;
}
.weatherday {
float: left;
width: 25%;
}
.weatherperiod img {
width: 50%;
}
.mail {
clear: both;
}
@ -172,6 +182,34 @@
<div class="barcode">${entry.svg}</div>
</div>
% endfor
</div>
<div id="forecast">
<h2>Weather</h2>
<%
daycount = 0
curr_day = "Today"
%>
<div class="weatherday">
% for period in forecast:
% if daycount > 4:
% continue
% endif
% if period.day != curr_day:
% daycount += 1
% curr_day = period["day"]
</div>
<div class="weatherday">
<h6>${period["day"]}</h6>
% endif
<div class="weatherperiod">
<img src="${period['symbol']"}
<p class="weathertime">${period["period"]}</p>
<p class="weathertemp">${period["mintemp"]} ${period["maxtemp"]}</p>
</div>
% endfor
</div>
</div>
% if len(inbox) > 0:
<div id="email">

@ -20,6 +20,7 @@ from readability import readability
import requests
from bureau import Bureau, add_command, add_api
from . import weather
class Publications(Bureau):
@ -46,6 +47,7 @@ class Publications(Bureau):
self.urldb = self.dbenv.open_db(b"urldb")
self.rev_urldb = self.dbenv.open_db(b"rev_urldb")
def _make_shorturl(self, url):
def _shortcode():
return ''.join(random.choice(string.ascii_letters + string.digits)
@ -118,13 +120,15 @@ class Publications(Bureau):
information can also be shown.
"""
news = self._get_news()
# TODO: get weather
# TODO: get finance
inbox = self.send("PO", "unread")
date = datetime.today().strftime("%A %B %e, %Y")
if inbox is None:
inbox = [] # if IMAP times out just move on...
self.print_full("news.html", news=news, inbox=inbox, date=date)
lat, lon = self.config["latlon"]
forecast = weather.get_forecast(lat, lon)
self.print_full("news.html", news=news, inbox=inbox, date=date,
forecast=forecast)
@add_command("r", "Print a web page for reading")
def print_url(self, data):
@ -338,7 +342,7 @@ class Publications(Bureau):
print("fetching", entry.img, filename)
urllib.request.urlretrieve(entry.img, filename)
entry.img = "file://" + filename
except urllib.error.HTTPError as err:
except urllib.error.HTTPError, ValueError as err:
self.log.error(err)
entry.img = " "

@ -0,0 +1,74 @@
import datetime
import os.path
import requests
def get_weather_json(lat, lon):
"""
fetches weather from the Norwegian meteorological institute
for a given latitude and longitude. Returns an object with a
3-day forecast with morning, afternoon, evening and overnight
periods. NOTE: This is not tidied up. Use get_forecast for
nicer formatted stuff.
"""
url = "https://api.met.no/weatherapi/locationforecast/1.9/.json"
params = { "lat": lat, "lon": lon }
# https://api.met.no/weatherapi/locationforecast/1.9/.json?lat=52.50639&lon=13.4063
resp = requests.get(url=url, params=params)
return resp.json()
def get_forecast(lat, lon):
"""
returns a list of forecast dicts:
forecast = { "fromtime": datetime, "totime": datetime,
"symbol": "pathto.svg", "mintemp": "12.7",
"maxtemp": "16.8", "period": "Morning"}
"""
thisdir = os.path.dirname(os.path.abspath(__file__))
periods = {6: "Morning", 12: "Afternoon", 18: "Evening", 0: "Night"}
# Berlin - "52.5", "13.4"
w = get_weather_json(lat, lon)
forecasts = []
for t in w["product"]["time"]:
# need to strip the trainling 'Z' char which indicates UTC
fr = datetime.datetime.fromisoformat(t["from"][:-1])
to = datetime.datetime.fromisoformat(t["to"][:-1])
dtdelta = datetime.date.today() - fr.date()
if dtdelta == datetime.timedelta(days=0):
day_of = "Today"
elif dtdelta == datetime.timedelta(days=-1):
day_of = "Tomorrow"
else:
days = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
day_of = days[fr.weekday()]
if fr.hour not in (0, 6, 12, 18):
continue
if(to-fr == datetime.timedelta(hours=6)):
mintemp = t["location"]["minTemperature"]["value"]
maxtemp = t["location"]["maxTemperature"]["value"]
symbol = t["location"]["symbol"]["id"].lower()
png = symbol
if fr.hour in (18, 0):
symbol += "-night.svg"
png += "-night.png"
else:
symbol += ".svg"
png += ".png"
icon = os.path.join(thisdir, "weather_icons", symbol)
forecast = {"fromtime": fr, "totime": to, "symbol": icon,
"mintemp": mintemp, "maxtemp": maxtemp, "png": png,
"period": periods[fr.hour], "day": day_of}
forecasts.append(forecast)
return forecasts
if __name__ == "__main__":
from pprint import pprint
pprint(get_forecast("52.5","13.4"))

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,313 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="cloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="17.369565"
inkscape:cx="17.105131"
inkscape:cy="24.82888"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m 6.0676253,2.9033262 c 0.8551791,0 1.5880349,0.4841653 1.9776499,1.1819493 C 8.2646155,3.921 8.5447661,3.8146925 8.852205,3.8146925 c 0.6987275,0 1.265811,0.5103623 1.265811,1.1392036 0,0.1412227 -0.02683,0.2738625 -0.0791,0.3987186 0.794677,0.3194391 1.344899,1.0430601 1.344899,1.8796985 0,1.1360149 -1.016191,2.0505578 -2.2784606,2.0505578 h -4.556713 c -1.2622673,0 -2.2784604,-0.9145429 -2.2784604,-2.0505578 0,-0.8999783 0.6420189,-1.6591391 1.5346673,-1.9366519 0,-0.038691 -0.015699,-0.074498 -0.015699,-0.1138843 0,-1.2576946 1.0207497,-2.2784176 2.2784619,-2.2784176 z"
id="path22-9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,313 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="cloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="17.369565"
inkscape:cx="17.105131"
inkscape:cy="24.82888"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m 6.0676253,2.9033262 c 0.8551791,0 1.5880349,0.4841653 1.9776499,1.1819493 C 8.2646155,3.921 8.5447661,3.8146925 8.852205,3.8146925 c 0.6987275,0 1.265811,0.5103623 1.265811,1.1392036 0,0.1412227 -0.02683,0.2738625 -0.0791,0.3987186 0.794677,0.3194391 1.344899,1.0430601 1.344899,1.8796985 0,1.1360149 -1.016191,2.0505578 -2.2784606,2.0505578 h -4.556713 c -1.2622673,0 -2.2784604,-0.9145429 -2.2784604,-2.0505578 0,-0.8999783 0.6420189,-1.6591391 1.5346673,-1.9366519 0,-0.038691 -0.015699,-0.074498 -0.015699,-0.1138843 0,-1.2576946 1.0207497,-2.2784176 2.2784619,-2.2784176 z"
id="path22-9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1,409 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="fog_02.svg"
inkscape:export-filename="/home/limaa/Art/Weather/flat-circle-pomocne/0.2/scalable/fog_02_128.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.451865"
inkscape:cx="-1.4564434"
inkscape:cy="24.507145"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<inkscape:path-effect
effect="spiro"
id="path-effect4018"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3908"
is_visible="true" />
<inkscape:path-effect
effect="skeletal"
id="path-effect3904"
is_visible="true"
pattern="M 0,5 C 0,2.24 2.24,0 5,0 7.76,0 10,2.24 10,5 10,7.76 7.76,10 5,10 2.24,10 0,7.76 0,5 z"
copytype="single_stretched"
prop_scale="1"
scale_y_rel="false"
spacing="0"
normal_offset="0"
tang_offset="0"
prop_units="false"
vertical_pattern="false"
fuse_tolerance="0" />
<inkscape:path-effect
effect="spiro"
id="path-effect3902"
is_visible="true" />
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-7"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-4"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-0"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-6"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-8"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-2"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1-8"
is_visible="true" />
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-8" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="translate(-0.0154747,-1.3434711)"
style="fill-rule:evenodd"
id="g3956-41" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,6.8319855 C 3.4740594,6.2505256 4.5325516,6.0388272 5.495434,6.2675411 6.4833561,6.5022026 7.3297343,7.1617684 8.3176563,7.39643 9.2805389,7.6251439 10.339031,7.4134455 11.139879,6.8319855"
id="path4016"
inkscape:path-effect="#path-effect4018"
inkscape:original-d="m 2.6732117,6.8319855 c 0,0 1.8668693,-0.6521574 2.8222223,-0.5644444 C 6.5043992,6.3601761 6.9284183,7.4477101 8.3176563,7.39643 9.0171555,7.37061 11.139879,6.8319855 11.139879,6.8319855"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,5.1386521 C 3.4740594,4.5571922 4.5325516,4.3454938 5.4954341,4.5742077 6.4833562,4.8088693 7.3297343,5.468435 8.3176564,5.7030966 9.2805389,5.9318105 10.339031,5.7201121 11.139879,5.1386521"
id="path4016-5"
inkscape:path-effect="#path-effect4018-1"
inkscape:original-d="m 2.6732117,5.1386521 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,8.5253188 C 3.4740594,7.9438589 4.5325516,7.7321605 5.4954341,7.9608744 6.4833562,8.195536 7.3297343,8.8551017 8.3176564,9.0897633 9.2805389,9.3184772 10.339031,9.1067788 11.139879,8.5253188"
id="path4016-5-1"
inkscape:path-effect="#path-effect4018-1-8"
inkscape:original-d="m 2.6732117,8.5253188 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1,409 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="fog-night.svg"
inkscape:export-filename="/home/limaa/Art/Weather/flat-circle-pomocne/0.2/scalable/fog_02_128.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.451865"
inkscape:cx="-1.4564434"
inkscape:cy="24.507145"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<inkscape:path-effect
effect="spiro"
id="path-effect4018"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3908"
is_visible="true" />
<inkscape:path-effect
effect="skeletal"
id="path-effect3904"
is_visible="true"
pattern="M 0,5 C 0,2.24 2.24,0 5,0 7.76,0 10,2.24 10,5 10,7.76 7.76,10 5,10 2.24,10 0,7.76 0,5 z"
copytype="single_stretched"
prop_scale="1"
scale_y_rel="false"
spacing="0"
normal_offset="0"
tang_offset="0"
prop_units="false"
vertical_pattern="false"
fuse_tolerance="0" />
<inkscape:path-effect
effect="spiro"
id="path-effect3902"
is_visible="true" />
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-7"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-4"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-0"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-6"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-8"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-2"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1-8"
is_visible="true" />
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-8" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="translate(-0.0154747,-1.3434711)"
style="fill-rule:evenodd"
id="g3956-41" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,6.8319855 C 3.4740594,6.2505256 4.5325516,6.0388272 5.495434,6.2675411 6.4833561,6.5022026 7.3297343,7.1617684 8.3176563,7.39643 9.2805389,7.6251439 10.339031,7.4134455 11.139879,6.8319855"
id="path4016"
inkscape:path-effect="#path-effect4018"
inkscape:original-d="m 2.6732117,6.8319855 c 0,0 1.8668693,-0.6521574 2.8222223,-0.5644444 C 6.5043992,6.3601761 6.9284183,7.4477101 8.3176563,7.39643 9.0171555,7.37061 11.139879,6.8319855 11.139879,6.8319855"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,5.1386521 C 3.4740594,4.5571922 4.5325516,4.3454938 5.4954341,4.5742077 6.4833562,4.8088693 7.3297343,5.468435 8.3176564,5.7030966 9.2805389,5.9318105 10.339031,5.7201121 11.139879,5.1386521"
id="path4016-5"
inkscape:path-effect="#path-effect4018-1"
inkscape:original-d="m 2.6732117,5.1386521 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,8.5253188 C 3.4740594,7.9438589 4.5325516,7.7321605 5.4954341,7.9608744 6.4833562,8.195536 7.3297343,8.8551017 8.3176564,9.0897633 9.2805389,9.3184772 10.339031,9.1067788 11.139879,8.5253188"
id="path4016-5-1"
inkscape:path-effect="#path-effect4018-1-8"
inkscape:original-d="m 2.6732117,8.5253188 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,328 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightcloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="12.865556"
inkscape:cy="23.149785"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#cccccc">
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.30521134,0,0,0.30521134,-1.2986775,-13.886131)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -7.5912474,-3.9987827 c 0.4237176,0 0.7868276,0.2398906 0.9798712,0.5856233 0.1086768,-0.081394 0.2474839,-0.1340664 0.3998115,-0.1340664 0.3461999,0 0.6271749,0.2528705 0.6271749,0.564444 0,0.069972 -0.013296,0.1356913 -0.039189,0.197554 0.3937405,0.1582734 0.6663602,0.5168076 0.6663602,0.9313388 0,0.5628641 -0.5034947,1.01599485 -1.1289146,1.01599485 H -8.34386 c -0.6254186,0 -1.1289143,-0.45313075 -1.1289143,-1.01599485 0,-0.4459145 0.3181026,-0.8220577 0.7603854,-0.9595576 0,-0.01917 -0.00778,-0.036912 -0.00778,-0.056426 0,-0.6231529 0.5057533,-1.1288931 1.128915,-1.1288931 z"
id="path22" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,327 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightcloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="12.865556"
inkscape:cy="23.149785"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.30521134,0,0,0.30521134,-1.2986775,-13.886131)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -7.5912474,-3.9987827 c 0.4237176,0 0.7868276,0.2398906 0.9798712,0.5856233 0.1086768,-0.081394 0.2474839,-0.1340664 0.3998115,-0.1340664 0.3461999,0 0.6271749,0.2528705 0.6271749,0.564444 0,0.069972 -0.013296,0.1356913 -0.039189,0.197554 0.3937405,0.1582734 0.6663602,0.5168076 0.6663602,0.9313388 0,0.5628641 -0.5034947,1.01599485 -1.1289146,1.01599485 H -8.34386 c -0.6254186,0 -1.1289143,-0.45313075 -1.1289143,-1.01599485 0,-0.4459145 0.3181026,-0.8220577 0.7603854,-0.9595576 0,-0.01917 -0.00778,-0.036912 -0.00778,-0.056426 0,-0.6231529 0.5057533,-1.1288931 1.128915,-1.1288931 z"
id="path22" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="7.3905231"
inkscape:cy="19.24047"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,408 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="8.582485"
inkscape:cy="20.970822"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,417 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="7.3905231"
inkscape:cy="19.24047"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.23477795,0,0,0.23477795,-2.9711433,-11.076491)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,417 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrainsun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="7.3905231"
inkscape:cy="19.24047"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.23477795,0,0,0.23477795,-2.9711433,-11.076491)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,519 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrainthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="23.643874"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-6" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1,519 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrainthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="23.643874"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-6" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,528 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrainthundersun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="23.643874"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-6" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23692332,0,0,0.23692332,8.8929255,0.19170178)" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1,528 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrainthundersun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="23.643874"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-6" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23692332,0,0,0.23692332,8.8929255,0.19170178)" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,320 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="nodata.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="10.464702"
inkscape:cy="23.79107"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.89999998"
y="0.79366666"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<text
xml:space="preserve"
style="font-size:11.28888893px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="2.7770667"
y="10.577689"
id="text3035"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3037"
x="2.7770667"
y="10.577689"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L Bold Italic;fill:#f2f2f2">?</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,327 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="partlycloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="11.888233"
inkscape:cx="6.2661558"
inkscape:cy="23.405088"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.21428648,0,0,0.21428648,-0.68197978,-11.705864)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -6.3032069,-5.7795462 c 0.7170606,0 1.3315545,0.4059686 1.6582437,0.9910548 0.1839146,-0.1377436 0.4188189,-0.2268816 0.6766039,-0.2268816 0.5858768,0 1.0613731,0.4279346 1.0613731,0.9552129 0,0.1184141 -0.022501,0.2296314 -0.06632,0.3343222 0.6663301,0.2678472 1.1276865,0.8745975 1.1276865,1.5761118 0,0.9525393 -0.8520678,1.71937595 -1.9104708,1.71937595 h -3.8207686 c -1.0584008,0 -1.9104704,-0.76683665 -1.9104704,-1.71937595 0,-0.7546245 0.5383276,-1.3911745 1.286806,-1.6238667 0,-0.032442 -0.013164,-0.062466 -0.013164,-0.095491 0,-1.0545666 0.8558903,-1.9104346 1.9104717,-1.9104346 z"
id="path22" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,327 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="partlycloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="11.888233"
inkscape:cx="6.2661558"
inkscape:cy="23.405088"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.21428648,0,0,0.21428648,-0.68197978,-11.705864)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -6.3032069,-5.7795462 c 0.7170606,0 1.3315545,0.4059686 1.6582437,0.9910548 0.1839146,-0.1377436 0.4188189,-0.2268816 0.6766039,-0.2268816 0.5858768,0 1.0613731,0.4279346 1.0613731,0.9552129 0,0.1184141 -0.022501,0.2296314 -0.06632,0.3343222 0.6663301,0.2678472 1.1276865,0.8745975 1.1276865,1.5761118 0,0.9525393 -0.8520678,1.71937595 -1.9104708,1.71937595 h -3.8207686 c -1.0584008,0 -1.9104704,-0.76683665 -1.9104704,-1.71937595 0,-0.7546245 0.5383276,-1.3911745 1.286806,-1.6238667 0,-0.032442 -0.013164,-0.062466 -0.013164,-0.095491 0,-1.0545666 0.8558903,-1.9104346 1.9104717,-1.9104346 z"
id="path22" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="rain.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="1.308682"
inkscape:cy="21.53839"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-3" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#808080;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="rain.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="1.308682"
inkscape:cy="21.53839"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-3" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#808080;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="rainthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="20.726446"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-9" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#808080;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="rainthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="20.726446"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-9" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#808080;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleet.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="19.702109"
inkscape:cy="22.120453"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#f9f9f9;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleet.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="19.702109"
inkscape:cy="22.120453"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#f9f9f9;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,417 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleet-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="19.702109"
inkscape:cy="22.120453"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23477795,0,0,0.23477795,8.873399,0.25196572)" />
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#f9f9f9;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,417 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleetsun-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="19.702109"
inkscape:cy="22.120453"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23477795,0,0,0.23477795,8.873399,0.25196572)" />
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#f9f9f9;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,528 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="rainthunder-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="20.726446"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-9" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23477795,0,0,0.23477795,8.873399,0.25196572)" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#808080;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1,528 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleetsun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="19.702109"
inkscape:cy="22.120453"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23477795,0,0,0.23477795,8.873399,0.25196572)" />
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.17965921,0.1037263,-0.1037263,0.17965921,3.2489941,6.4471946)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.17965921,0.1037263,-0.1037263,0.17965921,0.1673369,6.2413896)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#f9f9f9;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
id="g4077"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.35931843,0.2074526,-0.2074526,0.35931843,-2.0413802,3.1048094)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleetsunthunder-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="32.54698"
inkscape:cy="20.726446"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-9" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#808080;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sleetsunthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="19.702109"
inkscape:cy="22.120453"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.17965921,0.1037263,-0.1037263,0.17965921,3.2489941,6.4471946)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.17965921,0.1037263,-0.1037263,0.17965921,0.1673369,6.2413896)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#f9f9f9;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
id="g4077"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.35931843,0.2074526,-0.2074526,0.35931843,-2.0413802,3.1048094)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#264e7a;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,526 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snow-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="9.6800945"
inkscape:cy="24.938001"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#cccccc">
<path
inkscape:connector-curvature="0"
style="fill:#cccccc;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,-9.6747499e-8,0.10421069)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866327,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822564,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044107,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110769,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932992,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288547,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.8221877,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365012,0.52754399)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495055,0.57635439)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910976,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789921,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,526 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snow.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="9.6800945"
inkscape:cy="24.974469"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#cccccc">
<path
inkscape:connector-curvature="0"
style="fill:#cccccc;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,0,0.10421071)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866325,0.10421071)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.28225647,0.9508774)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044103,0.9508774)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110769,0.9508774)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932991,0.10421071)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288547,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.8221881,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365013,0.52754406)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495056,0.57635432)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.39109761,1.4820539)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789922,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,536 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snowsun-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="9.6800945"
inkscape:cy="24.938001"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23477795,0,0,0.23477795,8.873399,0.25196572)" />
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#f2f2f2">
<path
inkscape:connector-curvature="0"
style="fill:#f2f2f2;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,3.032525e-7,0.10421069)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866325,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822567,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044103,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110773,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932993,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288543,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.8221883,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365013,0.52754399)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495053,0.57635439)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910973,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789923,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,536 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snowsun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="9.6800945"
inkscape:cy="24.938001"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-4" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23477795,0,0,0.23477795,8.873399,0.25196572)" />
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#cccccc">
<path
inkscape:connector-curvature="0"
style="fill:#cccccc;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,-9.67475e-8,0.10421069)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866321,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822564,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044101,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110771,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932991,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288547,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.8221881,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365012,0.52754399)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495051,0.57635439)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910976,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789921,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,647 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snowsunthunder-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="14.76434"
inkscape:cy="23.976694"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23692332,0,0,0.23692332,8.8929255,0.19170178)" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,-9.6747499e-8,0.10421069)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866325,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822564,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044103,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110769,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932992,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288547,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.822188,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365012,0.52754399)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495055,0.57635439)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910976,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789921,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1,644 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snowsunthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="14.76434"
inkscape:cy="23.976694"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 a 12.020815,12.462757 0 1 1 -24.04162934,0 12.020815,12.462757 0 1 1 24.04162934,0 z"
transform="matrix(0.23692332,0,0,0.23692332,8.8929255,0.19170178)" />
<path
inkscape:transform-center-x="0.5467689"
inkscape:transform-center-y="1.511073"
transform="matrix(0.06090927,0.02286973,-0.07922307,0.21099588,1.3689349,1.2411399)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1;fill-rule:evenodd"
sodipodi:type="star" />
<rect
transform="matrix(0.86602538,0.50000004,-0.50000004,0.86602538,0,0)"
y="5.277164"
x="7.4441543"
height="0.41357914"
width="0.94532377"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1;fill-rule:evenodd" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<rect
transform="matrix(0.86602538,0.50000004,-0.50000004,0.86602538,0,0)"
y="4.2195835"
x="7.4441543"
height="1.0634892"
width="0.41357914"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1;fill-rule:evenodd" />
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4170693,6.4104001)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,3.032525e-7,0.10421069)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.386633,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822557,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044103,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110773,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932993,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288553,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.8221883,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365013,0.52754399)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495063,0.57635439)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910983,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789923,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,637 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snowthunder-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="14.76434"
inkscape:cy="23.976694"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,-9.6747499e-8,0.10421074)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866323,0.10421074)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822564,0.95087744)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044103,0.95087744)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110773,0.95087744)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932993,0.10421074)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288543,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.8221883,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365012,0.52754404)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495053,0.57635444)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910976,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789923,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

@ -0,0 +1,637 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="snowthunder.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="14.76434"
inkscape:cy="24.013162"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
id="g4077-9"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,0.30731858,6.2026063)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
id="g4077-9-8"
style="fill:#ffd42a;fill-rule:evenodd"
transform="matrix(0.18130091,0.10467414,-0.10467414,0.18130091,3.4171354,6.4102918)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044-7-2"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066-1-1"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070-3-6"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
id="g4077"
style="fill:#ffd42a"
transform="matrix(0.36260184,0.20934827,-0.20934827,0.36260184,-1.9215815,3.0373645)">
<path
inkscape:transform-center-x="1.9373715"
inkscape:transform-center-y="5.3542011"
transform="matrix(0.30658884,-0.05086676,0.17620762,1.0620548,-7.4581162,-23.060573)"
d="m 87.500144,26.225473 -2.687263,4.654476 -2.687263,4.654476 -2.687263,-4.654476 -2.687263,-4.654476 5.374526,0 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="0.52359878"
sodipodi:arg1="-0.52359878"
sodipodi:r2="3.102984"
sodipodi:r1="6.2059679"
sodipodi:cy="29.328457"
sodipodi:cx="82.125618"
sodipodi:sides="3"
id="path4044"
style="fill:#ffd42a;fill-opacity:1"
sodipodi:type="star" />
<rect
y="0.28222224"
x="19.473333"
height="1.9755557"
width="4.5155559"
id="rect4066"
style="fill:#ffd42a;fill-opacity:1" />
<rect
y="-4.7695556"
x="19.473333"
height="5.0799999"
width="1.9755557"
id="rect4070"
style="fill:#ffd42a;fill-opacity:1" />
</g>
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z"
transform="matrix(0.28222223,0,0,0.28222223,-9.6747501e-8,0.10421069)" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.3866325,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-8"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.2822564,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-83"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,-0.5644787,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,3.1044103,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-81"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.4110769,0.95087739)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-87"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471975"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.6932992,0.10421069)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-89"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,1.1288547,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-6"
sodipodi:sides="5"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.94247777"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02144,0.04343 0.04793,0.007 -0.03468,0.03381 0.0082,0.04774 -0.04287,-0.02254 -0.04287,0.02254 0.0082,-0.04774 -0.03468,-0.03381 0.04793,-0.007 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.822188,1.7975441)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-opacity:1"
id="path3060-7-5"
sodipodi:sides="6"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.01823,0.04135 0.04493,-0.0049 -0.0267,0.03647 0.0267,0.03647 -0.04493,-0.0049 -0.01823,0.04135 -0.01823,-0.04135 -0.04493,0.0049 0.0267,-0.03647 -0.0267,-0.03647 0.04493,0.0049 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.7365012,0.52754399)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.4495055,0.57635439)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-6"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,0.3910976,1.4820541)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-67"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
<path
transform="matrix(0.28222223,0,0,0.28222223,2.0789921,1.4820538)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-opacity:1"
id="path3060-7-5-9-4"
sodipodi:sides="4"
sodipodi:cx="18.963285"
sodipodi:cy="30.057814"
sodipodi:r1="0.072935715"
sodipodi:r2="0.036467858"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.78539814"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 18.963285,29.984878 0.02579,0.04715 0.04715,0.02579 -0.04715,0.02579 -0.02579,0.04715 -0.02579,-0.04715 -0.04715,-0.02579 0.04715,-0.02579 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,323 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="8.3794568"
inkscape:cy="21.504882"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-9" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.3076923,0,0,1.2613202,13.481049,12.376839)"
id="g18"
style="fill:#cccccc">
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.30521134,0,0,0.30521134,-1.2986775,-13.886131)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1,322 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="sun.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="8.3794568"
inkscape:cy="21.504882"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.2822223"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-9" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.3076923,0,0,1.2613202,13.481049,12.376839)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.30521134,0,0,0.30521134,-1.2986775,-13.886131)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

Loading…
Cancel
Save