Commit d5c659a5 authored by Eric Domke's avatar Eric Domke
Browse files

Refactoring while working through W3C tests

- Adding W3C test cases and a test fixture
- Fixed support for CSS stylesheets (particularly when class names are
referenced)
- Refactoring unit calculations so that percentages and fractions
calculate more accurately
- SvgImage:
- Support PreserveAspectRatio attribute
- Support for referencing svg images
- Refactored text rendering to use the AttributeCollection inheritance
scheme
- Initial attempt at 'ex' unit support
- Added support for system color names
- Changed parsing of entities to support XML entities
- Supporting loading of a svg document directly from a XmlDocument with
requiring serializing the document as a string first.
- ...
parent 3aedd8e8
<?xml version="1.0" encoding="UTF-8"?>
<metadata version="1.0">
<vendor name="SIL International" url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;id=ArabicFonts" />
<copyright>
<text lang="en">Copyright (c) 2004-2007, SIL International ( http://www.sil.org/).</text>
</copyright>
<license url="http://scripts.sil.org/OFL" id="SIL-OFL-v1.1">
<text lang="en">
This Font Software is licensed under the SIL Open Font License, Version 1.1,
with Reserved Font Names "Scheherazade" and "SIL".
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
</text>
</license>
<credits>
<credit name="Bob Hallissy" role="design"/>
<credit name="Jonathan Kew" role="design"/>
</credits>
</metadata>
\ No newline at end of file
/*
Distributed under both the W3C Test Suite License [1] and the W3C
3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
policies and contribution forms [3].
[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
[3] http://www.w3.org/2004/10/27-testcases
*/
/*
* == Introducion ==
* This file provides a framework for writing testcases. It is intended
* to provide a convenient API for making common assertions, and to work
* both for testing synchronous and asynchronous DOM features in a way that
* promotes clear, robust, tests.
*
* == Basic Usage ==
*
* To use this file, import the script into the test document:
* <script src="http://test.w3.org/resources/jsharness.js"></script>
*
* Within each file one may define one or more tests. Each test is atomic
* in the sense that a single test has a single result (pass/fail/timeout).
* Within each test one may have a number of asserts. The test fails at the
* first failing assert, and the remainder of the test is (typically) not run
*
* If the file containing the tests is a HTML file with an element of id "log"
* this will be populated with a table containing the test results after all
* the tests have run.
*
* == Synchronous Tests ==
*
* To create a sunchronous test use the test() function:
*
* test(test_function, name)
*
* test_function is a function that contains the code to test. For example a
* trivial passing test would be:
*
* test(function() {assert_true(true)}, "assert_true with true)"
*
* The function passed in is run in the test() call.
*
* == Asynchronous Tests ==
*
* Testing asynchronous features is somewhat more complex since the result of
* a test may depend on one or more events or other callbacks. The API provided
* for testing these features is indended to be rather low-level but hopefully
* applicable to many situations.
*
* To create a test, one starts by getting a Test object using async_test:
*
* var t = async_test("Simple async test")
*
* Assertions can be added to the test by calling the step method of the test
* object with a function containing the test assertions:
*
* t.step(function() {assert_true(true)});
*
* When all the steps are complete, the done() method must be called:
*
* t.done();
*
* == Making assertions ==
*
* Functions for making assertions start assert_
* The best way to get a list is to look in this file for functions names
* matching that pattern. The general signature is
*
* assert_something(actual, expected, description)
*
* although not all assertions precisely match this pattern e.g. assert_true only
* takes actual and description as arguments.
*
* The description parameter is used to present more useful error messages when a
* test fails
*/
(function ()
{
var debug = false;
// default timeout is 5 seconds, test can override if needed
var default_timeout = 5000;
// tests either pass, fail or timeout
var status =
{
PASS: 0,
FAIL: 1,
TIMEOUT: 2
};
expose(status, 'status');
/*
* API functions
*/
var name_counter = 0;
function next_default_name()
{
//Don't use document.title to work around an Opera bug in XHTML documents
var prefix = document.getElementsByTagName("title").length > 0 ?
document.getElementsByTagName("title")[0].firstChild.data :
"Untitled";
var suffix = name_counter > 0 ? " " + name_counter : "";
name_counter++;
return prefix + suffix;
}
function test(func, name, properties)
{
var test_name = name ? name : next_default_name();
properties = properties ? properties : {};
var test_obj = new Test(test_name, properties);
test_obj.step(func);
if (test_obj.status === null) {
test_obj.done();
}
}
function async_test(name, properties)
{
var test_name = name ? name : next_default_name();
properties = properties ? properties : {};
var test_obj = new Test(test_name, properties);
return test_obj;
}
function on_event(object, event, callback)
{
object.addEventListener(event, callback, false);
}
expose(test, 'test');
expose(async_test, 'async_test');
expose(on_event, 'on_event');
/*
* Assertions
*/
function assert_true(actual, description)
{
var message = make_message("assert_true", description,
"expected true got ${actual}", {actual:actual});
assert(actual === true, message);
};
expose(assert_true, "assert_true");
function assert_false(actual, description)
{
var message = make_message("assert_false", description,
"expected false got ${actual}", {actual:actual});
assert(actual === false, message);
};
expose(assert_false, "assert_false");
function assert_equals(actual, expected, description)
{
/*
* Test if two primitives are equal or two objects
* are the same object
*/
var message = make_message("assert_equals", description,
[["{text}", "expected "],
["span", {"class":"expected"}, String(expected)],
["{text}", "got "],
["span", {"class":"actual"}, String(actual)]]);
if (expected !== expected)
{
//NaN case
assert(actual !== actual, message);
}
else
{
//typical case
assert(actual === expected, message);
}
};
expose(assert_equals, "assert_equals");
function assert_object_equals(actual, expected, description)
{
//This needs to be improved a great deal
function check_equal(expected, actual, stack)
{
stack.push(actual);
for (p in actual)
{
var message = make_message(
"assert_object_equals", description,
"unexpected property ${p}", {p:p});
assert(expected.hasOwnProperty(p), message);
if (typeof actual[p] === "object" && actual[p] !== null)
{
if (stack.indexOf(actual[p]) === -1)
{
check_equal(actual[p], expected[p], stack);
}
}
else
{
message = make_message(
"assert_object_equals", description,
"property ${p} expected ${expected} got ${actual}",
{p:p, expected:expected, actual:actual});
assert(actual[p] === expected[p], message);
}
}
for (p in expected)
{
var message = make_message(
"assert_object_equals", description,
"expected property ${p} missing", {p:p});
assert(actual.hasOwnProperty(p), message);
}
stack.pop();
}
check_equal(actual, expected, []);
};
expose(assert_object_equals, "assert_object_equals");
function assert_array_equals(actual, expected, description)
{
var message = make_message(
"assert_array_equals", description,
"lengths differ, expected ${expected} got ${actual}",
{expected:expected.length, actual:actual.length});
assert(actual.length === expected.length, message);
for (var i=0; i < actual.length; i++)
{
message = make_message(
"assert_array_equals", description,
"property ${i}, property expected to be $expected but was $actual",
{i:i, expected:expected.hasOwnProperty(i) ? "present" : "missing",
actual:actual.hasOwnProperty(i) ? "present" : "missing"});
assert(actual.hasOwnProperty(i) === expected.hasOwnProperty(i), message);
message = make_message(
"assert_array_equals", description,
"property ${i}, expected ${expected} but got ${actual}",
{i:i, expected:expected[i], actual:actual[i]});
assert(expected[i] === actual[i], message);
}
}
expose(assert_array_equals, "assert_array_equals");
function assert_exists(object, property_name, description)
{
var message = make_message(
"assert_exists", description,
"expected property ${p} missing", {p:property_name});
assert(object.hasOwnProperty(property_name), message);
};
expose(assert_exists, "assert_exists");
function assert_not_exists(object, property_name, description)
{
var message = make_message(
"assert_not_exists", description,
"unexpected property ${p} found", {p:property_name});
assert(!object.hasOwnProperty(property_name), message);
};
expose(assert_not_exists, "assert_not_exists");
function assert_readonly(object, property_name, description)
{
var initial_value = object[property_name];
try {
var message = make_message(
"assert_readonly", description,
"deleting property ${p} succeeded", {p:property_name});
assert(delete object[property_name] === false, message);
assert(object[property_name] === initial_value, message);
//Note that this can have side effects in the case where
//the property has PutForwards
object[property_name] = initial_value + "a"; //XXX use some other value here?
message = make_message("assert_readonly", description,
"changing property ${p} succeeded",
{p:property_name});
assert(object[property_name] === initial_value, message);
}
finally
{
object[property_name] = initial_value;
}
};
expose(assert_readonly, "assert_readonly");
function assert_throws(code_or_object, func, description)
{
try
{
func.call(this);
assert(false, make_message("assert_throws", description,
"${func} did not throw", {func:String(func)}));
}
catch(e)
{
if (e instanceof AssertionError) {
throw(e);
}
if (typeof code_or_object === "string")
{
assert(e[code_or_object] !== undefined &&
e.code === e[code_or_object] &&
e.name === code_or_object,
make_message("assert_throws", description,
[["{text}", "${func} threw with"] ,
function()
{
var actual_name;
for (var p in DOMException)
{
if (e.code === DOMException[p])
{
actual_name = p;
break;
}
}
if (actual_name)
{
return ["{text}", " code " + actual_name + " (${actual_number})"];
}
else
{
return ["{text}", " error number ${actual_number}"];
}
},
["{text}"," expected ${expected}"],
function()
{
return e[code_or_object] ?
["{text}", " (${expected_number})"] : null;
}
],
{func:String(func), actual_number:e.code,
expected:String(code_or_object),
expected_number:e[code_or_object]}));
assert(e instanceof DOMException,
make_message("assert_throws", description,
"thrown exception ${exception} was not a DOMException",
{exception:String(e)}));
}
else
{
assert(e instanceof Object && "name" in e && e.name == code_or_object.name,
make_message("assert_throws", description,
"${func} threw ${actual} (${actual_name}) expected ${expected} (${expected_name})",
{func:String(func), actual:String(e), actual_name:e.name,
expected:String(code_or_object),
expected_name:code_or_object.name}));
}
}
}
expose(assert_throws, "assert_throws");
function assert_unreached(description) {
var message = make_message("assert_unreached", description,
"Reached unreachable code");
assert(false, message);
}
expose(assert_unreached, "assert_unreached");
function Test(name, properties)
{
this.name = name;
this.status = null;
var timeout = default_timeout;
this.is_done = false;
if (properties.timeout)
{
timeout = properties.timeout;
}
this.message = null;
var this_obj = this;
this.steps = [];
this.timeout_id = setTimeout(function() { this_obj.timeout(); }, timeout);
tests.push(this);
}
Test.prototype.step = function(func, this_obj)
{
//In case the test has already failed
if (this.status !== null)
{
return;
}
this.steps.push(func);
try
{
func.apply(this_obj);
}
catch(e)
{
//This can happen if something called synchronously invoked another
//step
if (this.status !== null)
{
return;
}
this.status = status.FAIL;
this.message = e.message;
this.done();
if (debug) {
throw e;
}
}
};
Test.prototype.timeout = function()
{
this.status = status.TIMEOUT;
this.timeout_id = null;
this.message = "Test timed out";
this.done();
};
Test.prototype.done = function()
{
if (this.is_done) {
//Using alert here is bad
return;
}
clearTimeout(this.timeout_id);
if (this.status == null)
{
this.status = status.PASS;
}
this.is_done = true;
tests.done(this);
};
/*
* Harness
*/
var tests = new Tests();
function Tests()
{
this.tests = [];
this.num_pending = 0;
this.started = false;
this.start_callbacks = [];
this.test_done_callbacks = [];
this.all_done_callbacks = [];
var this_obj = this;
//All tests can't be done until the load event fires
this.all_loaded = false;
on_event(window, "load",
function()
{
this_obj.all_loaded = true;
if (document.getElementById("log"))
{
add_completion_callback(output_results);
}
if (this_obj.all_done())
{
this_obj.notify_results();
}
});
}
Tests.prototype.push = function(test)
{
if (!this.started) {
this.start();
}
this.num_pending++;
this.tests.push(test);
};
Tests.prototype.all_done = function() {
return this.all_loaded && this.num_pending == 0;
};
Tests.prototype.done = function(test)
{
this.num_pending--;
var this_obj = this;
forEach(this.test_done_callbacks,
function(callback)
{
callback(test, this_obj);
});
if(top !== window && top.result_callback)
{
top.result_callback.call(test, this_obj);
}
if (this.all_done())
{
this.notify_results();
}
};
Tests.prototype.start = function() {
this.started = true;
var this_obj = this;
forEach (this.start_callbacks,
function(callback)
{
callback(this_obj);
});
if(top !== window && top.start_callback)
{
top.start_callback.call(this_obj);
}
};
Tests.prototype.notify_results = function()
{
var this_obj = this;
forEach (this.all_done_callbacks,
function(callback)
{
callback(this_obj.tests);
});
if(top !== window && top.completion_callback)
{
top.completion_callback.call(this_obj, this_obj.tests);
}
};
function add_start_callback(callback) {
tests.start_callbacks.push(callback);
}
function add_result_callback(callback)
{
tests.test_done_callbacks.push(callback);
}
function add_completion_callback(callback)
{
tests.all_done_callbacks.push(callback);
}
expose(add_start_callback, 'add_start_callback');
expose(add_result_callback, 'add_result_callback');
expose(add_completion_callback, 'add_completion_callback');
/*
* Output listener
*/
(function show_status() {
var done_count = 0;
function on_done(test, tests) {
var log = document.getElementById("log");
done_count++;
if (log)
{
if (log.lastChild) {
log.removeChild(log.lastChild);
}
var nodes = render([["{text}", "Running, ${done} complete"],
function() {
if (tests.all_done) {
return ["{text}", " ${pending} remain"];
} else {
return null;
}
}
], {done:done_count,
pending:tests.num_pending});
forEach(nodes, function(node) {
log.appendChild(node);
});
log.normalize();
}
}
if (document.getElementById("log"))
{
add_result_callback(on_done);
}
})();
function output_results(tests)
{
var log = document.getElementById("log");
while (log.lastChild) {
log.removeChild(log.lastChild);
}
var prefix = null;
var scripts = document.getElementsByTagName("script");
for (var i=0; i<scripts.length; i++)
{
var src = scripts[i].src;
if (src.slice(src.length - "testharness.js".length) === "testharness.js")
{
prefix = src.slice(0, src.length - "testharness.js".length);
break;
}
}
if (prefix != null) {
var stylesheet = document.createElement("link");
stylesheet.setAttribute("rel", "stylesheet");
stylesheet.setAttribute("href", prefix + "testharness.css");
var heads = document.getElementsByTagName("head");
if (heads) {
heads[0].appendChild(stylesheet);
}
}
var status_text = {};
status_text[status.PASS] = "Pass";
status_text[status.FAIL] = "Fail";
status_text[status.TIMEOUT] = "Timeout";
var template = ["table", {"id":"results"},
["tr", {},
["th", {}, "Result"],
["th", {}, "Test Name"],
["th", {}, "Message"]
],
function(vars) {
var rv = map(vars.tests, function(test) {
var status = status_text[test.status];
return ["tr", {},
["td", {"class":status.toLowerCase()}, status],
["td", {}, test.name],
["td", {}, test.message ? test.message : " "]
];
});
return rv;
}
];
log.appendChild(render(template, {tests:tests}));
}
/*
* Template code
*
* A template is just a javascript structure. An element is represented as:
*
* [tag_name, {attr_name:attr_value}, child1, child2]
*
* the children can either be strings (which act like text nodes), other templates or
* functions (see below)
*
* A text node is represented as
*
* ["{text}", value]
*
* String values have a simple substitution syntax; ${foo} represents a variable foo.
*
* It is possible to embed logic in templates by using a function in a place where a
* node would usually go. The function must either return part of a template or null.
*
* In cases where a set of nodes are required as output rather than a single node
* with children it is possible to just use a list
* [node1, node2, node3]
*
* Usage:
*
* render(template, substitutions) - take a template and an object mapping
* variable names to parameters and return either a DOM node or a list of DOM nodes
*
* substitute(template, substitutions) - take a template and variable mapping object,
* make the variable substitutions and return the substituted template
*
*/
function is_single_node(template)
{
return typeof template[0] === "string";
}
function substitute(template, substitutions)
{
if (typeof template === "function") {
var replacement = template(substitutions);
if (replacement)
{
var rv = substitute(replacement, substitutions);
return rv;
}
else
{
return null;
}
}
else if (is_single_node(template))
{
return substitute_single(template, substitutions);
}
else
{
return filter(map(template, function(x) {
return substitute(x, substitutions);
}), function(x) {return x !== null;});
}
}
expose(substitute, "template.substitute");
function substitute_single(template, substitutions)
{
var substitution_re = /\${([^ }]*)}/g;
function do_substitution(input) {
var components = input.split(substitution_re);
var rv = [];
for (var i=0; i<components.length; i+=2)
{
rv.push(components[i]);
if (components[i+1])
{
rv.push(substitutions[components[i+1]]);
}
}
return rv;
}
var rv = [];
rv.push(do_substitution(String(template[0])).join(""));
if (template[0] === "{text}") {
substitute_children(template.slice(1), rv);
} else {
substitute_attrs(template[1], rv);
substitute_children(template.slice(2), rv);
}
function substitute_attrs(attrs, rv)
{
rv[1] = {};
for (name in template[1])
{
if (attrs.hasOwnProperty(name))
{
var new_name = do_substitution(name).join("");
var new_value = do_substitution(attrs[name]).join("");
rv[1][new_name] = new_value;
};
}
}
function substitute_children(children, rv)
{
for (var i=0; i<children.length; i++)
{
if (children[i] instanceof Object) {
var replacement = substitute(children[i], substitutions);
if (replacement !== null)
{
if (is_single_node(replacement))
{
rv.push(replacement);
}
else
{
extend(rv, replacement);
}
}
}
else
{
extend(rv, do_substitution(String(children[i])));
}
}
return rv;
}
return rv;
}
function make_dom_single(template)
{
if (template[0] === "{text}")
{
var element = document.createTextNode("");
for (var i=1; i<template.length; i++)
{
element.data += template[i];
}
}
else
{
var element = document.createElement(template[0]);
for (name in template[1]) {
if (template[1].hasOwnProperty(name))
{
element.setAttribute(name, template[1][name]);
}
}
for (var i=2; i<template.length; i++)
{
if (template[i] instanceof Object)
{
var sub_element = make_dom(template[i]);
element.appendChild(sub_element);
}
else
{
var text_node = document.createTextNode(template[i]);
element.appendChild(text_node);
}
}
}
return element;
}
function make_dom(template, substitutions)
{
if (is_single_node(template))
{
return make_dom_single(template);
}
else
{
return map(template, function(x) {
return make_dom_single(x);
});
}
}
function render(template, substitutions)
{
return make_dom(substitute(template, substitutions));
}
expose(render, "template.render");
/*
* Utility funcions
*/
function assert(expected_true, message)
{
if (expected_true !== true)
{
throw new AssertionError(message);
}
}
function AssertionError(message)
{
this.message = message;
}
function make_message(function_name, description, error, substitutions)
{
var message = substitute([["span", {"class":"assert"}, "${function_name}:"],
function()
{
if (description) {
return ["span", {"class":"description"}, description];
} else {
return null;
}
},
["div", {"class":"error"}, error]
], merge({function_name:function_name},
substitutions));
return message;
}
function filter(array, callable, thisObj) {
var rv = [];
for (var i=0; i<array.length; i++)
{
if (array.hasOwnProperty(i))
{
var pass = callable.call(thisObj, array[i], i, array);
if (pass) {
rv.push(array[i]);
}
}
}
return rv;
}
function map(array, callable, thisObj)
{
var rv = [];
rv.length = array.length;
for (var i=0; i<array.length; i++)
{
if (array.hasOwnProperty(i))
{
rv[i] = callable.call(thisObj, array[i], i, array);
}
}
return rv;
}
function extend(array, items)
{
Array.prototype.push.apply(array, items);
}
function forEach (array, callback, thisObj)
{
for (var i=0; i<array.length; i++)
{
if (array.hasOwnProperty(i))
{
callback.call(thisObj, array[i], i, array);
}
}
}
function merge(a,b)
{
var rv = {};
var p;
for (p in a)
{
rv[p] = a[p];
}
for (p in b) {
rv[p] = b[p];
}
return rv;
}
function expose(object, name)
{
var components = name.split(".");
var target = window;
for (var i=0; i<components.length - 1; i++)
{
if (!(components[i] in target))
{
target[components[i]] = {};
}
target = target[components[i]];
}
target[components[components.length - 1]] = object;
}
})();
\ No newline at end of file
<?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" height="206.25000" id="svg2" version="1.0" width="406.25000" x="0.00000000" y="0.00000000" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="AJ_Digital_Camera_ok.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:export-filename="C:\joanna\Gfx\drawings_vector\admin\thumbs\AJ_Digital_Camera_ok.png" inkscape:export-xdpi="55.827694" inkscape:export-ydpi="55.827694">
<sodipodi:namedview inkscape:window-height="744" inkscape:window-width="1280" 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="2.3261538" inkscape:cx="69.088376" inkscape:cy="137.51653" inkscape:window-x="-4" inkscape:window-y="-4" inkscape:current-layer="svg2"/>
<metadata id="metadata3">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:title>digital-camera</dc:title>
<dc:description/>
<dc:subject>
<rdf:Bag>
<rdf:li>digital</rdf:li>
<rdf:li/>
<rdf:li>11</rdf:li>
<rdf:li>hardware</rdf:li>
<rdf:li>photo</rdf:li>
<rdf:li>digicam</rdf:li>
<rdf:li>computer</rdf:li>
<rdf:li>camera</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: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 : 103.125 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="406.25 : 103.125 : 1" inkscape:persp3d-origin="203.125 : 68.75 : 1" id="perspective222"/>
<linearGradient id="linearGradient2303">
<stop id="stop2305" offset="0.00000000" style="stop-color: rgb(83, 25, 113); stop-opacity: 1;"/>
<stop id="stop2323" offset="0.60601109" style="stop-color: rgb(44, 18, 84); stop-opacity: 1;"/>
<stop id="stop2321" offset="0.80524760" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
<stop id="stop2307" offset="1.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
</linearGradient>
<linearGradient id="linearGradient2195">
<stop id="stop2197" offset="0.00000000" style="stop-color: rgb(50, 50, 50); stop-opacity: 1;"/>
<stop id="stop2199" offset="1.0000000" style="stop-color: rgb(150, 150, 150); stop-opacity: 1;"/>
</linearGradient>
<linearGradient id="linearGradient2189">
<stop id="stop2191" offset="0.00000000" style="stop-color: rgb(190, 190, 190); stop-opacity: 1;"/>
<stop id="stop2193" offset="1.0000000" style="stop-color: rgb(210, 210, 210); stop-opacity: 1;"/>
</linearGradient>
<linearGradient id="linearGradient2160">
<stop id="stop2162" offset="0.00000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
<stop id="stop2164" offset="1.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
</linearGradient>
<linearGradient id="linearGradient2127">
<stop id="stop2129" offset="0.00000000" style="stop-color: rgb(100, 100, 100); stop-opacity: 1;"/>
<stop id="stop2131" offset="1.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
</linearGradient>
<linearGradient id="linearGradient2118">
<stop id="stop2120" offset="0.00000000" style="stop-color: rgb(125, 125, 125); stop-opacity: 1;"/>
<stop id="stop2122" offset="1.0000000" style="stop-color: rgb(220, 220, 220); stop-opacity: 1;"/>
</linearGradient>
<linearGradient id="linearGradient2099">
<stop id="stop2101" offset="0.00000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
<stop id="stop2103" offset="1.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0.588235;"/>
</linearGradient>
<linearGradient id="linearGradient2143">
<stop id="stop2145" offset="0.00000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
<stop id="stop2147" offset="1.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
</linearGradient>
<linearGradient id="linearGradient2061">
<stop id="stop2063" offset="0.00000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
<stop id="stop2187" offset="0.29381442" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
<stop id="stop2065" offset="1.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
</linearGradient>
<linearGradient gradientTransform="matrix(3.93701, 0, 0, 0.127, 0, 176.181)" gradientUnits="userSpaceOnUse" id="linearGradient2101" x1="82.550041" x2="82.550041" xlink:href="#linearGradient2061" y1="1462.0551" y2="1391.1869"/>
<linearGradient gradientTransform="scale(0.745356, 1.34164)" gradientUnits="userSpaceOnUse" id="linearGradient2149" x1="298.88779" x2="298.88779" xlink:href="#linearGradient2143" y1="403.20471" y2="270.08881"/>
<linearGradient gradientTransform="scale(0.745356, 1.34164)" gradientUnits="userSpaceOnUse" id="linearGradient2200" x1="352.06747" x2="347.65460" xlink:href="#linearGradient2143" y1="386.44376" y2="233.72731"/>
<linearGradient gradientTransform="scale(2.29518, 0.435695)" gradientUnits="userSpaceOnUse" id="linearGradient2224" x1="94.440163" x2="100.54987" xlink:href="#linearGradient2061" y1="823.22485" y2="875.80542"/>
<linearGradient gradientTransform="matrix(1.56589, 0, 0, 0.732797, 98.7092, -125.467)" gradientUnits="userSpaceOnUse" id="linearGradient2329" x1="-327.88300" x2="-327.78314" xlink:href="#linearGradient2143" y1="220.74342" y2="233.92133"/>
<linearGradient gradientTransform="matrix(1.4613, 0, 0, 0.684323, 222.645, -79.8309)" gradientUnits="userSpaceOnUse" id="linearGradient2343" x1="-338.12735" x2="-337.99255" xlink:href="#linearGradient2143" y1="192.44231" y2="214.70348"/>
<linearGradient gradientTransform="matrix(2.3702, 0, 0, 0.421906, 198.87, -89.375)" gradientUnits="userSpaceOnUse" id="linearGradient2362" x1="-227.78334" x2="-185.92982" xlink:href="#linearGradient2143" y1="576.82489" y2="565.61029"/>
<radialGradient cx="195.33907" cy="367.99432" fx="195.33907" fy="367.99432" gradientTransform="matrix(0.793492, 0, 0, 1.26025, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="radialGradient2464" r="10.189606" spreadMethod="reflect" xlink:href="#linearGradient2195"/>
<linearGradient gradientTransform="matrix(1.36931, 0, 0, 0.730297, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2466" x1="234.54350" x2="234.54350" xlink:href="#linearGradient2195" y1="745.65509" y2="484.63116"/>
<linearGradient gradientTransform="matrix(0.793492, 0, 0, 1.26025, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2468" x1="219.60535" x2="169.10524" xlink:href="#linearGradient2143" y1="385.28711" y2="327.64883"/>
<radialGradient cx="164.88359" cy="367.24536" fx="164.88359" fy="367.24536" gradientTransform="matrix(1.33333, 0, 0, 1.33334, -139.375, -316.325)" gradientUnits="userSpaceOnUse" id="radialGradient2470" r="14.648915" xlink:href="#linearGradient2061"/>
<radialGradient cx="164.88269" cy="367.24536" fx="164.88269" fy="367.24536" gradientTransform="matrix(0, -1.33333, 1.33334, 0, -409.193, 553.492)" gradientUnits="userSpaceOnUse" id="radialGradient2472" r="14.883290" xlink:href="#linearGradient2061"/>
<radialGradient cx="164.88269" cy="367.24536" fx="164.88269" fy="367.24536" gradientTransform="matrix(0, -1.33333, -1.33334, 0, 905.443, 553.492)" gradientUnits="userSpaceOnUse" id="radialGradient2474" r="14.883290" xlink:href="#linearGradient2061"/>
<radialGradient cx="164.88269" cy="367.24536" fx="164.88269" fy="367.24536" gradientTransform="matrix(0, 1.33333, -1.33334, 0, 905.443, -46.5077)" gradientUnits="userSpaceOnUse" id="radialGradient2476" r="14.883290" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="matrix(4.09268, 0, 0, 0.244339, 89.375, 198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2478" x1="-82.464378" x2="-82.464378" xlink:href="#linearGradient2061" y1="-2178.7864" y2="-2258.8235"/>
<linearGradient gradientTransform="matrix(2.82843, 0, 0, 0.353553, 198.87, -89.375)" gradientUnits="userSpaceOnUse" id="linearGradient2480" x1="-159.93404" x2="-159.93404" xlink:href="#linearGradient2061" y1="480.33670" y2="424.26443"/>
<linearGradient gradientTransform="matrix(2.82843, 0, 0, 0.353553, 198.87, 89.375)" gradientUnits="userSpaceOnUse" id="linearGradient2482" x1="-159.93404" x2="-159.93404" xlink:href="#linearGradient2061" y1="-1428.3561" y2="-1484.4293"/>
<linearGradient gradientTransform="matrix(4.09268, 0, 0, 0.244339, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2484" x1="82.159187" x2="82.159187" xlink:href="#linearGradient2061" y1="1523.0514" y2="1441.1952"/>
<linearGradient gradientTransform="matrix(1.38538, 0, 0, 0.721822, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2486" x1="224.19640" x2="224.19640" xlink:href="#linearGradient2189" y1="503.96042" y2="749.76471"/>
<linearGradient gradientTransform="matrix(0.5547, 0, 0, 1.80278, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2488" spreadMethod="reflect" x1="272.21921" x2="308.27469" xlink:href="#linearGradient2143" y1="285.29071" y2="262.75601"/>
<linearGradient gradientTransform="matrix(0.720082, 0, 0, 1.38873, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2490" x1="656.78778" x2="656.78760" xlink:href="#linearGradient2127" y1="373.10587" y2="278.93256"/>
<linearGradient gradientTransform="matrix(0.723143, 0, 0, 1.38285, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2492" x1="653.25012" x2="653.25012" xlink:href="#linearGradient2143" y1="373.10922" y2="279.66632"/>
<linearGradient gradientTransform="matrix(0.720082, 0, 0, 1.38873, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2494" spreadMethod="reflect" x1="641.06244" x2="639.63287" xlink:href="#linearGradient2143" y1="319.18408" y2="327.53815"/>
<linearGradient gradientTransform="matrix(0.720082, 0, 0, 1.38873, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2496" spreadMethod="reflect" x1="665.36487" x2="665.36487" xlink:href="#linearGradient2143" y1="310.82980" y2="313.87778"/>
<linearGradient gradientTransform="matrix(0.720082, 0, 0, 1.38873, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2498" spreadMethod="reflect" x1="665.36505" x2="665.36505" xlink:href="#linearGradient2143" y1="310.82990" y2="311.97168"/>
<linearGradient gradientTransform="matrix(0.919171, 0, 0, 1.10218, -92.1837, -201.406)" gradientUnits="userSpaceOnUse" id="linearGradient2500" x1="390.37320" x2="390.37320" xlink:href="#linearGradient2143" y1="334.77237" y2="489.11697"/>
<linearGradient gradientTransform="matrix(0.910781, 0, 0, 1.09796, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2502" x1="410.82294" x2="410.82294" xlink:href="#linearGradient2143" y1="486.58331" y2="328.51572"/>
<linearGradient gradientTransform="matrix(1.68783, 0, 0, 0.592476, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2504" x1="224.52806" x2="224.51540" xlink:href="#linearGradient2127" y1="781.65656" y2="660.40173"/>
<linearGradient gradientTransform="matrix(0.910781, 0, 0, 1.09796, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2506" x1="409.31522" x2="389.55954" xlink:href="#linearGradient2143" y1="405.39236" y2="350.85809"/>
<linearGradient gradientTransform="matrix(1.5288, 0, 0, 0.654109, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2508" x1="238.77391" x2="238.77391" xlink:href="#linearGradient2143" y1="787.97565" y2="661.18909"/>
<linearGradient gradientTransform="matrix(1.55423, 0, 0, 0.643406, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2510" x1="241.94136" x2="241.94136" xlink:href="#linearGradient2195" y1="802.59015" y2="653.53149"/>
<radialGradient cx="272.21921" cy="277.40359" fx="270.41644" fy="276.27689" gradientTransform="matrix(0.5547, 0, 0, 1.80278, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="radialGradient2512" r="36.908104" spreadMethod="reflect" xlink:href="#linearGradient2143"/>
<linearGradient gradientTransform="matrix(0.5547, 0, 0, 1.80278, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2514" spreadMethod="pad" x1="263.20532" x2="286.64139" xlink:href="#linearGradient2160" y1="258.24908" y2="258.24905"/>
<linearGradient gradientTransform="matrix(1.00653, 0, 0, 1.23234, -129.279, -198.37)" gradientUnits="userSpaceOnUse" id="linearGradient2516" x1="265.96707" x2="265.96704" xlink:href="#linearGradient2099" y1="439.40738" y2="293.78394"/>
<linearGradient gradientTransform="matrix(0.825706, 0, 0, 1.21108, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2518" x1="286.23761" x2="286.23761" xlink:href="#linearGradient2127" y1="529.02618" y2="291.34518"/>
<linearGradient gradientTransform="matrix(1.13228, 0, 0, 1.09599, -127.715, -201.617)" gradientUnits="userSpaceOnUse" id="linearGradient2520" x1="260.92453" x2="241.63106" xlink:href="#linearGradient2127" y1="415.67227" y2="393.49112"/>
<radialGradient cx="81.898430" cy="1244.3292" fx="81.898430" fy="1244.3292" gradientTransform="matrix(2.904, 0, 0, 0.42713, -129.279, -198.87)" gradientUnits="userSpaceOnUse" id="radialGradient2522" r="87.748901" xlink:href="#linearGradient2118"/>
<linearGradient gradientTransform="matrix(2.904, 0, 0, 0.42713, -129.279, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2524" x1="91.790848" x2="91.790848" xlink:href="#linearGradient2160" y1="1207.4102" y2="1233.5283"/>
<linearGradient gradientTransform="matrix(0.834046, 0, 0, 1.19897, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2526" spreadMethod="reflect" x1="302.40866" x2="302.40866" xlink:href="#linearGradient2143" y1="349.93118" y2="351.37485"/>
<linearGradient gradientTransform="matrix(0.834046, 0, 0, 1.19897, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2528" spreadMethod="reflect" x1="271.04855" x2="271.04855" xlink:href="#linearGradient2143" y1="350.81409" y2="354.59967"/>
<linearGradient gradientTransform="matrix(0.834046, 0, 0, 1.19897, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2530" spreadMethod="reflect" x1="234.90314" x2="243.74902" xlink:href="#linearGradient2143" y1="340.21918" y2="372.00415"/>
<linearGradient gradientTransform="matrix(0.834046, 0, 0, 1.19897, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2532" spreadMethod="reflect" x1="337.99429" x2="336.71158" xlink:href="#linearGradient2143" y1="361.38681" y2="369.07602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2534" x1="406.76318" x2="406.76318" xlink:href="#linearGradient2160" y1="402.41534" y2="519.04663"/>
<radialGradient cx="387.54489" cy="514.14392" fx="387.54489" fy="514.14392" gradientUnits="userSpaceOnUse" id="radialGradient2536" r="108.39503" xlink:href="#linearGradient2189"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2538" x1="404.61307" x2="404.61307" xlink:href="#linearGradient2143" y1="510.83701" y2="406.23483"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2540" x1="393.83939" x2="393.83939" xlink:href="#linearGradient2143" y1="404.70325" y2="515.28473"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2542" spreadMethod="reflect" x1="406.76318" x2="405.88797" xlink:href="#linearGradient2143" y1="387.34207" y2="465.23468"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2544" x1="378.74927" x2="378.74927" xlink:href="#linearGradient2143" y1="513.11932" y2="403.91809"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2546" spreadMethod="reflect" x1="401.51196" x2="372.63031" xlink:href="#linearGradient2061" y1="455.60751" y2="426.72598"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2548" x1="378.74927" x2="378.74927" xlink:href="#linearGradient2143" y1="513.11932" y2="403.91809"/>
<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient2550" x1="398.83572" x2="398.83572" xlink:href="#linearGradient2143" y1="404.49619" y2="514.75488"/>
<radialGradient cx="406.76318" cy="459.98349" fx="406.76318" fy="459.98349" gradientUnits="userSpaceOnUse" id="radialGradient2552" r="55.331104" xlink:href="#linearGradient2303"/>
<radialGradient cx="389.47220" cy="447.87982" fx="389.47220" fy="447.87982" gradientUnits="userSpaceOnUse" id="radialGradient2554" r="8.6886206" xlink:href="#linearGradient2061"/>
<radialGradient cx="365.26486" cy="421.07880" fx="365.26486" fy="421.07880" gradientUnits="userSpaceOnUse" id="radialGradient2556" r="65.002319" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="matrix(0.720082, 0, 0, 1.38873, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2558" spreadMethod="reflect" x1="638.20325" x2="639.63287" xlink:href="#linearGradient2143" y1="300.19751" y2="315.38678"/>
<linearGradient gradientTransform="matrix(2.3702, 0, 0, 0.421906, 198.87, -89.375)" gradientUnits="userSpaceOnUse" id="linearGradient2560" x1="-227.78334" x2="-185.92982" xlink:href="#linearGradient2143" y1="576.82489" y2="565.61029"/>
<linearGradient gradientTransform="matrix(2.23385, 0, 0, 0.536851, -88.875, -274.561)" gradientUnits="userSpaceOnUse" id="linearGradient2562" spreadMethod="reflect" x1="204.79185" x2="221.93906" xlink:href="#linearGradient2127" y1="839.64862" y2="839.64862"/>
<linearGradient gradientTransform="matrix(2.23385, 0, 0, 0.536851, -88.875, -274.561)" gradientUnits="userSpaceOnUse" id="linearGradient2564" x1="203.41141" x2="217.53874" xlink:href="#linearGradient2143" y1="826.88013" y2="841.10950"/>
<linearGradient gradientTransform="matrix(2.32989, 0, 0, 0.514722, -88.875, -274.561)" gradientUnits="userSpaceOnUse" id="linearGradient2566" spreadMethod="reflect" x1="202.38510" x2="202.48843" xlink:href="#linearGradient2061" y1="850.50427" y2="853.85681"/>
<linearGradient gradientTransform="matrix(2.74099, 0, 0, 0.371923, -84.1373, -211.322)" gradientUnits="userSpaceOnUse" id="linearGradient2568" spreadMethod="pad" x1="169.78445" x2="169.78447" xlink:href="#linearGradient2061" y1="1014.1465" y2="1046.7983"/>
<linearGradient gradientTransform="matrix(1.18118, 0, 0, 0.846611, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2570" x1="288.18646" x2="293.39722" xlink:href="#linearGradient2143" y1="437.91830" y2="443.31836"/>
<radialGradient cx="331.80984" cy="391.51016" fx="331.80984" fy="391.51016" gradientTransform="scale(1.03749, 0.963863)" gradientUnits="userSpaceOnUse" id="radialGradient2572" r="10.186243" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="scale(1.03872, 0.96272)" gradientUnits="userSpaceOnUse" id="linearGradient2574" x1="333.62552" x2="327.73431" xlink:href="#linearGradient2061" y1="404.92667" y2="386.88702"/>
<linearGradient gradientTransform="scale(1.03872, 0.96272)" gradientUnits="userSpaceOnUse" id="linearGradient2576" x1="338.45172" x2="332.51279" xlink:href="#linearGradient2061" y1="369.61816" y2="391.97516"/>
<radialGradient cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" gradientUnits="userSpaceOnUse" id="radialGradient2578" r="1.4142135" xlink:href="#linearGradient2061"/>
<radialGradient cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" gradientUnits="userSpaceOnUse" id="radialGradient2580" r="1.4142135" xlink:href="#linearGradient2061"/>
<radialGradient cx="331.89600" cy="204.99352" fx="331.78088" fy="205.33112" gradientTransform="matrix(0.431331, 0, 0, 2.3184, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="radialGradient2582" r="17.614996" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="matrix(1.09129, 0, 0, 0.916344, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2584" x1="340.56873" x2="363.77615" xlink:href="#linearGradient2143" y1="396.86478" y2="421.51526"/>
<radialGradient cx="331.80984" cy="391.51016" fx="331.80984" fy="391.51016" gradientTransform="scale(1.03749, 0.963863)" gradientUnits="userSpaceOnUse" id="radialGradient2586" r="10.186243" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="scale(1.03872, 0.96272)" gradientUnits="userSpaceOnUse" id="linearGradient2588" x1="333.62552" x2="327.73431" xlink:href="#linearGradient2061" y1="404.92667" y2="386.88702"/>
<linearGradient gradientTransform="scale(1.03872, 0.96272)" gradientUnits="userSpaceOnUse" id="linearGradient2590" x1="338.45172" x2="332.51279" xlink:href="#linearGradient2061" y1="369.61816" y2="391.97516"/>
<radialGradient cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" gradientUnits="userSpaceOnUse" id="radialGradient2592" r="1.4142135" xlink:href="#linearGradient2061"/>
<radialGradient cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" gradientUnits="userSpaceOnUse" id="radialGradient2594" r="1.4142135" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="scale(1.03872, 0.96272)" gradientUnits="userSpaceOnUse" id="linearGradient2596" x1="338.45172" x2="332.51279" xlink:href="#linearGradient2061" y1="369.61816" y2="391.97516"/>
<linearGradient gradientTransform="scale(1.03872, 0.96272)" gradientUnits="userSpaceOnUse" id="linearGradient2598" x1="338.45172" x2="332.51279" xlink:href="#linearGradient2061" y1="369.61816" y2="391.97516"/>
<linearGradient gradientTransform="matrix(0.35887, 0, 0, 2.78652, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2600" spreadMethod="pad" x1="525.77820" x2="525.77820" xlink:href="#linearGradient2143" y1="185.73842" y2="138.61699"/>
<linearGradient gradientTransform="matrix(0.35887, 0, 0, 2.78652, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2602" x1="517.73596" x2="517.73596" xlink:href="#linearGradient2160" y1="185.10786" y2="137.73700"/>
<linearGradient gradientTransform="matrix(0.35887, 0, 0, 2.78652, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2604" spreadMethod="reflect" x1="500.98907" x2="520.82123" xlink:href="#linearGradient2127" y1="162.27498" y2="162.19385"/>
<linearGradient gradientTransform="matrix(0.339683, 0, 0, 2.94392, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2606" x1="547.19476" x2="556.77557" xlink:href="#linearGradient2143" y1="132.62198" y2="170.48996"/>
<linearGradient gradientTransform="matrix(0.254427, 0, 0, 1.21601, -42.3154, 42.2932)" gradientUnits="userSpaceOnUse" id="linearGradient2608" x1="547.19476" x2="556.77557" xlink:href="#linearGradient2061" y1="132.62198" y2="170.48996"/>
<linearGradient gradientTransform="matrix(0.339683, 0, 0, 2.94392, -89.375, -198.87)" gradientUnits="userSpaceOnUse" id="linearGradient2610" spreadMethod="reflect" x1="550.12598" x2="559.42310" xlink:href="#linearGradient2061" y1="159.70277" y2="159.70277"/>
<radialGradient cx="387.72849" cy="177.34306" fx="387.72849" fy="177.34306" gradientTransform="scale(0.408248, 2.44949)" gradientUnits="userSpaceOnUse" id="radialGradient2612" r="15.509140" xlink:href="#linearGradient2160"/>
<radialGradient cx="387.72849" cy="177.34306" fx="387.72849" fy="177.34306" gradientTransform="scale(0.408248, 2.44949)" gradientUnits="userSpaceOnUse" id="radialGradient2614" r="15.509140" xlink:href="#linearGradient2061"/>
<linearGradient gradientTransform="matrix(1.56589, 0, 0, 0.732797, 98.7092, -125.467)" gradientUnits="userSpaceOnUse" id="linearGradient2616" x1="-327.88300" x2="-327.78314" xlink:href="#linearGradient2143" y1="220.74342" y2="233.92133"/>
<linearGradient gradientTransform="matrix(1.4613, 0, 0, 0.684323, 222.645, -79.8309)" gradientUnits="userSpaceOnUse" id="linearGradient2618" x1="-338.12735" x2="-337.99255" xlink:href="#linearGradient2143" y1="192.44231" y2="214.70348"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2790" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.3702, 0, 0, 0.421906, 198.87, -89.375)" x1="-227.78334" y1="576.82489" x2="-185.92982" y2="565.61029"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2846" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.56589, 0, 0, 0.732797, 98.7092, -125.467)" x1="-327.88300" y1="220.74342" x2="-327.78314" y2="233.92133"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2848" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.4613, 0, 0, 0.684323, 222.645, -79.8309)" x1="-338.12735" y1="192.44231" x2="-337.99255" y2="214.70348"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2853" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.4613, 0, 0, 0.684322, 390.988, -110.87)" x1="-338.12735" y1="192.44231" x2="-337.99255" y2="214.70348"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2857" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.56589, 0, 0, 0.732797, 331.41, -147.922)" x1="-327.88300" y1="220.74342" x2="-327.78314" y2="233.92133"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2860" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.564795, 0.114444, 0.109653, 2.8513, -205.536, -428.778)" cx="387.72849" cy="177.34306" fx="387.72849" fy="177.34306" r="15.509140"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2160" id="radialGradient2863" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.278815, 0.0645387, -0.231885, 2.79362, -31.5504, -441.922)" cx="387.72849" cy="177.34306" fx="387.72849" fy="177.34306" r="15.509140"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2866" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.339683, 0, 0, 2.94392, -124.125, -349.237)" spreadMethod="reflect" x1="550.12598" y1="159.70277" x2="559.42310" y2="159.70277"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2869" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.254427, 0, 0, 1.21601, -77.0654, -108.074)" x1="547.19476" y1="132.62198" x2="556.77557" y2="170.48996"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2872" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.339683, 0, 0, 2.94392, -124.125, -349.237)" x1="547.19476" y1="132.62198" x2="556.77557" y2="170.48996"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2127" id="linearGradient2875" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.35887, 0, 0, 2.78652, -124.125, -349.237)" spreadMethod="reflect" x1="500.98907" y1="162.27498" x2="520.82123" y2="162.19385"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2878" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.35887, 0, 0, 2.78652, -124.125, -349.237)" spreadMethod="pad" x1="525.77820" y1="185.73842" x2="525.77820" y2="138.61699"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2160" id="linearGradient2880" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.35887, 0, 0, 2.78652, -124.125, -349.237)" x1="517.73596" y1="185.10786" x2="517.73596" y2="137.73700"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2883" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.209165, -0.798624, 0.597918, 0.0996396, -89.9483, 253.269)" x1="338.45172" y1="369.61816" x2="332.51279" y2="391.97516"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2886" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.208533, -0.821256, 0.597997, 0.10214, -47.0517, 257.218)" x1="338.45172" y1="369.61816" x2="332.51279" y2="391.97516"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2889" gradientUnits="userSpaceOnUse" cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" r="1.4142135" gradientTransform="matrix(2.975, 0, 0, 2.975, -738.785, -1087.2)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2892" gradientUnits="userSpaceOnUse" cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" r="1.4142135" gradientTransform="matrix(1.4, 0, 0, 1.4, -211.07, -503.235)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2895" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.02282, 0, 0, 0.610828, -77.5944, -210.324)" x1="338.45172" y1="369.61816" x2="332.51279" y2="391.97516"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2898" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.27362, 0, 0, 1.21992, -160.714, -452.607)" x1="333.62552" y1="404.92667" x2="327.73431" y2="386.88702"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2901" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.982239, 0, 0, 0.982282, -64.5328, -359.003)" cx="331.80984" cy="391.51016" fx="331.80984" fy="391.51016" r="10.186243"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2904" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.09129, 0, 0, 0.916344, -124.125, -349.237)" x1="340.56873" y1="396.86478" x2="363.77615" y2="421.51526"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2907" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.431331, 0, 0, 2.3184, -124.125, -349.237)" cx="331.89600" cy="204.99352" fx="331.78088" fy="205.33112" r="17.614996"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2918" gradientUnits="userSpaceOnUse" cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" r="1.4142135" gradientTransform="matrix(2.975, 0, 0, 2.975, -780.16, -1085.75)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2921" gradientUnits="userSpaceOnUse" cx="336.93637" cy="375.66098" fx="336.93637" fy="375.66098" r="1.4142135" gradientTransform="matrix(1.46332, 0, 0, 1.4, -276.376, -500.44)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2924" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.02282, 0, 0, 0.610828, -120.76, -208.424)" x1="338.45172" y1="369.61816" x2="332.51279" y2="391.97516"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2927" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.27362, 0, 0, 1.21992, -203.88, -450.708)" x1="333.62552" y1="404.92667" x2="327.73431" y2="386.88702"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2930" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.982239, 0, 0, 0.982282, -107.699, -357.104)" cx="331.80984" cy="391.51016" fx="331.80984" fy="391.51016" r="10.186243"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2933" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.18118, 0, 0, 0.846611, -124.125, -349.237)" x1="288.18646" y1="437.91830" x2="293.39722" y2="443.31836"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2936" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.74099, 0, 0, 0.371923, -118.887, -361.689)" spreadMethod="pad" x1="169.78445" y1="1014.1465" x2="169.78447" y2="1046.7983"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2939" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.32989, 0, 0, 0.514722, -123.625, -424.928)" spreadMethod="reflect" x1="202.38510" y1="850.50427" x2="202.48843" y2="853.85681"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2127" id="linearGradient2942" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.23385, 0, 0, 0.536851, -123.625, -424.928)" spreadMethod="reflect" x1="204.79185" y1="839.64862" x2="221.93906" y2="839.64862"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2944" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.23385, 0, 0, 0.536851, -123.625, -424.928)" x1="203.41141" y1="826.88013" x2="217.53874" y2="841.10950"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2951" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.3702, 0, 0, 0.421906, 349.237, -124.125)" x1="-227.78334" y1="576.82489" x2="-185.92982" y2="565.61029"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2958" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.720082, 0, 0, 1.38873, -124.125, -349.237)" spreadMethod="reflect" x1="638.20325" y1="300.19751" x2="639.63287" y2="315.38678"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2962" gradientUnits="userSpaceOnUse" cx="365.26486" cy="421.07880" fx="365.26486" fy="421.07880" r="65.002319" gradientTransform="matrix(0.414966, 0, 0, 0.415122, 89.645, -75.3635)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient2965" gradientUnits="userSpaceOnUse" cx="389.47220" cy="447.87982" fx="389.47220" fy="447.87982" r="8.6886206" gradientTransform="matrix(0.414966, 0, 0, 0.415122, 89.645, -75.3635)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2303" id="radialGradient2968" gradientUnits="userSpaceOnUse" cx="406.76318" cy="459.98349" fx="406.76318" fy="459.98349" r="55.331104" gradientTransform="matrix(0.414966, 0, 0, 0.415122, 89.645, -75.3635)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2973" gradientUnits="userSpaceOnUse" x1="398.83572" y1="404.49619" x2="398.83572" y2="514.75488" gradientTransform="matrix(0.708729, 0, 0, 0.708996, -29.847, -210.541)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient2976" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="401.51196" y1="455.60751" x2="372.63031" y2="426.72598" gradientTransform="matrix(0.916689, 0, 0, 0.917034, -114.437, -306.235)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2978" gradientUnits="userSpaceOnUse" x1="378.74927" y1="513.11932" x2="378.74927" y2="403.91809" gradientTransform="matrix(0.916689, 0, 0, 0.917034, -114.437, -306.235)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2981" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="406.76318" y1="387.34207" x2="405.88797" y2="465.23468" gradientTransform="matrix(0.916689, 0, 0, 0.917034, -114.437, -306.235)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2983" gradientUnits="userSpaceOnUse" x1="378.74927" y1="513.11932" x2="378.74927" y2="403.91809" gradientTransform="matrix(0.916689, 0, 0, 0.917034, -114.437, -306.235)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2986" gradientUnits="userSpaceOnUse" x1="393.83939" y1="404.70325" x2="393.83939" y2="515.28473" gradientTransform="matrix(0.93005, 0, 0, 0.9304, -119.872, -312.383)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2189" id="radialGradient2989" gradientUnits="userSpaceOnUse" cx="387.54489" cy="514.14392" fx="387.54489" fy="514.14392" r="108.39503" gradientTransform="matrix(1.08387, 0, 0, 1.08428, -182.443, -383.166)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2991" gradientUnits="userSpaceOnUse" x1="404.61307" y1="510.83701" x2="404.61307" y2="406.23483" gradientTransform="matrix(1.08387, 0, 0, 1.08428, -182.443, -383.166)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2160" id="linearGradient2994" gradientUnits="userSpaceOnUse" x1="406.76318" y1="402.41534" x2="406.76318" y2="519.04663" gradientTransform="matrix(1.11713, 0, 0, 1.11755, -195.969, -398.469)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient2998" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.834046, 0, 0, 1.19897, -124.125, -349.237)" spreadMethod="reflect" x1="337.99429" y1="361.38681" x2="336.71158" y2="369.07602"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3001" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.834046, 0, 0, 1.19897, -124.125, -349.237)" spreadMethod="reflect" x1="234.90314" y1="340.21918" x2="243.74902" y2="372.00415"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3004" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.834046, 0, 0, 1.19897, -124.125, -349.237)" spreadMethod="reflect" x1="271.04855" y1="350.81409" x2="271.04855" y2="354.59967"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3007" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.834046, 0, 0, 1.19897, -124.125, -349.237)" spreadMethod="reflect" x1="302.40866" y1="349.93118" x2="302.40866" y2="351.37485"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2160" id="linearGradient3010" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.904, 0, 0, 0.42713, -164.029, -349.237)" x1="91.790848" y1="1207.4102" x2="91.790848" y2="1233.5283"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2118" id="radialGradient3013" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.904, 0, 0, 0.42713, -164.029, -349.237)" cx="81.898430" cy="1244.3292" fx="81.898430" fy="1244.3292" r="87.748901"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2127" id="linearGradient3016" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.13228, 0, 0, 1.09599, -162.465, -351.984)" x1="260.92453" y1="415.67227" x2="241.63106" y2="393.49112"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2127" id="linearGradient3020" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.825706, 0, 0, 1.21108, -124.125, -349.237)" x1="286.23761" y1="529.02618" x2="286.23761" y2="291.34518"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2099" id="linearGradient3024" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.00653, 0, 0, 1.23234, -164.029, -348.737)" x1="265.96707" y1="439.40738" x2="265.96704" y2="293.78394"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2160" id="linearGradient3027" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5547, 0, 0, 1.80278, -124.125, -349.237)" spreadMethod="pad" x1="263.20532" y1="258.24908" x2="286.64139" y2="258.24905"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="radialGradient3030" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5547, 0, 0, 1.80278, -124.125, -349.237)" spreadMethod="reflect" cx="272.21921" cy="277.40359" fx="270.41644" fy="276.27689" r="36.908104"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2195" id="linearGradient3033" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.55423, 0, 0, 0.643406, -124.125, -349.237)" x1="241.94136" y1="802.59015" x2="241.94136" y2="653.53149"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3036" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5288, 0, 0, 0.654109, -124.125, -349.237)" x1="238.77391" y1="787.97565" x2="238.77391" y2="661.18909"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2127" id="linearGradient3039" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.68783, 0, 0, 0.592476, -124.125, -349.237)" x1="224.52806" y1="781.65656" x2="224.51540" y2="660.40173"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3041" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.910781, 0, 0, 1.09796, -124.125, -349.237)" x1="409.31522" y1="405.39236" x2="389.55954" y2="350.85809"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3044" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.910781, 0, 0, 1.09796, -124.125, -349.237)" x1="410.82294" y1="486.58331" x2="410.82294" y2="328.51572"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3047" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.919171, 0, 0, 1.10218, -126.934, -351.773)" x1="390.37320" y1="334.77237" x2="390.37320" y2="489.11697"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3050" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.720082, 0, 0, 1.38873, -124.125, -349.237)" spreadMethod="reflect" x1="665.36505" y1="310.82990" x2="665.36505" y2="311.97168"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3053" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.720082, 0, 0, 1.38873, -124.125, -349.237)" spreadMethod="reflect" x1="665.36487" y1="310.82980" x2="665.36487" y2="313.87778"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3056" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.720082, 0, 0, 1.38873, -124.125, -349.237)" spreadMethod="reflect" x1="641.06244" y1="319.18408" x2="639.63287" y2="327.53815"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2127" id="linearGradient3059" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.720082, 0, 0, 1.38873, -124.125, -349.237)" x1="656.78778" y1="373.10587" x2="656.78760" y2="278.93256"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3061" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.723143, 0, 0, 1.38285, -124.125, -349.237)" x1="653.25012" y1="373.10922" x2="653.25012" y2="279.66632"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3064" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5547, 0, 0, 1.80278, -124.125, -349.237)" spreadMethod="reflect" x1="272.21921" y1="285.29071" x2="308.27469" y2="262.75601"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2189" id="linearGradient3067" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.38538, 0, 0, 0.721822, -124.125, -349.237)" x1="224.19640" y1="503.96042" x2="224.19640" y2="749.76471"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient3070" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.09268, 0, 0, 0.244339, -124.125, -349.237)" x1="82.159187" y1="1523.0514" x2="82.159187" y2="1441.1952"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient3073" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.82843, 0, 0, 0.353553, 349.237, 124.125)" x1="-159.93404" y1="-1428.3561" x2="-159.93404" y2="-1484.4293"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient3076" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.82843, 0, 0, 0.353553, 349.237, -124.125)" x1="-159.93404" y1="480.33670" x2="-159.93404" y2="424.26443"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="linearGradient3079" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.09268, 0, 0, 0.244339, 124.125, 349.237)" x1="-82.464378" y1="-2178.7864" x2="-82.464378" y2="-2258.8235"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient3082" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0, 1.33333, -1.33334, 0, 870.693, -196.875)" cx="164.88269" cy="367.24536" fx="164.88269" fy="367.24536" r="14.883290"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient3085" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0, -1.33333, -1.33334, 0, 870.693, 403.125)" cx="164.88269" cy="367.24536" fx="164.88269" fy="367.24536" r="14.883290"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient3088" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0, -1.33333, 1.33334, 0, -443.943, 403.125)" cx="164.88269" cy="367.24536" fx="164.88269" fy="367.24536" r="14.883290"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2061" id="radialGradient3091" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.33333, 0, 0, 1.33334, -174.125, -466.692)" cx="164.88359" cy="367.24536" fx="164.88359" fy="367.24536" r="14.648915"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2143" id="linearGradient3094" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.793492, 0, 0, 1.26025, -124.125, -349.237)" x1="219.60535" y1="385.28711" x2="169.10524" y2="327.64883"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2195" id="linearGradient3097" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.36931, 0, 0, 0.730297, -124.125, -349.237)" x1="234.54350" y1="745.65509" x2="234.54350" y2="484.63116"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2195" id="radialGradient3100" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.793492, 0, 0, 1.26025, -124.125, -349.237)" spreadMethod="reflect" cx="195.33907" cy="367.99432" fx="195.33907" fy="367.99432" r="10.189606"/>
</defs>
<path d="M 30.875,63.13818 C 17.07501,63.13818 5.87501,81.05816 5.875,103.13818 C 5.875,125.21818 17.07501,143.13817 30.875,143.13818 C 44.67499,143.13818 55.875,125.21817 55.875,103.13818 C 55.875,81.05818 44.67499,63.13819 30.875,63.13818 z M 20.875,93.13818 C 26.39495,93.13818 30.875,97.61819 30.875,103.13818 C 30.875,108.65818 26.39494,113.13818 20.875,113.13818 C 15.35506,113.13818 10.875,108.65817 10.875,103.13818 C 10.87501,97.6182 15.35506,93.13818 20.875,93.13818 z" id="path2384" style="fill: url(#radialGradient3100) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<rect height="200" id="rect2052" rx="20" ry="20" style="fill: url(#linearGradient3097) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="375" x="25.875" y="3.1253552"/>
<path d="M 26.46875,65.85693 C 10.97866,73.07925 6.98398,92.66893 8.18432,108.2536 C 9.31104,121.04905 14.60474,137.21345 28.44484,140.72776 C 42.10525,142.53231 50.00942,127.50227 52.38715,116.08226 C 55.89979,99.49037 53.34672,79.26696 39.5,67.98193 C 35.5773,65.44914 31.00487,64.5967 26.46875,65.85693 z M 21.28125,91.16943 C 32.40125,91.054 37.14905,107.44937 27.41108,112.98513 C 18.21517,120.06859 4.68188,108.34728 10,98.10693 C 12.18219,93.83917 16.46195,91.13653 21.28125,91.16943 z" id="path2424" style="opacity: 0.563452; fill: none; fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3094) rgb(0, 0, 0); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 45.875,23.12537 L 25.87495,23.12537 C 25.87495,12.08534 34.83495,3.12531 45.87495,3.12531 L 45.875,23.12537 z" id="path2058" style="fill: url(#radialGradient3091) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.59894; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 45.875,183.12531 L 45.875,203.12536 C 34.83497,203.12536 25.87493,194.16537 25.87493,183.12536 L 45.875,183.12531 z" id="path2077" style="fill: url(#radialGradient3088) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.59894; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 380.87493,183.12531 L 380.87493,203.12536 C 391.91496,203.12536 400.875,194.16537 400.875,183.12536 L 380.87493,183.12531 z" id="path2081" style="fill: url(#radialGradient3085) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.59894; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 380.87493,23.12541 L 380.87493,3.12536 C 391.91496,3.12536 400.875,12.08535 400.875,23.12536 L 380.87493,23.12541 z" id="path2085" style="fill: url(#radialGradient3082) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.59894; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<rect height="20" id="rect2103" style="fill: url(#linearGradient3079) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" transform="scale(-1, -1)" width="335" x="-380.875" y="-203.12537"/>
<rect height="20" id="rect2107" style="fill: url(#linearGradient3076) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" transform="matrix(0, -1, 1, 0, 0, 0)" width="160" x="-183.12537" y="25.875"/>
<rect height="20" id="rect2111" style="fill: url(#linearGradient3073) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" transform="matrix(0, -1, -1, 0, 0, 0)" width="160" x="-183.12537" y="-400.875"/>
<rect height="20" id="rect2089" style="fill: url(#linearGradient3070) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" width="335" x="45.875" y="3.1253552"/>
<rect height="180.16859" id="rect2054" rx="10" ry="10" style="fill: url(#linearGradient3067) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" width="345.79498" x="40.875" y="13.125356"/>
<rect height="130" id="rect2603" rx="2.5" ry="65" style="fill: url(#linearGradient3064) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="40" x="20.875" y="38.125355"/>
<rect height="135" id="rect2348" style="opacity: 0.8; fill: url(#linearGradient3059) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3061) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="70" x="315.875" y="38.125355"/>
<rect height="135" id="rect2371" style="opacity: 0.03; fill: url(#linearGradient3056) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.11873; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;" width="70" x="315.875" y="38.125355"/>
<rect height="135" id="rect2367" style="opacity: 0.03; fill: url(#linearGradient3053) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.11873; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;" width="70" x="315.875" y="38.125355"/>
<rect height="135" id="rect2363" style="opacity: 0.03; fill: url(#linearGradient3050) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.11873; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;" width="70" x="315.875" y="38.125355"/>
<path d="M 186.10383,12.92399 L 310.51723,12.92399 C 313.80458,12.92399 316.58619,17.85462 316.58619,18.84073 C 331.75854,52.36891 331.75854,150.98121 316.58619,184.50938 C 316.58619,185.49552 314.5632,190.67265 310.51723,190.42612 L 186.10383,190.42612 C 182.74164,190.42612 180.0349,187.78727 180.0349,184.50938 L 180.0349,18.84073 C 180.0349,15.56286 182.74164,12.92399 186.10383,12.92399 z" id="path2206" style="fill: none; fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3047) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 187.37987,14.12536 L 309.45474,14.12536 C 312.6803,14.12536 315.40962,18.98927 315.40962,19.96203 C 330.29679,53.03652 330.29679,150.31443 315.40962,183.38891 C 315.40962,184.36171 313.42466,189.46879 309.45474,189.22559 L 187.37987,189.22559 C 184.08087,189.22559 181.425,186.62244 181.425,183.38891 L 181.425,19.96203 C 181.425,16.72852 184.08087,14.12536 187.37987,14.12536 z" id="rect2201" style="fill: rgb(159, 159, 159); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3044) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 181.4375,38.13818 L 181.4375,88.13818 L 326.1875,88.13818 C 325.59411,69.7418 323.91809,52.10331 320.90625,38.13818 L 181.4375,38.13818 z" id="path2333" style="fill: url(#linearGradient3039) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3041) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 181.4375,107.12536 L 181.4375,169.13818 L 320.3125,169.13818 C 324.11259,152.51335 326.03565,130.04065 326.375,107.12536 L 181.4375,107.12536 z" id="path2569" style="fill: url(#linearGradient3036) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 181.4375,108.13818 L 181.4375,168.13818 L 320.3125,168.13818 C 324.11259,152.05296 326.03565,130.30968 326.375,108.13818 L 181.4375,108.13818 z" id="path2585" style="fill: url(#linearGradient3033) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<rect height="130" id="rect2613" rx="2.5" ry="65" style="opacity: 0.558376; fill: url(#radialGradient3030) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="40" x="20.875" y="38.125355"/>
<rect height="130" id="rect2619" rx="2.5" ry="65" style="opacity: 0.614213; fill: url(#linearGradient3027) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="40" x="20.875" y="38.125355"/>
<path d="M 53.03853,13.62536 C 94.38469,13.62536 129.52894,13.62536 170.8751,13.62536 C 195.6828,13.62536 195.6828,193.62536 170.8751,193.62536 C 129.52894,193.62536 94.38469,193.62536 53.03853,193.62536 C 40.63468,193.62537 40.63468,13.62536 53.03853,13.62536 z" id="rect2141" style="opacity: 0.5; fill: none; fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3024) rgb(0, 0, 0); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 53.03853,13.12126 C 50.48382,13.12126 48.49401,20.73017 46.99165,32.44782 L 182.96885,32.44782 C 179.96412,20.73037 175.98448,13.12126 170.8751,13.12126 C 129.52894,13.12126 94.38469,13.12126 53.03853,13.12126 z" id="path2157" style="fill: rgb(250, 250, 250); fill-opacity: 1; fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.392157;"/>
<path d="M 47.72993,33.13818 C 43.4849,67.76814 43.48318,138.52301 47.72993,173.13818 L 182.2643,173.13818 C 190.75776,138.52283 190.75442,67.76795 182.2643,33.13818 L 47.72993,33.13818 z" id="path2152" style="fill: url(#linearGradient3020) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<rect height="130" id="rect2373" rx="7.5" ry="65" style="opacity: 0.5; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" width="15" x="57.141327" y="40.125355"/>
<path d="M 48.27533,33.86189 C 44.06391,68.13388 44.06221,138.15735 48.27533,172.4147 L 181.74474,172.4147 C 190.17094,138.15717 190.16765,68.1337 181.74474,33.86189 L 48.27533,33.86189 z" id="path2226" style="fill: none; fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient3016) rgb(0, 0, 0); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 46.99159,172.63818 C 48.49369,184.75197 50.48522,192.63818 53.03846,192.63818 C 94.38461,192.63818 129.52885,192.63818 170.875,192.63818 C 175.9815,192.63818 179.96453,184.75207 182.96875,172.63818 L 46.99159,172.63818 z" id="path2168" style="fill: url(#radialGradient3013) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.392157;"/>
<path d="M 46.99159,172.63818 C 48.49369,184.75197 50.48522,192.63818 53.03846,192.63818 C 94.38461,192.63818 129.52885,192.63818 170.875,192.63818 C 175.9815,192.63818 179.96453,184.75207 182.96875,172.63818 L 46.99159,172.63818 z" id="path2156" style="opacity: 0.5; fill: url(#linearGradient3010) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 48.59015,35.38818 C 44.39815,68.90503 44.39645,137.38564 48.59015,170.88818 L 181.44386,170.88818 C 189.83122,137.38547 189.82792,68.90485 181.44386,35.38818 L 48.59015,35.38818 z" id="path2169" style="opacity: 0.03; fill: url(#linearGradient3007) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 48.59015,35.38818 C 44.39815,68.90503 44.39645,137.38564 48.59015,170.88818 L 181.44386,170.88818 C 189.83122,137.38547 189.82792,68.90485 181.44386,35.38818 L 48.59015,35.38818 z" id="path2175" style="opacity: 0.03; fill: url(#linearGradient3004) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 48.59015,35.38818 C 44.39815,68.90503 44.39645,137.38564 48.59015,170.88818 L 181.44386,170.88818 C 189.83122,137.38547 189.82792,68.90485 181.44386,35.38818 L 48.59015,35.38818 z" id="path2183" style="opacity: 0.05; fill: url(#linearGradient3001) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 48.59015,35.38818 C 44.39815,68.90503 44.39645,137.38564 48.59015,170.88818 L 181.44386,170.88818 C 189.83122,137.38547 189.82792,68.90485 181.44386,35.38818 L 48.59015,35.38818 z" id="path2224" style="opacity: 0.03; fill: url(#linearGradient2998) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 320.25039,115.58555 C 320.25039,149.73623 292.5762,177.42083 258.43835,177.42082 C 224.30051,177.42082 196.62632,149.73623 196.62632,115.58555 C 196.62632,81.434864 224.30051,53.750267 258.43836,53.750267 C 292.5762,53.750267 320.25039,81.434864 320.25039,115.58555 L 320.25039,115.58555 z" id="path2230" style="opacity: 0.6; fill: none; fill-opacity: 1; fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 320.25039,115.58555 C 320.25039,149.73623 292.5762,177.42083 258.43835,177.42082 C 224.30051,177.42082 196.62632,149.73623 196.62632,115.58555 C 196.62632,81.434864 224.30051,53.750267 258.43836,53.750267 C 292.5762,53.750267 320.25039,81.434864 320.25039,115.58555 L 320.25039,115.58555 z" id="path2232" style="opacity: 0.8; fill: none; fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2994) rgb(0, 0, 0); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 318.40714,115.5849 C 318.40714,148.7189 291.55688,175.57931 258.43541,175.5793 C 225.31394,175.5793 198.46369,148.7189 198.46369,115.5849 C 198.46369,82.450896 225.31394,55.590483 258.43542,55.590483 C 291.55688,55.590483 318.40714,82.450896 318.40714,115.5849 L 318.40714,115.5849 z" id="path2242" style="fill: url(#radialGradient2989) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2991) rgb(0, 0, 0); stroke-width: 1.24999; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 309.89859,115.58564 C 309.89859,144.0173 286.85886,167.0657 258.4379,167.06569 C 230.01694,167.06569 206.97721,144.0173 206.97721,115.58564 C 206.97721,87.153983 230.01694,64.105574 258.4379,64.105574 C 286.85886,64.105574 309.89859,87.153983 309.89859,115.58564 L 309.89859,115.58564 z" id="path2254" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2986) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 309.15935,115.5855 C 309.15935,143.60871 286.4506,166.32601 258.43793,166.326 C 230.42527,166.326 207.71652,143.60871 207.71652,115.5855 C 207.71652,87.562289 230.42527,64.844991 258.43794,64.844991 C 286.4506,64.844991 309.15935,87.562289 309.15935,115.5855 L 309.15935,115.5855 z" id="path2260" style="fill: url(#linearGradient2981) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2983) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 309.15935,115.5855 C 309.15935,143.60871 286.4506,166.32601 258.43793,166.326 C 230.42527,166.326 207.71652,143.60871 207.71652,115.5855 C 207.71652,87.562289 230.42527,64.844991 258.43794,64.844991 C 286.4506,64.844991 309.15935,87.562289 309.15935,115.5855 L 309.15935,115.5855 z" id="path2243" style="opacity: 0.85; fill: url(#linearGradient2976) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2978) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 297.65261,115.58575 C 297.65261,137.25163 280.09557,154.81529 258.43785,154.81528 C 236.78014,154.81528 219.2231,137.25163 219.2231,115.58575 C 219.2231,93.919879 236.78014,76.356219 258.43786,76.356219 C 280.09557,76.356219 297.65261,93.919879 297.65261,115.58575 L 297.65261,115.58575 z" id="path2274" style="fill: rgb(80, 80, 80); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2973) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 235.1875,88.34529 C 227.37734,94.97681 222.31249,104.73973 222.3125,115.78279 C 222.3125,126.89379 227.45032,136.71341 235.34375,143.34529 L 281.53125,143.34529 C 289.42468,136.71341 294.5625,126.89379 294.5625,115.78279 C 294.5625,104.73973 289.49766,94.97681 281.6875,88.34529 L 235.1875,88.34529 z" id="path2286" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.88141; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 237.1444,89.97164 C 229.9916,96.21097 225.35305,105.39651 225.35306,115.78649 C 225.35306,126.24038 230.05844,135.47927 237.2875,141.71894 L 279.5875,141.71894 C 286.81656,135.47927 291.52194,126.24038 291.52194,115.78649 C 291.52194,105.39651 286.8834,96.21097 279.7306,89.97164 L 237.1444,89.97164 z" id="path2319" style="fill: rgb(25, 25, 25); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.88141; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 281.39842,115.58577 C 281.39842,128.27128 271.11864,138.55493 258.43789,138.55492 C 245.75714,138.55492 235.47736,128.27128 235.47736,115.58577 C 235.47736,102.90025 245.75714,92.616605 258.43789,92.616605 C 271.11864,92.616605 281.39842,102.90025 281.39842,115.58577 L 281.39842,115.58577 z" id="path2299" style="fill: url(#radialGradient2968) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2.6962; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 281.39842,115.58577 C 281.39842,128.27128 271.11864,138.55493 258.43789,138.55492 C 245.75714,138.55492 235.47736,128.27128 235.47736,115.58577 C 235.47736,102.90025 245.75714,92.616605 258.43789,92.616605 C 271.11864,92.616605 281.39842,102.90025 281.39842,115.58577 L 281.39842,115.58577 z" id="path2325" style="opacity: 0.445026; fill: url(#radialGradient2965) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2.6962; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 281.39842,115.58577 C 281.39842,128.27128 271.11864,138.55493 258.43789,138.55492 C 245.75714,138.55492 235.47736,128.27128 235.47736,115.58577 C 235.47736,102.90025 245.75714,92.616605 258.43789,92.616605 C 271.11864,92.616605 281.39842,102.90025 281.39842,115.58577 L 281.39842,115.58577 z" id="path2329" style="opacity: 0.198953; fill: url(#radialGradient2962) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2.6962; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 385.16789,46.98193 C 382.2674,55.61978 380.16789,78.51092 380.16789,105.63818 C 380.16789,132.76544 382.2674,155.62533 385.16789,164.26318 L 385.16789,46.98193 z" id="path2358" style="opacity: 0.7; fill: rgb(0, 0, 0); fill-opacity: 0.784314; fill-rule: evenodd; stroke: none; stroke-width: 1.11873; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<rect height="135" id="rect2375" style="opacity: 0.03; fill: url(#linearGradient2958) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.11873; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;" width="70" x="315.875" y="38.125355"/>
<path transform="matrix(0, -1, 1, 0, 0, 0)" style="font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; text-anchor: start; fill: none; fill-opacity: 1; stroke: rgb(255, 255, 255); stroke-width: 0.625; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 0.196078; font-family: Bitstream Vera Serif;" d="M -142.77359,123.0159 C -143.00407,123.91825 -143.41813,124.58817 -144.01578,125.02567 C -144.61344,125.46317 -145.41617,125.68192 -146.42398,125.68192 C -147.90055,125.68192 -149.06754,125.27469 -149.92496,124.46024 C -150.78238,123.64578 -151.21109,122.54129 -151.21109,121.14676 C -151.21109,119.74833 -150.78238,118.64188 -149.92496,117.82742 C -149.06754,117.01298 -147.90055,116.60575 -146.42398,116.60574 C -145.90446,116.60575 -145.36344,116.66825 -144.80093,116.79324 C -144.23844,116.91825 -143.64274,117.1077 -143.01382,117.3616 L -143.01382,119.51199 L -143.75797,119.51199 C -143.91032,118.77763 -144.18766,118.22782 -144.59,117.86258 C -144.99235,117.49735 -145.5236,117.31474 -146.18375,117.31473 C -147.03531,117.31474 -147.66813,117.62821 -148.08218,118.25516 C -148.49625,118.88212 -148.70328,119.84598 -148.70328,121.14676 C -148.70328,122.44754 -148.49625,123.41043 -148.08218,124.03543 C -147.66813,124.66043 -147.03141,124.97293 -146.17203,124.97293 C -145.59,124.97293 -145.11442,124.81082 -144.74527,124.4866 C -144.37614,124.16239 -144.10758,123.67215 -143.93961,123.0159 L -142.77359,123.0159 z M -135.54312,121.68582 L -135.54312,124.80301 L -134.6525,124.80301 L -134.6525,125.51199 L -137.61734,125.51199 L -137.61734,124.72098 C -137.89078,125.0491 -138.19547,125.29129 -138.5314,125.44754 C -138.86734,125.60379 -139.25016,125.68192 -139.67984,125.68192 C -140.31656,125.68192 -140.80582,125.51102 -141.14761,125.16922 C -141.48941,124.82742 -141.66031,124.33817 -141.66031,123.70145 C -141.66031,123.00223 -141.41519,122.47879 -140.92496,122.13113 C -140.43472,121.78348 -139.69547,121.60965 -138.70718,121.60965 L -137.61734,121.60965 L -137.61734,121.24051 C -137.61734,120.73661 -137.73649,120.36454 -137.97476,120.1243 C -138.21305,119.88407 -138.58219,119.76395 -139.08218,119.76395 C -139.49625,119.76395 -139.81558,119.84891 -140.04019,120.01883 C -140.2648,120.18876 -140.42398,120.46708 -140.51773,120.85379 L -141.17984,120.85379 L -141.17984,119.51199 C -140.80875,119.37919 -140.42398,119.27958 -140.02554,119.21317 C -139.62711,119.14677 -139.20719,119.11356 -138.76578,119.11356 C -137.6525,119.11356 -136.83707,119.32059 -136.31949,119.73465 C -135.80192,120.14872 -135.54313,120.79911 -135.54312,121.68582 L -135.54312,121.68582 z M -137.61734,123.55496 L -137.61734,122.30692 L -138.39664,122.30692 C -138.78336,122.30692 -139.08023,122.41239 -139.28726,122.62332 C -139.4943,122.83426 -139.59781,123.137 -139.59781,123.53152 C -139.59781,123.92606 -139.52262,124.22098 -139.37222,124.41629 C -139.22184,124.6116 -138.99234,124.70926 -138.68375,124.70926 C -138.36344,124.70926 -138.10563,124.60379 -137.91031,124.39285 C -137.715,124.18192 -137.61734,123.90262 -137.61734,123.55496 L -137.61734,123.55496 z M -127.08804,120.30301 C -126.79899,119.88895 -126.48649,119.58719 -126.15054,119.39774 C -125.81461,119.20829 -125.42204,119.11356 -124.97281,119.11356 C -124.25798,119.11356 -123.7238,119.31571 -123.37027,119.72 C -123.01677,120.1243 -122.84001,120.73465 -122.84,121.55106 L -122.84,124.80301 L -121.94937,124.80301 L -121.94937,125.51199 L -125.65836,125.51199 L -125.65836,124.80301 L -124.91422,124.80301 L -124.91422,121.8616 C -124.91422,121.08426 -124.97379,120.59403 -125.09293,120.3909 C -125.21208,120.18778 -125.43376,120.08622 -125.75797,120.08621 C -126.12516,120.08622 -126.41032,120.22782 -126.61343,120.51102 C -126.81657,120.79422 -126.91813,121.19754 -126.91812,121.72098 L -126.91812,124.80301 L -126.17398,124.80301 L -126.17398,125.51199 L -129.73648,125.51199 L -129.73648,124.80301 L -128.99234,124.80301 L -128.99234,121.8616 C -128.99235,121.08426 -129.05289,120.59403 -129.17398,120.3909 C -129.29508,120.18778 -129.51578,120.08622 -129.83609,120.08621 C -130.20719,120.08622 -130.4943,120.22782 -130.69742,120.51102 C -130.90055,120.79422 -131.00211,121.19754 -131.00211,121.72098 L -131.00211,124.80301 L -130.25797,124.80301 L -130.25797,125.51199 L -133.96109,125.51199 L -133.96109,124.80301 L -133.07632,124.80301 L -133.07632,119.99246 L -133.96109,119.99246 L -133.96109,119.28348 L -131.00211,119.28348 L -131.00211,120.16238 C -130.75992,119.79911 -130.48258,119.53348 -130.17007,119.36551 C -129.85758,119.19755 -129.48649,119.11356 -129.05679,119.11356 C -128.54899,119.11356 -128.13688,119.21024 -127.82047,119.40359 C -127.50407,119.59696 -127.25993,119.89676 -127.08804,120.30301 L -127.08804,120.30301 z M -116.85757,121.99637 C -116.85758,121.17606 -116.93375,120.60087 -117.08609,120.27078 C -117.23844,119.94071 -117.4982,119.77567 -117.86539,119.77567 C -118.22086,119.77567 -118.47574,119.93778 -118.63004,120.26199 C -118.78434,120.58622 -118.86148,121.12919 -118.86148,121.8909 L -118.86148,121.99637 L -116.85757,121.99637 z M -114.57828,122.69363 L -118.86148,122.69363 L -118.86148,122.74051 C -118.86148,123.5452 -118.74039,124.12625 -118.4982,124.48367 C -118.25602,124.8411 -117.86539,125.01981 -117.32632,125.01981 C -116.87711,125.01981 -116.51383,124.90067 -116.23648,124.66238 C -115.95914,124.4241 -115.78141,124.0784 -115.70328,123.62527 L -114.73062,123.62527 C -114.8986,124.33231 -115.23258,124.85184 -115.73257,125.18387 C -116.23258,125.5159 -116.9318,125.68192 -117.83023,125.68192 C -118.90836,125.68192 -119.73551,125.39774 -120.31168,124.82938 C -120.88785,124.26102 -121.17593,123.4495 -121.17593,122.39481 C -121.17593,121.36356 -120.88101,120.55887 -120.29117,119.98074 C -119.70133,119.40262 -118.88101,119.11356 -117.83023,119.11356 C -116.79899,119.11356 -116.00797,119.41727 -115.45718,120.02469 C -114.90641,120.63212 -114.61344,121.52176 -114.57828,122.69363 L -114.57828,122.69363 z M -107.58218,119.21317 L -107.58218,121.07059 L -108.24429,121.07059 C -108.26774,120.73856 -108.35758,120.49149 -108.51382,120.32938 C -108.67008,120.16727 -108.89664,120.08622 -109.19351,120.08621 C -109.64664,120.08622 -110.00406,120.28544 -110.26578,120.68387 C -110.5275,121.08231 -110.65836,121.63504 -110.65836,122.34207 L -110.65836,124.80301 L -109.5275,124.80301 L -109.5275,125.51199 L -113.61734,125.51199 L -113.61734,124.80301 L -112.73257,124.80301 L -112.73257,119.99246 L -113.68179,119.99246 L -113.68179,119.28348 L -110.65836,119.28348 L -110.65836,120.3909 C -110.45523,119.95731 -110.18668,119.63602 -109.85269,119.42703 C -109.51871,119.21805 -109.10953,119.11356 -108.62515,119.11356 C -108.50406,119.11356 -108.3566,119.12235 -108.18277,119.13992 C -108.00895,119.15751 -107.80875,119.18192 -107.58218,119.21317 L -107.58218,119.21317 z M -101.09,121.68582 L -101.09,124.80301 L -100.19937,124.80301 L -100.19937,125.51199 L -103.16422,125.51199 L -103.16422,124.72098 C -103.43766,125.0491 -103.74234,125.29129 -104.07828,125.44754 C -104.41422,125.60379 -104.79703,125.68192 -105.22672,125.68192 C -105.86344,125.68192 -106.35269,125.51102 -106.69449,125.16922 C -107.03629,124.82742 -107.20718,124.33817 -107.20718,123.70145 C -107.20718,123.00223 -106.96207,122.47879 -106.47183,122.13113 C -105.9816,121.78348 -105.24234,121.60965 -104.25406,121.60965 L -103.16422,121.60965 L -103.16422,121.24051 C -103.16422,120.73661 -103.28336,120.36454 -103.52164,120.1243 C -103.75992,119.88407 -104.12906,119.76395 -104.62906,119.76395 C -105.04312,119.76395 -105.36246,119.84891 -105.58707,120.01883 C -105.81168,120.18876 -105.97086,120.46708 -106.06461,120.85379 L -106.72672,120.85379 L -106.72672,119.51199 C -106.35562,119.37919 -105.97086,119.27958 -105.57242,119.21317 C -105.17398,119.14677 -104.75406,119.11356 -104.31265,119.11356 C -103.19938,119.11356 -102.38395,119.32059 -101.86636,119.73465 C -101.34879,120.14872 -101.09,120.79911 -101.09,121.68582 L -101.09,121.68582 z M -103.16422,123.55496 L -103.16422,122.30692 L -103.94351,122.30692 C -104.33023,122.30692 -104.62711,122.41239 -104.83414,122.62332 C -105.04117,122.83426 -105.14469,123.137 -105.14468,123.53152 C -105.14469,123.92606 -105.06949,124.22098 -104.9191,124.41629 C -104.76871,124.6116 -104.53922,124.70926 -104.23062,124.70926 C -103.91031,124.70926 -103.6525,124.60379 -103.45718,124.39285 C -103.26188,124.18192 -103.16422,123.90262 -103.16422,123.55496 L -103.16422,123.55496 z" id="text2445"/>
<path transform="matrix(0, -1, 1, 0, 0, 0)" style="font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; text-anchor: start; fill: none; fill-opacity: 1; stroke: rgb(0, 0, 0); stroke-width: 0.625; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 0.196078; font-family: Bitstream Vera Serif;" d="M -141.35959,121.60191 C -141.59007,122.50426 -142.00413,123.17418 -142.60178,123.61168 C -143.19944,124.04918 -144.00217,124.26793 -145.00998,124.26793 C -146.48655,124.26793 -147.65354,123.8607 -148.51096,123.04625 C -149.36838,122.2318 -149.79709,121.12731 -149.79709,119.73277 C -149.79709,118.33434 -149.36838,117.2279 -148.51096,116.41344 C -147.65354,115.59899 -146.48655,115.19177 -145.00998,115.19176 C -144.49045,115.19177 -143.94944,115.25427 -143.38693,115.37926 C -142.82444,115.50427 -142.22874,115.69372 -141.59982,115.94762 L -141.59982,118.09801 L -142.34396,118.09801 C -142.49632,117.36364 -142.77366,116.81383 -143.17599,116.44859 C -143.57835,116.08337 -144.10959,115.90075 -144.76974,115.90074 C -145.62131,115.90075 -146.25412,116.21423 -146.66818,116.84117 C -147.08225,117.46813 -147.28928,118.432 -147.28928,119.73277 C -147.28928,121.03356 -147.08225,121.99645 -146.66818,122.62144 C -146.25412,123.24645 -145.61741,123.55895 -144.75803,123.55894 C -144.176,123.55895 -143.70042,123.39684 -143.33127,123.07262 C -142.96214,122.7484 -142.69358,122.25817 -142.5256,121.60191 L -141.35959,121.60191 z M -134.12912,120.27184 L -134.12912,123.38902 L -133.23849,123.38902 L -133.23849,124.09801 L -136.20334,124.09801 L -136.20334,123.30699 C -136.47678,123.63512 -136.78147,123.8773 -137.1174,124.03355 C -137.45334,124.1898 -137.83615,124.26793 -138.26584,124.26793 C -138.90256,124.26793 -139.39182,124.09703 -139.73361,123.75523 C -140.07541,123.41344 -140.24631,122.92418 -140.24631,122.28746 C -140.24631,121.58824 -140.00119,121.06481 -139.51096,120.71715 C -139.02072,120.3695 -138.28147,120.19567 -137.29318,120.19566 L -136.20334,120.19566 L -136.20334,119.82652 C -136.20334,119.32262 -136.32248,118.95055 -136.56076,118.71031 C -136.79905,118.47008 -137.16819,118.34997 -137.66818,118.34996 C -138.08225,118.34997 -138.40158,118.43493 -138.62619,118.60484 C -138.8508,118.77477 -139.00998,119.05309 -139.10373,119.4398 L -139.76584,119.4398 L -139.76584,118.09801 C -139.39475,117.9652 -139.00998,117.86559 -138.61154,117.79918 C -138.21311,117.73278 -137.79319,117.69958 -137.35178,117.69957 C -136.2385,117.69958 -135.42307,117.90661 -134.90549,118.32066 C -134.38792,118.73473 -134.12913,119.38512 -134.12912,120.27184 L -134.12912,120.27184 z M -136.20334,122.14098 L -136.20334,120.89293 L -136.98264,120.89293 C -137.36936,120.89293 -137.66623,120.9984 -137.87326,121.20934 C -138.08029,121.42028 -138.18381,121.72301 -138.18381,122.11754 C -138.18381,122.51207 -138.10861,122.80699 -137.95822,123.0023 C -137.80783,123.19762 -137.57834,123.29527 -137.26974,123.29527 C -136.94944,123.29527 -136.69162,123.1898 -136.49631,122.97887 C -136.301,122.76793 -136.20334,122.48863 -136.20334,122.14098 L -136.20334,122.14098 z M -125.67404,118.88902 C -125.38499,118.47497 -125.07249,118.17321 -124.73654,117.98375 C -124.40061,117.7943 -124.00804,117.69958 -123.55881,117.69957 C -122.84397,117.69958 -122.30979,117.90172 -121.95627,118.30602 C -121.60276,118.71032 -121.42601,119.32067 -121.42599,120.13707 L -121.42599,123.38902 L -120.53537,123.38902 L -120.53537,124.09801 L -124.24435,124.09801 L -124.24435,123.38902 L -123.50021,123.38902 L -123.50021,120.44762 C -123.50022,119.67028 -123.55979,119.18004 -123.67892,118.97691 C -123.79807,118.77379 -124.01975,118.67223 -124.34396,118.67223 C -124.71116,118.67223 -124.99632,118.81383 -125.19943,119.09703 C -125.40256,119.38024 -125.50413,119.78356 -125.50412,120.30699 L -125.50412,123.38902 L -124.75998,123.38902 L -124.75998,124.09801 L -128.32248,124.09801 L -128.32248,123.38902 L -127.57834,123.38902 L -127.57834,120.44762 C -127.57834,119.67028 -127.63889,119.18004 -127.75998,118.97691 C -127.88108,118.77379 -128.10178,118.67223 -128.42209,118.67223 C -128.79319,118.67223 -129.0803,118.81383 -129.28342,119.09703 C -129.48655,119.38024 -129.58811,119.78356 -129.5881,120.30699 L -129.5881,123.38902 L -128.84396,123.38902 L -128.84396,124.09801 L -132.54709,124.09801 L -132.54709,123.38902 L -131.66232,123.38902 L -131.66232,118.57848 L -132.54709,118.57848 L -132.54709,117.86949 L -129.5881,117.86949 L -129.5881,118.7484 C -129.34592,118.38512 -129.06858,118.1195 -128.75607,117.95152 C -128.44358,117.78356 -128.07248,117.69958 -127.64279,117.69957 C -127.13499,117.69958 -126.72288,117.79626 -126.40646,117.98961 C -126.09006,118.18297 -125.84592,118.48278 -125.67404,118.88902 L -125.67404,118.88902 z M -115.44357,120.58238 C -115.44358,119.76207 -115.51975,119.18688 -115.67209,118.8568 C -115.82444,118.52672 -116.0842,118.36168 -116.45139,118.36168 C -116.80686,118.36168 -117.06174,118.52379 -117.21603,118.84801 C -117.37033,119.17223 -117.44748,119.7152 -117.44748,120.47691 L -117.44748,120.58238 L -115.44357,120.58238 z M -113.16428,121.27965 L -117.44748,121.27965 L -117.44748,121.32652 C -117.44748,122.13121 -117.32639,122.71227 -117.0842,123.06969 C -116.84201,123.42711 -116.45139,123.60582 -115.91232,123.60582 C -115.46311,123.60582 -115.09983,123.48668 -114.82248,123.2484 C -114.54514,123.01012 -114.36741,122.66441 -114.28928,122.21129 L -113.31662,122.21129 C -113.4846,122.91832 -113.81858,123.43785 -114.31857,123.76988 C -114.81858,124.10191 -115.5178,124.26793 -116.41623,124.26793 C -117.49436,124.26793 -118.3215,123.98375 -118.89767,123.41539 C -119.47385,122.84703 -119.76193,122.03551 -119.76193,120.98082 C -119.76193,119.94957 -119.46701,119.14489 -118.87717,118.56676 C -118.28732,117.98864 -117.46701,117.69958 -116.41623,117.69957 C -115.38498,117.69958 -114.59397,118.00329 -114.04318,118.6107 C -113.49241,119.21813 -113.19944,120.10778 -113.16428,121.27965 L -113.16428,121.27965 z M -106.16818,117.79918 L -106.16818,119.6566 L -106.83029,119.6566 C -106.85374,119.32457 -106.94358,119.0775 -107.09982,118.91539 C -107.25608,118.75329 -107.48264,118.67223 -107.77951,118.67223 C -108.23264,118.67223 -108.59006,118.87145 -108.85178,119.26988 C -109.1135,119.66832 -109.24436,120.22106 -109.24435,120.92809 L -109.24435,123.38902 L -108.11349,123.38902 L -108.11349,124.09801 L -112.20334,124.09801 L -112.20334,123.38902 L -111.31857,123.38902 L -111.31857,118.57848 L -112.26779,118.57848 L -112.26779,117.86949 L -109.24435,117.86949 L -109.24435,118.97691 C -109.04123,118.54333 -108.77268,118.22204 -108.43869,118.01305 C -108.10471,117.80407 -107.69553,117.69958 -107.21115,117.69957 C -107.09006,117.69958 -106.9426,117.70837 -106.76877,117.72594 C -106.59495,117.74352 -106.39475,117.76794 -106.16818,117.79918 L -106.16818,117.79918 z M -99.675995,120.27184 L -99.675995,123.38902 L -98.78537,123.38902 L -98.78537,124.09801 L -101.75021,124.09801 L -101.75021,123.30699 C -102.02366,123.63512 -102.32834,123.8773 -102.66428,124.03355 C -103.00022,124.1898 -103.38303,124.26793 -103.81271,124.26793 C -104.44943,124.26793 -104.93869,124.09703 -105.28049,123.75523 C -105.62228,123.41344 -105.79318,122.92418 -105.79318,122.28746 C -105.79318,121.58824 -105.54807,121.06481 -105.05783,120.71715 C -104.5676,120.3695 -103.82834,120.19567 -102.84006,120.19566 L -101.75021,120.19566 L -101.75021,119.82652 C -101.75022,119.32262 -101.86936,118.95055 -102.10764,118.71031 C -102.34592,118.47008 -102.71506,118.34997 -103.21506,118.34996 C -103.62912,118.34997 -103.94846,118.43493 -104.17307,118.60484 C -104.39768,118.77477 -104.55686,119.05309 -104.6506,119.4398 L -105.31271,119.4398 L -105.31271,118.09801 C -104.94162,117.9652 -104.55686,117.86559 -104.15842,117.79918 C -103.75998,117.73278 -103.34006,117.69958 -102.89865,117.69957 C -101.78537,117.69958 -100.96995,117.90661 -100.45236,118.32066 C -99.93479,118.73473 -99.676001,119.38512 -99.675995,120.27184 L -99.675995,120.27184 z M -101.75021,122.14098 L -101.75021,120.89293 L -102.52951,120.89293 C -102.91623,120.89293 -103.21311,120.9984 -103.42014,121.20934 C -103.62717,121.42028 -103.73068,121.72301 -103.73068,122.11754 C -103.73068,122.51207 -103.65549,122.80699 -103.5051,123.0023 C -103.35471,123.19762 -103.12522,123.29527 -102.81662,123.29527 C -102.49631,123.29527 -102.2385,123.1898 -102.04318,122.97887 C -101.84787,122.76793 -101.75022,122.48863 -101.75021,122.14098 L -101.75021,122.14098 z" id="text2391"/>
<path style="font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; text-anchor: start; fill: url(#linearGradient2951) rgb(0, 0, 0); fill-opacity: 1; stroke: rgb(0, 0, 0); stroke-width: 0.625; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 0.784314; font-family: Bitstream Vera Serif;" d="M -141.85959,122.10191 C -142.09007,123.00426 -142.50413,123.67418 -143.10178,124.11168 C -143.69944,124.54918 -144.50217,124.76793 -145.50998,124.76793 C -146.98655,124.76793 -148.15354,124.3607 -149.01096,123.54625 C -149.86838,122.7318 -150.29709,121.62731 -150.29709,120.23277 C -150.29709,118.83434 -149.86838,117.7279 -149.01096,116.91344 C -148.15354,116.09899 -146.98655,115.69177 -145.50998,115.69176 C -144.99045,115.69177 -144.44944,115.75427 -143.88693,115.87926 C -143.32444,116.00427 -142.72874,116.19372 -142.09982,116.44762 L -142.09982,118.59801 L -142.84396,118.59801 C -142.99632,117.86364 -143.27366,117.31383 -143.67599,116.94859 C -144.07835,116.58337 -144.60959,116.40075 -145.26974,116.40074 C -146.12131,116.40075 -146.75412,116.71423 -147.16818,117.34117 C -147.58225,117.96813 -147.78928,118.932 -147.78928,120.23277 C -147.78928,121.53356 -147.58225,122.49645 -147.16818,123.12144 C -146.75412,123.74645 -146.11741,124.05895 -145.25803,124.05894 C -144.676,124.05895 -144.20042,123.89684 -143.83127,123.57262 C -143.46214,123.2484 -143.19358,122.75817 -143.0256,122.10191 L -141.85959,122.10191 z M -134.62912,120.77184 L -134.62912,123.88902 L -133.73849,123.88902 L -133.73849,124.59801 L -136.70334,124.59801 L -136.70334,123.80699 C -136.97678,124.13512 -137.28147,124.3773 -137.6174,124.53355 C -137.95334,124.6898 -138.33615,124.76793 -138.76584,124.76793 C -139.40256,124.76793 -139.89182,124.59703 -140.23361,124.25523 C -140.57541,123.91344 -140.74631,123.42418 -140.74631,122.78746 C -140.74631,122.08824 -140.50119,121.56481 -140.01096,121.21715 C -139.52072,120.8695 -138.78147,120.69567 -137.79318,120.69566 L -136.70334,120.69566 L -136.70334,120.32652 C -136.70334,119.82262 -136.82248,119.45055 -137.06076,119.21031 C -137.29905,118.97008 -137.66819,118.84997 -138.16818,118.84996 C -138.58225,118.84997 -138.90158,118.93493 -139.12619,119.10484 C -139.3508,119.27477 -139.50998,119.55309 -139.60373,119.9398 L -140.26584,119.9398 L -140.26584,118.59801 C -139.89475,118.4652 -139.50998,118.36559 -139.11154,118.29918 C -138.71311,118.23278 -138.29319,118.19958 -137.85178,118.19957 C -136.7385,118.19958 -135.92307,118.40661 -135.40549,118.82066 C -134.88792,119.23473 -134.62913,119.88512 -134.62912,120.77184 L -134.62912,120.77184 z M -136.70334,122.64098 L -136.70334,121.39293 L -137.48264,121.39293 C -137.86936,121.39293 -138.16623,121.4984 -138.37326,121.70934 C -138.58029,121.92028 -138.68381,122.22301 -138.68381,122.61754 C -138.68381,123.01207 -138.60861,123.30699 -138.45822,123.5023 C -138.30783,123.69762 -138.07834,123.79527 -137.76974,123.79527 C -137.44944,123.79527 -137.19162,123.6898 -136.99631,123.47887 C -136.801,123.26793 -136.70334,122.98863 -136.70334,122.64098 L -136.70334,122.64098 z M -126.17404,119.38902 C -125.88499,118.97497 -125.57249,118.67321 -125.23654,118.48375 C -124.90061,118.2943 -124.50804,118.19958 -124.05881,118.19957 C -123.34397,118.19958 -122.80979,118.40172 -122.45627,118.80602 C -122.10276,119.21032 -121.92601,119.82067 -121.92599,120.63707 L -121.92599,123.88902 L -121.03537,123.88902 L -121.03537,124.59801 L -124.74435,124.59801 L -124.74435,123.88902 L -124.00021,123.88902 L -124.00021,120.94762 C -124.00022,120.17028 -124.05979,119.68004 -124.17892,119.47691 C -124.29807,119.27379 -124.51975,119.17223 -124.84396,119.17223 C -125.21116,119.17223 -125.49632,119.31383 -125.69943,119.59703 C -125.90256,119.88024 -126.00413,120.28356 -126.00412,120.80699 L -126.00412,123.88902 L -125.25998,123.88902 L -125.25998,124.59801 L -128.82248,124.59801 L -128.82248,123.88902 L -128.07834,123.88902 L -128.07834,120.94762 C -128.07834,120.17028 -128.13889,119.68004 -128.25998,119.47691 C -128.38108,119.27379 -128.60178,119.17223 -128.92209,119.17223 C -129.29319,119.17223 -129.5803,119.31383 -129.78342,119.59703 C -129.98655,119.88024 -130.08811,120.28356 -130.0881,120.80699 L -130.0881,123.88902 L -129.34396,123.88902 L -129.34396,124.59801 L -133.04709,124.59801 L -133.04709,123.88902 L -132.16232,123.88902 L -132.16232,119.07848 L -133.04709,119.07848 L -133.04709,118.36949 L -130.0881,118.36949 L -130.0881,119.2484 C -129.84592,118.88512 -129.56858,118.6195 -129.25607,118.45152 C -128.94358,118.28356 -128.57248,118.19958 -128.14279,118.19957 C -127.63499,118.19958 -127.22288,118.29626 -126.90646,118.48961 C -126.59006,118.68297 -126.34592,118.98278 -126.17404,119.38902 L -126.17404,119.38902 z M -115.94357,121.08238 C -115.94358,120.26207 -116.01975,119.68688 -116.17209,119.3568 C -116.32444,119.02672 -116.5842,118.86168 -116.95139,118.86168 C -117.30686,118.86168 -117.56174,119.02379 -117.71603,119.34801 C -117.87033,119.67223 -117.94748,120.2152 -117.94748,120.97691 L -117.94748,121.08238 L -115.94357,121.08238 z M -113.66428,121.77965 L -117.94748,121.77965 L -117.94748,121.82652 C -117.94748,122.63121 -117.82639,123.21227 -117.5842,123.56969 C -117.34201,123.92711 -116.95139,124.10582 -116.41232,124.10582 C -115.96311,124.10582 -115.59983,123.98668 -115.32248,123.7484 C -115.04514,123.51012 -114.86741,123.16441 -114.78928,122.71129 L -113.81662,122.71129 C -113.9846,123.41832 -114.31858,123.93785 -114.81857,124.26988 C -115.31858,124.60191 -116.0178,124.76793 -116.91623,124.76793 C -117.99436,124.76793 -118.8215,124.48375 -119.39767,123.91539 C -119.97385,123.34703 -120.26193,122.53551 -120.26193,121.48082 C -120.26193,120.44957 -119.96701,119.64489 -119.37717,119.06676 C -118.78732,118.48864 -117.96701,118.19958 -116.91623,118.19957 C -115.88498,118.19958 -115.09397,118.50329 -114.54318,119.1107 C -113.99241,119.71813 -113.69944,120.60778 -113.66428,121.77965 L -113.66428,121.77965 z M -106.66818,118.29918 L -106.66818,120.1566 L -107.33029,120.1566 C -107.35374,119.82457 -107.44358,119.5775 -107.59982,119.41539 C -107.75608,119.25329 -107.98264,119.17223 -108.27951,119.17223 C -108.73264,119.17223 -109.09006,119.37145 -109.35178,119.76988 C -109.6135,120.16832 -109.74436,120.72106 -109.74435,121.42809 L -109.74435,123.88902 L -108.61349,123.88902 L -108.61349,124.59801 L -112.70334,124.59801 L -112.70334,123.88902 L -111.81857,123.88902 L -111.81857,119.07848 L -112.76779,119.07848 L -112.76779,118.36949 L -109.74435,118.36949 L -109.74435,119.47691 C -109.54123,119.04333 -109.27268,118.72204 -108.93869,118.51305 C -108.60471,118.30407 -108.19553,118.19958 -107.71115,118.19957 C -107.59006,118.19958 -107.4426,118.20837 -107.26877,118.22594 C -107.09495,118.24352 -106.89475,118.26794 -106.66818,118.29918 L -106.66818,118.29918 z M -100.17599,120.77184 L -100.17599,123.88902 L -99.28537,123.88902 L -99.28537,124.59801 L -102.25021,124.59801 L -102.25021,123.80699 C -102.52366,124.13512 -102.82834,124.3773 -103.16428,124.53355 C -103.50022,124.6898 -103.88303,124.76793 -104.31271,124.76793 C -104.94943,124.76793 -105.43869,124.59703 -105.78049,124.25523 C -106.12228,123.91344 -106.29318,123.42418 -106.29318,122.78746 C -106.29318,122.08824 -106.04807,121.56481 -105.55783,121.21715 C -105.0676,120.8695 -104.32834,120.69567 -103.34006,120.69566 L -102.25021,120.69566 L -102.25021,120.32652 C -102.25022,119.82262 -102.36936,119.45055 -102.60764,119.21031 C -102.84592,118.97008 -103.21506,118.84997 -103.71506,118.84996 C -104.12912,118.84997 -104.44846,118.93493 -104.67307,119.10484 C -104.89768,119.27477 -105.05686,119.55309 -105.1506,119.9398 L -105.81271,119.9398 L -105.81271,118.59801 C -105.44162,118.4652 -105.05686,118.36559 -104.65842,118.29918 C -104.25998,118.23278 -103.84006,118.19958 -103.39865,118.19957 C -102.28537,118.19958 -101.46995,118.40661 -100.95236,118.82066 C -100.43479,119.23473 -100.176,119.88512 -100.17599,120.77184 L -100.17599,120.77184 z M -102.25021,122.64098 L -102.25021,121.39293 L -103.02951,121.39293 C -103.41623,121.39293 -103.71311,121.4984 -103.92014,121.70934 C -104.12717,121.92028 -104.23068,122.22301 -104.23068,122.61754 C -104.23068,123.01207 -104.15549,123.30699 -104.0051,123.5023 C -103.85471,123.69762 -103.62522,123.79527 -103.31662,123.79527 C -102.99631,123.79527 -102.7385,123.6898 -102.54318,123.47887 C -102.34787,123.26793 -102.25022,122.98863 -102.25021,122.64098 L -102.25021,122.64098 z" id="text2379" transform="matrix(0, -1, 1, 0, 0, 0)"/>
<path style="font-style: italic; font-variant: normal; font-weight: bold; font-stretch: condensed; text-anchor: middle; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1; font-family: Arial Narrow;" d="M -128.66444,347.21399 L -128.66444,338.62415 L -125.70545,338.62415 C -125.03749,338.62415 -124.52772,338.66517 -124.17616,338.74719 C -123.68397,338.86048 -123.26405,339.06556 -122.91639,339.36243 C -122.46327,339.74525 -122.1244,340.2345 -121.89979,340.8302 C -121.67519,341.42591 -121.56288,342.10657 -121.56287,342.87219 C -121.56288,343.52454 -121.63905,344.10266 -121.79139,344.60657 C -121.94374,345.11048 -122.13905,345.52747 -122.37733,345.85754 C -122.61562,346.18762 -122.87636,346.44739 -123.15955,346.63684 C -123.44276,346.82629 -123.78456,346.96985 -124.18494,347.0675 C -124.58534,347.16516 -125.0453,347.21399 -125.56483,347.21399 L -128.66444,347.21399 z M -127.52772,346.20032 L -125.69373,346.20032 C -125.12733,346.20032 -124.683,346.14758 -124.36073,346.04211 C -124.03847,345.93665 -123.78163,345.78821 -123.59022,345.5968 C -123.32069,345.32727 -123.11073,344.96497 -122.96033,344.50989 C -122.80995,344.05481 -122.73476,343.50306 -122.73475,342.85461 C -122.73476,341.95618 -122.88222,341.26575 -123.17713,340.78333 C -123.47206,340.30091 -123.83046,339.97767 -124.25233,339.8136 C -124.55702,339.69642 -125.04725,339.63782 -125.72303,339.63782 L -127.52772,339.63782 L -127.52772,346.20032 z M -120.12147,339.83704 L -120.12147,338.62415 L -119.06678,338.62415 L -119.06678,339.83704 L -120.12147,339.83704 z M -120.12147,347.21399 L -120.12147,340.99133 L -119.06678,340.99133 L -119.06678,347.21399 L -120.12147,347.21399 z M -117.64881,347.72961 L -116.62342,347.88196 C -116.58045,348.19836 -116.46131,348.42883 -116.266,348.57336 C -116.00428,348.76868 -115.64686,348.86633 -115.19373,348.86633 C -114.70546,348.86633 -114.3285,348.76868 -114.06287,348.57336 C -113.79725,348.37805 -113.61757,348.10461 -113.52381,347.75305 C -113.46913,347.53821 -113.44374,347.08704 -113.44764,346.39954 C -113.90858,346.94251 -114.4828,347.21399 -115.1703,347.21399 C -116.02577,347.21399 -116.68788,346.9054 -117.15662,346.28821 C -117.62537,345.67102 -117.85975,344.93079 -117.85975,344.0675 C -117.85975,343.47376 -117.75233,342.92591 -117.53748,342.42395 C -117.32264,341.922 -117.01112,341.53431 -116.60291,341.26086 C -116.19471,340.98743 -115.71522,340.85071 -115.16444,340.85071 C -114.43007,340.85071 -113.8246,341.14759 -113.34803,341.74133 L -113.34803,340.99133 L -112.37537,340.99133 L -112.37537,346.37024 C -112.37538,347.33899 -112.47401,348.02551 -112.67127,348.42981 C -112.86854,348.8341 -113.18104,349.15344 -113.60877,349.38782 C -114.03651,349.62219 -114.56288,349.73938 -115.18787,349.73938 C -115.93006,349.73938 -116.52967,349.57239 -116.9867,349.2384 C -117.44373,348.90442 -117.66444,348.40149 -117.64881,347.72961 L -117.64881,347.72961 z M -116.77576,343.99133 C -116.77577,344.80774 -116.61366,345.40344 -116.28944,345.77844 C -115.96522,346.15344 -115.55897,346.34094 -115.07069,346.34094 C -114.58632,346.34094 -114.18007,346.15442 -113.85194,345.78137 C -113.52382,345.40833 -113.35975,344.82337 -113.35975,344.02649 C -113.35975,343.26477 -113.5287,342.69056 -113.86658,342.30383 C -114.20448,341.91712 -114.61171,341.72376 -115.08826,341.72375 C -115.55702,341.72376 -115.95545,341.91419 -116.28358,342.29504 C -116.6117,342.67591 -116.77577,343.24134 -116.77576,343.99133 L -116.77576,343.99133 z M -110.76991,339.83704 L -110.76991,338.62415 L -109.71522,338.62415 L -109.71522,339.83704 L -110.76991,339.83704 z M -110.76991,347.21399 L -110.76991,340.99133 L -109.71522,340.99133 L -109.71522,347.21399 L -110.76991,347.21399 z M -108.35584,344.45422 L -107.28358,344.36047 C -107.2328,344.79016 -107.11463,345.1427 -106.92908,345.41809 C -106.74354,345.69348 -106.45545,345.91614 -106.06483,346.08606 C -105.67421,346.25598 -105.23475,346.34094 -104.74647,346.34094 C -104.31288,346.34094 -103.93007,346.27649 -103.59803,346.14758 C -103.266,346.01868 -103.01893,345.84192 -102.85682,345.61731 C -102.69472,345.3927 -102.61366,345.14759 -102.61366,344.88196 C -102.61366,344.61243 -102.69179,344.37708 -102.84803,344.1759 C -103.00429,343.97473 -103.2621,343.80579 -103.62147,343.66907 C -103.85194,343.57923 -104.36171,343.43958 -105.15076,343.25012 C -105.93983,343.06067 -106.49256,342.88196 -106.80897,342.71399 C -107.21913,342.49915 -107.52479,342.23255 -107.72596,341.91418 C -107.92713,341.59583 -108.02772,341.23939 -108.02772,340.84485 C -108.02772,340.41126 -107.90467,340.00599 -107.65858,339.62903 C -107.41248,339.25208 -107.05311,338.96595 -106.58045,338.77063 C -106.1078,338.57533 -105.58241,338.47767 -105.00428,338.47766 C -104.36757,338.47767 -103.80604,338.58021 -103.31971,338.78528 C -102.83339,338.99036 -102.45936,339.29212 -102.19764,339.69055 C -101.93593,340.089 -101.7953,340.54017 -101.77576,341.04407 L -102.86561,341.1261 C -102.92421,340.58314 -103.12245,340.17298 -103.46033,339.89563 C -103.79823,339.61829 -104.29725,339.47962 -104.95741,339.47961 C -105.64491,339.47962 -106.14588,339.6056 -106.46033,339.85754 C -106.77479,340.1095 -106.93202,340.41321 -106.93201,340.76868 C -106.93202,341.07728 -106.82069,341.33118 -106.59803,341.5304 C -106.37928,341.72962 -105.80799,341.93372 -104.88416,342.1427 C -103.96034,342.35169 -103.32655,342.53431 -102.9828,342.69055 C -102.4828,342.92102 -102.11366,343.21302 -101.87537,343.56653 C -101.6371,343.92005 -101.51796,344.32727 -101.51795,344.78821 C -101.51796,345.24524 -101.64882,345.6759 -101.91053,346.0802 C -102.17226,346.4845 -102.54823,346.79895 -103.03846,347.02356 C -103.5287,347.24817 -104.08046,347.36047 -104.69373,347.36047 C -105.47108,347.36047 -106.12245,347.24719 -106.64783,347.02063 C -107.17323,346.79407 -107.58534,346.45325 -107.88416,345.99817 C -108.18299,345.54309 -108.34022,345.02844 -108.35584,344.45422 L -108.35584,344.45422 z M -100.08826,347.21399 L -100.08826,338.62415 L -99.033577,338.62415 L -99.033577,341.70618 C -98.541392,341.13587 -97.920299,340.85071 -97.170296,340.85071 C -96.709362,340.85071 -96.308972,340.94153 -95.969124,341.12317 C -95.629285,341.30482 -95.386122,341.55579 -95.239632,341.8761 C -95.093153,342.19642 -95.019911,342.66126 -95.019905,343.27063 L -95.019905,347.21399 L -96.074593,347.21399 L -96.074593,343.27063 C -96.074597,342.74329 -96.188855,342.3595 -96.417366,342.11926 C -96.645886,341.87903 -96.969128,341.75892 -97.387093,341.75891 C -97.699596,341.75892 -97.993541,341.83997 -98.268929,342.00208 C -98.544321,342.16419 -98.74061,342.38392 -98.857796,342.66125 C -98.974985,342.9386 -99.033579,343.32142 -99.033577,343.80969 L -99.033577,347.21399 L -100.08826,347.21399 z M -93.801155,344.10266 C -93.801155,342.95032 -93.480843,342.09681 -92.840218,341.54211 C -92.305063,341.08118 -91.65272,340.85071 -90.883186,340.85071 C -90.027722,340.85071 -89.328504,341.13099 -88.78553,341.69153 C -88.242567,342.25208 -87.971083,343.02649 -87.971077,344.01477 C -87.971083,344.81555 -88.0912,345.44544 -88.331429,345.90442 C -88.571669,346.3634 -88.921278,346.71985 -89.380257,346.97375 C -89.839245,347.22766 -90.340221,347.35461 -90.883186,347.35461 C -91.754283,347.35461 -92.458383,347.07532 -92.995491,346.51672 C -93.532601,345.95813 -93.801155,345.15344 -93.801155,344.10266 L -93.801155,344.10266 z M -92.717171,344.10266 C -92.717172,344.89954 -92.543344,345.49622 -92.195686,345.8927 C -91.848032,346.28919 -91.410533,346.48743 -90.883186,346.48743 C -90.359753,346.48743 -89.924206,346.28821 -89.576546,345.88977 C -89.228894,345.49133 -89.055066,344.88391 -89.055061,344.0675 C -89.055066,343.29798 -89.229871,342.71497 -89.579475,342.31848 C -89.929089,341.922 -90.363659,341.72376 -90.883186,341.72375 C -91.410533,341.72376 -91.848032,341.92103 -92.195686,342.31555 C -92.543344,342.71009 -92.717172,343.30579 -92.717171,344.10266 L -92.717171,344.10266 z M -84.426155,346.27063 L -84.273811,347.20227 C -84.570689,347.26477 -84.836314,347.29602 -85.070686,347.29602 C -85.453501,347.29602 -85.750376,347.23547 -85.961311,347.11438 C -86.17225,346.99329 -86.320688,346.83411 -86.406624,346.63684 C -86.492562,346.43958 -86.535531,346.02454 -86.53553,345.39172 L -86.53553,341.81165 L -87.308968,341.81165 L -87.308968,340.99133 L -86.53553,340.99133 L -86.53553,339.45032 L -85.486702,338.8175 L -85.486702,340.99133 L -84.426155,340.99133 L -84.426155,341.81165 L -85.486702,341.81165 L -85.486702,345.45032 C -85.486704,345.7511 -85.468149,345.94446 -85.431038,346.0304 C -85.393931,346.11633 -85.333384,346.18469 -85.249397,346.23547 C -85.165415,346.28626 -85.045298,346.31165 -84.889046,346.31165 C -84.771861,346.31165 -84.617564,346.29797 -84.426155,346.27063 L -84.426155,346.27063 z M -110.85194,356.20227 L -109.71522,356.48938 C -109.95351,357.42298 -110.38222,358.13489 -111.00135,358.62512 C -111.6205,359.11536 -112.37733,359.36047 -113.27186,359.36047 C -114.19764,359.36047 -114.95057,359.172 -115.53065,358.79504 C -116.11073,358.41809 -116.55213,357.87219 -116.85487,357.15735 C -117.1576,356.44251 -117.30897,355.67493 -117.30897,354.85461 C -117.30897,353.96009 -117.13807,353.17982 -116.79627,352.51379 C -116.45448,351.84779 -115.96815,351.34193 -115.33729,350.99622 C -114.70643,350.65052 -114.0121,350.47767 -113.25428,350.47766 C -112.39491,350.47767 -111.67226,350.69642 -111.08631,351.13391 C -110.50038,351.57142 -110.09218,352.18665 -109.8617,352.97961 L -110.98084,353.24329 C -111.18007,352.61829 -111.46913,352.16322 -111.84803,351.87805 C -112.22694,351.5929 -112.7035,351.45033 -113.27772,351.45032 C -113.93788,351.45033 -114.48964,351.60853 -114.93299,351.92493 C -115.37635,352.24134 -115.68788,352.66614 -115.86756,353.19934 C -116.04725,353.73255 -116.13709,354.28235 -116.13709,354.84875 C -116.13709,355.57923 -116.03065,356.21692 -115.81776,356.76184 C -115.60487,357.30676 -115.27381,357.71399 -114.82459,357.98352 C -114.37538,358.25305 -113.88905,358.38782 -113.36561,358.38782 C -112.72889,358.38782 -112.18983,358.20422 -111.74842,357.83704 C -111.30702,357.46985 -111.00819,356.92493 -110.85194,356.20227 L -110.85194,356.20227 z M -103.26405,352.72766 L -104.31287,352.80969 C -104.40663,352.39564 -104.53944,352.09486 -104.71131,351.90735 C -104.99647,351.60657 -105.34803,351.45618 -105.766,351.45618 C -106.10194,351.45618 -106.39686,351.54993 -106.65076,351.73743 C -106.9828,351.97962 -107.24452,352.33314 -107.43592,352.79797 C -107.62733,353.26282 -107.72694,353.92493 -107.73475,354.7843 C -107.48084,354.39759 -107.1703,354.11048 -106.80311,353.92297 C -106.43592,353.73548 -106.05116,353.64173 -105.64881,353.64172 C -104.94569,353.64173 -104.34706,353.90052 -103.85291,354.41809 C -103.35878,354.93567 -103.11171,355.60462 -103.1117,356.42493 C -103.11171,356.96399 -103.22792,357.46497 -103.46033,357.92786 C -103.69276,358.39075 -104.0121,358.74524 -104.41834,358.99133 C -104.8246,359.23743 -105.28553,359.36047 -105.80116,359.36047 C -106.68006,359.36047 -107.39686,359.03723 -107.95155,358.39075 C -108.50623,357.74426 -108.78358,356.67884 -108.78358,355.19446 C -108.78358,353.53431 -108.47694,352.32728 -107.86366,351.57336 C -107.3285,350.91712 -106.6078,350.589 -105.70155,350.58899 C -105.02577,350.589 -104.47206,350.77845 -104.04041,351.15735 C -103.60878,351.53626 -103.34999,352.0597 -103.26405,352.72766 L -103.26405,352.72766 z M -107.57069,356.43079 C -107.57069,356.79407 -107.49354,357.14173 -107.33924,357.47375 C -107.18495,357.80579 -106.96913,358.05872 -106.69178,358.23254 C -106.41444,358.40637 -106.12342,358.49329 -105.81873,358.49329 C -105.37342,358.49329 -104.99061,358.3136 -104.6703,357.95422 C -104.34999,357.59485 -104.18983,357.10657 -104.18983,356.48938 C -104.18983,355.89563 -104.34803,355.42786 -104.66444,355.08606 C -104.98085,354.74427 -105.37928,354.57337 -105.85975,354.57336 C -106.33631,354.57337 -106.74061,354.74427 -107.07264,355.08606 C -107.40467,355.42786 -107.57069,355.8761 -107.57069,356.43079 L -107.57069,356.43079 z M -102.05701,354.97766 C -102.05701,353.96204 -101.95252,353.14466 -101.74354,352.52551 C -101.53455,351.90638 -101.22401,351.42884 -100.8119,351.0929 C -100.39979,350.75697 -99.881236,350.589 -99.256233,350.58899 C -98.795299,350.589 -98.391003,350.68177 -98.043343,350.86731 C -97.695691,351.05286 -97.408582,351.32044 -97.182014,351.67004 C -96.955458,352.01966 -96.777723,352.44544 -96.648811,352.94739 C -96.519911,353.44935 -96.455458,354.1261 -96.455452,354.97766 C -96.455458,355.98548 -96.558974,356.79895 -96.765999,357.41809 C -96.973036,358.03723 -97.282606,358.51575 -97.69471,358.85364 C -98.106824,359.19153 -98.627331,359.36047 -99.256233,359.36047 C -100.08436,359.36047 -100.73475,359.0636 -101.20741,358.46985 C -101.77381,357.75501 -102.05701,356.59095 -102.05701,354.97766 L -102.05701,354.97766 z M -100.97303,354.97766 C -100.97303,356.38782 -100.80799,357.3263 -100.47791,357.79309 C -100.14784,358.25989 -99.740611,358.49329 -99.256233,358.49329 C -98.771862,358.49329 -98.364636,358.25891 -98.034554,357.79016 C -97.70448,357.32141 -97.539441,356.38391 -97.539436,354.97766 C -97.539441,353.5636 -97.70448,352.62415 -98.034554,352.1593 C -98.364636,351.69447 -98.775768,351.46204 -99.267952,351.46204 C -99.75233,351.46204 -100.13905,351.66712 -100.42811,352.07727 C -100.79139,352.60071 -100.97303,353.56751 -100.97303,354.97766 L -100.97303,354.97766 z" id="text2397" transform="matrix(0, -1, 1, 0, 0, 0)"/>
<rect height="16.52914" id="rect2403" rx="2.1213202" ry="2.1213195" style="fill: url(#linearGradient2942) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2944) rgb(0, 0, 0); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="73.765671" x="311.98959" y="16.371693"/>
<rect height="14.380119" id="rect2435" style="opacity: 0.4; fill: url(#linearGradient2939) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="69.811966" x="313.96686" y="17.446339"/>
<rect height="8.7436724" id="rect2441" style="opacity: 0.6; fill: url(#linearGradient2936) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="69.111969" x="314.31686" y="18.165882"/>
<rect height="24.682844" id="rect2469" rx="2" ry="2" style="opacity: 0.9; fill: rgb(25, 25, 25); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2933) rgb(0, 0, 0); stroke-width: 0.625; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" width="34.684162" x="200.87665" y="15.127797"/>
<path d="M 227.92286,27.469571 C 227.92286,32.816546 223.57816,37.151116 218.21871,37.151116 C 212.85926,37.151116 208.51456,32.816546 208.51456,27.469571 C 208.51456,22.122597 212.85926,17.788026 218.21871,17.788026 C 223.57816,17.788026 227.92286,22.122597 227.92286,27.469571 z" id="path2473" style="opacity: 0.28934; fill: url(#radialGradient2930) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 230.78663,27.47026 C 230.78663,34.118681 225.15978,39.50828 218.21869,39.50828 C 211.27761,39.50828 205.65076,34.118681 205.65076,27.47026 C 205.65076,20.821839 211.27761,15.43224 218.21869,15.43224 C 225.15978,15.43224 230.78663,20.821839 230.78663,27.47026 z" id="path2483" style="opacity: 0.233503; fill: url(#linearGradient2927) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 228.31205,31.004633 C 228.31205,34.333571 223.79323,37.032203 218.21899,37.032203 C 212.64474,37.032203 208.12593,34.333571 208.12593,31.004633 C 208.12593,27.675696 212.64474,24.977064 218.21899,24.977064 C 223.79323,24.977064 228.31205,27.675696 228.31205,31.004633 z" id="path2489" style="fill: url(#linearGradient2924) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 218.73917,25.485372 C 218.74082,26.193772 218.34675,26.849028 217.70577,27.20369 C 217.06481,27.558338 216.27465,27.558338 215.63368,27.20369 C 214.99271,26.849028 214.59863,26.193772 214.60029,25.485372 C 214.59863,24.776972 214.99271,24.121716 215.63368,23.767054 C 216.27465,23.412406 217.06481,23.412406 217.70577,23.767054 C 218.34675,24.121716 218.74082,24.776972 218.73917,25.485372 z" id="path2515" style="fill: url(#radialGradient2921) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.625; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 226.43298,31.838416 C 226.43634,33.343766 225.63517,34.736185 224.33203,35.489841 C 223.02892,36.243468 221.42248,36.243468 220.11937,35.489841 C 218.81623,34.736185 218.01506,33.343766 218.01843,31.838416 C 218.01506,30.333066 218.81623,28.940647 220.11937,28.18699 C 221.42248,27.433363 223.02892,27.433363 224.33203,28.18699 C 225.63517,28.940647 226.43634,30.333066 226.43298,31.838416 z" id="path2525" style="opacity: 0.751269; fill: url(#radialGradient2918) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.625; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 246.22987,155.19327 C 224.21407,148.40766 211.83229,125.17402 218.5744,103.2995 C 225.31649,81.424974 248.62936,69.19299 270.64517,75.978603 C 292.66097,82.764217 305.04275,105.99785 298.30065,127.87238 C 291.55856,149.7469 268.24567,161.97888 246.22987,155.19327 L 246.22987,155.19327 z" id="path2545" style="fill: rgb(255, 255, 255); fill-opacity: 0; fill-rule: evenodd; stroke: none; stroke-width: 1.70665; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 281.39724,81.020893 C 300.60997,93.783541 305.90516,119.60477 293.22437,138.69422 C 280.54359,157.78367 254.6888,162.91256 235.47608,150.14992 C 216.26335,137.38727 210.96816,111.56604 223.64894,92.476585 C 236.32972,73.387135 262.18451,68.258245 281.39724,81.020893 L 281.39724,81.020893 z" id="path2564" style="fill: rgb(255, 255, 255); fill-opacity: 0; fill-rule: evenodd; stroke: none; stroke-width: 1.70665; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.784314;"/>
<path d="M 21.15625,86.07568 C 21.08503,92.12757 20.875,96.46414 20.875,103.13818 C 20.875,128.22327 21.42224,149.23071 22.21875,160.07568 C 23.55502,162.90442 24.92787,164.85709 26.1875,164.73193 C 30.36098,164.31722 31.91654,145.7894 29.6875,123.35693 C 27.98175,106.19073 24.54916,91.7491 21.15625,86.07568 z" id="path1466" style="fill: url(#radialGradient2907) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 254.28125,14.57568 C 250.42622,17.054 247.84375,21.37417 247.84375,26.29443 C 247.84375,31.21468 250.42622,35.50361 254.28125,37.98193 L 269.28125,37.98193 C 273.13783,35.5039 275.71875,31.21586 275.71875,26.29443 C 275.71875,21.37299 273.13783,17.05371 269.28125,14.57568 L 254.28125,14.57568 z" id="path2247" style="opacity: 0.85; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2904) rgb(0, 0, 0); stroke-width: 0.85; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 271.08866,25.570571 C 271.08866,30.917546 266.74396,35.252116 261.38451,35.252116 C 256.02506,35.252116 251.68036,30.917546 251.68036,25.570571 C 251.68036,20.223597 256.02506,15.889026 261.38451,15.889026 C 266.74396,15.889026 271.08866,20.223597 271.08866,25.570571 z" id="path2261" style="opacity: 0.28934; fill: url(#radialGradient2901) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 273.95263,25.57126 C 273.95263,32.219681 268.32578,37.60928 261.3847,37.60928 C 254.44361,37.60928 248.81676,32.219681 248.81676,25.57126 C 248.81676,18.922839 254.44361,13.53324 261.3847,13.53324 C 268.32578,13.53324 273.95263,18.922839 273.95263,25.57126 z" id="path2263" style="opacity: 0.233503; fill: url(#linearGradient2898) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 271.47785,29.105133 C 271.47785,32.434071 266.95903,35.132703 261.38479,35.132703 C 255.81054,35.132703 251.29173,32.434071 251.29173,29.105133 C 251.29173,25.776196 255.81054,23.077564 261.38479,23.077564 C 266.95903,23.077564 271.47785,25.776196 271.47785,29.105133 z" id="path2265" style="fill: url(#linearGradient2895) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 262.62081,22.690372 C 262.62239,23.398772 262.24537,24.054028 261.63213,24.40869 C 261.0189,24.763338 260.26293,24.763338 259.6497,24.40869 C 259.03646,24.054028 258.65944,23.398772 258.66102,22.690372 C 258.65944,21.981972 259.03646,21.326716 259.6497,20.972054 C 260.26293,20.617406 261.0189,20.617406 261.63213,20.972054 C 262.24537,21.326716 262.62239,21.981972 262.62081,22.690372 z" id="path2267" style="fill: url(#radialGradient2892) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.625; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 267.80798,30.386416 C 267.81134,31.891766 267.01017,33.284185 265.70703,34.037841 C 264.40392,34.791468 262.79748,34.791468 261.49437,34.037841 C 260.19123,33.284185 259.39006,31.891766 259.39343,30.386416 C 259.39006,28.881066 260.19123,27.488647 261.49437,26.73499 C 262.79748,25.981363 264.40392,25.981363 265.70703,26.73499 C 267.01017,27.488647 267.81134,28.881066 267.80798,30.386416 z" id="path2269" style="opacity: 0.751269; fill: url(#radialGradient2889) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.625; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
<path d="M 258.51775,16.971651 C 261.77676,17.528301 263.49741,21.607873 262.36092,26.083634 C 261.22443,30.559396 257.66118,33.736462 254.40217,33.179812 C 251.14315,32.623163 249.42251,28.543591 250.55899,24.067829 C 251.69548,19.592068 255.25873,16.415002 258.51775,16.971651 z" id="path2281" style="fill: url(#linearGradient2886) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<path d="M 215.80574,19.766488 C 219.06432,20.309512 220.78183,24.278051 219.6419,28.630472 C 218.50197,32.982893 214.93628,36.071019 211.6777,35.527995 C 208.41911,34.984971 206.70161,31.016431 207.84153,26.66401 C 208.98146,22.311589 212.54716,19.223464 215.80574,19.766488 z" id="path2287" style="fill: url(#linearGradient2883) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 0.636287; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;"/>
<rect height="130" id="rect2291" rx="7.5" ry="65" style="fill: url(#linearGradient2878) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: url(#linearGradient2880) rgb(0, 0, 0); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" width="15" x="55.875" y="38.125355"/>
<rect height="130" id="rect2310" rx="7.5" ry="65" style="opacity: 0.65; fill: url(#linearGradient2875) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" width="15" x="55.875" y="38.125355"/>
<rect height="100" id="rect2318" rx="3.9183178" ry="65" style="opacity: 0.538071; fill: url(#linearGradient2872) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.392157;" width="11.538462" x="57.605759" y="53.125355"/>
<rect height="41.305851" id="rect2336" rx="4.8584952" ry="65" style="fill: url(#linearGradient2869) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.196078;" width="8.6424856" x="59.053741" y="58.125355"/>
<rect height="87.583504" id="rect2355" rx="3.918318" ry="65" style="opacity: 0.243655; fill: url(#linearGradient2866) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.392157;" width="10.105789" x="58.322098" y="59.333607"/>
<path d="M 39.755008,79.53133 C 37.768803,103.45996 34.222669,122.40982 31.834488,121.85701 C 29.446307,121.30421 29.120448,101.45808 31.106653,77.529449 C 33.092858,53.600817 36.638992,34.650962 39.027173,35.203767 C 41.415354,35.756572 41.741214,55.602698 39.755008,79.53133 z" id="path2359" style="opacity: 0.624366; fill: url(#radialGradient2863) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.392157;"/>
<path d="M 41.656886,123.02906 C 42.596116,147.45179 39.435763,166.45567 34.598024,165.47541 C 29.760286,164.49514 25.077141,143.90194 24.137911,119.47921 C 23.198682,95.056473 26.359035,76.052594 31.196773,77.032859 C 36.034511,78.013125 40.717657,98.606324 41.656886,123.02906 z" id="path2369" style="opacity: 0.492386; fill: url(#radialGradient2860) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 0.392157;"/>
<path style="font-size: 12px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; text-anchor: start; opacity: 0.517766; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient2857) rgb(0, 0, 0); stroke-width: 0.999997px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1; font-family: Bitstream Vera Sans;" d="M -190.25237,21.937844 C -189.66253,22.090192 -189.21429,22.35484 -188.90764,22.731789 C -188.60101,23.108745 -188.44769,23.588237 -188.44768,24.170265 C -188.44769,25.037453 -188.77972,25.696632 -189.44377,26.147803 C -190.10784,26.598974 -191.07659,26.82456 -192.35002,26.82456 C -192.79924,26.82456 -193.24944,26.788427 -193.70061,26.716162 C -194.15178,26.643896 -194.59807,26.535498 -195.03947,26.390967 L -195.03947,24.650733 C -194.6176,24.861672 -194.19866,25.020852 -193.78264,25.128272 C -193.36663,25.235695 -192.95745,25.289406 -192.5551,25.289405 C -191.95745,25.289406 -191.49944,25.185891 -191.18108,24.978858 C -190.86272,24.771829 -190.70354,24.474954 -190.70354,24.088233 C -190.70354,23.689799 -190.86663,23.388042 -191.1928,23.182961 C -191.51897,22.977886 -192.00042,22.875347 -192.63713,22.875344 L -193.53948,22.875344 L -193.53948,21.422219 L -192.59026,21.422219 C -192.02386,21.422225 -191.60198,21.333358 -191.32463,21.155618 C -191.04729,20.977889 -190.90862,20.707382 -190.90862,20.344095 C -190.90862,20.008164 -191.04339,19.748399 -191.31291,19.564798 C -191.58245,19.381212 -191.96331,19.289415 -192.45549,19.289408 C -192.81878,19.289415 -193.18596,19.330431 -193.55705,19.412455 C -193.92815,19.494493 -194.29729,19.615587 -194.66448,19.775736 L -194.66448,18.123393 C -194.21916,17.998402 -193.77776,17.904652 -193.34026,17.842143 C -192.90276,17.779652 -192.47307,17.748402 -192.0512,17.748393 C -190.91448,17.748402 -190.0639,17.934925 -189.49944,18.307963 C -188.93499,18.681018 -188.65277,19.24254 -188.65276,19.992533 C -188.65277,20.504257 -188.78753,20.923202 -189.05706,21.249368 C -189.32659,21.575545 -189.72503,21.805036 -190.25237,21.937844 L -190.25237,21.937844 z M -186.27385,24.387061 L -184.16448,24.387061 L -184.16448,26.654638 L -186.27385,26.654638 L -186.27385,24.387061 z M -179.47112,24.996436 L -175.62152,24.996436 L -175.62152,26.654638 L -181.97894,26.654638 L -181.97894,24.996436 L -178.78558,22.178078 C -178.50043,21.920271 -178.28949,21.668318 -178.15277,21.422219 C -178.01605,21.176131 -177.94769,20.920272 -177.94769,20.654642 C -177.94769,20.244492 -178.08539,19.914414 -178.36077,19.664408 C -178.63617,19.414415 -179.00238,19.289415 -179.45941,19.289408 C -179.81097,19.289415 -180.19574,19.364611 -180.6137,19.514994 C -181.03167,19.665391 -181.47894,19.889024 -181.9555,20.185892 L -181.9555,18.264018 C -181.44769,18.096058 -180.94574,17.968128 -180.44964,17.880229 C -179.95355,17.792347 -179.46722,17.748402 -178.99066,17.748393 C -177.94379,17.748402 -177.13031,17.978871 -176.55023,18.439799 C -175.97016,18.900744 -175.68012,19.543321 -175.68011,20.367532 C -175.68012,20.8441 -175.80317,21.288436 -176.04925,21.700539 C -176.29535,22.112653 -176.81293,22.66441 -177.60199,23.355812 L -179.47112,24.996436 z" id="text2319" transform="matrix(0, -0.646182, 1.54755, 0, 0, 0)"/>
<path style="font-size: 12px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; text-anchor: middle; opacity: 0.685279; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient2853) rgb(0, 0, 0); stroke-width: 0.999998px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1; font-family: Bitstream Vera Sans;" d="M -121.8179,19.050561 L -118.94681,19.050561 L -116.95463,23.732194 L -114.95073,19.050561 L -112.0855,19.050561 L -112.0855,27.798594 L -114.2183,27.798594 L -114.2183,21.400167 L -116.23393,26.116956 L -117.66361,26.116956 L -119.67923,21.400167 L -119.67923,27.798594 L -121.8179,27.798594 L -121.8179,19.050561 z M -109.8648,19.050561 L -103.77692,19.050561 L -103.77692,20.755637 L -107.60894,20.755637 L -107.60894,22.38454 L -104.00543,22.38454 L -104.00543,24.089615 L -107.60894,24.089615 L -107.60894,26.093518 L -103.64801,26.093518 L -103.64801,27.798594 L -109.8648,27.798594 L -109.8648,19.050561 z M -93.798417,27.148204 C -94.360925,27.421641 -94.944908,27.626719 -95.550368,27.763437 C -96.155842,27.900156 -96.78084,27.968515 -97.425364,27.968515 C -98.882397,27.968515 -100.03669,27.561289 -100.88825,26.746837 C -101.73981,25.932388 -102.16559,24.827898 -102.16559,23.433366 C -102.16559,22.023218 -101.732,20.913846 -100.86481,20.105247 C -99.997629,19.296663 -98.810132,18.892367 -97.302318,18.892358 C -96.720294,18.892367 -96.162678,18.947055 -95.629469,19.056421 C -95.096274,19.165804 -94.593346,19.327913 -94.120682,19.542748 L -94.120682,21.353292 C -94.608971,21.075955 -95.094321,20.868925 -95.576735,20.732199 C -96.059163,20.595488 -96.54256,20.527129 -97.026928,20.527121 C -97.925368,20.527129 -98.617749,20.778104 -99.104073,21.28005 C -99.590403,21.782008 -99.833567,22.49978 -99.833564,23.433366 C -99.833567,24.35915 -99.599192,25.073991 -99.13044,25.577894 C -98.661695,26.081801 -97.995681,26.333754 -97.132396,26.333752 C -96.898027,26.333754 -96.680255,26.319105 -96.479077,26.289807 C -96.277912,26.260512 -96.097248,26.214613 -95.937086,26.152112 L -95.937086,24.452896 L -97.314037,24.452896 L -97.314037,22.94118 L -93.798417,22.94118 L -93.798417,27.148204 z M -86.509366,26.204846 L -90.036704,26.204846 L -90.593343,27.798594 L -92.860918,27.798594 L -89.620689,19.050561 L -86.93124,19.050561 L -83.691011,27.798594 L -85.958586,27.798594 L -86.509366,26.204846 z M -89.474205,24.581802 L -87.077724,24.581802 L -88.273035,21.101339 L -89.474205,24.581802 z M -125.68508,27.19305 L -121.94095,27.19305 C -120.82767,27.193058 -119.97318,27.440128 -119.37748,27.934259 C -118.78178,28.428407 -118.48393,29.132506 -118.48392,30.046561 C -118.48393,30.964533 -118.78178,31.670586 -119.37748,32.164721 C -119.97318,32.658864 -120.82767,32.905934 -121.94095,32.905931 L -123.42923,32.905931 L -123.42923,35.941082 L -125.68508,35.941082 L -125.68508,27.19305 z M -123.42923,28.827813 L -123.42923,31.271168 L -122.18118,31.271168 C -121.74369,31.271173 -121.4058,31.164728 -121.16751,30.951833 C -120.92924,30.738947 -120.8101,30.43719 -120.81009,30.046561 C -120.8101,29.655943 -120.92924,29.355162 -121.16751,29.144218 C -121.4058,28.933288 -121.74369,28.82782 -122.18118,28.827813 L -123.42923,28.827813 z M -116.89603,27.19305 L -114.64018,27.19305 L -114.64018,35.941082 L -116.89603,35.941082 L -116.89603,27.19305 z M -107.54449,31.476246 L -104.50934,35.941082 L -106.85894,35.941082 L -108.90386,32.952806 L -110.9312,35.941082 L -113.29252,35.941082 L -110.25737,31.476246 L -113.17534,27.19305 L -110.81987,27.19305 L -108.90386,30.011404 L -106.99371,27.19305 L -104.62652,27.19305 L -107.54449,31.476246 z M -103.16168,27.19305 L -97.073802,27.19305 L -97.073802,28.898125 L -100.90583,28.898125 L -100.90583,30.527029 L -97.302318,30.527029 L -97.302318,32.232104 L -100.90583,32.232104 L -100.90583,34.236007 L -96.944896,34.236007 L -96.944896,35.941082 L -103.16168,35.941082 L -103.16168,27.19305 z M -94.958569,27.19305 L -92.702714,27.19305 L -92.702714,34.236007 L -88.741783,34.236007 L -88.741783,35.941082 L -94.958569,35.941082 L -94.958569,27.19305 z M -81.230079,27.46844 L -81.230079,29.319999 C -81.710554,29.105163 -82.179303,28.943054 -82.636327,28.833672 C -83.093363,28.724304 -83.525002,28.669617 -83.931246,28.66961 C -84.470312,28.669617 -84.868748,28.743836 -85.126557,28.892266 C -85.384372,29.04071 -85.513278,29.271178 -85.513275,29.583671 C -85.513278,29.818051 -85.426364,30.000668 -85.252533,30.131521 C -85.078709,30.262386 -84.76328,30.374691 -84.306246,30.468435 L -83.34531,30.661794 C -82.372661,30.857111 -81.681257,31.153985 -81.271095,31.552417 C -80.860947,31.950858 -80.655869,32.517263 -80.655861,33.251633 C -80.655869,34.216477 -80.942001,34.934249 -81.514258,35.40495 C -82.086529,35.875652 -82.96055,36.111003 -84.136324,36.111004 C -84.691015,36.111003 -85.247654,36.058269 -85.806243,35.952801 C -86.364838,35.847332 -86.92343,35.691083 -87.482022,35.484052 L -87.482022,33.579758 C -86.92343,33.876634 -86.383393,34.100267 -85.861907,34.250655 C -85.340427,34.401047 -84.837499,34.476242 -84.353121,34.476241 C -83.860939,34.476242 -83.483987,34.394211 -83.222263,34.230147 C -82.96055,34.066087 -82.829691,33.831713 -82.829686,33.527024 C -82.829691,33.253589 -82.918558,33.042652 -83.096287,32.894212 C -83.274026,32.745778 -83.628517,32.612966 -84.159762,32.495775 L -85.032807,32.302416 C -85.907808,32.11492 -86.547455,31.816093 -86.951749,31.405933 C -87.356047,30.995783 -87.558194,30.44305 -87.558194,29.747733 C -87.558194,28.876648 -87.276945,28.206728 -86.714445,27.737971 C -86.151948,27.26923 -85.343357,27.034856 -84.288668,27.034847 C -83.808204,27.034856 -83.314065,27.070988 -82.806248,27.143245 C -82.298443,27.215519 -81.773054,27.323917 -81.230079,27.46844 L -81.230079,27.46844 z" id="text2331" transform="matrix(0, -0.893215, 1.11955, 0, 0, 0)"/>
</svg>
\ No newline at end of file
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" width="846" height="68"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width: 2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37"/><polygon points="17 33 9 29 9 37"/><line x1="17" y1="33" x2="19" y2="33" class="line"/><a xlink:href="#Spacing" xlink:title="Spacing"><rect x="31" y="19" width="68" height="32"/><rect x="29" y="17" width="68" height="32" class="nonterminal"/><text class="nonterminal" x="39" y="37">Spacing</text></a><line x1="19" y1="33" x2="29" y2="33" class="line"/><line x1="97" y1="33" x2="107" y2="33" class="line"/><a xlink:href="#PackageDeclaration" xlink:title="PackageDeclaration"><rect x="139" y="19" width="144" height="32"/><rect x="137" y="17" width="144" height="32" class="nonterminal"/><text class="nonterminal" x="147" y="37">PackageDeclaration</text></a><line x1="127" y1="33" x2="137" y2="33" class="line"/><line x1="281" y1="33" x2="291" y2="33" class="line"/><line x1="107" y1="33" x2="127" y2="33" class="line"/><line x1="291" y1="33" x2="311" y2="33" class="line"/><path d="M107 33 Q117 33 117 43" class="line"/><path d="M301 43 Q301 33 311 33" class="line"/><line x1="117" y1="43" x2="117" y2="57" class="line"/><line x1="301" y1="57" x2="301" y2="43" class="line"/><path d="M117 57 Q117 67 127 67" class="line"/><path d="M291 67 Q301 67 301 57" class="line"/><line x1="127" y1="67" x2="137" y2="67" class="line"/><line x1="137" y1="67" x2="291" y2="67" class="line"/><a xlink:href="#ImportDeclaration" xlink:title="ImportDeclaration"><rect x="363" y="19" width="132" height="32"/><rect x="361" y="17" width="132" height="32" class="nonterminal"/><text class="nonterminal" x="371" y="37">ImportDeclaration</text></a><line x1="351" y1="33" x2="361" y2="33" class="line"/><line x1="493" y1="33" x2="503" y2="33" class="line"/><path d="M331 33 L351 33 M350 33 Q341 33 341 23 L341 11 Q341 1 351 1" class="line"/><path d="M503 33 L523 33 M503 33 Q513 33 513 23 L513 11 Q513 1 503 1" class="line"/><line x1="351" y1="1" x2="361" y2="1" class="line"/><line x1="361" y1="1" x2="503" y2="1" class="line"/><line x1="311" y1="33" x2="331" y2="33" class="line"/><line x1="523" y1="33" x2="543" y2="33" class="line"/><path d="M311 33 Q321 33 321 43" class="line"/><path d="M533 43 Q533 33 543 33" class="line"/><line x1="321" y1="43" x2="321" y2="57" class="line"/><line x1="533" y1="57" x2="533" y2="43" class="line"/><path d="M321 57 Q321 67 331 67" class="line"/><path d="M523 67 Q533 67 533 57" class="line"/><line x1="331" y1="67" x2="341" y2="67" class="line"/><line x1="341" y1="67" x2="523" y2="67" class="line"/><a xlink:href="#TypeDeclaration" xlink:title="TypeDeclaration"><rect x="595" y="19" width="120" height="32"/><rect x="593" y="17" width="120" height="32" class="nonterminal"/><text class="nonterminal" x="603" y="37">TypeDeclaration</text></a><line x1="583" y1="33" x2="593" y2="33" class="line"/><line x1="713" y1="33" x2="723" y2="33" class="line"/><path d="M563 33 L583 33 M582 33 Q573 33 573 23 L573 11 Q573 1 583 1" class="line"/><path d="M723 33 L743 33 M723 33 Q733 33 733 23 L733 11 Q733 1 723 1" class="line"/><line x1="583" y1="1" x2="593" y2="1" class="line"/><line x1="593" y1="1" x2="723" y2="1" class="line"/><line x1="543" y1="33" x2="563" y2="33" class="line"/><line x1="743" y1="33" x2="763" y2="33" class="line"/><path d="M543 33 Q553 33 553 43" class="line"/><path d="M753 43 Q753 33 763 33" class="line"/><line x1="553" y1="43" x2="553" y2="57" class="line"/><line x1="753" y1="57" x2="753" y2="43" class="line"/><path d="M553 57 Q553 67 563 67" class="line"/><path d="M743 67 Q753 67 753 57" class="line"/><line x1="563" y1="67" x2="573" y2="67" class="line"/><line x1="573" y1="67" x2="743" y2="67" class="line"/><a xlink:href="#EOT" xlink:title="EOT"><rect x="775" y="19" width="44" height="32"/><rect x="773" y="17" width="44" height="32" class="nonterminal"/><text class="nonterminal" x="783" y="37">EOT</text></a><line x1="763" y1="33" x2="773" y2="33" class="line"/><line x1="817" y1="33" x2="827" y2="33" class="line"/><line x1="830" y1="33" x2="827" y2="33" class="line"/><polygon points="837 33 845 29 845 37"/><polygon points="837 33 829 29 829 37"/></svg>
\ No newline at end of file
<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" version="1.1" width="108.9575" height="130.9456" id="svg6686">
<defs id="defs6688">
<linearGradient id="linearGradient3931-9">
<stop id="stop3933-7" style="stop-color:#f9b823;stop-opacity:1" offset="0"></stop>
<stop id="stop3935-4" style="stop-color:#e5a206;stop-opacity:1" offset="0.8141979"></stop>
<stop id="stop3937-7" style="stop-color:#a27204;stop-opacity:1" offset="1"></stop>
</linearGradient>
<filter x="-0.25" y="-0.5" width="1.5" height="2" color-interpolation-filters="sRGB" id="filter8278">
<feGaussianBlur result="blur" stdDeviation="4.5" in="SourceAlpha" id="feGaussianBlur8280"></feGaussianBlur>
<feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.407 0 " type="matrix" result="bluralpha" id="feColorMatrix8282"></feColorMatrix>
<feOffset result="offsetBlur" dy="7.3" dx="-1.08247e-15" in="bluralpha" id="feOffset8284"></feOffset>
<feMerge id="feMerge8286">
<feMergeNode in="offsetBlur" id="feMergeNode8288"></feMergeNode>
<feMergeNode in="SourceGraphic" id="feMergeNode8290"></feMergeNode>
</feMerge>
</filter>
<linearGradient id="linearGradient3844-5">
<stop id="stop3846-86" style="stop-color:#fde7b4;stop-opacity:1" offset="0"></stop>
<stop id="stop3848-5" style="stop-color:#fbc852;stop-opacity:1" offset="1"></stop>
</linearGradient>
<radialGradient cx="561.72913" cy="353.45276" r="36.09478" fx="561.72913" fy="353.45276" id="radialGradient3025" xlink:href="#linearGradient3931-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.4742857,-0.02120108,0.00102013,2.2630392,-1161.9244,-666.51024)"></radialGradient>
<linearGradient x1="561.29523" y1="368.96768" x2="561.65356" y2="379.23465" id="linearGradient3027" xlink:href="#linearGradient3844-5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.70413143,0,0,4.3059403,-364.77034,-1580.0702)"></linearGradient>
</defs>
<metadata id="metadata6691">
<rdf:rdf>
<cc:work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type>
<dc:title></dc:title>
</cc:work>
</rdf:rdf>
</metadata>
<g transform="matrix(1.584003,0,0,1.584003,5.2361766,12.004313)" id="g3019">
<path d="M 742.63599,130.26456 841.62895,130.52777 C 844.80724,130.53777 846.362,131.72232 846.48569,140.71023 846.62652,150.94479 847.286,138.62022 847.51646,164.4169 847.7854,194.52038 830.45913,196.75394 823.87521,196.80622 787.32958,196.507 792.54845,196.74322 757.97162,196.65121 749.08488,196.32273 733.76832,194.26907 733.34916,163.91812 733.04428,141.84204 734.19398,151.49129 734.21227,143.63676 734.22497,138.11597 736.97437,130.26464 736.97437,130.26464 z" transform="matrix(0.44522264,0,0,0.62452711,-320.8204,-68.376991)" id="path6631" style="color:#000000;fill:url(#radialGradient3025);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8278);enable-background:accumulate"></path>
<rect width="50.830936" height="44.208916" ry="12.185498" x="5.7306938" y="5.9199057" id="rect6633" style="color:#000000;fill:url(#linearGradient3027);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"></rect>
<text x="31.004427" y="32.845478" id="text6635" xml:space="preserve" style="font-size:12.31412888px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Optima;-inkscape-font-specification:Optima Bold"><tspan x="31.004427" y="32.845478" id="tspan6637">OPEN</tspan></text>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="510.56409"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
width="494.45813"
sodipodi:docname="tiger.svg">
<metadata
id="metadata970">
<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>
<defs
id="defs968" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1138"
id="namedview966"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.295"
inkscape:cx="356.04724"
inkscape:cy="166.125"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
transform="translate(184,144.4391)"
style="fill:none"
id="g4">
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g6">
<path
d="m -122.304,84.285 c 0,0 0.101,1.894 -0.723,1.875 -0.824,-0.019 -17.278,-48.094 -37.806,-45.851 0,0 17.783,-7.353 38.529,43.976 z"
id="path8"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g10">
<path
d="m -118.774,81.262 c 0,0 -0.549,1.816 -1.318,1.517 -0.768,-0.298 0.115,-51.104 -19.951,-55.978 0,0 19.223,-0.864 21.269,54.461 z"
id="path12"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g14">
<path
d="m -91.284,123.59 c 0,0 1.636,0.96 1.166,1.637 -0.471,0.677 -49.645,-12.125 -59.1,6.232 0,0 3.679,-18.887 57.934,-7.869 z"
id="path16"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g18">
<path
d="m -94.093,133.801 c 0,0 1.856,0.396 1.622,1.187 -0.233,0.791 -50.936,4.133 -54.126,24.534 0,0 -2.458,-19.085 52.504,-25.721 z"
id="path20"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g22">
<path
d="m -98.304,128.276 c 0,0 1.778,0.663 1.432,1.411 -0.346,0.748 -50.994,-3.341 -57.126,16.377 0,0 0.352,-19.239 55.694,-17.788 z"
id="path24"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g26">
<path
d="m -109.009,110.072 c 0,0 1.308,1.374 0.669,1.895 -0.639,0.521 -44.382,-25.333 -58.529,-10.291 0,0 8.741,-17.143 57.86,8.396 z"
id="path28"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g30">
<path
d="m -116.554,114.263 c 0,0 1.456,1.217 0.88,1.808 -0.576,0.59 -46.964,-20.149 -59.318,-3.602 0,0 6.745,-18.022 58.438,1.794 z"
id="path32"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g34">
<path
d="m -119.154,118.335 c 0,0 1.608,1.008 1.118,1.671 -0.49,0.663 -49.272,-13.56 -59.255,4.516 0,0 4.225,-18.773 58.137,-6.187 z"
id="path36"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g38">
<path
d="m -108.42,118.949 c 0,0 1.122,1.531 0.421,1.966 -0.701,0.435 -40.77,-30.813 -56.728,-17.708 0,0 10.865,-15.881 56.307,15.742 z"
id="path40"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g42">
<path
d="m -128.2,90 c 0,0 0.6,1.8 -0.2,2 -0.8,0.2 -29.4,-41.8 -48.601,-34.2 0,0 15.201,-11.8 48.801,32.2 z"
id="path44"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g46">
<path
d="m -127.505,96.979 c 0,0 0.975,1.629 0.236,1.996 -0.738,0.368 -37.723,-34.476 -54.832,-22.914 0,0 12.297,-14.8 54.596,20.918 z"
id="path48"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.17200001"
id="g50">
<path
d="m -127.62,101.349 c 0,0 1.122,1.531 0.421,1.966 -0.701,0.434 -40.77,-30.813 -56.728,-17.708 0,0 10.865,-15.881 56.307,15.742 z"
id="path52"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000"
id="g54">
<path
d="m -129.83,103.065 c 0.503,6.048 1.491,12.617 3.23,15.736 0,0 -3.6,12.4 5.2,25.6 0,0 -0.4,7.2 1.2,10.4 0,0 4,8.4 8.8,9.2 3.884,0.647 12.607,3.716 22.468,5.12 0,0 17.132,14.08 13.932,26.88 0,0 -0.4,16.4 -4,18 0,0 11.6,-11.2 2,5.6 l -4.4,18.8 c 0,0 25.6,-21.6 10,-3.2 l -10,26 c 0,0 19.6,-18.4 12.4,-10 l -3.2,8.8 c 0,0 43.2,-27.2 12.4,2.4 0,0 8,-3.6 12.4,-0.8 0,0 6.8,-1.2 6,0.4 0,0 -20.8,10.4 -24.4,28.8 0,0 8.4,-10 5.2,0.8 l 0.4,11.6 c 0,0 4,-21.6 3.6,16 0,0 19.2,-18 7.6,2.8 l 0,16.8 c 0,0 15.2,-16.4 8.8,-3.6 0,0 10,-8.8 6,6.4 0,0 -0.8,10.4 3.6,-0.8 0,0 16,-30.6 10,-4.4 0,0 -0.8,19.2 4,4.4 0,0 0.4,10.4 9.6,17.6 0,0 -1.2,-50.8 11.6,-14.8 l 4,16.4 c 0,0 2.8,-9.2 2.4,-14.4 0,0 14.8,-16.4 8,8 0,0 15.2,-22.8 12,-9.6 0,0 -7.6,16 -6,20.8 0,0 16.8,-34.8 18,-36.4 0,0 -2,42.401 8.8,6.4 0,0 5.6,12 2.8,16.4 0,0 8,-8 7.2,-11.2 0,0 4.6,-8.2 7.4,5.4 0,0 1.8,9.4 3.4,6.2 0,0 4,24.001 5.2,1.2 0,0 1.6,-13.6 -5.6,-25.2 0,0 0.8,-3.2 -2,-7.2 0,0 13.6,21.6 6.4,-7.2 0,0 11.201,8 12.401,8 0,0 -13.601,-23.2 -4.801,-18.4 0,0 -5.2,-10.4 12.801,1.6 0,0 -16.001,-16 1.6,-6.4 0,0 8,6.4 0.4,-3.6 0,0 -14.401,-16 7.6,2 0,0 11.6,16.4 12.4,19.2 0,0 -10,-29.2 -14.4,-32 0,0 8.4,-36.4 49.6,-20.8 0,0 6.8,17.2 11.2,-1.2 0,0 12.8,-6.4 24,21.2 0,0 4,-13.6 3.2,-16.4 0,0 6.8,1.2 6,0 0,0 13.2,4.4 14.4,3.6 0,0 6.8,6.8 7.2,3.2 0,0 9.2,2.8 7.2,-0.8 0,0 8.8,15.6 9.2,19.2 l 2.4,-14 2,2.8 c 0,0 1.6,-7.6 0.8,-8.8 -0.8,-1.2 20,6.8 24.8,27.6 l 2,8.4 c 0,0 6,-14.8 4.4,-18.8 0,0 5.2,0.8 5.6,5.2 0,0 4,-23.2 -0.8,-29.2 0,0 4.4,-0.8 5.6,2.8 l 0,-7.2 c 0,0 7.2,0.8 7.2,-1.6 0,0 4.4,-4 6.4,0.8 0,0 -12.4,-35.2 6,-16 0,0 7.2,10.8 3.6,-8 -3.6,-18.8 -7.6,-20.4 -2.8,-20.8 0,0 0.8,-3.6 -1.2,-5.2 -2,-1.6 1.2,0 1.2,0 0,0 4.8,4 -0.4,-18 0,0 6.4,1.6 -5.6,-27.6 0,0 2.8,-2.4 -1.2,-10.8 0,0 8,4.4 10.8,2.8 0,0 -0.4,-1.6 -3.6,-5.6 0,0 -21.6,-54.801 -1.2,-32.8 0,0 11.85,13.55 5.45,-9.25 0,0 -9.111,-24.01 -8.334,-28.306 l -429.547,23.02 z"
id="path56"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226;stroke:#000000"
id="g58">
<path
d="m 299.717,80.245 c 0.628,0.181 2.834,1.305 4.084,2.955 0,0 6.8,10.8 1.6,-7.6 0,0 -9.2,-28.8 -0.4,-17.6 0,0 6,7.2 2.8,-6.4 -3.865,-16.427 -6.4,-22.8 -6.4,-22.8 0,0 11.6,4.8 -15.2,-34.8 l 8.8,3.6 c 0,0 -19.6,-39.6 -41.2,-44.8 l -8,-6 c 0,0 38.4,-38 25.6,-74.8 0,0 -6.8,-5.2 -16.4,4 0,0 -6.4,4.8 -12.4,3.2 0,0 -30.8,1.2 -32.8,1.2 -2,0 -36.8,-37.2 -102.4,-19.6 0,0 -5.2,2 -9.6,0.8 0,0 -18.401,-16 -67.201,6.8 0,0 -10,2 -11.6,2 -1.6,0 -4.4,0 -12.4,6.4 -8,6.4 -8.4,7.2 -10.4,8.8 0,0 -16.4,11.2 -21.2,12 0,0 -11.6,6.4 -16,16.4 l -3.6,1.2 c 0,0 -1.6,7.2 -2,8.4 0,0 -4.8,3.6 -5.6,9.2 0,0 -8.8,6 -8.4,10.4 0,0 -1.6,5.2 -2.4,10 0,0 -7.2,4.8 -6.4,7.6 0,0 -7.6,14 -6.4,20.8 0,0 -6.4,-0.4 -9.2,2 0,0 -0.8,4.8 -2.4,5.2 0,0 -2.8,1.2 -0.4,5.2 0,0 -1.6,2.8 -2,4.4 0,0 0.8,2.8 -3.6,8.4 0,0 -6.4,18.8 -4.4,24 0,0 0.4,4.8 -2.4,6.4 0,0 -3.6,-0.4 4.8,11.6 0,0 0.8,1.2 -2.4,3.6 0,0 -17.2,3.6 -19.6,20 0,0 -13.6,14.8 -13.6,20 0,2.305 0.271,5.452 0.97,10.065 0,0 -0.57,8.336 27.03,9.136 27.6,0.8 402.717,-31.356 402.717,-31.356 z"
id="path60"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g62">
<path
d="m -115.6,102.6 c -25,-39.4 -10.6,17.001 -10.6,17.001 8.8,34.4 138.4,-3.2 138.4,-3.2 0,0 168.801,-30.401 180.001,-34.401 11.2,-4 106.4,2.4 106.4,2.4 l -5.6,-16.8 c -64.8,-46.4 -84,-23.2 -97.6,-27.2 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 -6.4,0.8 -31.742,-22.951 -16.8,8.8 16,34 -58.401,39.2 -75.201,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 C -3,69.2 -27,94.8 -30.2,95.6 c -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -8.31,-23.101 -40,3.2 -20,16.601 -33.8,-5.4 -33.8,-5.4 l -2.8,11.6 z"
id="path64"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#e87f3a"
id="g66">
<path
d="m 133.51,25.346 c -6.4,0.8 -31.767,-22.939 -16.8,8.8 16.6,35.2 -58.4,39.2 -75.2,28 -16.801,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16.001,3.2 -16.001,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -8.179,-22.934 -40,3.2 -21.236,17.346 -34.727,-4.109 -34.727,-4.109 l -3.2,10.109 c -25,-39.8 -9.928,18.509 -9.928,18.509 8.801,34.401 139.055,-4.509 139.055,-4.509 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 105.528,2.327 105.528,2.327 L 293.51,68.764 c -64.8,-46.4 -83.2,-22.618 -96.8,-26.618 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path68"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ea8c4d"
id="g70">
<path
d="m 134.819,27.091 c -6.4,0.8 -31.134,-23.229 -16.8,8.8 16.2,36.201 -58.4,39.201 -75.2,28.001 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.401,12.8 -61.601,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -8.048,-22.767 -40,3.2 -22.473,18.091 -35.654,-2.818 -35.654,-2.818 l -3.6,8.618 c -23.8,-39 -9.255,20.018 -9.255,20.018 8.8,34.4 139.71,-5.818 139.71,-5.818 0,0 168.8,-30.4 180,-34.4 11.2,-4 104.655,2.254 104.655,2.254 L 294.02,69.928 c -64.801,-46.4 -82.401,-22.037 -96.001,-26.037 -13.6,-4 -11.2,5.6 -14.4,6.401 -3.2,0.8 -42.4,-24.001 -48.8,-23.201 z"
id="path72"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ec9961"
id="g74">
<path
d="m 136.128,28.837 c -6.4,0.8 -31.129,-23.232 -16.8,8.8 16.8,37.556 -58.934,38.845 -75.2,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -7.917,-22.598 -40.001,3.2 -23.709,18.837 -36.582,-1.527 -36.582,-1.527 l -4,7.127 c -21.8,-36.8 -8.581,21.528 -8.581,21.528 8.8,34.4 140.364,-7.128 140.364,-7.128 0,0 168.8,-30.4 180.001,-34.4 11.2,-4 103.782,2.182 103.782,2.182 l -5.382,-18.327 c -64.8,-46.401 -81.6,-21.455 -95.2,-25.455 -13.601,-4 -11.201,5.6 -14.401,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path76"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#eea575"
id="g78">
<path
d="m 137.438,30.583 c -6.401,0.8 -30.624,-23.454 -16.801,8.8 16.801,39.2 -58.4,39.2 -75.2,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -7.785,-22.431 -40,3.2 -24.946,19.582 -37.51,-0.237 -37.51,-0.237 l -4.4,5.637 c -19.8,-34.801 -7.909,23.036 -7.909,23.036 8.8,34.401 141.019,-8.436 141.019,-8.436 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 102.909,2.109 102.909,2.109 l -5.309,-18.837 c -64.8,-46.4 -80.8,-20.872 -94.4,-24.872 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path80"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f1b288"
id="g82">
<path
d="m 138.747,32.328 c -6.4,0.8 -32.364,-22.651 -16.8,8.8 19.2,38.8 -58.401,39.2 -75.201,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -7.654,-22.263 -40,3.2 -26.182,20.328 -38.437,1.055 -38.437,1.055 l -4.8,4.145 c -18,-33.2 -7.236,24.546 -7.236,24.546 8.8,34.4 141.673,-9.746 141.673,-9.746 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 102.036,2.036 102.036,2.036 l -5.236,-19.345 c -64.8,-46.4 -80,-20.291 -93.6,-24.291 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path84"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f3bf9c"
id="g86">
<path
d="m 140.056,34.073 c -6.401,0.8 -32.743,-22.46 -16.801,8.8 20.401,40.001 -58.4,39.201 -75.2,28.001 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -7.523,-22.096 -40,3.2 -27.419,21.073 -39.364,2.345 -39.364,2.345 l -5.2,2.655 c -16,-30.2 -6.564,26.055 -6.564,26.055 8.8,34.4 142.328,-11.055 142.328,-11.055 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 101.164,1.963 101.164,1.963 l -5.164,-19.854 c -64.8,-46.4 -79.2,-19.709 -92.8,-23.709 -13.6,-4.001 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24.001 -48.8,-23.201 z"
id="path88"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f5ccb0"
id="g90">
<path
d="m 141.365,35.819 c -6.4,0.8 -33.842,-21.875 -16.8,8.8 22,39.6 -58.401,39.2 -75.201,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -7.391,-21.927 -40,3.2 -28.655,21.819 -40.291,3.637 -40.291,3.637 l -5.6,1.163 c -14.401,-28.4 -5.891,27.564 -5.891,27.564 8.8,34.401 142.982,-12.364 142.982,-12.364 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 100.291,1.891 100.291,1.891 l -5.091,-20.364 c -64.8,-46.4 -78.4,-19.127 -92,-23.127 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path92"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f8d8c4"
id="g94">
<path
d="m 142.674,37.565 c -6.4,0.8 -33.842,-21.876 -16.8,8.8 22,39.6 -58.4,39.2 -75.2,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.401,-12.8 -58.401,12.8 -61.601,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -7.259,-21.76 -40,3.2 -29.891,22.564 -41.218,4.928 -41.218,4.928 l -6,-0.328 c -13.601,-26.401 -5.218,29.073 -5.218,29.073 8.8,34.4 143.636,-13.673 143.636,-13.673 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 99.419,1.818 99.419,1.818 L 297.075,76.91 c -64.801,-46.4 -77.601,-18.545 -91.201,-22.545 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path96"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#fae5d7"
id="g98">
<path
d="m 143.983,39.31 c -6.4,0.8 -33.454,-22.087 -16.8,8.8 22,40.8 -58.4,39.2 -75.2,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.201,0.8 -8.001,4 -8.801,-2.4 -0.8,-6.4 -7.128,-21.592 -40,3.2 -31.127,23.31 -42.145,6.219 -42.145,6.219 l -6.401,-1.819 c -13,-24 -4.545,30.583 -4.545,30.583 8.8,34.4 144.292,-14.983 144.292,-14.983 0,0 168.8,-30.4 180,-34.4 11.2,-4 98.546,1.746 98.546,1.746 l -4.946,-21.382 c -64.8,-46.401 -76.8,-17.964 -90.4,-21.964 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 z"
id="path100"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#fcf2eb"
id="g102">
<path
d="m 145.292,41.055 c -6.4,0.8 -32.375,-22.644 -16.8,8.8 21.2,42.801 -58.4,39.201 -75.2,28.001 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.8 -61.6,13.6 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.4 -6.997,-21.424 -40,3.2 -32.365,24.055 -43.074,7.509 -43.074,7.509 l -6.8,-3.309 c -12.8,-23.2 -3.872,32.091 -3.872,32.091 8.8,34.4 144.946,-16.291 144.946,-16.291 0,0 168.801,-30.4 180.001,-34.4 11.2,-4 97.672,1.672 97.672,1.672 l -4.872,-21.891 c -64.801,-46.4 -76,-17.381 -89.6,-21.381 -13.6,-4.001 -11.2,5.6 -14.4,6.4 -3.201,0.8 -42.401,-24.001 -48.801,-23.201 z"
id="path104"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g106">
<path
d="m -115.8,119.601 c -12.8,-22.001 -3.2,33.6 -3.2,33.6 8.8,34.4 145.6,-17.6 145.6,-17.6 0,0 168.801,-30.401 180.001,-34.401 11.2,-4 96.8,1.6 96.8,1.6 l -4.8,-22.4 c -64.8,-46.4 -75.2,-16.8 -88.8,-20.8 -13.6,-4 -11.2,5.6 -14.4,6.4 -3.2,0.8 -42.4,-24 -48.8,-23.2 -6.4,0.8 -31.62,-23.007 -16.8,8.8 22.227,47.707 -60.76,37.627 -75.201,28 -16.8,-11.2 7.2,18.4 7.2,18.4 18.4,20.001 -16,3.2 -16,3.2 -34.4,-12.8 -58.4,12.801 -61.6,13.601 -3.2,0.8 -8,4 -8.8,-2.4 -0.8,-6.401 -6.865,-21.257 -40,3.2 -33.6,24.8 -44,8.8 -44,8.8 l -7.2,-4.8 z"
id="path108"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g110">
<path
d="m -74.2,149.601 c 0,0 -7.2,11.6 13.6,24.8 0,0 1.4,1.4 -16.6,-2.8 0,0 -6.2,-2 -7.8,-12.4 0,0 -4.8,-4.4 -9.6,-10 -4.8,-5.6 20.4,0.4 20.4,0.4 z"
id="path112"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g114">
<path
d="m 65.8,102 c 0,0 17.698,26.821 17.1,31.601 -1.3,10.4 -1.5,20 1.7,24 3.201,4 12.001,37.2 12.001,37.2 0,0 -0.4,1.2 12,-36.8 0,0 11.6,-16 -8.4,-34.4 C 100.201,123.601 65,94.8 65.8,102 z"
id="path116"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g118">
<path
d="m -54.2,176.401 c 0,0 11.2,7.2 -3.2,38.4 l 6.4,-2.4 c 0,0 -0.8,11.2 -4,13.6 l 7.2,-3.2 c 0,0 4.8,8 0.8,12.8 0,0 16.8,8 16,14.4 0,0 6.4,-8 2.4,-14.4 -4,-6.4 -11.2,-2.4 -10.4,-20.8 l -8.8,3.2 c 0,0 5.6,-8.8 5.6,-15.2 l -8,2.4 c 0,0 15.469,-26.578 4.8,-28 -6,-0.8 -8.8,-0.8 -8.8,-0.8 z"
id="path120"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g122">
<path
d="m -21.8,193.201 c 0,0 2.8,-4.4 0,-3.6 -2.8,0.8 -34,15.6 -40,25.2 0,0 34.4,-24.4 40,-21.6 z"
id="path124"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g126">
<path
d="m -11.4,201.201 c 0,0 2.8,-4.4 0,-3.6 -2.8,0.8 -34,15.6 -40,25.2 0,0 34.4,-24.4 40,-21.6 z"
id="path128"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g130">
<path
d="m 1.8,186.001 c 0,0 2.8,-4.4 0,-3.6 -2.8,0.8 -34,15.6 -40,25.2 0,0 34.4,-24.4 40,-21.6 z"
id="path132"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g134">
<path
d="m -21.4,229.601 c 0,0 0,-6 -2.8,-5.2 -2.8,0.8 -38.8,18.4 -44.8,28 0,0 42,-25.6 47.6,-22.8 z"
id="path136"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g138">
<path
d="m -20.2,218.801 c 0,0 1.2,-4.8 -1.6,-4 -2,0 -28.4,11.6 -34.4,21.2 0,0 29.6,-21.6 36,-17.2 z"
id="path140"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g142">
<path
d="m -34.6,266.401 -10,7.6 c 0,0 10.4,-7.6 14,-6.4 0,0 -6.8,11.2 -7.6,16.4 0,0 10.4,-12.8 16,-12.4 0,0 7.6,0.4 7.6,11.2 0,0 5.6,-10.4 8.8,-10 0,0 1.2,6.4 0,13.2 0,0 4,-7.6 8,-6 0,0 6.4,-2 5.6,9.6 0,0 0,10.4 -0.8,13.2 0,0 5.6,-26.4 8,-26.8 0,0 8,-1.2 12.8,7.6 0,0 -4,-7.6 0.8,-5.6 0,0 10.8,1.6 14,8.4 0,0 -6.8,-12 -1.2,-8.8 0,0 6.8,0 8,6.4 0,0 8.4,21.2 10.4,22.8 0,0 -7.6,-21.6 -6,-21.6 0,0 -2,-12 3.2,2.8 0,0 -3.2,-14 2.4,-13.2 5.6,0.8 10,10.8 18.4,8.4 0,0 9.601,5.6 11.601,-63.6 l -124.001,46.8 z"
id="path144"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g146">
<path
d="m -29.8,173.601 c 0,0 14.8,-6 54.8,0 0,0 7.2,0.4 14,-8.4 6.8,-8.8 33.6,-16 40,-14 l 9.601,6.4 0.8,1.2 c 0,0 12.4,10.4 12.8,18 0.4,7.6 -14.4,55.6 -24.001,71.6 -9.6,16 -19.2,28.4 -38.4,26 0,0 -20.8,-4 -46.4,0 0,0 -29.2,-1.6 -32,-9.6 -2.8,-8 11.2,-23.2 11.2,-23.2 0,0 4.4,-8.4 3.2,-22.8 -1.2,-14.4 -0.8,-42.4 -5.6,-45.2 z"
id="path148"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#e5668c"
id="g150">
<path
d="m -7.8,175.601 c 8.4,18.4 -21.2,83.6 -21.2,83.6 -2,1.6 12.66,7.645 22.8,5.2 10.946,-2.638 51.2,1.6 51.2,1.6 23.6,-15.6 36.4,-60 36.4,-60 0,0 10.401,-24 -7.2,-27.2 -17.6,-3.2 -82,-3.2 -82,-3.2 z"
id="path152"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#b23259"
id="g154">
<path
d="m -9.831,206.497 c 3.326,-12.79 4.91,-24.591 2.031,-30.896 0,0 62.4,6.4 73.6,-14.4 4.241,-7.875 19.001,22.8 18.6,32.4 0,0 -63,14.4 -77.8,3.2 l -16.431,9.696 z"
id="path156"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#a5264c"
id="g158">
<path
d="m -5.4,222.801 c 0,0 2,7.2 -0.4,11.2 0,0 -1.6,0.8 -2.8,1.2 0,0 1.2,3.6 7.2,5.2 0,0 2,4.4 4.4,4.8 2.4,0.4 7.2,6 11.2,4.8 4,-1.2 15.2,-5.2 15.2,-5.2 0,0 5.6,-3.2 14.4,0.4 0,0 2.375,-0.802 2.8,-4.8 0.5,-4.7 3.6,-8.4 5.6,-10.4 2,-2 11.6,-14.8 10.4,-15.2 -1.2,-0.4 -68,8 -68,8 z"
id="path160"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ff727f;stroke:#000000"
id="g162">
<path
d="m -9.8,174.401 c 0,0 -2.8,22.4 0.4,30.8 3.2,8.4 2.4,10.4 1.6,14.4 -0.8,4 3.6,14 9.2,20 l 12,1.6 c 0,0 15.2,-3.6 24.4,-0.8 0,0 8.994,1.343 12.4,-13.6 0,0 4.8,-6.4 12,-9.2 7.2,-2.8 14.4,-44.4 10.4,-52.4 -4,-8 -18.4,-12.4 -34.4,3.2 -16,15.6 -18,-1.2 -48,6 z"
id="path164"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g166">
<path
d="m -8.2,249.201 c 0,0 -0.8,-2 -5.2,-2.4 0,0 -22.4,-3.6 -30.8,-16 0,0 -6.8,-5.6 -2.4,6 0,0 10.4,20.4 17.2,23.2 0,0 16.4,4 21.2,-10.8 z"
id="path168"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc3f4c"
id="g170">
<path
d="m 71.742,185.229 c 0.659,-7.906 2.612,-16.52 0.858,-20.028 -6.446,-12.894 -23.419,-7.506 -34.4,3.2 -16,15.6 -18,-1.2 -48,6 0,0 -1.745,13.963 -0.905,23.975 0,0 37.305,-11.575 38.105,-5.975 0,0 1.6,-3.2 10.8,-3.2 9.2,0 31.942,-1.172 33.542,-3.972 z"
id="path172"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#a51926;stroke-width:2"
id="g174">
<path
d="m 28.6,175.201 c 0,0 4.8,4.8 1.2,14.4 0,0 -14.4,16 -12.4,30"
id="path176"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g178">
<path
d="m -19.4,260.001 c 0,0 -4.4,-12.8 4.4,-6 0,0 4.8,2 3.6,3.6 -1.2,1.6 -6.8,5.6 -8,2.4 z"
id="path180"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g182">
<path
d="m -14.36,261.201 c 0,0 -3.52,-10.24 3.52,-4.8 0,0 4.421,2.448 2.88,2.88 -4.56,1.28 0,3.84 -6.4,1.92 z"
id="path184"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g186">
<path
d="m -9.56,261.201 c 0,0 -3.52,-10.24 3.52,-4.8 0,0 4.375,2.31 2.88,2.88 -3.36,1.28 0,3.84 -6.4,1.92 z"
id="path188"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g190">
<path
d="m -2.96,261.401 c 0,0 -3.52,-10.24 3.52,-4.8 0,0 4.383,2.332 2.881,2.88 -2.961,1.08 0,3.84 -6.401,1.92 z"
id="path192"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g194">
<path
d="m 3.52,261.321 c 0,0 -3.52,-10.24 3.521,-4.8 0,0 3.84,1.6 2.88,2.88 -0.96,1.28 0,3.84 -6.401,1.92 z"
id="path196"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g198">
<path
d="m 10.2,262.001 c 0,0 -4.8,-12.4 4.4,-6 0,0 4.8,2 3.6,3.6 -1.2,1.6 0,4.8 -8,2.4 z"
id="path200"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#a5264c;stroke-width:2"
id="g202">
<path
d="m -18.2,244.801 c 0,0 13.2,-2.8 19.2,0.4 0,0 6,1.2 7.2,0.8 1.2,-0.4 4.4,-0.8 4.4,-0.8"
id="path204"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#a5264c;stroke-width:2"
id="g206">
<path
d="m 15.8,253.601 c 0,0 12,-13.6 24,-9.2 7.016,2.573 6,-0.8 6.8,-3.6 0.8,-2.8 1,-7 6,-10"
id="path208"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g210">
<path
d="m 33,237.601 c 0,0 -4,-10.8 -6.8,2 -2.8,12.8 -6,16.4 -7.6,19.2 0,0 0,5.2 8.4,4.8 0,0 10.8,-0.4 11.2,-3.2 0.4,-2.8 -1.2,-14.4 -5.2,-22.8 z"
id="path212"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#a5264c;stroke-width:2"
id="g214">
<path
d="m 47,244.801 c 0,0 3.6,-2.4 6,-1.2"
id="path216"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#a5264c;stroke-width:2"
id="g218">
<path
d="m 53.5,228.401 c 0,0 2.9,-4.9 7.7,-5.7"
id="path220"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#b2b2b2"
id="g222">
<path
d="m -25.8,265.201 c 0,0 18,3.2 22.4,1.6 0,0 8.8,0 0.4,2 0,0 -12.8,0 -20.8,-1.2 0,0 -11.6,-5.6 -2,-2.4 z"
id="path224"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g226">
<path
d="m -11.8,172.001 c 0,0 17.6,0 19.6,0.8 0,0 7.2,30.8 3.6,38.4 0,0 -1.2,2.8 -4,-2.8 0,0 -18.4,-32.8 -21.6,-34.8 -3.2,-2 1.2,-1.6 2.4,-1.6 z"
id="path228"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g230">
<path
d="m -88.9,169.301 c 0,0 8.9,1.7 21.5,4.3 0,0 4.8,22.4 8,27.2 3.2,4.8 -0.4,4.8 -4,2 -3.6,-2.8 -18.4,-16.8 -20.4,-21.2 -2,-4.4 -5.1,-12.3 -5.1,-12.3 z"
id="path232"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g234">
<path
d="m -67.039,173.818 c 0,0 5.8,1.548 6.809,3.763 1.008,2.214 -1.202,5.511 -1.202,5.511 0,0 -1,3.305 -2.202,1.143 -1.202,-2.163 -4.074,-9.823 -3.405,-10.417 z"
id="path236"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g238">
<path
d="m -67,173.601 c 0,0 3.6,5.2 7.2,5.2 3.6,0 3.982,-0.413 6.8,0.2 4.6,1 4.2,-1 10.8,0.2 2.64,0.48 5.2,-0.4 8,0.8 2.8,1.2 6,0.4 7.2,-1.6 1.2,-2 6,-6.2 6,-6.2 0,0 -12.8,1.8 -15.6,2.6 0,0 -22.4,1.2 -30.4,-1.2 z"
id="path240"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g242">
<path
d="m -22.4,173.801 c 0,0 -6.45,3.5 -6.85,5.9 -0.4,2.4 5.25,6.1 5.25,6.1 0,0 2.75,4.6 3.35,2.2 0.6,-2.4 -0.95,-13.8 -1.75,-14.2 z"
id="path244"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g246">
<path
d="m -59.885,179.265 c 0,0 7.007,11.188 7.224,-0.023 0,0 0.557,-1.258 -1.203,-1.28 -6.075,-0.076 -4.554,-4.178 -6.021,1.303 z"
id="path248"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g250">
<path
d="m -52.707,179.514 c 0,0 7.921,11.187 7.285,-0.093 0,0 0.007,-0.332 -1.746,-0.485 -4.747,-0.414 -4.402,-4.932 -5.539,0.578 z"
id="path252"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g254">
<path
d="m -45.494,179.522 c 0,0 7.96,10.628 7.291,0.962 0,0 0.119,-1.233 -1.535,-1.534 -3.892,-0.706 -4.103,-3.955 -5.756,0.572 z"
id="path256"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffcc;stroke:#000000;stroke-width:0.5"
id="g258">
<path
d="m -38.618,179.602 c 0,0 7.9,11.561 8.248,1.78 0,0 1.644,-1.378 -0.102,-1.6 -5.818,-0.74 -5.02,-5.194 -8.146,-0.18 z"
id="path260"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#e5e5b2"
id="g262">
<path
d="m -74.792,183.132 -7.658,-1.531 c -2.6,-5 -4.7,-11.15 -4.7,-11.15 0,0 6.35,1 18.85,3.8 0,0 0.876,3.318 2.348,9.113 l -8.84,-0.232 z"
id="path264"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#e5e5b2"
id="g266">
<path
d="m -9.724,178.47 c -1.666,-2.506 -2.983,-4.264 -3.633,-4.67 -3.013,-1.883 1.13,-1.506 2.259,-1.506 0,0 16.571,0 18.454,0.753 0,0 0.524,2.242 1.208,5.633 0,0 -10.088,-2.01 -18.288,-0.21 z"
id="path268"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g270">
<path
d="m 43.88,40.321 c 27.721,3.96 53.241,-31.68 55.001,-41.361 1.76,-9.68 -8.36,-21.56 -8.36,-21.56 1.32,-3.08 -3.52,-17.16 -8.8,-26.4 C 76.441,-58.24 60.54,-57.266 43,-58.24 27.16,-59.12 8.68,-35.8 7.36,-34.04 c -1.32,1.76 4.84,40.041 6.16,45.761 1.32,5.72 -1.32,32.12 -1.32,32.12 34.24,-9.1 3.96,-7.48 31.68,-3.52 z"
id="path272"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ea8e51"
id="g274">
<path
d="m 8.088,-33.392 c -1.296,1.728 4.752,39.313 6.048,44.929 1.296,5.616 -1.296,31.536 -1.296,31.536 32.672,-8.88 3.888,-7.344 31.104,-3.456 27.217,3.888 52.273,-31.104 54.001,-40.609 1.728,-9.504 -8.208,-21.168 -8.208,-21.168 1.296,-3.024 -3.456,-16.848 -8.64,-25.92 -5.184,-9.072 -20.795,-8.115 -38.017,-9.072 -15.552,-0.864 -33.696,22.032 -34.992,23.76 z"
id="path276"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#efaa7c"
id="g278">
<path
d="m 8.816,-32.744 c -1.272,1.696 4.664,38.585 5.936,44.097 1.272,5.512 -1.272,30.952 -1.272,30.952 31.404,-9.16 3.816,-7.208 30.528,-3.392 26.713,3.816 51.305,-30.528 53.001,-39.857 1.696,-9.328 -8.056,-20.776 -8.056,-20.776 1.272,-2.968 -3.392,-16.536 -8.48,-25.44 -5.088,-8.904 -20.41,-7.965 -37.313,-8.904 -15.264,-0.848 -33.072,21.624 -34.344,23.32 z"
id="path280"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f4c6a8"
id="g282">
<path
d="m 9.544,-32.096 c -1.248,1.664 4.576,37.857 5.824,43.265 1.248,5.408 -1.248,30.368 -1.248,30.368 29.436,-9.04 3.744,-7.072 29.952,-3.328 26.209,3.744 50.337,-29.952 52.001,-39.104 1.664,-9.153 -7.904,-20.385 -7.904,-20.385 1.248,-2.912 -3.328,-16.224 -8.32,-24.96 -4.992,-8.736 -20.025,-7.815 -36.609,-8.736 -14.976,-0.832 -32.448,21.216 -33.696,22.88 z"
id="path284"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f9e2d3"
id="g286">
<path
d="m 10.272,-31.448 c -1.224,1.632 4.488,37.129 5.712,42.433 1.224,5.304 -1.224,29.784 -1.224,29.784 27.868,-8.92 3.672,-6.936 29.376,-3.264 25.705,3.672 49.369,-29.376 51.001,-38.353 1.632,-8.976 -7.752,-19.992 -7.752,-19.992 1.224,-2.856 -3.264,-15.912 -8.16,-24.48 -4.896,-8.568 -19.64,-7.665 -35.905,-8.568 -14.688,-0.816 -31.824,20.808 -33.048,22.44 z"
id="path288"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g290">
<path
d="M 44.2,36.8 C 69.4,40.4 92.601,8 94.201,-0.8 c 1.6,-8.8 -7.6,-19.6 -7.6,-19.6 1.2,-2.8 -3.201,-15.6 -8.001,-24 -4.8,-8.4 -19.254,-7.514 -35.2,-8.4 C 29,-53.6 12.2,-32.4 11,-30.8 9.8,-29.2 15.4,5.6 16.6,10.8 17.8,16 15.4,40 15.4,40 40.9,31.4 19,33.2 44.2,36.8 z"
id="path292"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g294">
<path
d="m 90.601,2.8 c 0,0 -27.801,7.6 -39.401,6 0,0 -15.8,-6.6 -24.6,15.2 0,0 -3.6,7.2 -5.6,9.2 -2,2 69.601,-30.4 69.601,-30.4 z"
id="path296"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g298">
<path
d="m 94.401,0.6 c 0,0 -29.001,12.2 -39.001,11.8 0,0 -16.4,-4.6 -24.8,10 0,0 -8.4,9.2 -11.6,10.8 0,0 -0.4,1.6 6,-2.4 L 35.4,36 c 0,0 14.8,9.6 24.4,-6.4 0,0 4,-11.2 4,-13.2 0,-2 21.2,-7.6 22.801,-8 1.6,-0.4 8.2,-4.6 7.8,-7.8 z"
id="path300"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#99cc32"
id="g302">
<path
d="m 47,36.514 c -6.872,0 -15.245,-3.865 -15.245,-10.114 0,-6.248 8.373,-12.513 15.245,-12.513 6.874,0 12.446,5.065 12.446,11.313 0,6.249 -5.572,11.314 -12.446,11.314 z"
id="path304"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#659900"
id="g306">
<path
d="m 43.377,19.83 c -4.846,0.722 -9.935,2.225 -9.863,2.009 1.54,-4.619 7.901,-7.952 13.486,-7.952 4.296,0 8.084,1.978 10.32,4.988 0,0 -5.316,-0.33 -13.943,0.955 z"
id="path308"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g310">
<path
d="m 55.4,19.6 c 0,0 -4.4,-3.2 -4.4,-1 0,0 3.6,4.4 4.4,1 z"
id="path312"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g314">
<path
d="m 45.4,27.726 c -2.499,0 -4.525,-2.026 -4.525,-4.526 0,-2.499 2.026,-4.525 4.525,-4.525 2.5,0 4.526,2.026 4.526,4.525 0,2.5 -2.026,4.526 -4.526,4.526 z"
id="path316"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g318">
<path
d="m -58.6,14.4 c 0,0 -3.2,-21.2 -0.8,-25.6 0,0 10.8,-10 10.4,-13.6 0,0 -0.4,-18 -1.6,-18.8 -1.2,-0.8 -8.8,-6.8 -14.8,-0.4 0,0 -10.4,18 -9.6,24.4 l 0,2 c 0,0 -7.6,-0.4 -9.2,1.6 0,0 -1.2,5.2 -2.4,5.6 0,0 -2.8,2.4 -0.8,5.2 0,0 -2,2.4 -1.6,6.4 l 7.6,4 c 0,0 2,14.4 12.8,19.6 4.836,2.329 8,-4.4 10,-10.4 z"
id="path320"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g322">
<path
d="m -59.6,12.56 c 0,0 -2.88,-19.08 -0.72,-23.04 0,0 9.72,-9 9.36,-12.24 0,0 -0.36,-16.2 -1.44,-16.92 -1.08,-0.72 -7.92,-6.12 -13.32,-0.36 0,0 -9.36,16.2 -8.64,21.96 l 0,1.8 c 0,0 -6.84,-0.36 -8.28,1.44 0,0 -1.08,4.68 -2.16,5.04 0,0 -2.52,2.16 -0.72,4.68 0,0 -1.8,2.16 -1.44,5.76 l 6.84,3.6 c 0,0 1.8,12.96 11.52,17.64 4.352,2.095 7.2,-3.96 9,-9.36 z"
id="path324"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#eb955c"
id="g326">
<path
d="m -51.05,-42.61 c -1.09,-0.86 -8.58,-6.63 -14.43,-0.39 0,0 -10.14,17.55 -9.36,23.79 l 0,1.95 c 0,0 -7.41,-0.39 -8.97,1.56 0,0 -1.17,5.07 -2.34,5.46 0,0 -2.73,2.34 -0.78,5.07 0,0 -1.95,2.34 -1.56,6.24 l 7.41,3.9 c 0,0 1.95,14.04 12.48,19.11 4.714,2.27 7.8,-4.29 9.75,-10.14 0,0 -3.12,-20.67 -0.78,-24.96 0,0 10.53,-9.75 10.14,-13.26 0,0 -0.39,-17.55 -1.56,-18.33 z"
id="path328"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f2b892"
id="g330">
<path
d="m -51.5,-41.62 c -0.98,-0.92 -8.36,-6.46 -14.06,-0.38 0,0 -9.88,17.1 -9.12,23.18 l 0,1.9 c 0,0 -7.22,-0.38 -8.74,1.52 0,0 -1.14,4.94 -2.28,5.32 0,0 -2.66,2.28 -0.76,4.94 0,0 -1.9,2.28 -1.52,6.08 l 7.22,3.8 c 0,0 1.9,13.68 12.16,18.62 4.594,2.212 7.6,-4.18 9.5,-9.88 0,0 -3.04,-20.14 -0.76,-24.32 0,0 10.26,-9.5 9.88,-12.92 0,0 -0.38,-17.1 -1.52,-17.86 z"
id="path332"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#f8dcc8"
id="g334">
<path
d="m -51.95,-40.63 c -0.87,-0.98 -8.14,-6.29 -13.69,-0.37 0,0 -9.62,16.65 -8.88,22.57 l 0,1.85 c 0,0 -7.03,-0.37 -8.51,1.48 0,0 -1.11,4.81 -2.22,5.18 0,0 -2.59,2.22 -0.74,4.81 0,0 -1.85,2.22 -1.48,5.92 l 7.03,3.7 c 0,0 1.85,13.32 11.84,18.13 4.473,2.154 7.4,-4.07 9.25,-9.62 0,0 -2.96,-19.61 -0.74,-23.68 0,0 9.99,-9.25 9.62,-12.58 0,0 -0.37,-16.65 -1.48,-17.39 z"
id="path336"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g338">
<path
d="m -59.6,12.46 c 0,0 -2.88,-18.98 -0.72,-22.94 0,0 9.72,-9 9.36,-12.24 0,0 -0.36,-16.2 -1.44,-16.92 -0.76,-1.04 -7.92,-6.12 -13.32,-0.36 0,0 -9.36,16.2 -8.64,21.96 l 0,1.8 c 0,0 -6.84,-0.36 -8.28,1.44 0,0 -1.08,4.68 -2.16,5.04 0,0 -2.52,2.16 -0.72,4.68 0,0 -1.8,2.16 -1.44,5.76 l 6.84,3.6 c 0,0 1.8,12.96 11.52,17.64 4.352,2.095 7.2,-4.06 9,-9.46 z"
id="path340"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g342">
<path
d="m -62.7,6.2 c 0,0 -21.6,-10.2 -22.5,-11 0,0 9.1,8.2 9.9,8.2 0.8,0 12.6,2.8 12.6,2.8 z"
id="path344"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g346">
<path
d="m -79.8,0 c 0,0 18.4,3.6 18.4,8 0,2.912 -0.243,16.331 -5.6,14.8 C -75.4,20.4 -71.8,6 -79.8,0 z"
id="path348"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#99cc32"
id="g350">
<path
d="m -71.4,3.8 c 0,0 8.978,1.474 10,4.2 0.6,1.6 1.263,9.908 -4.2,11 -4.552,0.911 -6.782,-9.31 -5.8,-15.2 z"
id="path352"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g354">
<path
d="m 14.595,46.349 c -0.497,-1.742 0.814,-1.611 2.605,-2.149 2,-0.6 14.2,-4.4 15,-7 0.8,-2.6 14,1.8 14,1.8 1.8,0.8 6.2,3.4 6.2,3.4 4.8,1.2 11.4,1.6 11.4,1.6 2.4,1 5.8,3.8 5.8,3.8 14.6,10.2 27.001,3 27.001,3 20,-6.6 14,-23.8 14,-23.8 -3,-9 0.2,-12.4 0.2,-12.4 0.2,-3.8 7.4,2.6 7.4,2.6 2.6,4.2 3.4,9.2 3.4,9.2 8,11.2 4.6,-6.6 4.6,-6.6 0.2,-1 -2.6,-4.6 -2.6,-5.8 0,-1.2 -1.8,-4.6 -1.8,-4.6 -3,-3.4 -0.6,-10.4 -0.6,-10.4 1.8,-13.8 -0.4,-12 -0.4,-12 -1.2,-1.8 -10.4,8.2 -10.4,8.2 -2.2,3.4 -8.2,5 -8.2,5 -2.8,1.8 -6.2,0.4 -6.2,0.4 -2.6,-0.4 -8.2,6.6 -8.2,6.6 2.8,-0.2 5.2,4.2 7.6,4.4 2.4,0.2 4.2,-2.4 5.8,-3 1.6,-0.6 4.4,5.2 4.4,5.2 0.4,2.6 -5.2,7.4 -5.2,7.4 -0.4,4.6 -2,3 -2,3 -3,-0.6 -4.2,3.2 -5.2,7.8 -1,4.6 -5.2,5 -5.2,5 -1.6,7.4 -2.801,4.4 -2.801,4.4 -0.2,-5.6 -6.2,0.2 -6.2,0.2 -1.2,2 -5.8,-0.2 -5.8,-0.2 -6.8,-2 -4.4,-4 -4.4,-4 1.8,-2.2 13,0 13,0 C 84,35.8 76,31.8 76,31.8 c -0.6,-1.8 0.4,-6.2 0.4,-6.2 1.2,-3.2 8,-8.8 8,-8.8 C 93.801,15.6 91.001,14 91.001,14 84.801,8.8 79,16.4 79,16.4 76.8,22.6 59.4,37.6 59.4,37.6 54.6,41 57.2,34.2 53.2,37.6 49.2,41 28.6,32 28.6,32 17.038,30.807 14.306,46.549 10.777,43.429 c 0,0 5.418,8.52 3.818,2.92 z"
id="path356"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g358">
<path
d="m 209.401,-120 c 0,0 -25.6,8 -28.4,26.8 0,0 -2.4,22.8 18,40.4 0,0 0.4,6.4 2.4,9.6 0,0 -1.6,4.8 17.2,-2.8 l 27.2,-8.4 c 0,0 6.4,-2.4 11.6,-11.2 5.2,-8.8 20.4,-27.6 16.8,-52.8 0,0 1.2,-11.2 -4.8,-11.6 0,0 -8.4,-1.6 -15.6,6 0,0 -6.8,3.2 -9.2,2.8 l -35.2,1.2 z"
id="path360"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g362">
<path
d="m 264.022,-120.99 c 0,0 2.1,-8.93 -2.74,-4.09 0,0 -7.04,5.72 -14.521,5.72 0,0 -14.52,2.2 -18.92,15.4 0,0 -3.96,26.84 3.96,32.56 0,0 4.84,7.48 11.88,0.88 7.041,-6.6 22.541,-36.83 20.341,-50.47 z"
id="path364"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#323232"
id="g366">
<path
d="m 263.648,-120.632 c 0,0 2.09,-8.744 -2.662,-3.992 0,0 -6.912,5.616 -14.257,5.616 0,0 -14.256,2.16 -18.576,15.12 0,0 -3.888,26.352 3.888,31.968 0,0 4.752,7.344 11.664,0.864 6.913,-6.48 22.103,-36.184 19.943,-49.576 z"
id="path368"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#666666"
id="g370">
<path
d="m 263.274,-120.274 c 0,0 2.08,-8.558 -2.584,-3.894 0,0 -6.784,5.512 -13.993,5.512 0,0 -13.992,2.12 -18.232,14.84 0,0 -3.816,25.864 3.816,31.376 0,0 4.664,7.208 11.448,0.848 6.785,-6.36 21.665,-35.538 19.545,-48.682 z"
id="path372"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#999999"
id="g374">
<path
d="m 262.9,-119.916 c 0,0 2.07,-8.372 -2.506,-3.796 0,0 -6.656,5.408 -13.729,5.408 0,0 -13.728,2.08 -17.888,14.56 0,0 -3.744,25.376 3.744,30.784 0,0 4.576,7.072 11.232,0.832 6.657,-6.24 21.227,-34.892 19.147,-47.788 z"
id="path376"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g378">
<path
d="m 262.526,-119.558 c 0,0 2.06,-8.186 -2.428,-3.698 0,0 -6.529,5.304 -13.465,5.304 0,0 -13.464,2.04 -17.544,14.28 0,0 -3.672,24.888 3.672,30.192 0,0 4.488,6.936 11.016,0.816 6.528,-6.12 20.789,-34.246 18.749,-46.894 z"
id="path380"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g382">
<path
d="m 262.151,-119.2 c 0,0 2.05,-8 -2.35,-3.6 0,0 -6.4,5.2 -13.2,5.2 0,0 -13.2,2 -17.2,14 0,0 -3.6,24.4 3.6,29.6 0,0 4.4,6.8 10.8,0.8 6.4,-6 20.35,-33.6 18.35,-46 z"
id="path384"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#992600"
id="g386">
<path
d="m 50.6,84 c 0,0 -20.4,-19.2 -28.4,-20 0,0 -34.4,-4 -49.2,14 0,0 17.6,-20.4 45.2,-14.8 0,0 -21.6,-4.4 -34,-1.2 0,0 -16.8,0 -26.4,14 l -2.8,4.8 c 0,0 4,-14.8 22.4,-20.8 0,0 22.8,-4.8 33.6,0 0,0 -21.6,-6.8 -31.6,-4.8 0,0 -30.4,-2.4 -43.2,24 0,0 4,-14.4 18.8,-21.6 0,0 13.6,-8.8 34,-6 0,0 14.4,3.2 19.6,5.6 5.2,2.4 4,-0.4 -4.4,-5.2 0,0 -5.6,-10 -19.6,-9.6 0,0 -42.8,3.6 -53.2,15.6 0,0 13.6,-11.2 24,-14 0,0 22.4,-8 30.8,-7.2 0,0 24.8,1 32.4,-3 0,0 -11.2,5 -8,8.2 3.2,3.2 10,10.8 10,12 0,1.2 24.2,23.3 27.8,27.7 l 2.2,2.3 z"
id="path388"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g390">
<path
d="m 189,278 c 0,0 -15.5,-36.5 -28,-46 0,0 26,16 29.5,34 0,0 0,10 -1.5,12 z"
id="path392"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g394">
<path
d="m 236,285.5 c 0,0 -26.5,-55 -45,-79 0,0 43.5,37.5 48.5,64 l 0.5,5.5 -3,-2.5 c 0,0 -0.5,9 -1,12 z"
id="path396"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g398">
<path
d="m 292.5,237 c 0,0 -62.5,-59.5 -64,-62 0,0 60.5,66 63.5,73.5 0,0 -2,-9 0.5,-11.5 z"
id="path400"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g402">
<path
d="m 104,280.5 c 0,0 19.5,-52 38.5,-29.5 0,0 15,10 14.5,13 0,0 -4,-6.5 -22,-6 0,0 -19,-3 -31,22.5 z"
id="path404"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g406">
<path
d="m 294.5,153 c 0,0 -45,-28.5 -52.5,-30 -11.807,-2.361 49.5,29 54.5,39.5 0,0 2,-2.5 -2,-9.5 z"
id="path408"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g410">
<path
d="m 143.801,259.601 c 0,0 20.4,-2 27.2,-8.8 l 4.4,3.6 17.6,-38.4 3.6,5.2 c 0,0 14.4,-14.8 13.6,-22.8 -0.8,-8 12.8,6 12.8,6 0,0 -0.8,-11.6 6.4,-4.8 0,0 -2.4,-15.6 6,-7.6 0,0 -10.537,-30.157 12,-4.4 5.6,6.4 1.2,-0.4 1.2,-0.4 0,0 -26,-48 -4.4,-33.6 0,0 2,-22.8 0.8,-27.2 -1.2,-4.4 -3.2,-26.801 -8,-32.001 -4.8,-5.2 0.4,-6.8 6,-1.6 0,0 -11.2,-24 2,-12 0,0 -3.6,-15.2 -8,-18 0,0 -5.6,-17.2 9.6,-6.4 0,0 -4.4,-12.4 -7.6,-15.6 0,0 -11.6,-27.6 -4.4,-22.8 l 4.4,3.6 c 0,0 -6.8,-14 -0.4,-9.6 6.4,4.4 6.4,4 6.4,4 0,0 -21.2,-33.2 -0.8,-15.6 0,0 -8.159,-13.918 -11.6,-20.8 0,0 -18.8,-20.4 -4.4,-14 l 4.8,1.6 c 0,0 -8.8,-10 -16.8,-11.6 -8,-1.6 2.4,-8 8.8,-6 6.4,2 22,9.6 22,9.6 0,0 12.8,18.8 16.8,19.2 0,0 -20,-7.6 -14,0.4 0,0 14.4,14 7.2,13.6 0,0 -6,7.2 -1.2,16 0,0 -18.459,-18.391 -3.6,7.2 l 6.8,16.4 c 0,0 -24.4,-24.8 -13.2,-2.8 0,0 17.2,23.6 19.2,24 2,0.4 6.4,9.2 6.4,9.2 l -4.4,-2 5.2,8.8 c 0,0 -11.2,-12 -5.2,1.2 l 5.6,14.4 c 0,0 -20.4,-22 -6.8,7.6 0,0 -16.4,-5.2 -7.6,12 0,0 -1.6,16.001 -1.2,21.201 0.4,5.2 1.6,33.6 -2.8,41.6 -4.4,8 6,27.2 8,31.2 2,4 5.6,14.8 -3.2,5.6 -8.8,-9.2 -4.4,-3.6 -2.4,5.2 2,8.8 8,24.4 7.2,30 0,0 -1.2,1.2 -4.4,-2.4 0,0 -14.8,-22.8 -13.2,-8.4 0,0 -1.2,8 -4.4,16.8 0,0 -3.2,10.8 -3.2,2 0,0 -3.2,-16.8 -6,-9.2 -2.8,7.6 -6.4,13.6 -9.2,16 -2.8,2.4 -8,-20.4 -9.2,-10 0,0 -12,-12.4 -16.8,4 l -11.6,16.4 c 0,0 -0.4,-12.4 -1.6,-6.4 0,0 -30,6 -40.4,1.6 z"
id="path412"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g414">
<path
d="m 109.401,-97.2 c 0,0 -11.6,-8 -15.6,-7.6 -4,0.4 27.6,-8.8 68.8,18.8 0,0 4.8,2.8 8.4,2.4 0,0 3.2,2.4 0.4,6 0,0 -8.8,9.6 2.4,20.8 0,0 18.4,6.8 12.8,-2 0,0 10.8,4 13.2,8 2.4,4 1.2,0 1.2,0 0,0 -6.4,-7.2 -12.4,-12.4 0,0 -5.2,-2 -8,-10.4 -2.8,-8.4 -5.2,-18.4 -0.8,-21.6 0,0 -4,4.4 -3.2,0.4 0.8,-4 4.4,-7.6 6,-8 1.6,-0.4 18,-16.2 24.8,-16.6 0,0 -9.2,1.4 -12.2,0.4 -3,-1 -29.6,-12.4 -35.6,-13.6 0,0 -16.8,-6.6 -4.8,-4.6 0,0 35.8,3.8 54,17 0,0 -7.2,-8.4 -25.6,-15.4 0,0 -22.2,-12.6 -57.4,-7.6 0,0 -17.8,3.2 -25.6,5 0,0 -2.6,-0.6 -3.2,-1 -0.6,-0.4 -12.401,-9.4 -40.001,-2.4 0,0 -17,4.6 -25.6,9.4 0,0 -15.2,1.2 -18.8,4.4 0,0 -18.6,14.6 -20.6,15.4 -2,0.8 -13.4,8.4 -14.2,8.8 0,0 24.6,-6.6 27,-9 2.4,-2.4 19.8,-5 22.2,-3.6 2.4,1.4 10.8,0.8 1.2,1.4 0,0 75.601,14.8 76.401,16.8 0.8,2 4.8,0.8 4.8,0.8 z"
id="path416"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g418">
<path
d="m 180.801,-106.4 c 0,0 -10.2,-7.4 -12.2,-7.4 -2,0 -14.4,-10.2 -18.6,-9.8 -4.2,0.4 -16.4,-9.6 -43.8,-1.4 0,0 -0.6,-2 3,-2.8 0,0 6.4,-2.2 6.8,-2.8 0,0 20.2,-4.2 27.4,-0.6 0,0 9.2,2.6 15.4,8.8 0,0 11.2,3.2 14.4,2.2 0,0 8.8,2.2 9.2,4 0,0 5.8,3 4,5.6 0,0 0.4,1.6 -5.6,4.2 z"
id="path420"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g422">
<path
d="m 168.33,-108.509 c 0.807,0.632 1.826,0.73 2.431,1.539 0.234,0.314 -0.055,0.64 -0.37,0.737 -1.043,0.317 -2.099,-0.253 -3.241,0.335 -0.402,0.207 -1.044,0.025 -1.597,-0.124 -1.632,-0.441 -3.461,-0.466 -5.152,0.222 -1.985,-1.129 -4.345,-0.545 -6.426,-1.546 -0.058,-0.027 -0.28,0.319 -0.354,0.292 -3.046,-1.145 -6.789,-0.862 -9.22,-3.146 -2.428,-0.412 -4.785,-0.874 -7.213,-1.554 -1.818,-0.509 -3.227,-1.498 -4.847,-2.33 -1.377,-0.708 -2.834,-1.23 -4.368,-1.602 -1.863,-0.452 -3.694,-0.34 -5.587,-0.86 -0.093,-0.025 -0.285,0.319 -0.367,0.292 -0.324,-0.108 -0.614,-0.691 -0.785,-0.638 -1.681,0.522 -3.169,-0.45 -4.833,-0.108 -1.178,-1.224 -2.906,-0.979 -4.452,-1.421 -2.964,-0.848 -6.118,0.422 -9.148,-0.579 4.113,-1.842 8.8,-0.61 12.862,-2.679 2.328,-1.186 4.99,-0.084 7.56,-0.844 0.487,-0.144 1.178,-0.346 1.578,0.323 0.134,-0.135 0.316,-0.374 0.374,-0.346 2.45,1.157 4.765,2.431 7.247,3.497 0.341,0.146 0.873,-0.086 1.125,0.116 1.52,1.216 3.463,1.113 4.854,2.333 1.698,-0.502 3.491,-0.122 5.22,-0.746 0.077,-0.027 0.311,0.314 0.344,0.292 1.13,-0.748 2.285,-0.477 3.177,-0.173 0.338,0.115 1.001,0.362 1.306,0.436 1.126,0.276 1.982,0.756 3.161,0.939 0.114,0.018 0.299,-0.322 0.371,-0.294 1.123,0.438 2.165,0.382 2.821,1.546 0.135,-0.135 0.3,-0.373 0.382,-0.346 1.027,0.338 1.676,1.093 2.777,1.334 0.485,0.106 1.097,0.732 1.673,0.908 2.392,0.731 4.235,2.26 6.429,3.155 0.759,0.31 1.635,0.544 2.268,1.04 z"
id="path424"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g426">
<path
d="m 91.696,-122.739 c -2.518,-1.725 -4.886,-2.831 -7.328,-4.617 -0.181,-0.133 -0.541,0.037 -0.743,-0.085 -1.007,-0.609 -1.895,-1.19 -2.877,-1.886 -0.539,-0.382 -1.36,-0.371 -1.868,-0.629 -2.544,-1.292 -5.173,-1.85 -7.68,-3.044 0.682,-0.638 1.804,-0.394 2.4,-1.2 0.195,0.28 0.433,0.564 0.786,0.373 1.678,-0.904 3.528,-1.057 5.204,-0.967 1.704,0.092 3.424,0.397 5.199,0.669 0.307,0.047 0.506,0.57 0.829,0.667 2.228,0.663 4.617,0.138 6.736,0.976 1.591,0.629 3.161,1.452 4.4,2.727 0.252,0.26 -0.073,0.561 -0.353,0.755 0.388,-0.109 0.661,0.097 0.772,0.41 0.084,0.239 0.084,0.541 0,0.78 -0.112,0.312 -0.391,0.413 -0.765,0.464 -1.407,0.19 0.365,-1.19 -0.335,-0.742 -1.273,0.814 -0.527,2.22 -1.272,3.488 -0.28,-0.194 -0.51,-0.412 -0.4,-0.8 0.234,0.522 -0.368,0.812 -0.536,1.128 -0.385,0.725 -1.284,2.14 -2.169,1.533 z"
id="path428"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g430">
<path
d="m 59.198,-115.391 c -3.154,-0.794 -6.204,-0.679 -9.22,-1.955 -0.067,-0.028 -0.29,0.319 -0.354,0.292 -1.366,-0.594 -2.284,-1.56 -3.36,-2.606 -0.913,-0.888 -2.571,-0.501 -3.845,-0.988 -0.324,-0.124 -0.527,-0.636 -0.828,-0.675 -1.219,-0.157 -2.146,-1.106 -3.191,-1.677 2.336,-0.795 4.747,-0.764 7.209,-1.148 0.113,-0.018 0.258,0.303 0.391,0.303 0.136,0 0.266,-0.221 0.4,-0.355 0.195,0.28 0.497,0.606 0.754,0.352 0.548,-0.54 1.104,-0.35 1.644,-0.31 0.144,0.01 0.269,0.313 0.402,0.313 0.136,0 0.267,-0.311 0.4,-0.311 0.136,0.001 0.267,0.311 0.4,0.311 0.136,0 0.266,-0.221 0.4,-0.355 0.692,0.782 1.577,0.228 2.399,0.407 1.038,0.227 1.305,1.375 2.379,1.673 4.715,1.304 8.852,3.449 13.215,5.536 0.307,0.147 0.517,0.395 0.407,0.784 0.267,0 0.58,-0.088 0.77,0.044 1.058,0.732 2.099,1.28 2.796,2.378 0.216,0.339 -0.113,0.746 -0.346,0.694 -4.429,-0.995 -8.435,-1.603 -12.822,-2.707 z"
id="path432"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g434">
<path
d="m 45.338,-71.179 c -1.592,-1.219 -2.176,-3.25 -3.304,-5.042 -0.214,-0.34 0.06,-0.654 0.377,-0.743 0.56,-0.159 1.103,0.319 1.512,0.521 1.745,0.862 3.28,2.104 5.277,2.243 1.99,2.234 6.25,2.619 6.257,6 10e-4,0.859 -1.427,-0.059 -1.857,0.8 -2.451,-1.003 -4.84,-0.9 -7.22,-2.367 -0.617,-0.381 -0.287,-0.834 -1.042,-1.412 z"
id="path436"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cc7226"
id="g438">
<path
d="m 17.8,-123.756 c 0.135,0.001 7.166,0.234 7.149,0.348 -0.045,0.309 -7.775,1.358 -8.139,1.188 -0.164,-0.076 -7.676,2.354 -7.81,2.22 0.268,-0.135 8.534,-3.756 8.8,-3.756 z"
id="path440"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g442">
<path
d="m 33.2,-114 c 0,0 -14.8,1.8 -19.2,3 -4.4,1.2 -23,8.8 -26,10.8 0,0 -13.4,5.4 -30.4,25.4 0,0 7.6,-3.4 9.8,-6.2 0,0 13.6,-12.6 13.4,-10 0,0 12.2,-8.6 11.6,-6.4 0,0 24.4,-11.2 22.4,-8 0,0 21.6,-4.6 20.6,-2.6 0,0 18.8,4.4 16,4.6 0,0 -5.8,1.2 0.6,4.8 0,0 -3.4,4.4 -8.8,0.4 -5.4,-4 -2.4,-1.8 -7.4,-0.8 0,0 -2.6,0.8 -7.2,-3.2 0,0 -5.6,-4.6 -14.4,-1 0,0 -30.6,12.6 -32.6,13.2 0,0 -3.6,2.8 -6,6.4 0,0 -5.8,4.4 -8.8,5.8 0,0 -12.8,11.6 -14,13 0,0 -3.4,5.2 -4.2,5.6 0,0 6.4,-3.8 8.4,-5.8 0,0 14,-10 19.4,-10.8 0,0 4.4,-3 5.2,-4.4 0,0 14.4,-9.2 18.6,-9.2 0,0 9.2,5.2 11.6,-1.8 0,0 5.8,-1.8 11.4,-0.6 0,0 3.2,-2.6 2.4,-4.8 0,0 1.6,-1.8 2.6,2 0,0 3.4,3.6 8.2,1.6 0,0 4,-0.2 2,2.2 0,0 -4.4,3.8 -16.2,4 0,0 -12.4,0.6 -28.8,8.2 0,0 -29.8,10.4 -39,20.8 0,0 -6.4,8.8 -11.8,10 0,0 -5.8,0.8 -11.8,8.2 0,0 9.8,-5.8 18.8,-5.8 0,0 4,-2.4 0.2,1.2 0,0 -3.6,7.6 -2,13 0,0 -0.6,5.2 -1.4,6.8 0,0 -7.8,12.8 -7.8,15.2 0,2.4 1.2,12.2 1.6,12.8 0.4,0.6 -1,-1.6 2.8,0.8 3.8,2.4 6.6,4 7.4,6.8 0.8,2.8 -2,-5.4 -2.2,-7.2 -0.2,-1.8 -4.4,-9 -3.6,-11.4 0,0 1,1 1.8,2.4 0,0 -0.6,-0.6 0,-4.2 0,0 0.8,-5.2 2.2,-8.4 1.4,-3.2 3.4,-7 3.8,-7.8 0.4,-0.8 0.4,-6.6 1.8,-4 l 3.4,2.6 c 0,0 -2.8,-2.6 -0.6,-4.8 0,0 -1,-5.6 0.8,-8.2 0,0 7,-8.4 8.6,-9.4 1.6,-1 0.2,-0.6 0.2,-0.6 0,0 6,-4.2 0.2,-2.6 0,0 -4,1.6 -7,1.6 0,0 -7.6,2 -3.6,-2.2 4,-4.2 14,-9.6 17.8,-9.4 l 0.8,1.6 11.2,-2.4 -1.2,0.8 c 0,0 -0.2,-0.2 4,-0.6 4.2,-0.4 10,1 11.4,-0.8 1.4,-1.8 4.8,-2.8 4.4,-1.4 -0.4,1.4 -0.6,3.4 -0.6,3.4 0,0 5,-5.8 4.4,-3.6 -0.6,2.2 -8.8,7.4 -10.2,13.6 l 10.4,-8.2 3.6,-3 c 0,0 3.6,2.2 3.8,0.6 0.2,-1.6 4.8,-7.4 6,-7.2 1.2,0.2 3.2,-2.6 3,0 -0.2,2.6 7.4,8 7.4,8 0,0 3.2,-1.8 4.6,-0.4 1.4,1.4 5.6,-19.8 5.6,-19.8 l 25,-10.6 43.601,-3.4 -17,-6.8 L 33.2,-114 z"
id="path444"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#4c0000;stroke-width:2"
id="g446">
<path
d="m 51.4,85 c 0,0 -15,-16.8 -23.4,-19.4 0,0 -13.4,-6.8 -38,1"
id="path448"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#4c0000;stroke-width:2"
id="g450">
<path
d="m 24.8,64.2 c 0,0 -25.2,-8 -40.6,-3.8 0,0 -18.4,2 -26.8,15.8"
id="path452"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#4c0000;stroke-width:2"
id="g454">
<path
d="m 21.2,63 c 0,0 -17,-7.2 -31.8,-9.4 0,0 -16.6,-2.6 -33.2,4.6 0,0 -12.2,6 -17.6,16.2"
id="path456"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#4c0000;stroke-width:2"
id="g458">
<path
d="m 22.2,63.4 c 0,0 -15.4,-11 -16.4,-12.4 0,0 -7,-11 -20,-11.4 0,0 -21.4,0.8 -38.6,8.8"
id="path460"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g462">
<path
d="M 20.895,54.407 C 22.437,55.87 49.4,84.8 49.4,84.8 c 35.2,36.601 7.2,2.4 7.2,2.4 C 49,82.4 39.8,63.6 39.8,63.6 c -1.2,-2.8 14,7.2 14,7.2 4,0.8 17.6,20 17.6,20 -6.8,-2.4 -2,4.8 -2,4.8 2.8,2 23.201,17.601 23.201,17.601 3.6,4 7.6,5.6 7.6,5.6 14,-5.2 7.6,8 7.6,8 2.4,6.8 8,-4.8 8,-4.8 11.2,-16.801 -5.2,-14.4 -5.2,-14.4 C 80.6,110.401 73.8,94.4 73.8,94.4 c -2.4,-2.4 6.4,0 6.4,0 C 88.601,96.4 73,82 73,82 c 2.4,0 11.6,6.8 11.6,6.8 10.401,9.2 12.401,7.2 12.401,7.2 18,-8.8 28.4,-1.2 28.4,-1.2 2,1.6 -3.6,8.4 -2,13.601 1.6,5.2 6.4,17.6 6.4,17.6 -2.4,1.6 -2,12.4 -2,12.4 16.8,23.2 7.2,21.2 7.2,21.2 -15.6,-0.4 -0.8,7.2 -0.8,7.2 3.2,2 12,9.2 12,9.2 -2.8,-1.2 -4.4,4 -4.4,4 4.8,4 2,8.8 2,8.8 -6,1.2 -7.2,5.2 -7.2,5.2 6.8,8 -3.2,8.4 -3.2,8.4 3.6,4.4 -1.2,16.4 -1.2,16.4 -4.8,0 -11.2,5.6 -11.2,5.6 2.4,4.8 -8,10.4 -8,10.4 -8.4,1.6 -5.6,8.4 -5.6,8.4 -8,6 -10.4,22 -10.4,22 -0.8,10.4 -3.2,13.6 2,11.6 5.2,-2 4.4,-14.4 4.4,-14.4 -4.8,-15.6 38,-31.6 38,-31.6 4,-1.6 4.8,-6.8 4.8,-6.8 2,0.4 10.8,8 10.8,8 7.6,11.2 8,2 8,2 1.2,-3.6 -0.4,-9.6 -0.4,-9.6 6,-21.6 -8,-28 -8,-28 -10,-33.6 4,-25.2 4,-25.2 2.8,5.6 13.6,10.8 13.6,10.8 l 3.6,-2.4 c -1.6,-4.8 6.8,-10.8 6.8,-10.8 2.8,6.4 8.8,-1.6 8.8,-1.6 3.6,-24.4 16,-10 16,-10 4,1.2 5.2,-5.6 5.2,-5.6 3.6,-10.4 0,-24 0,-24 3.6,-0.4 13.2,5.6 13.2,5.6 2.8,-3.6 -6.4,-20.4 -2.4,-18 4,2.4 8.4,4 8.4,4 0.8,-2 -9.2,-14.4 -9.2,-14.4 -4.4,-2.801 -9.6,-23.201 -9.6,-23.201 7.2,3.6 -2.8,-11.6 -2.8,-11.6 0,-3.2 6,-14.4 6,-14.4 -0.8,-6.8 0,-6.4 0,-6.4 2.8,1.2 10.8,2.8 4,-3.6 -6.8,-6.4 0.8,-11.2 0.8,-11.2 4.4,-2.8 -9.2,-2.4 -9.2,-2.4 -5.2,-4.4 -4.8,-8.4 -4.8,-8.4 8,2 -6.4,-12.4 -8.8,-16 -2.4,-3.6 7.2,-8.8 7.2,-8.8 13.2,-3.6 1.6,-6.8 1.6,-6.8 -19.6,0.4 -8.8,-10.4 -8.8,-10.4 6,0.4 4.4,-2 4.4,-2 -5.2,-1.2 -14.8,-7.6 -14.8,-7.6 -4,-3.6 -0.4,-2.8 -0.4,-2.8 16.8,1.2 -12,-10 -12,-10 8,0 -10,-10.4 -10,-10.4 -2,-1.6 -5.2,-9.2 -5.2,-9.2 -6,-5.2 -10.8,-12 -10.8,-12 -0.4,-4.4 -5.2,-9.2 -5.2,-9.2 -11.6,-13.6 -17.2,-13.2 -17.2,-13.2 -14.8,-3.6 -20,-2.8 -20,-2.8 L 56.2,-93.2 c -26.4,12.8 -18.6,33.8 -18.6,33.8 6.4,8.4 15.6,4.6 15.6,4.6 4.6,-6.2 16.2,-4 16.2,-4 20.401,3.2 17.801,-0.4 17.801,-0.4 C 84.801,-63.8 68.6,-70 68.4,-70.6 c -0.2,-0.6 -9,-4 -9,-4 C 56.4,-75.8 52,-85 52,-85 c -3.2,-3.4 12.6,2.4 12.6,2.4 -1.2,1 6.2,5 6.2,5 17.401,-1 28.001,9.8 28.001,9.8 10.8,16.6 11,8.4 11,8.4 2.8,-9.4 -9,-30.6 -9,-30.6 0.4,-2 8.6,4.6 8.6,4.6 1.4,-2 2.2,3.8 2.2,3.8 0.2,2.4 4,10.4 4,10.4 2.8,13 6.4,5.6 6.4,5.6 l 4.6,9.4 c 1.4,2.6 -4.6,10.2 -4.6,10.2 -0.2,2.8 0.6,2.6 -5,10.2 -5.6,7.6 -2.2,12 -2.2,12 -1.4,6.6 7.4,6.2 7.4,6.2 2.6,2.2 6,2.2 6,2.2 1.8,2 4.2,1.4 4.2,1.4 1.6,-3.8 7.8,-1.8 7.8,-1.8 1.4,-2.4 9.6,-2.8 9.6,-2.8 1,-2.6 1.4,-4.2 4.8,-4.8 3.4,-0.6 -21.2,-43.6 -21.2,-43.6 6.4,-0.8 -1.8,-13.2 -1.8,-13.2 -2.2,-6.6 9.2,8 11.4,9.4 2.2,1.4 3.2,3.6 1.6,3.4 -1.6,-0.2 -3.4,2 -2,2.2 1.4,0.2 14.4,15.2 17.8,25.4 3.4,10.2 9.4,14.2 15.6,20.2 6.2,6 5.4,30.2 5.4,30.2 -0.4,8.8 5.6,19.4 5.6,19.4 2,3.8 -2.2,22 -2.2,22 -2,2.2 -0.6,3 -0.6,3 1,1.2 7.8,14.4 7.8,14.4 -1.8,-0.2 1.8,3.4 1.8,3.4 5.2,6 -1.2,3 -1.2,3 -6,-1.6 1,8.2 1,8.2 1.2,1.8 -7.8,-2.8 -7.8,-2.8 -9.2,-0.6 2.4,6.6 2.4,6.6 8.6,7.2 -2.8,2.8 -2.8,2.8 -4.6,-1.8 -1.4,5 -1.4,5 3.2,1.6 20.4,8.6 20.4,8.6 0.4,3.801 -2.6,8.801 -2.6,8.801 0.4,4 -1.8,7.4 -1.8,7.4 -1.2,8.2 -1.8,9 -1.8,9 -4.2,0.2 -11.6,14 -11.6,14 -1.8,2.6 -12,14.6 -12,14.6 -2,7 -20,-0.2 -20,-0.2 -6.6,3.4 -4.6,0 -4.6,0 -0.4,-2.2 4.4,-8.2 4.4,-8.2 7,-2.6 4.4,-13.4 4.4,-13.4 4,-1.4 -7.2,-4.2 -7,-5.4 0.2,-1.2 6,-2.6 6,-2.6 8,-2 3.6,-4.4 3.6,-4.4 -0.6,-4 2.4,-9.6 2.4,-9.6 11.6,-0.8 0,-17.001 0,-17.001 -10.8,-7.6 -11.8,-13.4 -11.8,-13.4 12.6,-8.2 4.4,-20.6 4.6,-24.2 0.2,-3.6 1.4,-25.2 1.4,-25.2 -2,-6.2 -5,-19.8 -5,-19.8 2.2,-5.2 9.6,-17.8 9.6,-17.8 2.8,-4.2 11.6,-9 9.4,-12 -2.2,-3 -10,-1.2 -10,-1.2 -7.8,-1.4 -7.2,3.8 -7.2,3.8 -1.6,1 -2.4,6 -2.4,6 -0.721,7.933 -9.6,14.2 -9.6,14.2 -11.2,6.2 -2,10.2 -2,10.2 6,6.6 -3.8,6.8 -3.8,6.8 -11,-1.8 -2.8,8.4 -2.8,8.4 10.8,12.8 7.8,15.6 7.8,15.6 -10.2,1 2.4,10.2 2.4,10.2 0,0 -0.8,-2 -0.6,-0.2 0.2,1.8 3.2,6 4,8 0.8,2 -3.2,2.2 -3.2,2.2 0.6,9.6 -14.8,5.4 -14.8,5.4 0,0 0,0 -1.6,0.2 -1.6,0.2 -12.8,-0.6 -18.6,-2.8 -5.8,-2.2 -12.6,-2.2 -12.6,-2.2 0,0 -4,1.8 -11.601,1.6 C 77.8,70.8 69.8,73.6 69.8,73.6 65.4,73.2 74,68.8 74.2,69 74.4,69.2 80,63.6 72,64.2 50.203,65.835 39.4,55.6 39.4,55.6 c -2,-1.4 -4.6,-4.2 -4.6,-4.2 -10,-2 1.4,12.4 1.4,12.4 1.2,1.4 -0.2,2.4 -0.2,2.4 -0.8,-1.6 -8.6,-7 -8.6,-7 -2.811,-0.973 -4.174,-2.307 -6.505,-4.793 z"
id="path464"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#4c0000"
id="g466">
<path
d="m -3,42.8 c 0,0 11.6,5.6 14.2,8.4 2.6,2.8 16.6,14.2 16.6,14.2 0,0 -5.4,-2 -8,-3.8 -2.6,-1.8 -13.4,-10 -13.4,-10 0,0 -3.8,-6 -9.4,-8.8 z"
id="path468"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#99cc32"
id="g470">
<path
d="M -61.009,11.603 C -60.672,11.455 -61.196,8.743 -61.4,8.2 -62.422,5.474 -71.4,4 -71.4,4 c -0.227,1.365 -0.282,2.961 -0.176,4.599 0,0 4.868,5.519 10.567,3.004 z"
id="path472"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#659900"
id="g474">
<path
d="M -61.009,11.403 C -61.458,11.561 -61.024,8.669 -61.2,8.2 -62.222,5.474 -71.4,3.9 -71.4,3.9 c -0.227,1.365 -0.282,2.961 -0.176,4.599 0,0 4.268,5.119 10.567,2.904 z"
id="path476"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g478">
<path
d="m -65.4,11.546 c -0.625,0 -1.131,-1.14 -1.131,-2.546 0,-1.405 0.506,-2.545 1.131,-2.545 0.625,0 1.132,1.14 1.132,2.545 0,1.406 -0.507,2.546 -1.132,2.546 z"
id="path480"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g482">
<path
d="M -65.4,9 z"
id="path484"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g486">
<path
d="m -111,109.601 c 0,0 -5.6,10 19.2,4 0,0 14,-1.2 16.4,-3.6 1.2,0.8 9.566,3.733 12.4,4.4 6.8,1.6 15.2,-8.401 15.2,-8.401 0,0 4.6,-10.5 7.4,-10.5 2.8,0 -0.4,1.6 -0.4,1.6 0,0 -6.6,10.101 -6.2,11.701 0,0 -5.2,20 -21.2,20.8 0,0 -16.15,0.95 -14.8,6.8 0,0 8.8,-2.4 11.2,0 0,0 10.8,-0.4 2.8,6 l -6.8,11.6 c 0,0 0.14,3.918 -10,0.4 -9.8,-3.4 -20.1,-16.3 -20.1,-16.3 0,0 -15.95,-14.55 -5.1,-28.5 z"
id="path488"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#e59999"
id="g490">
<path
d="m -112.2,113.601 c 0,0 -2,9.6 34.8,-0.8 0,0 4.4,0 6.8,0.8 2.4,0.8 14.4,3.6 16.4,2.4 0,0 -7.2,13.6 -18.8,12 0,0 -13.2,1.6 -12.8,6.4 0,0 4,7.2 8.8,9.6 0,0 2.8,2.4 2.4,5.6 -0.4,3.2 -3.2,4.8 -5.2,5.6 -2,0.8 -5.2,-2.4 -6.8,-2.4 -1.6,0 -10,-6.4 -14.4,-11.2 -4.4,-4.8 -12.8,-16.8 -12.4,-19.6 0.4,-2.8 1.2,-8.4 1.2,-8.4 z"
id="path492"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#b26565"
id="g494">
<path
d="m -109,131.051 c 2.6,3.95 5.8,8.15 8,10.55 4.4,4.8 12.8,11.2 14.4,11.2 1.6,0 4.8,3.2 6.8,2.4 2,-0.8 4.8,-2.4 5.2,-5.6 0.4,-3.2 -2.4,-5.6 -2.4,-5.6 -3.066,-1.533 -5.806,-5.025 -7.385,-7.348 0,0 0.185,2.548 -5.015,1.748 -5.2,-0.8 -10.4,-3.6 -12,-6.8 -1.6,-3.2 -4,-5.6 -2.4,-2 1.6,3.6 4,7.2 5.6,7.6 1.6,0.4 1.2,1.6 -1.2,1.2 -2.4,-0.4 -5.2,-0.8 -9.6,-6 z"
id="path496"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#992600"
id="g498">
<path
d="m -111.6,110.001 c 0,0 1.8,-13.601 3,-17.601 0,0 -0.8,-6.8 1.6,-11 2.4,-4.2 4.4,-10.4 7.4,-15.8 3,-5.4 3.2,-9.4 7.2,-11 4,-1.6 10,-10.2 12.8,-11.2 2.8,-1 2.6,-0.2 2.6,-0.2 0,0 6.8,-14.8 20.4,-10.8 0,0 -16.2,-2.8 -0.4,-12.2 0,0 -4.8,1.1 -1.5,-5.9 2.201,-4.668 1.7,2.1 -9.3,13.9 0,0 -5,8.6 -10.2,11.6 -5.2,3 -17.2,10 -18.4,13.8 -1.2,3.8 -4.4,9.6 -6.4,11.2 -2,1.6 -4.8,5.8 -5.2,9.2 0,0 -1.2,4 -2.6,5.2 -1.4,1.2 -1.6,4.4 -1.6,6.4 0,2 -2,4.8 -1.8,7.2 0,0 0.8,19.001 0.4,21.001 l 2,-3.8 z"
id="path500"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g502">
<path
d="m -120.2,114.601 c 0,0 -2,-1.4 -6.4,4.6 0,0 7.3,33 7.3,34.4 0,0 1.1,-2.1 -0.2,-9.3 -1.3,-7.2 -2.2,-19.9 -2.2,-19.9 l 1.5,-9.8 z"
id="path504"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#992600"
id="g506">
<path
d="m -98.6,54 c 0,0 -17.6,3.2 -17.2,32.4 l -0.8,24.801 c 0,0 -1.2,-25.601 -2.4,-27.201 -1.2,-1.6 2.8,-12.8 -0.4,-6.8 0,0 -14,14 -6,35.201 0,0 1.5,3.3 -1.5,-1.3 0,0 -4.6,-12.601 -3.5,-19.001 0,0 0.2,-2.2 2.1,-5 0,0 8.6,-11.7 11.3,-14 0,0 1.8,-14.4 17.2,-19.6 0,0 5.7,-2.3 1.2,0.5 z"
id="path508"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g510">
<path
d="m 40.8,-12.2 c 0.66,-0.354 0.651,-1.324 1.231,-1.497 1.149,-0.344 1.313,-1.411 1.831,-2.195 0.873,-1.319 1.066,-2.852 1.648,-4.343 0.272,-0.7 0.299,-1.655 -0.014,-2.315 -1.174,-2.481 -1.876,-4.93 -3.318,-7.356 -0.268,-0.45 -0.53,-1.244 -0.731,-1.842 -0.463,-1.384 -1.72,-2.375 -2.58,-3.695 -0.288,-0.441 0.237,-1.366 -0.479,-1.45 -0.897,-0.105 -2.346,-0.685 -2.579,0.341 -0.588,2.587 0.423,5.11 1.391,7.552 -0.782,0.692 -0.448,1.613 -0.296,2.38 0.71,3.606 -0.488,6.958 -1.249,10.432 -0.023,0.104 0.319,0.302 0.291,0.364 -1.222,2.686 -2.674,5.131 -4.493,7.512 -0.758,0.992 -1.63,1.908 -2.127,2.971 -0.368,0.787 -0.776,1.753 -0.526,2.741 -3.435,2.78 -5.685,6.625 -8.296,10.471 -0.462,0.68 -0.171,1.889 0.38,2.158 0.813,0.398 1.769,-0.626 2.239,-1.472 C 23.512,7.859 23.865,7.209 24.356,6.566 24.489,6.391 24.31,5.972 24.445,5.851 27.078,3.504 28.747,0.568 31.2,-1.8 c 1.95,-0.329 3.487,-1.327 5.235,-2.34 0.308,-0.179 0.832,0.07 1.122,-0.125 1.753,-1.177 1.751,-3.213 1.857,-5.123 0.05,-0.884 0.246,-2.201 1.386,-2.812 z"
id="path512"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g514">
<path
d="m 31.959,-16.666 c 0.124,-0.077 -0.031,-0.5 0.078,-0.716 0.162,-0.324 0.565,-0.512 0.727,-0.836 0.109,-0.216 -0.054,-0.596 0.082,-0.738 2.333,-2.447 2.59,-5.471 1.554,-8.444 1.024,-0.62 1.085,-1.882 0.66,-2.729 -0.853,-1.7 -1.046,-3.626 -2.021,-5.169 -0.802,-1.269 -2.38,-2.513 -3.751,-1.21 -0.421,0.4 -0.742,1.187 -0.464,1.899 0.064,0.163 0.349,0.309 0.322,0.391 -0.107,0.324 -0.653,0.548 -0.659,0.82 -0.03,1.496 -0.984,3.007 -0.354,4.336 0.772,1.629 1.591,3.486 2.267,5.262 -1.234,2.116 -0.201,4.565 -1.954,6.442 -0.136,0.146 -0.127,0.532 -0.005,0.734 0.292,0.486 0.698,0.892 1.184,1.184 0.202,0.121 0.55,0.123 0.75,-0.001 0.578,-0.362 0.976,-0.849 1.584,-1.225 z"
id="path516"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g518">
<path
d="m 94.771,-26.977 c 1.389,1.792 1.679,4.587 -0.37,5.977 0.55,3.309 3.901,1.33 6,0.8 -0.109,-0.388 0.118,-0.732 0.401,-0.737 1.057,-0.015 1.737,-1.047 2.799,-0.863 0.434,-1.557 2.072,-2.259 2.716,-3.639 1.726,-3.695 1.135,-7.968 -1.449,-11.214 -0.202,-0.254 0.015,-0.771 -0.109,-1.133 -0.756,-2.211 -2.824,-2.526 -4.758,-3.214 -1.177,-3.875 -1.838,-7.906 -3.6,-11.6 -1.614,-0.25 -2.312,-1.989 -3.649,-2.709 -1.333,-0.719 -1.901,0.86 -1.86,1.906 0.007,0.205 0.459,0.429 0.289,0.794 -0.076,0.164 -0.336,0.275 -0.336,0.409 0.001,0.135 0.222,0.266 0.356,0.4 -0.918,0.82 -2.341,1.297 -2.636,2.442 -0.954,3.71 1.619,6.835 3.287,10.036 0.591,1.135 -0.145,2.406 -0.905,3.614 -0.438,0.695 -0.33,1.822 -0.054,2.678 0.752,2.331 2.343,4.07 3.878,6.053 z"
id="path520"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g522">
<path
d="m 57.611,-8.591 c -1.487,1.851 -4.899,4.42 -1.982,6.348 0.194,0.129 0.564,0.133 0.737,-0.001 2.021,-1.565 4.024,-2.468 6.46,-3.05 0.124,-0.029 0.398,0.438 0.767,0.277 1.613,-0.703 3.623,-0.645 4.807,-1.983 3.767,0.224 7.332,-0.892 10.723,-2.2 1.161,-0.448 2.431,-1.007 3.632,-1.509 1.376,-0.576 2.58,-1.504 3.692,-2.645 0.133,-0.136 0.487,-0.046 0.754,-0.046 -0.04,-0.863 0.922,-0.99 1.169,-1.612 0.092,-0.232 -0.058,-0.628 0.075,-0.73 2.138,-1.63 3.058,-3.648 1.889,-6.025 -0.285,-0.578 -0.534,-1.196 -1.1,-1.672 -1.085,-0.911 -2.187,-0.057 -3.234,-0.361 -0.159,0.628 -0.888,0.456 -1.274,0.654 -0.859,0.439 -2.192,-0.146 -3.051,0.292 -1.362,0.695 -2.603,0.864 -4.025,1.241 -0.312,0.082 -1.09,-0.014 -1.25,0.613 -0.134,-0.134 -0.282,-0.368 -0.388,-0.346 -1.908,0.396 -3.168,0.61 -4.469,2.302 -0.103,0.133 -0.545,-0.046 -0.704,0.089 -0.957,0.808 -1.362,2.042 -2.463,2.714 -0.201,0.123 -0.553,-0.045 -0.747,0.084 -0.646,0.431 -1.013,1.072 -1.655,1.519 -0.329,0.229 -0.729,-0.096 -0.697,-0.352 0.245,-1.947 0.898,-3.734 0.323,-5.61 2.077,-2.52 4.594,-4.469 6.4,-7.2 0.015,-2.166 0.707,-4.312 0.594,-6.389 -0.01,-0.193 -0.298,-0.926 -0.424,-1.273 -0.312,-0.854 0.594,-1.92 -0.25,-2.644 -1.404,-1.203 -2.696,-0.327 -3.52,1.106 -1.838,0.39 -3.904,1.083 -5.482,-0.151 -1.007,-0.787 -1.585,-1.693 -2.384,-2.749 -0.985,-1.302 -0.65,-2.738 -0.58,-4.302 0.006,-0.128 -0.309,-0.264 -0.309,-0.398 10e-4,-0.135 0.221,-0.266 0.355,-0.4 -0.706,-0.626 -0.981,-1.684 -2,-2 0.305,-1.092 -0.371,-1.976 -1.242,-2.278 -1.995,-0.691 -3.672,1.221 -5.564,1.294 -0.514,0.019 -0.981,-1.019 -1.63,-1.344 -0.432,-0.216 -1.136,-0.249 -1.498,0.017 -0.688,0.504 -1.277,0.618 -2.035,0.823 -1.617,0.436 -2.895,1.53 -4.375,2.385 -1.485,0.857 -2.44,2.294 -3.52,3.614 -0.941,1.152 -1.077,3.566 0.343,4.066 1.843,0.65 3.147,-2.053 5.113,-1.727 0.312,0.051 0.518,0.362 0.408,0.75 0.389,0.109 0.607,-0.12 0.8,-0.4 0.858,1.019 2.022,1.356 2.96,2.229 0.97,0.904 2.716,0.486 3.731,1.483 1.529,1.502 0.97,4.183 2.909,5.488 -0.586,1.313 -1.193,2.59 -1.528,4.017 -0.282,1.206 0.712,2.403 1.923,2.312 1.258,-0.094 1.52,-0.853 2.005,-1.929 0.267,0.267 0.736,0.564 0.695,0.78 -0.457,2.387 -1.484,4.38 -1.942,6.811 -0.059,0.317 -0.364,0.519 -0.753,0.409 -0.468,4.149 -4.52,6.543 -7.065,9.708 -0.403,0.502 -0.407,1.751 0.002,2.154 C 49.14,-4.951 51.1,-6.497 52.8,-7 c 0.213,-1.206 1.072,-2.148 2.404,-2.092 0.256,0.01 0.491,-0.532 0.815,-0.662 0.348,-0.138 0.85,0.086 1.136,-0.112 1.729,-1.195 3.137,-2.301 4.875,-3.49 0.192,-0.131 0.536,0.028 0.752,-0.08 0.325,-0.162 0.512,-0.549 0.835,-0.734 0.348,-0.2 0.59,0.09 0.783,0.37 -0.646,0.349 -0.65,1.306 -1.232,1.508 -0.775,0.268 -1.336,0.781 -2.01,1.228 -0.292,0.193 -0.951,-0.055 -1.055,0.124 -0.598,1.028 -1.782,1.466 -2.492,2.349 z"
id="path524"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g526">
<path
d="m 2.2,-58 c 0,0 -9.238,-2.872 -20.4,22.8 0,0 -2.4,5.2 -4.8,7.2 -2.4,2 -13.6,5.6 -15.6,9.6 l -10.4,16 c 0,0 14.8,-16 18,-18.4 0,0 8,-8.4 4.8,-1.6 0,0 -14,10.8 -12.8,20 0,0 -5.6,14.4 -6.4,16.4 0,0 16,-32 18.4,-33.2 2.4,-1.2 3.6,-1.2 2.4,2.4 -1.2,3.6 -1.6,20 -4.4,22 0,0 8,-20.4 7.2,-23.6 0,0 3.2,-3.6 5.6,1.6 l -1.2,16 4.4,12 c 0,0 -2.4,-11.2 -0.8,-26.8 0,0 -2,-10.4 2,-4.8 4,5.6 13.6,11.6 13.6,16.4 0,0 -5.2,-17.6 -14.4,-22.4 l -4,6 -1.2,-2 c 0,0 -3.6,-0.8 0.8,-7.6 4.4,-6.8 4,-7.6 4,-7.6 0,0 6.4,7.2 8,7.2 0,0 13.2,-7.6 14.4,16.8 0,0 6.8,-14.4 -2.4,-21.2 0,0 -14.8,-2 -13.6,-7.2 l 7.2,-12.4 c 3.6,-5.2 2,-2.4 2,-2.4 z"
id="path528"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g530">
<path
d="m -17.8,-41.6 c 0,0 -12.8,0 -16,5.2 l -7.2,9.6 c 0,0 17.2,-10 21.2,-11.2 4,-1.2 2,-3.6 2,-3.6 z"
id="path532"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g534">
<path
d="m -57.8,-35.2 c 0,0 -2,1.2 -2.4,4 -0.4,2.8 -2.8,3.2 -2,6 0.8,2.8 2.8,5.2 2.8,1.2 0,-4 1.6,-6 2.4,-7.2 0.8,-1.2 2.4,-5.6 -0.8,-4 z"
id="path536"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g538">
<path
d="m -66.6,26 c 0,0 -8.4,-4 -11.6,-7.6 -3.2,-3.6 -2.748,1.566 -7.6,1.2 -5.847,-0.441 -4.8,-16.4 -4.8,-16.4 l -4,7.6 c 0,0 -1.2,14.4 6.8,12 3.907,-1.172 5.2,0.4 3.6,1.2 -1.6,0.8 5.6,1.2 2.8,2.8 -2.8,1.6 11.6,-3.6 9.2,6.8 l 5.6,-7.6 z"
id="path540"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g542">
<path
d="m -79.2,40.4 c 0,0 -15.4,4.4 -19,-5.2 0,0 -4.8,2.4 -2.6,5.4 2.2,3 3.4,3.4 3.4,3.4 0,0 5.4,1.2 4.8,2 -0.6,0.8 -3,4.2 -3,4.2 0,0 10.2,-6 16.4,-9.8 z"
id="path544"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g546">
<path
d="m 149.201,118.601 c -0.427,2.134 -2.098,2.935 -4,3.6 -1.917,-0.958 -4.515,-4.064 -6.4,-2 -0.474,-0.48 -1.253,-0.54 -1.597,-1.202 -0.465,-0.898 -0.193,-1.944 -0.535,-2.742 -0.545,-1.272 -1.254,-2.638 -1.068,-4.056 1.806,-0.712 2.401,-2.618 1.927,-4.381 -0.069,-0.257 -0.498,-0.454 -0.298,-0.803 0.186,-0.323 0.504,-0.55 0.771,-0.817 -0.135,0.135 -0.28,0.368 -0.391,0.348 -0.61,-0.106 -0.486,-0.743 -0.356,-1.13 0.585,-1.746 2.599,-2.01 3.947,-0.818 0.256,-0.565 0.765,-0.371 1.2,-0.4 -0.05,-0.579 0.358,-1.106 0.556,-1.526 0.518,-1.098 2.147,0.008 2.944,-0.604 1.076,-0.825 2.139,-1.524 3.217,-0.921 1.809,1.013 3.518,2.225 4.717,3.966 0.575,0.834 0.815,2.115 0.757,3.073 -0.038,0.647 -1.419,0.295 -1.762,1.224 -0.645,1.748 1.186,2.267 1.942,3.605 0.198,0.349 -0.066,0.653 -0.381,0.751 -0.411,0.128 -1.195,-0.061 -1.057,0.392 0.972,3.193 -1.784,3.871 -4.133,4.441 z"
id="path548"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff"
id="g550">
<path
d="m 139.6,138.201 c -0.007,-1.738 -1.608,-3.494 -0.399,-5.2 0.135,0.134 0.266,0.355 0.4,0.355 0.135,0 0.266,-0.221 0.4,-0.355 1.495,2.216 5.147,3.144 5.005,5.99 -0.022,0.447 -1.109,1.365 -0.205,2.01 -1.813,1.348 -1.868,3.718 -2.8,5.6 -1.238,-0.286 -2.45,-0.649 -3.6,-1.2 0.352,-1.486 0.235,-3.17 1.055,-4.49 0.434,-0.698 0.147,-1.777 0.144,-2.71 z"
id="path552"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g554">
<path
d="m -26.6,129.201 c 0,0 -16.858,10.136 -2.8,-5.2 8.8,-9.6 18.8,-15.2 18.8,-15.2 0,0 10.4,-4.401 14,-5.601 C 7,102 22.2,96.8 25.4,96.4 28.6,96 38.2,92 45,96 c 6.8,4 14.8,8.4 14.8,8.4 0,0 -16.4,-8.4 -20,-6 -3.6,2.4 -10.8,2 -16.8,5.2 0,0 -14.8,4.401 -18,6.401 -3.2,2 -13.6,13.6 -15.2,12.8 -1.6,-0.8 0.4,-1.2 1.6,-4 1.2,-2.8 -0.8,-4.4 -8.8,2 -8,6.4 -9.2,8.4 -9.2,8.4 z"
id="path556"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g558">
<path
d="m -19.195,123.234 c 0,0 1.41,-13.04 9.888,-11.375 0,0 8.226,-4.17 10.948,-6.138 0,0 8.139,-1.702 9.449,-2.319 18.479,-8.7 33.198,-4.181 33.745,-5.301 0.546,-1.119 20.171,5.998 23.78,10.084 0.391,0.443 -10.231,-5.597 -19.929,-7.488 -8.273,-1.614 -29.875,0.247 -40.781,5.783 -2.973,1.509 -11.918,7.293 -14.449,7.182 -2.531,-0.112 -12.651,9.572 -12.651,9.572 z"
id="path560"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g562">
<path
d="m -23,148.801 c 0,0 -15.2,-2.4 1.6,-4 0,0 18,-2 22,-7.2 0,0 13.6,-9.2 16.4,-9.6 2.8,-0.4 32.8,-7.6 33.2,-10 0.4,-2.4 6,-2.4 7.6,-1.6 1.6,0.8 0.8,2 -2,2.8 -2.8,0.8 -34,17.2 -40.4,18.4 -6.4,1.2 -18,8.8 -22.8,10 -4.8,1.2 -15.6,1.2 -15.6,1.2 z"
id="path564"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g566">
<path
d="m -3.48,141.403 c 0,0 -8.582,-0.829 0.019,-1.648 0,0 8.816,-3.424 10.864,-6.087 0,0 6.964,-4.711 8.397,-4.915 1.434,-0.205 15.394,-3.892 15.599,-5.12 0.205,-1.229 34.271,-13.81 38.691,-10.62 2.911,2.101 -6.99,0.424 -16.624,4.834 -1.355,0.62 -35.208,15.207 -38.485,15.821 -3.277,0.615 -9.216,4.506 -11.674,5.12 -2.457,0.615 -6.787,2.615 -6.787,2.615 z"
id="path568"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g570">
<path
d="m -11.4,143.601 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path572"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g574">
<path
d="m -18.6,145.201 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path576"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g578">
<path
d="m -29,146.801 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path580"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g582">
<path
d="m -36.6,147.601 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path584"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g586">
<path
d="m 1.8,108.001 c 0,0 4.4,0 3.2,1.6 -1.2,1.6 -4.4,1.2 -4.4,1.2 l 1.2,-2.8 z"
id="path588"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g590">
<path
d="m -8.2,113.601 c 0,0 6.506,-2.141 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path592"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g594">
<path
d="m -19.4,118.401 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path596"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g598">
<path
d="m -27,124.401 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path600"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g602">
<path
d="m -33.8,129.201 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path604"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g606">
<path
d="m 5.282,135.598 c 0,0 6.921,-0.532 5.324,1.597 -1.597,2.13 -4.792,1.065 -4.792,1.065 l -0.532,-2.662 z"
id="path608"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g610">
<path
d="m 15.682,130.798 c 0,0 6.921,-0.532 5.324,1.597 -1.597,2.13 -4.792,1.065 -4.792,1.065 l -0.532,-2.662 z"
id="path612"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g614">
<path
d="m 26.482,126.398 c 0,0 6.921,-0.532 5.324,1.597 -1.597,2.13 -4.792,1.065 -4.792,1.065 l -0.532,-2.662 z"
id="path616"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g618">
<path
d="m 36.882,121.598 c 0,0 6.921,-0.532 5.324,1.597 -1.597,2.13 -4.792,1.065 -4.792,1.065 l -0.532,-2.662 z"
id="path620"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g622">
<path
d="m 9.282,103.598 c 0,0 6.921,-0.532 5.324,1.597 -1.597,2.13 -5.592,1.865 -5.592,1.865 l 0.268,-3.462 z"
id="path624"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g626">
<path
d="m 19.282,100.398 c 0,0 6.921,-0.532 5.324,1.597 -1.597,2.13 -5.992,1.865 -5.992,1.865 l 0.668,-3.462 z"
id="path628"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g630">
<path
d="m -3.4,140.401 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path632"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#992600"
id="g634">
<path
d="m -76.6,41.2 c 0,0 -4.4,8.8 -4.8,12 0,0 0.8,-8.8 2,-10.8 1.2,-2 2.8,-1.2 2.8,-1.2 z"
id="path636"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#992600"
id="g638">
<path
d="m -95,55.2 c 0,0 -3.2,14.4 -2.8,17.2 0,0 -1.2,-11.6 -0.8,-12.8 0.4,-1.2 3.6,-4.4 3.6,-4.4 z"
id="path640"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g642">
<path
d="m -74.2,-19.4 -0.2,3.2 -2.2,0.2 c 0,0 14.2,12.6 14.8,20.2 0,0 0.8,-8.2 -12.4,-23.6 z"
id="path644"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g646">
<path
d="m -70.216,-18.135 c -0.431,-0.416 -0.212,-1.161 -0.62,-1.421 -0.809,-0.516 1.298,-0.573 1.07,-1.289 -0.383,-1.206 -0.196,-1.227 -0.318,-2.503 -0.057,-0.598 0.531,-2.138 0.916,-2.578 1.446,-1.652 0.122,-4.584 1.762,-6.135 0.304,-0.289 0.68,-0.841 0.965,-1.259 0.659,-0.963 1.843,-1.451 2.793,-2.279 0.318,-0.276 0.117,-1.103 0.686,-1.011 0.714,0.115 1.955,-0.015 1.91,0.826 -0.113,2.12 -1.442,3.84 -2.722,5.508 0.451,0.704 -0.007,1.339 -0.291,1.896 -1.335,2.62 -1.146,5.461 -1.32,8.301 -0.005,0.085 -0.312,0.163 -0.304,0.216 0.353,2.335 0.937,4.534 1.816,6.763 0.366,0.93 0.837,1.825 0.987,2.752 0.111,0.686 0.214,1.519 -0.194,2.224 2.035,2.89 0.726,5.541 1.895,9.072 0.207,0.625 1.899,2.539 1.436,2.378 -2.513,-0.871 -2.625,-1.269 -2.802,-2.022 -0.146,-0.623 -0.476,-2 -0.713,-2.602 -0.064,-0.164 -0.235,-2.048 -0.313,-2.17 -1.513,-2.382 -0.155,-2.206 -1.525,-4.564 -1.428,-0.68 -2.394,-1.784 -3.517,-2.946 -0.198,-0.204 0.945,-0.928 0.764,-1.141 -1.092,-1.289 -2.245,-2.056 -1.909,-3.549 0.155,-0.69 0.292,-1.747 -0.452,-2.467 z"
id="path648"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g650">
<path
d="m -73.8,-16.4 c 0,0 0.4,6.8 2.8,8.4 2.4,1.6 1.2,0.8 -2,-0.4 -3.2,-1.2 -2,-2 -2,-2 0,0 -2.8,0.4 -0.4,2.4 2.4,2 6,4.4 4.4,4.4 -1.6,0 -9.2,-4 -9.2,-6.8 0,-2.8 -1,-6.9 -1,-6.9 0,0 1.1,-0.8 5.9,-0.7 0,0 1.4,0.7 1.5,1.6 z"
id="path652"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g654">
<path
d="m -74.6,2.2 c 0,0 -8.52,-2.791 -27,0.6 0,0 9.031,-2.078 27.8,0.2 10.3,1.25 -0.8,-0.8 -0.8,-0.8 z"
id="path656"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g658">
<path
d="m -72.502,2.129 c 0,0 -8.246,-3.518 -26.951,-1.737 0,0 9.178,-1.289 27.679,2.603 10.154,2.136 -0.728,-0.866 -0.728,-0.866 z"
id="path660"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g662">
<path
d="m -70.714,2.222 c 0,0 -7.962,-4.121 -26.747,-3.736 0,0 9.248,-0.604 27.409,4.654 9.966,2.885 -0.662,-0.918 -0.662,-0.918 z"
id="path664"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g666">
<path
d="m -69.444,2.445 c 0,0 -6.824,-4.307 -23.698,-5.405 0,0 8.339,0.17 24.22,6.279 8.716,3.353 -0.522,-0.874 -0.522,-0.874 z"
id="path668"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g670">
<path
d="m 45.84,12.961 c 0,0 -0.93,0.644 -0.716,-0.537 0.215,-1.181 28.423,-14.351 32.037,-14.101 0,0 -30.248,13.206 -31.321,14.638 z"
id="path672"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g674">
<path
d="m 42.446,13.6 c 0,0 -0.876,0.715 -0.755,-0.479 0.121,-1.194 27.208,-16.539 30.83,-16.573 0,0 -29.117,15.541 -30.075,17.052 z"
id="path676"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g678">
<path
d="m 39.16,14.975 c 0,0 -0.828,0.772 -0.786,-0.428 0.042,-1.199 19.859,-16.696 29.671,-18.57 0,0 -18.03,8.127 -28.885,18.998 z"
id="path680"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g682">
<path
d="m 36.284,16.838 c 0,0 -0.745,0.694 -0.707,-0.385 0.038,-1.08 17.872,-15.027 26.703,-16.713 0,0 -16.226,7.314 -25.996,17.098 z"
id="path684"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g686">
<path
d="m 4.6,164.801 c 0,0 -15.2,-2.4 1.6,-4 0,0 18,-2 22,-7.2 0,0 13.6,-9.2 16.4,-9.6 2.8,-0.4 19.2,-4 19.6,-6.4 0.4,-2.4 6.4,-4.8 8,-4 1.6,0.8 1.6,10 -1.2,10.8 -2.8,0.8 -21.6,8 -28,9.2 -6.4,1.2 -18,8.8 -22.8,10 -4.8,1.2 -15.6,1.2 -15.6,1.2 z"
id="path688"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g690">
<path
d="m 77.6,127.401 c 0,0 -3,1.6 -4.2,4.2 0,0 -6.4,10.6 -20.6,13.8 0,0 -23,9 -30.8,11 0,0 -13.4,5 -20.8,4.2 0,0 -7,0.2 -0.8,1.8 0,0 20.2,-2 23.6,-3.8 0,0 15.6,-5.2 18.6,-7.8 3,-2.6 21.2,-7.6 23.4,-9.6 2.2,-2 12,-10.4 11.6,-13.8 z"
id="path692"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g694">
<path
d="m 18.882,158.911 c 0,0 5.229,-0.226 4.076,1.323 -1.153,1.55 -3.601,0.676 -3.601,0.676 l -0.475,-1.999 z"
id="path696"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g698">
<path
d="m 11.68,160.263 c 0,0 5.228,-0.226 4.076,1.323 -1.153,1.55 -3.601,0.677 -3.601,0.677 l -0.475,-2 z"
id="path700"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g702">
<path
d="m 1.251,161.511 c 0,0 5.229,-0.227 4.076,1.323 -1.153,1.549 -3.601,0.676 -3.601,0.676 l -0.475,-1.999 z"
id="path704"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g706">
<path
d="m -6.383,162.055 c 0,0 5.229,-0.226 4.076,1.323 -1.153,1.55 -3.601,0.676 -3.601,0.676 l -0.475,-1.999 z"
id="path708"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g710">
<path
d="m 35.415,151.513 c 0,0 6.96,-0.301 5.425,1.761 -1.534,2.062 -4.793,0.9 -4.793,0.9 l -0.632,-2.661 z"
id="path712"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g714">
<path
d="m 45.73,147.088 c 0,0 5.959,-3.301 5.425,1.761 -0.27,2.556 -4.793,0.9 -4.793,0.9 l -0.632,-2.661 z"
id="path716"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g718">
<path
d="m 54.862,144.274 c 0,0 7.159,-3.701 5.425,1.761 -0.778,2.45 -4.794,0.9 -4.794,0.9 l -0.631,-2.661 z"
id="path720"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g722">
<path
d="m 64.376,139.449 c 0,0 4.359,-4.901 5.425,1.761 0.406,2.538 -4.793,0.9 -4.793,0.9 l -0.632,-2.661 z"
id="path724"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g726">
<path
d="m 26.834,155.997 c 0,0 5.228,-0.227 4.076,1.323 -1.153,1.549 -3.602,0.676 -3.602,0.676 l -0.474,-1.999 z"
id="path728"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g730">
<path
d="m 62.434,34.603 c 0,0 -0.726,0.665 -0.727,-0.406 0,-1.07 17.484,-14.334 26.327,-15.718 0,0 -16.099,6.729 -25.6,16.124 z"
id="path732"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g734">
<path
d="m 65.4,98.4 c 0,0 22.001,22.401 31.201,26.001 0,0 9.2,11.2 5.2,37.2 0,0 -3.2,7.6 -6.4,-13.2 0,0 3.2,-25.2 -8,-9.2 0,0 -8.401,-9.9 -2.001,-9.6 0,0 3.201,2 3.601,0.4 0.4,-1.6 -7.601,-15.2 -24.801,-29.601 -17.2,-14.4 1.2,-2 1.2,-2 z"
id="path736"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g738">
<path
d="m 7,137.201 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 96.001,7 127.601,31 0,0 -45.2,-23.2 -129.201,-30 z"
id="path740"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g742">
<path
d="m 17.4,132.801 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 138.401,-0.2 162.001,32.2 0,0 -22,-25.2 -163.601,-31.2 z"
id="path744"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g746">
<path
d="m 29,128.801 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 175.201,-12.2 198.801,20.2 0,0 -9.6,-25.6 -200.401,-19.2 z"
id="path748"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g750">
<path
d="m 39,124.001 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 124.001,-37.801 147.601,-5.4 0,0 -13.4,-24.601 -149.201,6.4 z"
id="path752"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g754">
<path
d="m -19,146.801 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 19.6,3 21.6,41.8 0,0 -7.2,-42 -23.2,-40.8 z"
id="path756"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g758">
<path
d="m -27.8,148.401 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 16,-3.8 13.2,35 0,0 1.2,-35.2 -14.8,-34 z"
id="path760"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g762">
<path
d="m -35.8,148.801 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 17.2,1.4 4.8,23.8 0,0 9.6,-24 -6.4,-22.8 z"
id="path764"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g766">
<path
d="m 11.526,104.465 c 0,0 -0.444,1.999 1.105,0.782 16.068,-12.625 48.51,-71.527 104.195,-77.161 0,0 -38.308,-12.11 -105.3,76.379 z"
id="path768"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g770">
<path
d="m 22.726,102.665 c 0,0 -1.363,-1.193 0.505,-1.818 1.868,-0.625 114.31,-73.127 153.595,-65.161 0,0 -27.107,-7.51 -154.1,66.979 z"
id="path772"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g774">
<path
d="m 1.885,108.767 c 0,0 -0.509,1.599 1.202,0.623 8.975,-5.12 12.59,-62.331 56.167,-63.586 0,0 -32.411,-14.714 -57.369,62.963 z"
id="path776"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g778">
<path
d="m -18.038,119.793 c 0,0 -1.077,1.286 0.876,1.032 10.246,-1.332 31.651,-42.603 76.09,-37.524 0,0 -31.966,-14.346 -76.966,36.492 z"
id="path780"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g782">
<path
d="m -6.8,113.667 c 0,0 -0.811,1.469 1.058,0.844 9.799,-3.274 22.883,-47.886 67.471,-51.433 0,0 -34.126,-7.943 -68.529,50.589 z"
id="path784"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g786">
<path
d="m -25.078,124.912 c 0,0 -0.873,1.042 0.709,0.836 8.299,-1.079 25.637,-34.508 61.633,-30.394 0,0 -25.893,-11.62 -62.342,29.558 z"
id="path788"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g790">
<path
d="m -32.677,130.821 c 0,0 -1.005,1.045 0.586,0.927 4.168,-0.309 34.806,-33.388 53.274,-17.886 0,0 -12.015,-18.723 -53.86,16.959 z"
id="path792"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g794">
<path
d="m 36.855,98.898 c 0,0 -1.201,-1.355 0.731,-1.74 1.932,-0.384 122.635,-58.097 160.598,-45.231 0,0 -25.941,-10.874 -161.329,46.971 z"
id="path796"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g798">
<path
d="m 3.4,163.201 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 17.2,1.4 4.8,23.8 0,0 9.6,-24 -6.4,-22.8 z"
id="path800"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g802">
<path
d="m 13.8,161.601 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 19.6,3 21.6,41.8 0,0 -7.2,-42 -23.2,-40.8 z"
id="path804"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g806">
<path
d="m 20.6,160.001 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 26.4,4.2 50,36.6 0,0 -35.6,-36.8 -51.6,-35.6 z"
id="path808"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g810">
<path
d="m 28.225,157.972 c 0,0 -0.437,-1.758 1.453,-1.204 1.89,0.554 22.324,-1.345 60.421,32.831 0,0 -46.175,-34.943 -61.874,-31.627 z"
id="path812"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g814">
<path
d="m 38.625,153.572 c 0,0 -0.437,-1.758 1.453,-1.204 1.89,0.554 36.724,5.055 88.421,40.031 0,0 -74.175,-42.143 -89.874,-38.827 z"
id="path816"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g818">
<path
d="m -1.8,142.001 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 55.2,3.4 85.6,30.2 0,0 -34.901,-24.775 -87.2,-29.2 z"
id="path820"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g822">
<path
d="m -11.8,146.001 c 0,0 -0.2,-1.8 1.6,-1 1.8,0.8 26.4,4.2 50,36.6 0,0 -35.6,-36.8 -51.6,-35.6 z"
id="path824"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g826">
<path
d="m 49.503,148.962 c 0,0 -0.565,-1.721 1.361,-1.307 1.926,0.413 36.996,2.349 91.117,33.443 0,0 -77.664,-34.394 -92.478,-32.136 z"
id="path828"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g830">
<path
d="m 57.903,146.562 c 0,0 -0.565,-1.721 1.361,-1.307 1.926,0.413 36.996,2.349 91.117,33.443 0,0 -77.064,-34.794 -92.478,-32.136 z"
id="path832"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#000000;stroke-width:0.1"
id="g834">
<path
d="m 67.503,141.562 c 0,0 -0.565,-1.721 1.361,-1.307 1.926,0.413 44.996,4.749 134.718,39.043 0,0 -120.665,-40.394 -136.079,-37.736 z"
id="path836"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g838">
<path
d="m -43.8,148.401 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path840"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g842">
<path
d="m -13,162.401 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path844"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g846">
<path
d="m -21.8,162.001 c 0,0 5.2,-0.4 4,1.2 -1.2,1.6 -3.6,0.8 -3.6,0.8 l -0.4,-2 z"
id="path848"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g850">
<path
d="m -117.169,150.182 c 0,0 5.045,1.323 3.387,2.442 -1.657,1.12 -3.664,-0.422 -3.664,-0.422 l 0.277,-2.02 z"
id="path852"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g854">
<path
d="m -115.169,140.582 c 0,0 5.045,1.323 3.387,2.442 -1.657,1.12 -3.664,-0.422 -3.664,-0.422 l 0.277,-2.02 z"
id="path856"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
id="g858">
<path
d="m -122.369,136.182 c 0,0 5.045,1.323 3.387,2.442 -1.657,1.12 -3.664,-0.422 -3.664,-0.422 l 0.277,-2.02 z"
id="path860"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g862">
<path
d="m -42.6,211.201 c 0,0 -1.6,0 -5.6,2 -2,0 -13.2,3.6 -18.8,13.6 0,0 12.4,-9.6 24.4,-15.6 z"
id="path864"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g866">
<path
d="m 45.116,303.847 c 0.141,0.258 0.196,0.678 0.488,0.695 0.658,0.04 1.891,0.341 1.766,-0.295 -0.848,-4.306 -1.722,-9.243 -5.855,-11.05 -0.639,-0.279 -2.081,0.134 -2.155,1.018 -0.127,1.524 -0.244,2.873 0.065,4.339 0.3,1.421 2.458,1.431 3.375,0.047 0.936,1.672 1.368,3.515 2.316,5.246 z"
id="path868"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g870">
<path
d="m 34.038,308.581 c 0.748,1.413 0.621,3.272 2.036,3.835 0.74,0.294 2.59,-0.681 2.172,-1.755 -0.802,-2.061 -1.19,-4.3 -2.579,-6.111 -0.2,-0.262 0.04,-0.795 -0.12,-1.123 -0.594,-1.22 -1.739,-1.955 -3.147,-1.626 -1.115,2.203 0.033,4.332 1.555,6.041 0.136,0.152 -0.03,0.528 0.083,0.739 z"
id="path872"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g874">
<path
d="m -5.564,303.391 c -0.108,-0.377 -0.146,-0.84 0.019,-1.161 0.531,-1.033 1.324,-2.155 0.987,-3.177 -0.348,-1.056 -1.464,-0.874 -2.114,-0.305 -1.135,0.994 -1.184,2.82 -1.875,4.179 -0.196,0.386 -0.145,0.959 -0.586,1.35 -0.474,0.421 -0.914,1.945 -0.818,2.516 0.053,0.313 -0.13,10.221 0.092,9.958 0.619,-0.733 3.669,-10.467 3.738,-11.359 0.057,-0.731 0.789,-1.196 0.557,-2.001 z"
id="path876"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g878">
<path
d="m -31.202,296.599 c 2.634,-2.499 5.424,-5.46 4.982,-9.172 -0.116,-0.976 -1.891,-0.449 -2.078,0.397 -0.802,3.625 -2.841,6.286 -5.409,8.678 -2.196,2.047 -4.058,8.391 -4.293,8.899 3.697,-5.256 5.954,-8.002 6.798,-8.802 z"
id="path880"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g882">
<path
d="m -44.776,290.635 c 0.523,-0.37 0.221,-0.861 0.438,-1.193 0.953,-1.458 2.254,-2.704 2.272,-4.442 0.003,-0.277 -0.375,-0.586 -0.71,-0.362 -0.277,0.184 -0.619,0.314 -0.727,0.444 -2.03,2.449 -3.43,5.12 -4.873,7.932 -0.183,0.357 -1.327,4.848 -1.014,4.959 0.239,0.085 1.959,-4.096 2.169,-4.21 1.263,-0.686 1.275,-2.301 2.445,-3.128 z"
id="path884"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g886">
<path
d="m -28.043,310.179 c 0.444,-0.869 2.02,-2.071 1.907,-2.96 -0.118,-0.928 0.35,-2.371 -0.562,-1.683 -1.257,0.948 -4.706,2.297 -4.976,8.105 -0.026,0.571 2.948,-2.122 3.631,-3.462 z"
id="path888"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g890">
<path
d="m -13.6,293.001 c 0.4,-0.668 1.108,-0.195 1.567,-0.458 0.648,-0.372 1.259,-0.93 1.551,-1.579 0.97,-2.149 2.739,-3.969 2.882,-6.363 -1.491,-1.405 -2.17,0.635 -2.8,1.6 -1.323,-1.647 -2.322,0.227 -3.622,0.746 -0.07,0.028 -0.283,-0.319 -0.358,-0.292 -1.177,0.44 -1.857,1.521 -2.855,2.302 -0.171,0.134 -0.576,-0.046 -0.723,0.09 -0.652,0.603 -1.625,0.928 -1.905,1.61 -1.11,2.707 -4.25,4.802 -6.137,12.344 0.381,0.909 4.512,-6.642 4.999,-7.34 0.836,-1.196 0.954,1.661 2.23,0.995 0.051,-0.027 0.237,0.211 0.371,0.345 0.194,-0.28 0.412,-0.509 0.8,-0.4 0,-0.4 -0.134,-0.956 0.067,-1.115 1.237,-0.977 1.153,-2.045 1.933,-3.285 0.458,0.789 1.519,0.07 2,0.8 z"
id="path892"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g894">
<path
d="m 46.2,347.401 c 0,0 7.4,-20.4 3,-31.6 0,0 11.4,21.6 6.8,32.8 0,0 -0.4,-10.4 -4.4,-15.4 0,0 -4,12.8 -5.4,14.2 z"
id="path896"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g898">
<path
d="m 31.4,344.801 c 0,0 5.4,-8.8 -2.6,-27.2 0,0 -0.8,20.4 -7.6,31.4 0,0 14.2,-20.2 10.2,-4.2 z"
id="path900"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g902">
<path
d="m 21.4,342.801 c 0,0 -0.2,-20 0.2,-23 0,0 -3.8,16.6 -14,26.2 0,0 14.4,-12 13.8,-3.2 z"
id="path904"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g906">
<path
d="m 11.8,310.801 c 0,0 6,13.6 -4,32 0,0 6.4,-12.2 1.6,-19.2 0,0 2.6,-3.4 2.4,-12.8 z"
id="path908"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g910">
<path
d="m -7.4,342.401 c 0,0 -1,-15.6 0.8,-17.8 0,0 0.2,-6.4 -0.2,-7.4 0,0 4,-6.2 4.2,1.2 0,0 1.4,7.8 4.2,12.4 0,0 3.6,5.4 3.4,11.8 0,0 -10,-30.2 -12.4,-0.2 z"
id="path912"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g914">
<path
d="m -11,314.801 c 0,0 -6.6,10.8 -8.4,29.8 0,0 -1.4,-6.2 2.4,-20.6 0,0 4.2,-15.4 6,-9.2 z"
id="path916"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g918">
<path
d="m -32.8,334.601 c 0,0 5,-5.4 6.4,-10.4 0,0 3.6,-15.8 -2.8,-7.2 0,0 0.2,8 -8,15.4 0,0 4.8,-2.4 4.4,2.2 z"
id="path920"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g922">
<path
d="m -38.6,329.601 c 0,0 3.4,-17.4 4.2,-18.2 0,0 1.8,-3.4 -1,-0.2 0,0 -8.8,19.2 -12.8,25.8 0,0 8,-9.2 9.6,-7.4 z"
id="path924"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g926">
<path
d="m -44.4,313.001 c 0,0 11.6,-22.4 -10.2,3.4 0,0 11,-9.8 10.2,-3.4 z"
id="path928"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g930">
<path
d="m -59.8,298.401 c 0,0 4.8,-18.8 7.4,-18.6 0,0 8.2,-9 1.6,1.6 0,0 -6,9.6 -5.4,19.4 0,0 -0.6,-9.6 -3.6,-2.4 z"
id="path932"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g934">
<path
d="m 270.5,287 c 0,0 -12,-10 -14.5,-13.5 0,0 13.5,18.5 13.5,25.5 0,0 2.5,-7.5 1,-12 z"
id="path936"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g938">
<path
d="m 276,265 c 0,0 -21,-15 -24.5,-22.5 0,0 26.5,29.5 26.5,34 0,0 0.5,-9 -2,-11.5 z"
id="path940"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g942">
<path
d="m 293,111 c 0,0 -12,-8 -13.5,-6 0,0 10.5,6.5 13,15 0,0 -1.5,-9 0.5,-9 z"
id="path944"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#cccccc"
id="g946">
<path
d="m 301.5,191.5 -17.5,-12 c 0,0 19,17 19.5,21 l -2,-9 z"
id="path948"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#000000"
id="g950">
<path
d="m -89.25,169 22,4.75"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#000000"
id="g954">
<path
d="m -39,331 c 0,0 -0.5,-3.5 -9.5,7"
id="path956"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#000000"
id="g958">
<path
d="m -33.5,336 c 0,0 2,-6.5 -4.5,-2"
id="path960"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#000000"
id="g962">
<path
d="m 20.5,344.5 c 0,0 1.5,-11 -10,2"
id="path964"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>
<svg id="svg-root" width="100%" height="100%"
viewBox="0 0 480 360" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= Copyright 2008 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="DAS" author="CM" status="accepted"
version="$Revision: 1.11 $" testname="$RCSfile: animate-dom-01-f.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#InterfaceSVGAnimationElement">
<p>
This tests the return value required for the
SVGAnimationElement.getStartTime() method, as described in
section 19.5 DOM Interfaces.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
After the loading the document, some animations that have no
visible effect will run. The text "Test running..." will
appear in the bottom right corner until the test has
completed. (This takes 2.5s.)
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if all seven rectangles are green once the animations
have stopped running (i.e., 2.5s after the document has loaded.)
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-dom-01-f.svg,v $</title>
<defs>
<font-face
font-family="SVGFreeSansASCII"
unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<text x='30' y='30'>Testing SVGAnimationElement.getStartTime()</text>
<text x='340' y='340' display='none'>Test running...
<set attributeName='display' to='inline' begin='0s' dur='2.5s'/>
</text>
<g id='g' display='none'/>
<animate id='a1' attributeName='display' values='inline; inline'
calcMode='discrete' begin='1s' dur='1s'/>
<animate id='a2' attributeName='display' values='inline; inline'
calcMode='discrete' begin='1s' dur='1s' fill='freeze'/>
<animate id='a3' attributeName='display' values='inline; inline'
calcMode='discrete' begin='indefinite' dur='1s'/>
<animate id='a4' attributeName='display' values='inline; inline'
calcMode='discrete' begin='indefinite; 100s; g.click; 1s; indefinite' dur='1s'/>
<animate id='a5' attributeName='display' values='inline; inline'
calcMode='discrete' begin='100s; 1s' dur='1s'/>
<animate id='a6dep' attributeName='display' values='inline; inline'
calcMode='discrete' begin='5s' dur='1s'/>
<animate id='a6' attributeName='display' values='inline; inline'
calcMode='discrete' begin='a6dep.begin+2s' dur='1s'/>
<animate attributeName='display' values='inline; inline'
calcMode='discrete' begin='0.5s' dur='1s' onbegin='before()'/>
<animate attributeName='display' values='inline; inline'
calcMode='discrete' begin='1.5s' dur='1s' onbegin='during()'/>
<animate attributeName='display' values='inline; inline'
calcMode='discrete' begin='2.5s' dur='1s' onbegin='after()'/>
<g transform='translate(30,-10)'>
<rect id='r1' y='50' width='25' height='25'/>
<rect id='r2' y='80' width='25' height='25'/>
<rect id='r3' y='110' width='25' height='25'/>
<rect id='r4' y='140' width='25' height='25'/>
<rect id='r5' y='170' width='25' height='25'/>
<rect id='r6' y='200' width='25' height='25'/>
<rect id='r7' y='230' width='25' height='25'/>
<rect id='r8' y='260' width='25' height='25'/>
</g>
<g font-size='14' transform='translate(70,-15)'>
<text y='72'>Called before a lone interval starts</text>
<text y='102'>Called on an animation with no intervals</text>
<text y='132'>Called during an interval</text>
<text y='162'>Called after a lone interval ends, fill="remove"</text>
<text y='192'>Called after a lone interval ends, fill="freeze"</text>
<text y='222'>Called with multiple begin values</text>
<text y='252'>Called with multiple begin values including "indefinite"</text>
<text y='282'>Called with syncbase begin value</text>
</g>
<script><![CDATA[
var i, ids = 'a1 a2 a3 a4 a5 a6 r1 r2 r3 r4 r5 r6 r7 r8'.split(' ');
for (i in ids) {
this[ids[i]] = document.getElementById(ids[i]);
}
function before() {
try {
if (a1.getStartTime() == 1) {
r1.setAttributeNS(null, 'fill', 'lime');
}
} catch (e) {
r1.setAttributeNS(null, 'fill', 'red');
}
r2.setAttributeNS(null, 'fill', 'red');
try {
a3.getStartTime();
} catch (e) {
if (e.code == DOMException.INVALID_STATE_ERR) {
r2.setAttributeNS(null, 'fill', 'lime');
}
}
try {
if (a4.getStartTime() == 1) {
r6.setAttributeNS(null, 'fill', 'lime');
}
} catch (e) {
r6.setAttributeNS(null, 'fill', 'red');
}
try {
if (a5.getStartTime() == 1) {
r7.setAttributeNS(null, 'fill', 'lime');
}
} catch (e) {
r7.setAttributeNS(null, 'fill', 'red');
}
try {
if (a6.getStartTime() == 7) {
r8.setAttributeNS(null, 'fill', 'lime');
}
} catch (e) {
r8.setAttributeNS(null, 'fill', 'red');
}
}
function during() {
try {
if (a1.getStartTime() == 1) {
r3.setAttributeNS(null, 'fill', 'lime');
}
} catch (e) {
r3.setAttributeNS(null, 'fill', 'red');
}
}
function after() {
r4.setAttributeNS(null, 'fill', 'red');
try {
a1.getStartTime();
} catch (e) {
if (e.code == DOMException.INVALID_STATE_ERR) {
r4.setAttributeNS(null, 'fill', 'lime');
}
}
r5.setAttributeNS(null, 'fill', 'red');
try {
a2.getStartTime();
} catch (e) {
if (e.code == DOMException.INVALID_STATE_ERR) {
r5.setAttributeNS(null, 'fill', 'lime');
}
}
}
]]></script>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none"
fill="black">$Revision: 1.11 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000"/>
<!-- comment out this watermark once the test is approved --><!--
<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg id="svg-root" width="100%" height="100%"
viewBox="0 0 480 360" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= Copyright 2008 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.3" reviewer="DAS" author="CM" status="accepted"
version="$Revision: 1.7 $" testname="$RCSfile: animate-dom-02-f.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#InterfaceSVGAnimationElement">
<p>
This tests that the methods on the ElementTimeControl
interface return the undefined value, since the IDL
operations are declared to return void.
</p>
<p>
After the loading the document, a rectangle is shown
indicating whether all four methods from the ElementTimeControl
interface returned undefined when invoked. The rectangle
is black if the test did not run, red if the test failed
and green if the test succeeded.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the rectangle is green.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-dom-02-f.svg,v $</title>
<defs>
<font-face
font-family="SVGFreeSansASCII"
unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<text x='10' y='30'>Testing ElementTimeControl method return values</text>
<rect id='r' x='10' y='50' width='50' height='50'/>
<animate id='a' attributeName='display' values='inline; inline' dur='10s'/>
<animate attributeName='display' values='inline; inline' onbegin='f()' dur='10s'/>
<script><![CDATA[
function f() {
var a = document.getElementById('a');
var b = false;
try {
b = typeof a.beginElement() == 'undefined'
&& typeof a.beginElementAt(100) == 'undefined'
&& typeof a.endElement() == 'undefined'
&& typeof a.endElementAt(200) == 'undefined';
} catch (e) {
}
document.getElementById('r').setAttribute('fill', b ? 'green' : 'red');
}
]]></script>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none"
fill="black">$Revision: 1.7 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000"/>
<!-- comment out this watermark once the test is approved --><!--
<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.8 $" testname="$RCSfile: animate-elem-02-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test 'additive' and 'accumulate' attributes.
</p>
<p>
The four pictures show the effect with the four possible combinations of
'additive' (either 'replace' or 'sum') and 'accumulate' (either 'none' or 'sum').
Because two animations are animating the height, the effects of 'additive' and
'accumulate' are sometimes different than when there is only a single animation.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>The test has passed if the four green rectangles each animate their height according to the following:</p>
<p>The leftmost rect:</p>
<ul>
<li>when the animation starts the height of the green rect should make it align with the bottommost red indicator line</li>
<li>after two seconds the height should jump to be 10% of the height of the gray rect it overlaps</li>
<li>after four seconds the height should jump to make the green rect align with the bottommost red indicator line</li>
<li>after six seconds the height should jump to its final position, 10% of the height of the gray rect</li>
</ul>
<p>The next to leftmost rect:</p>
<ul>
<li>when the animation starts the height of the green rect should be 110% of the height of the gray rect</li>
<li>after two seconds the height should jump to be 20% of the height of the gray rect</li>
<li>after four seconds the height should jump to be 110% of the height of the gray rect</li>
<li>after six seconds the height should jump to its final position, 20% of the height of the gray rect</li>
</ul>
<p>The next to rightmost rect:</p>
<ul>
<li>when the animation starts the height of the green rect should make it align with the bottommost red indicator line</li>
<li>after two seconds the height should jump to be 10% of the height of the gray rect</li>
<li>after four seconds the height should jump to be 110% of the height of the gray rect</li>
<li>after six seconds the height should jump to its final position, 20% of the height of the gray rect</li>
</ul>
<p>The rightmost rect:</p>
<ul>
<li>when the animation starts the height of the green rect should be 110% of the height of the gray rect</li>
<li>after two seconds the height should jump to be 20% of the height of the gray rect</li>
<li>after four seconds the height should jump to be 120% of the height of the gray rect</li>
<li>after six seconds the height should jump to its final position, 30% of the height of the gray rect</li>
</ul>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-02-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-family="Arial" font-size="30">
<g transform="translate(0, 0)">
<rect x="60" y="20" width="50" height="200" fill="#dfdfdf" stroke="#dfdfdf" stroke-width="4"/>
<line x1="40" x2="100" y1="220" y2="220" fill="none" stroke="#880000" stroke-width="4"/>
<line x1="40" x2="100" y1="120" y2="120" fill="none" stroke="#880000" stroke-width="4"/>
<rect x="60" y="20" width="50" height="20" fill="#0f5" stroke="#085" stroke-width="4">
<animate id="an5" attributeName="height" calcMode="discrete" additive="replace" accumulate="none" repeatCount="2" from="200" to="20" begin="0s" dur="4s" fill="freeze"/>
</rect>
<text x="30" y="285" fill="navy">anim.5</text>
</g>
<g transform="translate(110, 0)">
<rect x="60" y="20" width="50" height="200" fill="#dfdfdf" stroke="#dfdfdf" stroke-width="4"/>
<line x1="40" x2="100" y1="220" y2="220" fill="none" stroke="#880000" stroke-width="4"/>
<line x1="40" x2="100" y1="120" y2="120" fill="none" stroke="#880000" stroke-width="4"/>
<rect x="60" y="20" width="50" height="20" fill="#0f5" stroke="#085" stroke-width="4">
<animate id="an6" attributeName="height" calcMode="discrete" additive="sum" accumulate="none" repeatCount="2" from="200" to="20" begin="0s" dur="4s" fill="freeze"/>
</rect>
<text x="30" y="285" fill="navy">anim.6</text>
</g>
<g transform="translate(220, 0)">
<rect x="60" y="20" width="50" height="200" fill="#dfdfdf" stroke="#dfdfdf" stroke-width="4"/>
<line x1="40" x2="100" y1="220" y2="220" fill="none" stroke="#880000" stroke-width="4"/>
<line x1="40" x2="100" y1="120" y2="120" fill="none" stroke="#880000" stroke-width="4"/>
<rect x="60" y="20" width="50" height="20" fill="#0f5" stroke="#085" stroke-width="4">
<animate id="an7" attributeName="height" calcMode="discrete" additive="replace" accumulate="sum" repeatCount="2" from="200" to="20" begin="0s" dur="4s" fill="freeze"/>
</rect>
<text x="30" y="285" fill="navy">anim.7</text>
</g>
<g transform="translate(330, 0)">
<rect x="60" y="20" width="50" height="200" fill="#dfdfdf" stroke="#dfdfdf" stroke-width="4"/>
<line x1="40" x2="100" y1="220" y2="220" fill="none" stroke="#880000" stroke-width="4"/>
<line x1="40" x2="100" y1="120" y2="120" fill="none" stroke="#880000" stroke-width="4"/>
<rect x="60" y="20" width="50" height="20" fill="#0f5" stroke="#085" stroke-width="4">
<animate id="an8" attributeName="height" calcMode="discrete" additive="sum" accumulate="sum" repeatCount="2" from="200" to="20" begin="0s" dur="4s" fill="freeze"/>
</rect>
<text x="30" y="285" fill="navy">anim.8</text>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.8 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.8 $" testname="$RCSfile: animate-elem-03-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test inheritance of animated properties.
</p>
<p>
Three colored text strings appear. All three are inside of the same
'g' element. The 'g' element has its 'font-size' animated from 30 to
40, and its 'fill' from #00f (blue) to #070 (green).
</p>
<p>
The first colored 'text' element has the font-size set, so the
animation of the parent 'g' only affects the fill color. The second
has the fill set and font-size set, so no inherited values are
used. The font-size and fill color stay constant. The third colored
'text' element has neither of these properties specified and thus
inherits both animated values - the fill color changes and the text
grows in size.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test has passed if:
</p>
<ul>
<li>the topmost line shows the text "Sample 123" that animates its fill-color smoothly from blue to green over the course of six seconds</li>
<li>the middle line shows the text "Sample 123" in a larger font-size than the first line, in blue fill-color that doesn't animate</li>
<li>the bottommost line shows the text "Sample 123" in the same font-size as the topmost line, then smoothly animating the font-size
to be larger than the middle line over the course of six seconds. At the same time the fill-color is smoothly animated from blue to green</li>
<li>after six seconds the rendered result matches the reference image</li>
</ul>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-03-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
<font id="MyDecFont" horiz-adv-x="466">
<font-face font-family="MyDecFont"/>
<missing-glyph horiz-adv-x="233" d="M 50 0 L50 700 200 700 200 0 z"/>
<glyph unicode=" " glyph-name="space" horiz-adv-x="233"/>
<glyph unicode="1" glyph-name="one" horiz-adv-x="558" d="M458 716L100 534V428L357 552V97H241V380L140 328V0H458V716Z"/>
<glyph unicode="2" glyph-name="two" horiz-adv-x="585" d="M69 509Q82 523 102 541T147 575T203 603T268 614Q311 614 342 599T392 560T421 505T430 443Q430 420 423 398T405 352L343 201H444L492 309Q508 345 519 379T531 448Q531 504 511 552T454 635T369 691T262 711Q231 711 204 704T152 684T106 655T69 623V509ZM535 97H187L309 422Q316 441 315 457T306 483T287 500T265 506Q261 506 254 505T239 499T224 485T211 461L50 0H535V97Z"/>
<glyph unicode="3" glyph-name="three" horiz-adv-x="542" d="M58 553Q109 588 148 601T220 614Q255 614 282 604T328 575T356 535T366 488Q366 475 364 460T355 429T336 397T302 368Q311 363 325 353T352 326T376 286T386 232Q386 203 376 177T345 130T295 98T227 86Q179 86 134 104T50 153V45Q59 38 74 29T111 10T163 -5T231 -11Q296 -11 345 8T426 58T475 131T492 218Q492 251 486 276T469 320T446 354T421 378Q438 396 454 425T470 503Q470 546 454 584T406 650T332 695T233 711Q179 711 137 696T58 655V553ZM156 255Q156
229 173 212T217 194Q243 194 260 211T278 255Q278 281 261 298T217 316Q191 316 174 299T156 255ZM161 467Q161 444 177 428T216 412Q225 412 234 415T252 425T265 442T271 467Q271 491 256 506T216 522Q202 522 192 517T174 503T164 486T161 467Z"/>
<glyph unicode="S" glyph-name="S" horiz-adv-x="629" d="M523 658Q479 681 426 696T317 711Q251 711 200 690T113 634T59 551T40 452Q40 404 59 356T114 270T198 210T304 194Q310 195 319 197T336 204T351 219T357 246Q357 261 351 270T337 285T320 291T305 294Q251 300 220 319T172 363T151 411T146 454Q146 478 154 506T183 558T237 598T322 614Q375 614 426 598T523 548V658ZM96 42Q140 19 193 4T302 -11Q368 -11 419 10T506 66T560 149T579 248Q579 296 560 344T505 431T421 490T315 506Q309 505 300 503T282 496T268 480T262
454Q262 439 268 430T282 415T299 409T314 406Q368 399 399 380T447 336T468 288T473 246Q473 222 465 194T436 142T382 102T297 86Q244 86 193 102T96 152V42Z"/>
<glyph unicode="a" glyph-name="a" horiz-adv-x="578" d="M450 0H548V198Q548 288 522 344T458 433T375 477T292 489Q240 489 194 470T114 418T60 339T40 240Q40 180 63 134T122 55T202 6T291 -11Q311 -11 325 -9T352 -1V96Q341 89 331 86T305 83Q265 83 234 96T182 132T149 183T138 242Q138 275 150 303T183 351T232 383T294 395Q306 395 332 391T384 368T430 311T450 203V0ZM236 239Q236 215 253 198T294 181Q318 181 335 198T352 239Q352 263 335 280T294 297Q270 297 253 280T236 239Z"/>
<glyph unicode="m" glyph-name="m" horiz-adv-x="774" d="M40 0H138V231Q138 280 150 312T181 362T223 388T269 395Q294 395 314 388T349 370T374 346T392 318Q407 353 440 374T515 395Q531 395 553 390T596 368T631 319T646 231V0H744V231Q744 248 743 273T735 327T715 385T678 437T619 474T532 489Q504 489 482 484T443 470T412 451T390 431Q358 464 321 476T252 489Q222 489 185 481T116 445T62 367T40 231V0ZM242 0H542V246Q542 275 526 286T493 297Q473 297 459 283T444 246V94H340V246Q340 269 326 283T291 297Q275
297 259 286T242 246V0Z"/>
<glyph unicode="p" glyph-name="p" horiz-adv-x="552" d="M40 -184H138V192H267Q284 192 300 204T316 239Q316 259 303 272T267 286H40V-184ZM40 384H261Q297 384 325 372T373 340T403 294T414 238Q414 209 403 183T373 137T326 106T264 94H236V0H264Q318 0 363 18T442 69T493 144T512 238Q512 288 494 332T442 408T363 459T263 478H40V384Z"/>
<glyph unicode="l" glyph-name="l" horiz-adv-x="380" d="M340 662H40V0H340V94H138V568H242V192H340V662Z"/>
<glyph unicode="e" glyph-name="e" horiz-adv-x="530" d="M500 192V227Q500 296 480 346T428 427T354 474T271 489Q221 489 178 470T101 418T49 340T30 243Q30 204 43 161T87 83T171 24T303 0H482V94H298Q250 94 217 108T165 144T137 192T128 244Q128 276 139 303T171 351T218 383T275 395Q301 395 322 386T360 362T386 327T402 286H277Q253 286 240 272T226 239Q226 223 237 208T277 192H500Z"/>
</font>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-family="MyDecFont" fill="#00f" stroke="none">
<g id="AnimationTarget">
<text x="20" y="80" font-size="40">Sample 123</text>
<text x="20" y="155" font-size="60" fill="#00f">Sample 123</text>
<text x="20" y="250">Sample 123</text>
<animate attributeName="font-size" attributeType="CSS" begin="0s" dur="6s" fill="freeze" from="40" to="80"/>
<animate attributeName="fill" attributeType="CSS" begin="0s" dur="6s" fill="freeze" from="#00f" to="#070"/>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.8 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.7 $" testname="$RCSfile: animate-elem-04-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test different ways of defining a motion path.
</p>
<p>
An animation moves a triangle along a path. Reference rectangles, lines and text
are provided to help show what the correct behavior is.
</p>
<p>
This animation uses the 'from' and 'to' attributes to define the motion path.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test has passed if a triangle is animated smoothly along the path indicated by the black line, starting at the leftmost pink rectangle and stopping after 3 seconds on top of the rightmost pink rectangle.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-04-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-size="36">
<text x="48" y="48">Test a motion path</text>
<text x="48" y="95">'from'/'to' attribute.</text>
<path d="M90,258 L390,180" fill="none" stroke="black" stroke-width="6"/>
<rect x="60" y="198" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="90" y="300" text-anchor="middle">0 sec.</text>
<rect x="360" y="120" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="390" y="230" text-anchor="middle">3+ sec.</text>
<path d="M-30,0 L0,-60 L30,0 z" fill="blue" stroke="green" stroke-width="6">
<animateMotion from="90,258" to="390,180" begin="0s" dur="3s" fill="freeze"/>
</path>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.7 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.7 $" testname="$RCSfile: animate-elem-05-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test different ways of defining a motion path.
</p>
<p>
An animation moves a triangle along a path. Reference rectangles, lines and text
are provided to help show what the correct behavior is.
</p>
<p>
This animation uses the 'values' attribute to define the motion path, with a linear calcMode.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test has passed if a triangle is animated smoothly along the path indicated by the black line, and
it passes over the pink rectangles at the indicated times.
When the animation starts the triangle should be positioned on top of the leftmost pink rectangle, after
3 seconds it should reach the middle pink rectangle, and after 6 seconds it should be positioned on top
of the rightmost pink rectangle where it should stop.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-05-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-size="36">
<text x="48" y="48">Test a motion path</text>
<text x="48" y="95">'values' attribute.</text>
<path d="M90,258 L240,180 L390,180" fill="none" stroke="black" stroke-width="6"/>
<rect x="60" y="198" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="90" y="300" text-anchor="middle">0 sec.</text>
<rect x="210" y="120" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="240" y="222" text-anchor="middle">3+</text>
<rect x="360" y="120" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="390" y="222" text-anchor="middle">6+</text>
<path d="M-30,0 L0,-60 L30,0 z" fill="blue" stroke="green" stroke-width="6">
<animateMotion values="90,258;240,180;390,180" begin="0s" dur="6s" calcMode="linear" fill="freeze"/>
</path>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.7 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.8 $" testname="$RCSfile: animate-elem-06-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test different ways of defining a motion path.
</p>
<p>
An animation moves a triangle along a path. Reference rectangles, lines and text
are provided to help show what the correct behavior is.
</p>
<p>
This animation uses the 'path' attribute to define the motion path.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the triangle is animated along the black curve over the course of 6 seconds.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-06-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-size="36">
<text x="48" y="48">Test a motion path</text>
<text x="48" y="95">'path' attribute.</text>
<path d="M90,258 C90,258 216,120 390,198" fill="none" stroke="black" stroke-width="6"/>
<rect x="60" y="198" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="90" y="300" text-anchor="middle">0 sec.</text>
<rect x="360" y="138" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="390" y="240" text-anchor="middle">6+ sec.</text>
<path d="M-30,0 L0,-60 L30,0 z" fill="blue" stroke="green" stroke-width="6">
<animateMotion path="M90,258 C90,258 216,120 390,198" begin="0s" dur="6s" calcMode="linear" fill="freeze"/>
</path>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.8 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.7 $" testname="$RCSfile: animate-elem-07-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test different ways of defining a motion path.
</p>
<p>
An animation moves a triangle along a path. Reference rectangles, lines and text
are provided to help show what the correct behavior is.
</p>
<p>
This animation uses the 'mpath' sub-element to define the motion path.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the triangle is animated along the black curve over the course of 6 seconds.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-07-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-size="36">
<text x="48" y="48">Test a motion path</text>
<text x="48" y="95">'mpath' element.</text>
<path id="mpathRef" d="M90,258 C90,258 216,120 390,198" fill="none" stroke="black" stroke-width="6"/>
<rect x="60" y="198" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="90" y="300" text-anchor="middle">0 sec.</text>
<rect x="360" y="138" width="60" height="60" fill="#FFCCCC" stroke="black" stroke-width="6"/>
<text x="390" y="240" text-anchor="middle">6+ sec.</text>
<path d="M-30,0 L0,-60 L30,0 z" fill="blue" stroke="green" stroke-width="6">
<animateMotion begin="0s" dur="6s" calcMode="linear" fill="freeze">
<mpath xlink:href="#mpathRef"/>
</animateMotion>
</path>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.7 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.9 $" testname="$RCSfile: animate-elem-08-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test rotate='auto' and rotate='auto-reverse'.
</p>
<p>
Two animations have been defined that move a triangle along a path. The first animation specifies rotate='auto', which causes
the object to be rotated along the curve of the path. The second animation specifies rotate='auto-reverse', which causes the
object to be flipped and then rotated along the curve of the path.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if:
</p>
<ul>
<li>each of the triangles are animated along the respective black curves over the course of 6 seconds</li>
<li>the leftmost triangle points upwards and the rightmost triangle points downwards</li>
<li>the triangles are rotated during the animation so that they are always perpendicular to the tangential vector at the current position on the respective curve</li>
</ul>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-08-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<text font-size="14" text-anchor="middle" x="225" y="25">Test rotate='auto' and rotate='auto-reverse'</text>
<g font-size="12" text-anchor="middle">
<path d="M25,225 C25,175 125,150 175,200" fill="none" stroke="black" stroke-width="2"/>
<rect x="10" y="195" width="30" height="30" fill="#FFCCCC" stroke="black" stroke-width="4"/>
<text x="25" y="240">0 sec.</text>
<rect x="160" y="170" width="30" height="30" fill="#FFCCCC" stroke="black" stroke-width="4"/>
<text x="175" y="215">6+ sec.</text>
<path d="M-15,0 L0,-30 L15,0 z" fill="blue" stroke="green" stroke-width="2">
<animateMotion path="M25,225 C25,175 125,150 175,200" rotate="auto" begin="0s" dur="6s" calcMode="linear" fill="freeze"/>
</path>
<text x="100" y="260" stroke="none" font-size="14">rotate='auto'</text>
<path d="M275,225 C275,175 375,150 425,200" fill="none" stroke="black" stroke-width="2"/>
<rect x="260" y="195" width="30" height="30" fill="#FFCCCC" stroke="black" stroke-width="4"/>
<text x="275" y="240">0 sec.</text>
<rect x="410" y="170" width="30" height="30" fill="#FFCCCC" stroke="black" stroke-width="4"/>
<text x="425" y="215">6+ sec.</text>
<path d="M-15,0 L0,-30 L15,0 z" fill="blue" stroke="green" stroke-width="2">
<animateMotion path="M275,225 C275,175 375,150 425,200" rotate="auto-reverse" begin="0s" dur="6s" calcMode="linear" fill="freeze"/>
</path>
<text x="350" y="260" stroke="none" font-size="14">rotate='auto-reverse'</text>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.9 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.6 $" testname="$RCSfile: animate-elem-09-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test possible values for 'calcMode="discrete"'.
</p>
<p>
Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct behavior is.
The black text and ruler lines help show the sizes and movement of the rectangles over time.
</p>
<p>
The discrete animations should show stair-stepping animations, with quantum-level jumps every two seconds in these tests. The linear
animations change constantly with each keyframe to keyframe section, with the result that the change is faster when there is a larger
change within a given amount of time. The paced animations change constantly over the entire animation, regardless of the values at
particular keyframes. For calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the
last jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the middle.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the two orange rects are animated so that the bottom part of each rectangle is at the position
indicated by the ruler lines at the particular time noted next to each ruler line.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-09-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g xml:space="preserve" font-family="Arial" font-size="30">
<g transform="translate(20,50)">
<text x="0" y="203">0-2 sec.</text>
<text x="0" y="170">2-4 sec. </text>
<text x="0" y="114">4-6 sec. </text>
<text x="3" y="3">6+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="167" x2="170" y2="167"/>
<line x1="120" y1="111" x2="170" y2="111"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="210" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="height" calcMode="discrete" values="210;177;121;10" begin="0s" dur="8s" fill="freeze"/>
</rect>
</g>
<g transform="translate(250,50)">
<text x="0" y="203">0-2 sec.</text>
<text x="0" y="170">2-4 sec. </text>
<text x="0" y="114">4-6 sec. </text>
<text x="3" y="3">6+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="167" x2="170" y2="167"/>
<line x1="120" y1="111" x2="170" y2="111"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="10" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animateMotion calcMode="discrete" values="0,200; 0,167; 0,111; 0,0" begin="0s" dur="8s" fill="freeze"/>
</rect>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.6 $" testname="$RCSfile: animate-elem-10-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test possible values for 'calcMode="linear"'.
</p>
<p>
Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct behavior is.
The black text and ruler lines help show the sizes and movement of the rectangles over time.
</p>
<p>
The linear animations change constantly with each keyframe to keyframe section, with the result that the change is faster when there is a larger
change within a given amount of time.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the two orange rects are animated so that the bottom part of each rectangle is at the position
indicated by the ruler lines at the particular time noted next to each ruler line. Between two noted times the
bottom part of each rect must be between the two corresponding ruler lines.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-10-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-family="Arial" font-size="30">
<g transform="translate(20,50)">
<text x="0" y="203">at 0 sec.</text>
<text x="0" y="170">at 3 sec. </text>
<text x="0" y="114">at 6 sec. </text>
<text x="3" y="3">9+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="167" x2="170" y2="167"/>
<line x1="120" y1="111" x2="170" y2="111"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="210" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<!-- Should use default of calcMode="linear" -->
<animate attributeName="height" values="210;177;121;10" begin="0s" dur="9s" fill="freeze"/>
</rect>
</g>
<g transform="translate(250,50)">
<text x="0" y="203">at 0 sec.</text>
<text x="0" y="170">at 3 sec. </text>
<text x="0" y="114">at 6 sec. </text>
<text x="3" y="3">9+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="167" x2="170" y2="167"/>
<line x1="120" y1="111" x2="170" y2="111"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="10" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animateMotion calcMode="linear" values="0,200; 0,167; 0,111; 0,0" begin="0s" dur="9s" fill="freeze"/>
</rect>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.6 $" testname="$RCSfile: animate-elem-11-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test possible values for 'calcMode="paced"'.
</p>
<p>
Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct behavior is.
The black text and ruler lines help show the sizes and movement of the rectangles over time.
</p>
<p>
The paced animations change constantly over the entire animation, regardless of the values at
particular keyframes.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the two orange rects are animated so that the bottom part of each rectangle is at the position indicated by the ruler lines at the particular time noted next to each ruler line. Between two noted times the bottom part of each rect must be between the two corresponding ruler lines.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-11-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-family="Arial" font-size="30">
<g transform="translate(20,50)">
<text x="0" y="203">at 0 sec.</text>
<text x="0" y="136.33">at 3 sec. </text>
<text x="0" y="69.66">at 6 sec. </text>
<text x="3" y="3">9+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="133.33" x2="170" y2="133.33"/>
<line x1="120" y1="66.66" x2="170" y2="66.66"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="210" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="height" calcMode="paced" values="210;177;121;10" begin="0s" dur="9s" fill="freeze"/>
</rect>
</g>
<g transform="translate(250,50)">
<text x="0" y="203">at 0 sec.</text>
<text x="0" y="136.33">at 3 sec. </text>
<text x="0" y="69.66">at 6 sec. </text>
<text x="3" y="3">9+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="133.33" x2="170" y2="133.33"/>
<line x1="120" y1="66.66" x2="170" y2="66.66"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="10" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animateMotion calcMode="paced" values="0,200; 0,167; 0,111; 0,0" begin="0s" dur="9s" fill="freeze"/>
</rect>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.6 $" testname="$RCSfile: animate-elem-12-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test possible values for 'calcMode="spline"'.
</p>
<p>
Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct behavior is.
The black text and ruler lines help show the sizes and movement of the rectangles over time.
</p>
<p>
For calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the
last jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the middle.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The test is passed if the two orange rects are animated so that the bottom part of each rectangle is at the position indicated by the ruler lines at the particular time noted next to each ruler line. Between two noted times the bottom part of each rect must be between the two corresponding ruler lines. The bottom of the left rectangles and the right rectangle must always be the same throughout the animation.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-12-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-family="Arial" font-size="30">
<g transform="translate(20,50)">
<text x="0" y="203">at 0 sec.</text>
<text x="0" y="170">at 3 sec. </text>
<text x="0" y="114">at 6 sec. </text>
<text x="3" y="3">9+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="167" x2="170" y2="167"/>
<line x1="120" y1="111" x2="170" y2="111"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="210" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="height" calcMode="spline" keySplines="0,0,1,1;0,0,1,1;.75,0,0,.75" values="210;177;121;10" begin="0s" dur="9s" fill="freeze"/>
</rect>
</g>
<g transform="translate(250,50)">
<text x="0" y="203">at 0 sec.</text>
<text x="0" y="170">at 3 sec. </text>
<text x="0" y="114">at 6 sec. </text>
<text x="3" y="3">9+ sec. </text>
<g stroke="#800" stroke-width="4">
<line x1="120" y1="200" x2="170" y2="200"/>
<line x1="120" y1="167" x2="170" y2="167"/>
<line x1="120" y1="111" x2="170" y2="111"/>
<line x1="120" y1="0" x2="170" y2="0"/>
</g>
<rect x="140" y="-10" width="60" height="10" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animateMotion calcMode="spline" keySplines="0,0,1,1;0,0,1,1;.75,0,0,.75" values="0,200; 0,167; 0,111; 0,0" begin="0s" dur="9s" fill="freeze"/>
</rect>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
<svg version="1.1" baseProfile="tiny" id="svg-root"
width="100%" height="100%" viewBox="0 0 480 360"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--======================================================================-->
<!--= SVG 1.1 2nd Edition Test Case =-->
<!--======================================================================-->
<!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
<!--= Institute of Technology, European Research Consortium for =-->
<!--= Informatics and Mathematics (ERCIM), Keio University). =-->
<!--= All Rights Reserved. =-->
<!--= See http://www.w3.org/Consortium/Legal/. =-->
<!--======================================================================-->
<d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
template-version="1.4" reviewer="SVGWG" author="Jon Ferraiolo" status="accepted"
version="$Revision: 1.7 $" testname="$RCSfile: animate-elem-13-t.svg,v $">
<d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/animate.html#Animation">
<p>
Test 'from', 'by', 'to' and 'values'.
</p>
<p>
Six animations have been defined. All six animations define the same simultaneous behavior, but use different combinations of
attributes 'from', 'by', 'to' and 'values'. In all cases, from time 2 seconds to time 5 seconds, the rectangle should change
from a width of 30 to a width of 300.
</p>
<p>
The text on each line shows the attributes that were used for that particular animation.
</p>
</d:testDescription>
<d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
<p>
Run the test. No interaction required.
</p>
</d:operatorScript>
<d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
<p>
The six orange rectangles should simultaneously animate their widths so that their right edges line up with the ruler lines at the indicated time.
From time 0 - 2 seconds all rectangles should have their right edges lined up with the leftmost ruler line, and at time 2 seconds the animation should
start, changing the widths of all the rectangles from 30 to 300. At time 5 seconds the animation should stop and the rectangles should all line up with
the rightmost ruler line.
</p>
</d:passCriteria>
</d:SVGTestCase>
<title id="test-title">$RCSfile: animate-elem-13-t.svg,v $</title>
<defs>
<font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
<font-face-src>
<font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
</font-face-src>
</font-face>
</defs>
<g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
<g font-size="30">
<line x1="190" x2="190" y1="45" y2="300" stroke="#880000" stroke-width="4"/>
<line x1="460" x2="460" y1="45" y2="300" stroke="#880000" stroke-width="4"/>
<text x="156" y="32">0-2 sec.</text>
<text x="370" y="32">5+ sec.</text>
<g>
<rect x="160" y="60" width="30" height="30" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="width" from="30" to="300" begin="2s" dur="3s" fill="freeze"/>
</rect>
<text x="20" y="85">from to</text>
</g>
<g>
<rect x="160" y="100" width="30" height="30" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="width" from="30" by="270" begin="2s" dur="3s" fill="freeze"/>
</rect>
<text x="20" y="125">from by</text>
</g>
<g>
<rect x="160" y="140" width="30" height="30" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="width" by="270" begin="2s" dur="3s" fill="freeze"/>
</rect>
<text x="20" y="165">by</text>
</g>
<g>
<rect x="160" y="180" width="30" height="30" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="width" to="300" begin="2s" dur="3s" fill="freeze"/>
</rect>
<text x="20" y="205">to</text>
</g>
<g>
<rect x="160" y="220" width="30" height="30" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="width" values="30;300" begin="2s" dur="3s" fill="freeze"/>
</rect>
<text x="20" y="245">values</text>
</g>
<g>
<rect x="160" y="260" width="30" height="30" fill="#FFAA44" stroke="#FF00FF" stroke-width="4">
<animate attributeName="width" values="30;120;210;300" begin="2s" dur="3s" fill="freeze"/>
</rect>
<text x="20" y="285">values</text>
</g>
</g>
</g>
<g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
<text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.7 $</text>
</g>
<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
<!-- comment out this watermark once the test is approved -->
<!--<g id="draft-watermark">
<rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
<text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
</g>-->
</svg>
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment