remove images and move away from qt resources
- the bulk of image use is in webviews, so we move almost all used images to web/imgs, as it's easier to manage - change AnkiWebView to always use the local media server as a base, as much of the UI has come to depend on it - remove images from a few areas, as they felt dated - delete a bunch of unused images - href=# links were being opened in a browser window, so the code now ignores them - the HTML should really be updated to return false in the onclick handler - update a few icons
@ -23,7 +23,7 @@ def show(mw):
|
||||
mw.setupDialogGC(dialog)
|
||||
abt = aqt.forms.about.Ui_About()
|
||||
abt.setupUi(dialog)
|
||||
abouttext = "<center><img src='qrc:/icons/anki-logo-thin.png'></center>"
|
||||
abouttext = "<center><img src='/_anki/imgs/anki-logo-thin.png'></center>"
|
||||
abouttext += '<p>' + _("Anki is a friendly, intelligent spaced learning \
|
||||
system. It's free and open source.")
|
||||
abouttext += "<p>"+_("Anki is licensed under the AGPL3 license. Please see "
|
||||
@ -119,9 +119,6 @@ system. It's free and open source.")
|
||||
|
||||
abouttext += '<p>' + _("Written by Damien Elmes, with patches, translation,\
|
||||
testing and design from:<p>%(cont)s") % {'cont': ", ".join(allusers)}
|
||||
abouttext += '<p>' + _("""\
|
||||
The icons were obtained from various sources; please see the Anki source
|
||||
for credits.""")
|
||||
abouttext += '<p>' + _("If you have contributed and are not on this list, \
|
||||
please get in touch.")
|
||||
abouttext += '<p>' + _("A big thanks to all the people who have provided \
|
||||
|
@ -1169,13 +1169,12 @@ where id in %s""" % ids2str(sf))
|
||||
self._previewWindow = self._previewPrev = self._previewNext = None
|
||||
|
||||
def _setupPreviewWebview(self):
|
||||
base = self.mw.baseHTML()
|
||||
jsinc = ["jquery.js","browsersel.js",
|
||||
"mathjax/conf.js", "mathjax/MathJax.js",
|
||||
"reviewer.js"]
|
||||
self._previewWeb.stdHtml(self.mw.reviewer.revHtml(),
|
||||
css=["reviewer.css"],
|
||||
head=base, js=jsinc)
|
||||
js=jsinc)
|
||||
|
||||
|
||||
def _renderPreview(self, cardChanged=False):
|
||||
|
@ -170,16 +170,15 @@ class CardLayout(QDialog):
|
||||
pform.frontPrevBox.addWidget(pform.frontWeb)
|
||||
pform.backWeb = AnkiWebView()
|
||||
pform.backPrevBox.addWidget(pform.backWeb)
|
||||
base = self.mw.baseHTML()
|
||||
jsinc = ["jquery.js","browsersel.js",
|
||||
"mathjax/conf.js", "mathjax/MathJax.js",
|
||||
"reviewer.js"]
|
||||
pform.frontWeb.stdHtml(self.mw.reviewer.revHtml(),
|
||||
css=["reviewer.css"],
|
||||
head=base, js=jsinc)
|
||||
js=jsinc)
|
||||
pform.backWeb.stdHtml(self.mw.reviewer.revHtml(),
|
||||
css=["reviewer.css"],
|
||||
head=base, js=jsinc)
|
||||
js=jsinc)
|
||||
|
||||
def updateMainArea(self):
|
||||
if self._isCloze():
|
||||
|
@ -188,7 +188,7 @@ where id > ?""", (self.mw.col.sched.dayCutoff-86400)*1000)
|
||||
nonzeroColour(new, "#000099"))
|
||||
# options
|
||||
buf += ("<td align=center class=opts><a onclick='pycmd(\"opts:%d\");'>"
|
||||
"<img valign=right src='qrc:/icons/gears.png'></a></td></tr>" % did)
|
||||
"<img src='/_anki/imgs/gears.png' class=gears></a></td></tr>" % did)
|
||||
# children
|
||||
buf += self._renderDeckTree(children, depth+1)
|
||||
return buf
|
||||
@ -196,15 +196,6 @@ where id > ?""", (self.mw.col.sched.dayCutoff-86400)*1000)
|
||||
def _topLevelDragRow(self):
|
||||
return "<tr class='top-level-drag-row'><td colspan='6'> </td></tr>"
|
||||
|
||||
def _dueImg(self, due, new):
|
||||
if due:
|
||||
i = "clock-icon"
|
||||
elif new:
|
||||
i = "plus-circle"
|
||||
else:
|
||||
i = "none"
|
||||
return '<img valign=bottom src="qrc:/icons/%s.png">' % i
|
||||
|
||||
# Options
|
||||
##########################################################################
|
||||
|
||||
|
@ -26,7 +26,6 @@ class DeckConf(QDialog):
|
||||
self.setWindowModality(Qt.WindowModal)
|
||||
self.form.buttonBox.helpRequested.connect(lambda: openHelp("deckoptions"))
|
||||
self.form.confOpts.clicked.connect(self.confOpts)
|
||||
self.form.confOpts.setText(downArrow())
|
||||
self.form.buttonBox.button(QDialogButtonBox.RestoreDefaults).clicked.connect(self.onRestore)
|
||||
self.setWindowTitle(_("Options for %s") % self.deck['name'])
|
||||
# qt doesn't size properly with altered fonts otherwise
|
||||
|
@ -106,7 +106,7 @@ class Editor:
|
||||
self.web.stdHtml(_html % (
|
||||
bgcol, bgcol,
|
||||
topbuts,
|
||||
_("Show Duplicates")), head=self.mw.baseHTML(),
|
||||
_("Show Duplicates")),
|
||||
css=["editor.css"],
|
||||
js=["jquery.js", "editor.js"])
|
||||
|
||||
@ -127,7 +127,7 @@ class Editor:
|
||||
if os.path.isabs(icon):
|
||||
iconstr = self.resourceToData(icon)
|
||||
else:
|
||||
iconstr = "qrc:/icons/{}.png".format(icon)
|
||||
iconstr = "/_anki/imgs/{}.png".format(icon)
|
||||
if id:
|
||||
idstr = 'id={}'.format(id)
|
||||
else:
|
||||
|
@ -120,17 +120,15 @@ class Reviewer:
|
||||
def revHtml(self):
|
||||
extra = self.mw.col.conf.get("reviewExtra", "")
|
||||
return f"""
|
||||
<img src="qrc:/icons/rating.png" id=star class=marked>
|
||||
<img src="/_anki/imgs/rating.png" id=star class=marked>
|
||||
<div id=qa></div>
|
||||
{extra}
|
||||
"""
|
||||
|
||||
def _initWeb(self):
|
||||
self._reps = 0
|
||||
base = self.mw.baseHTML()
|
||||
# main window
|
||||
self.web.stdHtml(self.revHtml(),
|
||||
head=base,
|
||||
css=["reviewer.css"],
|
||||
js=["jquery.js",
|
||||
"browsersel.js",
|
||||
|
@ -14,7 +14,6 @@ def getAudio(parent, encode=True):
|
||||
mb = QMessageBox(parent)
|
||||
restoreGeom(mb, "audioRecorder")
|
||||
mb.setWindowTitle("Anki")
|
||||
mb.setIconPixmap(QPixmap(":/icons/media-record.png"))
|
||||
but = QPushButton(_("Save"))
|
||||
mb.addButton(but, QMessageBox.AcceptRole)
|
||||
but = QPushButton(_("Cancel"))
|
||||
|
@ -30,13 +30,12 @@ class TagLimit(QDialog):
|
||||
noHash[n] = True
|
||||
groupedTags = []
|
||||
usertags.sort()
|
||||
icon = QIcon(":/icons/Anki_Fact.png")
|
||||
groupedTags.append([icon, usertags])
|
||||
groupedTags.append(usertags)
|
||||
self.tags = []
|
||||
for (icon, tags) in groupedTags:
|
||||
for tags in groupedTags:
|
||||
for t in tags:
|
||||
self.tags.append(t)
|
||||
item = QListWidgetItem(icon, t.replace("_", " "))
|
||||
item = QListWidgetItem(t.replace("_", " "))
|
||||
self.dialog.activeList.addItem(item)
|
||||
if t in yesHash:
|
||||
mode = QItemSelectionModel.Select
|
||||
@ -46,7 +45,7 @@ class TagLimit(QDialog):
|
||||
idx = self.dialog.activeList.indexFromItem(item)
|
||||
self.dialog.activeList.selectionModel().select(idx, mode)
|
||||
# inactive
|
||||
item = QListWidgetItem(icon, t.replace("_", " "))
|
||||
item = QListWidgetItem(t.replace("_", " "))
|
||||
self.dialog.inactiveList.addItem(item)
|
||||
if t in noHash:
|
||||
mode = QItemSelectionModel.Select
|
||||
|
@ -353,11 +353,6 @@ def applyStyles(widget):
|
||||
if os.path.exists(p):
|
||||
widget.setStyleSheet(open(p).read())
|
||||
|
||||
# this will go away in the future - please use mw.baseHTML() instead
|
||||
def getBase(col):
|
||||
from aqt import mw
|
||||
return mw.baseHTML()
|
||||
|
||||
def openFolder(path):
|
||||
if isWin:
|
||||
subprocess.Popen(["explorer", "file://"+path])
|
||||
@ -405,7 +400,6 @@ def tooltip(msg, period=3000, parent=None):
|
||||
lab = CustomLabel("""\
|
||||
<table cellpadding=10>
|
||||
<tr>
|
||||
<td><img src=":/icons/help-hint.png"></td>
|
||||
<td>%s</td>
|
||||
</tr>
|
||||
</table>""" % msg, aw)
|
||||
|
@ -58,6 +58,10 @@ class AnkiWebPage(QWebEnginePage):
|
||||
def acceptNavigationRequest(self, url, navType, isMainFrame):
|
||||
if not isMainFrame:
|
||||
return True
|
||||
from aqt import mw
|
||||
# ignore href=#
|
||||
if url.toString().startswith(mw.serverURL()):
|
||||
return False
|
||||
# load all other links in browser
|
||||
openLink(url)
|
||||
return False
|
||||
@ -179,8 +183,8 @@ border-radius:5px; font-family: Helvetica }"""
|
||||
[self.bundledCSS(fname) for fname in css])
|
||||
jstxt = "\n".join([self.bundledScript("webview.js")]+
|
||||
[self.bundledScript(fname) for fname in js])
|
||||
head += csstxt + jstxt
|
||||
|
||||
from aqt import mw
|
||||
head = mw.baseHTML() + head + csstxt + jstxt
|
||||
|
||||
html=f"""
|
||||
<!doctype html>
|
||||
|
@ -13,10 +13,6 @@
|
||||
<property name="windowTitle">
|
||||
<string>Add</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset>
|
||||
<normaloff>:/icons/list-add.png</normaloff>:/icons/list-add.png</iconset>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>3</number>
|
||||
|
@ -19,10 +19,6 @@
|
||||
<property name="windowTitle">
|
||||
<string>Browser</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="icons.qrc">
|
||||
<normaloff>:/icons/find.png</normaloff>:/icons/find.png</iconset>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralwidget">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<property name="spacing">
|
||||
|
@ -39,11 +39,7 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="icons.qrc">
|
||||
<normaloff>:/icons/gears.png</normaloff>:/icons/gears.png</iconset>
|
||||
<string>Manage...</string>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
||||
|
@ -1,121 +1,5 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>icons/paperclip.png</file>
|
||||
<file>icons/more.png</file>
|
||||
<file>icons/text_cloze.png</file>
|
||||
<file>icons/arrow-up.png</file>
|
||||
<file>icons/arrow-down.png</file>
|
||||
<file>icons/gears.png</file>
|
||||
<file>icons/green.png</file>
|
||||
<file>icons/clock-icon.png</file>
|
||||
<file>icons/plus-circle.png</file>
|
||||
<file>icons/text_clear.png</file>
|
||||
<file>icons/none.png</file>
|
||||
<file>icons/edit-find 2.png</file>
|
||||
<file>icons/edit-find-replace.png</file>
|
||||
<file>icons/user-identity.png</file>
|
||||
<file>icons/layout.png</file>
|
||||
<file>icons/view-sort-descending.png</file>
|
||||
<file>icons/view-refresh.png</file>
|
||||
<file>icons/emblem-important.png</file>
|
||||
<file>icons/view-sort-ascending.png</file>
|
||||
<file>icons/media-playback-start2.png</file>
|
||||
<file>icons/anki-logo-thin.png</file>
|
||||
<file>icons/download.png</file>
|
||||
<file>icons/preferences-plugin.png</file>
|
||||
<file>icons/system-software-update.png</file>
|
||||
<file>icons/media-playback-stop.png</file>
|
||||
<file>icons/media-record.png</file>
|
||||
<file>icons/view-calendar-tasks.png</file>
|
||||
<file>icons/help-hint.png</file>
|
||||
<file>icons/go-first.png</file>
|
||||
<file>icons/go-jump-today.png</file>
|
||||
<file>icons/go-last.png</file>
|
||||
<file>icons/go-next.png</file>
|
||||
<file>icons/go-previous.png</file>
|
||||
<file>icons/player-time.png</file>
|
||||
<file>icons/find.png</file>
|
||||
<file>icons/editclear.png</file>
|
||||
<file>icons/view-statistics.png</file>
|
||||
<file>icons/emblem-favorite.png</file>
|
||||
<file>icons/emblem-favorite-dark.png</file>
|
||||
<file>icons/emblem-favorite-off.png</file>
|
||||
<file>icons/view-pim-calendar.png</file>
|
||||
<file>icons/anki-tag.png</file>
|
||||
<file>icons/edit-redo.png</file>
|
||||
<file>icons/text-xml.png</file>
|
||||
<file>icons/media-record.png</file>
|
||||
<file>icons/edit-rename.png</file>
|
||||
<file>icons/kblogger.png</file>
|
||||
<file>icons/khtml_kget.png</file>
|
||||
<file>icons/edit-find.png</file>
|
||||
<file>icons/colors.png</file>
|
||||
<file>icons/anki.png</file>
|
||||
<file>icons/ankibw.png</file>
|
||||
<file>icons/addtag.png</file>
|
||||
<file>icons/deletetag.png</file>
|
||||
<file>icons/application-exit.png</file>
|
||||
<file>icons/configure.png</file>
|
||||
<file>icons/contents.png</file>
|
||||
<file>icons/contents2.png</file>
|
||||
<file>icons/document-export.png</file>
|
||||
<file>icons/document-import.png</file>
|
||||
<file>icons/document-new.png</file>
|
||||
<file>icons/edit-undo.png</file>
|
||||
<file>icons/edit.png</file>
|
||||
<file>icons/editdelete.png</file>
|
||||
<file>icons/fileclose.png</file>
|
||||
<file>icons/folder_image.png</file>
|
||||
<file>icons/folder_sound.png</file>
|
||||
<file>icons/format-stroke-color.png</file>
|
||||
<file>icons/games-solve.png</file>
|
||||
<file>icons/help-contents.png</file>
|
||||
<file>icons/help.png</file>
|
||||
<file>icons/image.png</file>
|
||||
<file>icons/kbugbuster.png</file>
|
||||
<file>icons/kexi.png</file>
|
||||
<file>icons/kpersonalizer.png</file>
|
||||
<file>icons/list-add.png</file>
|
||||
<file>icons/math_matrix.png</file>
|
||||
<file>icons/math_sqrt.png</file>
|
||||
<file>icons/media-playback-pause.png</file>
|
||||
<file>icons/media-playback-start.png</file>
|
||||
<file>icons/media-playback-stop.png</file>
|
||||
<file>icons/package_games_card.png</file>
|
||||
<file>icons/preferences-desktop-font.png</file>
|
||||
<file>icons/rating.png</file>
|
||||
<file>icons/speaker.png</file>
|
||||
<file>icons/spreadsheet.png</file>
|
||||
<file>icons/sqlitebrowser.png</file>
|
||||
<file>icons/system-shutdown.png</file>
|
||||
<file>icons/tex.png</file>
|
||||
<file>icons/text-speak.png</file>
|
||||
<file>icons/text_bold.png</file>
|
||||
<file>icons/text_italic.png</file>
|
||||
<file>icons/text_under.png</file>
|
||||
<file>icons/view-pim-news.png</file>
|
||||
<file>icons/view_text.png</file>
|
||||
<file>icons/text_sub.png</file>
|
||||
<file>icons/text_super.png</file>
|
||||
<file>icons/text_remove.png</file>
|
||||
<file>icons/product_design.png</file>
|
||||
<file>icons/stock_new_template.png</file>
|
||||
<file>icons/stock_new_template_blue.png</file>
|
||||
<file>icons/stock_new_template_green.png</file>
|
||||
<file>icons/stock_new_template_red.png</file>
|
||||
<file>icons/stock_group.png</file>
|
||||
<file>icons/star16.png</file>
|
||||
<file>icons/star_off16.png</file>
|
||||
<file>icons/pause16.png</file>
|
||||
<file>icons/pause_off16.png</file>
|
||||
<file>icons/info.png</file>
|
||||
<file>icons/add16.png</file>
|
||||
<file>icons/delete16.png</file>
|
||||
<file>icons/addtag16.png</file>
|
||||
<file>icons/deletetag16.png</file>
|
||||
<file>icons/mail-attachment.png</file>
|
||||
<file>icons/deck16.png</file>
|
||||
<file>icons/clock16.png</file>
|
||||
<file>icons/plus16.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -1,9 +0,0 @@
|
||||
-Anki icon by Alex Fraser (CC GNU GPL)
|
||||
-Deck icon: Be Box Icons (non-commercial use)
|
||||
-Deck due/new icons from:
|
||||
http://led24.de/iconset
|
||||
http://p.yusukekamiyamane.com/
|
||||
-Other icons obtained from KDE themes (GPL/LGPL)
|
||||
|
||||
Note that some of the icons have been modified to fit in with Anki better
|
||||
(grayscaled, cropped, etc).
|
Before Width: | Height: | Size: 406 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 545 B |
@ -1,992 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44"
|
||||
sodipodi:docbase="/home/alex/Downloads/fcwx"
|
||||
sodipodi:docname="FC.svg"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/alex/Downloads/fcwx/FC.png"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3800">
|
||||
<stop
|
||||
style="stop-color:#333;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3802" />
|
||||
<stop
|
||||
style="stop-color:#9f9f9f;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3804" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3769"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3771"
|
||||
offset="0"
|
||||
style="stop-color:#3c3c3c;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3773"
|
||||
offset="1"
|
||||
style="stop-color:#9e9e9e;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2878"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2880"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2882"
|
||||
offset="1"
|
||||
style="stop-color:#898989;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4843">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49411765;"
|
||||
offset="0"
|
||||
id="stop4845" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.25098041;"
|
||||
offset="1"
|
||||
id="stop4847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4825">
|
||||
<stop
|
||||
id="stop4827"
|
||||
offset="0"
|
||||
style="stop-color:#0084dd;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4829"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3769"
|
||||
id="linearGradient4926"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient4928"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient4930"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient4932"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2815">
|
||||
<rect
|
||||
style="opacity:1;fill:#d533e4;fill-opacity:0.54098361;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1913"
|
||||
width="23"
|
||||
height="30"
|
||||
x="5"
|
||||
y="1"
|
||||
ry="4.6187186"
|
||||
rx="4.6187186" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient1942"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient1948"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2868">
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1950"
|
||||
width="41"
|
||||
height="28"
|
||||
x="19.880381"
|
||||
y="16.849239"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2874"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="linearGradient3789"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3795"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient3798"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3824"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient3826"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3842"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient3844"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3846"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3860"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient3862"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3864"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3914"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3916"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3932"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3934"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3986"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient3988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3992"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="17.857143"
|
||||
y1="-11.398471"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3994"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3996"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4004">
|
||||
<rect
|
||||
rx="4.6187186"
|
||||
ry="4.6187186"
|
||||
y="1"
|
||||
x="5"
|
||||
height="30"
|
||||
width="45"
|
||||
id="rect4000"
|
||||
style="opacity:1;fill:#d533e4;fill-opacity:0.54098361;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4011">
|
||||
<rect
|
||||
rx="4"
|
||||
ry="4"
|
||||
y="16.849239"
|
||||
x="19.880381"
|
||||
height="28"
|
||||
width="43"
|
||||
id="rect4002"
|
||||
style="opacity:1;fill:#e51be8;fill-opacity:0.53551911;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient1982"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="17.857143"
|
||||
y1="-11.398471"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3769"
|
||||
id="linearGradient2973"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient2979"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient2981"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2983"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient2985"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="linearGradient2987"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2989"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient2991"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient2993"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient2995"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient2997"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient2999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="17.857143"
|
||||
y1="-11.398471"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="white"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="74.069445"
|
||||
inkscape:cy="-16.951041"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="1006"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="346"
|
||||
inkscape:window-y="25"
|
||||
width="32px"
|
||||
height="32px"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:0;fill:#9e9e9e;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3810"
|
||||
width="113"
|
||||
height="32"
|
||||
x="32"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="0"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180" />
|
||||
<g
|
||||
id="g2807"
|
||||
clip-path="url(#clipPath2815)">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="32"
|
||||
width="32"
|
||||
id="rect2802"
|
||||
style="opacity:1;fill:black;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient2973);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4875"
|
||||
width="21"
|
||||
height="28"
|
||||
x="6"
|
||||
y="2"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
<path
|
||||
transform="matrix(9.169279e-2,1.148462e-2,-1.148462e-2,9.169279e-2,1.24989,-28.62005)"
|
||||
d="M 312.50679,544.32837 C 292.22283,564.49267 266.67181,512.24831 238.30815,515.92801 C 208.98482,519.73222 197.10615,576.2166 170.79974,562.71464 C 145.35427,549.65457 187.14591,509.20971 174.88145,483.37135 C 162.20203,456.65877 104.81148,462.81612 109.52348,433.6249 C 114.08126,405.38904 165.46094,432.6371 186.24474,412.98841 C 207.73177,392.67492 184.14112,339.996 213.35971,335.45679 C 241.62204,331.06614 231.58479,388.35122 256.69435,402.04602 C 282.65348,416.20418 325.46421,377.48946 338.81029,403.8753 C 351.71959,429.39759 294.13655,437.55366 288.87131,465.6662 C 283.42791,494.72991 333.47704,523.48182 312.50679,544.32837 z "
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.36"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.4167054"
|
||||
sodipodi:arg1="0.81345017"
|
||||
sodipodi:r2="60.646587"
|
||||
sodipodi:r1="121.55363"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:sides="5"
|
||||
id="path4877"
|
||||
style="fill:none;fill-opacity:1;stroke:none;stroke-width:16.23214531;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:url(#linearGradient2975);fill-opacity:1;stroke:white;stroke-width:15.98369503;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4879"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:arg2="1.428641"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:randomized="0"
|
||||
d="M 294.46869,523.45259 C 285.38826,532.26594 248.89378,505.68266 236.36721,507.47547 C 223.84063,509.26829 196.26772,545.02094 185.07972,539.10841 C 173.89171,533.19589 187.8965,490.2729 182.32051,478.91342 C 176.74452,467.55395 134.22123,452.37873 136.38709,439.91124 C 138.55295,427.44375 183.70286,427.49916 192.78328,418.6858 C 201.86371,409.87245 203.15578,364.741 215.68236,362.94818 C 228.20893,361.15537 242.10833,404.11261 253.29633,410.02513 C 264.48433,415.93765 307.80617,403.2201 313.38216,414.57958 C 318.95815,425.93905 282.39853,452.43267 280.23268,464.90017 C 278.06682,477.36766 303.54911,514.63923 294.46869,523.45259 z "
|
||||
transform="matrix(7.507522e-2,4.398431e-4,-4.398431e-4,7.507522e-2,-2.36792,-12.92398)" />
|
||||
<path
|
||||
transform="matrix(3.131375e-2,-2.522366e-2,2.522366e-2,3.131375e-2,2.32085,0.206819)"
|
||||
d="M 294.46869,523.45259 C 285.38826,532.26594 248.89378,505.68266 236.36721,507.47547 C 223.84063,509.26829 196.26772,545.02094 185.07972,539.10841 C 173.89171,533.19589 187.8965,490.2729 182.32051,478.91342 C 176.74452,467.55395 134.22123,452.37873 136.38709,439.91124 C 138.55295,427.44375 183.70286,427.49916 192.78328,418.6858 C 201.86371,409.87245 203.15578,364.741 215.68236,362.94818 C 228.20893,361.15537 242.10833,404.11261 253.29633,410.02513 C 264.48433,415.93765 307.80617,403.2201 313.38216,414.57958 C 318.95815,425.93905 282.39853,452.43267 280.23268,464.90017 C 278.06682,477.36766 303.54911,514.63923 294.46869,523.45259 z "
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.428641"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:sides="5"
|
||||
id="path4889"
|
||||
style="fill:url(#linearGradient2977);fill-opacity:1;stroke:white;stroke-width:24.86989784;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient2979);fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;display:inline"
|
||||
d="M 2.659112,0.45056835 L 30.289475,0.45056835 L 29.457792,20.39883 C 25.879683,16.517642 12.825421,10.535309 3.6153,10.535309 L 2.659112,0.45056835 z "
|
||||
id="path4881"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
clip-path="url(#clipPath2815)"
|
||||
id="g1912"
|
||||
transform="translate(32,0)">
|
||||
<rect
|
||||
style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
|
||||
id="rect1914"
|
||||
width="32"
|
||||
height="32"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<rect
|
||||
rx="4"
|
||||
ry="4"
|
||||
y="2"
|
||||
x="6"
|
||||
height="28"
|
||||
width="21"
|
||||
id="rect1916"
|
||||
style="opacity:1;fill:url(#linearGradient2981);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
id="g2843"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
clip-path="url(#clipPath2868)">
|
||||
<path
|
||||
transform="matrix(0.124827,-2.362253e-2,2.362253e-2,0.124827,-4.130425,-17.39127)"
|
||||
d="M 294.46869,523.45259 C 285.38826,532.26594 248.89378,505.68266 236.36721,507.47547 C 223.84063,509.26829 196.26772,545.02094 185.07972,539.10841 C 173.89171,533.19589 187.8965,490.2729 182.32051,478.91342 C 176.74452,467.55395 134.22123,452.37873 136.38709,439.91124 C 138.55295,427.44375 183.70286,427.49916 192.78328,418.6858 C 201.86371,409.87245 203.15578,364.741 215.68236,362.94818 C 228.20893,361.15537 242.10833,404.11261 253.29633,410.02513 C 264.48433,415.93765 307.80617,403.2201 313.38216,414.57958 C 318.95815,425.93905 282.39853,452.43267 280.23268,464.90017 C 278.06682,477.36766 303.54911,514.63923 294.46869,523.45259 z "
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.428641"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:sides="5"
|
||||
id="path1920"
|
||||
style="fill:url(#linearGradient2983);fill-opacity:1;stroke:white;stroke-width:15.98369503;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path1924"
|
||||
d="M 2.659112,0.45056835 L 30.289475,0.45056835 L 29.457792,20.39883 C 25.879683,16.517642 12.825421,10.535309 3.6153,10.535309 L 2.659112,0.45056835 z "
|
||||
style="opacity:1;fill:url(#linearGradient2985);fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
|
||||
</g>
|
||||
<g
|
||||
clip-path="url(#clipPath2815)"
|
||||
id="g3775"
|
||||
transform="translate(-32,0)">
|
||||
<rect
|
||||
style="opacity:1;fill:black;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
|
||||
id="rect3777"
|
||||
width="32"
|
||||
height="32"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<rect
|
||||
rx="4"
|
||||
ry="4"
|
||||
y="2"
|
||||
x="6"
|
||||
height="28"
|
||||
width="21"
|
||||
id="rect3779"
|
||||
style="opacity:1;fill:url(#linearGradient2987);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:url(#linearGradient2989);fill-opacity:1;stroke:white;stroke-width:16.23214531;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4634"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:arg2="1.428641"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:randomized="0"
|
||||
d="M 294.46869,523.45259 C 285.38826,532.26594 248.89378,505.68266 236.36721,507.47547 C 223.84063,509.26829 196.26772,545.02094 185.07972,539.10841 C 173.89171,533.19589 187.8965,490.2729 182.32051,478.91342 C 176.74452,467.55395 134.22123,452.37873 136.38709,439.91124 C 138.55295,427.44375 183.70286,427.49916 192.78328,418.6858 C 201.86371,409.87245 203.15578,364.741 215.68236,362.94818 C 228.20893,361.15537 242.10833,404.11261 253.29633,410.02513 C 264.48433,415.93765 307.80617,403.2201 313.38216,414.57958 C 318.95815,425.93905 282.39853,452.43267 280.23268,464.90017 C 278.06682,477.36766 303.54911,514.63923 294.46869,523.45259 z "
|
||||
transform="matrix(9.169279e-2,1.148462e-2,-1.148462e-2,9.169279e-2,0.65863,-27.99505)" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3787"
|
||||
d="M 2.659112,0.45056835 L 30.289475,0.45056835 L 29.457792,20.39883 C 25.879683,16.517642 12.825421,10.535309 3.6153,10.535309 L 2.659112,0.45056835 z "
|
||||
style="opacity:1;fill:url(#linearGradient2991);fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(64,0)"
|
||||
id="g3812"
|
||||
clip-path="url(#clipPath2815)">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="32"
|
||||
width="32"
|
||||
id="rect3814"
|
||||
style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient2993);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3816"
|
||||
width="21"
|
||||
height="28"
|
||||
x="6"
|
||||
y="2"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
<g
|
||||
clip-path="url(#clipPath2868)"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
id="g3818">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
x="24.875"
|
||||
y="41.375"
|
||||
id="text3806"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3874"
|
||||
x="24.875"
|
||||
y="41.375"
|
||||
style="fill:white;fill-opacity:1;stroke:none">f</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
clip-path="url(#clipPath2815)"
|
||||
id="g3900"
|
||||
transform="translate(88,0)">
|
||||
<rect
|
||||
style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
|
||||
id="rect3902"
|
||||
width="32"
|
||||
height="32"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<rect
|
||||
rx="4"
|
||||
ry="4"
|
||||
y="2"
|
||||
x="6"
|
||||
height="28"
|
||||
width="21"
|
||||
id="rect3904"
|
||||
style="opacity:1;fill:url(#linearGradient2995);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
id="g3906"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
clip-path="url(#clipPath2868)">
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text3908"
|
||||
y="41.375"
|
||||
x="22.375"
|
||||
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
xml:space="preserve"><tspan
|
||||
style="fill:white;fill-opacity:1;stroke:none"
|
||||
y="41.375"
|
||||
x="22.375"
|
||||
id="tspan3910"
|
||||
sodipodi:role="line">c</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(112,0)"
|
||||
id="g3918"
|
||||
clip-path="url(#clipPath2815)">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="32"
|
||||
width="32"
|
||||
id="rect3920"
|
||||
style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient2997);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3922"
|
||||
width="21"
|
||||
height="28"
|
||||
x="6"
|
||||
y="2"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
<g
|
||||
clip-path="url(#clipPath2868)"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
id="g3924">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
x="24.875"
|
||||
y="41.375"
|
||||
id="text3926"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3928"
|
||||
x="24.875"
|
||||
y="41.375"
|
||||
style="fill:white;fill-opacity:1;stroke:none">!</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
inkscape:export-ydpi="180"
|
||||
inkscape:export-xdpi="180"
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="32"
|
||||
x="32"
|
||||
height="32"
|
||||
width="90"
|
||||
id="rect3936"
|
||||
style="opacity:0;fill:#9e9e9e;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="url(#clipPath4004)"
|
||||
id="g3950"
|
||||
transform="translate(64,32)">
|
||||
<rect
|
||||
style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
|
||||
id="rect3952"
|
||||
width="52"
|
||||
height="32"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<rect
|
||||
rx="4"
|
||||
ry="4"
|
||||
y="2"
|
||||
x="6"
|
||||
height="28"
|
||||
width="43"
|
||||
id="rect3954"
|
||||
style="opacity:1;fill:url(#linearGradient2999);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
id="g3956"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
clip-path="url(#clipPath4011)">
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text3958"
|
||||
y="41.375"
|
||||
x="24.875"
|
||||
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
xml:space="preserve"><tspan
|
||||
style="fill:white;fill-opacity:1;stroke:none"
|
||||
y="41.375"
|
||||
x="24.875"
|
||||
id="tspan3960"
|
||||
sodipodi:role="line">fc!</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#g1912"
|
||||
id="use3998"
|
||||
transform="translate(0,32)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<rect
|
||||
style="opacity:0;fill:black;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1966"
|
||||
width="90"
|
||||
height="32"
|
||||
x="32"
|
||||
y="64"
|
||||
rx="0"
|
||||
ry="0"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
x="67.173828"
|
||||
y="93.490234"
|
||||
id="text1976"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan1978"
|
||||
x="67.173828"
|
||||
y="93.490234"
|
||||
style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans">fc!</tspan></text>
|
||||
<use
|
||||
height="32"
|
||||
width="32"
|
||||
transform="translate(0,64)"
|
||||
id="use1980"
|
||||
xlink:href="#g1912"
|
||||
y="0"
|
||||
x="0" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 46 KiB |
@ -1,352 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://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="32"
|
||||
height="32"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.2 r9819"
|
||||
sodipodi:docname="anki-logo_BW.svg"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/alex/Downloads/fcwx/FC.png"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3800">
|
||||
<stop
|
||||
style="stop-color:#333;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3802" />
|
||||
<stop
|
||||
style="stop-color:#9f9f9f;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3804" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3769"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3771"
|
||||
offset="0"
|
||||
style="stop-color:#3c3c3c;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3773"
|
||||
offset="1"
|
||||
style="stop-color:#9e9e9e;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2878"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2880"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2882"
|
||||
offset="1"
|
||||
style="stop-color:#898989;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4843">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49411765;"
|
||||
offset="0"
|
||||
id="stop4845" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.25098041;"
|
||||
offset="1"
|
||||
id="stop4847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4825">
|
||||
<stop
|
||||
id="stop4827"
|
||||
offset="0"
|
||||
style="stop-color:#0084dd;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4829"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2815">
|
||||
<rect
|
||||
style="opacity:1;fill:#d533e4;fill-opacity:0.54098361;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1913"
|
||||
width="23"
|
||||
height="30"
|
||||
x="5"
|
||||
y="1"
|
||||
ry="4.6187186"
|
||||
rx="4.6187186" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2868">
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1950"
|
||||
width="41"
|
||||
height="28"
|
||||
x="19.880381"
|
||||
y="16.849239"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3769"
|
||||
id="linearGradient2973"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient2979"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(9.240924e-2,0,0,9.240924e-2,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="linearGradient2987"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2989"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient2991"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.09240924,0,0,0.09240924,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2878"
|
||||
id="linearGradient3132"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient3134"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient3136"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.09240924,0,0,0.09240924,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#6c6c6c"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="0.50084576"
|
||||
inkscape:cy="18.762684"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g3932"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
width="32px"
|
||||
height="32px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showborder="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3098"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="WhiteOnBlack"
|
||||
style="display:none">
|
||||
<g
|
||||
style="display:inline"
|
||||
clip-path="url(#clipPath2815)"
|
||||
id="g1912">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
|
||||
id="rect1914"
|
||||
width="32"
|
||||
height="32"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<rect
|
||||
rx="4"
|
||||
ry="4"
|
||||
y="2"
|
||||
x="6"
|
||||
height="28"
|
||||
width="21"
|
||||
id="rect1916"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
id="g2843"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
clip-path="url(#clipPath2868)"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
transform="matrix(0.124827,-0.02362253,0.02362253,0.124827,-4.130425,-17.39127)"
|
||||
d="m 294.46869,523.45259 c -9.08043,8.81335 -45.57491,-17.76993 -58.10148,-15.97712 -12.52658,1.79282 -40.09949,37.54547 -51.28749,31.63294 -11.18801,-5.91252 2.81678,-48.83551 -2.75921,-60.19499 -5.57599,-11.35947 -48.09928,-26.53469 -45.93342,-39.00218 2.16586,-12.46749 47.31577,-12.41208 56.39619,-21.22544 9.08043,-8.81335 10.3725,-53.9448 22.89908,-55.73762 12.52657,-1.79281 26.42597,41.16443 37.61397,47.07695 11.188,5.91252 54.50984,-6.80503 60.08583,4.55445 5.57599,11.35947 -30.98363,37.85309 -33.14948,50.32059 -2.16586,12.46749 23.31643,49.73906 14.23601,58.55242 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.428641"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:sides="5"
|
||||
id="path1920"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:15.98369503;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="star" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="BlackOnWhite"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3932"
|
||||
clip-path="url(#clipPath2815)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="32"
|
||||
width="32"
|
||||
id="rect3934"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
id="rect3936"
|
||||
width="21"
|
||||
height="28"
|
||||
x="6"
|
||||
y="2"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
<g
|
||||
clip-path="url(#clipPath2868)"
|
||||
transform="translate(-13.88038,-14.84924)"
|
||||
id="g3938">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:15.98369503;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3940"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:arg2="1.428641"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:randomized="0"
|
||||
d="m 294.46869,523.45259 c -9.08043,8.81335 -45.57491,-17.76993 -58.10148,-15.97712 -12.52658,1.79282 -40.09949,37.54547 -51.28749,31.63294 -11.18801,-5.91252 2.81678,-48.83551 -2.75921,-60.19499 -5.57599,-11.35947 -48.09928,-26.53469 -45.93342,-39.00218 2.16586,-12.46749 47.31577,-12.41208 56.39619,-21.22544 9.08043,-8.81335 10.3725,-53.9448 22.89908,-55.73762 12.52657,-1.79281 26.42597,41.16443 37.61397,47.07695 11.188,5.91252 54.50984,-6.80503 60.08583,4.55445 5.57599,11.35947 -30.98363,37.85309 -33.14948,50.32059 -2.16586,12.46749 23.31643,49.73906 14.23601,58.55242 z"
|
||||
transform="matrix(0.124827,-0.02362253,0.02362253,0.124827,-4.130425,-17.39127)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.0 KiB |
@ -1,242 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://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="33"
|
||||
height="33"
|
||||
id="svg3652"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="New document 10">
|
||||
<defs
|
||||
id="defs3654">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2815">
|
||||
<rect
|
||||
style="fill:#d533e4;fill-opacity:0.54098361;stroke:none"
|
||||
id="rect1913"
|
||||
width="23"
|
||||
height="30"
|
||||
x="5"
|
||||
y="1"
|
||||
ry="4.6187186"
|
||||
rx="4.6187186" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3769"
|
||||
id="linearGradient2973"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.954545,0,0,0.965517,1.704545,0.551724)"
|
||||
x1="15.5"
|
||||
y1="5.9497476"
|
||||
x2="4"
|
||||
y2="31" />
|
||||
<linearGradient
|
||||
id="linearGradient3769"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3771"
|
||||
offset="0"
|
||||
style="stop-color:#3c3c3c;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3773"
|
||||
offset="1"
|
||||
style="stop-color:#9e9e9e;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
id="linearGradient4825">
|
||||
<stop
|
||||
id="stop4827"
|
||||
offset="0"
|
||||
style="stop-color:#0084dd;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4829"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="linearGradient2977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="253.74718"
|
||||
y1="412.82977"
|
||||
x2="188.00023"
|
||||
y2="542.33295" />
|
||||
<linearGradient
|
||||
id="linearGradient3681">
|
||||
<stop
|
||||
id="stop3683"
|
||||
offset="0"
|
||||
style="stop-color:#0084dd;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3685"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4843"
|
||||
id="linearGradient2979"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.09240924,0,0,0.09240924,-5.65772,-25.6423)"
|
||||
x1="247"
|
||||
y1="441.86218"
|
||||
x2="292"
|
||||
y2="282.36218" />
|
||||
<linearGradient
|
||||
id="linearGradient4843">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49411765;"
|
||||
offset="0"
|
||||
id="stop4845" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.25098041;"
|
||||
offset="1"
|
||||
id="stop4847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="282.36218"
|
||||
x2="292"
|
||||
y1="441.86218"
|
||||
x1="247"
|
||||
gradientTransform="matrix(0.09240924,0,0,0.09240924,-5.65772,-25.6423)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3698"
|
||||
xlink:href="#linearGradient4843"
|
||||
inkscape:collect="always" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.272727"
|
||||
inkscape:cx="16.5"
|
||||
inkscape:cy="16.5"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="953"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata3657">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1019.3622)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2807"
|
||||
clip-path="url(#clipPath2815)"
|
||||
transform="translate(0,1019.8622)">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="32"
|
||||
width="32"
|
||||
id="rect2802"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient2973);fill-opacity:1;stroke:none"
|
||||
id="rect4875"
|
||||
width="21"
|
||||
height="28"
|
||||
x="6"
|
||||
y="2"
|
||||
ry="4"
|
||||
rx="4" />
|
||||
<path
|
||||
transform="matrix(0.09169279,0.01148462,-0.01148462,0.09169279,1.24989,-28.62005)"
|
||||
d="m 312.50679,544.32837 c -20.28396,20.1643 -45.83498,-32.08006 -74.19864,-28.40036 -29.32333,3.80421 -41.202,60.28859 -67.50841,46.78663 -25.44547,-13.06007 16.34617,-53.50493 4.08171,-79.34329 -12.67942,-26.71258 -70.06997,-20.55523 -65.35797,-49.74645 4.55778,-28.23586 55.93746,-0.9878 76.72126,-20.63649 21.48703,-20.31349 -2.10362,-72.99241 27.11497,-77.53162 28.26233,-4.39065 18.22508,52.89443 43.33464,66.58923 25.95913,14.15816 68.76986,-24.55656 82.11594,1.82928 12.9093,25.52229 -44.67374,33.67836 -49.93898,61.7909 -5.4434,29.06371 44.60573,57.81562 23.63548,78.66217 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.36"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.4167054"
|
||||
sodipodi:arg1="0.81345017"
|
||||
sodipodi:r2="60.646587"
|
||||
sodipodi:r1="121.55363"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:sides="5"
|
||||
id="path4877"
|
||||
style="fill:none;stroke:none"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:url(#linearGradient2975);fill-opacity:1;stroke:#ffffff;stroke-width:15.98369503;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4879"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:arg2="1.428641"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:randomized="0"
|
||||
d="m 294.46869,523.45259 c -9.08043,8.81335 -45.57491,-17.76993 -58.10148,-15.97712 -12.52658,1.79282 -40.09949,37.54547 -51.28749,31.63294 -11.18801,-5.91252 2.81678,-48.83551 -2.75921,-60.19499 -5.57599,-11.35947 -48.09928,-26.53469 -45.93342,-39.00218 2.16586,-12.46749 47.31577,-12.41208 56.39619,-21.22544 9.08043,-8.81335 10.3725,-53.9448 22.89908,-55.73762 12.52657,-1.79281 26.42597,41.16443 37.61397,47.07695 11.188,5.91252 54.50984,-6.80503 60.08583,4.55445 5.57599,11.35947 -30.98363,37.85309 -33.14948,50.32059 -2.16586,12.46749 23.31643,49.73906 14.23601,58.55242 z"
|
||||
transform="matrix(0.07507522,4.398431e-4,-4.398431e-4,0.07507522,-2.36792,-12.92398)" />
|
||||
<path
|
||||
transform="matrix(0.03131375,-0.02522366,0.02522366,0.03131375,2.32085,0.206819)"
|
||||
d="m 294.46869,523.45259 c -9.08043,8.81335 -45.57491,-17.76993 -58.10148,-15.97712 -12.52658,1.79282 -40.09949,37.54547 -51.28749,31.63294 -11.18801,-5.91252 2.81678,-48.83551 -2.75921,-60.19499 -5.57599,-11.35947 -48.09928,-26.53469 -45.93342,-39.00218 2.16586,-12.46749 47.31577,-12.41208 56.39619,-21.22544 9.08043,-8.81335 10.3725,-53.9448 22.89908,-55.73762 12.52657,-1.79281 26.42597,41.16443 37.61397,47.07695 11.188,5.91252 54.50984,-6.80503 60.08583,4.55445 5.57599,11.35947 -30.98363,37.85309 -33.14948,50.32059 -2.16586,12.46749 23.31643,49.73906 14.23601,58.55242 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.21"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.428641"
|
||||
sodipodi:arg1="0.80032243"
|
||||
sodipodi:r2="52"
|
||||
sodipodi:r1="94"
|
||||
sodipodi:cy="456"
|
||||
sodipodi:cx="229"
|
||||
sodipodi:sides="5"
|
||||
id="path4889"
|
||||
style="fill:url(#linearGradient2977);fill-opacity:1;stroke:#ffffff;stroke-width:24.86989784;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3698);fill-opacity:1;stroke:none;display:inline"
|
||||
d="m 2.659112,0.45056835 27.630363,0 L 29.457792,20.39883 C 25.879683,16.517642 12.825421,10.535309 3.6153,10.535309 L 2.659112,0.45056835 z"
|
||||
id="path4881"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1006 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 927 B |
Before Width: | Height: | Size: 786 B |
Before Width: | Height: | Size: 440 B |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 514 B |
Before Width: | Height: | Size: 459 B |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 537 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 496 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 701 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 618 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 450 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1008 B |
Before Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 474 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 358 B |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 802 B |
Before Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.7 KiB |