imported the script for creating gml files and displaying a dynamic map

This commit is contained in:
lars 2010-01-27 00:38:26 +00:00
parent a0029f5e57
commit 1c8a91836e
66 changed files with 20323 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/*
* Copyright: 2010 by Lars Kruse <devel@sumpfralle.de>
* License: GNU GPL v3 or higher (http://www.gnu.org/licenses/gpl-3.0.txt)
*/
#event_map {
width: 100%;
height: 100%;
border: 0px;
padding: 0px;
}
/* positioning the licence information of the map */
#event_map div.olControlAttribution {
position: relative;
right: 10px;
bottom: 5px;
}
/* no images within the map (tiles and controls) should have a margin */
#event_map img {
/* drupal defines 5px margin for img */
margin: 0;
}
div.event_map_info h1 {
font-size: small;
}
div.event_map_info li {
font-size: x-small;
}

View file

@ -0,0 +1,339 @@
/* functions for displaying event icons on a map
* Just include this js file in your html code and add an "event_map" div:
* <script type="text/javascript" src="event_map.js"></script>
* <div id="event_map"></div>
*
* Additionally you may want to override some variables, eg:
* <script type="text/javascript">
* var event_map_center_longitude = <?php echo $_GET['longitude'] + 0 ?>;
* var event_map_center_latitude = <?php echo $_GET['latitude'] + 0 ?>;
* var event_map_zoom = <?php echo $_GET['zoom'] + 0 ?>;
* </script>
* BEWARE: above overrides MUST be placed before including the "event_map.js" file.
*
* Copyright: 2010 by Lars Kruse <devel@sumpfralle.de>
* License: GNU GPL v3 or higher (http://www.gnu.org/licenses/gpl-3.0.txt)
*/
var event_map_zoom_default_for_events = 13;
var event_map_zoom_default_for_marker = 15;
var event_map_zoom_default_for_edit = 12;
// names of fields to be manipulated in "edit" mode
var event_map_fieldname_lat = "edit-field-lat-0-value";
var event_map_fieldname_lon = "edit-field-long-0-value";
// some default startup definitions (can be overwritten in the html file)
// define the base url of local resources - the trailing slash is required!
if (typeof(event_map_base_url) == 'undefined') {
var event_map_base_url = '/event_map/';
}
// location of our css file - relative to the URL of the main html file
if (typeof(event_map_css_file) == 'undefined') {
var event_map_css_file = event_map_base_url + 'html/event_map.css';
}
// location of the GML file to be loaded - relative to the URL of the main html file
if (typeof(event_map_gml_file) == 'undefined') {
var event_map_gml_file = event_map_base_url + 'html/events.gml';
}
// display types: "events" (default), "marker" or "edit"
if (typeof(event_map_display_type) == 'undefined') {
var event_map_display_type = 'events';
}
// set display_type to default, if the value is unknown
// also set default zoom level for that mode
var event_map_default_zoom;
if (event_map_display_type == 'events') {
event_map_default_zoom = event_map_zoom_default_for_events;
} else if (event_map_display_type == 'marker') {
event_map_default_zoom = event_map_zoom_default_for_marker;
} else if (event_map_display_type == 'edit') {
event_map_default_zoom = event_map_zoom_default_for_edit;
} else {
// unknown display_type
event_map_display_type = 'events';
event_map_default_zoom = event_map_zoom_default_for_events;
}
// latitude and longitude of the center of the map - set to zero if undefined
// the real default value will be set a little bit later
// note: zero is the magic value for "undefined"
if (typeof(event_map_center_latitude) == 'undefined') {
var event_map_center_latitude = 0;
}
if (typeof(event_map_center_longitude) == 'undefined') {
var event_map_center_longitude = 0;
}
// remember, if the coordinates were not initialized
var event_map_coordinates_unset = false;
// event mode: set default latitude or longitude, if necessary (center of Rostock)
if (event_map_center_latitude == 0) {
event_map_coordinates_unset = true;
event_map_center_latitude = 54.082004;
}
if (event_map_center_longitude == 0) {
event_map_coordinates_unset = true;
event_map_center_longitude = 12.128275;
}
// initial zoom level of the map
if (typeof(event_map_zoom) == 'undefined') {
var event_map_zoom = 0;
}
// this must be done separately from the previous "undefined" check to avoid re-initialization via "var"
if (event_map_zoom == 0) {
event_map_zoom = event_map_default_zoom;
}
// url of the marker icon
if (typeof(event_map_marker_icon) == 'undefined') {
var event_map_marker_icon = event_map_base_url + 'icons/marker.png';
}
// global variables
var event_map;
var event_map_selectControl;
var event_map_marker_layer;
var event_map_marker;
// run the "event_map_init" function after loading the page
window.onload = event_map_init;
function event_map_addJavascript(jsname, pos) {
var th = document.getElementsByTagName(pos)[0];
var s = document.createElement('script');
s.setAttribute('type', 'text/javascript');
s.setAttribute('src', jsname);
th.appendChild(s);
}
function event_map_addCSSfile(cssfile, pos) {
var th = document.getElementsByTagName(pos)[0];
var s = document.createElement('link');
s.setAttribute('rel', 'stylesheet');
s.setAttribute('href', cssfile);
th.appendChild(s);
}
event_map_addJavascript('http://www.openlayers.org/api/OpenLayers.js', 'head');
event_map_addJavascript('http://www.openstreetmap.org/openlayers/OpenStreetMap.js', 'head');
// in case of problems of a browser with loading external ccs files, we could use the local copy
//event_map_addCSSfile(event_map_base_url + 'html/openlayers/style.css', 'head');
event_map_addCSSfile('http://openlayers.org/api/theme/default/style.css', 'head');
event_map_addCSSfile(event_map_css_file, 'head');
function event_map_init() {
event_map = new OpenLayers.Map('event_map', {
maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34, 20037508.34),
numZoomLevels: 19,
maxResolution: 156543.0399,
units: 'm',
projection: new OpenLayers.Projection("EPSG:900913"),
displayProjection: new OpenLayers.Projection("EPSG:4326")
});
// define the public transport map (oepnvkarte.de)
OpenLayers.Layer.OSM.OePNV = OpenLayers.Class(OpenLayers.Layer.OSM, {
initialize: function(name, options) {
var url = [
"http://tile.xn--pnvkarte-m4a.de/tilegen/${z}/${x}/${y}.png"
];
options = OpenLayers.Util.extend({ numZoomLevels: 19 }, options);
var newArguments = [name, url, options];
OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments);
},
CLASS_NAME: "OpenLayers.Layer.OSM.OePNV"
});
var layerOePNV = new OpenLayers.Layer.OSM.OePNV("&Ouml;PNV-Karte");
var layerCycle = new OpenLayers.Layer.OSM.CycleMap("Radweg-Karte");
var layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");
var layerTah = new OpenLayers.Layer.OSM.Osmarender("Osmarender");
event_map.addLayers([layerOePNV, layerCycle, layerMapnik, layerTah]);
// choose default layer
event_map.setBaseLayer(layerMapnik);
event_map_marker_layer = new OpenLayers.Layer.Markers("Markierung");
event_map.addLayer(event_map_marker_layer)
// allow to change the current layer (mapnik/tah/oepnv/cycle)
event_map.addControl(new OpenLayers.Control.LayerSwitcher());
var lonLat = new OpenLayers.LonLat(event_map_center_longitude,
event_map_center_latitude).transform(event_map.displayProjection, event_map.projection);
event_map.setCenter(lonLat, event_map_zoom);
if (event_map_display_type == 'marker') {
event_map_show_marker(lonLat);
} else if (event_map_display_type == 'edit') {
event_map_edit_position(lonLat);
} else {
event_map_show_gml();
}
}
function event_map_get_marker(lonLat) {
var size = new OpenLayers.Size(21, 25);
var offset = new OpenLayers.Pixel(-(size.w/2), -size.h);
var icon = new OpenLayers.Icon(event_map_marker_icon, size, offset)
return new OpenLayers.Marker(lonLat, icon);
}
// return false, if no valid coordinate values are found in the form fields
function event_map_get_form_coordinates() {
var lon;
var lat;
var field_lat = document.getElementById(event_map_fieldname_lat);
var field_lon = document.getElementById(event_map_fieldname_lon);
if (field_lat) { lat = field_lat.value; }
if (field_lon) { lon = field_lon.value; }
if ((lat != "") && (lat != 0) && (lon != "") && (lon != 0)) {
return new OpenLayers.LonLat(lon, lat).transform(
event_map.displayProjection, event_map.projection);
} else {
return false;
}
}
function event_map_update_edit_marker() {
event_map_marker_layer.clearMarkers();
var lonLat = event_map_get_form_coordinates();
if (lonLat) {
event_map_marker = event_map_get_marker(lonLat);
event_map_marker_layer.addMarker(event_map_marker);
// center the map on the item
event_map.setCenter(lonLat, event_map.zoom);
}
}
function event_map_edit_position(lonLat) {
event_map_update_edit_marker();
// catch click events
OpenLayers.Control.Click = OpenLayers.Class(OpenLayers.Control, {
defaultHandlerOptions: {
'single': true,
'double': false,
'pixelTolerance': 0,
'stopSingle': false,
'stopDouble': false
},
initialize: function(options) {
this.handlerOptions = OpenLayers.Util.extend({}, this.defaultHandlerOptions);
OpenLayers.Control.prototype.initialize.apply(this, arguments);
this.handler = new OpenLayers.Handler.Click(this, { 'click': this.trigger }, this.handlerOptions);
}
});
var click = new OpenLayers.Control.Click({ trigger: event_map_edit_clicked });
event_map.addControl(click);
click.activate();
}
function event_map_show_marker(lonLat) {
if (event_map_coordinates_unset) {
// hide the map
document.getElementById('event_map').style.display = "none";
} else {
// configure and display the map
event_map_marker = event_map_get_marker(lonLat);
event_map_marker_layer.addMarker(event_map_marker);
}
}
function event_map_show_gml() {
OpenLayers.Feature.prototype.popupClass = OpenLayers.Popup.FramedCloud;
var pois = new OpenLayers.Layer.GML("Veranstaltungen", event_map_gml_file, {
format: OpenLayers.Format.Text,
projection: new OpenLayers.Projection("EPSG:4326")
});
event_map.addLayer(pois);
// add the popups
event_map_selectControl = new OpenLayers.Control.SelectFeature(pois, {
onSelect: event_map_onFeatureSelect,
onUnselect: event_map_onFeatureUnselect,
toggle: true
});
event_map.addControl(event_map_selectControl);
event_map_selectControl.activate();
}
function event_map_onPopupClose(evnt) {
event_map_selectControl.unselect(selectedFeature);
}
function event_map_edit_clicked(evnt) {
var lonLat = event_map.getLonLatFromViewPortPx(evnt.xy).transform(
event_map.projection, event_map.displayProjection);
var field_lat = document.getElementById(event_map_fieldname_lat);
var field_lon = document.getElementById(event_map_fieldname_lon);
// round the numbers to a few digits - otherwise drupal complains about max number of chars
if (field_lat) { field_lat.value = Math.round(lonLat.lat * 10000000) / 10000000; }
if (field_lon) { field_lon.value = Math.round(lonLat.lon * 10000000) / 10000000; }
event_map_update_edit_marker();
}
function event_map_onFeatureSelect(feature) {
selectedFeature = feature;
var content = '<div class="event_map_info">';
content += '<h1>' + feature.attributes.title + '</h1>';
/* the description contains six attributes:
* time/date
* place
* address
* organisation
* details
* url
*/
/* we don't do this formatting here - but in the gml file generation script instead
var items = feature.attributes.description.split('#', 6);
content += '<ul>';
content += '<li>Wann: ' + items[0] + '</li>';
content += '<li>Ort: ' + items[1] + '</li>';
content += '<li>Adresse: ' + items[2] + '</li>';
content += '<li>Veranstalter: ' + items[3] + '</li>';
content += '<li>Details: ' + items[4] + '</li>';
content += '<li><a href="' + items[5] + '" title="mehr Informationen">mehr ...</a></li>';
content += '</ul></div>';
*/
content += feature.attributes.description
content += '</div>'
// do naive protection against Javascript.
if (content.search("<script") != -1) {
content = "Content contained Javascript! Escaped content below.<br />" + content.replace(/</g, "&lt;");
}
popup = new OpenLayers.Popup.FramedCloud("event",
feature.geometry.getBounds().getCenterLonLat(),
new OpenLayers.Size(300, 200),
content,
null, true, event_map_onPopupClose);
popup.maxSize = new OpenLayers.Size(350, 300);
feature.popup = popup;
event_map.addPopup(popup);
}
function event_map_onFeatureUnselect(feature) {
event_map.removePopup(feature.popup);
feature.popup.destroy();
feature.popup = null;
}

View file

@ -0,0 +1,9 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<script src="event_map.js"></script>
<div id="event_map"></div>
</body>
</html>

View file

@ -0,0 +1,5 @@
The files below this directory are published under a Creative Commons License.
See the original SVG files below the directory "svg" for the details of
the author and the license.
http://creativecommons.org

View file

@ -0,0 +1,9 @@
svg/adriano_Hard_Hat.svg png/workshop
svg/AJ_Party_Balloons.svg png/party
svg/Anonymous_Open_Bible.svg png/lesung
svg/ben_Movie_clapper.svg png/film
svg/liftarn_Raised_fist_1.svg png/demo
svg/pipo_pan.svg png/vokue
svg/ryanlerch_Green_-_Query_Icon.svg png/misc
svg/sheikh_tuhin_Diary.svg png/seminar
svg/valessiobrito_Aquarela_Colors.svg png/kunst

View file

@ -0,0 +1,452 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) --><svg height="1200.0000" id="svg2" inkscape:version="0.40+cvs" sodipodi:docbase="E:\AJ_Stuff\Artwork\Vector\PUBLIC~1" sodipodi:docname="BABC33~1.SVG" sodipodi:version="0.32" version="1.0" width="1100.0000" x="0.00000000" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0.00000000">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work rdf:about="">
<dc:title>balloons-aj</dc:title>
<dc:description></dc:description>
<dc:subject>
<rdf:Bag>
<rdf:li></rdf:li>
<rdf:li>balloons</rdf:li>
<rdf:li>festive</rdf:li>
<rdf:li>party</rdf:li>
<rdf:li>recreation</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent rdf:about="http://www.openclipart.org">
<dc:title>AJ Ashton</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>AJ Ashton</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>AJ Ashton</dc:title>
</cc:Agent>
</dc:rights>
<dc:date></dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/>
<dc:language>en</dc:language>
</cc:Work>
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
</cc:License>
</rdf:RDF>
</metadata>
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:current-layer="svg2" inkscape:cx="549.99997" inkscape:cy="600.00000" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="540" inkscape:window-width="940" inkscape:window-x="154" inkscape:window-y="154" inkscape:zoom="0.30166667" pagecolor="#ffffff"/>
<defs id="defs3">
<linearGradient id="linearGradient4902">
<stop id="stop4904" offset="0.00000000" style="stop-color:#ff6134;stop-opacity:1.0000000;"/>
<stop id="stop4906" offset="1.0000000" style="stop-color:#ff0000;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4894">
<stop id="stop4896" offset="0.00000000" style="stop-color:#5f0000;stop-opacity:0.00000000;"/>
<stop id="stop4898" offset="0.50000000" style="stop-color:#ff0000;stop-opacity:0.00000000;"/>
<stop id="stop4900" offset="1.0000000" style="stop-color:#590000;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4884">
<stop id="stop4886" offset="0.00000000" style="stop-color:#ff0000;stop-opacity:0.00000000;"/>
<stop id="stop4888" offset="0.50000000" style="stop-color:#ff0000;stop-opacity:0.00000000;"/>
<stop id="stop4890" offset="0.75000000" style="stop-color:#a60000;stop-opacity:0.00000000;"/>
<stop id="stop4892" offset="1.0000000" style="stop-color:#540000;stop-opacity:1.0000000;"/>
</linearGradient>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="scale(1.580391,0.632755)" gradientUnits="userSpaceOnUse" id="radialGradient4354" r="14.647120" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(0.822094,0.000000,0.000000,1.216406,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4357" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<linearGradient gradientTransform="scale(1.015364,0.984868)" gradientUnits="userSpaceOnUse" id="linearGradient4360" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4363" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4366" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.644520,0.000000,0.000000,1.551543,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4369" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.015364,0.000000,0.000000,0.984868,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="radialGradient4372" r="27.479855" xlink:href="#linearGradient2201"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientTransform="matrix(0.468704,-0.171608,0.343813,0.939038,-50.68410,103.7345)" gradientUnits="userSpaceOnUse" id="radialGradient4375" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.468627,0.000000,0.000000,0.425261,72.66462,179.8293)" gradientUnits="userSpaceOnUse" id="radialGradient4378" r="15.405808" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4381" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4384" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4387" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4390" x1="309.15680" x2="302.30682" xlink:href="#linearGradient2053" y1="900.83911" y2="958.59302"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="matrix(1.330892,-0.205583,0.102609,0.471582,-91.36538,302.3721)" gradientUnits="userSpaceOnUse" id="radialGradient4393" r="32.826073" xlink:href="#linearGradient2168"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient4396" r="359.53452" xlink:href="#linearGradient2188"/>
<linearGradient gradientTransform="matrix(1.230196,-0.273182,0.172028,0.774677,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient4399" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.418145,-0.275222,0.366704,0.557132,-79.09553,415.2735)" gradientUnits="userSpaceOnUse" id="radialGradient4402" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.701614,-0.461801,0.654553,0.994461,-404.3723,218.1777)" gradientUnits="userSpaceOnUse" id="radialGradient4405" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(0.831335,-0.184609,0.254564,1.146356,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient4408" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(1.183298,-0.262767,0.262767,1.183298,-308.5998,-51.16643)" gradientUnits="userSpaceOnUse" id="radialGradient4411" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(0.414155,-9.196867e-2,9.196867e-2,0.414155,88.06354,73.64696)" gradientUnits="userSpaceOnUse" id="radialGradient4414" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.183553,-0.262824,0.178807,0.805208,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient4417" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient4420" r="372.48581" xlink:href="#linearGradient2065"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient4423" r="330.32794" xlink:href="#linearGradient2053"/>
<linearGradient gradientTransform="matrix(0.366177,0.000000,0.000000,2.730920,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient4426" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<linearGradient id="linearGradient2201">
<stop id="stop2203" offset="0.00000000" style="stop-color:#525252;stop-opacity:1.0000000;"/>
<stop id="stop2205" offset="1.0000000" style="stop-color:#d9d9d9;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient2188">
<stop id="stop2190" offset="0.00000000" style="stop-color:#00f1ff;stop-opacity:0.00000000;"/>
<stop id="stop2194" offset="0.50000000" style="stop-color:#00c9ff;stop-opacity:0.00000000;"/>
<stop id="stop2196" offset="0.75000000" style="stop-color:#0065a6;stop-opacity:0.00000000;"/>
<stop id="stop2192" offset="1.0000000" style="stop-color:#002454;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient2168">
<stop id="stop2170" offset="0.00000000" style="stop-color:#000000;stop-opacity:1.0000000;"/>
<stop id="stop2174" offset="1.0000000" style="stop-color:#000000;stop-opacity:0.00000000;"/>
</linearGradient>
<linearGradient id="linearGradient2077">
<stop id="stop2079" offset="0.00000000" style="stop-color:#ffffff;stop-opacity:1.0000000;"/>
<stop id="stop2081" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:0.00000000;"/>
</linearGradient>
<linearGradient id="linearGradient2065">
<stop id="stop2067" offset="0.00000000" style="stop-color:#00575f;stop-opacity:0.00000000;"/>
<stop id="stop2073" offset="0.50000000" style="stop-color:#0062ff;stop-opacity:0.00000000;"/>
<stop id="stop2069" offset="1.0000000" style="stop-color:#002859;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient2053">
<stop id="stop2055" offset="0.00000000" style="stop-color:#34abff;stop-opacity:1.0000000;"/>
<stop id="stop2057" offset="1.0000000" style="stop-color:#0057ff;stop-opacity:1.0000000;"/>
</linearGradient>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient2061" r="330.32794" xlink:href="#linearGradient2053"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient2071" r="372.48581" xlink:href="#linearGradient2065"/>
<linearGradient gradientTransform="scale(1.212383,0.824822)" gradientUnits="userSpaceOnUse" id="linearGradient2083" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient2093" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient2097" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(0.851586,1.174280)" gradientUnits="userSpaceOnUse" id="linearGradient2148" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient2154" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient2156" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(1.260163,0.793548)" gradientUnits="userSpaceOnUse" id="linearGradient2166" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient2186" r="359.53452" xlink:href="#linearGradient2188"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient2211" r="330.32794" xlink:href="#linearGradient2053"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient2213" r="372.48581" xlink:href="#linearGradient2065"/>
<linearGradient gradientTransform="scale(1.212383,0.824822)" gradientUnits="userSpaceOnUse" id="linearGradient2215" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient2217" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient2219" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(0.851586,1.174280)" gradientUnits="userSpaceOnUse" id="linearGradient2221" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient2223" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient2225" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(1.260163,0.793548)" gradientUnits="userSpaceOnUse" id="linearGradient2227" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient2229" r="359.53452" xlink:href="#linearGradient2188"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient2232" r="359.53452" xlink:href="#linearGradient2188"/>
<linearGradient gradientTransform="matrix(1.230196,-0.273182,0.172028,0.774677,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient2235" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<linearGradient gradientTransform="matrix(0.831335,-0.184609,0.254564,1.146356,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient2241" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<linearGradient gradientTransform="matrix(1.183553,-0.262824,0.178807,0.805208,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient2246" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient2249" r="372.48581" xlink:href="#linearGradient2065"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient2252" r="330.32794" xlink:href="#linearGradient2053"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2122" x1="309.15680" x2="302.30682" xlink:href="#linearGradient2053" y1="900.83911" y2="958.59302"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2126" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2140" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2144" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.468627,0.000000,0.000000,0.425261,72.66462,179.8293)" gradientUnits="userSpaceOnUse" id="radialGradient2155" r="15.405808" xlink:href="#linearGradient2077"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientUnits="userSpaceOnUse" id="radialGradient2169" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="scale(1.392621,0.718070)" gradientUnits="userSpaceOnUse" id="radialGradient2179" r="32.826073" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(0.366177,0.000000,0.000000,2.730920,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2199" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.015364,0.000000,0.000000,0.984868,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="radialGradient2242" r="27.479855" xlink:href="#linearGradient2201"/>
<linearGradient gradientTransform="matrix(0.822094,0.000000,0.000000,1.216406,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2256" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<linearGradient gradientTransform="matrix(0.644520,0.000000,0.000000,1.551543,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2264" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<linearGradient gradientTransform="scale(0.813920,1.228622)" gradientUnits="userSpaceOnUse" id="linearGradient2292" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="scale(0.813920,1.228622)" gradientUnits="userSpaceOnUse" id="linearGradient2296" spreadMethod="pad" x1="496.76105" x2="471.41708" xlink:href="#linearGradient2168" y1="858.87988" y2="822.28503"/>
<linearGradient gradientTransform="scale(1.803759,0.554398)" gradientUnits="userSpaceOnUse" id="linearGradient2314" x1="194.76213" x2="197.19901" xlink:href="#linearGradient2168" y1="1854.4941" y2="1846.9741"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient2317" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,0.832495,13.67403,316.1681)" gradientUnits="userSpaceOnUse" id="linearGradient2321" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="scale(1.015364,0.984868)" gradientUnits="userSpaceOnUse" id="linearGradient2327" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="scale(1.580391,0.632755)" gradientUnits="userSpaceOnUse" id="radialGradient2333" r="14.647120" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="scale(1.020002,0.980390)" gradientUnits="userSpaceOnUse" id="linearGradient2371" x1="-328.79410" x2="-124.78329" xlink:href="#linearGradient2188" y1="53.521339" y2="53.521339"/>
<linearGradient gradientTransform="matrix(1.135718,0.000000,0.000000,0.880500,139.9897,52.49610)" gradientUnits="userSpaceOnUse" id="linearGradient2381" x1="-633.96027" x2="-186.16292" xlink:href="#linearGradient2188" y1="32.449062" y2="32.449062"/>
<linearGradient gradientTransform="scale(1.020002,0.980390)" gradientUnits="userSpaceOnUse" id="linearGradient3577" x1="-328.79410" x2="-124.78329" xlink:href="#linearGradient2188" y1="53.521339" y2="53.521339"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="scale(1.580391,0.632755)" gradientUnits="userSpaceOnUse" id="radialGradient3575" r="14.647120" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="scale(1.015364,0.984868)" gradientUnits="userSpaceOnUse" id="linearGradient3573" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3571" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3569" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="scale(1.803759,0.554398)" gradientUnits="userSpaceOnUse" id="linearGradient3567" x1="194.76213" x2="197.19901" xlink:href="#linearGradient2168" y1="1854.4941" y2="1846.9741"/>
<linearGradient gradientTransform="scale(0.813920,1.228622)" gradientUnits="userSpaceOnUse" id="linearGradient3565" spreadMethod="pad" x1="496.76105" x2="471.41708" xlink:href="#linearGradient2168" y1="858.87988" y2="822.28503"/>
<linearGradient gradientTransform="scale(0.813920,1.228622)" gradientUnits="userSpaceOnUse" id="linearGradient3563" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.644520,0.000000,0.000000,1.551543,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3561" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<linearGradient gradientTransform="matrix(0.822094,0.000000,0.000000,1.216406,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3559" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.015364,0.000000,0.000000,0.984868,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="radialGradient3557" r="27.479855" xlink:href="#linearGradient2201"/>
<linearGradient gradientTransform="matrix(0.366177,0.000000,0.000000,2.730920,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3555" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="scale(1.392621,0.718070)" gradientUnits="userSpaceOnUse" id="radialGradient3553" r="32.826073" xlink:href="#linearGradient2168"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientUnits="userSpaceOnUse" id="radialGradient3551" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.468627,0.000000,0.000000,0.425261,72.66462,179.8293)" gradientUnits="userSpaceOnUse" id="radialGradient3549" r="15.405808" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3547" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3545" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3543" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,0.000000,-6.000000)" gradientUnits="userSpaceOnUse" id="linearGradient3541" x1="309.15680" x2="302.30682" xlink:href="#linearGradient2053" y1="900.83911" y2="958.59302"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient3539" r="330.32794" xlink:href="#linearGradient2053"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient3537" r="372.48581" xlink:href="#linearGradient2065"/>
<linearGradient gradientTransform="matrix(1.183553,-0.262824,0.178807,0.805208,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient3535" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<linearGradient gradientTransform="matrix(0.831335,-0.184609,0.254564,1.146356,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient3533" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<linearGradient gradientTransform="matrix(1.230196,-0.273182,0.172028,0.774677,-201.8059,-17.56290)" gradientUnits="userSpaceOnUse" id="linearGradient3531" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-211.5998,-61.66705)" gradientUnits="userSpaceOnUse" id="radialGradient3529" r="359.53452" xlink:href="#linearGradient2188"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient3527" r="359.53452" xlink:href="#linearGradient2188"/>
<linearGradient gradientTransform="scale(1.260163,0.793548)" gradientUnits="userSpaceOnUse" id="linearGradient3525" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient3523" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient3521" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(0.851586,1.174280)" gradientUnits="userSpaceOnUse" id="linearGradient3519" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient3517" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient3515" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(1.212383,0.824822)" gradientUnits="userSpaceOnUse" id="linearGradient3513" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient3511" r="372.48581" xlink:href="#linearGradient2065"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient3509" r="330.32794" xlink:href="#linearGradient2053"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient3507" r="359.53452" xlink:href="#linearGradient2188"/>
<linearGradient gradientTransform="scale(1.260163,0.793548)" gradientUnits="userSpaceOnUse" id="linearGradient3505" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient3503" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="scale(0.839953,1.190542)" gradientUnits="userSpaceOnUse" id="radialGradient3501" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(0.851586,1.174280)" gradientUnits="userSpaceOnUse" id="linearGradient3499" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient2065" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient3497" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientUnits="userSpaceOnUse" id="radialGradient3495" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="scale(1.212383,0.824822)" gradientUnits="userSpaceOnUse" id="linearGradient3493" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient3491" r="372.48581" xlink:href="#linearGradient2065"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="scale(0.991893,1.008174)" gradientUnits="userSpaceOnUse" id="radialGradient3489" r="330.32794" xlink:href="#linearGradient2053"/>
<linearGradient id="linearGradient3483">
<stop id="stop3485" offset="0.00000000" style="stop-color:#ffff34;stop-opacity:1.0000000;"/>
<stop id="stop3487" offset="1.0000000" style="stop-color:#ffc200;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient3475">
<stop id="stop3477" offset="0.00000000" style="stop-color:#5a5f00;stop-opacity:0.00000000;"/>
<stop id="stop3479" offset="0.50000000" style="stop-color:#ffde00;stop-opacity:0.00000000;"/>
<stop id="stop3481" offset="1.0000000" style="stop-color:#cf9800;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient3469">
<stop id="stop3471" offset="0.00000000" style="stop-color:#ffffff;stop-opacity:1.0000000;"/>
<stop id="stop3473" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:0.00000000;"/>
</linearGradient>
<linearGradient id="linearGradient3463">
<stop id="stop3465" offset="0.00000000" style="stop-color:#000000;stop-opacity:1.0000000;"/>
<stop id="stop3467" offset="1.0000000" style="stop-color:#000000;stop-opacity:0.00000000;"/>
</linearGradient>
<linearGradient id="linearGradient3453">
<stop id="stop3455" offset="0.00000000" style="stop-color:#ffdf00;stop-opacity:0.00000000;"/>
<stop id="stop3457" offset="0.50000000" style="stop-color:#ff9f00;stop-opacity:0.00000000;"/>
<stop id="stop3459" offset="0.75000000" style="stop-color:#ff9a00;stop-opacity:0.00000000;"/>
<stop id="stop3461" offset="1.0000000" style="stop-color:#793900;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient3447">
<stop id="stop3449" offset="0.00000000" style="stop-color:#525252;stop-opacity:1.0000000;"/>
<stop id="stop3451" offset="1.0000000" style="stop-color:#d9d9d9;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient gradientTransform="matrix(0.366177,-7.686112e-17,1.123354e-15,2.730920,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4095" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,166.9864,-36.10582)" gradientUnits="userSpaceOnUse" id="radialGradient4097" r="330.32794" xlink:href="#linearGradient3483"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,166.9864,-36.10582)" gradientUnits="userSpaceOnUse" id="radialGradient4099" r="372.48581" xlink:href="#linearGradient3475"/>
<linearGradient gradientTransform="matrix(1.183553,-0.262824,0.178807,0.805208,176.7803,7.998326)" gradientUnits="userSpaceOnUse" id="linearGradient4101" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(0.414155,-9.196867e-2,9.196867e-2,0.414155,466.6497,99.20819)" gradientUnits="userSpaceOnUse" id="radialGradient4103" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(1.183298,-0.262767,0.262767,1.183298,69.98643,-25.60520)" gradientUnits="userSpaceOnUse" id="radialGradient4105" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(0.831335,-0.184609,0.254564,1.146356,176.7803,7.998326)" gradientUnits="userSpaceOnUse" id="linearGradient4107" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient3475" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.701614,-0.461801,0.654553,0.994461,-25.78607,243.7389)" gradientUnits="userSpaceOnUse" id="radialGradient4109" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.418145,-0.275222,0.366704,0.557132,299.4907,440.8347)" gradientUnits="userSpaceOnUse" id="radialGradient4111" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.230196,-0.273182,0.172028,0.774677,176.7803,7.998326)" gradientUnits="userSpaceOnUse" id="linearGradient4113" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,166.9864,-36.10582)" gradientUnits="userSpaceOnUse" id="radialGradient4115" r="359.53452" xlink:href="#linearGradient3453"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="matrix(1.330892,-0.205583,0.102609,0.471582,287.2209,327.9333)" gradientUnits="userSpaceOnUse" id="radialGradient4117" r="32.826073" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(1.219083,-2.558873e-16,3.374231e-16,0.820289,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4119" x1="309.15680" x2="302.30682" xlink:href="#linearGradient3483" y1="900.83911" y2="958.59302"/>
<linearGradient gradientTransform="matrix(1.219083,-2.558873e-16,3.374231e-16,0.820289,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4121" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.219083,-2.558873e-16,3.374231e-16,0.820289,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4123" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.219083,-2.558873e-16,3.374231e-16,0.820289,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4125" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.468627,-3.082671e-16,1.749296e-16,0.425261,451.2508,205.3905)" gradientUnits="userSpaceOnUse" id="radialGradient4127" r="15.405808" xlink:href="#linearGradient2077"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientTransform="matrix(0.468704,-0.171608,0.343813,0.939038,327.9021,129.2957)" gradientUnits="userSpaceOnUse" id="radialGradient4129" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.015364,-2.131264e-16,4.051217e-16,0.984868,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="radialGradient4131" r="27.479855" xlink:href="#linearGradient2201"/>
<linearGradient gradientTransform="matrix(0.644520,-1.352857e-16,6.382216e-16,1.551543,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4133" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<linearGradient gradientTransform="matrix(0.813920,-1.708431e-16,5.053889e-16,1.228622,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4135" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.813920,-1.708431e-16,5.053889e-16,1.228622,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4137" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(1.015364,-2.131264e-16,4.051217e-16,0.984868,378.5862,25.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4139" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.822094,-1.725586e-16,5.003640e-16,1.216406,378.5862,19.56123)" gradientUnits="userSpaceOnUse" id="linearGradient4141" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="matrix(1.580391,-3.317264e-16,2.602815e-16,0.632755,378.5862,25.56123)" gradientUnits="userSpaceOnUse" id="radialGradient4143" r="14.647120" xlink:href="#linearGradient2168"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="matrix(1.580391,0.000000,0.000000,0.632755,-120.5849,19.48388)" gradientUnits="userSpaceOnUse" id="radialGradient4810" r="14.647120" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(0.822094,0.000000,0.000000,1.216406,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4813" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<linearGradient gradientTransform="matrix(1.015364,0.000000,0.000000,0.984868,-120.5849,19.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4816" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4819" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(0.813920,0.000000,0.000000,1.228622,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4822" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.644520,0.000000,0.000000,1.551543,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4825" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.015364,0.000000,0.000000,0.984868,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="radialGradient4828" r="27.479855" xlink:href="#linearGradient2201"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientTransform="matrix(0.468704,-0.171608,0.343813,0.939038,-171.2690,123.2184)" gradientUnits="userSpaceOnUse" id="radialGradient4831" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.468627,0.000000,0.000000,0.425261,-47.92028,199.3132)" gradientUnits="userSpaceOnUse" id="radialGradient4834" r="15.405808" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4837" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4840" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4843" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.219083,0.000000,0.000000,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4846" x1="309.15680" x2="302.30682" xlink:href="#linearGradient2053" y1="900.83911" y2="958.59302"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="matrix(1.330892,-0.205583,0.102609,0.471582,-211.9503,321.8560)" gradientUnits="userSpaceOnUse" id="radialGradient4849" r="32.826073" xlink:href="#linearGradient2168"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-332.1847,-42.18317)" gradientUnits="userSpaceOnUse" id="radialGradient4852" r="359.53452" xlink:href="#linearGradient4884"/>
<linearGradient gradientTransform="matrix(1.230196,-0.273182,0.172028,0.774677,-322.3908,1.920980)" gradientUnits="userSpaceOnUse" id="linearGradient4855" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.418145,-0.275222,0.366704,0.557132,-199.6804,434.7574)" gradientUnits="userSpaceOnUse" id="radialGradient4858" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.701614,-0.461801,0.654553,0.994461,-524.9572,237.6616)" gradientUnits="userSpaceOnUse" id="radialGradient4861" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(0.831335,-0.184609,0.254564,1.146356,-322.3908,1.920980)" gradientUnits="userSpaceOnUse" id="linearGradient4864" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient4894" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(1.183298,-0.262767,0.262767,1.183298,-429.1847,-31.68255)" gradientUnits="userSpaceOnUse" id="radialGradient4867" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(0.414155,-9.196867e-2,9.196867e-2,0.414155,-32.52136,93.13084)" gradientUnits="userSpaceOnUse" id="radialGradient4870" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.183553,-0.262824,0.178807,0.805208,-322.3908,1.920980)" gradientUnits="userSpaceOnUse" id="linearGradient4873" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-332.1847,-42.18317)" gradientUnits="userSpaceOnUse" id="radialGradient4876" r="372.48581" xlink:href="#linearGradient4894"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-332.1847,-42.18317)" gradientUnits="userSpaceOnUse" id="radialGradient4879" r="330.32794" xlink:href="#linearGradient4902"/>
<linearGradient gradientTransform="matrix(0.366177,0.000000,0.000000,2.730920,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4882" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<linearGradient gradientTransform="matrix(0.366177,2.020782e-17,-3.849129e-17,2.730920,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4935" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-332.1847,-42.18317)" gradientUnits="userSpaceOnUse" id="radialGradient4937" r="330.32794" xlink:href="#linearGradient4902"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-332.1847,-42.18317)" gradientUnits="userSpaceOnUse" id="radialGradient4939" r="372.48581" xlink:href="#linearGradient4894"/>
<linearGradient gradientTransform="matrix(1.183553,-0.262824,0.178807,0.805208,-322.3908,1.920980)" gradientUnits="userSpaceOnUse" id="linearGradient4941" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(0.414155,-9.196867e-2,9.196867e-2,0.414155,-32.52136,93.13084)" gradientUnits="userSpaceOnUse" id="radialGradient4943" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(1.183298,-0.262767,0.262767,1.183298,-429.1847,-31.68255)" gradientUnits="userSpaceOnUse" id="radialGradient4945" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(0.831335,-0.184609,0.254564,1.146356,-322.3908,1.920980)" gradientUnits="userSpaceOnUse" id="linearGradient4947" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient4894" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.701614,-0.461801,0.654553,0.994461,-524.9572,237.6616)" gradientUnits="userSpaceOnUse" id="radialGradient4949" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.418145,-0.275222,0.366704,0.557132,-199.6804,434.7574)" gradientUnits="userSpaceOnUse" id="radialGradient4951" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.230196,-0.273182,0.172028,0.774677,-322.3908,1.920980)" gradientUnits="userSpaceOnUse" id="linearGradient4953" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.968306,-0.215026,0.296519,1.335288,-332.1847,-42.18317)" gradientUnits="userSpaceOnUse" id="radialGradient4955" r="359.53452" xlink:href="#linearGradient4884"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="matrix(1.330892,-0.205583,0.102609,0.471582,-211.9503,321.8560)" gradientUnits="userSpaceOnUse" id="radialGradient4957" r="32.826073" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(1.219083,6.727617e-17,-1.156167e-17,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4959" x1="309.15680" x2="302.30682" xlink:href="#linearGradient2053" y1="900.83911" y2="958.59302"/>
<linearGradient gradientTransform="matrix(1.219083,6.727617e-17,-1.156167e-17,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4961" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.219083,6.727617e-17,-1.156167e-17,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4963" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.219083,6.727617e-17,-1.156167e-17,0.820289,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4965" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.468627,8.104752e-17,-5.993896e-18,0.425261,-47.92028,199.3132)" gradientUnits="userSpaceOnUse" id="radialGradient4967" r="15.405808" xlink:href="#linearGradient2077"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientTransform="matrix(0.468704,-0.171608,0.343813,0.939038,-171.2690,123.2184)" gradientUnits="userSpaceOnUse" id="radialGradient4969" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.015364,5.603376e-17,-1.388135e-17,0.984868,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="radialGradient4971" r="27.479855" xlink:href="#linearGradient2201"/>
<linearGradient gradientTransform="matrix(0.644520,3.556840e-17,-2.186841e-17,1.551543,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4973" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<linearGradient gradientTransform="matrix(0.813920,4.491689e-17,-1.731697e-17,1.228622,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4975" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.813920,4.491689e-17,-1.731697e-17,1.228622,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4977" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(1.015364,5.603376e-17,-1.388135e-17,0.984868,-120.5849,19.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4979" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.822094,4.536800e-17,-1.714479e-17,1.216406,-120.5849,13.48388)" gradientUnits="userSpaceOnUse" id="linearGradient4981" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="matrix(1.580391,8.721528e-17,-8.918448e-18,0.632755,-120.5849,19.48388)" gradientUnits="userSpaceOnUse" id="radialGradient4983" r="14.647120" xlink:href="#linearGradient2168"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="matrix(1.572568,-0.157048,6.287884e-2,0.629623,-17.72450,122.4103)" gradientUnits="userSpaceOnUse" id="radialGradient4986" r="14.647120" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(-0.782638,0.251627,0.372318,1.158025,576.3574,-7.935680)" gradientUnits="userSpaceOnUse" id="linearGradient4989" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<linearGradient gradientTransform="matrix(1.010338,-0.100900,9.786941e-2,0.979993,-17.72450,122.4103)" gradientUnits="userSpaceOnUse" id="linearGradient4992" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.809891,-8.088177e-2,0.122092,1.222540,1.679290,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient4995" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(0.809891,-8.088177e-2,0.122092,1.222540,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient4998" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(-0.617981,0.183047,0.440646,1.487655,597.5026,-4.426146)" gradientUnits="userSpaceOnUse" id="linearGradient5001" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(1.010338,-0.100900,9.786941e-2,0.979993,-18.32070,116.4401)" gradientUnits="userSpaceOnUse" id="radialGradient5004" r="27.479855" xlink:href="#linearGradient2201"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientTransform="matrix(0.449331,-0.217335,0.435426,0.900224,-57.84930,230.6680)" gradientUnits="userSpaceOnUse" id="radialGradient5007" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.461357,-0.145942,4.225951e-2,0.423156,92.45066,294.1286)" gradientUnits="userSpaceOnUse" id="radialGradient5010" r="15.405808" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.213049,-0.121144,8.151468e-2,0.816229,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5013" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<linearGradient gradientTransform="matrix(1.213049,-0.121144,8.151468e-2,0.816229,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5016" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.213049,-0.121144,8.151468e-2,0.816229,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5019" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.213049,-0.121144,8.151468e-2,0.816229,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5022" x1="309.15680" x2="302.30682" xlink:href="#linearGradient4902" y1="900.83911" y2="958.59302"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="matrix(1.303875,-0.336820,0.148964,0.459051,-58.59000,432.3650)" gradientUnits="userSpaceOnUse" id="radialGradient5025" r="32.826073" xlink:href="#linearGradient2168"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.942145,-0.310185,0.427743,1.299212,-214.4049,82.07592)" gradientUnits="userSpaceOnUse" id="radialGradient5028" r="359.53452" xlink:href="#linearGradient4884"/>
<linearGradient gradientTransform="matrix(1.196960,-0.394078,0.248159,0.753747,-200.2767,124.9885)" gradientUnits="userSpaceOnUse" id="linearGradient5031" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.388726,-0.315412,0.420253,0.517934,-35.16140,543.4882)" gradientUnits="userSpaceOnUse" id="radialGradient5034" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.652250,-0.529237,0.750136,0.924493,-378.4141,379.6918)" gradientUnits="userSpaceOnUse" id="radialGradient5037" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(0.808875,-0.266308,0.367221,1.115385,-200.2767,124.9885)" gradientUnits="userSpaceOnUse" id="linearGradient5040" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient4894" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(1.151329,-0.379054,0.379054,1.151329,-309.8813,102.1638)" gradientUnits="userSpaceOnUse" id="radialGradient5043" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(0.402966,-0.132669,0.132669,0.402966,97.22168,186.9416)" gradientUnits="userSpaceOnUse" id="radialGradient5046" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.151577,-0.379136,0.257938,0.783454,-200.2767,124.9885)" gradientUnits="userSpaceOnUse" id="linearGradient5049" x1="350.37308" x2="285.90225" xlink:href="#linearGradient2077" y1="168.42853" y2="601.16229"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.942145,-0.310185,0.427743,1.299212,-214.4049,82.07592)" gradientUnits="userSpaceOnUse" id="radialGradient5052" r="372.48581" xlink:href="#linearGradient4894"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.942145,-0.310185,0.427743,1.299212,-214.4049,82.07592)" gradientUnits="userSpaceOnUse" id="radialGradient5055" r="330.32794" xlink:href="#linearGradient4902"/>
<linearGradient gradientTransform="matrix(0.364364,-3.638815e-2,0.271380,2.717402,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5058" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<linearGradient gradientTransform="matrix(0.809891,-8.088177e-2,0.122092,1.222540,1.679298,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5070" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.809891,-8.088177e-2,0.122092,1.222540,1.679290,116.4401)" gradientUnits="userSpaceOnUse" id="linearGradient5072" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<radialGradient cx="893.91394" cy="318.43384" fx="893.91394" fy="318.43384" gradientTransform="scale(0.728310,1.373043)" gradientUnits="userSpaceOnUse" id="radialGradient5082" r="179.96289" xlink:href="#linearGradient4902"/>
<linearGradient gradientTransform="scale(0.612372,1.632993)" gradientUnits="userSpaceOnUse" id="linearGradient5092" x1="638.59399" x2="954.38226" xlink:href="#linearGradient3483" y1="290.11179" y2="290.11179"/>
<linearGradient gradientTransform="matrix(0.867447,-9.366999e-2,0.432205,0.631118,-2.067331,133.5799)" gradientUnits="userSpaceOnUse" id="linearGradient5096" x1="309.15680" x2="302.30682" xlink:href="#linearGradient4902" y1="900.83911" y2="958.59302"/>
<linearGradient gradientTransform="scale(0.738083,1.354861)" gradientUnits="userSpaceOnUse" id="linearGradient5108" x1="878.35034" x2="921.75513" xlink:href="#linearGradient3463" y1="504.52991" y2="572.12531"/>
<radialGradient cx="247.70894" cy="1161.0876" fx="247.70892" fy="1161.4192" gradientTransform="matrix(1.458861,0.607749,-0.243330,0.584097,637.6169,-42.12581)" gradientUnits="userSpaceOnUse" id="radialGradient5111" r="14.647120" xlink:href="#linearGradient2168"/>
<linearGradient gradientTransform="matrix(0.758876,0.316141,-0.467776,1.122866,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5114" spreadMethod="reflect" x1="423.76266" x2="448.11847" xlink:href="#linearGradient2201" y1="614.40485" y2="654.13196"/>
<linearGradient gradientTransform="matrix(0.937284,0.390464,-0.378737,0.909133,637.6169,-42.12581)" gradientUnits="userSpaceOnUse" id="linearGradient5117" spreadMethod="reflect" x1="370.79483" x2="381.52863" xlink:href="#linearGradient2168" y1="747.38092" y2="754.62958"/>
<linearGradient gradientTransform="matrix(0.751330,0.312998,-0.472474,1.134142,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5120" spreadMethod="pad" x1="432.33322" x2="442.93881" xlink:href="#linearGradient2168" y1="816.66492" y2="835.01398"/>
<linearGradient gradientTransform="matrix(0.751330,0.312998,-0.472474,1.134142,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5123" spreadMethod="reflect" x1="469.01181" x2="491.66272" xlink:href="#linearGradient2201" y1="838.20184" y2="843.22455"/>
<linearGradient gradientTransform="matrix(0.594957,0.247854,-0.596655,1.432231,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5126" spreadMethod="reflect" x1="608.26611" x2="572.03137" xlink:href="#linearGradient2201" y1="588.04816" y2="590.56244"/>
<radialGradient cx="370.70612" cy="771.54883" fx="370.70612" fy="771.54883" gradientTransform="matrix(0.937284,0.390464,-0.378737,0.909133,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="radialGradient5129" r="27.479855" xlink:href="#linearGradient2201"/>
<radialGradient cx="378.57144" cy="752.36218" fx="378.57144" fy="752.36218" gradientTransform="matrix(0.498654,2.183142e-2,-4.373857e-2,0.999042,550.9386,34.14071)" gradientUnits="userSpaceOnUse" id="radialGradient5132" r="8.5714283" xlink:href="#linearGradient2077"/>
<radialGradient cx="214.76448" cy="1378.8025" fx="214.76448" fy="1378.8025" gradientTransform="matrix(1.355691,0.564769,-0.163537,0.392559,635.5392,151.8184)" gradientUnits="userSpaceOnUse" id="radialGradient5135" r="15.405808" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.125337,0.468806,-0.315447,0.757210,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5138" x1="293.23529" x2="310.45273" xlink:href="#linearGradient2168" y1="923.83136" y2="927.11578"/>
<linearGradient gradientTransform="matrix(1.125337,0.468806,-0.315447,0.757210,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5141" x1="293.05011" x2="311.93381" xlink:href="#linearGradient2168" y1="901.66022" y2="937.79065"/>
<linearGradient gradientTransform="matrix(1.125337,0.468806,-0.315447,0.757210,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5144" x1="299.34467" x2="301.38113" xlink:href="#linearGradient2168" y1="959.68787" y2="945.18097"/>
<linearGradient gradientTransform="matrix(1.125337,0.468806,-0.315447,0.757210,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5147" x1="309.15680" x2="302.30682" xlink:href="#linearGradient3483" y1="900.83911" y2="958.59302"/>
<radialGradient cx="269.78928" cy="1031.8398" fx="269.78928" fy="1031.8398" gradientTransform="matrix(1.307606,0.322029,-8.663122e-2,0.474777,436.9985,201.8591)" gradientUnits="userSpaceOnUse" id="radialGradient5150" r="32.826073" xlink:href="#linearGradient2168"/>
<radialGradient cx="413.88809" cy="440.37405" fx="413.88809" fy="440.37405" gradientTransform="matrix(0.976534,0.173877,-0.239776,1.346634,466.0033,-180.4227)" gradientUnits="userSpaceOnUse" id="radialGradient5153" r="359.53452" xlink:href="#linearGradient3453"/>
<linearGradient gradientTransform="matrix(1.240649,0.220905,-0.139107,0.781260,458.0836,-135.9438)" gradientUnits="userSpaceOnUse" id="linearGradient5156" x1="336.15353" x2="345.40002" xlink:href="#linearGradient2168" y1="1203.6084" y2="608.36353"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.491828,-9.325753e-2,0.124256,0.655307,404.9078,310.7969)" gradientUnits="userSpaceOnUse" id="radialGradient5159" r="175.43748" xlink:href="#linearGradient2077"/>
<radialGradient cx="480.13391" cy="516.86877" fx="480.13391" fy="516.86877" gradientTransform="matrix(0.825249,-0.156479,0.221793,1.169700,180.4389,3.770434)" gradientUnits="userSpaceOnUse" id="radialGradient5162" r="175.43748" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(0.838399,0.149282,-0.205850,1.156096,458.0836,-135.9438)" gradientUnits="userSpaceOnUse" id="linearGradient5165" x1="-683.49762" x2="1100.7120" xlink:href="#linearGradient3475" y1="-283.38879" y2="504.57803"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(1.193352,0.212484,-0.212484,1.193352,372.4245,-208.0315)" gradientUnits="userSpaceOnUse" id="radialGradient5168" r="94.285713" xlink:href="#linearGradient2077"/>
<radialGradient cx="457.14285" cy="263.79074" fx="457.14285" fy="263.79074" gradientTransform="matrix(0.417674,7.436942e-2,-7.436942e-2,0.417674,690.5870,59.72312)" gradientUnits="userSpaceOnUse" id="radialGradient5171" r="94.285713" xlink:href="#linearGradient2077"/>
<linearGradient gradientTransform="matrix(1.193610,0.212529,-0.144591,0.812050,0.000000,0.000000)" gradientUnits="userSpaceOnUse" id="linearGradient5174" x1="681.00250" x2="606.26080" xlink:href="#linearGradient2077" y1="1.5028361" y2="160.01575"/>
<radialGradient cx="478.65665" cy="290.04428" fx="478.65665" fy="290.04428" gradientTransform="matrix(0.976534,0.173877,-0.239776,1.346634,466.0033,-180.4227)" gradientUnits="userSpaceOnUse" id="radialGradient5177" r="372.48581" xlink:href="#linearGradient3475"/>
<radialGradient cx="462.46451" cy="233.67064" fx="462.46451" fy="233.67064" gradientTransform="matrix(0.976534,0.173877,-0.239776,1.346634,466.0033,-180.4227)" gradientUnits="userSpaceOnUse" id="radialGradient5180" r="330.32794" xlink:href="#linearGradient3483"/>
<linearGradient gradientTransform="matrix(0.338018,0.140816,-1.050192,2.520915,639.9242,-47.66441)" gradientUnits="userSpaceOnUse" id="linearGradient5183" spreadMethod="pad" x1="1062.9684" x2="1074.9819" xlink:href="#linearGradient2201" y1="281.09448" y2="396.19681"/>
<linearGradient gradientTransform="matrix(0.554991,1.758837e-2,9.212311e-2,0.429680,275.0437,290.5688)" gradientUnits="userSpaceOnUse" id="linearGradient5187" x1="309.15680" x2="302.30682" xlink:href="#linearGradient3483" y1="900.83911" y2="958.59302"/>
<linearGradient gradientTransform="matrix(0.499070,0.543779,-0.998187,0.916117,586.8743,-250.8908)" gradientUnits="userSpaceOnUse" id="linearGradient5193" x1="878.35034" x2="921.75513" xlink:href="#linearGradient3469" y1="504.52991" y2="572.12531"/>
<linearGradient gradientTransform="matrix(0.731478,9.852137e-2,-0.180851,1.342737,97.83630,-77.66465)" gradientUnits="userSpaceOnUse" id="linearGradient5195" x1="878.35034" x2="921.75513" xlink:href="#linearGradient3463" y1="504.52991" y2="572.12531"/>
</defs>
<g id="layer1" transform="translate(164.0884,17.00553)">
<path d="M 369.75644,746.34687 L 410.08954,1145.5050 L 417.20122,1145.5050 L 379.81736,745.33672 L 369.75644,746.34687 z " id="path2191" style="fill:url(#linearGradient2199);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 558.53770,282.82738 C 598.19790,461.42541 490.59070,722.29347 383.99325,748.89164 C 280.18499,774.87042 68.249920,579.10760 28.589770,400.50957 C -11.070380,221.91155 75.450010,50.601605 221.71565,18.121320 C 367.98130,-14.358967 518.87760,104.22936 558.53770,282.82738 z " id="path1291" style="opacity:0.75000000;fill:url(#radialGradient2252);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 558.53773,282.82738 C 598.19788,461.42541 490.59072,722.29347 383.99325,748.89164 C 280.18499,774.87042 68.249916,579.10760 28.589767,400.50957 C -11.070379,221.91155 75.450014,50.601605 221.71565,18.121320 C 367.98130,-14.358967 518.87759,104.22936 558.53773,282.82738 z " id="path2063" style="fill:url(#radialGradient2249);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 171.19435,67.387925 C 159.03695,67.511706 134.67875,87.151110 125.32441,98.061170 C 106.09050,120.49388 94.486693,135.71076 83.478452,160.03499 C 66.578249,197.37830 88.053428,199.11875 116.32549,176.15479 C 137.92490,158.61068 103.46767,211.75769 100.51339,223.56721 C 95.579446,243.29035 75.549216,255.31687 66.107952,266.32831 C 56.259919,277.81417 58.861887,299.54130 38.519669,313.42905 C 16.321938,328.58356 56.774371,336.74380 68.265835,341.94441 C 86.627292,350.25413 57.506276,388.47707 96.153853,362.09217 C 118.94342,346.53362 112.92334,330.54498 128.07381,360.85739 C 133.07044,370.85443 175.66139,323.72371 177.66401,320.57779 C 180.00365,316.90244 173.80973,263.68188 173.02463,260.14645 C 173.00870,260.07467 186.08519,241.02252 201.84769,244.96567 C 226.29741,251.08202 218.58692,273.72689 240.58481,248.07054 C 251.76128,235.03530 266.41002,298.46822 266.91841,300.75763 C 274.20930,333.59005 315.70642,295.89113 329.20789,304.48585 C 343.62891,313.66592 338.29210,343.79748 354.92211,354.38375 C 368.04133,362.73513 398.19982,324.02047 402.34249,317.51273 C 415.89895,296.21682 403.03151,294.00216 440.46023,317.82839 C 466.82291,334.61023 462.86646,285.85509 498.72175,316.59759 C 520.54220,335.30656 505.49193,296.52117 505.85458,282.81949 C 506.46653,259.69795 493.91219,225.62876 485.72273,205.34127 C 481.08826,193.86043 530.09592,221.46492 522.29003,211.85471 C 508.05220,194.32580 489.59566,179.70967 476.43203,163.50327 C 459.37703,142.50601 452.02742,128.62534 439.87269,104.30671 C 429.37128,83.295965 433.92617,78.967049 417.25538,68.354811 C 399.65253,57.149265 383.60779,86.282683 372.32047,63.699507 C 364.46931,47.991255 334.45150,73.121879 319.63735,63.691548 C 315.46567,61.035956 302.98153,31.025853 299.80923,27.120267 C 292.82705,18.524156 257.26691,30.713894 245.57568,33.310092 C 241.85674,34.135933 238.13781,34.961773 234.41887,35.787614 C 221.62255,38.629212 205.80781,39.214341 191.96149,42.289106 C 190.95432,42.512761 179.41572,61.775160 171.19435,67.387925 z " id="path2075" style="opacity:0.60000002;fill:url(#linearGradient2246);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 551.42857,263.79074 C 551.42857,315.86330 509.21542,358.07646 457.14286,358.07646 C 405.07029,358.07646 362.85714,315.86330 362.85714,263.79074 C 362.85714,211.71818 405.07029,169.50503 457.14286,169.50503 C 509.21542,169.50503 551.42857,211.71818 551.42857,263.79074 z " id="path2085" style="fill:url(#radialGradient2217);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.414155,-9.196867e-2,9.196867e-2,0.414155,88.06354,73.64696)"/>
<path d="M 551.42857,263.79074 C 551.42857,315.86330 509.21542,358.07646 457.14286,358.07646 C 405.07029,358.07646 362.85714,315.86330 362.85714,263.79074 C 362.85714,211.71818 405.07029,169.50503 457.14286,169.50503 C 509.21542,169.50503 551.42857,211.71818 551.42857,263.79074 z " id="path2095" style="opacity:0.60000002;fill:url(#radialGradient2219);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(1.183298,-0.262767,0.262767,1.183298,-308.5998,-51.16643)"/>
<path d="M 221.72178,18.128537 C 75.456143,50.608821 -11.077829,221.89896 28.582305,400.49698 C 68.242442,579.09502 280.18914,774.86897 383.99740,748.89022 C 490.59487,722.29206 598.20791,461.40896 558.54774,282.81091 C 518.88760,104.21288 367.98743,-14.351750 221.72178,18.128537 z M 216.47735,23.486605 C 221.67723,21.882678 227.51808,21.056915 234.12702,21.231839 C 253.49518,21.744454 266.79050,47.745890 272.21803,47.889540 C 292.69712,48.431562 302.93851,28.572681 317.79324,28.965850 C 336.37315,29.457607 338.98194,37.686696 350.63543,45.105018 C 361.45874,51.994884 374.92231,65.332853 389.37342,74.532070 C 401.21062,82.067349 422.08826,98.533920 436.47706,102.13342 C 449.98505,105.51259 468.17852,113.13561 471.17546,126.63148 C 477.50788,155.14769 456.72729,148.00658 456.27602,165.05643 C 455.65602,188.48190 497.95188,181.33326 504.31595,209.99203 C 510.89557,239.62149 473.49961,251.31791 482.29735,255.85594 C 482.47502,255.94759 554.49595,317.38324 513.29233,316.29272 C 490.22556,315.68221 445.51400,281.78870 438.59470,309.44812 C 436.08025,319.49948 412.73162,370.86125 394.57903,348.51269 C 355.70637,300.65463 377.44666,356.35383 325.78396,354.98648 C 308.76963,354.53616 311.03329,335.93957 311.52989,317.17741 C 313.60200,238.88686 256.92060,305.70647 256.37080,279.68077 C 254.71201,201.15991 262.94841,269.53577 238.72412,239.71205 C 224.13072,221.74538 213.11011,202.93749 186.66097,216.15706 C 145.87873,236.54049 180.25601,245.63310 181.71046,272.85991 C 183.06287,298.17649 149.96164,294.57506 164.03489,311.90134 C 168.75982,317.71845 194.91706,365.08902 186.35118,359.63620 C 182.94260,357.46638 179.50739,355.27963 176.09881,353.10979 C 139.35331,329.71849 139.06132,396.73856 111.03708,350.01548 C 89.250313,313.69177 90.035634,370.87241 60.815393,387.51314 C 49.639654,421.02350 45.443094,397.28448 41.618170,380.06003 C 38.162376,364.49785 41.123863,351.45394 37.289881,334.18874 C 31.035654,306.02463 53.061042,313.15829 66.100456,292.67463 C 73.687659,280.75588 102.35804,262.22896 75.417138,255.48941 C 61.267350,251.94969 37.905806,262.02300 55.572931,245.26695 C 66.931323,234.49431 115.33123,194.87829 92.780268,175.54297 C 80.081813,164.65526 43.122738,133.87961 84.405618,124.71218 C 121.25427,116.52943 130.39431,115.66120 131.20420,85.061646 C 131.86368,60.144615 169.28413,74.167787 182.66561,53.146742 C 190.94632,40.138536 200.87770,28.298399 216.47735,23.486605 z " id="path2125" style="opacity:0.40000001;fill:url(#linearGradient2241);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 568.57143,602.36218 C 568.57143,730.96564 495.01821,835.21934 404.28571,835.21934 C 313.55320,835.21934 239.99998,730.96564 239.99998,602.36218 C 239.99998,473.75872 313.55320,369.50502 404.28571,369.50502 C 495.01821,369.50502 568.57143,473.75872 568.57143,602.36218 L 568.57143,602.36218 z " id="path2099" style="opacity:0.52999997;fill:url(#radialGradient2223);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.835301,-0.549794,0.549794,0.835301,-404.3723,218.1777)"/>
<path d="M 568.57143,602.36218 C 568.57143,730.96564 495.01821,835.21934 404.28571,835.21934 C 313.55320,835.21934 239.99998,730.96564 239.99998,602.36218 C 239.99998,473.75872 313.55320,369.50502 404.28571,369.50502 C 495.01821,369.50502 568.57143,473.75872 568.57143,602.36218 L 568.57143,602.36218 z " id="path2109" style="opacity:0.29999998;fill:url(#radialGradient2225);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.497819,-0.327663,0.308014,0.467965,-79.09553,415.2735)"/>
<path d="M 223.16443,647.35804 C 204.82896,623.09623 162.19751,580.67872 138.59443,546.10586 C 125.22777,526.52690 115.33510,495.49316 139.91678,496.14376 C 177.18438,497.13013 172.87974,555.72723 171.47297,489.13628 C 171.38267,484.86199 200.45126,534.06327 226.25553,493.52721 C 246.74631,461.33816 253.84105,543.19482 257.80047,561.02492 C 259.34063,567.96058 293.72353,573.75046 307.76258,562.34726 C 343.05904,533.67773 314.69552,596.71978 314.32928,610.55749 C 313.43833,644.21993 387.49341,568.95006 391.03274,564.55117 C 423.99346,523.58565 441.87799,553.84511 463.79168,519.42079 C 486.79789,483.28022 512.18644,454.03830 529.98392,426.08017 C 544.08372,403.93073 506.97360,394.85330 540.07125,378.31073 C 565.13109,365.78554 561.87170,423.87233 556.27887,432.65813 C 542.64103,454.08188 517.67062,446.83322 516.82800,478.67008 C 516.30085,498.58722 515.94841,511.98704 521.20205,535.64530 C 525.89463,556.77697 500.72029,589.10232 490.95131,604.44846 C 477.12371,626.17028 487.46330,634.67693 459.38948,648.70853 C 440.13364,658.33282 437.59720,699.00131 419.93861,694.72047 C 406.21667,705.86611 383.73373,721.79986 373.91541,729.77478 C 355.55245,744.69008 334.65697,713.65843 305.54740,720.12261 C 283.57413,725.00207 259.71713,710.63344 247.26110,699.95358 C 235.26308,689.66642 226.51067,662.42690 223.16443,647.35804 z " id="path2158" style="opacity:0.099999972;fill:url(#linearGradient2235);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 558.53773,282.82738 C 598.19788,461.42541 490.59072,722.29347 383.99325,748.89164 C 280.18499,774.87042 68.249916,579.10760 28.589767,400.50957 C -11.070379,221.91155 75.450014,50.601605 221.71565,18.121320 C 367.98130,-14.358967 518.87759,104.22936 558.53773,282.82738 z " id="path2180" style="fill:url(#radialGradient2232);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 421.42858,740.93359 C 421.43605,753.95445 400.96688,764.51199 375.71430,764.51199 C 350.46171,764.51199 329.99254,753.95445 330.00001,740.93359 C 329.99254,727.91273 350.46171,717.35519 375.71430,717.35519 C 400.96688,717.35519 421.43605,727.91273 421.42858,740.93359 z " id="path2171" style="opacity:0.29999998;fill:url(#radialGradient2179);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.955674,-0.147623,0.142896,0.656735,-91.36538,302.3721)"/>
<path d="M 372.74630,735.23520 C 366.81077,738.88437 357.33760,752.54373 354.56355,759.47885 C 353.02024,763.33713 345.47182,764.52979 341.43156,766.54992 C 333.48309,770.52416 337.69213,777.66160 345.47218,777.66160 C 355.83478,777.66160 365.74670,777.67590 375.77675,779.68191 C 383.34153,781.19486 391.20951,780.69206 399.01026,780.69206 C 406.95406,780.69206 407.98886,775.41574 406.08133,771.60069 C 404.34553,768.12908 395.12566,763.83150 392.94934,759.47885 C 390.88370,755.34758 391.05402,741.13731 385.87828,737.25550 C 385.49733,736.96979 379.16068,731.29164 372.74630,735.23520 z " id="path1354" style="fill:url(#linearGradient2122);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 372.74630,735.23520 C 366.81077,738.88437 357.33760,752.54373 354.56355,759.47885 C 353.02024,763.33713 345.47182,764.52979 341.43156,766.54992 C 333.48309,770.52416 337.69213,777.66160 345.47218,777.66160 C 355.83478,777.66160 365.74670,777.67590 375.77675,779.68191 C 383.34153,781.19486 391.20951,780.69206 399.01026,780.69206 C 406.95406,780.69206 407.98886,775.41574 406.08133,771.60069 C 404.34553,768.12908 395.12566,763.83150 392.94934,759.47885 C 390.88370,755.34758 391.05402,741.13731 385.87828,737.25550 C 385.49733,736.96979 379.16068,731.29164 372.74630,735.23520 z " id="path2124" style="fill:url(#linearGradient2126);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 372.74630,735.23520 C 366.81077,738.88437 357.33760,752.54373 354.56355,759.47885 C 353.02024,763.33713 345.47182,764.52979 341.43156,766.54992 C 333.48309,770.52416 337.69213,777.66160 345.47218,777.66160 C 355.83478,777.66160 365.74670,777.67590 375.77675,779.68191 C 383.34153,781.19486 391.20951,780.69206 399.01026,780.69206 C 406.95406,780.69206 407.98886,775.41574 406.08133,771.60069 C 404.34553,768.12908 395.12566,763.83150 392.94934,759.47885 C 390.88370,755.34758 391.05402,741.13731 385.87828,737.25550 C 385.49733,736.96979 379.16068,731.29164 372.74630,735.23520 z " id="path2138" style="opacity:0.46759257;fill:url(#linearGradient2140);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 372.74630,735.23520 C 366.81077,738.88437 357.33760,752.54373 354.56355,759.47885 C 353.02024,763.33713 345.47182,764.52979 341.43156,766.54992 C 333.48309,770.52416 337.69213,777.66160 345.47218,777.66160 C 355.83478,777.66160 365.74670,777.67590 375.77675,779.68191 C 383.34153,781.19486 391.20951,780.69206 399.01026,780.69206 C 406.95406,780.69206 407.98886,775.41574 406.08133,771.60069 C 404.34553,768.12908 395.12566,763.83150 392.94934,759.47885 C 390.88370,755.34758 391.05402,741.13731 385.87828,737.25550 C 385.49733,736.96979 379.16068,731.29164 372.74630,735.23520 z " id="path2142" style="opacity:0.50925928;fill:url(#linearGradient2144);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 358.60416,766.35602 C 361.98677,766.79403 369.86974,766.04989 375.18036,764.81816 C 379.67512,763.77566 382.39746,763.50501 385.12608,760.97352 C 389.07430,757.31058 388.96849,760.44466 394.24300,762.86852 C 397.17329,765.99717 401.41919,764.95129 404.38982,770.96958 C 407.32011,773.68815 392.58538,770.96958 388.44133,770.96958 C 383.98932,770.96958 380.14161,770.20065 376.00918,770.20065 C 373.15829,770.20065 367.34356,769.15193 365.23464,768.66280 C 361.95282,767.90163 363.64871,767.29203 358.60416,766.35602 z " id="path2146" style="opacity:0.67592591;fill:url(#radialGradient2155);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 387.14287,752.36218 C 387.14287,757.09605 383.30531,760.93361 378.57144,760.93361 C 373.83757,760.93361 370.00001,757.09605 370.00001,752.36218 C 370.00001,747.62831 373.83757,743.79075 378.57144,743.79075 C 383.30531,743.79075 387.14287,747.62831 387.14287,752.36218 z " id="path2161" style="opacity:0.46759257;fill:url(#radialGradient2169);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.468704,-0.171608,0.343813,0.939038,-50.68410,103.7345)"/>
<path d="M 384.09818,745.83018 C 383.78238,745.91228 383.47043,745.65182 383.15656,745.56264 C 390.18771,747.02588 383.26903,745.41458 384.33989,744.00483 C 384.05123,743.79518 384.23978,744.10271 384.10974,744.22985 L 388.12264,734.80663 C 390.01864,736.02705 392.08266,736.67273 393.20175,738.86842 C 397.86394,750.80714 390.36280,759.66543 377.74457,754.21908 C 369.15919,746.31816 372.37780,736.29213 384.09818,735.46561 L 384.09818,745.83018 z " id="path2223" style="fill:url(#radialGradient2242);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 389.06040,848.98409 C 408.56318,881.58670 349.65348,881.92042 351.02104,916.40658 C 352.40274,951.24933 382.47893,936.19407 401.04317,966.73710 L 402.40092,978.82551 C 375.22545,940.86105 350.31664,951.17307 349.24148,917.10528 C 348.16632,883.03749 394.09368,871.53505 389.85156,855.28576 L 389.06040,848.98409 z " id="path2248" style="fill:url(#linearGradient2264);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 395.35344,1000.7138 C 386.06708,1014.0157 361.24634,1018.6566 361.39721,1003.1878 C 361.75710,966.28976 403.09621,993.42290 404.31666,1023.5918 C 404.91044,1038.2699 368.00914,1037.5832 362.17120,1050.5017 L 361.11009,1042.0147 C 366.00871,1031.0089 400.25507,1032.4402 398.55799,1024.2851 C 392.75062,996.37840 376.70782,988.15338 366.03822,996.81628 C 367.32322,1011.9471 387.29420,1006.7338 394.97835,993.23176 L 395.35344,1000.7138 z " id="path2284" style="fill:url(#linearGradient2317);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 409.78714,998.30148 C 400.50078,1007.3146 361.24634,1016.6361 361.39721,1006.1546 L 366.03822,1001.8374 C 367.32322,1012.0898 401.72790,1002.3805 409.41205,993.23176 L 409.78714,998.30148 z " id="path2319" style="fill:url(#linearGradient2321);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 384.09818,745.83018 C 383.78238,745.91228 383.47043,745.65182 383.15656,745.56264 C 390.18771,747.02588 383.26903,745.41458 384.33989,744.00483 C 384.05123,743.79518 384.23978,744.10271 384.10974,744.22985 L 388.12264,734.80663 C 390.01864,736.02705 392.08266,736.67273 393.20175,738.86842 C 397.86394,750.80714 390.36280,759.66543 377.74457,754.21908 C 369.15919,746.31816 372.37780,736.29213 384.09818,735.46561 L 384.09818,745.83018 z " id="path2323" style="fill:url(#linearGradient2327);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 392.32515,736.54972 C 382.57435,758.74059 379.33546,737.99217 371.03254,739.30306 C 358.28928,739.27817 338.90315,745.61187 332.04352,755.85853 C 322.63923,769.90633 318.99257,784.72691 326.37456,803.60813 C 333.80489,822.61299 355.80484,829.32004 379.87516,842.88198 L 380.18622,846.89013 C 361.91235,832.58423 331.41246,831.97169 321.24765,810.38133 C 310.94499,788.49819 311.63298,770.75482 331.40961,751.67628 C 341.88285,741.93301 354.24083,734.05918 368.90361,733.73944 L 392.32515,736.54972 z " id="path2246" style="fill:url(#linearGradient2256);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 392.32515,736.54972 C 382.57435,758.74059 379.33546,737.99217 371.03254,739.30306 C 358.28928,739.27817 354.24083,734.05918 368.90361,733.73944 L 392.32515,736.54972 z " id="path2329" style="opacity:0.63888890;fill:url(#radialGradient2333);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
</g>
<path d="M 695.61968,790.55803 L 578.04177,1164.3380 L 588.29897,1166.6111 L 701.60298,791.95632 L 695.61968,790.55803 z " id="path3893" style="fill:url(#linearGradient5183);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 1044.4406,433.74146 C 1012.3701,613.85705 812.71938,813.28362 704.09068,796.84373 C 598.27488,780.90468 477.91917,518.69492 509.98979,338.57936 C 542.06041,158.46380 687.80573,33.599346 835.31418,59.864092 C 982.82264,86.128840 1076.5113,253.62592 1044.4406,433.74146 z " id="path3895" style="opacity:0.75000000;fill:url(#radialGradient5180);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 1044.4407,433.74148 C 1012.3701,613.85704 812.71940,813.28363 704.09068,796.84373 C 598.27488,780.90468 477.91917,518.69492 509.98979,338.57936 C 542.06041,158.46380 687.80573,33.599346 835.31418,59.864092 C 982.82264,86.128840 1076.5113,253.62592 1044.4407,433.74148 z " id="path3897" style="fill:url(#radialGradient5177);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 769.73215,85.913875 C 758.46204,81.352936 728.42451,90.115001 715.59398,96.588821 C 689.21251,109.89996 672.64927,119.48437 653.13353,137.70480 C 623.17234,165.67737 642.32680,175.54240 677.25570,165.21653 C 703.94083,157.32773 651.69532,193.13705 644.42680,202.90235 C 632.28763,219.21142 609.17283,222.61037 596.22307,229.14434 C 582.71539,235.95983 576.76197,257.01677 552.64343,262.01384 C 526.32492,267.46672 560.52853,290.55567 569.13639,299.77547 C 582.89031,314.50719 541.30982,338.59216 587.13190,329.09839 C 614.15211,323.50014 614.74350,306.42595 617.07209,340.23357 C 617.84006,351.38333 675.28021,324.25553 678.33862,322.12164 C 681.91172,319.62865 696.66039,268.11878 697.29523,264.55331 C 697.30813,264.48092 716.70567,251.92251 729.73969,261.62400 C 749.95717,276.67229 734.13139,294.61068 764.30397,279.38670 C 779.63376,271.65183 768.76251,335.84009 768.35140,338.14895 C 762.45573,371.26034 815.25911,352.41840 824.41718,365.54427 C 834.19898,379.56409 817.68530,405.32626 828.96546,421.49362 C 837.86425,434.24787 880.59154,410.10795 886.91823,405.69374 C 907.62168,391.24868 896.59540,384.25608 921.98337,420.64353 C 939.86523,446.27279 954.96211,399.74540 976.23795,441.91220 C 989.18578,467.57365 990.20801,425.98315 995.81184,413.47457 C 1005.2683,392.36638 1006.7808,356.08923 1007.0228,334.21253 C 1007.1598,321.83234 1041.7833,366.16026 1038.2734,354.28726 C 1031.8712,332.63107 1020.4547,312.04133 1014.5356,292.01903 C 1006.8668,266.07784 1005.4202,250.43824 1003.5521,223.31551 C 1001.9380,199.88209 1007.8073,197.63768 996.49951,181.43065 C 984.55946,164.31752 958.54512,185.04051 956.81028,159.85335 C 955.60356,142.33384 918.22996,153.98841 908.18150,139.58639 C 905.35184,135.53077 905.36828,103.02756 903.94184,98.202383 C 900.80227,87.582266 863.28903,85.159760 851.49846,83.060380 C 847.74793,82.392574 843.99740,81.724771 840.24686,81.056965 C 827.34181,78.759145 812.51819,73.217625 798.55422,70.731258 C 797.53849,70.550401 779.47973,83.894303 769.73215,85.913875 z " id="path3899" style="opacity:0.60000002;fill:url(#linearGradient5174);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 901.28644,210.91109 C 897.41384,232.66044 876.64313,247.15241 854.89378,243.27981 C 833.14442,239.40720 818.65245,218.63650 822.52505,196.88714 C 826.39767,175.13778 847.16837,160.64582 868.91772,164.51842 C 890.66707,168.39103 905.15905,189.16173 901.28644,210.91109 z " id="path3901" style="fill:url(#radialGradient5171);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 974.42170,223.93345 C 963.35712,286.07435 904.01235,327.47991 841.87144,316.41533 C 779.73053,305.35074 738.32499,246.00597 749.38957,183.86506 C 760.45415,121.72415 819.79891,80.318611 881.93983,91.383193 C 944.08074,102.44777 985.48628,161.79254 974.42170,223.93345 z " id="path3903" style="opacity:0.60000002;fill:url(#radialGradient5168);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 835.31706,59.873111 C 687.80862,33.608364 542.05837,158.44931 509.98774,338.56486 C 477.91710,518.68044 598.27927,780.90494 704.09506,796.84402 C 812.72377,813.28393 1012.3856,613.84572 1044.4562,433.73012 C 1076.5269,253.61456 982.82552,86.137859 835.31706,59.873111 z M 828.41545,62.802372 C 833.83226,63.321430 839.54151,64.805302 845.57496,67.508282 C 863.25660,75.429619 865.53051,104.54437 870.48543,106.76416 C 889.18126,115.13986 906.27195,100.74649 919.83317,106.82190 C 936.79520,114.42086 936.03883,123.02037 943.94342,134.34965 C 951.28488,144.87186 958.58392,162.36165 968.38614,176.41072 C 976.41534,187.91861 989.35519,211.14754 1001.2533,220.00354 C 1012.4231,228.31743 1026.2860,242.35066 1023.8625,255.96120 C 1018.7419,284.71971 1002.3055,270.13644 995.33231,285.70164 C 985.75159,307.08729 1027.5440,316.75350 1022.3978,345.65578 C 1017.0772,375.53700 978.05906,371.95313 984.43513,379.52542 C 984.56390,379.67834 1027.4210,464.08573 989.80530,447.23397 C 968.74712,437.79995 940.50779,389.31872 923.48398,412.19030 C 917.29758,420.50177 875.99296,458.93501 867.83055,431.32435 C 850.35127,372.19781 849.00029,431.97416 801.83622,410.84475 C 786.30345,403.88610 795.54447,387.59007 803.21798,370.46168 C 835.23785,298.98843 757.21931,338.87251 766.72013,314.63673 C 795.38456,241.51615 776.69325,307.80133 765.80067,270.95543 C 759.23868,248.75840 756.29823,227.15877 726.79934,229.19060 C 681.31464,232.32351 709.55172,253.93689 700.42409,279.62931 C 691.93686,303.51914 662.76604,287.46538 669.09414,308.87124 C 671.21873,316.05802 677.14786,369.84477 671.33761,361.51720 C 669.02556,358.20345 666.69544,354.86383 664.38340,351.55006 C 639.45886,315.82682 613.41635,377.58083 605.51479,323.67382 C 599.37190,281.76513 578.10767,334.85064 544.73515,338.97489 C 521.53220,365.61064 526.78733,342.08332 529.88031,324.71251 C 532.67480,309.01811 540.42466,298.11611 543.52494,280.70421 C 548.58234,252.30079 566.17070,267.35588 586.08452,253.46178 C 597.67170,245.37727 631.26199,239.30042 608.98455,222.71885 C 597.28409,214.00994 571.84528,214.32480 594.59745,205.65127 C 609.22508,200.07498 669.13766,182.11786 655.75636,155.59730 C 648.22133,140.66358 625.93934,98.041714 667.57300,105.45483 C 704.73475,112.07169 713.50581,114.78509 726.02067,86.850051 C 736.21143,64.102723 765.36159,91.437786 785.79781,77.179167 C 798.44413,68.355675 812.16499,61.245205 828.41545,62.802372 z " id="path3905" style="opacity:0.40000001;fill:url(#linearGradient5165);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 851.27406,489.66533 C 875.23229,616.01743 822.38869,732.14867 733.24458,749.05171 C 644.10045,765.95475 552.41289,677.22877 528.45466,550.87667 C 504.49642,424.52457 557.34002,308.39333 646.48415,291.49030 C 735.62827,274.58725 827.31583,363.31323 851.27406,489.66533 L 851.27406,489.66533 z " id="path3907" style="opacity:0.52999997;fill:url(#radialGradient5162);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 800.69838,579.22706 C 814.12062,650.01395 781.93301,715.56444 728.80532,725.63817 C 675.67763,735.71191 621.72825,686.49417 608.30599,615.70727 C 594.88374,544.92039 627.07136,479.36989 680.19906,469.29616 C 733.32674,459.22242 787.27612,508.44016 800.69838,579.22706 L 800.69838,579.22706 z " id="path3909" style="opacity:0.29999998;fill:url(#radialGradient5159);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 594.67479,641.27028 C 587.07933,611.82316 564.03810,556.27334 555.54527,515.28239 C 550.73570,492.06880 553.53798,459.61724 575.97916,469.67084 C 610.00161,484.91284 583.49412,537.34851 607.80348,475.33735 C 609.36383,471.35703 617.27643,527.95328 656.68476,500.45759 C 687.97831,478.62369 663.04900,556.91398 659.84728,574.89559 C 658.60185,581.89018 688.11421,600.45697 705.45884,595.32947 C 749.06607,582.43806 698.64048,629.72488 692.98103,642.35764 C 679.21350,673.08886 776.51930,632.08549 781.47808,629.38594 C 827.65769,604.24587 832.53046,639.05601 865.99709,615.70593 C 901.13221,591.19171 935.81357,573.96178 962.99390,554.99773 C 984.52714,539.97372 953.76153,517.32342 990.67555,514.78086 C 1018.6250,512.85575 993.27858,565.22231 984.73720,571.18173 C 963.90947,585.71350 943.64677,569.41974 930.62590,598.48434 C 922.48003,616.66715 917.00171,628.90101 912.75342,652.76029 C 908.95884,674.07152 873.28947,694.23014 858.37027,704.63945 C 837.25274,719.37340 843.52594,731.20205 812.21503,733.35868 C 790.73887,734.83792 772.75817,771.40364 758.10373,760.66128 C 741.15087,765.67297 714.26943,771.73548 702.13932,775.32145 C 679.45269,782.02819 672.09746,745.34736 642.74054,740.12019 C 620.58057,736.17447 604.08369,713.73642 596.69252,699.08779 C 589.57313,684.97779 591.96889,656.46717 594.67479,641.27028 z " id="path3911" style="opacity:0.099999972;fill:url(#linearGradient5156);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 1044.4407,433.74148 C 1012.3701,613.85704 812.71940,813.28363 704.09068,796.84373 C 598.27488,780.90468 477.91917,518.69492 509.98979,338.57936 C 542.06041,158.46380 687.80573,33.599346 835.31418,59.864092 C 982.82264,86.128840 1076.5113,253.62592 1044.4407,433.74148 z " id="path3913" style="fill:url(#radialGradient5153);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 743.31087,789.20353 C 741.74700,797.81445 721.25371,800.06166 697.54272,794.22227 C 673.83173,788.38288 655.88585,776.66913 657.46375,768.06167 C 659.02762,759.45075 679.52091,757.20354 703.23191,763.04294 C 726.94289,768.88232 744.88877,780.59607 743.31087,789.20353 z " id="path3915" style="opacity:0.29999998;fill:url(#radialGradient5150);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 698.96028,779.91238 C 692.07787,780.99839 678.08039,789.96439 672.85272,795.29943 C 669.94437,798.26752 662.51777,796.46568 658.01135,796.77676 C 649.14579,797.38875 650.28641,805.59594 657.46818,808.58780 C 667.03391,812.57280 676.17811,816.39769 684.66544,822.10656 C 691.06668,826.41225 698.52298,828.97379 705.72386,831.97361 C 713.05679,835.02845 716.04105,830.55581 715.74731,826.30058 C 715.48002,822.42842 708.62181,814.91577 708.28668,810.06092 C 707.96859,805.45298 713.59046,792.40096 710.30550,786.82730 C 710.06372,786.41706 706.39792,778.73876 698.96028,779.91238 z " id="path3917" style="fill:url(#linearGradient5147);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 698.96028,779.91238 C 692.07787,780.99839 678.08039,789.96439 672.85272,795.29943 C 669.94437,798.26752 662.51777,796.46568 658.01135,796.77676 C 649.14579,797.38875 650.28641,805.59594 657.46818,808.58780 C 667.03391,812.57280 676.17811,816.39769 684.66544,822.10656 C 691.06668,826.41225 698.52298,828.97379 705.72386,831.97361 C 713.05679,835.02845 716.04105,830.55581 715.74731,826.30058 C 715.48002,822.42842 708.62181,814.91577 708.28668,810.06092 C 707.96859,805.45298 713.59046,792.40096 710.30550,786.82730 C 710.06372,786.41706 706.39792,778.73876 698.96028,779.91238 z " id="path3919" style="fill:url(#linearGradient5144);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 698.96028,779.91238 C 692.07787,780.99839 678.08039,789.96439 672.85272,795.29943 C 669.94437,798.26752 662.51777,796.46568 658.01135,796.77676 C 649.14579,797.38875 650.28641,805.59594 657.46818,808.58780 C 667.03391,812.57280 676.17811,816.39769 684.66544,822.10656 C 691.06668,826.41225 698.52298,828.97379 705.72386,831.97361 C 713.05679,835.02845 716.04105,830.55581 715.74731,826.30058 C 715.48002,822.42842 708.62181,814.91577 708.28668,810.06092 C 707.96859,805.45298 713.59046,792.40096 710.30550,786.82730 C 710.06372,786.41706 706.39792,778.73876 698.96028,779.91238 z " id="path3921" style="opacity:0.46759257;fill:url(#linearGradient5141);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 698.96028,779.91238 C 692.07787,780.99839 678.08039,789.96439 672.85272,795.29943 C 669.94437,798.26752 662.51777,796.46568 658.01135,796.77676 C 649.14579,797.38875 650.28641,805.59594 657.46818,808.58780 C 667.03391,812.57280 676.17811,816.39769 684.66544,822.10656 C 691.06668,826.41225 698.52298,828.97379 705.72386,831.97361 C 713.05679,835.02845 716.04105,830.55581 715.74731,826.30058 C 715.48002,822.42842 708.62181,814.91577 708.28668,810.06092 C 707.96859,805.45298 713.59046,792.40096 710.30550,786.82730 C 710.06372,786.41706 706.39792,778.73876 698.96028,779.91238 z " id="path3923" style="opacity:0.50925928;fill:url(#linearGradient5138);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 673.93796,803.20159 C 676.89201,804.90672 684.45495,807.25125 689.83086,808.15647 C 694.38087,808.92262 696.99795,809.71968 700.49024,808.43217 C 705.54345,806.56921 704.24055,809.42160 708.17734,813.68741 C 709.67916,817.70233 714.00075,818.36966 714.42857,825.06753 C 716.08808,828.70390 703.53188,820.52806 699.70651,818.93444 C 695.59685,817.22239 692.34072,815.03293 688.52607,813.44378 C 685.89441,812.34745 680.93012,809.14329 679.17147,807.88077 C 676.43473,805.91609 678.23464,806.00554 673.93796,803.20159 z " id="path3925" style="opacity:0.67592591;fill:url(#radialGradient5135);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 711.08174,794.23424 C 710.87468,798.96359 708.79322,802.71369 706.43266,802.61035 C 704.07209,802.50700 702.32633,798.58933 702.53337,793.86000 C 702.74043,789.13066 704.82189,785.38055 707.18246,785.48390 C 709.54302,785.58725 711.28878,789.50491 711.08174,794.23424 z " id="path3927" style="opacity:0.46759257;fill:url(#radialGradient5132);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 705.36485,794.05805 C 705.04176,794.01239 704.85396,793.65200 704.59852,793.44898 C 710.52628,797.50357 704.75928,793.35555 706.28992,792.46602 C 706.10408,792.16148 706.15987,792.51787 705.99093,792.58523 L 713.31900,785.42983 C 714.59988,787.28552 716.25688,788.67528 716.44555,791.13247 C 716.15811,803.94599 705.82730,809.23848 696.27382,799.35853 C 691.38699,788.76362 698.21367,780.74632 709.35060,784.49050 L 705.36485,794.05805 z " id="path3929" style="fill:url(#radialGradient5129);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 670.97827,891.47991 C 676.44378,929.07533 621.23459,906.43717 609.23513,938.79728 C 597.11159,971.49200 631.36579,969.45259 636.75695,1004.7859 L 633.36164,1016.4668 C 622.87538,970.97131 595.21523,970.61938 607.32372,938.75791 C 619.43222,906.89644 666.95239,914.23230 669.28525,897.60124 L 670.97827,891.47991 z " id="path3931" style="fill:url(#linearGradient5126);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 619.73757,1033.6696 C 606.05000,1042.3775 563.22514,1040.2731 569.31303,1026.0519 C 583.83459,992.12968 627.68869,1029.9169 617.21366,1058.2352 C 612.11723,1072.0129 578.31767,1057.1884 567.96078,1066.8685 L 570.24499,1058.6260 C 578.99926,1050.3504 610.06170,1064.8412 611.63121,1056.6606 C 617.00211,1028.6667 589.22784,1018.0614 576.04735,1021.9551 C 571.41489,1036.4165 609.98305,1036.1275 622.26858,1026.6187 L 619.73757,1033.6696 z " id="path3933" style="fill:url(#linearGradient5123);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 617.73757,1033.6696 C 604.05000,1042.3775 563.22514,1040.2731 569.31303,1026.0519 L 576.04735,1021.9551 C 571.41489,1036.4165 607.98305,1036.1275 620.26858,1026.6187 L 617.73757,1033.6696 z " id="path3935" style="fill:url(#linearGradient5120);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 705.36485,794.05805 C 705.04176,794.01239 704.85396,793.65200 704.59852,793.44898 C 710.52628,797.50357 704.75928,793.35555 706.28992,792.46602 C 706.10408,792.16148 706.15987,792.51787 705.99093,792.58523 L 713.31900,785.42983 C 714.59988,787.28552 716.25688,788.67528 716.44555,791.13247 C 716.15811,803.94599 705.82730,809.23848 696.27382,799.35853 C 691.38699,788.76362 698.21367,780.74632 709.35060,784.49050 L 705.36485,794.05805 z " id="path3937" style="fill:url(#linearGradient5117);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 716.52803,788.65498 C 698.99342,805.38966 703.98253,784.99124 695.81398,783.00839 C 684.06024,778.08491 663.72922,776.47651 653.45668,783.29730 C 639.37340,792.64836 630.30782,804.92691 629.86126,825.19497 C 629.41177,845.59575 649.24447,861.12365 666.24848,882.89908 L 664.99426,886.71863 C 653.62705,866.48551 623.60437,853.31475 622.52393,829.47573 C 621.42882,805.31343 628.88723,789.19908 654.47982,779.19288 C 667.89451,774.22641 682.33011,771.71040 695.98829,777.05391 L 716.52803,788.65498 z " id="path3939" style="fill:url(#linearGradient5114);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 716.52803,788.65498 C 698.99342,805.38966 703.98253,784.99124 695.81398,783.00839 C 684.06024,778.08491 682.33011,771.71040 695.98829,777.05391 L 716.52803,788.65498 z " id="path3941" style="opacity:0.63888890;fill:url(#radialGradient5111);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 446.34869,827.92149 L 517.72838,1167.7674 L 526.78506,1168.6632 L 454.27923,826.31405 L 446.34869,827.92149 z " id="path4759" style="fill:url(#linearGradient5058);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 586.15391,348.33413 C 643.36563,522.10695 562.21436,792.37697 458.78771,829.43640 C 358.07489,865.60234 127.73534,691.86919 70.523662,518.09638 C 13.311987,344.32357 82.380498,165.26381 224.69446,118.40943 C 367.00843,71.555047 528.94228,174.56132 586.15391,348.33413 z " id="path4761" style="opacity:0.75000000;fill:url(#radialGradient5055);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 586.15394,348.33413 C 643.36561,522.10695 562.21438,792.37697 458.78771,829.43640 C 358.07489,865.60234 127.73533,691.86919 70.523659,518.09638 C 13.311987,344.32357 82.380502,165.26381 224.69446,118.40943 C 367.00843,71.555047 528.94227,174.56132 586.15394,348.33413 z " id="path4763" style="fill:url(#radialGradient5052);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 782.11478 437.22321 A 131.06870 247.09671 0 1 1 519.97739,437.22321 A 131.06870 247.09671 0 1 1 782.11478 437.22321 z" id="path5074" style="opacity:0.14999999;fill:url(#radialGradient5082);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(1.220246,0.000000,0.000000,1.000000,-135.7938,0.000000)"/>
<path d="M 179.31902,172.45262 C 167.23409,173.78391 144.94810,195.74665 136.72423,207.53227 C 119.81473,231.76527 109.78051,248.05994 101.24394,273.35769 C 88.138310,312.19557 109.68014,311.79335 135.53026,286.13358 C 155.27934,266.52991 126.27405,322.83797 124.50795,334.88261 C 121.55838,354.99842 102.82241,368.95587 94.522119,380.85101 C 85.864219,393.25865 90.612400,414.61966 71.750945,430.46014 C 51.169047,447.74549 92.232146,451.84545 104.18353,455.87838 C 123.27986,462.32233 98.101325,503.24991 133.93565,473.15509 C 155.06631,455.40888 147.48718,440.09762 165.57490,468.75443 C 171.54023,478.20546 209.23683,427.07564 210.91692,423.74629 C 212.87974,419.85663 201.42779,367.51502 200.29525,364.07511 C 200.27227,364.00527 211.39076,343.74798 227.46708,346.10524 C 252.40357,349.76167 246.98154,373.06066 266.32099,345.34531 C 276.14678,331.26395 297.02654,392.92719 297.75992,395.15475 C 308.27738,427.10013 345.82283,385.46412 360.11155,392.67461 C 375.37344,400.37618 373.05731,430.88892 390.65699,439.77022 C 404.54118,446.77656 430.70319,405.25659 434.17865,398.36940 C 445.55177,375.83175 432.52795,374.90673 472.13908,394.89561 C 500.03893,408.97464 491.25711,360.85401 529.98990,387.88128 C 553.56150,404.32927 534.73151,367.23146 533.73078,353.56157 C 532.04205,330.49367 516.16429,297.84068 505.99933,278.46743 C 500.24692,267.50396 551.75513,290.10177 543.03289,281.31482 C 527.12363,265.28754 507.30600,252.57784 492.59705,237.75977 C 473.53991,218.56126 464.84731,205.47965 450.33613,182.48925 C 437.79880,162.62606 441.90097,157.86595 424.25813,148.96287 C 405.62888,139.56204 392.55864,170.14566 379.08303,148.79593 C 369.70976,133.94563 342.33784,161.93482 326.65990,154.02330 C 322.24498,151.79540 306.84044,123.17444 303.29573,119.60343 C 295.49389,111.74371 261.32110,127.40683 249.94574,131.15197 C 246.32727,132.34328 242.70882,133.53460 239.09035,134.72591 C 226.63975,138.82506 210.96144,140.97885 197.48921,145.41435 C 196.50925,145.73698 186.94193,166.05066 179.31902,172.45262 z " id="path4765" style="opacity:0.60000002;fill:url(#linearGradient5049);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 354.42542,220.08262 C 361.33386,241.06608 349.92380,263.67692 328.94033,270.58535 C 307.95687,277.49379 285.34604,266.08372 278.43760,245.10027 C 271.52918,224.11680 282.93924,201.50597 303.92269,194.59753 C 324.90615,187.68910 347.51700,199.09917 354.42542,220.08262 z " id="path4767" style="fill:url(#radialGradient5046);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 424.98529,196.85222 C 444.72362,256.80485 412.12348,321.40715 352.17084,341.14548 C 292.21821,360.88381 227.61592,328.28367 207.87759,268.33103 C 188.13926,208.37840 220.73939,143.77611 280.69203,124.03778 C 340.64466,104.29945 405.24695,136.89959 424.98529,196.85222 z " id="path4769" style="opacity:0.60000002;fill:url(#radialGradient5043);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 224.70128,118.41600 C 82.387318,165.27038 13.303327,344.31178 70.514983,518.08459 C 127.72665,691.85742 358.07888,865.60048 458.79170,829.43458 C 562.21837,792.37515 643.37396,522.08958 586.16226,348.31675 C 528.95059,174.54393 367.01524,71.561619 224.70128,118.41600 z M 220.01525,124.26870 C 225.03001,122.15598 230.75989,120.75388 237.35349,120.27119 C 256.67672,118.85660 272.49007,143.40813 277.90501,143.01171 C 298.33659,141.51598 306.55385,120.73768 321.37412,119.65275 C 339.91093,118.29573 343.32455,126.22484 355.65754,132.44839 C 367.11194,138.22861 381.83430,150.16264 397.12804,157.88027 C 409.65545,164.20195 432.06608,178.51233 446.74134,180.66415 C 460.51827,182.68427 479.37920,188.46161 483.70244,201.59286 C 492.83726,229.33864 471.44989,224.29791 472.69516,241.30821 C 474.40609,264.67934 515.78220,253.36301 524.96268,281.24750 C 534.45410,310.07646 498.40556,325.43114 507.61071,329.07244 C 507.79661,329.14598 585.56609,383.12058 544.45806,386.12999 C 521.44480,387.81472 473.58646,358.53211 469.45001,386.74221 C 467.94684,396.99369 449.81777,450.42144 429.53419,429.98739 C 386.09814,386.22912 413.26582,439.49221 361.72297,443.26551 C 344.74811,444.50819 345.15257,425.77870 343.78226,407.06007 C 338.06413,328.95114 288.30338,401.07260 285.17004,375.23037 C 275.71660,297.26302 290.70695,364.48195 263.63890,337.21310 C 247.33233,320.78555 234.49728,303.16592 209.49273,318.94838 C 170.93793,343.28357 206.04860,348.91500 210.20146,375.86250 C 214.06297,400.91937 180.76770,400.62514 196.49306,416.46715 C 201.77266,421.78594 232.50778,466.32270 223.44244,461.74809 C 219.83511,459.92773 216.19960,458.09317 212.59227,456.27279 C 173.70419,436.64879 180.07364,503.36613 147.54511,459.65918 C 122.25658,425.68030 128.72023,482.49985 101.29827,501.96192 C 93.507883,536.41697 86.973075,513.21248 81.455437,496.45339 C 76.470287,481.31165 78.120901,468.03802 72.590200,451.23928 C 63.568177,423.83608 86.193432,428.74570 97.132776,407.06766 C 103.49802,394.45395 130.18540,373.16967 102.70813,369.14068 C 88.276630,367.02459 66.031741,379.36955 81.946313,360.94081 C 92.177970,349.09277 136.40153,304.86320 112.04078,287.86455 C 98.323241,278.29262 58.488837,251.34205 98.656375,238.11759 C 134.50948,226.31358 143.51800,224.54137 141.28311,194.01281 C 139.46324,169.15358 178.09199,179.38875 189.31830,157.14200 C 196.26536,143.37530 204.97098,130.60686 220.01525,124.26870 z " id="path4771" style="opacity:0.40000001;fill:url(#linearGradient5040);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 442.63526,489.20015 C 523.66560,589.06479 532.23726,716.36541 461.78061,773.53405 C 391.32397,830.70269 268.51950,796.09075 187.48917,696.22611 C 106.45883,596.36148 97.887163,469.06085 168.34381,411.89221 C 238.80046,354.72357 361.60492,389.33550 442.63526,489.20015 L 442.63526,489.20015 z " id="path4773" style="opacity:0.52999997;fill:url(#radialGradient5037);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 440.59926,592.03528 C 485.99530,647.98296 488.75609,720.95756 446.76564,755.02860 C 404.77519,789.09964 333.93444,771.36512 288.53838,715.41744 C 243.14234,659.46976 240.38154,586.49516 282.37200,552.42412 C 324.36245,518.35308 395.20320,536.08760 440.59926,592.03528 L 440.59926,592.03528 z " id="path4775" style="opacity:0.29999998;fill:url(#radialGradient5034);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 288.66528,744.38745 C 268.00960,722.06779 221.37402,684.09667 194.45216,652.04046 C 179.20604,633.88670 166.27842,603.98964 190.80307,602.19426 C 227.98422,599.47235 229.52386,658.20716 221.50671,592.08563 C 220.99210,587.84148 254.80609,633.91057 276.45443,591.01091 C 293.64506,556.94497 308.83903,637.69141 314.55068,655.03979 C 316.77244,661.78807 351.56050,664.13255 364.39689,651.39070 C 396.66965,619.35556 374.71121,684.90412 375.72188,698.70973 C 378.18048,732.29408 444.38919,650.03771 447.47387,645.30888 C 476.20056,601.27073 497.00354,629.60316 515.38790,593.17161 C 534.68883,554.92374 557.04585,523.30363 571.97694,493.71530 C 583.80589,470.27436 545.97741,464.92961 577.26734,445.17991 C 600.95847,430.22644 603.48748,488.34960 598.79541,497.64769 C 587.35402,520.32063 561.78689,515.58923 564.11217,547.35223 C 565.56686,567.22317 566.54774,580.59168 574.12637,603.61076 C 580.89565,624.17152 559.05819,658.83851 550.86256,675.07946 C 539.26197,698.06785 550.39571,705.50491 523.85522,722.25684 C 505.65109,733.74700 507.16856,774.46624 489.17198,771.96138 C 476.62554,784.41544 455.83728,802.50452 446.86005,811.41564 C 430.07017,828.08189 406.19441,799.28030 377.87130,808.60519 C 356.49168,815.64405 331.32492,803.71729 317.86926,794.32809 C 304.90836,785.28413 293.49240,759.04920 288.66528,744.38745 z " id="path4777" style="opacity:0.099999972;fill:url(#linearGradient5031);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 586.15394,348.33413 C 643.36561,522.10695 562.21438,792.37697 458.78771,829.43640 C 358.07489,865.60234 127.73533,691.86919 70.523659,518.09638 C 13.311987,344.32357 82.380502,165.26381 224.69446,118.40943 C 367.00843,71.555047 528.94227,174.56132 586.15394,348.33413 z " id="path4779" style="fill:url(#radialGradient5028);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 489.68956,804.10514 C 492.39774,812.42736 475.42317,824.12732 451.77984,830.23492 C 428.13651,836.34252 406.78160,834.54394 404.08741,826.21810 C 401.37923,817.89588 418.35380,806.19593 441.99713,800.08833 C 465.64047,793.98072 486.99537,795.77930 489.68956,804.10514 z " id="path4781" style="opacity:0.29999998;fill:url(#radialGradient5025);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 446.23935,816.96521 C 440.69583,821.18614 432.62693,835.71927 430.55577,842.89573 C 429.40351,846.88827 422.01097,848.82514 418.19146,851.23676 C 410.67727,855.98119 415.57474,862.66504 423.31628,861.89191 C 433.62759,860.86215 443.49186,859.89140 453.67161,860.89076 C 461.34929,861.64448 469.12836,860.36231 476.89049,859.58712 C 484.79497,858.79772 485.30033,853.44469 483.02312,849.83808 C 480.95093,846.55615 471.34964,843.19605 468.75155,839.08121 C 466.28560,835.17566 465.04296,821.01880 459.50709,817.67054 C 459.09963,817.42410 452.23010,812.40375 446.23935,816.96521 z " id="path4783" style="fill:url(#linearGradient5022);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 446.23935,816.96521 C 440.69583,821.18614 432.62693,835.71927 430.55577,842.89573 C 429.40351,846.88827 422.01097,848.82514 418.19146,851.23676 C 410.67727,855.98119 415.57474,862.66504 423.31628,861.89191 C 433.62759,860.86215 443.49186,859.89140 453.67161,860.89076 C 461.34929,861.64448 469.12836,860.36231 476.89049,859.58712 C 484.79497,858.79772 485.30033,853.44469 483.02312,849.83808 C 480.95093,846.55615 471.34964,843.19605 468.75155,839.08121 C 466.28560,835.17566 465.04296,821.01880 459.50709,817.67054 C 459.09963,817.42410 452.23010,812.40375 446.23935,816.96521 z " id="path4785" style="fill:url(#linearGradient5019);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 446.23935,816.96521 C 440.69583,821.18614 432.62693,835.71927 430.55577,842.89573 C 429.40351,846.88827 422.01097,848.82514 418.19146,851.23676 C 410.67727,855.98119 415.57474,862.66504 423.31628,861.89191 C 433.62759,860.86215 443.49186,859.89140 453.67161,860.89076 C 461.34929,861.64448 469.12836,860.36231 476.89049,859.58712 C 484.79497,858.79772 485.30033,853.44469 483.02312,849.83808 C 480.95093,846.55615 471.34964,843.19605 468.75155,839.08121 C 466.28560,835.17566 465.04296,821.01880 459.50709,817.67054 C 459.09963,817.42410 452.23010,812.40375 446.23935,816.96521 z " id="path4787" style="opacity:0.46759257;fill:url(#linearGradient5016);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 446.23935,816.96521 C 440.69583,821.18614 432.62693,835.71927 430.55577,842.89573 C 429.40351,846.88827 422.01097,848.82514 418.19146,851.23676 C 410.67727,855.98119 415.57474,862.66504 423.31628,861.89191 C 433.62759,860.86215 443.49186,859.89140 453.67161,860.89076 C 461.34929,861.64448 469.12836,860.36231 476.89049,859.58712 C 484.79497,858.79772 485.30033,853.44469 483.02312,849.83808 C 480.95093,846.55615 471.34964,843.19605 468.75155,839.08121 C 466.28560,835.17566 465.04296,821.01880 459.50709,817.67054 C 459.09963,817.42410 452.23010,812.40375 446.23935,816.96521 z " id="path4789" style="opacity:0.50925928;fill:url(#linearGradient5013);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 435.25979,849.33733 C 438.66918,849.43703 446.43918,847.91322 451.60111,846.15985 C 455.97003,844.67585 458.65200,844.13601 461.11555,841.34590 C 464.68023,837.30875 464.88638,840.43783 470.37565,842.32555 C 473.60234,845.14752 477.72329,843.68489 481.27727,849.37819 C 484.46321,851.79211 469.53126,850.55123 465.40773,850.96304 C 460.97775,851.40545 457.07268,851.02268 452.96071,851.43333 C 450.12393,851.71664 444.23377,851.25093 442.08668,850.97380 C 438.74546,850.54252 440.37238,849.76741 435.25979,849.33733 z " id="path4791" style="opacity:0.67592591;fill:url(#radialGradient5010);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 443.70416,823.82277 C 445.76542,828.08432 445.71205,832.37302 443.58499,833.40186 C 441.45791,834.43070 438.06260,831.81007 436.00135,827.54853 C 433.94010,823.28698 433.99345,818.99828 436.12053,817.96944 C 438.24760,816.94061 441.64291,819.56123 443.70416,823.82277 z " id="path4793" style="opacity:0.46759257;fill:url(#radialGradient5007);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
<path d="M 438.58790,826.37967 C 438.28182,826.49274 437.94553,826.26457 437.62435,826.20702 C 444.76610,826.96431 437.72155,826.04852 438.64702,824.53933 C 438.33895,824.35941 438.55713,824.64668 438.44037,824.78611 L 441.49699,815.01076 C 443.50488,816.03673 445.62285,816.47411 446.95459,818.54772 C 452.78009,829.96405 446.19636,839.52390 433.09937,835.35842 C 423.77135,828.34977 425.97771,818.05352 437.55794,816.06640 L 438.58790,826.37967 z " id="path4795" style="fill:url(#radialGradient5004);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 464.55418,908.06269 C 455.11379,944.86169 514.42090,946.23527 522.90389,979.68977 C 531.47458,1013.4901 494.39240,981.81240 485.26694,1016.3700 L 487.39825,1028.3462 C 502.67261,984.22710 533.45315,1012.8246 524.80862,979.85432 C 516.16407,946.88398 466.13275,931.11453 465.58531,914.32957 L 464.55418,908.06269 z " id="path4797" style="fill:url(#linearGradient5001);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<g id="g5066" transform="matrix(-0.996009,8.924813e-2,8.924813e-2,0.996009,894.7740,-68.92501)">
<path d="M 491.88862,1079.1723 C 483.97008,1093.3312 450.26033,1110.5562 448.87327,1095.1489 C 445.56470,1058.3978 502.09595,1070.8589 506.30833,1100.7572 C 508.35778,1115.3036 471.57091,1118.2873 467.04562,1131.7220 L 465.14638,1123.3825 C 468.92707,1111.9444 503.14614,1109.9654 500.64707,1102.0193 C 492.09527,1074.8278 462.61408,1078.6675 452.85815,1088.3478 C 455.64038,1103.2760 486.45952,1085.7849 492.76389,1071.5860 L 491.88862,1079.1723 z " id="path4799" style="fill:url(#linearGradient5070);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 489.61871,1079.3757 C 481.70017,1093.5346 450.26033,1110.5562 448.87327,1095.1489 L 452.85815,1088.3478 C 455.64038,1103.2760 484.18961,1085.9883 490.49398,1071.7894 L 489.61871,1079.3757 z " id="path4801" style="fill:url(#linearGradient5072);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
</g>
<path d="M 438.58790,826.37967 C 438.28182,826.49274 437.94553,826.26457 437.62435,826.20702 C 444.76610,826.96431 437.72155,826.04852 438.64702,824.53933 C 438.33895,824.35941 438.55713,824.64668 438.44037,824.78611 L 441.49699,815.01076 C 443.50488,816.03673 445.62285,816.47411 446.95459,818.54772 C 452.78009,829.96405 446.19636,839.52390 433.09937,835.35842 C 423.77135,828.34977 425.97771,818.05352 437.55794,816.06640 L 438.58790,826.37967 z " id="path4803" style="fill:url(#linearGradient4992);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 430.14119,819.05861 C 446.21618,837.19992 442.94895,816.45594 451.25461,815.16256 C 463.37865,811.23841 483.77297,811.33442 493.43968,818.98970 C 506.69236,829.48482 514.70028,842.47793 513.45175,862.71243 C 512.19505,883.07943 487.13424,876.89589 468.37019,897.17437 L 469.30087,901.08536 C 482.31896,881.87280 517.33716,891.25670 520.40574,867.59131 C 523.51594,843.60500 517.43008,826.92379 492.76306,814.81415 C 479.81026,808.74415 465.63537,805.03075 451.57846,809.21434 L 430.14119,819.05861 z " id="path4805" style="fill:url(#linearGradient4989);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 445.85191,816.32761 C 438.35456,839.37760 433.06986,819.05374 424.93831,821.18323 C 412.25566,822.42480 407.70862,817.63395 422.26704,815.85871 L 445.85191,816.32761 z " id="path4807" style="opacity:0.63888890;fill:url(#radialGradient4986);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 584.43742 473.75055 A 96.690018 257.84003 0 1 1 391.05739,473.75055 A 96.690018 257.84003 0 1 1 584.43742 473.75055 z" id="path5084" style="opacity:0.14999999;fill:url(#linearGradient5092);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.62500000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.985879,-0.161810,0.167460,0.952615,-68.14934,66.99263)"/>
<path d="M 653.71472,683.68030 C 651.41398,686.94397 651.87032,689.73516 653.55049,695.28408 C 654.48524,698.37116 649.74252,699.86877 647.93204,701.73347 C 644.37027,705.40192 651.12590,710.56995 656.66185,709.97216 C 664.03542,709.17593 671.09584,708.42534 679.28974,709.19806 C 685.46967,709.78084 690.80325,708.78945 696.35393,708.19007 C 702.00638,707.57969 699.96265,703.44067 696.59520,700.65199 C 693.53092,698.11436 684.70610,695.51629 680.86414,692.33465 C 677.21758,689.31483 669.85147,682.36858 664.12334,679.77967 C 664.77606,683.88645 656.20108,680.15332 653.71472,683.68030 z " id="path5094" style="opacity:0.14999999;fill:url(#linearGradient5096);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 650.41186,689.82131 C 644.29881,705.77687 654.44959,736.83152 662.41674,755.58237 C 669.73580,770.80892 678.35641,785.45865 690.00409,797.76550 L 683.23246,803.86636 C 671.57071,790.33859 662.64716,774.84854 655.00053,758.73929 C 647.75693,741.75282 622.82463,688.97375 651.73398,680.00509 L 650.41186,689.82131 z " id="path5100" style="opacity:0.099999972;fill:url(#linearGradient5195);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 527.98240,684.21651 C 525.69006,686.04237 522.91138,693.06067 522.42733,696.65337 C 522.15804,698.65213 518.85554,699.16796 517.24308,700.16785 C 514.07083,702.13493 516.78858,705.93436 520.33047,706.04661 C 525.04808,706.19611 529.56212,706.34660 534.35362,707.54209 C 537.96742,708.44374 541.49289,708.29387 545.04420,708.40641 C 548.66064,708.52102 548.53918,705.77213 547.24233,703.74623 C 546.06221,701.90271 541.38219,699.51855 539.90259,697.20718 C 538.49824,695.01335 536.97989,687.57225 534.18766,685.46424 C 533.98215,685.30908 530.45969,682.24336 527.98240,684.21651 z " id="path5185" style="opacity:0.14999999;fill:url(#linearGradient5187);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
<path d="M 520.39741,692.48345 C 505.48988,700.83299 493.41867,731.19275 487.54255,750.70021 C 483.42359,767.08468 480.67392,783.85873 481.74963,800.76938 L 472.64198,801.12453 C 472.33671,783.26665 475.39130,765.65299 479.82337,748.38060 C 485.12650,730.69199 499.74001,674.17920 527.69477,685.78608 L 520.39741,692.48345 z " id="path5191" style="opacity:0.14999999;fill:url(#linearGradient5193);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"/>
</svg>

After

Width:  |  Height:  |  Size: 132 KiB

View file

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="170.08679"
id="svg1"
version="1.0"
width="241.15919"
x="0.0000000"
y="0.0000000"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="open_bible_01_02.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<sodipodi:namedview
inkscape:window-height="719"
inkscape:window-width="693"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="false"
inkscape:zoom="0.46942014"
inkscape:cx="290.14918"
inkscape:cy="241.05876"
inkscape:window-x="50"
inkscape:window-y="40"
inkscape:current-layer="svg1" />
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>open bible 01</dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>hash</rdf:li>
<rdf:li />
<rdf:li>christianity</rdf:li>
<rdf:li>religion</rdf:li>
<rdf:li>education</rdf:li>
<rdf:li>book</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org">
<dc:title>Aaron Johnson</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Aaron Johnson</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Aaron Johnson</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs3">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective12" />
</defs>
<g
id="layer1"
transform="translate(-106.41824,-552.93102)" />
<g
id="g4874"
transform="translate(-106.41824,-552.93102)">
<path
d="M 108.91824,624.83263 L 172.02974,720.51781 C 192.38829,692.01584 239.21297,673.69314 265.67909,679.8007 C 298.25277,657.4063 334.89815,661.478 345.07743,669.62143 L 271.78665,573.93624 C 271.78665,573.93624 220.89027,559.68526 200.53172,590.22309 C 163.88633,573.93624 119.09751,600.40236 108.91824,624.83263 z"
id="path2354"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="M 116.72056,612.20892 L 171.68864,695.67897 C 194.08305,654.96187 238.87186,636.63917 261.26627,663.10529 C 295.87581,614.24477 336.5929,663.10529 340.66461,663.10529 L 267.37384,563.3484 C 267.37384,563.3484 218.51331,540.95399 198.15476,571.49182 C 177.79621,555.20497 128.93568,575.56352 116.72056,612.20892 z"
id="path2356"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="M 199.51379,571.9004 L 262.6253,657.40631 C 270.76872,669.62144 254.48188,692.01585 289.09142,706.26683"
id="path3599"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -0,0 +1,150 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="440px" height="370px" viewBox="0 0 440 370" enable-background="new 0 0 440 370" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" stroke="#CCCCCC" stroke-width="15.4772" d="M266.018,314.156c0,0-30.965,16.684-78.454,33.213
c-28.683,10-79.628-6.867-106.152-13.891c-26.563-7.049-72.459-21.629-59.724-34.364c12.736-12.732,49.354-39.888,49.354-39.888
S36.177,316.799,266.018,314.156z"/>
<g>
<path fill="#FFFFFF" stroke="#CCCCCC" stroke-width="15.4772" d="M54.069,272.286c0,24.282,72.646,43.974,162.273,43.974
c89.617,0,162.249-19.689,162.249-43.974c-18.691-13.548-15.986-24.954-15.986-24.954H69.299
C69.309,247.332,71.904,258.738,54.069,272.286z"/>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M344.759,160.41c-3.628-8.278-17.685-36.869-46.261-56.996c-51.803-36.532-116.039-29.563-153.81-7.634
c-25.523,14.848-43.106,33.982-57.037,62.074c-3.4,6.862-9.738,21.504-14.082,42.451c-3.759,18.168-4.121,29.625-4.726,48.653
c0.03,15.899,30.204,30.239,82.196,37.222c72.762,9.744,160.702,1.28,196.393-18.902c10.213-5.772,15.034-11.914,15.014-17.896
C361.693,224.797,360.784,196.945,344.759,160.41z"/>
</g>
<g>
<path fill="none" stroke="#CCCCCC" stroke-width="15.4772" d="M344.759,160.41c-3.628-8.278-17.685-36.869-46.261-56.996
c-51.803-36.532-116.039-29.563-153.81-7.634c-25.523,14.848-43.106,33.982-57.037,62.074
c-3.4,6.862-9.738,21.504-14.082,42.451c-3.759,18.168-4.121,29.625-4.726,48.653c0.03,15.899,30.204,30.239,82.196,37.222
c72.762,9.744,160.702,1.28,196.393-18.902c10.213-5.772,15.034-11.914,15.014-17.896
C361.693,224.797,360.784,196.945,344.759,160.41z"/>
</g>
</g>
</g>
<g>
<path fill="#FFD520" stroke="#000000" stroke-width="5.1591" d="M267.237,313.428c0,0-30.974,16.656-78.453,33.211
c-28.673,9.98-79.612-6.867-106.139-13.916c-26.562-7.023-72.464-21.604-59.728-34.365c12.735-12.73,49.334-39.871,49.334-39.871
S37.402,316.063,267.237,313.428z"/>
<g>
<path stroke="#000000" stroke-width="5.1591" d="M55.292,271.555c0,24.284,72.624,43.959,162.259,43.959
c89.613,0,162.264-19.67,162.264-43.959c-18.702-13.548-15.979-24.953-15.979-24.953H70.512
C70.523,246.602,73.113,258.008,55.292,271.555z"/>
</g>
<g>
<g>
<path fill="#FFD520" d="M345.992,159.669c-3.628-8.272-17.692-36.851-46.26-56.997c-51.798-36.531-116.034-29.554-153.81-7.628
c-25.539,14.849-43.112,33.981-57.032,62.05c-3.406,6.862-9.759,21.504-14.082,42.462c-3.748,18.156-4.115,29.623-4.729,48.627
c0.021,15.9,30.219,30.264,82.218,37.223c72.76,9.769,160.69,1.279,196.371-18.903c10.213-5.772,15.044-11.892,15.022-17.896
C362.91,224.061,361.998,196.205,345.992,159.669z"/>
</g>
<g>
<path fill="none" stroke="#000000" stroke-width="5.1591" d="M345.992,159.669c-3.628-8.272-17.692-36.851-46.26-56.997
c-51.798-36.531-116.034-29.554-153.81-7.628c-25.539,14.849-43.112,33.981-57.032,62.05
c-3.406,6.862-9.759,21.504-14.082,42.462c-3.748,18.156-4.115,29.623-4.729,48.627c0.021,15.9,30.219,30.264,82.218,37.223
c72.76,9.769,160.69,1.279,196.371-18.903c10.213-5.772,15.044-11.892,15.022-17.896
C362.91,224.061,361.998,196.205,345.992,159.669z"/>
</g>
</g>
<g>
<g>
<radialGradient id="SVGID_1_" cx="-464.9202" cy="873.1895" r="255.5941" gradientTransform="matrix(1 0 0 1 614.4004 -728.4014)" gradientUnits="userSpaceOnUse">
<stop offset="0.5" style="stop-color:#FED51F"/>
<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<path fill="url(#SVGID_1_)" d="M345.992,159.669c-3.628-8.272-17.692-36.851-46.26-56.997
c-51.798-36.531-116.034-29.554-153.81-7.628c-25.539,14.849-43.112,33.981-57.032,62.05
c-3.406,6.862-9.759,21.504-14.082,42.462c-3.748,18.156-4.115,29.623-4.729,48.627c0.021,15.9,30.219,30.264,82.218,37.223
c72.76,9.769,160.69,1.279,196.371-18.903c10.213-5.772,15.044-11.892,15.022-17.896
C362.91,224.061,361.998,196.205,345.992,159.669z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path fill="#CCCCCC" d="M292.967,97.194C183.995,27.707,73.4,170.418,76.861,262.057l-10.137,4.09
C66.729,166.256,174.974,19.021,292.967,97.194"/>
</g>
<polygon fill="#CCCCCC" points="76.865,262.057 61.197,281.15 66.729,266.146 "/>
</g>
<path stroke="#000000" stroke-width="5.1591" stroke-linecap="round" stroke-linejoin="round" d="M109.11,280.45L109.11,280.45
c-0.005-90.409,53.949-231.274,151.653-199.293C155.99,45.698,66.749,175.416,66.749,266.127l-5.532,15.003l42.381,14.294
L109.11,280.45L109.11,280.45z"/>
<g>
<g>
<path fill="#CCCCCC" d="M109.105,280.45L109.105,280.45L109.105,280.45l-5.526,15.004l24.849-17.417
c-3.478-91.662,55.564-250.325,164.546-180.864C174.974,19.021,109.105,180.544,109.105,280.45z"/>
</g>
<g>
<path fill="none" stroke="#000000" stroke-width="5.1591" stroke-linecap="round" stroke-linejoin="round" d="M109.105,280.45
L109.105,280.45L109.105,280.45l-5.526,15.004l24.849-17.417c-3.478-91.662,55.564-250.325,164.546-180.864
C174.974,19.021,109.105,180.544,109.105,280.45z"/>
</g>
</g>
</g>
</g>
<g>
<polygon fill="#999999" stroke="#000000" stroke-width="5.1591" stroke-linecap="round" stroke-linejoin="round" points="
267.237,277.314 253.029,251.639 254.677,222.574 265.489,233.406 "/>
<polygon points="329.726,266.975 320.698,241.305 322.323,217.4 327.99,223.074 "/>
<path stroke="#000000" stroke-width="5.1591" stroke-linecap="round" stroke-linejoin="round" d="M267.237,277.314
c0,0,59.485-7.377,62.469-10.358c2.992-2.957-1.732-43.901-1.732-43.901l-62.493,10.332L267.237,277.314z"/>
<polygon fill="#CCCCCC" stroke="#000000" stroke-width="5.1591" stroke-linecap="round" stroke-linejoin="round" points="
254.677,222.574 265.489,233.406 327.99,223.074 317.164,212.242 "/>
</g>
<g>
<g>
<g>
<path fill="none" stroke="#CCCCCC" stroke-width="15.4772" stroke-linecap="round" stroke-linejoin="round" d="M419.5,76.856
V46.465c0-12.786-12.827-23.619-24.92-27.841v30.33c0,15.301-11.558,27.71-25.806,27.71c-14.257,0-25.795-12.409-25.795-27.71
V18.541c-12.213,4.146-25.181,15.059-25.181,27.916v30.39c0,12.934,11.936,23.907,25.04,27.987v118.612
c-14.692,8.832-24.558,24.885-24.558,43.271c0,27.896,22.611,50.527,50.514,50.527c27.899,0,50.521-22.631,50.521-50.527
c0-18.535-10.02-34.691-24.907-43.482V104.833C407.53,100.768,419.5,89.794,419.5,76.856z M392.888,280.634l-24.072,13.896
l-24.062-13.896v-27.795l24.062-13.896l24.072,13.896V280.634z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M419.5,76.856V46.465c0-12.786-12.827-23.619-24.92-27.841v30.33c0,15.301-11.558,27.71-25.806,27.71
c-14.257,0-25.795-12.409-25.795-27.71V18.541c-12.213,4.146-25.181,15.059-25.181,27.916v30.39
c0,12.934,11.936,23.907,25.04,27.987v118.612c-14.692,8.832-24.558,24.885-24.558,43.271c0,27.896,22.611,50.527,50.514,50.527
c27.899,0,50.521-22.631,50.521-50.527c0-18.535-10.02-34.691-24.907-43.482V104.833C407.53,100.768,419.5,89.794,419.5,76.856z
M392.888,280.634l-24.072,13.896l-24.062-13.896v-27.795l24.062-13.896l24.072,13.896V280.634z"/>
</g>
<g>
<path fill="none" stroke="#000000" stroke-width="5.1591" d="M419.5,76.856V46.465c0-12.786-12.827-23.619-24.92-27.841v30.33
c0,15.301-11.558,27.71-25.806,27.71c-14.257,0-25.795-12.409-25.795-27.71V18.541c-12.213,4.146-25.181,15.059-25.181,27.916
v30.39c0,12.934,11.936,23.907,25.04,27.987v118.612c-14.692,8.832-24.558,24.885-24.558,43.271
c0,27.896,22.611,50.527,50.514,50.527c27.899,0,50.521-22.631,50.521-50.527c0-18.535-10.02-34.691-24.907-43.482V104.833
C407.53,100.768,419.5,89.794,419.5,76.856z M392.888,280.634l-24.072,13.896l-24.062-13.896v-27.795l24.062-13.896
l24.072,13.896V280.634z"/>
</g>
</g>
<g opacity="0.15">
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-229.822" y1="896.2939" x2="-290.0098" y2="896.2939" gradientTransform="matrix(1 0 0 1 614.4004 -728.4014)">
<stop offset="0.3187" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M419.5,76.856V46.465c0-12.786-12.827-23.619-24.92-27.841v30.33
c0,15.301-11.558,27.71-25.806,27.71c-14.257,0-25.795-12.409-25.795-27.71V18.541c-12.213,4.146-25.181,15.059-25.181,27.916
v30.39c0,12.934,11.936,23.907,25.04,27.987v118.612c-14.692,8.832-24.558,24.885-24.558,43.271
c0,27.896,22.611,50.527,50.514,50.527c27.899,0,50.521-22.631,50.521-50.527c0-18.535-10.02-34.691-24.907-43.482V104.833
C407.53,100.768,419.5,89.794,419.5,76.856z M392.888,280.634l-24.072,13.896l-24.062-13.896v-27.795l24.062-13.896
l24.072,13.896V280.634z"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 260 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 64 KiB

View file

@ -0,0 +1,584 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="405.03595"
height="295.42911"
id="svg3570"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="diary.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata95">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title>Sheikh Tuhin</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<sodipodi:namedview
inkscape:window-height="480"
inkscape:window-width="640"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="false" />
<defs
id="defs3572">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 147.71455 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="405.03595 : 147.71455 : 1"
inkscape:persp3d-origin="202.51797 : 98.476369 : 1"
id="perspective97" />
<linearGradient
id="linearGradient4917">
<stop
id="stop4919"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop4921"
style="stop-color:#f2f2f2;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4893">
<stop
id="stop4895"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop4897"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4909">
<stop
id="stop4911"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop4913"
style="stop-color:#cccccc;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4931">
<stop
id="stop4933"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop4935"
style="stop-color:#cccccc;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="806.42859"
y1="146.64789"
x2="848.66376"
y2="148.45744"
id="linearGradient4824"
xlink:href="#linearGradient3939"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,154)" />
<linearGradient
x1="806.42859"
y1="146.64789"
x2="848.66376"
y2="148.45744"
id="linearGradient4822"
xlink:href="#linearGradient3939"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,70)" />
<linearGradient
id="linearGradient3939">
<stop
id="stop3941"
style="stop-color:#b3b3b3;stop-opacity:1"
offset="0" />
<stop
id="stop3947"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop3943"
style="stop-color:#808080;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="806.42859"
y1="146.64789"
x2="848.66376"
y2="148.45744"
id="linearGradient4820"
xlink:href="#linearGradient3939"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient4758">
<stop
id="stop4760"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop4762"
style="stop-color:#918a6f;stop-opacity:0"
offset="1" />
</linearGradient>
<radialGradient
cx="841.56232"
cy="-55.67453"
r="181.35938"
fx="841.56232"
fy="-55.67453"
id="radialGradient4764"
xlink:href="#linearGradient4758"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7487689e-2,1.0810973,-1.5543374,3.9520171e-2,716.40852,-952.26674)" />
<linearGradient
id="linearGradient4498">
<stop
id="stop4500"
style="stop-color:#c83737;stop-opacity:1"
offset="0" />
<stop
id="stop4502"
style="stop-color:#501616;stop-opacity:1"
offset="1" />
</linearGradient>
<radialGradient
cx="-288.27811"
cy="1203.7058"
r="61.380001"
fx="-288.27811"
fy="1203.7058"
id="radialGradient23339"
xlink:href="#linearGradient4498"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.4644707,1.1304615,-1.0381695,0.4265497,1095.5473,1030.3091)" />
<radialGradient
cx="488.89267"
cy="588.70575"
r="219.20311"
fx="488.89267"
fy="588.70575"
id="radialGradient4633"
xlink:href="#linearGradient4931"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-8.0035209e-3,1.2096377,-1.5872404,-1.0502094e-2,1429.2231,7.1996709)" />
<radialGradient
cx="459.32651"
cy="604.53241"
r="218.49857"
fx="459.32651"
fy="604.53241"
id="radialGradient4635"
xlink:href="#linearGradient4909"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.4717924e-8,0.4792097,-0.761379,-2.2833566e-8,965.49485,426.4337)" />
<linearGradient
x1="507.53687"
y1="695.01477"
x2="505.21655"
y2="435.03162"
id="linearGradient4637"
xlink:href="#linearGradient4893"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,0,1171.1728)" />
<radialGradient
cx="518.93054"
cy="498.96671"
r="218.49857"
fx="518.93054"
fy="498.96671"
id="radialGradient4639"
xlink:href="#linearGradient4917"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(6.8182398e-3,0.7964116,-0.908528,7.7780924e-3,968.71756,124.33984)" />
<linearGradient
x1="507.53687"
y1="695.01477"
x2="505.21655"
y2="435.03162"
id="linearGradient4641"
xlink:href="#linearGradient4893"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,6)" />
<linearGradient
x1="507.53687"
y1="695.01477"
x2="505.21655"
y2="435.03162"
id="linearGradient4643"
xlink:href="#linearGradient4893"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,0,1175.1728)" />
<linearGradient
x1="507.53687"
y1="695.01477"
x2="505.21655"
y2="435.03162"
id="linearGradient4645"
xlink:href="#linearGradient4893"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,4)" />
</defs>
<g
transform="translate(-246.91852,-321.31566)"
id="layer1">
<g
transform="matrix(0.9801369,-0.1728246,0.1728246,0.9801369,-345.94546,661.90527)"
id="g4826">
<path
d="M 830.8125,-165.0625 C 828.86578,-165.0625 827.23914,-162.26266 826.75,-158.4375 L 825.34375,-158.4375 C 824.79835,-162.06728 823.22571,-164.6875 821.34375,-164.6875 L 648.90625,-164.6875 C 646.57047,-164.6875 644.71875,-160.68641 644.71875,-155.6875 L 644.71875,59.3125 C 644.71875,64.31142 646.57049,68.3125 648.90625,68.3125 L 811.53125,68.3125 C 811.5479,72.447226 814.89238,75.75 819.03125,75.75 L 834.21875,75.75 C 838.36796,75.75 841.71875,72.430481 841.71875,68.28125 L 841.71875,67.96875 L 1003.2188,67.96875 C 1005.5545,67.96875 1007.4375,63.93642 1007.4375,58.9375 L 1007.4375,-156.03125 C 1007.4375,-161.03016 1005.5545,-165.0625 1003.2188,-165.0625 L 830.8125,-165.0625 z"
id="rect4731"
style="fill:url(#radialGradient4764);fill-opacity:1;stroke:none;stroke-width:0.83217633;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
transform="translate(-9.9999999,-294.28572)"
id="g4766">
<g
id="g3932">
<g
id="g3927"
style="fill:#918a6f">
<rect
width="30.162613"
height="234.1936"
rx="7.4895868"
ry="7.4895868"
x="-841.70331"
y="129.57147"
transform="scale(-1,1)"
id="rect3593"
style="fill:#918a6f;fill-opacity:1;stroke:#000000;stroke-width:0.83217633;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="180.85037"
height="233.02126"
rx="4.2162061"
ry="9.0233212"
x="644.70471"
y="123.30377"
id="rect3507"
style="fill:#918a6f;fill-opacity:1;stroke:#000000;stroke-width:1.92014647;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="180.85037"
height="233.02126"
rx="4.2162061"
ry="9.0233212"
x="-1007.4381"
y="122.93192"
transform="scale(-1,1)"
id="rect3541"
style="fill:#918a6f;fill-opacity:1;stroke:#000000;stroke-width:1.92014647;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<rect
width="22.216101"
height="230.66846"
rx="7.4895868"
ry="7.4895868"
x="-837.73004"
y="129.56914"
transform="scale(-1,1)"
id="rect3577"
style="fill:#6c6753;fill-opacity:1;stroke:#000000;stroke-width:0.83217633;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="667.27875"
y="137.61055"
id="rect3539"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="667.88794"
y="135.33701"
id="rect3537"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="668.49713"
y="133.06345"
id="rect3535"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="144.95518"
id="rect3509"
style="fill:#aad400;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="176.59944"
id="rect3511"
style="fill:#ff6600;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="208.24377"
id="rect3513"
style="fill:#5f8dd3;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="239.88794"
id="rect3515"
style="fill:#ffdd55;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="271.5322"
id="rect3517"
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="669.10632"
y="130.7899"
id="rect3505"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-984.86407"
y="137.23871"
transform="scale(-1,1)"
id="rect3543"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-984.25507"
y="134.96515"
transform="scale(-1,1)"
id="rect3545"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-983.64581"
y="132.6916"
transform="scale(-1,1)"
id="rect3548"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-983.03656"
y="130.41805"
transform="scale(-1,1)"
id="rect3550"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 813.56489,322.1965 L 676.95419,322.19651 L 676.95419,322.19651"
id="path4379"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,306.66252 L 676.95419,306.66253 L 676.95419,306.66253"
id="path4381"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,291.12853 L 676.95419,291.12854 L 676.95419,291.12854"
id="path4383"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,275.59463 L 676.95419,275.59464 L 676.95419,275.59464"
id="path4385"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,260.06065 L 676.95418,260.06065 L 676.95418,260.06065"
id="path4387"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,244.52666 L 676.95418,244.52667 L 676.95418,244.52667"
id="path4389"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,228.99276 L 676.95418,228.99277 L 676.95418,228.99277"
id="path4391"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,213.45877 L 676.95418,213.45878 L 676.95418,213.45878"
id="path4393"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,197.92479 L 676.95418,197.9248 L 676.95418,197.9248"
id="path4395"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,182.39089 L 676.95418,182.39089 L 676.95418,182.39089"
id="path4397"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,166.8569 L 676.95418,166.85691 L 676.95418,166.85691"
id="path4399"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,151.323 L 676.95418,151.32301 L 676.95418,151.32301"
id="path4401"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,322.9208 L 838.80606,322.92081 L 838.80606,322.92081"
id="path4479"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,307.38682 L 838.80606,307.38683 L 838.80606,307.38683"
id="path4481"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,291.85283 L 838.80606,291.85284 L 838.80606,291.85284"
id="path4483"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,276.31893 L 838.80606,276.31894 L 838.80606,276.31894"
id="path4485"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,260.78495 L 838.80605,260.78495 L 838.80605,260.78495"
id="path4487"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,245.25096 L 838.80605,245.25097 L 838.80605,245.25097"
id="path4489"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,229.71706 L 838.80605,229.71707 L 838.80605,229.71707"
id="path4491"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,214.18307 L 838.80605,214.18308 L 838.80605,214.18308"
id="path4493"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,198.64909 L 838.80605,198.6491 L 838.80605,198.6491"
id="path4495"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,183.11519 L 838.80605,183.11519 L 838.80605,183.11519"
id="path4497"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,167.5812 L 838.80605,167.58121 L 838.80605,167.58121"
id="path4499"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,152.0473 L 838.80605,152.04731 L 838.80605,152.04731"
id="path4501"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 A 5.6568542,9.1529827 0 1 1 53.740115,1594.6737 A 5.6568542,9.1529827 0 1 1 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2173.8253,180.81069)"
id="path4559"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 A 5.6568542,9.1529827 0 1 1 53.740115,1594.6737 A 5.6568542,9.1529827 0 1 1 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2133.5146,180.06121)"
id="path4561"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 A 5.6568542,9.1529827 0 1 1 53.740115,1594.6737 A 5.6568542,9.1529827 0 1 1 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2173.1373,265.09236)"
id="path4570"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 A 5.6568542,9.1529827 0 1 1 53.740115,1594.6737 A 5.6568542,9.1529827 0 1 1 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2132.8266,264.34288)"
id="path4572"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 A 5.6568542,9.1529827 0 1 1 53.740115,1594.6737 A 5.6568542,9.1529827 0 1 1 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2173.3036,110.00423)"
id="path4578"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 A 5.6568542,9.1529827 0 1 1 53.740115,1594.6737 A 5.6568542,9.1529827 0 1 1 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2132.9929,109.25475)"
id="path4580"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 825.93492,138.05523 C 814.11769,138.05507 804.4263,147.24529 803.6222,158.85964 L 808.12111,158.85965 C 808.91716,149.71907 816.58927,142.52802 825.93492,142.52818 C 835.28043,142.52808 842.95249,149.71912 843.74854,158.85963 L 848.24765,158.85964 C 847.44324,147.24525 837.75207,138.05526 825.93492,138.05523 z"
id="path4582"
style="fill:url(#linearGradient4820);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 825.93492,208.05523 C 814.11769,208.05507 804.4263,217.24529 803.6222,228.85964 L 808.12111,228.85965 C 808.91716,219.71907 816.58927,212.52802 825.93492,212.52818 C 835.28043,212.52808 842.95249,219.71912 843.74854,228.85963 L 848.24765,228.85964 C 847.44324,217.24525 837.75207,208.05526 825.93492,208.05523 z"
id="path4719"
style="fill:url(#linearGradient4822);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 825.93492,292.05523 C 814.11769,292.05507 804.4263,301.24529 803.6222,312.85964 L 808.12111,312.85965 C 808.91716,303.71907 816.58927,296.52802 825.93492,296.52818 C 835.28043,296.52808 842.95249,303.71912 843.74854,312.85963 L 848.24765,312.85964 C 847.44324,301.24525 837.75207,292.05526 825.93492,292.05523 z"
id="path4723"
style="fill:url(#linearGradient4824);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View file

@ -0,0 +1,374 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="132.96422"
height="124.47568"
id="svg6255"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
version="1.0"
sodipodi:docname="aquarela.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs6257">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5092"
id="linearGradient5102"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.4435619,0,2.8962074,-0.4853568,-757.00285,470.49812)"
x1="220.88396"
y1="280.87924"
x2="227.04086"
y2="315.41315" />
<linearGradient
inkscape:collect="always"
id="linearGradient5092">
<stop
style="stop-color:#d3d7cf;stop-opacity:1;"
offset="0"
id="stop5094" />
<stop
style="stop-color:#d3d7cf;stop-opacity:0;"
offset="1"
id="stop5096" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5092"
id="linearGradient5098"
x1="220.88396"
y1="280.87924"
x2="220.43327"
y2="306.23355"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6178722,0,0,0.6178722,35.326106,152.13462)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2777">
<stop
style="stop-color:#e9b96e;stop-opacity:1;"
offset="0"
id="stop2779" />
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="1"
id="stop2781" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2777"
id="linearGradient2783"
x1="281.98495"
y1="368.09149"
x2="207.8797"
y2="71.670456"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5116282,0,0,0.5116282,63.091103,180.32737)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2839">
<stop
style="stop-color:#f57900;stop-opacity:1;"
offset="0"
id="stop2841" />
<stop
style="stop-color:#f57900;stop-opacity:0;"
offset="1"
id="stop2843" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2839"
id="linearGradient2845"
x1="86.422699"
y1="156.55286"
x2="72.172005"
y2="149.15596"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient5034">
<stop
style="stop-color:#ad7fa8;stop-opacity:1;"
offset="0"
id="stop5036" />
<stop
style="stop-color:#ad7fa8;stop-opacity:0;"
offset="1"
id="stop5038" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5034"
id="linearGradient5040"
x1="249.27664"
y1="138.01442"
x2="247.96304"
y2="132.24878"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5026">
<stop
style="stop-color:#ef2929;stop-opacity:1;"
offset="0"
id="stop5028" />
<stop
style="stop-color:#ef2929;stop-opacity:0;"
offset="1"
id="stop5030" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5026"
id="linearGradient5032"
x1="217.7292"
y1="158.29492"
x2="210.51836"
y2="147.47865"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5018">
<stop
style="stop-color:#fcaf3e;stop-opacity:1;"
offset="0"
id="stop5020" />
<stop
style="stop-color:#fcaf3e;stop-opacity:0;"
offset="1"
id="stop5022" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5018"
id="linearGradient5024"
x1="196.09668"
y1="195.70117"
x2="187.22038"
y2="189.4845"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5042">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop5044" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop5046" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5042"
id="linearGradient5048"
x1="205.11023"
y1="238.06487"
x2="187.08311"
y2="234.03421"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5058">
<stop
style="stop-color:#fce94f;stop-opacity:1;"
offset="0"
id="stop5060" />
<stop
style="stop-color:#fce94f;stop-opacity:0;"
offset="1"
id="stop5062" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5058"
id="linearGradient5064"
x1="245.58508"
y1="258.65234"
x2="219.97372"
y2="255.19063"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5066">
<stop
style="stop-color:#8ae234;stop-opacity:1;"
offset="0"
id="stop5068" />
<stop
style="stop-color:#8ae234;stop-opacity:0;"
offset="1"
id="stop5070" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5066"
id="linearGradient5072"
x1="274.06393"
y1="244.82504"
x2="261.44495"
y2="225.44589"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5074">
<stop
style="stop-color:#555753;stop-opacity:1;"
offset="0"
id="stop5076" />
<stop
style="stop-color:#555753;stop-opacity:0;"
offset="1"
id="stop5078" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5074"
id="linearGradient5080"
x1="314.62491"
y1="212.37624"
x2="308.02252"
y2="193.89845"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2"
inkscape:cx="78.390332"
inkscape:cy="68.605249"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1024"
inkscape:window-height="689"
inkscape:window-x="0"
inkscape:window-y="26" />
<metadata
id="metadata6260">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-133.51789,-221.55292)">
<g
id="g6323">
<path
style="fill:#2e3436;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.51162815px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 211.16574,229.98402 C 208.36745,229.95613 204.71497,230.20642 200.02183,230.78343 C 139.94975,238.16934 146.34884,301.19625 146.34884,301.19625 C 157.67391,406.07616 318.18374,258.84677 234.47677,264.2631 C 157.30941,269.25628 244.18529,230.31316 211.16574,229.98402 z M 196.31253,263.00002 C 196.94858,262.97307 197.55546,263.06377 198.11922,263.28781 C 201.12588,264.48264 201.65296,268.98073 199.30236,273.3285 C 196.95174,277.67627 192.60407,280.2312 189.59739,279.03635 C 186.59074,277.84152 186.06367,273.34342 188.41427,268.99565 C 190.32412,265.46311 193.55633,263.11679 196.31253,263.00002 z"
id="path2775" />
<path
id="path2176"
d="M 208.66529,229.49162 C 205.86702,229.46373 202.21452,229.714 197.5214,230.29103 C 137.44934,237.67694 143.8484,300.70386 143.8484,300.70386 C 155.17347,405.58375 315.68332,258.35437 231.97634,263.77069 C 154.80899,268.76389 241.68485,229.82076 208.66529,229.49162 z M 193.81209,262.50762 C 194.44814,262.48066 195.05503,262.57138 195.61877,262.79542 C 198.62542,263.99025 199.1525,268.48835 196.8019,272.83611 C 194.4513,277.18387 190.10363,279.73881 187.09697,278.54396 C 184.0903,277.3491 183.56325,272.85102 185.91382,268.50325 C 187.82368,264.97071 191.05587,262.62441 193.81209,262.50762 z"
style="fill:url(#linearGradient2783);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.51162815px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path2178"
d="M 192.29318,234.09627 C 191.32926,234.23143 191.87093,235.07758 192.24522,235.87098 C 191.10441,236.25872 190.05988,236.74555 189.17546,237.29395 C 186.86207,237.13186 184.07079,236.82011 183.61151,237.37389 C 183.205,237.86402 185.44102,238.28678 187.35278,238.7489 C 186.64615,239.49574 186.23359,240.27273 186.23359,241.01923 C 186.23359,241.11391 186.23676,241.20064 186.24959,241.29104 C 184.69146,241.7192 183.26514,242.13326 183.4836,242.57011 C 183.71022,243.02328 185.32342,242.84883 187.06499,242.63407 C 188.03006,243.4107 189.75748,243.80667 191.86151,243.70529 C 191.71618,244.70702 191.08605,245.93553 192.19724,246.13551 C 193.2238,246.32028 193.54335,244.74885 194.01994,243.44948 C 194.118,243.4309 194.20881,243.40604 194.30773,243.38552 C 195.32038,243.17554 196.29207,242.87768 197.18564,242.52214 C 199.24846,243.82614 201.98932,246.45042 203.1333,246.00761 C 204.40629,245.51486 200.69713,242.61834 199.82373,241.14714 C 200.30533,240.82213 200.74253,240.49227 201.10278,240.1399 C 203.09707,240.1115 206.41085,240.66716 206.37896,239.94801 C 206.34502,239.18266 203.18497,239.92225 201.40657,239.82012 C 202.03824,239.11321 202.39785,238.36445 202.39785,237.66168 C 202.39785,237.44332 202.3527,237.24929 202.28592,237.05412 C 203.26808,236.21831 204.10402,235.45155 203.34116,235.19947 C 202.78574,235.01592 201.92584,235.26374 200.97489,235.66314 C 199.51557,234.91062 197.06575,234.73949 194.30773,235.31139 C 194.13214,235.34781 193.9689,235.39795 193.79609,235.43929 C 193.42963,234.66008 193.03558,233.99217 192.29318,234.09627 z"
style="opacity:1;color:#000000;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.05552018;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2760"
d="M 172.33969,241.56283 C 171.41721,241.67053 173.19513,244.24973 172.43563,245.04831 C 171.48755,246.04516 166.90514,245.41628 166.2801,246.5512 C 165.94664,247.15672 167.07255,248.05207 167.89492,248.91749 C 165.00733,251.83225 163.48801,255.09404 164.32952,257.10355 C 165.13371,259.02398 167.87937,259.2564 171.17257,257.99891 C 171.48029,258.87387 171.82515,259.64274 172.27574,259.9175 C 172.9079,260.30298 173.57809,257.78963 174.29027,256.46402 C 174.29234,256.46016 174.2882,256.45187 174.29027,256.44803 C 174.58117,256.26813 174.87786,256.0885 175.16963,255.88842 C 175.22994,255.84709 175.28578,255.80233 175.34552,255.76052 C 176.65478,256.33586 178.88215,260.33171 179.9022,259.72563 C 180.7908,259.19767 176.94363,255.44793 177.34406,254.35355 C 177.40015,254.20026 177.5101,254.0536 177.64784,253.90587 C 177.66065,253.89212 177.68238,253.8876 177.69581,253.8739 C 177.75213,253.82199 177.80023,253.76625 177.85568,253.71402 C 177.89178,253.68003 177.93189,253.65218 177.9676,253.61808 C 179.27346,252.5694 182.04621,251.61538 182.17256,250.48435 C 182.22994,249.97056 181.61814,249.96963 180.90946,250.0047 C 182.05189,248.10663 182.50448,246.30531 181.96471,245.01634 C 181.65115,244.2676 181.02729,243.78056 180.20598,243.52941 C 180.1692,243.41755 180.12233,243.31807 180.0461,243.24162 C 179.82045,243.0154 179.4633,243.11175 179.03883,243.33756 C 177.86662,243.28666 176.44568,243.56024 174.91383,244.16895 C 174.05343,243.08419 173.13778,241.46968 172.33969,241.56283 z"
style="opacity:1;color:#000000;fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
transform="matrix(0.3478201,-0.7302535,0.841701,0.5200168,-28.22619,407.96749)"
d="M 277.17293,114.01632 A 13.473684,6.7368422 0 1 1 250.22556,114.01632 A 13.473684,6.7368422 0 1 1 277.17293,114.01632 z"
sodipodi:ry="6.7368422"
sodipodi:rx="13.473684"
sodipodi:cy="114.01632"
sodipodi:cx="263.69925"
id="path2762"
style="opacity:1;color:#000000;fill:#ce5c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
id="path2764"
d="M 165.00103,290.27944 C 164.5501,290.36435 163.92232,291.02831 163.22632,291.89426 C 161.16548,291.03384 158.89124,291.36821 156.84695,292.6457 C 156.54202,291.58899 156.17733,290.77713 155.47196,290.98292 C 154.69121,291.21068 154.98315,292.44247 155.36003,293.76491 C 154.37529,294.65896 153.48609,295.79859 152.73795,297.12245 C 150.19877,296.51494 146.9629,295.36992 146.50248,296.53088 C 145.87682,298.10844 150.63352,300.02309 151.0112,301.63117 C 150.95475,301.87784 150.89641,302.12023 150.85131,302.36663 C 149.93646,304.03383 145.41115,306.05404 146.16672,307.57886 C 146.57352,308.39983 148.65686,308.10814 150.77137,307.77072 C 151.23628,310.66437 152.53731,313.12607 154.54463,314.48584 C 154.46992,315.20082 154.57643,315.70266 155.04026,315.78089 C 155.37594,315.8375 155.66291,315.60199 155.90365,315.18932 C 158.71722,316.24813 161.88209,315.11015 164.32952,312.43933 C 164.94268,312.78771 165.46761,312.94954 165.84841,312.72712 C 166.44847,312.37661 166.35146,311.27685 166.08823,310.00908 C 166.5299,309.24804 166.94001,308.43487 167.27137,307.54688 C 167.81406,306.09265 168.14264,304.60617 168.27866,303.15007 C 170.31856,302.32222 172.60917,301.52018 172.54756,300.46403 C 172.48789,299.44138 170.20632,299.92213 168.26266,300.12826 C 168.01905,297.62379 167.17584,295.36982 165.80044,293.78088 C 165.90303,292.2687 165.87734,290.93242 165.38475,290.40733 C 165.27726,290.29276 165.15134,290.25112 165.00103,290.27944 z"
style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2766"
d="M 187.06499,303.38991 C 186.1593,303.47396 185.80528,304.91861 185.62605,306.74746 C 182.64403,306.93546 179.6446,308.5944 177.39202,311.30416 C 175.94285,310.42528 174.72659,309.892 174.24232,310.5527 C 173.81423,311.1367 174.72524,312.04669 176.11295,313.07886 C 175.73228,313.69976 175.39232,314.36649 175.08969,315.06141 C 173.98013,317.60936 173.59809,320.25326 173.85859,322.67189 C 172.63599,323.10588 171.80854,323.59753 171.87605,324.20677 C 171.95089,324.88264 172.90173,324.89186 174.22633,324.63846 C 175.00636,327.5257 176.79174,329.89307 179.39056,331.0498 C 180.52463,331.55456 181.71653,331.78014 182.924,331.76927 C 182.93659,332.73295 183.15076,333.45956 183.77139,333.68789 C 184.75181,334.04852 185.53415,332.70676 186.29756,331.11374 C 188.13203,330.42324 189.87434,329.20871 191.33387,327.56433 C 193.10338,329.27046 194.70946,332.58372 196.41819,331.84921 C 197.97869,331.17843 193.94773,328.77502 192.02139,326.74892 C 192.6914,325.87581 193.269,324.89824 193.76414,323.83903 C 197.08383,323.62338 202.29728,324.39915 202.63768,322.71985 C 203.04345,320.71793 196.91917,321.43886 194.96326,320.1937 C 195.12783,319.36245 195.21182,318.54345 195.23505,317.73147 C 197.19047,315.51504 201.76658,312.64836 200.78301,311.24019 C 199.98705,310.10058 197.28261,312.2108 194.80335,313.79832 C 194.01433,310.94036 192.23458,308.61503 189.65511,307.46693 C 189.38182,307.34529 189.10354,307.23768 188.8237,307.14717 C 188.48541,305.01247 188.03869,303.29954 187.06499,303.38991 z"
style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2768"
d="M 213.38185,290.10354 C 212.40357,290.13009 212.46746,291.66587 212.59844,293.31721 C 210.55456,293.50473 208.50847,294.44997 206.77866,296.00327 C 204.8297,295.30715 203.00446,294.73197 202.50977,295.4277 C 201.99372,296.15341 203.21137,297.44283 204.47633,298.73728 C 204.09111,299.344 203.73701,299.99916 203.43707,300.68787 C 202.92192,301.87084 202.60321,303.07935 202.42982,304.26925 C 201.5538,304.63273 200.91336,305.05375 200.97489,305.64427 C 201.02215,306.09815 201.54127,306.33638 202.28592,306.49165 C 202.38955,310.2538 204.18172,313.55704 207.27429,314.93351 C 210.74734,316.47934 214.87738,315.16545 217.79465,311.97566 C 218.99667,313.15592 220.13476,314.09932 220.8964,313.7184 C 221.99218,313.17033 220.82896,310.5916 220.12895,308.44223 C 220.17104,308.35083 220.21645,308.26325 220.25686,308.17043 C 220.65034,307.26686 220.92768,306.34974 221.12023,305.43641 C 223.20462,305.81262 226.87096,308.17215 227.09988,306.8274 C 227.35999,305.29947 222.48326,304.1955 221.40802,302.6864 C 221.4072,302.2535 221.38877,301.82694 221.34407,301.40734 C 222.04218,299.61682 225.14411,297.22785 223.9182,296.06721 C 223.19456,295.38211 221.61647,296.33031 220.04901,297.28234 C 219.20055,295.80249 217.97619,294.61759 216.41965,293.92479 C 215.93484,293.709 215.43814,293.55227 214.93273,293.44513 C 214.66982,291.64509 214.3241,290.07801 213.38185,290.10354 z"
style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2770"
d="M 236.88478,267.24018 C 236.18482,267.20131 235.69982,268.92879 235.14203,270.48583 C 233.80449,270.70836 232.48043,271.23484 231.24089,272.00473 C 228.98927,270.80072 226.03913,268.91015 224.8935,269.68639 C 223.44318,270.66908 228.84525,272.83788 228.44291,274.33901 C 228.29291,274.50362 228.15514,274.67709 228.01123,274.85063 C 226.06936,276.17069 218.1728,276.57887 218.05046,278.38409 C 217.93617,280.07061 223.3874,280.86221 224.65368,282.28524 C 224.56267,282.87046 224.51301,283.45382 224.49379,284.02797 C 223.41085,285.54932 220.76424,287.21151 221.77576,288.26489 C 222.24363,288.75214 223.45248,288.3185 224.86152,287.62536 C 225.58771,290.56252 227.34527,292.98402 229.96181,294.14862 C 235.05504,296.41559 241.43478,293.08097 244.20746,286.71402 C 245.78672,283.08753 245.86164,279.25736 244.68711,276.20966 C 244.83805,275.97738 244.91616,275.75555 244.89495,275.52214 C 244.8607,275.14496 244.56408,274.99594 244.1275,274.97855 C 243.19324,273.24577 241.80748,271.87366 240.0185,271.07738 C 239.27199,270.74513 238.48671,270.52182 237.7002,270.42187 C 237.80372,269.01346 237.78979,267.75541 237.15658,267.33611 C 237.06424,267.27498 236.97036,267.24493 236.88478,267.24018 z"
style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
transform="matrix(0.4491797,0,0,0.4572851,125.70494,206.46354)"
d="M 101.77944,164.73238 C 99.977808,168.17323 91.899618,156.6723 88.77516,158.75497 C 85.803962,160.73549 88.349877,175.19697 84.787955,175.03085 C 81.042302,174.85615 77.131968,161.13511 73.782356,159.50833 C 70.597049,157.96136 65.021527,170.03581 62.901631,167.06893 C 60.672386,163.949 68.979764,156.41247 67.593476,153.08103 C 66.275188,149.91301 56.420613,153.389 56.442825,149.87022 C 56.466182,146.16992 66.843384,146.85066 69.014243,143.77328 C 71.078618,140.84686 61.137415,127.94528 64.237959,126.45063 C 67.498435,124.87889 77.798147,136.79594 81.291483,136.01022 C 84.613466,135.26305 83.093888,122.67408 86.550382,123.30242 C 90.185167,123.96317 82.401755,136.30511 85.406663,138.46492 C 88.264176,140.5188 101.073,138.08709 102.06142,141.58002 C 103.10081,145.25312 94.997375,146.51676 94.294484,150.13561 C 93.62607,153.57694 103.49271,161.46031 101.77944,164.73238 z"
inkscape:randomized="-0.115"
inkscape:rounded="0.22"
inkscape:flatsided="false"
sodipodi:arg2="1.0033808"
sodipodi:arg1="0.50229464"
sodipodi:r2="11.650877"
sodipodi:r1="26.32341"
sodipodi:cy="149.62534"
sodipodi:cx="79.8797"
sodipodi:sides="7"
id="path2789"
style="opacity:1;color:#000000;fill:url(#linearGradient2845);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="star" />
<path
id="path4968"
d="M 198.33287,238.98001 C 195.73955,239.32558 191.7419,239.84199 190.62608,242.21646 C 194.22511,243.33505 198.47861,241.58912 200.96249,239.28341 C 200.16709,238.94189 199.22243,238.93472 198.33287,238.98001 z"
style="color:#000000;fill:url(#linearGradient5040);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.05552018;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4970"
d="M 179.62216,247.31386 C 177.35072,247.81943 175.50508,248.30982 173.51335,249.37709 C 171.11404,248.89906 172.27305,251.33056 170.84328,252.45171 C 169.68682,253.76937 167.42682,255.78604 168.27435,257.63002 C 169.78658,257.1371 171.67771,257.18327 173.1088,257.00297 C 174.17817,254.96085 176.67812,254.84788 177.80165,252.8765 C 179.60994,251.99246 180.10408,249.67072 180.93696,247.90046 C 181.12951,247.12802 180.08431,247.27244 179.62216,247.31386 z"
style="color:#000000;fill:url(#linearGradient5032);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4972"
d="M 163.05557,268.79579 C 158.63904,270.56299 156.64539,276.16239 156.48155,280.56836 C 156.38085,282.3327 157.70913,284.14545 159.47527,282.73275 C 164.11358,280.22648 165.85237,273.76011 164.3906,269.11943 C 164.05141,268.81917 163.51176,268.73707 163.05557,268.79579 z"
style="color:#000000;fill:url(#linearGradient5024);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4974"
d="M 161.3969,295.37512 C 158.54096,296.13776 156.71976,298.7931 155.42969,301.30185 C 153.12654,300.72679 155.80688,303.62802 154.53968,304.84173 C 154.26964,306.07762 152.16741,306.59906 153.91262,307.45112 C 155.38366,309.84752 155.30617,313.9415 158.88866,314.26789 C 161.26985,314.64721 163.47942,312.89034 164.97721,311.33483 C 166.08244,308.64434 167.01928,305.49613 167.34387,302.79872 C 166.7889,300.38238 166.23101,297.55807 164.49175,295.82012 C 163.43713,295.84695 162.46153,295.31037 161.3969,295.37512 z"
style="color:#000000;fill:url(#linearGradient5048);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4976"
d="M 187.6526,310.56619 C 179.73396,311.14145 174.76325,321.8741 179.56147,328.28576 C 180.87869,330.52811 183.6666,330.41887 185.81184,330.99627 C 188.35402,328.96383 191.6412,327.61384 192.70954,324.19974 C 193.9888,323.20807 193.94203,322.5872 193.59955,321.16556 C 193.5658,319.91646 194.47143,318.31668 194.20638,317.40318 C 192.9926,315.19466 192.77133,312.15951 189.85741,311.17304 C 189.18112,310.87651 188.25636,310.53119 187.6526,310.56619 z"
style="color:#000000;fill:url(#linearGradient5064);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4978"
d="M 214.53534,297.23607 C 212.25226,297.19395 210.09667,299.1911 208.36585,300.04773 C 207.68293,303.06621 205.37432,305.83201 206.26216,309.19071 C 206.58425,313.8549 212.84378,316.19373 216.09288,312.64966 C 219.28943,310.35097 220.64708,306.18409 219.97663,302.37393 C 221.25438,300.73614 218.62474,300.32863 218.15611,298.73293 C 217.38188,297.63957 215.78221,297.22315 214.53534,297.23607 z"
style="color:#000000;fill:url(#linearGradient5072);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4980"
d="M 238.36368,274.33821 C 236.18253,274.06985 234.17744,275.6291 232.39649,276.07779 C 231.73781,279.18668 227.70414,279.57398 225.11447,280.16381 C 227.6084,280.88658 229.4344,283.63432 228.27002,286.11078 C 227.73731,291.38732 234.09362,295.97404 238.5862,292.50276 C 244.22237,289.16163 246.69999,279.65356 240.95284,275.18778 C 240.16052,274.9166 239.10327,274.21058 238.36368,274.33821 z"
style="color:#000000;fill:url(#linearGradient5080);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 650 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 583 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 100 KiB

