Better UX
* All buttons are in the same DOM container as the iframe * Icons for buttons * Rewriting the build process * Simplier state management * Buttons are hidden using CSS
This commit is contained in:
parent
6991a261ce
commit
a7c6e520e6
@ -170,3 +170,7 @@ There is an example file [here](documentation/examples/nginx/site.conf).
|
||||
NB: this example files also serve the static html files with converseJS.
|
||||
|
||||
NB: it is recommanded to change ```Access-Control-Allow-Origin``` to something else that ```"*"```.
|
||||
|
||||
## Credits
|
||||
|
||||
Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube).
|
||||
|
@ -1,4 +1,47 @@
|
||||
iframe.peertube-plugin-livechat {
|
||||
#peertube-plugin-livechat-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.peertube-plugin-livechat-buttons {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.peertube-plugin-livechat-button {
|
||||
border: 1px solid black;
|
||||
background-color: var(--mainBackgroundColor);
|
||||
min-height: 32px;
|
||||
min-width: 32px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.peertube-plugin-livechat-button-icon {
|
||||
background-size: 32px 32px;
|
||||
background-repeat: no-repeat;
|
||||
background-color: transparent;
|
||||
background-position: center center;
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
[peertube-plugin-livechat-state="initializing"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[peertube-plugin-livechat-state="open"] .peertube-plugin-livechat-button-open {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[peertube-plugin-livechat-state="closed"] .peertube-plugin-livechat-button-close {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#peertube-plugin-livechat-container iframe {
|
||||
border: 1px solid black;
|
||||
min-height: 30vh;
|
||||
height: 100%;
|
||||
}
|
||||
|
@ -5,13 +5,10 @@ function register ({ registerHook, _peertubeHelpers }) {
|
||||
registerHook({
|
||||
target: 'action:router.navigation-end',
|
||||
handler: () => {
|
||||
const el = document.querySelector('.peertube-plugin-livechat-init')
|
||||
if (el) {
|
||||
el.classList.remove('peertube-plugin-livechat-init')
|
||||
const container = document.querySelector('#peertube-plugin-livechat-container')
|
||||
if (container) {
|
||||
container.remove()
|
||||
}
|
||||
|
||||
document.querySelectorAll('.peertube-plugin-livechat-stuff')
|
||||
.forEach(dom => dom.remove())
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -63,21 +63,30 @@ function register ({ registerHook, peertubeHelpers }) {
|
||||
return iframeUri
|
||||
}
|
||||
|
||||
function displayButton (buttons, name, label, callback) {
|
||||
function displayButton (buttonContainer, name, label, callback, icon) {
|
||||
const button = document.createElement('button')
|
||||
button.classList.add(
|
||||
'action-button',
|
||||
'peertube-plugin-livechat-stuff',
|
||||
'peertube-plugin-livechat-button',
|
||||
'peertube-plugin-livechat-button-' + name
|
||||
)
|
||||
button.setAttribute('type', 'button')
|
||||
button.textContent = label
|
||||
button.onclick = callback
|
||||
buttons.prepend(button)
|
||||
if (icon) {
|
||||
const iconUrl = peertubeHelpers.getBaseStaticRoute() + '/images/' + icon
|
||||
const iconEl = document.createElement('span')
|
||||
iconEl.classList.add('peertube-plugin-livechat-button-icon')
|
||||
iconEl.setAttribute('style',
|
||||
'background-image: url(\'' + iconUrl + '\');'
|
||||
)
|
||||
button.prepend(iconEl)
|
||||
button.setAttribute('title', label)
|
||||
} else {
|
||||
button.textContent = label
|
||||
}
|
||||
buttonContainer.append(button)
|
||||
}
|
||||
|
||||
function displayChatButtons (peertubeHelpers, uuid, showOpenBlank) {
|
||||
logger.log('Adding buttons in the DOM...')
|
||||
function insertChatDom (container, peertubeHelpers, uuid, showOpenBlank) {
|
||||
logger.log('Adding livechat in the DOM...')
|
||||
const p = new Promise((resolve, reject) => {
|
||||
Promise.all([
|
||||
peertubeHelpers.translate('Open chat'),
|
||||
@ -87,37 +96,31 @@ function register ({ registerHook, peertubeHelpers }) {
|
||||
const labelOpen = labels[0]
|
||||
const labelOpenBlank = labels[1]
|
||||
const labelClose = labels[2]
|
||||
const buttons = document.querySelector('.video-actions')
|
||||
|
||||
const iframeUri = getIframeUri(uuid)
|
||||
if (!iframeUri) {
|
||||
return reject(new Error('No uri, cant display the buttons.'))
|
||||
}
|
||||
|
||||
const buttonContainer = document.createElement('div')
|
||||
buttonContainer.classList.add('peertube-plugin-livechat-buttons')
|
||||
container.append(buttonContainer)
|
||||
|
||||
displayButton(buttonContainer, 'open', labelOpen, () => openChat(), 'talking.png')
|
||||
if (showOpenBlank) {
|
||||
displayButton(buttons, 'openblank', labelOpenBlank, () => {
|
||||
displayButton(buttonContainer, 'openblank', labelOpenBlank, () => {
|
||||
closeChat()
|
||||
window.open(iframeUri)
|
||||
})
|
||||
}, 'talking-new-window.png')
|
||||
}
|
||||
displayButton(buttons, 'open', labelOpen, () => openChat())
|
||||
displayButton(buttons, 'close', labelClose, () => closeChat())
|
||||
displayButton(buttonContainer, 'close', labelClose, () => closeChat(), 'bye.png')
|
||||
|
||||
toggleShowHideButtons(null)
|
||||
resolve()
|
||||
})
|
||||
})
|
||||
return p
|
||||
}
|
||||
|
||||
function toggleShowHideButtons (chatOpened) {
|
||||
// showing/hiding buttons...
|
||||
document.querySelectorAll('.peertube-plugin-livechat-button-open')
|
||||
.forEach(button => (button.style.display = (chatOpened === true || chatOpened === null ? 'none' : '')))
|
||||
|
||||
document.querySelectorAll('.peertube-plugin-livechat-button-close')
|
||||
.forEach(button => (button.style.display = (chatOpened === false || chatOpened === null ? 'none' : '')))
|
||||
}
|
||||
|
||||
function openChat () {
|
||||
const p = new Promise((resolve, reject) => {
|
||||
const uuid = lastUUID
|
||||
@ -135,25 +138,27 @@ function register ({ registerHook, peertubeHelpers }) {
|
||||
const additionalStyles = settings['chat-style'] || ''
|
||||
|
||||
logger.info('Opening the chat...')
|
||||
const videoWrapper = document.querySelector('#video-wrapper')
|
||||
const container = document.getElementById('peertube-plugin-livechat-container')
|
||||
if (!container) {
|
||||
logger.error('Cant found the livechat container.')
|
||||
return reject(new Error('Cant found the livechat container'))
|
||||
}
|
||||
|
||||
if (container.querySelector('iframe')) {
|
||||
logger.error('Seems that there is already an iframe in the container.')
|
||||
return reject(new Error('Seems that there is already an iframe in the container.'))
|
||||
}
|
||||
|
||||
// Creating the iframe...
|
||||
const iframe = document.createElement('iframe')
|
||||
iframe.setAttribute('src', iframeUri)
|
||||
iframe.classList.add(
|
||||
'peertube-plugin-livechat',
|
||||
'peertube-plugin-livechat-stuff',
|
||||
'peertube-plugin-livechat-iframe-stuff'
|
||||
)
|
||||
iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts allow-popups allow-forms')
|
||||
iframe.setAttribute('frameborder', '0')
|
||||
if (additionalStyles) {
|
||||
iframe.setAttribute('style', additionalStyles)
|
||||
}
|
||||
videoWrapper.append(iframe)
|
||||
|
||||
// showing/hiding buttons...
|
||||
toggleShowHideButtons(true)
|
||||
container.append(iframe)
|
||||
container.setAttribute('peertube-plugin-livechat-state', 'open')
|
||||
|
||||
resolve()
|
||||
})
|
||||
@ -161,25 +166,32 @@ function register ({ registerHook, peertubeHelpers }) {
|
||||
}
|
||||
|
||||
function closeChat () {
|
||||
document.querySelectorAll('.peertube-plugin-livechat-iframe-stuff')
|
||||
const container = document.getElementById('peertube-plugin-livechat-container')
|
||||
if (!container) {
|
||||
logger.error('Cant close livechat, container not found.')
|
||||
return
|
||||
}
|
||||
container.querySelectorAll('iframe')
|
||||
.forEach(dom => dom.remove())
|
||||
|
||||
// showing/hiding buttons...
|
||||
toggleShowHideButtons(false)
|
||||
container.setAttribute('peertube-plugin-livechat-state', 'closed')
|
||||
}
|
||||
|
||||
function initChat () {
|
||||
const el = document.querySelector('#videojs-wrapper')
|
||||
if (!el) {
|
||||
const videoWrapper = document.querySelector('#video-wrapper')
|
||||
if (!videoWrapper) {
|
||||
logger.error('The required div is not present in the DOM.')
|
||||
return
|
||||
}
|
||||
if (el.classList.contains('peertube-plugin-livechat-init')) {
|
||||
let container = videoWrapper.querySelector('#peertube-plugin-livechat-container')
|
||||
if (container) {
|
||||
logger.log('The chat seems already initialized...')
|
||||
return
|
||||
}
|
||||
// Adding a custom class in the dom, so we know initChat was already called.
|
||||
el.classList.add('peertube-plugin-livechat-init')
|
||||
container = document.createElement('div')
|
||||
container.setAttribute('id', 'peertube-plugin-livechat-container')
|
||||
container.setAttribute('peertube-plugin-livechat-state', 'initializing')
|
||||
videoWrapper.append(container)
|
||||
|
||||
peertubeHelpers.getSettings().then(s => {
|
||||
settings = s
|
||||
@ -214,11 +226,11 @@ function register ({ registerHook, peertubeHelpers }) {
|
||||
return
|
||||
}
|
||||
|
||||
displayChatButtons(peertubeHelpers, uuid, !!settings['chat-open-blank']).then(() => {
|
||||
insertChatDom(container, peertubeHelpers, uuid, !!settings['chat-open-blank']).then(() => {
|
||||
if (settings['chat-auto-display']) {
|
||||
openChat()
|
||||
} else {
|
||||
toggleShowHideButtons(false)
|
||||
container.setAttribute('peertube-plugin-livechat-state', 'closed')
|
||||
}
|
||||
})
|
||||
})
|
||||
|
98
package-lock.json
generated
98
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "peertube-plugin-livechat",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@ -2920,6 +2920,12 @@
|
||||
"readable-stream": "^2.0.1"
|
||||
}
|
||||
},
|
||||
"memorystream": {
|
||||
"version": "0.3.1",
|
||||
"resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz",
|
||||
"integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=",
|
||||
"dev": true
|
||||
},
|
||||
"micromatch": {
|
||||
"version": "3.1.10",
|
||||
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
|
||||
@ -3147,6 +3153,73 @@
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"npm-run-all": {
|
||||
"version": "4.1.5",
|
||||
"resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz",
|
||||
"integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ansi-styles": "^3.2.1",
|
||||
"chalk": "^2.4.1",
|
||||
"cross-spawn": "^6.0.5",
|
||||
"memorystream": "^0.3.1",
|
||||
"minimatch": "^3.0.4",
|
||||
"pidtree": "^0.3.0",
|
||||
"read-pkg": "^3.0.0",
|
||||
"shell-quote": "^1.6.1",
|
||||
"string.prototype.padend": "^3.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"load-json-file": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
|
||||
"integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"graceful-fs": "^4.1.2",
|
||||
"parse-json": "^4.0.0",
|
||||
"pify": "^3.0.0",
|
||||
"strip-bom": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"parse-json": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
|
||||
"integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"error-ex": "^1.3.1",
|
||||
"json-parse-better-errors": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"path-type": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
|
||||
"integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"pify": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"pify": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
|
||||
"integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
|
||||
"dev": true
|
||||
},
|
||||
"read-pkg": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
|
||||
"integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"load-json-file": "^4.0.0",
|
||||
"normalize-package-data": "^2.3.2",
|
||||
"path-type": "^3.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"npm-run-path": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
|
||||
@ -3464,6 +3537,12 @@
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"pidtree": {
|
||||
"version": "0.3.1",
|
||||
"resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz",
|
||||
"integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==",
|
||||
"dev": true
|
||||
},
|
||||
"pify": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
||||
@ -3938,6 +4017,12 @@
|
||||
"integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
|
||||
"dev": true
|
||||
},
|
||||
"shell-quote": {
|
||||
"version": "1.7.2",
|
||||
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
|
||||
"integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==",
|
||||
"dev": true
|
||||
},
|
||||
"signal-exit": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
|
||||
@ -4268,6 +4353,17 @@
|
||||
"strip-ansi": "^5.1.0"
|
||||
}
|
||||
},
|
||||
"string.prototype.padend": {
|
||||
"version": "3.1.2",
|
||||
"resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz",
|
||||
"integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"call-bind": "^1.0.2",
|
||||
"define-properties": "^1.1.3",
|
||||
"es-abstract": "^1.18.0-next.2"
|
||||
}
|
||||
},
|
||||
"string.prototype.trimend": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz",
|
||||
|
10
package.json
10
package.json
@ -30,6 +30,7 @@
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^4.3.1",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"webpack": "^4.41.2",
|
||||
"webpack-cli": "^3.3.10"
|
||||
},
|
||||
@ -43,13 +44,18 @@
|
||||
],
|
||||
"library": "./main.js",
|
||||
"scripts": {
|
||||
"clean": "rm -rf dist/*",
|
||||
"prepare": "npm run build",
|
||||
"build": "mkdir -p dist/conversejs && cp -r node_modules/converse.js/dist/* dist/conversejs/ && webpack --mode=production",
|
||||
"build:converse": "mkdir -p dist/conversejs && cp -r node_modules/converse.js/dist/* dist/conversejs/",
|
||||
"build:images": "mkdir -p dist/images && cp public/images/* dist/images/",
|
||||
"build:webpack": "webpack --mode=production",
|
||||
"build": "npm-run-all -s clean -p build:converse build:images build:webpack",
|
||||
"lint": "npx eslint --ext .js ."
|
||||
},
|
||||
"staticDirs": {
|
||||
"static": "dist/static",
|
||||
"conversejs": "dist/conversejs/"
|
||||
"conversejs": "dist/conversejs/",
|
||||
"images": "dist/images/"
|
||||
},
|
||||
"translations": {
|
||||
"fr-FR": "./languages/fr.json"
|
||||
|
BIN
public/images/bye.png
Normal file
BIN
public/images/bye.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
307
public/images/bye.svg
Normal file
307
public/images/bye.svg
Normal file
@ -0,0 +1,307 @@
|
||||
<?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="320"
|
||||
height="320"
|
||||
viewBox="0 0 84.666664 84.666669"
|
||||
version="1.1"
|
||||
id="svg1428"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="bye.svg"
|
||||
inkscape:export-filename="/home/john/dev/peertube-plugin-livechat/public/images/bye.png"
|
||||
inkscape:export-xdpi="9.6000004"
|
||||
inkscape:export-ydpi="9.6000004">
|
||||
<defs
|
||||
id="defs1422">
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1738"
|
||||
id="radialGradient1740-1-7-6"
|
||||
cx="56.455734"
|
||||
cy="167.68628"
|
||||
fx="56.455734"
|
||||
fy="167.68628"
|
||||
r="20.579618"
|
||||
gradientTransform="matrix(1.2029851,0,0,0.16716418,-47.949956,39.543311)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1738">
|
||||
<stop
|
||||
style="stop-color:#838383;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1734" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop1736" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="262.14003"
|
||||
inkscape:cy="232.3386"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1854"
|
||||
inkscape:window-height="1136"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
units="px" />
|
||||
<metadata
|
||||
id="metadata1425">
|
||||
<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="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path1732-7-3-8"
|
||||
cx="19.96545"
|
||||
cy="67.574448"
|
||||
rx="24.756975"
|
||||
ry="3.4401751" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 35.977204,59.606121 c -0.66521,0.0317 -0.90806,1.86675 -1.67005,2.49827 -0.76198,0.6315 -2.18385,1.43793 -3.60114,0.48685 -1.41731,-0.95108 -2.83639,2.03121 -2.77881,2.56654 0.0575,0.53532 2.53797,0.4501 3.98348,0.23869 1.44552,-0.21139 2.65515,-1.22512 3.28304,-2.33046 0.58964,-1.03807 0.78349,-3.45987 0.78349,-3.45987 z"
|
||||
id="path1043-7-2-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 22.034164,60.979241 c 0.21864,-0.10732 0.42573,-0.28483 0.60375,-0.50683 0.0926,-0.1167 0.15972,-0.28064 0.13871,-0.42154 -0.006,-0.0713 -0.031,-0.13477 -0.078,-0.16805 -0.12335,-0.10887 -0.30249,-0.10732 -0.47016,-0.0383 -0.20298,0.0789 -0.39905,0.2319 -0.56799,0.42042 -0.11823,0.13706 -0.16025,0.34577 -0.12491,0.50121 0.0336,0.17017 0.15161,0.30452 0.30869,0.27391 0.0646,-0.007 0.13993,-0.0314 0.18995,-0.0604 z"
|
||||
id="path867-4-7-4-4-3-7-2-6-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 2.4983439,63.822111 c 0.57376,-0.48093 1.84501,0.74693 2.84882,0.65416 1.00382,-0.0927 2.66035,-0.55215 3.28975,-2.36061 0.62942,-1.80848 3.5505301,-0.59122 3.8141901,-0.13548 0.26364,0.45569 -1.85666,2.27413 -3.1864901,3.2094 -1.32982,0.93527 -2.92988,1.0739 -4.09766,0.70013 -1.09666,-0.35101 -2.66861,-2.0676 -2.66861,-2.0676 z"
|
||||
id="path1043-7-3-66"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 11.325464,61.202531 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
|
||||
id="path867-4-7-4-4-3-7-4-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 34.500134,40.432801 c 2.31997,11.26779 -3.09502,18.71357 -11.26023,20.32123 -7.2425,1.42598 -16.2400101,-5.91537 -17.0198701,-14.65833 -0.61407,-6.88401 3.52766,-12.0123 11.7421701,-13.29711 8.00195,-1.25157 15.51172,2.65 16.53793,7.63421 z"
|
||||
id="path865-2-8-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 10.699384,15.842391 c 0.44598,-1.16728 2.11592,-2.05512 3.18298,-0.90247 0.63176,0.68248 29.57877,25.82862 30.42077,26.48249 1.15526,0.89713 1.60938,2.37015 0.50844,3.01835 -1.1721,0.38118 -43.95615013,4.49048 -45.03666013,4.69581 -1.08047997,0.20538 -4.11575997,-1.33884 -2.99209997,-2.87253 1.12368,-1.53367 13.5028701,-28.48604 13.9165701,-30.42165 z"
|
||||
id="path863-4-1-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscscc" />
|
||||
<g
|
||||
id="g1182-9-2-6"
|
||||
transform="matrix(1.0255649,0.18019794,-0.02159692,0.97127763,-31.075406,-102.46702)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1176-2-9-2"
|
||||
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path903-5-2-0-3-6"
|
||||
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
|
||||
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path920-9-6-9-7"
|
||||
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
|
||||
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path863-7-3-8-0-5"
|
||||
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
|
||||
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 9.0103139,24.840771 c -0.25367,0.56923 -0.43416,1.00262 -0.61704,1.29891 -0.28237,0.4575 -1.34,0.21469 -1.01385,-0.49808 0.16047,-0.38467 0.37605,-0.8677 0.66161,-1.36625 0.28558,-0.49854 1.22295,-0.004 0.96928,0.56542 z"
|
||||
id="path867-4-9-8-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 16.602014,63.624831 c 0.29501,0.90429 2.16609,1.24696 2.76417,1.32293 0.59805,0.076 1.97375,-2.20317 2.10507,-2.58755 0.13129,-0.3844 -0.82651,-3.6931 -1.15113,-3.98018 -0.32466,-0.28705 -4.15824,-2.48473 -6.89346,-1.39178 -2.73523,1.09297 -4.5558801,3.39176 -4.9615101,5.71905 -0.19242,1.10412 -0.27316,3.06229 1.48729,2.86346 0.6711101,-0.0758 0.5500401,-1.86492 2.1746301,-2.55464 1.82492,-0.77474 2.79582,-0.62576 4.47494,0.60871 z"
|
||||
id="path996-6-8-98"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 0.96158387,64.414861 c 0.67675003,-0.45775 2.00538003,1.00994 3.13362003,1.01925 1.12825,0.009 3.44924,-0.51346 4.28698,-2.40171 0.83774,-1.8883 2.3516101,0.22769 2.6121801,0.74967 0.26058,0.52197 -1.0210601,1.98532 -2.5762101,2.8521 -1.55516,0.86677 -3.35287,0.84192 -4.62951,0.30981 -1.1989,-0.49971 -2.82706003,-2.52912 -2.82706003,-2.52912 z"
|
||||
id="path1043-6-6-5-72"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 12.851604,58.816671 c -0.16114,0.20897 -0.38897,0.3919 -0.65467,0.53456 -0.13944,0.074 -0.31983,0.11153 -0.45591,0.0601 -0.07,-0.0211 -0.12772,-0.0597 -0.14923,-0.11713 -0.0793,-0.15273 -0.0337,-0.34219 0.076,-0.50541 0.12853,-0.19857 0.32945,-0.37457 0.55942,-0.51452 0.1661,-0.0968 0.38531,-0.0984 0.53234,-0.029 0.16203,0.071 0.26795,0.22315 0.19888,0.38313 -0.0229,0.0667 -0.0656,0.14157 -0.10682,0.18855 z"
|
||||
id="path867-4-7-4-4-9-9-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.238145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 40.636011,59.647544 c -0.422921,0.764962 -3.134138,0.300148 -4.45321,0.933492 -1.319089,0.633315 -3.25886,1.96694 -2.731894,4.012225 0.526987,2.045316 -4.353821,2.018304 -5.071652,1.732553 -0.717805,-0.285729 0.704968,-2.681752 1.823956,-4.285765 1.119016,-1.60401 3.228734,-2.604844 5.135866,-2.88801 1.791004,-0.265943 5.296931,0.495501 5.296931,0.495501 z"
|
||||
id="path1043-6-6-0-3-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 22.691564,63.858151 c -0.38501,0.86979 -2.28115,1.02138 -2.88384,1.03645 -0.60268,0.0151 -1.74071,-2.39157 -1.83246,-2.78727 -0.0917,-0.39571 1.19596,-3.59051 1.54795,-3.84327 0.35205,-0.25273 4.38831,-2.05124 6.99891,-0.68713 2.6106,1.36411 4.18932,3.83532 4.35737,6.19171 0.0797,1.11793 -0.0381,3.07421 -1.76938,2.69827 -0.66001,-0.14329 -0.35853,-1.911 -1.905,-2.76156 -1.73716,-0.95542 -2.71815,-0.90544 -4.51355,0.1528 z"
|
||||
id="path996-6-5-6-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 20.113614,63.906451 c 0.31333,-0.27734 -2.26502,-0.52171 -1.37364,-0.56165 2.14829,-0.0962 5.49858,-1.51022 6.21721,-1.48763 0.66641,0.1099 2.36967,0.53811 3.05484,1.13802 0.82895,0.85105 0.83383,2.02217 0.89792,2.64974 0.0877,0.39759 0.43069,0.84401 0.57402,0.98791 -0.14548,-0.0195 -0.92467,-0.0455 -1.00126,-0.55111 l -0.0941,0.0118 c -0.008,0.002 -0.0149,0.004 -0.0226,0.006 -0.0252,0.005 -0.0512,0.007 -0.0775,0.007 l -0.0129,0.002 c -2.6e-4,-7.9e-4 -5.2e-4,-0.001 -0.002,-0.002 -0.28284,-0.0135 -0.57038,-0.33903 -0.67954,-0.76931 -0.06,-0.23773 -0.0573,-0.47796 0.007,-0.66596 l 5.3e-4,1.6e-4 c 0.0622,-0.1811 0.17703,-0.29925 0.31996,-0.32939 0.0277,-0.005 0.0562,-0.008 0.0852,-0.006 l 0.004,-5.3e-4 c -0.12574,-0.23052 -0.28555,-0.44277 -0.50196,-0.61521 -0.0121,0.037 -0.0289,0.0722 -0.052,0.10451 l -0.26149,0.29948 c -0.005,0.007 -0.008,0.0147 -0.0131,0.0219 -0.0177,0.0228 -0.0374,0.0441 -0.0601,0.0632 l -0.009,0.009 c -7.9e-4,-1.8e-4 -5.3e-4,-2.3e-4 -0.002,-5.3e-4 -0.24244,0.19659 -0.72706,0.14054 -1.14495,-0.13244 -0.41499,-0.27154 -0.64276,-0.67799 -0.53961,-0.96288 0.0118,-0.0335 0.0282,-0.0645 0.049,-0.0927 0.0195,-0.0251 0.0413,-0.0483 0.0667,-0.0687 l 0.0404,-0.0545 c -0.23747,-0.0352 -0.47068,-0.0383 -0.70628,-0.0127 l 0.0528,0.17372 c 0.005,0.008 0.008,0.0157 0.0118,0.0238 0.0114,0.0289 0.0191,0.0594 0.023,0.091 l 0.003,0.0119 c -5.3e-4,8e-4 -0.001,8e-4 -0.002,0.002 0.0348,0.33056 -0.33508,0.73947 -0.87378,0.96604 -0.60764,0.25518 -1.21283,0.18962 -1.35172,-0.14644 -0.0124,-0.0314 -0.0204,-0.0645 -0.024,-0.0992 l -0.0239,-0.0586 c -0.47527,0.83566 -2.00716,0.85196 -2.59159,0.87508 -0.27661,0.0109 -0.4265,0.2024 -0.84718,-0.0824 -0.16837,-0.11397 0.51714,-0.44149 0.85851,-0.74365 z"
|
||||
id="path1092-6-8-2-4-4-8-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.084634,59.584921 c 0.26286,0.0232 0.55176,-0.0213 0.83656,-0.12041 0.14884,-0.0526 0.29854,-0.16006 0.3527,-0.29509 0.0319,-0.0658 0.0425,-0.13442 0.0147,-0.18914 -0.0588,-0.16174 -0.22919,-0.25633 -0.42362,-0.28596 -0.23318,-0.0397 -0.49872,-0.0108 -0.75737,0.0638 -0.18367,0.0568 -0.33312,0.21718 -0.38156,0.37234 -0.0573,0.16735 -0.017,0.3483 0.14757,0.40567 0.0647,0.0283 0.14863,0.0475 0.21112,0.0489 z"
|
||||
id="path867-4-7-4-4-9-8-5-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 21.080654,63.452851 c -0.25332,-0.41608 -1.68587,0.01 -2.39584,-0.57153 -1.70983,-1.40056 -3.40345,-1.67713 -3.96631,-1.60069 -0.56287,0.0763 -1.9108,-0.17662 -3.28652,1.12273 -0.9108,0.76281 -1.03415,1.92743 -1.1614,2.54529 -0.12745,0.38668 -0.5139001,0.7961 -0.6710501,0.92476 0.14671,-0.005 0.9245201,0.0483 1.0518801,-0.44698 l 0.0924,0.0212 c 0.008,0.003 0.0144,0.006 0.0219,0.008 0.0246,0.008 0.0502,0.0123 0.0764,0.0143 l 0.0127,0.003 c 4e-4,-5.3e-4 7.4e-4,-0.001 0.002,-0.001 0.28275,0.0152 0.60177,-0.27957 0.75389,-0.69661 0.0837,-0.23043 0.10541,-0.4697 0.06,-0.66329 l -5.3e-4,1.1e-4 c -0.0436,-0.18646 -0.14584,-0.31562 -0.28498,-0.36006 -0.027,-0.008 -0.0551,-0.0133 -0.0842,-0.0149 l -0.004,-10e-4 c 0.14841,-0.21661 0.32887,-0.4116 0.56163,-0.56126 0.008,0.038 0.0214,0.0748 0.0412,0.10923 l 0.22985,0.32441 c 0.004,0.007 0.007,0.0155 0.0108,0.0231 0.0153,0.0245 0.0328,0.0477 0.0534,0.069 l 0.008,0.0102 c 7.9e-4,-9e-5 5e-4,-1.8e-4 0.002,-5.3e-4 0.22131,0.22012 0.70911,0.21339 1.15247,-0.0159 0.44035,-0.22816 0.70808,-0.60947 0.63428,-0.90335 -0.008,-0.0345 -0.0216,-0.067 -0.0393,-0.0972 -0.0169,-0.027 -0.0362,-0.0522 -0.0594,-0.0751 l -0.0347,-0.0583 c 0.23981,-0.0109 0.47215,0.009 0.70394,0.0588 l -0.0701,0.16748 c -0.005,0.007 -0.01,0.0148 -0.0142,0.0225 -0.0142,0.0276 -0.025,0.0572 -0.032,0.0882 l -0.004,0.0116 c 4.2e-4,7.9e-4 0.001,7.9e-4 0.001,0.002 -0.0681,0.32534 0.25854,0.76957 0.77155,1.04949 0.57869,0.31535 1.18741,0.31137 1.35958,-0.009 0.0155,-0.0299 0.0268,-0.0621 0.0339,-0.0962 l 0.0297,-0.0559 c 0.38828,0.87946 2.47427,0.97095 3.05335,1.05308 0.27409,0.0389 -0.17108,0.36438 0.2295,-0.19966 0,0 0.19336,-0.87674 0.44922,-0.96214 z"
|
||||
id="path1092-6-8-2-4-0-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2118-1"
|
||||
cx="27.033035"
|
||||
cy="61.349079"
|
||||
rx="1.3079523"
|
||||
ry="0.79874945"
|
||||
transform="rotate(7.6759953)" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2118-4-49"
|
||||
cx="2.393944"
|
||||
cy="67.89106"
|
||||
rx="1.3079523"
|
||||
ry="0.79874945"
|
||||
transform="rotate(-16.263776)" />
|
||||
<path
|
||||
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20.710974,48.936211 c 0.0248,-0.83143 0.78535,-0.82216 0.85565,-0.12503 0.0703,0.69714 0.13616,1.22038 0.12315,1.6135 -0.0201,0.607 -0.82519,0.73682 -0.90491,-0.14119 -0.0582,-0.46459 -0.0497,-0.88216 -0.0739,-1.34724 z"
|
||||
id="path867-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 28.117854,48.427801 c 0.11272,-0.80898 0.88195,-0.71737 0.87966,-0.0292 -0.002,0.68824 0.0189,1.40824 -0.0902,1.76962 -0.12806,0.42401 -0.81369,0.40879 -0.80186,-0.45701 -0.01,-0.45985 -0.0121,-0.82677 0.0124,-1.28342 z"
|
||||
id="path867-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.217518;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 25.023714,54.765641 c -0.89676,0.0018 -1.32514,-0.548313 -1.10628,-1.024353 0.18771,-0.864005 3.00743,-1.172644 2.40027,0.301039 -0.63079,0.837717 -1.29399,0.723314 -1.29399,0.723314 z"
|
||||
id="path991-3-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:transform-center-x="1.8588309"
|
||||
inkscape:transform-center-y="0.18354948" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 102.59795,67.497201 c 2.31997,11.2678 -3.095022,18.71357 -11.260232,20.32123 -7.242508,1.42598 -16.240005,-5.91537 -17.019875,-14.65833 -0.61406,-6.88401 3.52767,-12.01229 11.742177,-13.2971 8.001948,-1.25157 15.51172,2.64999 16.53793,7.6342 z"
|
||||
id="path865-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 84.77578,42.557307 c 0.71935,-1.13179 2.57749,-1.89594 3.352248,-0.6688 0.4587,0.72658 22.945222,27.909584 23.617892,28.622914 0.92296,0.97869 1.01704,2.48081 -0.22304,3.04732 -1.24617,0.295 -44.381592,1.28467 -45.495332,1.41095 -1.11373,0.12633 -3.73363,-1.63435 -2.25876,-3.08235 1.47488,-1.44797 20.135152,-27.429594 21.006992,-29.330034 z"
|
||||
id="path863-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscscc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 80.95346,51.409177 c -0.38644,0.54929 -0.6682,0.96842 -0.91944,1.250644 -0.38792,0.43577 -1.37163,0.11675 -0.87936,-0.570434 0.25036,-0.372 0.5786,-0.83808 0.97951,-1.31457 0.40092,-0.47647 1.20573,0.0851 0.81929,0.63436 z"
|
||||
id="path867-4-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<g
|
||||
id="g1182-9-2-0"
|
||||
transform="rotate(14.728606,339.57951,241.25828)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1176-2-9-5"
|
||||
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path903-5-2-0-3-9"
|
||||
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
|
||||
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path920-9-6-9-4"
|
||||
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
|
||||
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path863-7-3-8-0-6"
|
||||
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
|
||||
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:1;fill:#7d7d7d;fill-opacity:1;stroke:#ffffff;stroke-width:0.207534"
|
||||
id="rect2315"
|
||||
width="109.82377"
|
||||
height="6.2281537"
|
||||
x="5.9160509"
|
||||
y="-3.4400957"
|
||||
transform="matrix(0.70755922,0.70665405,-0.68672689,0.72691552,0,0)" />
|
||||
<rect
|
||||
style="fill:#7d7d7d;fill-opacity:1;stroke:#ffffff;stroke-width:0.207534"
|
||||
id="rect2315-5"
|
||||
width="109.82377"
|
||||
height="6.2281537"
|
||||
x="-57.005688"
|
||||
y="57.727814"
|
||||
transform="matrix(-0.70755922,0.70665405,0.68672689,0.72691552,0,0)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
BIN
public/images/talking-new-window.png
Normal file
BIN
public/images/talking-new-window.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
533
public/images/talking-new-window.svg
Normal file
533
public/images/talking-new-window.svg
Normal file
@ -0,0 +1,533 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="320"
|
||||
height="320"
|
||||
viewBox="0 0 84.666664 84.666669"
|
||||
version="1.1"
|
||||
id="svg1428"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="talking-new-window.svg"
|
||||
inkscape:export-filename="/home/john/dev/peertube-plugin-livechat/public/images/talking-new-window.png"
|
||||
inkscape:export-xdpi="9.6000004"
|
||||
inkscape:export-ydpi="9.6000004">
|
||||
<defs
|
||||
id="defs1422">
|
||||
<linearGradient
|
||||
id="linearGradient5158"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#7d7d7d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5156" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1738"
|
||||
id="radialGradient1740-1-7-6"
|
||||
cx="56.455734"
|
||||
cy="167.68628"
|
||||
fx="56.455734"
|
||||
fy="167.68628"
|
||||
r="20.579618"
|
||||
gradientTransform="matrix(0.6929171,0,0,0.09628625,9.4903237,13.667025)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1738">
|
||||
<stop
|
||||
style="stop-color:#838383;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1734" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop1736" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1738"
|
||||
id="radialGradient1740-1"
|
||||
cx="56.455734"
|
||||
cy="167.68628"
|
||||
fx="56.455734"
|
||||
fy="167.68628"
|
||||
r="20.579618"
|
||||
gradientTransform="matrix(0.6929171,0,0,0.09628625,-114.75862,15.326671)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="287.19413"
|
||||
inkscape:cy="373.24329"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1854"
|
||||
inkscape:window-height="1136"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
units="px" />
|
||||
<metadata
|
||||
id="metadata1425">
|
||||
<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="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#7d7d7d;stroke-width:0.553683;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3212-3"
|
||||
width="58.914337"
|
||||
height="39.519188"
|
||||
x="33.406757"
|
||||
y="-2.536422" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.152399px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path1732-7-3-8"
|
||||
cx="48.609467"
|
||||
cy="29.812904"
|
||||
rx="14.25997"
|
||||
ry="1.9815341" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 57.832206,25.223164 c -0.38316,0.01826 -0.523041,1.075245 -0.961945,1.438999 -0.438899,0.363743 -1.257894,0.828245 -2.07425,0.280425 -0.816368,-0.547821 -1.633755,1.169973 -1.600589,1.478322 0.03312,0.308343 1.461865,0.259256 2.294476,0.137485 0.832617,-0.121761 1.529362,-0.705667 1.891025,-1.342341 0.339632,-0.597926 0.451289,-1.992878 0.451289,-1.992878 z"
|
||||
id="path1043-7-2-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 49.801042,26.014079 c 0.125936,-0.06182 0.24522,-0.164062 0.347759,-0.291933 0.05334,-0.06722 0.092,-0.161648 0.0799,-0.242807 -0.0035,-0.04107 -0.01786,-0.07763 -0.04493,-0.0968 -0.07105,-0.06271 -0.174234,-0.06182 -0.270812,-0.02206 -0.116916,0.04545 -0.229852,0.133574 -0.327161,0.242161 -0.0681,0.07895 -0.0923,0.199163 -0.07195,0.288696 0.01935,0.09802 0.08733,0.175403 0.177805,0.157772 0.03721,-0.004 0.0806,-0.01809 0.109411,-0.03479 z"
|
||||
id="path867-4-7-4-4-3-7-2-6-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 38.548447,27.651566 c 0.330485,-0.277014 1.062722,0.430231 1.640915,0.376795 0.578198,-0.0534 1.532356,-0.318037 1.89489,-1.359706 0.362544,-1.041681 2.045098,-0.340542 2.196966,-0.07804 0.151856,0.262477 -1.069433,1.309895 -1.835412,1.848608 -0.765974,0.538714 -1.687606,0.618565 -2.360245,0.403274 -0.631674,-0.202181 -1.537114,-1.190934 -1.537114,-1.190934 z"
|
||||
id="path1043-7-3-66"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 43.632851,26.142693 c -0.07005,0.121542 -0.17997,0.233804 -0.314357,0.327628 -0.07065,0.04873 -0.167315,0.08122 -0.247569,0.06364 -0.04072,-0.0065 -0.07626,-0.02292 -0.09358,-0.05126 -0.05804,-0.07492 -0.05011,-0.177961 -0.004,-0.271676 0.05311,-0.11365 0.148521,-0.220492 0.263329,-0.310382 0.08329,-0.06269 0.204853,-0.07888 0.292831,-0.05265 0.09651,0.0258 0.169223,0.09877 0.145555,0.187936 -0.0066,0.03681 -0.02344,0.07921 -0.04199,0.10686 z"
|
||||
id="path867-4-7-4-4-3-7-4-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 56.981417,14.179369 c 1.336298,6.490225 -1.782726,10.77898 -6.485871,11.704989 -4.171666,0.821362 -9.354215,-3.407241 -9.803413,-8.443169 -0.353703,-3.965177 2.031926,-6.919062 6.763468,-7.6591099 4.609108,-0.720902 8.934721,1.5263949 9.525816,4.3972899 z"
|
||||
id="path865-2-8-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 43.27223,0.01534105 c 0.256884,-0.672352 1.218766,-1.18374595 1.833391,-0.519821 0.363892,0.393107 17.037314,14.87723495 17.522305,15.25386295 0.665427,0.516745 0.926999,1.365201 0.29286,1.738563 -0.675127,0.219559 -25.318658,2.586508 -25.941029,2.704778 -0.622355,0.118298 -2.37067,-0.771169 -1.723444,-1.654572 C 35.90355,16.654761 43.03394,1.1302481 43.27223,0.01534105 Z"
|
||||
id="path863-4-1-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscscc" />
|
||||
<g
|
||||
id="g1182-9-2-6"
|
||||
transform="matrix(0.5907234,0.10379366,-0.01243978,0.55945404,19.210032,-68.130651)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1176-2-9-2"
|
||||
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path903-5-2-0-3-6"
|
||||
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
|
||||
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path920-9-6-9-7"
|
||||
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
|
||||
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path863-7-3-8-0-5"
|
||||
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
|
||||
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 42.299329,5.1983901 c -0.146113,0.327875 -0.250075,0.577507 -0.355414,0.74817 -0.162644,0.263519 -0.771837,0.123661 -0.583975,-0.286893 0.09243,-0.22157 0.216604,-0.499794 0.381086,-0.786958 0.164493,-0.287158 0.704417,-0.0023 0.558303,0.325681 z"
|
||||
id="path867-4-9-8-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 46.672134,27.537934 c 0.169925,0.520869 1.247663,0.718246 1.592156,0.762005 0.344476,0.04378 1.136877,-1.269022 1.212517,-1.490424 0.07562,-0.221414 -0.476069,-2.127219 -0.663049,-2.292576 -0.187004,-0.16534 -2.395138,-1.4312 -3.97062,-0.801663 -1.575487,0.629549 -2.624178,1.953647 -2.85782,3.294162 -0.110833,0.635971 -0.15734,1.763873 0.856676,1.649347 0.386558,-0.04366 0.316822,-1.07419 1.252583,-1.471467 1.05115,-0.446249 1.610387,-0.360437 2.577557,0.350616 z"
|
||||
id="path996-6-8-98"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 37.663276,27.992989 c 0.389807,-0.263663 1.155095,0.581724 1.804959,0.587086 0.64987,0.0052 1.986756,-0.295752 2.469293,-1.38338 0.482536,-1.087657 1.354522,0.131149 1.50461,0.431808 0.150094,0.300654 -0.588128,1.143541 -1.483892,1.642805 -0.895769,0.499257 -1.931246,0.484944 -2.666589,0.178449 -0.690564,-0.287831 -1.628381,-1.456768 -1.628381,-1.456768 z"
|
||||
id="path1043-6-6-5-72"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 44.511905,24.768443 c -0.09282,0.120366 -0.224046,0.225733 -0.377089,0.307905 -0.08032,0.04262 -0.184221,0.06424 -0.262603,0.03462 -0.04032,-0.01215 -0.07357,-0.03439 -0.08596,-0.06747 -0.04568,-0.08797 -0.01941,-0.197101 0.04378,-0.291115 0.07403,-0.114376 0.189762,-0.215752 0.322225,-0.296363 0.09567,-0.05576 0.221938,-0.05668 0.306627,-0.0167 0.09333,0.0409 0.154338,0.128534 0.114554,0.220682 -0.01319,0.03842 -0.03779,0.08154 -0.06153,0.108605 z"
|
||||
id="path867-4-7-4-4-9-9-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 59.306341,26.770664 c -0.460787,-0.09562 -0.847098,0.977273 -1.446107,1.229364 -0.598998,0.252109 -1.672255,0.49651 -2.532139,-0.325911 -0.859896,-0.822439 -1.942617,0.854735 -1.967091,1.189885 -0.02448,0.335133 1.440824,0.6011 2.459149,0.722221 1.01833,0.121109 1.970575,-0.285897 2.534115,-0.849004 0.529232,-0.528812 0.952073,-1.966555 0.952073,-1.966555 z"
|
||||
id="path1043-6-6-0-3-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 50.21045,27.573905 c -0.221765,0.500997 -1.313938,0.588312 -1.661087,0.596993 -0.347142,0.0087 -1.002645,-1.37754 -1.055493,-1.605462 -0.05282,-0.227929 0.688871,-2.068127 0.891616,-2.213716 0.20278,-0.145572 2.527659,-1.181511 4.031359,-0.395786 1.503701,0.785725 2.41304,2.209137 2.509837,3.566413 0.04591,0.643926 -0.02195,1.770739 -1.01916,1.554198 -0.380164,-0.08253 -0.206512,-1.100732 -1.097276,-1.590653 -1.000601,-0.55032 -1.565649,-0.521532 -2.599796,0.08801 z"
|
||||
id="path996-6-5-6-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 48.694809,27.700146 c 0.180477,-0.159747 -1.304648,-0.300504 -0.791214,-0.323509 1.23741,-0.05541 3.167171,-0.869884 3.581101,-0.856872 0.383851,0.0633 1.364925,0.30995 1.759582,0.655497 0.477473,0.490203 0.480284,1.164766 0.5172,1.526245 0.05051,0.229011 0.248077,0.486148 0.330634,0.569034 -0.0838,-0.01123 -0.532608,-0.02621 -0.576723,-0.317438 l -0.0542,0.0068 c -0.0046,0.0012 -0.0086,0.0023 -0.01302,0.0035 -0.01452,0.0029 -0.02949,0.004 -0.04464,0.004 l -0.0074,0.0012 c -1.49e-4,-4.55e-4 -2.99e-4,-5.76e-4 -0.0012,-0.0012 -0.162915,-0.0078 -0.328537,-0.195281 -0.391413,-0.443121 -0.03456,-0.136932 -0.03301,-0.275304 0.004,-0.383592 l 3.05e-4,9.2e-5 c 0.03583,-0.104313 0.101969,-0.172367 0.184296,-0.189728 0.01595,-0.0029 0.03237,-0.0046 0.04908,-0.0035 l 0.0023,-3.05e-4 c -0.07243,-0.132779 -0.164476,-0.255035 -0.289128,-0.35436 -0.007,0.02131 -0.01665,0.04159 -0.02995,0.0602 l -0.150617,0.1725 c -0.0029,0.004 -0.0046,0.0085 -0.0075,0.01261 -0.01019,0.01313 -0.02154,0.0254 -0.03462,0.0364 l -0.0052,0.0052 c -4.55e-4,-1.04e-4 -3.06e-4,-1.32e-4 -0.0012,-3.05e-4 -0.139645,0.113235 -0.418786,0.08095 -0.659489,-0.07628 -0.239034,-0.156407 -0.370229,-0.390521 -0.310815,-0.554617 0.0068,-0.0193 0.01624,-0.03715 0.02822,-0.0534 0.01123,-0.01446 0.02379,-0.02782 0.03842,-0.03957 l 0.02327,-0.03139 c -0.136783,-0.02028 -0.271111,-0.02206 -0.406816,-0.0073 l 0.03041,0.100062 c 0.0029,0.0046 0.0046,0.009 0.0068,0.01371 0.0066,0.01665 0.011,0.03421 0.01325,0.05241 l 0.0017,0.0069 c -3.05e-4,4.61e-4 -5.76e-4,4.61e-4 -0.0012,0.0012 0.02004,0.190402 -0.193005,0.425933 -0.503295,0.556437 -0.35,0.146983 -0.698588,0.109221 -0.778589,-0.08435 -0.0071,-0.01809 -0.01175,-0.03715 -0.01382,-0.05714 l -0.01377,-0.03375 c -0.273754,0.481339 -1.15612,0.490728 -1.492751,0.504045 -0.159327,0.0063 -0.245663,0.116582 -0.487974,-0.04746 -0.09698,-0.06565 0.297872,-0.254298 0.4945,-0.428341 z"
|
||||
id="path1092-6-8-2-4-4-8-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 50.982109,25.210953 c 0.151407,0.01336 0.317812,-0.01227 0.481857,-0.06936 0.08573,-0.0303 0.171958,-0.09219 0.203154,-0.169971 0.01838,-0.0379 0.02448,-0.07743 0.0085,-0.108944 -0.03387,-0.09316 -0.132013,-0.147646 -0.244004,-0.164713 -0.134311,-0.02287 -0.287262,-0.0062 -0.436244,0.03675 -0.105793,0.03272 -0.191876,0.125095 -0.219777,0.214467 -0.033,0.09639 -0.0098,0.20062 0.085,0.233665 0.03727,0.0163 0.08561,0.02736 0.121604,0.02817 z"
|
||||
id="path867-4-7-4-4-9-8-5-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 49.251822,27.438873 c -0.145912,-0.239661 -0.971058,0.0058 -1.379999,-0.3292 -0.984859,-0.80672 -1.960381,-0.966023 -2.284587,-0.921994 -0.324212,0.04395 -1.100617,-0.101733 -1.893029,0.64669 -0.52462,0.439377 -0.595669,1.110196 -0.668965,1.466082 -0.07341,0.222727 -0.296005,0.458552 -0.386523,0.53266 0.08451,-0.0029 0.532522,0.02782 0.605881,-0.257459 l 0.05322,0.01221 c 0.0046,0.0017 0.0083,0.0035 0.01261,0.0046 0.01417,0.0046 0.02891,0.0071 0.04401,0.0082 l 0.0073,0.0017 c 2.3e-4,-3.06e-4 4.26e-4,-5.76e-4 0.0012,-5.76e-4 0.162863,0.0088 0.346618,-0.161032 0.434239,-0.401246 0.04821,-0.132728 0.06072,-0.270547 0.03456,-0.382054 l -3.05e-4,6.3e-5 c -0.02511,-0.1074 -0.084,-0.181796 -0.164148,-0.207394 -0.01555,-0.0046 -0.03174,-0.0077 -0.0485,-0.0086 l -0.0023,-5.76e-4 c 0.08548,-0.124767 0.189428,-0.237081 0.323497,-0.323285 0.0046,0.02189 0.01233,0.04308 0.02373,0.06292 l 0.132394,0.18686 c 0.0023,0.004 0.004,0.0089 0.0062,0.01331 0.0088,0.01411 0.01889,0.02748 0.03076,0.03974 l 0.0046,0.0059 c 4.55e-4,-5.2e-5 2.88e-4,-1.04e-4 0.0011,-3.06e-4 0.127474,0.126789 0.408446,0.122913 0.66382,-0.0092 0.253641,-0.13142 0.407853,-0.351054 0.365344,-0.520328 -0.0046,-0.01987 -0.01244,-0.03859 -0.02264,-0.05599 -0.0097,-0.01555 -0.02085,-0.03007 -0.03421,-0.04326 l -0.01999,-0.03358 c 0.13813,-0.0063 0.271958,0.0052 0.405468,0.03387 l -0.04038,0.09647 c -0.0029,0.004 -0.0058,0.0085 -0.0082,0.01296 -0.0082,0.0159 -0.0144,0.03295 -0.01843,0.0508 l -0.0023,0.0067 c 2.42e-4,4.55e-4 5.76e-4,4.55e-4 5.76e-4,0.0012 -0.03923,0.187396 0.148919,0.443271 0.444411,0.604505 0.333325,0.181641 0.683946,0.179348 0.783116,-0.0052 0.0089,-0.01722 0.01544,-0.03577 0.01953,-0.05541 l 0.01711,-0.0322 c 0.223649,0.506568 1.425175,0.559266 1.758724,0.606572 0.157875,0.02241 -0.09854,0.209883 0.132191,-0.115003 0,0 0.111375,-0.505001 0.25875,-0.554191 z"
|
||||
id="path1092-6-8-2-4-0-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2118-1"
|
||||
cx="51.131042"
|
||||
cy="21.351995"
|
||||
rx="0.75337797"
|
||||
ry="0.46007815"
|
||||
transform="rotate(7.6759953)" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2118-4-49"
|
||||
cx="39.554592"
|
||||
cy="40.752682"
|
||||
rx="0.75337797"
|
||||
ry="0.46007815"
|
||||
transform="rotate(-16.263776)" />
|
||||
<path
|
||||
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 49.038887,19.077317 c 0.01429,-0.478902 0.45236,-0.473563 0.492853,-0.07202 0.04049,0.401551 0.07843,0.702936 0.07093,0.929373 -0.01158,0.34963 -0.475308,0.424407 -0.521227,-0.08133 -0.03352,-0.267602 -0.02863,-0.508122 -0.04257,-0.776007 z"
|
||||
id="path867-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 53.305236,18.784474 c 0.06493,-0.465971 0.508001,-0.413204 0.506682,-0.01682 -0.0012,0.396425 0.01089,0.811144 -0.05196,1.019298 -0.07376,0.244229 -0.468684,0.235462 -0.46187,-0.263237 -0.0058,-0.264872 -0.007,-0.476218 0.0071,-0.739247 z"
|
||||
id="path867-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.210239;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 51.523017,24.265815 c -0.516532,0.0029 -0.763278,-0.889289 -0.637215,-1.661363 0.10812,-1.401299 1.732274,-1.90187 1.382551,0.488245 -0.363334,1.358664 -0.745336,1.173118 -0.745336,1.173118 z"
|
||||
id="path991-3-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:transform-center-x="1.0706829"
|
||||
inkscape:transform-center-y="0.29769222" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.152399px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path1732-7"
|
||||
cx="-75.639473"
|
||||
cy="31.472569"
|
||||
rx="14.25997"
|
||||
ry="1.9815341"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 67.027376,28.571147 c 0.416049,-0.187049 1.036566,0.684701 1.666109,0.777304 0.629543,0.0926 1.708681,0.07362 2.333356,-0.849908 0.624682,-0.92355 2.261282,0.179976 2.363557,0.473545 0.102274,0.293546 -1.440629,1.007876 -2.381361,1.340797 -0.940725,0.332921 -1.942991,0.180137 -2.612076,-0.197723 -0.628345,-0.354849 -1.369585,-1.544015 -1.369585,-1.544015 z"
|
||||
id="path1043-7-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 72.711123,25.456726 c 0.481281,-0.04101 0.868934,-0.853549 0.976259,-1.116711 0.107326,-0.263162 -0.858375,-1.119924 -1.033,-1.218794 -0.174626,-0.09888 -1.594899,0.09662 -1.774633,0.2143 -0.179735,0.117665 -1.804712,1.489496 -1.583782,2.840638 0.22093,1.35113 0.982935,2.555317 2.085626,2.977541 0.523139,0.200292 1.692708,0.304997 1.799873,-0.512903 0.04084,-0.311805 -1.14202,-0.412489 -1.293271,-1.219157 -0.169902,-0.906126 0.01699,-1.330712 0.822928,-1.964914 z"
|
||||
id="path996-7-1-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 70.565237,24.818295 c -0.07005,0.121542 -0.179971,0.233804 -0.314357,0.327628 -0.07065,0.04873 -0.167316,0.08122 -0.24757,0.06364 -0.04072,-0.0065 -0.07626,-0.02292 -0.09358,-0.05126 -0.05804,-0.07492 -0.05011,-0.17796 -0.004,-0.271675 0.05311,-0.11365 0.148521,-0.220492 0.263329,-0.310382 0.08329,-0.06269 0.204853,-0.07888 0.292831,-0.05265 0.09651,0.0258 0.169223,0.09877 0.145555,0.187936 -0.0066,0.03681 -0.02344,0.07921 -0.04199,0.106859 z"
|
||||
id="path867-4-7-4-4-3-7-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 84.947957,28.712687 c -0.416049,-0.187049 -1.036566,0.684701 -1.666109,0.777304 -0.629543,0.0926 -1.708679,0.07362 -2.333355,-0.849908 -0.624681,-0.92355 -2.261282,0.179976 -2.363556,0.473545 -0.102274,0.293546 1.440629,1.007876 2.38136,1.340797 0.940726,0.332921 1.94299,0.180137 2.612075,-0.197723 0.628345,-0.354849 1.369585,-1.544015 1.369585,-1.544015 z"
|
||||
id="path1043-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 79.264212,25.598266 c -0.481281,-0.04101 -0.868934,-0.853549 -0.976259,-1.116711 -0.107326,-0.263162 0.858375,-1.119924 1.033,-1.218794 0.174626,-0.09888 1.594899,0.09662 1.774633,0.2143 0.179734,0.117665 1.80471,1.489496 1.58378,2.840638 -0.22093,1.35113 -0.982933,2.555317 -2.085624,2.977541 -0.523139,0.200292 -1.692709,0.304997 -1.799873,-0.512903 -0.04084,-0.311805 1.14202,-0.412489 1.293271,-1.219157 0.169902,-0.906126 -0.01699,-1.330712 -0.822928,-1.964914 z"
|
||||
id="path996-7-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 81.410098,24.959835 c 0.07005,0.121542 0.179971,0.233804 0.314357,0.327628 0.07065,0.04873 0.167316,0.08122 0.24757,0.06364 0.04072,-0.0065 0.07626,-0.02292 0.09357,-0.05126 0.05804,-0.07492 0.05011,-0.17796 0.004,-0.271675 -0.05311,-0.11365 -0.14852,-0.220492 -0.263328,-0.310382 -0.08329,-0.06269 -0.204853,-0.07888 -0.292831,-0.05265 -0.09651,0.0258 -0.169223,0.09877 -0.145555,0.187936 0.0066,0.03681 0.02344,0.07921 0.04199,0.106859 z"
|
||||
id="path867-4-7-4-4-3-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 68.061534,12.996511 c -1.336298,6.490231 1.782726,10.77898 6.485871,11.704989 4.171671,0.821362 9.354211,-3.407242 9.803415,-8.44317 0.353697,-3.965176 -2.031931,-6.9190549 -6.763471,-7.6591029 -4.609107,-0.720902 -8.93472,1.5263889 -9.525815,4.3972839 z"
|
||||
id="path865-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 78.327069,-1.3688199 c -0.414345,-0.651909 -1.48463,-1.092057 -1.930889,-0.385227 -0.26421,0.418508 -13.216408,16.0758659 -13.603864,16.4867429 -0.531624,0.563723 -0.585814,1.428942 0.12847,1.75525 0.717792,0.16992 25.563719,0.739968 26.205231,0.812705 0.641506,0.07277 2.150564,-0.941383 1.301041,-1.775428 C 89.57753,14.691195 78.829247,-0.27416995 78.327069,-1.3688199 Z"
|
||||
id="path863-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscscc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 80.528718,3.7298401 c 0.222588,0.31639 0.384881,0.557808 0.529595,0.720369 0.223441,0.251002 0.790056,0.06725 0.50651,-0.328569 -0.144207,-0.214271 -0.333273,-0.482733 -0.564196,-0.75719 -0.230929,-0.274446 -0.694498,0.04902 -0.471909,0.36539 z"
|
||||
id="path867-4-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 76.94063,26.189464 c -0.546339,-0.04118 -0.994362,-1.041058 -1.118795,-1.365259 -0.124427,-0.324189 0.962233,-1.406063 1.159299,-1.532184 0.197072,-0.126114 2.179404,-0.04349 2.384482,0.0988 0.205073,0.142317 1.959759,1.986047 1.722966,3.666049 -0.236799,1.680002 -1.273503,3.013506 -2.519992,3.559247 -0.591365,0.258908 -1.675843,0.57232 -1.805759,-0.439843 -0.04954,-0.38585 0.968022,-0.5632 1.131352,-1.566594 0.183461,-1.127119 -0.03289,-1.649901 -0.953553,-2.420212 z"
|
||||
id="path996-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 82.923814,29.739168 c -0.424304,-0.203546 -1.057116,0.745076 -1.699147,0.845836 -0.64203,0.100782 -1.742567,0.08011 -2.379626,-0.92484 -0.63706,-1.004984 -2.091086,0.362867 -2.195382,0.68231 -0.104308,0.319431 1.254155,0.929726 2.213537,1.292006 0.959382,0.362268 1.981526,0.196018 2.663876,-0.215164 0.640796,-0.386138 1.396742,-1.680148 1.396742,-1.680148 z"
|
||||
id="path1043-6-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 76.389827,24.482782 c 0.267487,0.08473 0.258841,0.122014 0.681462,0.439562 1.017794,0.764746 1.404525,1.674386 1.438866,1.999761 0.03439,0.32537 0.360564,1.044849 -0.177931,1.992516 -0.302002,0.61406 -0.936677,0.84261 -1.264921,0.998441 -0.19888,0.124271 -0.375003,0.396563 -0.425455,0.502109 -0.01745,-0.08272 -0.153665,-0.510628 0.105978,-0.649726 l -0.02454,-0.04879 c -0.0029,-0.004 -0.0052,-0.0073 -0.0077,-0.01112 -0.0076,-0.01273 -0.01377,-0.02638 -0.01849,-0.04078 l -0.0035,-0.0067 c 2.94e-4,-3.34e-4 5.76e-4,-5.76e-4 5.76e-4,-0.0012 -0.04723,-0.156107 0.07398,-0.374969 0.286461,-0.517206 0.117446,-0.07842 0.248348,-0.123316 0.362867,-0.12445 l 1.2e-5,3.28e-4 c 0.110292,-0.0012 0.196559,0.03836 0.240485,0.110119 0.0083,0.014 0.01498,0.02903 0.01987,0.04504 l 0.0012,0.0023 c 0.100857,-0.112705 0.185229,-0.240381 0.237075,-0.391102 -0.02241,5.76e-4 -0.04476,-0.0017 -0.06675,-0.0081 l -0.212981,-0.08415 c -0.0046,-0.0012 -0.0096,-0.0017 -0.0144,-0.0029 -0.01578,-0.0052 -0.03116,-0.01181 -0.04591,-0.02045 l -0.0067,-0.0029 c -5.7e-5,-5.01e-4 2.9e-5,-3.28e-4 -4e-5,-0.0012 -0.153469,-0.09366 -0.216523,-0.367498 -0.148976,-0.646955 0.06733,-0.277614 0.243987,-0.479633 0.418514,-0.478602 0.02045,-5.8e-5 0.04044,0.0029 0.05978,0.0087 0.0174,0.0058 0.03416,0.01308 0.05017,0.02293 l 0.03738,0.0114 c -0.02673,-0.135671 -0.06998,-0.262857 -0.129346,-0.385775 l -0.0841,0.06217 c -0.0035,0.004 -0.0069,0.0075 -0.01066,0.011 -0.01348,0.01175 -0.02857,0.02183 -0.04493,0.03001 l -0.0059,0.004 c -4.66e-4,-1.44e-4 -5.76e-4,-4.95e-4 -0.0012,-5.76e-4 -0.172696,0.08265 -0.465971,-0.03923 -0.692851,-0.287895 -0.255702,-0.280569 -0.336861,-0.621675 -0.181255,-0.761879 0.01463,-0.01279 0.0311,-0.0235 0.04919,-0.03214 l 0.02719,-0.02425 c -0.545222,-0.09676 -0.986494,-1.037798 -1.111773,-1.350531 -0.05929,-0.14802 -0.07608,-0.06785 0.184607,-0.36922 0,0 0.330421,-0.03894 0.478545,0.0079 z"
|
||||
id="path1092-6-8-2-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssccccccccccccccccccccccccccccccccccccccccs" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 79.3351,24.925154 c 0.03813,0.147133 0.117987,0.295355 0.226718,0.430812 0.05725,0.07064 0.144455,0.131149 0.228188,0.134496 0.04188,0.0046 0.08115,-0.0029 0.105488,-0.02851 0.07644,-0.06311 0.09491,-0.17383 0.07349,-0.285073 -0.02344,-0.134207 -0.09034,-0.272758 -0.180737,-0.39874 -0.06623,-0.08874 -0.182125,-0.138908 -0.275684,-0.135268 -0.101889,0.0012 -0.192303,0.05798 -0.191704,0.158342 -0.0029,0.04055 0.0029,0.08983 0.01417,0.124018 z"
|
||||
id="path867-4-7-4-4-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 74.716507,26.09541 c 0.546339,-0.04118 0.994362,-1.041059 1.118795,-1.36526 0.124427,-0.324189 -0.962233,-1.406063 -1.1593,-1.532183 -0.197072,-0.126115 -2.179404,-0.04349 -2.384482,0.09879 -0.205072,0.142317 -1.959758,1.986047 -1.722966,3.666049 0.236799,1.680002 1.273503,3.013507 2.519992,3.559248 0.591366,0.258905 1.675843,0.572319 1.80576,-0.439844 0.04953,-0.38585 -0.968023,-0.563199 -1.131353,-1.566594 -0.183461,-1.127119 0.03289,-1.6499 0.953554,-2.420211 z"
|
||||
id="path996-6-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 68.743326,29.615103 c 0.424303,-0.203546 1.057118,0.745077 1.699148,0.845836 0.642031,0.100783 1.742567,0.08012 2.379627,-0.924839 0.637059,-1.004985 2.091086,0.362867 2.195382,0.68231 0.104307,0.319431 -1.254155,0.929726 -2.213538,1.292006 -0.959382,0.362268 -1.981525,0.196018 -2.663876,-0.215164 -0.640797,-0.386138 -1.396743,-1.680149 -1.396743,-1.680149 z"
|
||||
id="path1043-6-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1152;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 75.343025,24.709558 c -0.210965,0.116559 -0.171365,0.09305 -0.593566,0.386115 -1.12819,0.783127 -1.326592,1.453007 -1.452949,1.847393 -0.06889,0.382883 -0.165035,1.389912 0.0284,1.8775 0.302001,0.61406 0.936676,0.84261 1.26492,0.998441 0.198881,0.124271 0.375004,0.396563 0.425455,0.502109 0.01745,-0.08272 0.153665,-0.510628 -0.105977,-0.649726 l 0.02454,-0.04879 c 0.0029,-0.004 0.0052,-0.0073 0.0077,-0.01112 0.0076,-0.01273 0.01377,-0.02638 0.01849,-0.04078 l 0.0035,-0.0067 c -2.88e-4,-3.34e-4 -5.76e-4,-5.76e-4 -5.76e-4,-0.0012 0.04723,-0.156107 -0.07398,-0.374969 -0.286461,-0.517206 -0.117446,-0.07842 -0.248347,-0.123315 -0.362867,-0.12445 l -1.1e-5,3.34e-4 c -0.110293,-0.0012 -0.19656,0.03836 -0.240485,0.110119 -0.0083,0.014 -0.01498,0.02903 -0.01987,0.04504 l -0.0012,0.0023 c -0.100858,-0.112705 -0.18523,-0.240381 -0.237075,-0.391102 0.02241,5.76e-4 0.04476,-0.0017 0.06675,-0.0081 l 0.212981,-0.08415 c 0.0046,-0.0012 0.0096,-0.0017 0.0144,-0.0029 0.01578,-0.0052 0.03116,-0.01181 0.04591,-0.02045 l 0.0067,-0.0029 c 5.8e-5,-5.01e-4 -2.9e-5,-3.34e-4 4.1e-5,-0.0012 0.153468,-0.09366 0.216523,-0.367498 0.148976,-0.646955 -0.06733,-0.277614 -0.243987,-0.479633 -0.418515,-0.478602 -0.02045,-5.8e-5 -0.04043,0.0029 -0.05978,0.0087 -0.0174,0.0058 -0.03416,0.01308 -0.05017,0.02293 l -0.03738,0.0114 c 0.02673,-0.135671 0.06998,-0.262857 0.129347,-0.385775 l 0.08409,0.06217 c 0.0035,0.004 0.0069,0.0075 0.01066,0.011 0.01348,0.01175 0.02857,0.02183 0.04493,0.03001 l 0.0059,0.004 c 4.73e-4,-1.44e-4 5.76e-4,-5.01e-4 0.0012,-5.76e-4 0.172696,0.08265 0.465971,-0.03923 0.692851,-0.287895 0.255703,-0.280569 0.336861,-0.621675 0.181255,-0.761878 -0.01463,-0.01279 -0.0311,-0.0235 -0.04919,-0.03214 l -0.02719,-0.02425 c 0.545222,-0.09676 0.986494,-1.037798 1.111774,-1.350531 0.05929,-0.14802 0.418601,0.03335 0.15791,-0.268035 -0.07661,-0.08857 -0.515507,0.100627 -0.745347,0.227617 z"
|
||||
id="path1092-6-8-2-4-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sscccccccccccccccccccccccccccccccccccccccss" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.210239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 72.322036,24.8311 c -0.03813,0.147133 -0.117987,0.295354 -0.226718,0.430812 -0.05725,0.07063 -0.144455,0.131149 -0.228188,0.134495 -0.04188,0.0046 -0.08115,-0.0029 -0.105488,-0.02851 -0.07644,-0.06311 -0.09491,-0.17383 -0.07349,-0.285073 0.02344,-0.134207 0.09034,-0.272758 0.180736,-0.39874 0.06623,-0.08874 0.182125,-0.138908 0.275684,-0.135267 0.101889,0.0012 0.192303,0.05798 0.191704,0.158341 0.0029,0.04055 -0.0029,0.08983 -0.01417,0.124019 z"
|
||||
id="path867-4-7-4-4-9-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g1888"
|
||||
transform="matrix(-0.57405347,0.08327809,0.04662589,0.57118519,141.5848,-80.189874)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path867-2"
|
||||
d="m 127.44239,153.53297 c 0.0248,-0.83572 0.78535,-0.95789 0.85565,-0.2729 0.0703,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.82518,0.87943 -0.90491,0.0152 -0.0582,-0.45454 -0.0497,-0.87357 -0.0739,-1.33447 z"
|
||||
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path867-6-6"
|
||||
d="m 134.84928,151.74452 c 0.11271,-0.82846 0.88195,-0.86978 0.87965,-0.18119 -0.002,0.68859 0.0189,1.40498 -0.0902,1.78521 -0.12806,0.44614 -0.81369,0.54941 -0.80186,-0.31843 -0.01,-0.45813 -0.0121,-0.82468 0.0124,-1.28557 z"
|
||||
style="opacity:1;vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.58264157,0.11208921,-0.03005935,0.57521318,110.76853,-71.916203)"
|
||||
id="g1928-4">
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-9"
|
||||
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
|
||||
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-0.29778724"
|
||||
inkscape:transform-center-x="0.83927927"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-0-0"
|
||||
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
|
||||
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="0.70487957"
|
||||
inkscape:transform-center-x="0.84080235"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-7-9"
|
||||
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
|
||||
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.58264157,0.11208921,-0.03005935,0.57521318,110.50082,-71.897846)"
|
||||
id="g1923-1">
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-8-7"
|
||||
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
|
||||
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-6-7"
|
||||
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
|
||||
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-88-1"
|
||||
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
|
||||
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#762c2c;stroke-width:0.383039;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 72.199015,21.215946 c 0.418048,0.87687 1.911841,0.936175 2.311232,0.10156"
|
||||
id="path1990"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g1182-9-2-0"
|
||||
transform="matrix(-0.55707131,0.14644223,0.14644223,0.55707131,85.400214,-71.044292)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1176-2-9-5"
|
||||
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path903-5-2-0-3-9"
|
||||
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
|
||||
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path920-9-6-9-4"
|
||||
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
|
||||
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path863-7-3-8-0-6"
|
||||
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
|
||||
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#7d7d7d;stroke-width:0.613646;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3212"
|
||||
width="63.128792"
|
||||
height="45.301926"
|
||||
x="1.8592142"
|
||||
y="34.256992" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5182"
|
||||
width="12.713799"
|
||||
height="45.240932"
|
||||
x="1.8592142"
|
||||
y="34.256992" />
|
||||
<rect
|
||||
style="fill:#323232;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5184"
|
||||
width="50.139317"
|
||||
height="30.059298"
|
||||
x="14.573013"
|
||||
y="34.256992" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0912853;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5186"
|
||||
width="49.014507"
|
||||
height="1.3883845"
|
||||
x="14.993077"
|
||||
y="58.489567" />
|
||||
<rect
|
||||
style="fill:#000001;fill-opacity:1;stroke:none;stroke-width:0.575129;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5188"
|
||||
width="21.088634"
|
||||
height="2.1174114"
|
||||
x="19.955759"
|
||||
y="68.507721" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:#fffffe;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5190"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="32.367535"
|
||||
sodipodi:cy="46.842281"
|
||||
sodipodi:r1="15.267905"
|
||||
sodipodi:r2="7.6339521"
|
||||
sodipodi:arg1="2.0580561"
|
||||
sodipodi:arg2="3.1052537"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="M 25.219005,60.333295 24.738622,47.11963 24.258239,33.905966 35.9418,40.096775 47.62536,46.287583 36.422182,53.310439 Z"
|
||||
inkscape:transform-center-x="-1.1506285"
|
||||
inkscape:transform-center-y="0.075078654"
|
||||
transform="matrix(0.31459531,0.00613218,-0.00388122,0.43937456,26.778153,26.287778)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 51 KiB |
BIN
public/images/talking.png
Normal file
BIN
public/images/talking.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
464
public/images/talking.svg
Normal file
464
public/images/talking.svg
Normal file
@ -0,0 +1,464 @@
|
||||
<?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="320"
|
||||
height="320"
|
||||
viewBox="0 0 84.666664 84.666669"
|
||||
version="1.1"
|
||||
id="svg1428"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="talking.svg"
|
||||
inkscape:export-filename="/home/john/dev/peertube-plugin-livechat/public/images/talking.png"
|
||||
inkscape:export-xdpi="9.6000004"
|
||||
inkscape:export-ydpi="9.6000004">
|
||||
<defs
|
||||
id="defs1422">
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1738"
|
||||
id="radialGradient1740-1-7-6"
|
||||
cx="56.455734"
|
||||
cy="167.68628"
|
||||
fx="56.455734"
|
||||
fy="167.68628"
|
||||
r="20.579618"
|
||||
gradientTransform="matrix(1.2029851,0,0,0.16716418,-47.949956,39.543311)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1738">
|
||||
<stop
|
||||
style="stop-color:#838383;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1734" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop1736" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1738"
|
||||
id="radialGradient1740-1"
|
||||
cx="56.455734"
|
||||
cy="167.68628"
|
||||
fx="56.455734"
|
||||
fy="167.68628"
|
||||
r="20.579618"
|
||||
gradientTransform="matrix(1.2029851,0,0,0.16716418,-134.80812,42.424651)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="346.69413"
|
||||
inkscape:cy="373.24329"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1854"
|
||||
inkscape:window-height="1136"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
units="px" />
|
||||
<metadata
|
||||
id="metadata1425">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path1732-7-3-8"
|
||||
cx="19.96545"
|
||||
cy="67.574448"
|
||||
rx="24.756975"
|
||||
ry="3.4401751" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 35.977204,59.606121 c -0.66521,0.0317 -0.90806,1.86675 -1.67005,2.49827 -0.76198,0.6315 -2.18385,1.43793 -3.60114,0.48685 -1.41731,-0.95108 -2.83639,2.03121 -2.77881,2.56654 0.0575,0.53532 2.53797,0.4501 3.98348,0.23869 1.44552,-0.21139 2.65515,-1.22512 3.28304,-2.33046 0.58964,-1.03807 0.78349,-3.45987 0.78349,-3.45987 z"
|
||||
id="path1043-7-2-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 22.034164,60.979241 c 0.21864,-0.10732 0.42573,-0.28483 0.60375,-0.50683 0.0926,-0.1167 0.15972,-0.28064 0.13871,-0.42154 -0.006,-0.0713 -0.031,-0.13477 -0.078,-0.16805 -0.12335,-0.10887 -0.30249,-0.10732 -0.47016,-0.0383 -0.20298,0.0789 -0.39905,0.2319 -0.56799,0.42042 -0.11823,0.13706 -0.16025,0.34577 -0.12491,0.50121 0.0336,0.17017 0.15161,0.30452 0.30869,0.27391 0.0646,-0.007 0.13993,-0.0314 0.18995,-0.0604 z"
|
||||
id="path867-4-7-4-4-3-7-2-6-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 2.4983439,63.822111 c 0.57376,-0.48093 1.84501,0.74693 2.84882,0.65416 1.00382,-0.0927 2.66035,-0.55215 3.28975,-2.36061 0.62942,-1.80848 3.5505301,-0.59122 3.8141901,-0.13548 0.26364,0.45569 -1.85666,2.27413 -3.1864901,3.2094 -1.32982,0.93527 -2.92988,1.0739 -4.09766,0.70013 -1.09666,-0.35101 -2.66861,-2.0676 -2.66861,-2.0676 z"
|
||||
id="path1043-7-3-66"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 11.325464,61.202531 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
|
||||
id="path867-4-7-4-4-3-7-4-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 34.500134,40.432801 c 2.31997,11.26779 -3.09502,18.71357 -11.26023,20.32123 -7.2425,1.42598 -16.2400101,-5.91537 -17.0198701,-14.65833 -0.61407,-6.88401 3.52766,-12.0123 11.7421701,-13.29711 8.00195,-1.25157 15.51172,2.65 16.53793,7.63421 z"
|
||||
id="path865-2-8-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 10.699384,15.842391 c 0.44598,-1.16728 2.11592,-2.05512 3.18298,-0.90247 0.63176,0.68248 29.57877,25.82862 30.42077,26.48249 1.15526,0.89713 1.60938,2.37015 0.50844,3.01835 -1.1721,0.38118 -43.95615013,4.49048 -45.03666013,4.69581 -1.08047997,0.20538 -4.11575997,-1.33884 -2.99209997,-2.87253 1.12368,-1.53367 13.5028701,-28.48604 13.9165701,-30.42165 z"
|
||||
id="path863-4-1-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscscc" />
|
||||
<g
|
||||
id="g1182-9-2-6"
|
||||
transform="matrix(1.0255649,0.18019794,-0.02159692,0.97127763,-31.075406,-102.46702)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1176-2-9-2"
|
||||
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path903-5-2-0-3-6"
|
||||
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
|
||||
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path920-9-6-9-7"
|
||||
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
|
||||
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path863-7-3-8-0-5"
|
||||
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
|
||||
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 9.0103139,24.840771 c -0.25367,0.56923 -0.43416,1.00262 -0.61704,1.29891 -0.28237,0.4575 -1.34,0.21469 -1.01385,-0.49808 0.16047,-0.38467 0.37605,-0.8677 0.66161,-1.36625 0.28558,-0.49854 1.22295,-0.004 0.96928,0.56542 z"
|
||||
id="path867-4-9-8-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 16.602014,63.624831 c 0.29501,0.90429 2.16609,1.24696 2.76417,1.32293 0.59805,0.076 1.97375,-2.20317 2.10507,-2.58755 0.13129,-0.3844 -0.82651,-3.6931 -1.15113,-3.98018 -0.32466,-0.28705 -4.15824,-2.48473 -6.89346,-1.39178 -2.73523,1.09297 -4.5558801,3.39176 -4.9615101,5.71905 -0.19242,1.10412 -0.27316,3.06229 1.48729,2.86346 0.6711101,-0.0758 0.5500401,-1.86492 2.1746301,-2.55464 1.82492,-0.77474 2.79582,-0.62576 4.47494,0.60871 z"
|
||||
id="path996-6-8-98"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 0.96158387,64.414861 c 0.67675003,-0.45775 2.00538003,1.00994 3.13362003,1.01925 1.12825,0.009 3.44924,-0.51346 4.28698,-2.40171 0.83774,-1.8883 2.3516101,0.22769 2.6121801,0.74967 0.26058,0.52197 -1.0210601,1.98532 -2.5762101,2.8521 -1.55516,0.86677 -3.35287,0.84192 -4.62951,0.30981 -1.1989,-0.49971 -2.82706003,-2.52912 -2.82706003,-2.52912 z"
|
||||
id="path1043-6-6-5-72"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 12.851604,58.816671 c -0.16114,0.20897 -0.38897,0.3919 -0.65467,0.53456 -0.13944,0.074 -0.31983,0.11153 -0.45591,0.0601 -0.07,-0.0211 -0.12772,-0.0597 -0.14923,-0.11713 -0.0793,-0.15273 -0.0337,-0.34219 0.076,-0.50541 0.12853,-0.19857 0.32945,-0.37457 0.55942,-0.51452 0.1661,-0.0968 0.38531,-0.0984 0.53234,-0.029 0.16203,0.071 0.26795,0.22315 0.19888,0.38313 -0.0229,0.0667 -0.0656,0.14157 -0.10682,0.18855 z"
|
||||
id="path867-4-7-4-4-9-9-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 38.536474,62.292761 c -0.79998,-0.16601 -1.47066,1.69666 -2.51061,2.13432 -1.03993,0.43769 -2.90323,0.862 -4.39609,-0.56582 -1.49288,-1.42785 -3.37261,1.48392 -3.4151,2.06578 -0.0425,0.58183 2.50144,1.04358 4.26937,1.25386 1.76794,0.21026 3.42115,-0.49635 4.39952,-1.47397 0.91881,-0.91808 1.65291,-3.41417 1.65291,-3.41417 z"
|
||||
id="path1043-6-6-0-3-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 22.744944,63.687281 c -0.38501,0.86979 -2.28115,1.02138 -2.88384,1.03645 -0.60268,0.0151 -1.74071,-2.39157 -1.83246,-2.78727 -0.0917,-0.39571 1.19596,-3.59051 1.54795,-3.84327 0.35205,-0.25273 4.38831,-2.05124 6.99891,-0.68713 2.6106,1.36411 4.18932,3.83532 4.35737,6.19171 0.0797,1.11793 -0.0381,3.07421 -1.76938,2.69827 -0.66001,-0.14329 -0.35853,-1.911 -1.905,-2.76156 -1.73716,-0.95542 -2.71815,-0.90544 -4.51355,0.1528 z"
|
||||
id="path996-6-5-6-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 20.113614,63.906451 c 0.31333,-0.27734 -2.26502,-0.52171 -1.37364,-0.56165 2.14829,-0.0962 5.49858,-1.51022 6.21721,-1.48763 0.66641,0.1099 2.36967,0.53811 3.05484,1.13802 0.82895,0.85105 0.83383,2.02217 0.89792,2.64974 0.0877,0.39759 0.43069,0.84401 0.57402,0.98791 -0.14548,-0.0195 -0.92467,-0.0455 -1.00126,-0.55111 l -0.0941,0.0118 c -0.008,0.002 -0.0149,0.004 -0.0226,0.006 -0.0252,0.005 -0.0512,0.007 -0.0775,0.007 l -0.0129,0.002 c -2.6e-4,-7.9e-4 -5.2e-4,-0.001 -0.002,-0.002 -0.28284,-0.0135 -0.57038,-0.33903 -0.67954,-0.76931 -0.06,-0.23773 -0.0573,-0.47796 0.007,-0.66596 l 5.3e-4,1.6e-4 c 0.0622,-0.1811 0.17703,-0.29925 0.31996,-0.32939 0.0277,-0.005 0.0562,-0.008 0.0852,-0.006 l 0.004,-5.3e-4 c -0.12574,-0.23052 -0.28555,-0.44277 -0.50196,-0.61521 -0.0121,0.037 -0.0289,0.0722 -0.052,0.10451 l -0.26149,0.29948 c -0.005,0.007 -0.008,0.0147 -0.0131,0.0219 -0.0177,0.0228 -0.0374,0.0441 -0.0601,0.0632 l -0.009,0.009 c -7.9e-4,-1.8e-4 -5.3e-4,-2.3e-4 -0.002,-5.3e-4 -0.24244,0.19659 -0.72706,0.14054 -1.14495,-0.13244 -0.41499,-0.27154 -0.64276,-0.67799 -0.53961,-0.96288 0.0118,-0.0335 0.0282,-0.0645 0.049,-0.0927 0.0195,-0.0251 0.0413,-0.0483 0.0667,-0.0687 l 0.0404,-0.0545 c -0.23747,-0.0352 -0.47068,-0.0383 -0.70628,-0.0127 l 0.0528,0.17372 c 0.005,0.008 0.008,0.0157 0.0118,0.0238 0.0114,0.0289 0.0191,0.0594 0.023,0.091 l 0.003,0.0119 c -5.3e-4,8e-4 -0.001,8e-4 -0.002,0.002 0.0348,0.33056 -0.33508,0.73947 -0.87378,0.96604 -0.60764,0.25518 -1.21283,0.18962 -1.35172,-0.14644 -0.0124,-0.0314 -0.0204,-0.0645 -0.024,-0.0992 l -0.0239,-0.0586 c -0.47527,0.83566 -2.00716,0.85196 -2.59159,0.87508 -0.27661,0.0109 -0.4265,0.2024 -0.84718,-0.0824 -0.16837,-0.11397 0.51714,-0.44149 0.85851,-0.74365 z"
|
||||
id="path1092-6-8-2-4-4-8-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.084634,59.584921 c 0.26286,0.0232 0.55176,-0.0213 0.83656,-0.12041 0.14884,-0.0526 0.29854,-0.16006 0.3527,-0.29509 0.0319,-0.0658 0.0425,-0.13442 0.0147,-0.18914 -0.0588,-0.16174 -0.22919,-0.25633 -0.42362,-0.28596 -0.23318,-0.0397 -0.49872,-0.0108 -0.75737,0.0638 -0.18367,0.0568 -0.33312,0.21718 -0.38156,0.37234 -0.0573,0.16735 -0.017,0.3483 0.14757,0.40567 0.0647,0.0283 0.14863,0.0475 0.21112,0.0489 z"
|
||||
id="path867-4-7-4-4-9-8-5-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 21.080654,63.452851 c -0.25332,-0.41608 -1.68587,0.01 -2.39584,-0.57153 -1.70983,-1.40056 -3.40345,-1.67713 -3.96631,-1.60069 -0.56287,0.0763 -1.9108,-0.17662 -3.28652,1.12273 -0.9108,0.76281 -1.03415,1.92743 -1.1614,2.54529 -0.12745,0.38668 -0.5139001,0.7961 -0.6710501,0.92476 0.14671,-0.005 0.9245201,0.0483 1.0518801,-0.44698 l 0.0924,0.0212 c 0.008,0.003 0.0144,0.006 0.0219,0.008 0.0246,0.008 0.0502,0.0123 0.0764,0.0143 l 0.0127,0.003 c 4e-4,-5.3e-4 7.4e-4,-0.001 0.002,-0.001 0.28275,0.0152 0.60177,-0.27957 0.75389,-0.69661 0.0837,-0.23043 0.10541,-0.4697 0.06,-0.66329 l -5.3e-4,1.1e-4 c -0.0436,-0.18646 -0.14584,-0.31562 -0.28498,-0.36006 -0.027,-0.008 -0.0551,-0.0133 -0.0842,-0.0149 l -0.004,-10e-4 c 0.14841,-0.21661 0.32887,-0.4116 0.56163,-0.56126 0.008,0.038 0.0214,0.0748 0.0412,0.10923 l 0.22985,0.32441 c 0.004,0.007 0.007,0.0155 0.0108,0.0231 0.0153,0.0245 0.0328,0.0477 0.0534,0.069 l 0.008,0.0102 c 7.9e-4,-9e-5 5e-4,-1.8e-4 0.002,-5.3e-4 0.22131,0.22012 0.70911,0.21339 1.15247,-0.0159 0.44035,-0.22816 0.70808,-0.60947 0.63428,-0.90335 -0.008,-0.0345 -0.0216,-0.067 -0.0393,-0.0972 -0.0169,-0.027 -0.0362,-0.0522 -0.0594,-0.0751 l -0.0347,-0.0583 c 0.23981,-0.0109 0.47215,0.009 0.70394,0.0588 l -0.0701,0.16748 c -0.005,0.007 -0.01,0.0148 -0.0142,0.0225 -0.0142,0.0276 -0.025,0.0572 -0.032,0.0882 l -0.004,0.0116 c 4.2e-4,7.9e-4 0.001,7.9e-4 0.001,0.002 -0.0681,0.32534 0.25854,0.76957 0.77155,1.04949 0.57869,0.31535 1.18741,0.31137 1.35958,-0.009 0.0155,-0.0299 0.0268,-0.0621 0.0339,-0.0962 l 0.0297,-0.0559 c 0.38828,0.87946 2.47427,0.97095 3.05335,1.05308 0.27409,0.0389 -0.17108,0.36438 0.2295,-0.19966 0,0 0.19336,-0.87674 0.44922,-0.96214 z"
|
||||
id="path1092-6-8-2-4-0-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2118-1"
|
||||
cx="27.033035"
|
||||
cy="61.349079"
|
||||
rx="1.3079523"
|
||||
ry="0.79874945"
|
||||
transform="rotate(7.6759953)" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2118-4-49"
|
||||
cx="2.393944"
|
||||
cy="67.89106"
|
||||
rx="1.3079523"
|
||||
ry="0.79874945"
|
||||
transform="rotate(-16.263776)" />
|
||||
<path
|
||||
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20.710974,48.936211 c 0.0248,-0.83143 0.78535,-0.82216 0.85565,-0.12503 0.0703,0.69714 0.13616,1.22038 0.12315,1.6135 -0.0201,0.607 -0.82519,0.73682 -0.90491,-0.14119 -0.0582,-0.46459 -0.0497,-0.88216 -0.0739,-1.34724 z"
|
||||
id="path867-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 28.117854,48.427801 c 0.11272,-0.80898 0.88195,-0.71737 0.87966,-0.0292 -0.002,0.68824 0.0189,1.40824 -0.0902,1.76962 -0.12806,0.42401 -0.81369,0.40879 -0.80186,-0.45701 -0.01,-0.45985 -0.0121,-0.82677 0.0124,-1.28342 z"
|
||||
id="path867-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 25.023714,57.944051 c -0.89676,0.005 -1.32514,-1.54391 -1.10628,-2.88432 0.18771,-2.43282 3.00743,-3.30187 2.40027,0.84765 -0.63079,2.3588 -1.29399,2.03667 -1.29399,2.03667 z"
|
||||
id="path991-3-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:transform-center-x="1.8588309"
|
||||
inkscape:transform-center-y="0.51682867" />
|
||||
<ellipse
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path1732-7"
|
||||
cx="-66.892708"
|
||||
cy="70.455818"
|
||||
rx="24.756975"
|
||||
ry="3.4401751"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 51.941094,65.418611 c 0.72231,-0.32474 1.7996,1.18872 2.89256,1.34949 1.09296,0.16077 2.96647,0.12782 4.05098,-1.47554 1.08452,-1.60339 3.92585,0.31246 4.10341,0.82213 0.17756,0.50963 -2.5011,1.74979 -4.13432,2.32778 -1.63321,0.57799 -3.37326,0.31274 -4.53487,-0.34327 -1.09088,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
|
||||
id="path1043-7-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 61.808744,60.011611 c 0.83556,-0.0712 1.50857,-1.48186 1.6949,-1.93874 0.18633,-0.45688 -1.49024,-1.94432 -1.79341,-2.11597 -0.30317,-0.17166 -2.76893,0.16775 -3.08097,0.37205 -0.31204,0.20428 -3.13319,2.58594 -2.74963,4.93168 0.38356,2.34572 1.70649,4.43633 3.62089,5.16936 0.90823,0.34773 2.93874,0.52951 3.12479,-0.89046 0.0709,-0.54133 -1.98268,-0.71613 -2.24527,-2.1166 -0.29497,-1.57314 0.0295,-2.31027 1.4287,-3.41132 z"
|
||||
id="path996-7-1-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 58.083234,58.903221 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
|
||||
id="path867-4-7-4-4-3-7-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 83.053319,65.664341 c -0.72231,-0.32474 -1.7996,1.18872 -2.89256,1.34949 -1.09296,0.16077 -2.966467,0.12782 -4.050977,-1.47554 -1.08452,-1.60339 -3.92585,0.31246 -4.10341,0.82213 -0.17756,0.50963 2.5011,1.74979 4.13432,2.32778 1.63321,0.57799 3.373257,0.31274 4.534867,-0.34327 1.09088,-0.61606 2.37776,-2.68059 2.37776,-2.68059 z"
|
||||
id="path1043-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 73.185672,60.257341 c -0.83556,-0.0712 -1.50857,-1.48186 -1.6949,-1.93874 -0.18633,-0.45688 1.49024,-1.94432 1.79341,-2.11597 0.30317,-0.17166 2.76893,0.16775 3.08097,0.37205 0.31204,0.20428 3.133187,2.58594 2.749627,4.93168 -0.38356,2.34572 -1.706487,4.43633 -3.620887,5.16936 -0.90823,0.34773 -2.93874,0.52951 -3.12479,-0.89046 -0.0709,-0.54133 1.98268,-0.71613 2.24527,-2.1166 0.29497,-1.57314 -0.0295,-2.31027 -1.4287,-3.41132 z"
|
||||
id="path996-7-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 76.911182,59.148951 c 0.12162,0.21101 0.31245,0.40591 0.54576,0.5688 0.12266,0.0846 0.29048,0.14101 0.42981,0.11048 0.0707,-0.0112 0.132397,-0.0398 0.162457,-0.089 0.10077,-0.13007 0.087,-0.30896 0.007,-0.47166 -0.0922,-0.19731 -0.257847,-0.3828 -0.457167,-0.53886 -0.14461,-0.10884 -0.35565,-0.13694 -0.50839,-0.0914 -0.16756,0.0448 -0.29379,0.17148 -0.2527,0.32628 0.0115,0.0639 0.0407,0.13752 0.0729,0.18552 z"
|
||||
id="path867-4-7-4-4-3-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 53.736514,38.379221 c -2.31997,11.2678 3.09502,18.71357 11.26023,20.32123 7.242508,1.42598 16.240005,-5.91537 17.019875,-14.65833 0.61406,-6.88401 -3.52767,-12.01229 -11.742177,-13.2971 -8.001948,-1.25157 -15.511718,2.64999 -16.537928,7.6342 z"
|
||||
id="path865-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 71.558682,13.439327 c -0.71935,-1.13179 -2.57749,-1.89594 -3.352248,-0.6688 -0.4587,0.72658 -22.94523,27.909584 -23.6179,28.622914 -0.92296,0.97869 -1.01704,2.48081 0.22304,3.04732 1.24617,0.295 44.381605,1.28467 45.495345,1.41095 1.11373,0.12633 3.73363,-1.63435 2.25876,-3.08235 -1.47488,-1.44797 -20.135157,-27.429594 -21.006997,-29.330034 z"
|
||||
id="path863-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscscc" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 75.381002,22.291197 c 0.38644,0.54929 0.6682,0.96842 0.91944,1.250644 0.38792,0.43577 1.37163,0.11675 0.87936,-0.570434 -0.25036,-0.372 -0.5786,-0.83808 -0.97951,-1.31457 -0.40092,-0.47647 -1.20573,0.0851 -0.81929,0.63436 z"
|
||||
id="path867-4-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 69.151662,61.283731 c -0.948508,-0.0715 -1.726328,-1.8074 -1.942358,-2.37025 -0.21602,-0.56283 1.670548,-2.44109 2.012678,-2.66005 0.34214,-0.21895 3.7837,-0.0755 4.13974,0.17152 0.35603,0.24708 3.40237,3.44801 2.99127,6.36469 -0.41111,2.91668 -2.21095,5.2318 -4.375,6.17927 -1.02668,0.449494 -2.90946,0.993614 -3.13501,-0.76362 -0.086,-0.66988 1.6806,-0.97778 1.96416,-2.71979 0.31851,-1.95681 -0.0571,-2.86442 -1.65548,-4.20177 z"
|
||||
id="path996-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 79.539169,67.446431 c -0.73664,-0.35338 -1.835277,1.29354 -2.949917,1.46847 -1.11464,0.17497 -3.0253,0.13909 -4.13131,-1.60563 -1.10601,-1.74477 -3.63037,0.62998 -3.81144,1.18457 -0.18109,0.55457 2.17736,1.614114 3.84296,2.243074 1.6656,0.62894 3.44016,0.34031 4.6248,-0.37355 1.112497,-0.67038 2.424907,-2.916934 2.424907,-2.916934 z"
|
||||
id="path1043-6-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 68.195404,58.320731 c 0.464388,0.1471 0.449378,0.21183 1.183098,0.76313 1.76701,1.32769 2.43842,2.90693 2.49804,3.47182 0.0597,0.56488 0.62598,1.81398 -0.30891,3.45924 -0.52431,1.06608 -1.62618,1.46287 -2.19605,1.73341 -0.34528,0.21575 -0.65105,0.68848 -0.73864,0.87172 -0.0303,-0.14362 -0.26678,-0.88651 0.18399,-1.128 l -0.0426,-0.0847 c -0.005,-0.007 -0.009,-0.0126 -0.0133,-0.0193 -0.0132,-0.0221 -0.0239,-0.0458 -0.0321,-0.0708 l -0.006,-0.0116 c 5.1e-4,-5.8e-4 0.001,-10e-4 0.001,-0.002 -0.082,-0.27102 0.12844,-0.65099 0.49733,-0.89793 0.2039,-0.13615 0.43116,-0.21409 0.62998,-0.21606 l 2e-5,5.7e-4 c 0.19148,-0.002 0.34125,0.0666 0.41751,0.19118 0.0144,0.0243 0.026,0.0504 0.0345,0.0782 l 0.002,0.004 c 0.1751,-0.19567 0.32158,-0.41733 0.41159,-0.679 -0.0389,0.001 -0.0777,-0.003 -0.11589,-0.014 l -0.36976,-0.1461 c -0.008,-0.002 -0.0167,-0.003 -0.025,-0.005 -0.0274,-0.009 -0.0541,-0.0205 -0.0797,-0.0355 l -0.0117,-0.005 c -1e-4,-8.7e-4 5e-5,-5.7e-4 -7e-5,-0.002 -0.26644,-0.16261 -0.37591,-0.63802 -0.25864,-1.12319 0.11689,-0.48197 0.42359,-0.8327 0.72659,-0.83091 0.0355,-1e-4 0.0702,0.005 0.10378,0.0151 0.0302,0.01 0.0593,0.0227 0.0871,0.0398 l 0.0649,0.0198 c -0.0464,-0.23554 -0.1215,-0.45635 -0.22456,-0.66975 l -0.146,0.10794 c -0.006,0.007 -0.012,0.0131 -0.0185,0.0191 -0.0234,0.0204 -0.0496,0.0379 -0.078,0.0521 l -0.0102,0.007 c -8.1e-4,-2.5e-4 -10e-4,-8.6e-4 -0.002,-0.001 -0.29982,0.14349 -0.80898,-0.0681 -1.20287,-0.49982 -0.44393,-0.4871 -0.58483,-1.0793 -0.31468,-1.32271 0.0254,-0.0222 0.054,-0.0408 0.0854,-0.0558 l 0.0472,-0.0421 c -0.946568,-0.16798 -1.712668,-1.80174 -1.930168,-2.34468 -0.10293,-0.25698 -0.13209,-0.11779 0.3205,-0.64101 0,0 0.57365,-0.0676 0.83081,0.0138 z"
|
||||
id="path1092-6-8-2-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssccccccccccccccccccccccccccccccccccccccccs" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 73.308742,59.088741 c 0.0662,0.25544 0.20484,0.51277 0.39361,0.74794 0.0994,0.12263 0.25079,0.22769 0.39616,0.2335 0.0727,0.008 0.14088,-0.005 0.18314,-0.0495 0.13271,-0.10957 0.16478,-0.30179 0.12759,-0.49492 -0.0407,-0.233 -0.15684,-0.47354 -0.31378,-0.69226 -0.11499,-0.15406 -0.31619,-0.24116 -0.47862,-0.23484 -0.17689,0.002 -0.33386,0.10066 -0.33282,0.2749 -0.005,0.0704 0.005,0.15596 0.0246,0.21531 z"
|
||||
id="path867-4-7-4-4-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 65.290324,61.120441 c 0.94851,-0.0715 1.72633,-1.8074 1.94236,-2.37025 0.21602,-0.56283 -1.67055,-2.44109 -2.01268,-2.66005 -0.34214,-0.21895 -3.7837,-0.0755 -4.13974,0.17152 -0.35603,0.24708 -3.40237,3.44801 -2.99127,6.36469 0.41111,2.91668 2.21095,5.2318 4.375,6.17927 1.02668,0.44949 2.90946,0.993614 3.13501,-0.76362 0.086,-0.66988 -1.6806,-0.97778 -1.96416,-2.71979 -0.31851,-1.95681 0.0571,-2.86442 1.65548,-4.20177 z"
|
||||
id="path996-6-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccssssc" />
|
||||
<path
|
||||
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 54.920184,67.231041 c 0.73664,-0.35338 1.83528,1.29354 2.94992,1.46847 1.11464,0.17497 3.0253,0.13909 4.13131,-1.60563 1.10601,-1.74477 3.63037,0.62998 3.81144,1.18457 0.18109,0.55457 -2.17736,1.614114 -3.84296,2.243074 -1.6656,0.62894 -3.44016,0.34031 -4.6248,-0.37355 -1.1125,-0.67038 -2.42491,-2.916934 -2.42491,-2.916934 z"
|
||||
id="path1043-6-6-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccsc" />
|
||||
<path
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 66.378034,58.714441 c -0.36626,0.20236 -0.29751,0.16154 -1.0305,0.67034 -1.95867,1.3596 -2.30312,2.52259 -2.52249,3.20729 -0.11961,0.66473 -0.28652,2.41305 0.0493,3.25956 0.52431,1.06608 1.62618,1.46287 2.19605,1.73341 0.34528,0.21575 0.65105,0.68848 0.73864,0.87172 0.0303,-0.14362 0.26678,-0.88651 -0.18399,-1.128 l 0.0426,-0.0847 c 0.005,-0.007 0.009,-0.0126 0.0133,-0.0193 0.0132,-0.0221 0.0239,-0.0458 0.0321,-0.0708 l 0.006,-0.0116 c -5e-4,-5.8e-4 -10e-4,-10e-4 -10e-4,-0.002 0.082,-0.27102 -0.12844,-0.65099 -0.49733,-0.89793 -0.2039,-0.13615 -0.43116,-0.21409 -0.62998,-0.21606 l -2e-5,5.8e-4 c -0.19148,-0.002 -0.34125,0.0666 -0.41751,0.19118 -0.0144,0.0243 -0.026,0.0504 -0.0345,0.0782 l -0.002,0.004 c -0.1751,-0.19567 -0.32158,-0.41733 -0.41159,-0.679 0.0389,0.001 0.0777,-0.003 0.11589,-0.014 l 0.36976,-0.1461 c 0.008,-0.002 0.0167,-0.003 0.025,-0.005 0.0274,-0.009 0.0541,-0.0205 0.0797,-0.0355 l 0.0117,-0.005 c 1e-4,-8.7e-4 -5e-5,-5.8e-4 7e-5,-0.002 0.26644,-0.16261 0.37591,-0.63802 0.25864,-1.12319 -0.11689,-0.48197 -0.42359,-0.8327 -0.72659,-0.83091 -0.0355,-1e-4 -0.0702,0.005 -0.10378,0.0151 -0.0302,0.01 -0.0593,0.0227 -0.0871,0.0398 l -0.0649,0.0198 c 0.0464,-0.23554 0.1215,-0.45635 0.22456,-0.66975 l 0.146,0.10794 c 0.006,0.007 0.012,0.0131 0.0185,0.0191 0.0234,0.0204 0.0496,0.0379 0.078,0.0521 l 0.0102,0.007 c 8.2e-4,-2.5e-4 0.001,-8.7e-4 0.002,-0.001 0.29982,0.14349 0.80898,-0.0681 1.20287,-0.49982 0.44393,-0.4871 0.58483,-1.0793 0.31468,-1.32271 -0.0254,-0.0222 -0.054,-0.0408 -0.0854,-0.0558 l -0.0472,-0.0421 c 0.94657,-0.16798 1.71267,-1.80174 1.93017,-2.34468 0.10293,-0.25698 0.72674,0.0579 0.27415,-0.46534 -0.133,-0.15376 -0.89498,0.1747 -1.29401,0.39517 z"
|
||||
id="path1092-6-8-2-4-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sscccccccccccccccccccccccccccccccccccccccss" />
|
||||
<path
|
||||
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 61.133244,58.925451 c -0.0662,0.25544 -0.20484,0.51277 -0.39361,0.74794 -0.0994,0.12263 -0.25079,0.22769 -0.39616,0.2335 -0.0727,0.008 -0.14088,-0.005 -0.18314,-0.0495 -0.13271,-0.10957 -0.16478,-0.30179 -0.12759,-0.49492 0.0407,-0.233 0.15684,-0.47354 0.31378,-0.69226 0.11499,-0.15406 0.31619,-0.24116 0.47862,-0.23484 0.17689,0.002 0.33386,0.10066 0.33282,0.2749 0.005,0.0704 -0.005,0.15596 -0.0246,0.21531 z"
|
||||
id="path867-4-7-4-4-9-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g1888"
|
||||
transform="matrix(-0.99662396,0.14458051,0.080948,0.99164429,181.38151,-123.40324)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path867-2"
|
||||
d="m 127.44239,153.53297 c 0.0248,-0.83572 0.78535,-0.95789 0.85565,-0.2729 0.0703,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.82518,0.87943 -0.90491,0.0152 -0.0582,-0.45454 -0.0497,-0.87357 -0.0739,-1.33447 z"
|
||||
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path867-6-6"
|
||||
d="m 134.84928,151.74452 c 0.11271,-0.82846 0.88195,-0.86978 0.87965,-0.18119 -0.002,0.68859 0.0189,1.40498 -0.0902,1.78521 -0.12806,0.44614 -0.81369,0.54941 -0.80186,-0.31843 -0.01,-0.45813 -0.0121,-0.82468 0.0124,-1.28557 z"
|
||||
style="opacity:1;vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1.0115339,0.19459998,-0.05218655,0.99863735,127.88085,-109.03918)"
|
||||
id="g1928-4">
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-9"
|
||||
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
|
||||
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-0.29778724"
|
||||
inkscape:transform-center-x="0.83927927"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-0-0"
|
||||
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
|
||||
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="0.70487957"
|
||||
inkscape:transform-center-x="0.84080235"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-7-9"
|
||||
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
|
||||
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1.0115339,0.19459998,-0.05218655,0.99863735,127.41607,-109.00731)"
|
||||
id="g1923-1">
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-8-7"
|
||||
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
|
||||
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-6-7"
|
||||
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
|
||||
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1667-88-1"
|
||||
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
|
||||
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#762c2c;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 60.919664,52.649121 c 0.72578,1.52235 3.31918,1.62531 4.01257,0.17632"
|
||||
id="path1990"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g1182-9-2-0"
|
||||
transform="matrix(-0.96714094,0.25424084,0.25424084,0.96714094,83.838489,-107.52544)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1176-2-9-5"
|
||||
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path903-5-2-0-3-9"
|
||||
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
|
||||
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path920-9-6-9-4"
|
||||
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
|
||||
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path863-7-3-8-0-6"
|
||||
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
|
||||
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 47 KiB |
Loading…
x
Reference in New Issue
Block a user