View file

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg13488"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="Anonymous_Open_Bible.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs13490">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective13496" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="641"
inkscape:window-height="721"
inkscape:window-x="50"
inkscape:window-y="25" />
<metadata
id="metadata13493">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g8051"
transform="translate(605.71423,-711.42859)">
<path
transform="matrix(1.3992,0,0,1.4336065,-694.30509,608.42894)"
d="M 511.42857,435.21933 A 178.57143,174.28572 0 1 1 154.28572,435.21933 A 178.57143,174.28572 0 1 1 511.42857,435.21933 z"
sodipodi:ry="174.28572"
sodipodi:rx="178.57143"
sodipodi:cy="435.21933"
sodipodi:cx="332.85715"
id="path2391"
style="fill:#99ff55;fill-rule:evenodd;stroke:#000000;stroke-width:0.70606565px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:type="arc" />
<g
transform="matrix(1.6031782,0,0,1.6031782,-419.58474,1088.5371)"
id="g8043">
<g
id="g8045"
transform="translate(-106.41824,-552.93102)" />
<g
id="g4874"
transform="translate(-106.41824,-552.93102)">
<path
d="M 108.91824,624.83263 L 172.02974,720.51781 C 192.38829,692.01584 239.21297,673.69314 265.67909,679.8007 C 298.25277,657.4063 334.89815,661.478 345.07743,669.62143 L 271.78665,573.93624 C 271.78665,573.93624 220.89027,559.68526 200.53172,590.22309 C 163.88633,573.93624 119.09751,600.40236 108.91824,624.83263 z"
id="path2354"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="M 116.72056,612.20892 L 171.68864,695.67897 C 194.08305,654.96187 238.87186,636.63917 261.26627,663.10529 C 295.87581,614.24477 336.5929,663.10529 340.66461,663.10529 L 267.37384,563.3484 C 267.37384,563.3484 218.51331,540.95399 198.15476,571.49182 C 177.79621,555.20497 128.93568,575.56352 116.72056,612.20892 z"
id="path2356"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="M 199.51379,571.9004 L 262.6253,657.40631 C 270.76872,669.62144 254.48188,692.01585 289.09142,706.26683"
id="path3599"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -0,0 +1,379 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg16377"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="adriano_Hard_Hat.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs16379">
<linearGradient
id="SVGID_2_"
gradientUnits="userSpaceOnUse"
x1="-229.82201"
y1="896.29388"
x2="-290.0098"
y2="896.29388"
gradientTransform="translate(614.4004,-728.4014)">
<stop
offset="0.3187"
style="stop-color:#FFFFFF"
id="stop6588" />
<stop
offset="1"
style="stop-color:#000000"
id="stop6590" />
</linearGradient>
<radialGradient
id="SVGID_1_"
cx="-464.9202"
cy="873.18951"
r="255.5941"
gradientTransform="translate(614.4004,-728.4014)"
gradientUnits="userSpaceOnUse">
<stop
offset="0.5"
style="stop-color:#FED51F"
id="stop6527" />
<stop
offset="1"
style="stop-color:#000000"
id="stop6529" />
</radialGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective16385" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="641"
inkscape:window-height="721"
inkscape:window-x="50"
inkscape:window-y="25" />
<metadata
id="metadata16382">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g6659"
transform="translate(-622.85715,-59.999967)">
<path
transform="matrix(1.3992,0,0,1.4336064,537.12343,-134.42821)"
d="M 511.42857,435.21933 A 178.57143,174.28572 0 1 1 154.28572,435.21933 A 178.57143,174.28572 0 1 1 511.42857,435.21933 z"
sodipodi:ry="174.28572"
sodipodi:rx="178.57143"
sodipodi:cy="435.21933"
sodipodi:cx="332.85715"
id="path2401"
style="fill:#d35f8d;fill-rule:evenodd;stroke:#000000;stroke-width:0.70606565px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:type="arc" />
<g
transform="matrix(0.8735718,0,0,0.8735718,788.09859,315.13821)"
id="g6482">
<g
id="g6484">
<g
id="g6486">
<path
style="fill:#ffffff;stroke:#cccccc;stroke-width:15.47719955"
d="M 266.018,314.156 C 266.018,314.156 235.053,330.84 187.564,347.369 C 158.881,357.369 107.936,340.502 81.412,333.478 C 54.849,326.429 8.953,311.849 21.688,299.114 C 34.424,286.382 71.042,259.226 71.042,259.226 C 71.042,259.226 36.177,316.799 266.018,314.156 z"
id="path6488" />
<g
id="g6490">
<path
style="fill:#ffffff;stroke:#cccccc;stroke-width:15.47719955"
d="M 54.069,272.286 C 54.069,296.568 126.715,316.26 216.342,316.26 C 305.959,316.26 378.591,296.571 378.591,272.286 C 359.9,258.738 362.605,247.332 362.605,247.332 L 69.299,247.332 C 69.309,247.332 71.904,258.738 54.069,272.286 z"
id="path6492" />
</g>
<g
id="g6494">
<g
id="g6496">
<path
style="fill:#ffffff"
d="M 344.759,160.41 C 341.131,152.132 327.074,123.541 298.498,103.414 C 246.695,66.882 182.459,73.851 144.688,95.78 C 119.165,110.628 101.582,129.762 87.651,157.854 C 84.251,164.716 77.913,179.358 73.569,200.305 C 69.81,218.473 69.448,229.93 68.843,248.958 C 68.873,264.857 99.047,279.197 151.039,286.18 C 223.801,295.924 311.741,287.46 347.432,267.278 C 357.645,261.506 362.466,255.364 362.446,249.382 C 361.693,224.797 360.784,196.945 344.759,160.41 z"
id="path6498" />
</g>
<g
id="g6500">
<path
style="fill:none;stroke:#cccccc;stroke-width:15.47719955"
d="M 344.759,160.41 C 341.131,152.132 327.074,123.541 298.498,103.414 C 246.695,66.882 182.459,73.851 144.688,95.78 C 119.165,110.628 101.582,129.762 87.651,157.854 C 84.251,164.716 77.913,179.358 73.569,200.305 C 69.81,218.473 69.448,229.93 68.843,248.958 C 68.873,264.857 99.047,279.197 151.039,286.18 C 223.801,295.924 311.741,287.46 347.432,267.278 C 357.645,261.506 362.466,255.364 362.446,249.382 C 361.693,224.797 360.784,196.945 344.759,160.41 z"
id="path6502" />
</g>
</g>
</g>
<g
id="g6504">
<path
style="fill:#ffd520;stroke:#000000;stroke-width:5.15910006"
d="M 267.237,313.428 C 267.237,313.428 236.263,330.084 188.784,346.639 C 160.111,356.619 109.172,339.772 82.645,332.723 C 56.083,325.7 10.181,311.119 22.917,298.358 C 35.652,285.628 72.251,258.487 72.251,258.487 C 72.251,258.487 37.402,316.063 267.237,313.428 z"
id="path6506" />
<g
id="g6508">
<path
style="stroke:#000000;stroke-width:5.15910006"
d="M 55.292,271.555 C 55.292,295.839 127.916,315.514 217.551,315.514 C 307.164,315.514 379.815,295.844 379.815,271.555 C 361.113,258.007 363.836,246.602 363.836,246.602 L 70.512,246.602 C 70.523,246.602 73.113,258.008 55.292,271.555 z"
id="path6510" />
</g>
<g
id="g6512">
<g
id="g6514">
<path
style="fill:#ffd520"
d="M 345.992,159.669 C 342.364,151.397 328.3,122.818 299.732,102.672 C 247.934,66.141 183.698,73.118 145.922,95.044 C 120.383,109.893 102.81,129.025 88.89,157.094 C 85.484,163.956 79.131,178.598 74.808,199.556 C 71.06,217.712 70.693,229.179 70.079,248.183 C 70.1,264.083 100.298,278.447 152.297,285.406 C 225.057,295.175 312.987,286.685 348.668,266.503 C 358.881,260.731 363.712,254.611 363.69,248.607 C 362.91,224.061 361.998,196.205 345.992,159.669 z"
id="path6516" />
</g>
<g
id="g6518">
<path
style="fill:none;stroke:#000000;stroke-width:5.15910006"
d="M 345.992,159.669 C 342.364,151.397 328.3,122.818 299.732,102.672 C 247.934,66.141 183.698,73.118 145.922,95.044 C 120.383,109.893 102.81,129.025 88.89,157.094 C 85.484,163.956 79.131,178.598 74.808,199.556 C 71.06,217.712 70.693,229.179 70.079,248.183 C 70.1,264.083 100.298,278.447 152.297,285.406 C 225.057,295.175 312.987,286.685 348.668,266.503 C 358.881,260.731 363.712,254.611 363.69,248.607 C 362.91,224.061 361.998,196.205 345.992,159.669 z"
id="path6520" />
</g>
</g>
<g
id="g6522">
<g
id="g6524">
<radialGradient
id="radialGradient16417"
cx="-464.9202"
cy="873.18951"
r="255.5941"
gradientTransform="translate(614.4004,-728.4014)"
gradientUnits="userSpaceOnUse">
<stop
offset="0.5"
style="stop-color:#FED51F"
id="stop16419" />
<stop
offset="1"
style="stop-color:#000000"
id="stop16421" />
</radialGradient>
<path
style="fill:url(#SVGID_1_)"
d="M 345.992,159.669 C 342.364,151.397 328.3,122.818 299.732,102.672 C 247.934,66.141 183.698,73.118 145.922,95.044 C 120.383,109.893 102.81,129.025 88.89,157.094 C 85.484,163.956 79.131,178.598 74.808,199.556 C 71.06,217.712 70.693,229.179 70.079,248.183 C 70.1,264.083 100.298,278.447 152.297,285.406 C 225.057,295.175 312.987,286.685 348.668,266.503 C 358.881,260.731 363.712,254.611 363.69,248.607 C 362.91,224.061 361.998,196.205 345.992,159.669 z"
id="path6531" />
</g>
</g>
</g>
<g
id="g6533">
<g
id="g6535">
<g
id="g6537">
<path
style="fill:#cccccc"
d="M 292.967,97.194 C 183.995,27.707 73.4,170.418 76.861,262.057 L 66.724,266.147 C 66.729,166.256 174.974,19.021 292.967,97.194"
id="path6539" />
</g>
<polygon
style="fill:#cccccc"
points="76.865,262.057 61.197,281.15 66.729,266.146 76.865,262.057 "
id="polygon6541" />
</g>
<path
style="stroke:#000000;stroke-width:5.15910006;stroke-linecap:round;stroke-linejoin:round"
d="M 109.11,280.45 L 109.11,280.45 C 109.105,190.041 163.059,49.176 260.763,81.157 C 155.99,45.698 66.749,175.416 66.749,266.127 L 61.217,281.13 L 103.598,295.424 L 109.11,280.45 L 109.11,280.45 z"
id="path6543" />
<g
id="g6545">
<g
id="g6547">
<path
style="fill:#cccccc"
d="M 109.105,280.45 L 109.105,280.45 L 109.105,280.45 L 103.579,295.454 L 128.428,278.037 C 124.95,186.375 183.992,27.712 292.974,97.173 C 174.974,19.021 109.105,180.544 109.105,280.45 z"
id="path6549" />
</g>
<g
id="g6551">
<path
style="fill:none;stroke:#000000;stroke-width:5.15910006;stroke-linecap:round;stroke-linejoin:round"
d="M 109.105,280.45 L 109.105,280.45 L 109.105,280.45 L 103.579,295.454 L 128.428,278.037 C 124.95,186.375 183.992,27.712 292.974,97.173 C 174.974,19.021 109.105,180.544 109.105,280.45 z"
id="path6553" />
</g>
</g>
</g>
</g>
<g
id="g6555">
<polygon
style="fill:#999999;stroke:#000000;stroke-width:5.15910006;stroke-linecap:round;stroke-linejoin:round"
points="267.237,277.314 253.029,251.639 254.677,222.574 265.489,233.406 267.237,277.314 "
id="polygon6557" />
<polygon
points="329.726,266.975 320.698,241.305 322.323,217.4 327.99,223.074 329.726,266.975 "
id="polygon6559" />
<path
style="stroke:#000000;stroke-width:5.15910006;stroke-linecap:round;stroke-linejoin:round"
d="M 267.237,277.314 C 267.237,277.314 326.722,269.937 329.706,266.956 C 332.698,263.999 327.974,223.055 327.974,223.055 L 265.481,233.387 L 267.237,277.314 z"
id="path6561" />
<polygon
style="fill:#cccccc;stroke:#000000;stroke-width:5.15910006;stroke-linecap:round;stroke-linejoin:round"
points="254.677,222.574 265.489,233.406 327.99,223.074 317.164,212.242 254.677,222.574 "
id="polygon6563" />
</g>
<g
id="g6565">
<g
id="g6567">
<g
id="g6569">
<path
style="fill:none;stroke:#cccccc;stroke-width:15.47719955;stroke-linecap:round;stroke-linejoin:round"
d="M 419.5,76.856 L 419.5,46.465 C 419.5,33.679 406.673,22.846 394.58,18.624 L 394.58,48.954 C 394.58,64.255 383.022,76.664 368.774,76.664 C 354.517,76.664 342.979,64.255 342.979,48.954 L 342.979,18.541 C 330.766,22.687 317.798,33.6 317.798,46.457 L 317.798,76.847 C 317.798,89.781 329.734,100.754 342.838,104.834 L 342.838,223.446 C 328.146,232.278 318.28,248.331 318.28,266.717 C 318.28,294.613 340.891,317.244 368.794,317.244 C 396.693,317.244 419.315,294.613 419.315,266.717 C 419.315,248.182 409.295,232.026 394.408,223.235 L 394.408,104.833 C 407.53,100.768 419.5,89.794 419.5,76.856 z M 392.888,280.634 L 368.816,294.53 L 344.754,280.634 L 344.754,252.839 L 368.816,238.943 L 392.888,252.839 L 392.888,280.634 z"
id="path6571" />
</g>
</g>
<g
id="g6573">
<g
id="g6575">
<path
style="fill:#ffffff"
d="M 419.5,76.856 L 419.5,46.465 C 419.5,33.679 406.673,22.846 394.58,18.624 L 394.58,48.954 C 394.58,64.255 383.022,76.664 368.774,76.664 C 354.517,76.664 342.979,64.255 342.979,48.954 L 342.979,18.541 C 330.766,22.687 317.798,33.6 317.798,46.457 L 317.798,76.847 C 317.798,89.781 329.734,100.754 342.838,104.834 L 342.838,223.446 C 328.146,232.278 318.28,248.331 318.28,266.717 C 318.28,294.613 340.891,317.244 368.794,317.244 C 396.693,317.244 419.315,294.613 419.315,266.717 C 419.315,248.182 409.295,232.026 394.408,223.235 L 394.408,104.833 C 407.53,100.768 419.5,89.794 419.5,76.856 z M 392.888,280.634 L 368.816,294.53 L 344.754,280.634 L 344.754,252.839 L 368.816,238.943 L 392.888,252.839 L 392.888,280.634 z"
id="path6577" />
</g>
<g
id="g6579">
<path
style="fill:none;stroke:#000000;stroke-width:5.15910006"
d="M 419.5,76.856 L 419.5,46.465 C 419.5,33.679 406.673,22.846 394.58,18.624 L 394.58,48.954 C 394.58,64.255 383.022,76.664 368.774,76.664 C 354.517,76.664 342.979,64.255 342.979,48.954 L 342.979,18.541 C 330.766,22.687 317.798,33.6 317.798,46.457 L 317.798,76.847 C 317.798,89.781 329.734,100.754 342.838,104.834 L 342.838,223.446 C 328.146,232.278 318.28,248.331 318.28,266.717 C 318.28,294.613 340.891,317.244 368.794,317.244 C 396.693,317.244 419.315,294.613 419.315,266.717 C 419.315,248.182 409.295,232.026 394.408,223.235 L 394.408,104.833 C 407.53,100.768 419.5,89.794 419.5,76.856 z M 392.888,280.634 L 368.816,294.53 L 344.754,280.634 L 344.754,252.839 L 368.816,238.943 L 392.888,252.839 L 392.888,280.634 z"
id="path6581" />
</g>
</g>
<g
style="opacity:0.15"
id="g6583">
<g
id="g6585">
<linearGradient
id="linearGradient16451"
gradientUnits="userSpaceOnUse"
x1="-229.82201"
y1="896.29388"
x2="-290.0098"
y2="896.29388"
gradientTransform="translate(614.4004,-728.4014)">
<stop
offset="0.3187"
style="stop-color:#FFFFFF"
id="stop16453" />
<stop
offset="1"
style="stop-color:#000000"
id="stop16455" />
</linearGradient>
<path
style="fill:url(#SVGID_2_)"
d="M 419.5,76.856 L 419.5,46.465 C 419.5,33.679 406.673,22.846 394.58,18.624 L 394.58,48.954 C 394.58,64.255 383.022,76.664 368.774,76.664 C 354.517,76.664 342.979,64.255 342.979,48.954 L 342.979,18.541 C 330.766,22.687 317.798,33.6 317.798,46.457 L 317.798,76.847 C 317.798,89.781 329.734,100.754 342.838,104.834 L 342.838,223.446 C 328.146,232.278 318.28,248.331 318.28,266.717 C 318.28,294.613 340.891,317.244 368.794,317.244 C 396.693,317.244 419.315,294.613 419.315,266.717 C 419.315,248.182 409.295,232.026 394.408,223.235 L 394.408,104.833 C 407.53,100.768 419.5,89.794 419.5,76.856 z M 392.888,280.634 L 368.816,294.53 L 344.754,280.634 L 344.754,252.839 L 368.816,238.943 L 392.888,252.839 L 392.888,280.634 z"
id="path6592" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,246 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg17252"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="ben_Movie_clapper.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs17254">
<linearGradient
x1="0"
y1="0"
x2="1"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(14.086716,1.338623,1.338623,-14.086716,95.941895,410.67627)"
spreadMethod="pad"
id="linearGradient126385">
<stop
style="stop-opacity:1;stop-color:#bdbcbc"
offset="0"
id="stop126387" />
<stop
style="stop-opacity:1;stop-color:#5a5758"
offset="1"
id="stop126389" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient126385"
id="linearGradient3043"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(17.608395,-1.6732787,1.6732787,17.608395,-1614.5592,-21.82338)"
spreadMethod="pad"
x1="0"
y1="0"
x2="1"
y2="0" />
<linearGradient
x1="0"
y1="0"
x2="1"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(362.91504,0,0,-362.91504,93.480469,371.84521)"
spreadMethod="pad"
id="linearGradient126357">
<stop
style="stop-opacity:1;stop-color:#ffffff"
offset="0"
id="stop126359" />
<stop
style="stop-opacity:1;stop-color:#b3c4d3"
offset="1"
id="stop126361" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient126357"
id="linearGradient3041"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(453.6438,0,0,453.6438,-1617.636,26.71545)"
spreadMethod="pad"
x1="0"
y1="0"
x2="1"
y2="0" />
<linearGradient
x1="0"
y1="0"
x2="1"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(360.521,0,0,-360.521,75.614746,472.22754)"
spreadMethod="pad"
id="linearGradient126327">
<stop
style="stop-opacity:1;stop-color:#ffffff"
offset="0"
id="stop126329" />
<stop
style="stop-opacity:1;stop-color:#b3c4d3"
offset="1"
id="stop126331" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient126327"
id="linearGradient3039"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(450.65125,0,0,450.65125,-1639.9682,-98.76246)"
spreadMethod="pad"
x1="0"
y1="0"
x2="1"
y2="0" />
<filter
id="filter6705"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur6707"
stdDeviation="5.8118586"
inkscape:collect="always" />
</filter>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective17260" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="641"
inkscape:window-height="721"
inkscape:window-x="50"
inkscape:window-y="25" />
<metadata
id="metadata17257">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g3045"
transform="translate(1211.4285,22.857167)">
<path
transform="matrix(1.3992,0,0,1.4336064,-1280.0194,-131.57106)"
d="M 511.42857,435.21933 A 178.57143,174.28572 0 1 1 154.28572,435.21933 A 178.57143,174.28572 0 1 1 511.42857,435.21933 z"
sodipodi:ry="174.28572"
sodipodi:rx="178.57143"
sodipodi:cy="435.21933"
sodipodi:cx="332.85715"
id="path2389"
style="fill:#55ddff;fill-rule:evenodd;stroke:#000000;stroke-width:0.7060656px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:type="arc" />
<g
transform="matrix(0.5785663,0,0,0.5785663,-20.749949,427.99354)"
id="g3025">
<path
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter6705)"
d="M -1209.9316,-224.87432 C -1315.4365,-183.56363 -1419.172,-137.92497 -1523.7753,-94.43682 C -1560.5035,-79.06894 -1597.3147,-63.93282 -1633.9628,-48.37432 L -1591.4628,407.93818 C -1590.939,413.45566 -1586.1104,417.48443 -1580.6816,416.96943 L -1122.4004,373.43818 C -1116.9717,372.92315 -1113.0028,368.04943 -1113.5254,362.53193 L -1150.1816,-23.34307 C -1151.4544,-31.13288 -1162.7479,-35.55874 -1169.6191,-34.09307 C -1300.7797,-19.80816 -1432.1402,-7.3186 -1563.4628,5.40693 C -1436.5983,-47.0097 -1309.7337,-99.42642 -1182.8691,-151.84307 L -1209.9316,-224.87432 z"
id="path5888"
sodipodi:nodetypes="cccccccccccc"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<path
d="M -1166.9541,-28.39687 L -1589.3366,11.73443 L -1604.6916,18.14063 L -1607.3541,13.44813 L -1625.2453,15.14693 C -1630.6741,15.66193 -1634.6453,20.55063 -1634.1216,26.06813 L -1597.4591,411.92943 C -1596.9353,417.44693 -1592.1141,421.49813 -1586.6853,420.98313 L -1128.3928,377.43693 C -1122.9641,376.92193 -1118.9916,372.03563 -1119.5141,366.51813 L -1156.1778,-19.34437 C -1156.7016,-24.86187 -1161.5253,-28.91187 -1166.9541,-28.39687"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path5767"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<path
d="M -1581.4716,14.37443 L -1188.8603,-147.85307 L -1185.1103,-159.10307 L -1631.9428,-40.05807 L -1599.4891,16.08563 L -1596.8241,20.79813 L -1581.4716,14.37443 z"
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path5769"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<path
d="M -1589.4953,10.06071 L -1189.3166,-157.36304 L -1234.7466,-214.01054 L -1639.9678,-44.37054 L -1607.5128,11.77196 L -1604.8491,16.48446 L -1589.4953,10.06071 z"
style="fill:url(#linearGradient3039);stroke:none"
id="path5777"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<path
d="M -1163.9916,-30.37054 L -1604.5153,12.83571 L -1617.6366,83.80196 L -1169.7203,42.93321 L -1163.9916,-30.37054 z"
style="fill:url(#linearGradient3041);stroke:none"
id="path5795"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<path
style="fill:url(#linearGradient3043);stroke:none"
d="M -1605.6816,-31.49932 C -1605.9804,-31.50124 -1606.2839,-31.49697 -1606.5879,-31.46807 C -1610.5397,-31.09229 -1613.626,-28.1613 -1614.4004,-24.46807 C -1614.4599,-24.18426 -1614.5252,-23.91642 -1614.5566,-23.62432 C -1614.6226,-23.03011 -1614.6153,-22.42999 -1614.5566,-21.81182 C -1614.5277,-21.50807 -1614.4898,-21.2298 -1614.4316,-20.93682 C -1614.3726,-20.63351 -1614.3014,-20.35222 -1614.2129,-20.06182 C -1614.127,-19.78093 -1614.0123,-19.51676 -1613.9004,-19.24932 C -1613.8967,-19.24059 -1613.904,-19.22678 -1613.9004,-19.21807 C -1613.7913,-18.96004 -1613.6884,-18.71227 -1613.5566,-18.46807 C -1613.0111,-17.44669 -1612.278,-16.5702 -1611.4004,-15.84307 C -1610.5301,-15.12197 -1609.5257,-14.56389 -1608.4316,-14.21807 C -1608.4224,-14.21514 -1608.4095,-14.22096 -1608.4004,-14.21807 C -1608.136,-14.13549 -1607.8615,-14.05691 -1607.5879,-13.99932 C -1607.0208,-13.88 -1606.4353,-13.81593 -1605.8379,-13.81182 C -1605.5392,-13.80976 -1605.2355,-13.81432 -1604.9316,-13.84307 C -1604.3104,-13.90217 -1603.7236,-14.03954 -1603.1504,-14.21807 C -1602.8694,-14.30397 -1602.6054,-14.38733 -1602.3379,-14.49932 C -1601.8028,-14.72385 -1601.3111,-14.99245 -1600.8379,-15.31182 C -1600.4737,-15.55753 -1600.1286,-15.8293 -1599.8066,-16.12432 C -1599.7101,-16.21275 -1599.6178,-16.31305 -1599.5254,-16.40557 C -1599.2082,-16.72069 -1598.9165,-17.04665 -1598.6504,-17.40557 C -1598.5797,-17.5008 -1598.4984,-17.58878 -1598.4316,-17.68682 C -1598.4267,-17.69412 -1598.4365,-17.71075 -1598.4316,-17.71807 C -1598.2728,-17.95255 -1598.1301,-18.18758 -1597.9941,-18.43682 C -1597.8581,-18.68649 -1597.731,-18.92404 -1597.6191,-19.18682 C -1597.2836,-19.97395 -1597.0572,-20.84177 -1596.9629,-21.71807 C -1596.9,-22.30226 -1596.9052,-22.89166 -1596.9629,-23.49932 C -1596.9919,-23.80496 -1597.0293,-24.11089 -1597.0879,-24.40557 C -1597.1395,-24.66548 -1597.2019,-24.90511 -1597.2754,-25.15557 C -1597.2845,-25.18707 -1597.2971,-25.21797 -1597.3066,-25.24932 C -1597.3797,-25.48834 -1597.4646,-25.70745 -1597.5566,-25.93682 C -1597.6425,-26.15096 -1597.7363,-26.35679 -1597.8379,-26.56182 C -1597.8523,-26.59102 -1597.8543,-26.62656 -1597.8691,-26.65557 C -1597.9,-26.71651 -1597.9306,-26.78299 -1597.9629,-26.84307 C -1598.0597,-27.02247 -1598.1669,-27.20293 -1598.2754,-27.37432 C -1598.4175,-27.59898 -1598.5831,-27.82064 -1598.7441,-28.03057 C -1599.1521,-28.56525 -1599.6039,-29.04126 -1600.1191,-29.46807 C -1600.3139,-29.62946 -1600.5048,-29.79259 -1600.7129,-29.93682 C -1600.8061,-30.00149 -1600.8983,-30.06324 -1600.9941,-30.12432 C -1601.0139,-30.13696 -1601.0368,-30.14307 -1601.0566,-30.15557 C -1601.2623,-30.28444 -1601.4967,-30.41877 -1601.7129,-30.53057 C -1601.7332,-30.54107 -1601.7549,-30.55147 -1601.7754,-30.56182 C -1602.1208,-30.73712 -1602.4692,-30.87021 -1602.8379,-30.99932 C -1602.9248,-31.02977 -1602.9998,-31.0653 -1603.0879,-31.09307 C -1603.3666,-31.18121 -1603.6424,-31.2515 -1603.9316,-31.31182 C -1604.1547,-31.35864 -1604.3908,-31.4073 -1604.6191,-31.43682 C -1604.9647,-31.48055 -1605.3262,-31.49703 -1605.6816,-31.49932 z"
id="path5811"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<path
d="M -1120.3341,352.01693 C -1119.9016,356.71563 -1123.3716,360.87813 -1128.0878,361.31063 L -1557.7703,400.89063 C -1562.4828,401.32693 -1566.6566,397.86693 -1567.0903,393.16943 L -1593.9953,101.06813 C -1594.4303,96.36813 -1590.9591,92.20693 -1586.2441,91.77313 L -1156.5616,52.19313 C -1151.8466,51.75813 -1147.6753,55.21563 -1147.2416,59.91563 L -1120.3341,352.01693 z"
style="fill:none;stroke:#231f20;stroke-width:2.6312499;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5823"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
<flowRoot
xml:space="preserve"
id="flowRoot3260"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:condensed;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Serif"
transform="matrix(6.7300855,-0.6889226,0.7104432,5.2633659,7014.7995,-1638.0212)"
inkscape:transform-center-x="26.164712"
inkscape:transform-center-y="-92.859779"><flowRegion
id="flowRegion3262"><rect
id="rect3264"
width="65.714287"
height="37.14286"
x="-1285.7142"
y="178.07646"
style="fill:#ffffff" /></flowRegion><flowPara
id="flowPara3266">FILM</flowPara></flowRoot> <path
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M -1215.9316,-220.87432 L -1242.0878,-211.12432 L -1196.7441,-154.03057 L -1184.6816,-159.18682 L -1215.9316,-220.87432 z M -1283.7441,-194.03057 L -1342.7441,-168.74932 L -1297.3691,-111.62432 L -1238.3691,-136.93682 L -1283.7441,-194.03057 z M -1395.6816,-147.87432 L -1454.7129,-122.56182 L -1409.3379,-65.46807 L -1350.3066,-90.74932 L -1395.6816,-147.87432 z M -1503.8066,-101.62432 L -1562.8379,-76.34307 L -1517.4629,-19.21807 L -1458.4316,-44.53057 L -1503.8066,-101.62432 z M -1640.8066,-44.28057 L -1630.1191,68.06318 L -1579.5879,48.03193 L -1577.0879,20.71943 L -1640.8066,-44.28057 z M -1163.1816,-27.12432 L -1176.6191,44.56318 L -1163.5566,43.50068 L -1159.3378,-25.74932 L -1163.1816,-27.12432 z M -1225.2128,-24.56182 L -1288.0879,-18.59307 L -1301.5879,57.43818 L -1239.1816,50.40693 L -1225.2128,-24.56182 z M -1329.9629,-13.90557 L -1392.4941,-8.65557 L -1405.8066,64.81318 L -1342.5566,62.75068 L -1329.9629,-13.90557 z M -1443.5879,-3.12432 L -1506.0254,2.96943 L -1519.4004,75.59443 L -1456.9629,71.71943 L -1443.5879,-3.12432 z"
id="path5779"
inkscape:export-filename="/tmp/movie_clap.png"
inkscape:export-xdpi="41.799999"
inkscape:export-ydpi="41.799999" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.2 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 52 KiB

View file

@ -0,0 +1,156 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg19439"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="ryanlerch_Green_-_Query_Icon.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs19441">
<linearGradient
id="linearGradient3195">
<stop
style="stop-color:#ffffff;stop-opacity:0.37440759"
offset="0"
id="stop3197" />
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="1"
id="stop3199" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3195"
id="linearGradient13399"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.275436,0,0,0.275436,1498.7463,2113.3387)"
x1="355.05255"
y1="230.74762"
x2="324.75836"
y2="593.93323" />
<linearGradient
id="linearGradient2028">
<stop
style="stop-color:#05fa4a;stop-opacity:1;"
offset="0"
id="stop2030" />
<stop
style="stop-color:#21fa4a;stop-opacity:0;"
offset="1"
id="stop2032" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2028"
id="radialGradient13397"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,1732.0227,2078.8494)"
cx="191.85158"
cy="191.79465"
fx="191.85158"
fy="191.79465"
r="109.16138" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective19447" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="641"
inkscape:window-height="721"
inkscape:window-x="50"
inkscape:window-y="25" />
<metadata
id="metadata19444">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g13386"
transform="translate(-417.14286,-1294.2858)">
<path
transform="matrix(1.3992,0,0,1.4336065,305.69485,1171.2861)"
d="M 511.42857,435.21933 A 178.57143,174.28572 0 1 1 154.28572,435.21933 A 178.57143,174.28572 0 1 1 511.42857,435.21933 z"
sodipodi:ry="174.28572"
sodipodi:rx="178.57143"
sodipodi:cy="435.21933"
sodipodi:cx="332.85715"
id="path6196"
style="fill:#008080;fill-rule:evenodd;stroke:#000000;stroke-width:0.70606565px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:type="arc" />
<g
transform="matrix(2.5175738,0,0,2.5175738,-3254.1317,-3845.9587)"
id="g13373">
<path
id="path1996"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.55087149;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1608.6263,2168.8919 C 1603.6291,2161.7098 1591.6324,2159.3956 1587.7413,2164.6946 C 1567.3225,2192.5014 1533.2093,2271.9965 1535.1403,2272.2111 C 1533.7018,2276.3585 1530.4652,2285.1811 1533.3422,2290.4074 C 1542.5991,2300.9739 1550.0025,2304.8442 1563.8063,2301.0516 L 1659.4718,2276.4031 C 1668.5159,2273.0358 1669.0157,2262.6591 1665.1123,2256.3604 C 1650.2542,2232.3849 1626.6782,2194.8362 1608.6263,2168.8919 z"
sodipodi:nodetypes="csccccss" />
<path
id="path1998"
style="fill:url(#radialGradient13397);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80139303;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1599.6603,2179.4982 C 1581.0729,2213.0102 1567.7497,2246.5221 1553.5908,2280.034 C 1552.2945,2282.6266 1551.964,2286.916 1553.1985,2288.6382 C 1554.433,2290.3605 1558.949,2290.7234 1563.0321,2289.8589 L 1653.6128,2268.2027 C 1656.7126,2267.4556 1659.8749,2266.4178 1660.6238,2264.6262 C 1661.3727,2262.8347 1659.5177,2259.8444 1658.1064,2257.4535 C 1642.7408,2232.4771 1626.9585,2207.084 1608.8438,2179.3584 C 1607.3215,2176.9447 1605.4878,2175.4678 1603.8724,2175.5441 C 1602.2588,2175.6203 1600.7252,2177.3961 1599.6603,2179.4982 z"
sodipodi:nodetypes="ccsccsccsc" />
<path
id="path2010"
style="fill:url(#linearGradient13399);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.66274643;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1601.2848,2185.6241 C 1585.3915,2216.4598 1572.5503,2247.2956 1559.3296,2278.1313 C 1558.2576,2280.2754 1556.5856,2283.6955 1557.6065,2285.1198 C 1558.6274,2286.5441 1559.5649,2286.2085 1562.9417,2285.4935 L 1591.4843,2278.3084 C 1587.8916,2251.7741 1589.5517,2213.0633 1619.1042,2202.2854 L 1608.8795,2185.5085 C 1607.6206,2183.5124 1606.1042,2182.291 1604.7683,2182.3541 C 1603.4338,2182.4171 1602.1656,2183.8857 1601.2848,2185.6241 z"
sodipodi:nodetypes="ccsccccsc" />
<path
style="fill:#0f6523;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.10572135;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1606.7368,2258.406 C 1603.2409,2257.8446 1599.8756,2260.5616 1599.232,2264.461 C 1598.5857,2268.36 1600.9015,2271.9762 1604.3974,2272.5376 C 1607.8932,2273.099 1611.2423,2270.3927 1611.8859,2266.4933 C 1612.5321,2262.5943 1610.2326,2258.9675 1606.7368,2258.406 z"
id="path2264" />
<path
id="path2268"
d="M 1608.7296,2260.3988 C 1605.2337,2259.8374 1601.8684,2262.5544 1601.2248,2266.4538 C 1600.5785,2270.3528 1602.8943,2273.969 1606.3902,2274.5304 C 1609.886,2275.0918 1613.2351,2272.3855 1613.8787,2268.4861 C 1614.5249,2264.5871 1612.2254,2260.9603 1608.7296,2260.3988 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.10572135;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccsssssccccssssscc"
id="path1992"
d="M 1611.3909,2240.6374 L 1611.7398,2250.9614 C 1604.1472,2248.3348 1602.4307,2252.9047 1597.7761,2253.353 L 1597.4272,2231.8945 L 1599.9615,2231.6504 C 1603.8044,2231.2804 1606.8688,2230.1156 1609.1547,2228.1562 C 1611.4406,2226.1968 1612.5835,2223.776 1612.5836,2220.8938 C 1612.5835,2218.6742 1611.7222,2216.8109 1609.9995,2215.3037 C 1608.2768,2213.7967 1606.2891,2213.1516 1604.0363,2213.3685 C 1602.0155,2213.5632 1600.2596,2214.5025 1598.7689,2216.1865 C 1597.2781,2217.8706 1596.5327,2219.7396 1596.5327,2221.7935 C 1596.5327,2221.7935 1596.6105,2221.5299 1596.5327,2222.8371 C 1590.8727,2218.306 1582.569,2224.1819 1582.569,2224.1819 L 1582.569,2223.5855 C 1582.569,2218.02 1584.8134,2212.9505 1589.3024,2208.377 C 1593.7913,2203.8037 1599.0836,2201.2235 1605.1793,2200.6364 C 1610.9437,2200.0813 1615.9295,2201.6303 1620.1369,2205.2833 C 1624.3442,2208.9365 1626.4479,2213.5458 1626.4479,2219.1114 C 1626.4479,2223.2856 1625.189,2227.4486 1622.6712,2231.6002 C 1620.1534,2235.7518 1616.3933,2238.7643 1611.3909,2240.6374 L 1611.3909,2240.6374 z"
style="font-size:84.60372162px;font-style:normal;font-weight:bold;fill:#0f6523;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Tw Cen MT" />
<path
style="font-size:84.60372162px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Tw Cen MT"
d="M 1613.8334,2242.382 L 1613.6589,2254.4507 C 1608.1846,2258.4026 1600.2576,2255.245 1600.2186,2255.0976 L 1599.8697,2233.6391 L 1602.404,2233.395 C 1606.2469,2233.025 1609.3113,2231.8602 1611.5972,2229.9008 C 1613.8831,2227.9415 1615.026,2225.5207 1615.026,2222.6384 C 1615.026,2220.4189 1614.1647,2218.5555 1612.442,2217.0483 C 1610.7193,2215.5413 1608.7316,2214.8962 1606.4788,2215.1131 C 1604.4579,2215.3078 1602.7021,2216.2471 1601.2114,2217.9311 C 1599.7206,2219.6152 1598.9752,2221.4842 1598.9752,2223.5382 C 1598.9752,2223.5382 1599.053,2223.2746 1598.9752,2224.5817 C 1591.588,2229.673 1585.0114,2225.9265 1585.0114,2225.9265 L 1585.0114,2225.3302 C 1585.0114,2219.7646 1587.2559,2214.6951 1591.7449,2210.1217 C 1596.2338,2205.5483 1601.5261,2202.9681 1607.6218,2202.381 C 1613.3862,2201.826 1618.372,2203.3749 1622.5794,2207.0279 C 1626.7867,2210.6811 1628.8904,2215.2904 1628.8904,2220.856 C 1628.8904,2225.0302 1627.6315,2229.1932 1625.1137,2233.3448 C 1622.5959,2237.4965 1618.8358,2240.5089 1613.8334,2242.382 L 1613.8334,2242.382 z"
id="text1985"
sodipodi:nodetypes="cccccsssssccccssssscc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.9 KiB

View file

@ -0,0 +1,459 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg18138"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="sheikh_tuhin_Diary.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs18140">
<linearGradient
gradientTransform="translate(0,154)"
gradientUnits="userSpaceOnUse"
xlink:href="#linearGradient3939"
id="linearGradient4824"
y2="148.45744"
x2="848.66376"
y1="146.64789"
x1="806.42859" />
<linearGradient
gradientTransform="translate(0,70)"
gradientUnits="userSpaceOnUse"
xlink:href="#linearGradient3939"
id="linearGradient4822"
y2="148.45744"
x2="848.66376"
y1="146.64789"
x1="806.42859" />
<linearGradient
id="linearGradient3939">
<stop
offset="0"
style="stop-color:#b3b3b3;stop-opacity:1"
id="stop3941" />
<stop
offset="0.5"
style="stop-color:#ffffff;stop-opacity:1"
id="stop3947" />
<stop
offset="1"
style="stop-color:#808080;stop-opacity:1"
id="stop3943" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
xlink:href="#linearGradient3939"
id="linearGradient4820"
y2="148.45744"
x2="848.66376"
y1="146.64789"
x1="806.42859" />
<linearGradient
id="linearGradient4758">
<stop
offset="0"
style="stop-color:#000000;stop-opacity:1"
id="stop4760" />
<stop
offset="1"
style="stop-color:#918a6f;stop-opacity:0"
id="stop4762" />
</linearGradient>
<radialGradient
gradientTransform="matrix(2.7487689e-2,1.0810973,-1.5543374,3.9520171e-2,716.40852,-952.26674)"
gradientUnits="userSpaceOnUse"
xlink:href="#linearGradient4758"
id="radialGradient4764"
fy="-55.67453"
fx="841.56232"
r="181.35938"
cy="-55.67453"
cx="841.56232" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective18146" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="641"
inkscape:window-height="721"
inkscape:window-x="50"
inkscape:window-y="25" />
<metadata
id="metadata18143">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g7143"
transform="translate(1237.1431,-728.57143)">
<path
transform="matrix(1.3992,0,0,1.4336065,-1311.4482,619.8575)"
d="M 511.42857,435.21933 A 178.57143,174.28572 0 1 1 154.28572,435.21933 A 178.57143,174.28572 0 1 1 511.42857,435.21933 z"
sodipodi:ry="174.28572"
sodipodi:rx="178.57143"
sodipodi:cy="435.21933"
sodipodi:cx="332.85715"
id="path2393"
style="fill:#dd55ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.70606565px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:type="arc" />
<g
transform="translate(-1289.8834,769.20004)"
id="g7086">
<g
transform="matrix(0.9801369,-0.1728246,0.1728246,0.9801369,-345.94546,661.90527)"
id="g4826">
<path
d="M 830.8125,-165.0625 C 828.86578,-165.0625 827.23914,-162.26266 826.75,-158.4375 L 825.34375,-158.4375 C 824.79835,-162.06728 823.22571,-164.6875 821.34375,-164.6875 L 648.90625,-164.6875 C 646.57047,-164.6875 644.71875,-160.68641 644.71875,-155.6875 L 644.71875,59.3125 C 644.71875,64.31142 646.57049,68.3125 648.90625,68.3125 L 811.53125,68.3125 C 811.5479,72.447226 814.89238,75.75 819.03125,75.75 L 834.21875,75.75 C 838.36796,75.75 841.71875,72.430481 841.71875,68.28125 L 841.71875,67.96875 L 1003.2188,67.96875 C 1005.5545,67.96875 1007.4375,63.93642 1007.4375,58.9375 L 1007.4375,-156.03125 C 1007.4375,-161.03016 1005.5545,-165.0625 1003.2188,-165.0625 L 830.8125,-165.0625 z"
id="rect4731"
style="fill:url(#radialGradient4764);fill-opacity:1;stroke:none;stroke-width:0.83217633;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
transform="translate(-9.9999999,-294.28572)"
id="g4766">
<g
id="g3932">
<g
id="g3927"
style="fill:#918a6f">
<rect
width="30.162613"
height="234.1936"
rx="7.4895868"
ry="7.4895868"
x="-841.70331"
y="129.57147"
transform="scale(-1,1)"
id="rect3593"
style="fill:#918a6f;fill-opacity:1;stroke:#000000;stroke-width:0.83217633;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="180.85037"
height="233.02126"
rx="4.2162061"
ry="9.0233212"
x="644.70471"
y="123.30377"
id="rect3507"
style="fill:#918a6f;fill-opacity:1;stroke:#000000;stroke-width:1.92014647;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="180.85037"
height="233.02126"
rx="4.2162061"
ry="9.0233212"
x="-1007.4381"
y="122.93192"
transform="scale(-1,1)"
id="rect3541"
style="fill:#918a6f;fill-opacity:1;stroke:#000000;stroke-width:1.92014647;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<rect
width="22.216101"
height="230.66846"
rx="7.4895868"
ry="7.4895868"
x="-837.73004"
y="129.56914"
transform="scale(-1,1)"
id="rect3577"
style="fill:#6c6753;fill-opacity:1;stroke:#000000;stroke-width:0.83217633;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="667.27875"
y="137.61055"
id="rect3539"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="667.88794"
y="135.33701"
id="rect3537"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="668.49713"
y="133.06345"
id="rect3535"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="144.95518"
id="rect3509"
style="fill:#aad400;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="176.59944"
id="rect3511"
style="fill:#ff6600;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="208.24377"
id="rect3513"
style="fill:#5f8dd3;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="239.88794"
id="rect3515"
style="fill:#ffdd55;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="16.788687"
height="42.444939"
rx="2.4853804"
ry="6.4314876"
x="656.22656"
y="271.5322"
id="rect3517"
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.24463618;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="669.10632"
y="130.7899"
id="rect3505"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-984.86407"
y="137.23871"
transform="scale(-1,1)"
id="rect3543"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-984.25507"
y="134.96515"
transform="scale(-1,1)"
id="rect3545"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-983.64581"
y="132.6916"
transform="scale(-1,1)"
id="rect3548"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
width="149.46312"
height="211.83751"
rx="3.484468"
ry="8.2030182"
x="-983.03656"
y="130.41805"
transform="scale(-1,1)"
id="rect3550"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.66435266;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 813.56489,322.1965 L 676.95419,322.19651 L 676.95419,322.19651"
id="path4379"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,306.66252 L 676.95419,306.66253 L 676.95419,306.66253"
id="path4381"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,291.12853 L 676.95419,291.12854 L 676.95419,291.12854"
id="path4383"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,275.59463 L 676.95419,275.59464 L 676.95419,275.59464"
id="path4385"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,260.06065 L 676.95418,260.06065 L 676.95418,260.06065"
id="path4387"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,244.52666 L 676.95418,244.52667 L 676.95418,244.52667"
id="path4389"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56489,228.99276 L 676.95418,228.99277 L 676.95418,228.99277"
id="path4391"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,213.45877 L 676.95418,213.45878 L 676.95418,213.45878"
id="path4393"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,197.92479 L 676.95418,197.9248 L 676.95418,197.9248"
id="path4395"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,182.39089 L 676.95418,182.39089 L 676.95418,182.39089"
id="path4397"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,166.8569 L 676.95418,166.85691 L 676.95418,166.85691"
id="path4399"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 813.56488,151.323 L 676.95418,151.32301 L 676.95418,151.32301"
id="path4401"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,322.9208 L 838.80606,322.92081 L 838.80606,322.92081"
id="path4479"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,307.38682 L 838.80606,307.38683 L 838.80606,307.38683"
id="path4481"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,291.85283 L 838.80606,291.85284 L 838.80606,291.85284"
id="path4483"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,276.31893 L 838.80606,276.31894 L 838.80606,276.31894"
id="path4485"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,260.78495 L 838.80605,260.78495 L 838.80605,260.78495"
id="path4487"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,245.25096 L 838.80605,245.25097 L 838.80605,245.25097"
id="path4489"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41676,229.71706 L 838.80605,229.71707 L 838.80605,229.71707"
id="path4491"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,214.18307 L 838.80605,214.18308 L 838.80605,214.18308"
id="path4493"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,198.64909 L 838.80605,198.6491 L 838.80605,198.6491"
id="path4495"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,183.11519 L 838.80605,183.11519 L 838.80605,183.11519"
id="path4497"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,167.5812 L 838.80605,167.58121 L 838.80605,167.58121"
id="path4499"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 975.41675,152.0473 L 838.80605,152.04731 L 838.80605,152.04731"
id="path4501"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7577545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 C 65.054654,1599.7297 62.521751,1603.8291 59.396969,1603.8291 C 56.272187,1603.8291 53.739284,1599.7297 53.740115,1594.6737 C 53.739284,1589.6177 56.272187,1585.5183 59.396969,1585.5183 C 62.521751,1585.5183 65.054654,1589.6177 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2173.8253,180.81069)"
id="path4559"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 C 65.054654,1599.7297 62.521751,1603.8291 59.396969,1603.8291 C 56.272187,1603.8291 53.739284,1599.7297 53.740115,1594.6737 C 53.739284,1589.6177 56.272187,1585.5183 59.396969,1585.5183 C 62.521751,1585.5183 65.054654,1589.6177 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2133.5146,180.06121)"
id="path4561"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 C 65.054654,1599.7297 62.521751,1603.8291 59.396969,1603.8291 C 56.272187,1603.8291 53.739284,1599.7297 53.740115,1594.6737 C 53.739284,1589.6177 56.272187,1585.5183 59.396969,1585.5183 C 62.521751,1585.5183 65.054654,1589.6177 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2173.1373,265.09236)"
id="path4570"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 C 65.054654,1599.7297 62.521751,1603.8291 59.396969,1603.8291 C 56.272187,1603.8291 53.739284,1599.7297 53.740115,1594.6737 C 53.739284,1589.6177 56.272187,1585.5183 59.396969,1585.5183 C 62.521751,1585.5183 65.054654,1589.6177 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2132.8266,264.34288)"
id="path4572"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 C 65.054654,1599.7297 62.521751,1603.8291 59.396969,1603.8291 C 56.272187,1603.8291 53.739284,1599.7297 53.740115,1594.6737 C 53.739284,1589.6177 56.272187,1585.5183 59.396969,1585.5183 C 62.521751,1585.5183 65.054654,1589.6177 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2173.3036,110.00423)"
id="path4578"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 65.053823,1594.6737 C 65.054654,1599.7297 62.521751,1603.8291 59.396969,1603.8291 C 56.272187,1603.8291 53.739284,1599.7297 53.740115,1594.6737 C 53.739284,1589.6177 56.272187,1585.5183 59.396969,1585.5183 C 62.521751,1585.5183 65.054654,1589.6177 65.053823,1594.6737 z"
transform="matrix(4.984028e-8,0.8321763,-0.8321763,4.984028e-8,2132.9929,109.25475)"
id="path4580"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 825.93492,138.05523 C 814.11769,138.05507 804.4263,147.24529 803.6222,158.85964 L 808.12111,158.85965 C 808.91716,149.71907 816.58927,142.52802 825.93492,142.52818 C 835.28043,142.52808 842.95249,149.71912 843.74854,158.85963 L 848.24765,158.85964 C 847.44324,147.24525 837.75207,138.05526 825.93492,138.05523 z"
id="path4582"
style="fill:url(#linearGradient4820);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 825.93492,208.05523 C 814.11769,208.05507 804.4263,217.24529 803.6222,228.85964 L 808.12111,228.85965 C 808.91716,219.71907 816.58927,212.52802 825.93492,212.52818 C 835.28043,212.52808 842.95249,219.71912 843.74854,228.85963 L 848.24765,228.85964 C 847.44324,217.24525 837.75207,208.05526 825.93492,208.05523 z"
id="path4719"
style="fill:url(#linearGradient4822);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="M 825.93492,292.05523 C 814.11769,292.05507 804.4263,301.24529 803.6222,312.85964 L 808.12111,312.85965 C 808.91716,303.71907 816.58927,296.52802 825.93492,296.52818 C 835.28043,296.52808 842.95249,303.71912 843.74854,312.85963 L 848.24765,312.85964 C 847.44324,301.24525 837.75207,292.05526 825.93492,292.05523 z"
id="path4723"
style="fill:url(#linearGradient4824);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -0,0 +1,367 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg13401"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="valessiobrito_Aquarela_Colors.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs13403">
<linearGradient
id="linearGradient5074"
inkscape:collect="always">
<stop
id="stop5076"
offset="0"
style="stop-color:#555753;stop-opacity:1;" />
<stop
id="stop5078"
offset="1"
style="stop-color:#555753;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="193.89845"
x2="308.02252"
y1="212.37624"
x1="314.62491"
id="linearGradient5080"
xlink:href="#linearGradient5074"
inkscape:collect="always" />
<linearGradient
id="linearGradient5066"
inkscape:collect="always">
<stop
id="stop5068"
offset="0"
style="stop-color:#8ae234;stop-opacity:1;" />
<stop
id="stop5070"
offset="1"
style="stop-color:#8ae234;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="225.44589"
x2="261.44495"
y1="244.82504"
x1="274.06393"
id="linearGradient5072"
xlink:href="#linearGradient5066"
inkscape:collect="always" />
<linearGradient
id="linearGradient5058"
inkscape:collect="always">
<stop
id="stop5060"
offset="0"
style="stop-color:#fce94f;stop-opacity:1;" />
<stop
id="stop5062"
offset="1"
style="stop-color:#fce94f;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="255.19063"
x2="219.97372"
y1="258.65234"
x1="245.58508"
id="linearGradient5064"
xlink:href="#linearGradient5058"
inkscape:collect="always" />
<linearGradient
id="linearGradient5042"
inkscape:collect="always">
<stop
id="stop5044"
offset="0"
style="stop-color:#729fcf;stop-opacity:1;" />
<stop
id="stop5046"
offset="1"
style="stop-color:#729fcf;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="234.03421"
x2="187.08311"
y1="238.06487"
x1="205.11023"
id="linearGradient5048"
xlink:href="#linearGradient5042"
inkscape:collect="always" />
<linearGradient
id="linearGradient5018"
inkscape:collect="always">
<stop
id="stop5020"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1;" />
<stop
id="stop5022"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="189.4845"
x2="187.22038"
y1="195.70117"
x1="196.09668"
id="linearGradient5024"
xlink:href="#linearGradient5018"
inkscape:collect="always" />
<linearGradient
id="linearGradient5026"
inkscape:collect="always">
<stop
id="stop5028"
offset="0"
style="stop-color:#ef2929;stop-opacity:1;" />
<stop
id="stop5030"
offset="1"
style="stop-color:#ef2929;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="147.47865"
x2="210.51836"
y1="158.29492"
x1="217.7292"
id="linearGradient5032"
xlink:href="#linearGradient5026"
inkscape:collect="always" />
<linearGradient
id="linearGradient5034"
inkscape:collect="always">
<stop
id="stop5036"
offset="0"
style="stop-color:#ad7fa8;stop-opacity:1;" />
<stop
id="stop5038"
offset="1"
style="stop-color:#ad7fa8;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6472898,0,0,0.6472898,35.290346,153.357)"
gradientUnits="userSpaceOnUse"
y2="132.24878"
x2="247.96304"
y1="138.01442"
x1="249.27664"
id="linearGradient5040"
xlink:href="#linearGradient5034"
inkscape:collect="always" />
<linearGradient
id="linearGradient2839"
inkscape:collect="always">
<stop
id="stop2841"
offset="0"
style="stop-color:#f57900;stop-opacity:1;" />
<stop
id="stop2843"
offset="1"
style="stop-color:#f57900;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
y2="149.15596"
x2="72.172005"
y1="156.55286"
x1="86.422699"
id="linearGradient2845"
xlink:href="#linearGradient2839"
inkscape:collect="always" />
<linearGradient
id="linearGradient2777"
inkscape:collect="always">
<stop
id="stop2779"
offset="0"
style="stop-color:#e9b96e;stop-opacity:1;" />
<stop
id="stop2781"
offset="1"
style="stop-color:#eeeeec;stop-opacity:1" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.5116282,0,0,0.5116282,63.091103,180.32737)"
gradientUnits="userSpaceOnUse"
y2="71.670456"
x2="207.8797"
y1="368.09149"
x1="281.98495"
id="linearGradient2783"
xlink:href="#linearGradient2777"
inkscape:collect="always" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective13409" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="641"
inkscape:window-height="721"
inkscape:window-x="50"
inkscape:window-y="25" />
<metadata
id="metadata13406">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g4883"
transform="translate(608.92858,-14.642866)">
<path
transform="matrix(1.3992,0,0,1.4336065,-686.09087,-65.499637)"
d="M 511.42857,435.21933 A 178.57143,174.28572 0 1 1 154.28572,435.21933 A 178.57143,174.28572 0 1 1 511.42857,435.21933 z"
sodipodi:ry="174.28572"
sodipodi:rx="178.57143"
sodipodi:cy="435.21933"
sodipodi:cx="332.85715"
id="path2383"
style="fill:#ff5555;fill-rule:evenodd;stroke:#000000;stroke-width:0.70606565px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:type="arc" />
<g
inkscape:label="Camada 1"
id="g4863"
transform="matrix(2.8904783,0,0,2.8904783,-787.35672,-275.37381)">
<g
id="g6323">
<path
style="fill:#2e3436;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.51162815px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 211.16574,229.98402 C 208.36745,229.95613 204.71497,230.20642 200.02183,230.78343 C 139.94975,238.16934 146.34884,301.19625 146.34884,301.19625 C 157.67391,406.07616 318.18374,258.84677 234.47677,264.2631 C 157.30941,269.25628 244.18529,230.31316 211.16574,229.98402 z M 196.31253,263.00002 C 196.94858,262.97307 197.55546,263.06377 198.11922,263.28781 C 201.12588,264.48264 201.65296,268.98073 199.30236,273.3285 C 196.95174,277.67627 192.60407,280.2312 189.59739,279.03635 C 186.59074,277.84152 186.06367,273.34342 188.41427,268.99565 C 190.32412,265.46311 193.55633,263.11679 196.31253,263.00002 z"
id="path2775" />
<path
id="path2176"
d="M 208.66529,229.49162 C 205.86702,229.46373 202.21452,229.714 197.5214,230.29103 C 137.44934,237.67694 143.8484,300.70386 143.8484,300.70386 C 155.17347,405.58375 315.68332,258.35437 231.97634,263.77069 C 154.80899,268.76389 241.68485,229.82076 208.66529,229.49162 z M 193.81209,262.50762 C 194.44814,262.48066 195.05503,262.57138 195.61877,262.79542 C 198.62542,263.99025 199.1525,268.48835 196.8019,272.83611 C 194.4513,277.18387 190.10363,279.73881 187.09697,278.54396 C 184.0903,277.3491 183.56325,272.85102 185.91382,268.50325 C 187.82368,264.97071 191.05587,262.62441 193.81209,262.50762 z"
style="fill:url(#linearGradient2783);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.51162815px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path2178"
d="M 192.29318,234.09627 C 191.32926,234.23143 191.87093,235.07758 192.24522,235.87098 C 191.10441,236.25872 190.05988,236.74555 189.17546,237.29395 C 186.86207,237.13186 184.07079,236.82011 183.61151,237.37389 C 183.205,237.86402 185.44102,238.28678 187.35278,238.7489 C 186.64615,239.49574 186.23359,240.27273 186.23359,241.01923 C 186.23359,241.11391 186.23676,241.20064 186.24959,241.29104 C 184.69146,241.7192 183.26514,242.13326 183.4836,242.57011 C 183.71022,243.02328 185.32342,242.84883 187.06499,242.63407 C 188.03006,243.4107 189.75748,243.80667 191.86151,243.70529 C 191.71618,244.70702 191.08605,245.93553 192.19724,246.13551 C 193.2238,246.32028 193.54335,244.74885 194.01994,243.44948 C 194.118,243.4309 194.20881,243.40604 194.30773,243.38552 C 195.32038,243.17554 196.29207,242.87768 197.18564,242.52214 C 199.24846,243.82614 201.98932,246.45042 203.1333,246.00761 C 204.40629,245.51486 200.69713,242.61834 199.82373,241.14714 C 200.30533,240.82213 200.74253,240.49227 201.10278,240.1399 C 203.09707,240.1115 206.41085,240.66716 206.37896,239.94801 C 206.34502,239.18266 203.18497,239.92225 201.40657,239.82012 C 202.03824,239.11321 202.39785,238.36445 202.39785,237.66168 C 202.39785,237.44332 202.3527,237.24929 202.28592,237.05412 C 203.26808,236.21831 204.10402,235.45155 203.34116,235.19947 C 202.78574,235.01592 201.92584,235.26374 200.97489,235.66314 C 199.51557,234.91062 197.06575,234.73949 194.30773,235.31139 C 194.13214,235.34781 193.9689,235.39795 193.79609,235.43929 C 193.42963,234.66008 193.03558,233.99217 192.29318,234.09627 z"
style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.05552018;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2760"
d="M 172.33969,241.56283 C 171.41721,241.67053 173.19513,244.24973 172.43563,245.04831 C 171.48755,246.04516 166.90514,245.41628 166.2801,246.5512 C 165.94664,247.15672 167.07255,248.05207 167.89492,248.91749 C 165.00733,251.83225 163.48801,255.09404 164.32952,257.10355 C 165.13371,259.02398 167.87937,259.2564 171.17257,257.99891 C 171.48029,258.87387 171.82515,259.64274 172.27574,259.9175 C 172.9079,260.30298 173.57809,257.78963 174.29027,256.46402 C 174.29234,256.46016 174.2882,256.45187 174.29027,256.44803 C 174.58117,256.26813 174.87786,256.0885 175.16963,255.88842 C 175.22994,255.84709 175.28578,255.80233 175.34552,255.76052 C 176.65478,256.33586 178.88215,260.33171 179.9022,259.72563 C 180.7908,259.19767 176.94363,255.44793 177.34406,254.35355 C 177.40015,254.20026 177.5101,254.0536 177.64784,253.90587 C 177.66065,253.89212 177.68238,253.8876 177.69581,253.8739 C 177.75213,253.82199 177.80023,253.76625 177.85568,253.71402 C 177.89178,253.68003 177.93189,253.65218 177.9676,253.61808 C 179.27346,252.5694 182.04621,251.61538 182.17256,250.48435 C 182.22994,249.97056 181.61814,249.96963 180.90946,250.0047 C 182.05189,248.10663 182.50448,246.30531 181.96471,245.01634 C 181.65115,244.2676 181.02729,243.78056 180.20598,243.52941 C 180.1692,243.41755 180.12233,243.31807 180.0461,243.24162 C 179.82045,243.0154 179.4633,243.11175 179.03883,243.33756 C 177.86662,243.28666 176.44568,243.56024 174.91383,244.16895 C 174.05343,243.08419 173.13778,241.46968 172.33969,241.56283 z"
style="opacity:1;fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
transform="matrix(0.3478201,-0.7302535,0.841701,0.5200168,-28.22619,407.96749)"
d="M 277.17293,114.01632 A 13.473684,6.7368422 0 1 1 250.22556,114.01632 A 13.473684,6.7368422 0 1 1 277.17293,114.01632 z"
sodipodi:ry="6.7368422"
sodipodi:rx="13.473684"
sodipodi:cy="114.01632"
sodipodi:cx="263.69925"
id="path2762"
style="opacity:1;fill:#ce5c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
id="path2764"
d="M 165.00103,290.27944 C 164.5501,290.36435 163.92232,291.02831 163.22632,291.89426 C 161.16548,291.03384 158.89124,291.36821 156.84695,292.6457 C 156.54202,291.58899 156.17733,290.77713 155.47196,290.98292 C 154.69121,291.21068 154.98315,292.44247 155.36003,293.76491 C 154.37529,294.65896 153.48609,295.79859 152.73795,297.12245 C 150.19877,296.51494 146.9629,295.36992 146.50248,296.53088 C 145.87682,298.10844 150.63352,300.02309 151.0112,301.63117 C 150.95475,301.87784 150.89641,302.12023 150.85131,302.36663 C 149.93646,304.03383 145.41115,306.05404 146.16672,307.57886 C 146.57352,308.39983 148.65686,308.10814 150.77137,307.77072 C 151.23628,310.66437 152.53731,313.12607 154.54463,314.48584 C 154.46992,315.20082 154.57643,315.70266 155.04026,315.78089 C 155.37594,315.8375 155.66291,315.60199 155.90365,315.18932 C 158.71722,316.24813 161.88209,315.11015 164.32952,312.43933 C 164.94268,312.78771 165.46761,312.94954 165.84841,312.72712 C 166.44847,312.37661 166.35146,311.27685 166.08823,310.00908 C 166.5299,309.24804 166.94001,308.43487 167.27137,307.54688 C 167.81406,306.09265 168.14264,304.60617 168.27866,303.15007 C 170.31856,302.32222 172.60917,301.52018 172.54756,300.46403 C 172.48789,299.44138 170.20632,299.92213 168.26266,300.12826 C 168.01905,297.62379 167.17584,295.36982 165.80044,293.78088 C 165.90303,292.2687 165.87734,290.93242 165.38475,290.40733 C 165.27726,290.29276 165.15134,290.25112 165.00103,290.27944 z"
style="opacity:1;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2766"
d="M 187.06499,303.38991 C 186.1593,303.47396 185.80528,304.91861 185.62605,306.74746 C 182.64403,306.93546 179.6446,308.5944 177.39202,311.30416 C 175.94285,310.42528 174.72659,309.892 174.24232,310.5527 C 173.81423,311.1367 174.72524,312.04669 176.11295,313.07886 C 175.73228,313.69976 175.39232,314.36649 175.08969,315.06141 C 173.98013,317.60936 173.59809,320.25326 173.85859,322.67189 C 172.63599,323.10588 171.80854,323.59753 171.87605,324.20677 C 171.95089,324.88264 172.90173,324.89186 174.22633,324.63846 C 175.00636,327.5257 176.79174,329.89307 179.39056,331.0498 C 180.52463,331.55456 181.71653,331.78014 182.924,331.76927 C 182.93659,332.73295 183.15076,333.45956 183.77139,333.68789 C 184.75181,334.04852 185.53415,332.70676 186.29756,331.11374 C 188.13203,330.42324 189.87434,329.20871 191.33387,327.56433 C 193.10338,329.27046 194.70946,332.58372 196.41819,331.84921 C 197.97869,331.17843 193.94773,328.77502 192.02139,326.74892 C 192.6914,325.87581 193.269,324.89824 193.76414,323.83903 C 197.08383,323.62338 202.29728,324.39915 202.63768,322.71985 C 203.04345,320.71793 196.91917,321.43886 194.96326,320.1937 C 195.12783,319.36245 195.21182,318.54345 195.23505,317.73147 C 197.19047,315.51504 201.76658,312.64836 200.78301,311.24019 C 199.98705,310.10058 197.28261,312.2108 194.80335,313.79832 C 194.01433,310.94036 192.23458,308.61503 189.65511,307.46693 C 189.38182,307.34529 189.10354,307.23768 188.8237,307.14717 C 188.48541,305.01247 188.03869,303.29954 187.06499,303.38991 z"
style="opacity:1;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2768"
d="M 213.38185,290.10354 C 212.40357,290.13009 212.46746,291.66587 212.59844,293.31721 C 210.55456,293.50473 208.50847,294.44997 206.77866,296.00327 C 204.8297,295.30715 203.00446,294.73197 202.50977,295.4277 C 201.99372,296.15341 203.21137,297.44283 204.47633,298.73728 C 204.09111,299.344 203.73701,299.99916 203.43707,300.68787 C 202.92192,301.87084 202.60321,303.07935 202.42982,304.26925 C 201.5538,304.63273 200.91336,305.05375 200.97489,305.64427 C 201.02215,306.09815 201.54127,306.33638 202.28592,306.49165 C 202.38955,310.2538 204.18172,313.55704 207.27429,314.93351 C 210.74734,316.47934 214.87738,315.16545 217.79465,311.97566 C 218.99667,313.15592 220.13476,314.09932 220.8964,313.7184 C 221.99218,313.17033 220.82896,310.5916 220.12895,308.44223 C 220.17104,308.35083 220.21645,308.26325 220.25686,308.17043 C 220.65034,307.26686 220.92768,306.34974 221.12023,305.43641 C 223.20462,305.81262 226.87096,308.17215 227.09988,306.8274 C 227.35999,305.29947 222.48326,304.1955 221.40802,302.6864 C 221.4072,302.2535 221.38877,301.82694 221.34407,301.40734 C 222.04218,299.61682 225.14411,297.22785 223.9182,296.06721 C 223.19456,295.38211 221.61647,296.33031 220.04901,297.28234 C 219.20055,295.80249 217.97619,294.61759 216.41965,293.92479 C 215.93484,293.709 215.43814,293.55227 214.93273,293.44513 C 214.66982,291.64509 214.3241,290.07801 213.38185,290.10354 z"
style="opacity:1;fill:#73d216;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path2770"
d="M 236.88478,267.24018 C 236.18482,267.20131 235.69982,268.92879 235.14203,270.48583 C 233.80449,270.70836 232.48043,271.23484 231.24089,272.00473 C 228.98927,270.80072 226.03913,268.91015 224.8935,269.68639 C 223.44318,270.66908 228.84525,272.83788 228.44291,274.33901 C 228.29291,274.50362 228.15514,274.67709 228.01123,274.85063 C 226.06936,276.17069 218.1728,276.57887 218.05046,278.38409 C 217.93617,280.07061 223.3874,280.86221 224.65368,282.28524 C 224.56267,282.87046 224.51301,283.45382 224.49379,284.02797 C 223.41085,285.54932 220.76424,287.21151 221.77576,288.26489 C 222.24363,288.75214 223.45248,288.3185 224.86152,287.62536 C 225.58771,290.56252 227.34527,292.98402 229.96181,294.14862 C 235.05504,296.41559 241.43478,293.08097 244.20746,286.71402 C 245.78672,283.08753 245.86164,279.25736 244.68711,276.20966 C 244.83805,275.97738 244.91616,275.75555 244.89495,275.52214 C 244.8607,275.14496 244.56408,274.99594 244.1275,274.97855 C 243.19324,273.24577 241.80748,271.87366 240.0185,271.07738 C 239.27199,270.74513 238.48671,270.52182 237.7002,270.42187 C 237.80372,269.01346 237.78979,267.75541 237.15658,267.33611 C 237.06424,267.27498 236.97036,267.24493 236.88478,267.24018 z"
style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
transform="matrix(0.4491797,0,0,0.4572851,125.70494,206.46354)"
d="M 101.77944,164.73238 C 99.977808,168.17323 91.899618,156.6723 88.77516,158.75497 C 85.803962,160.73549 88.349877,175.19697 84.787955,175.03085 C 81.042302,174.85615 77.131968,161.13511 73.782356,159.50833 C 70.597049,157.96136 65.021527,170.03581 62.901631,167.06893 C 60.672386,163.949 68.979764,156.41247 67.593476,153.08103 C 66.275188,149.91301 56.420613,153.389 56.442825,149.87022 C 56.466182,146.16992 66.843384,146.85066 69.014243,143.77328 C 71.078618,140.84686 61.137415,127.94528 64.237959,126.45063 C 67.498435,124.87889 77.798147,136.79594 81.291483,136.01022 C 84.613466,135.26305 83.093888,122.67408 86.550382,123.30242 C 90.185167,123.96317 82.401755,136.30511 85.406663,138.46492 C 88.264176,140.5188 101.073,138.08709 102.06142,141.58002 C 103.10081,145.25312 94.997375,146.51676 94.294484,150.13561 C 93.62607,153.57694 103.49271,161.46031 101.77944,164.73238 z"
inkscape:randomized="-0.115"
inkscape:rounded="0.22"
inkscape:flatsided="false"
sodipodi:arg2="1.0033808"
sodipodi:arg1="0.50229464"
sodipodi:r2="11.650877"
sodipodi:r1="26.32341"
sodipodi:cy="149.62534"
sodipodi:cx="79.8797"
sodipodi:sides="7"
id="path2789"
style="opacity:1;fill:url(#linearGradient2845);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="star" />
<path
id="path4968"
d="M 198.33287,238.98001 C 195.73955,239.32558 191.7419,239.84199 190.62608,242.21646 C 194.22511,243.33505 198.47861,241.58912 200.96249,239.28341 C 200.16709,238.94189 199.22243,238.93472 198.33287,238.98001 z"
style="fill:url(#linearGradient5040);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.05552018;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4970"
d="M 179.62216,247.31386 C 177.35072,247.81943 175.50508,248.30982 173.51335,249.37709 C 171.11404,248.89906 172.27305,251.33056 170.84328,252.45171 C 169.68682,253.76937 167.42682,255.78604 168.27435,257.63002 C 169.78658,257.1371 171.67771,257.18327 173.1088,257.00297 C 174.17817,254.96085 176.67812,254.84788 177.80165,252.8765 C 179.60994,251.99246 180.10408,249.67072 180.93696,247.90046 C 181.12951,247.12802 180.08431,247.27244 179.62216,247.31386 z"
style="fill:url(#linearGradient5032);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4972"
d="M 163.05557,268.79579 C 158.63904,270.56299 156.64539,276.16239 156.48155,280.56836 C 156.38085,282.3327 157.70913,284.14545 159.47527,282.73275 C 164.11358,280.22648 165.85237,273.76011 164.3906,269.11943 C 164.05141,268.81917 163.51176,268.73707 163.05557,268.79579 z"
style="fill:url(#linearGradient5024);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4974"
d="M 161.3969,295.37512 C 158.54096,296.13776 156.71976,298.7931 155.42969,301.30185 C 153.12654,300.72679 155.80688,303.62802 154.53968,304.84173 C 154.26964,306.07762 152.16741,306.59906 153.91262,307.45112 C 155.38366,309.84752 155.30617,313.9415 158.88866,314.26789 C 161.26985,314.64721 163.47942,312.89034 164.97721,311.33483 C 166.08244,308.64434 167.01928,305.49613 167.34387,302.79872 C 166.7889,300.38238 166.23101,297.55807 164.49175,295.82012 C 163.43713,295.84695 162.46153,295.31037 161.3969,295.37512 z"
style="fill:url(#linearGradient5048);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4976"
d="M 187.6526,310.56619 C 179.73396,311.14145 174.76325,321.8741 179.56147,328.28576 C 180.87869,330.52811 183.6666,330.41887 185.81184,330.99627 C 188.35402,328.96383 191.6412,327.61384 192.70954,324.19974 C 193.9888,323.20807 193.94203,322.5872 193.59955,321.16556 C 193.5658,319.91646 194.47143,318.31668 194.20638,317.40318 C 192.9926,315.19466 192.77133,312.15951 189.85741,311.17304 C 189.18112,310.87651 188.25636,310.53119 187.6526,310.56619 z"
style="fill:url(#linearGradient5064);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4978"
d="M 214.53534,297.23607 C 212.25226,297.19395 210.09667,299.1911 208.36585,300.04773 C 207.68293,303.06621 205.37432,305.83201 206.26216,309.19071 C 206.58425,313.8549 212.84378,316.19373 216.09288,312.64966 C 219.28943,310.35097 220.64708,306.18409 219.97663,302.37393 C 221.25438,300.73614 218.62474,300.32863 218.15611,298.73293 C 217.38188,297.63957 215.78221,297.22315 214.53534,297.23607 z"
style="fill:url(#linearGradient5072);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4980"
d="M 238.36368,274.33821 C 236.18253,274.06985 234.17744,275.6291 232.39649,276.07779 C 231.73781,279.18668 227.70414,279.57398 225.11447,280.16381 C 227.6084,280.88658 229.4344,283.63432 228.27002,286.11078 C 227.73731,291.38732 234.09362,295.97404 238.5862,292.50276 C 244.22237,289.16163 246.69999,279.65356 240.95284,275.18778 C 240.16052,274.9166 239.10327,274.21058 238.36368,274.33821 z"
style="fill:url(#linearGradient5080);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

View file

@ -0,0 +1,457 @@
#!/usr/bin/env python
# -*- coding: iso-8859-15 -*-
#
# Syntax: convert_html2gml [[HTML_URL] OUTPUT_FILE]
#
# reasonable defaults are used, if zero or one arguments are given
#
# BEWARE: you _MUST_ adapt both the input parser "EventParser") and the output
# formatting ("get_gml_from_data") to your specific implementation
#
# Copyright: 2010 by Lars Kruse <devel@sumpfralle.de>
# License: GNU GPL v3 or higher (http://www.gnu.org/licenses/gpl-3.0.txt)
#
"""
Popup:
* aktuelle Veranstaltung:
* Veranstaltungsname
* Termin
* Ort ("Frieda 23")
* "Details" -> Link
* evt.: Liste weiterer Veranstaltungen am selben Ort (naechste Tage)
* Datum und Veranstaltungsname als gemeinsamer Link fuer "mehr"
"""
import sys
import HTMLParser
import urllib
import htmlentitydefs
import time
import re
import locale
IMPORT_URL = "http://stadtgestalten.org/?q=termin-roh"
EXPORT_FILE = "events.gml"
ICON_URL_PREFIX = "http://stadtgestalten.org/event_map/icons/png"
INPUT_ENCODING = 'utf-8'
# number of additional events to be displayed for the same location
MAX_EXTRA_EVENTS = 3
# as given to "locale.setlocale"
LOCALE = "de_DE"
COLUMNS = {
'title': 0,
'time': 1,
'category': 2,
'place': 3,
'latitude': 4,
'longitude': 5,
'organizer': 6,
}
# mapping of categories (as defined in drupal) to filename prefixes
ICONS = {
'Sonstiges': 'misc',
'Party': 'party',
'Lesung': 'lesung',
'Demo': 'demo',
'Seminar': 'seminar',
'Workshop': 'workshop',
'Film': 'film',
'Kunst': 'kunst',
'Vokue': 'vokue',
'default': 'misc',
}
# mapping of time "importance" (today, tomorrow, ...) to sizes
ICON_SIZES = {
'tiny': 12,
'small': 24,
'medium': 32,
'big': 40,
}
# used for "html_escape" below
HTML_ESCAPE_TABLE = {
"&": "&amp;",
'"': "&quot;",
"'": "&apos;",
">": "&gt;",
"<": "&lt;",
}
""" how to display different events according to their date
events before "today" and after "future" are ignored
"""
TIME_OFFSET_HOURS = {
"today": -8,
"soon": 1.5 * 24,
"coming": 4 * 24,
"future": 30 * 24,
}
class EventParser(HTMLParser.HTMLParser, object):
""" This parser extracts the input from the the event page generated by drupal.
BEWARE: the drupal page MUST be configured as a table layout with the above order
of columns (see 'COLUMNS')
"""
def __init__(self):
super(EventParser, self).__init__()
self.in_data = False
self.div_view_depth = 0
self.in_event = False
self.in_attribute = False
self.current_attribute = -1
self.events = []
def handle_starttag(self, tag, attrs):
attrs_dict = dict(attrs)
if (tag == "div"):
if attrs_dict.has_key("class") and (attrs_dict["class"] == "view-content"):
self.in_data = True
self.div_view_depth = 0
elif self.in_data:
# count the levels of sub-divs
self.div_view_depth += 1
elif self.in_data and (tag == "tr"):
# a new event item
self.in_event = True
self.current_attribute = -1
self.events.append({})
elif self.in_event and (tag == "td"):
self.in_attribute = True
self.current_attribute += 1
elif self.in_attribute and (tag == "a"):
event = self.events[-1]
if self.current_attribute == COLUMNS['title']:
event['event_url'] = attrs_dict["href"]
elif self.current_attribute == COLUMNS['place']:
event['place_url'] = attrs_dict["href"]
elif self.current_attribute == COLUMNS['organizer']:
event['organizer_url'] = attrs_dict["href"]
def handle_endtag(self, tag):
if self.in_data:
if (tag == "div"):
if self.div_view_depth > 0:
self.div_view_depth -= 1
elif self.div_view_depth == 0:
self.in_event = False
else:
# event_depth is never below zero
pass
elif (tag == "tr"):
self.in_event = False
# remove empty entries
if not self.events[-1]:
del self.events[-1]
elif (tag == "td"):
self.in_attribute = False
else:
pass
def handle_data(self, data):
""" BEWARE: the "handle_data" function does not really work well
for strings, that contain an ampersand entity (e.g. &amp;).
In this case, it splits the string before and after the special
character. This results (e.g.) in a splitted title string and
thus only the last part of it is correctly stored.
Example: "foo &amp; bar" -> "bar"
Solution: the strings, that may contain ampersand entities/refs
(title, place, organizer) are joined with potential special
characters.
See "handle_charref" and "handle_entityref" below
"""
if self.in_attribute:
data = data.decode(INPUT_ENCODING)
event = self.events[-1]
if not data.strip():
# ignore empty strings
pass
elif self.current_attribute == COLUMNS['title']:
# maybe the title is splitted by an ampersand entity
event['title'] = event.get('title', '') + data
elif self.current_attribute == COLUMNS['time']:
if event.has_key("time"):
# the first "time" field is the start
# the next ones should be ignored
pass
else:
timestamp = re.match("[0-9]*", data).group().strip()
if timestamp:
# non-empty string
try:
event['time'] = int(timestamp)
except ValueError:
# give a warning - the event will be ignored during the check later
system.stderr.write("Invalid time format: %s\n" % (timestamp, ))
else:
# empty string - this event will be ignore during the check later
pass
elif self.current_attribute == COLUMNS['category']:
event['category'] = data.strip()
elif self.current_attribute == COLUMNS['place']:
event['place'] = event.get('place', '') + data
elif self.current_attribute == COLUMNS['latitude']:
event['latitude'] = data.strip()
elif self.current_attribute == COLUMNS['longitude']:
event['longitude'] = data.strip()
elif self.current_attribute == COLUMNS['organizer']:
event['organizer'] = event.get('organizer', '') + data
else:
sys.stderr.write("UNKNOWN ATTRIBUTE: %d (%s)\n" % (self.current_attribute, data.encode(INPUT_ENCODING)))
def handle_charref(self, num):
""" add the encoded character (e.g. &#20;) to the current string """
# decode before passing it to "handle_data"
self.handle_data(unichr(int(num)))
def handle_entityref(self, name):
""" add the encoded entity (e.g. &amp;) to the current string """
# decode before passing it to "handle_data"
self.handle_data(unichr(htmlentitydefs.name2codepoint[name]))
def read_from_url(url):
try:
con = urllib.urlopen(url)
except IOError, errmsg:
sys.stderr.write("Failed to open input (%s): %s\n" % (url, errmsg))
sys.exit(1)
try:
data = con.read()
except IOError, errmsg:
sys.stderr.write("Failed to read from input (%s): %s\n" % (url, errmsg))
sys.exit(2)
con.close()
return data
def get_date_string(timestamp):
# use locale encoding
try:
locale.setlocale(locale.LC_ALL, LOCALE)
except locale.Error, err_msg:
sys.stderr.write("Locales (%s) not found: %s\n" % (LOCALE, err_msg) \
+ " Maybe you should run 'aptitude install locales-all' on debian.\n")
localtime = time.localtime(timestamp)
return time.strftime(locale.nl_langinfo(locale.D_T_FMT), localtime)
def html_escape(text):
"""Produce entities within text."""
chars = []
for c in text:
chars.append(HTML_ESCAPE_TABLE.get(c, c))
return "".join(chars)
def get_data_from_html(html):
parser = EventParser()
# parse the html input
parser.feed(html)
return filtered_events(parser.events)
def filtered_events(events):
""" remove old or incomplete events """
result = []
for event in events:
# add an empty 'category', if it is not set
if not event.has_key('category'):
event['category'] = None
if not event.has_key('title'):
sys.stderr.write("Skipping event without a title\n");
elif not (event.has_key('longitude') and event.has_key('latitude')):
sys.stderr.write(("Skipping event without long/lat: %(title)s\n" \
% event).encode(INPUT_ENCODING))
elif not event.has_key('time'):
sys.stderr.write(("Skipping event without date/time: %(title)s\n" \
% event).encode(INPUT_ENCODING))
elif not is_event_current(event["time"]):
# skipping events, that are too old or too far in the future
pass
else:
# the event is valid
result.append(event)
return result
# icon sizes depend on the current date and the date of the event
# use the timestamp "None" for the smallest icon
def get_icon_size(timestamp):
now = time.time()
if timestamp is None:
return ICON_SIZES["tiny"]
if timestamp >= now + 3600 * TIME_OFFSET_HOURS["coming"]:
return ICON_SIZES["small"]
elif timestamp >= now + 3600 * TIME_OFFSET_HOURS["soon"]:
return ICON_SIZES["medium"]
else:
return ICON_SIZES["big"]
def is_event_current(timestamp):
now = time.time()
if timestamp < now + 3600 * TIME_OFFSET_HOURS["today"]:
return False
elif timestamp >= now + 3600 * TIME_OFFSET_HOURS["future"]:
return False
else:
return True
def get_icon_url(category, timestamp):
if category in ICONS.keys():
filename = ICONS[category]
else:
filename = ICONS["default"]
size = get_icon_size(timestamp)
return "%s/%s_%d.png" % (ICON_URL_PREFIX, filename, size)
def get_gml_from_data(data):
result = []
# first line: the header for gml
result.append(['point', 'title', 'description', 'icon', 'iconSize', 'iconOffset'])
# add one line for each event
for place in group_sorted_events_by_location(data):
result.append([])
event = place[0]
# escape some html entities
for item in ["title", "place", "organizer"]:
if event.has_key(item):
event[item] = html_escape(event[item])
items = result[-1]
# the 'point'
items.append('%(latitude)s,%(longitude)s' % event)
# the 'title'
items.append('<a href="%(event_url)s" title="Details" target="_blank">%(title)s</a>' % event)
# the 'description'
description = '<ul>'
# maybe only a date without time is given
description += "<li>Termin: %s</li>" % get_date_string(event["time"])
description += '<li>Ort: <a href="%(place_url)s" title="Ortsbeschreibung" target="_blank">%(place)s</a></li>' % event
if event.has_key('organizer'):
description += '<li>Veranstalter: <a href="%(organizer_url)s" title="Veranstalterinfos" target="_blank">%(organizer)s</a></li>' % event
description += '<li><a href="%(event_url)s" title="%(title)s" target="_blank">... mehr Infos</a></li>' % event
if len(place) > 1:
# other events will take place here ...
description += '<li>Weitere Veranstaltungen:<ul>'
# we add not more than three more events
num_events = min(MAX_EXTRA_EVENTS, len(place)-1)
for index in range(1, num_events+1):
other_event = place[index]
# show a small icon for each other event
description += '<li style="list-style-image:url(%s)">' \
% get_icon_url(other_event["category"], None)
description += '%s: <a href="%s" title="Details" target="_blank">%s</a></li>' \
% (get_date_string(other_event["time"]), other_event["event_url"], html_escape(other_event["title"]))
description += '</ul></li>'
description += '</ul>'
items.append(description)
# the 'icon'
items.append(get_icon_url(event['category'], event['time']))
# 'iconSize' and 'iconOffset'
size = get_icon_size(event['time'])
# size of the icon
items.append('%d,%d' % (size, size))
# offset of the middle of the icon
items.append('%d,%d' % (-size/2, -size/2))
# turn the array into a string
return '\n'.join(['\t'.join(event) for event in result])
def unicode2htmlentities(text):
result = ""
for c in text:
if ord(c) < 128:
result += c
else:
result += '&%s;' % htmlentitydefs.codepoint2name[ord(c)]
return result
def write_to_file(output_file, data):
try:
con = open(output_file, 'w')
except IOError, errmsg:
sys.stderr.write("Failed to open output file for writing (%s): %s" % (output_file, errmsg))
sys.stderr.exit(3)
try:
con.write(unicode2htmlentities(data))
# a final linebreak is necessary - otherwise openlayers ignores the last line
con.write("\n")
except IOError, errmsg:
sys.stderr.write("Failed to write to output file(%s): %s" % (output_file, errmsg))
sys.stderr.exit(4)
con.close()
def is_same_location(event_a, event_b):
""" check if two events are located at the same place
beware: for now it does not take the name of the place into account.
It only compares latitude and longitude.
"""
if (event_a["longitude"] == event_b["longitude"]) \
and (event_a["latitude"] == event_b["latitude"]):
return True
else:
return False
def group_sorted_events_by_location(events):
""" convert a list of events into a list of places - each being a list
of events happening at this location.
"""
places = []
for event in events:
# we use this variable to store a (possibly) matching place
already_defined_place = None
for place in places:
if is_same_location(event, place[0]):
already_defined_place = place
if already_defined_place is None:
# create a new place (starting with the current event)
places.append([event])
else:
# add it to the existing place
already_defined_place.append(event)
# sort the events of each place by time
def cmp_event(x, y):
if x["time"] < y["time"]:
return -1
elif x["time"] == y["time"]:
return 0
else:
return 1
for place in places:
place.sort(cmp=cmp_event)
return places
if __name__ == '__main__':
if len(sys.argv) > 1:
input_file = sys.argv[1]
else:
input_file = IMPORT_URL
if len(sys.argv) > 2:
output_file = sys.argv[2]
else:
output_file = EXPORT_FILE
html_data = read_from_url(input_file)
data = get_data_from_html(html_data)
gml_data = get_gml_from_data(data)
write_to_file(output_file, gml_data)

View file

@ -0,0 +1,30 @@
#!/bin/sh
#
# convert an svg file into the useful png icon sizes: 12, 16 and 24px
#
# Parameter: input_file.svg output_prefix
#
# Copyright: 2010 by Lars Kruse <devel@sumpfralle.de>
# License: GNU GPL v3 or higher (http://www.gnu.org/licenses/gpl-3.0.txt)
#
set -eu
CONVERTER=inkscape
SIZES="12 24 32 40"
test $# -ne 2 && echo >&2 "Invalid number of arguments: I expected exactly two" && exit 1
in_file="$1"
out_prefix="$2"
test ! -e "$1" && echo >&2 "File not found: $1" && exit 2
# conversion
for size in $SIZES
do inkscape --without-gui --export-area-drawing \
--export-height="$size" --export-width="$size" \
--export-png="${out_prefix}_${size}.png" "$in_file"
done