Caching, admin page, username search, flexible results

- New design for platform
- Page change based on results
- Illustrations added
- Search by email and username
- Better security (sensitive files moved to folder with .htaccess)
- Admin page for setup (with password)
- Customizable functions
- Caching of results
- Pre-caching script for caching multiple users
This commit is contained in:
aunefyren 2021-03-08 19:45:06 +01:00
parent 0c156ad7ad
commit bdef6c017b
37 changed files with 3263 additions and 278 deletions

8
.htaccess Normal file
View file

@ -0,0 +1,8 @@
RewriteEngine on
RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [NC,L,R]
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]

View file

@ -1,50 +1,21 @@
# Plex Wrapped
A website and API for collecting Plex user stats within a set timeframe using Tautulli.
## Warning
I made this for fun, and I am currently working on perfecting it. All feedback and tips are welcome.
## Introduction
A website and API for collecting Plex user stats within a set timeframe using [Tautulli](https://github.com/Tautulli/Tautulli). Yes, you need Tautulli to have been running beforehand and currently for this to work.
## Instructions
There are multiple settings you must configure! They are all located in <b>config.json</b>.
<br><br>
<b>Tautulli API key</b><br>
API key generated by Tautulli.
There are multiple settings you must configure! They will be stored in config/config.json, but can be configured easily at <b>you-domain-or-ip.com/admin</b>.
<b>Tautulli IP</b><br>
The IP address of the Tautulli server.
<b>Tautulli Port</b><br>
The port for the Tautulli server. Can be left as "".
PHP will have issues with this API based on the results you want. If you have a large time frame for your wrapped period and there is a huge amount of Tautulli entries you can have multiple issues.
In your php.ini file you may have to change:
- max_execution_time=<b>enough seconds for the script to finish</b>
- memory_limit=<b>enough M for the script to handle JSON data</b>
- max_input_time=<b>enough seconds for the script to parse JSON data</b>
<b>SSL</b><br>
This is supposed to enable HTTPS support, but it does not function at this time. Leave as false.
The cache is stored at config/cache.json, but can be cleared using the admin menu.
<b>Tautulli Root</b><br>
If using reverse proxy with a set root, add it here. Do not add "/" before or after.
<b>Library ID Movies</b><br>
The ID of your movie library in Tautulli. You can find it in the URL when visiting the library on the Tautulli website.
<b>Library ID Shows</b><br>
The ID of your show library in Tautulli. You can find it in the URL when visiting the library on the Tautulli website.
<b>Wrapped Start</b><br>
The beginning of the wrapped time period. Written in Epoch. Conversion can be done here https://www.epochconverter.com/.
<b>Wrapped End</b><br>
The end of the wrapped time period. Written in Epoch. Conversion can be done here https://www.epochconverter.com/.
<b>Get_... Settings</b><br>
Disables or enables different methods in the API. Will probably break the website without reconfiguration.
<b>Tautulli Length</b><br>
The number of items in your Tautulli database. Needed so API knows amount of data to load.
<br>
You may need to give your PHP processing more memory, depending on how much data is in your Tautulli database.
If you visit <b>you-domain-or-ip.com/caching</b> you can do a pre-caching of a set of users. This is very useful if you want to prepare for a lot of traffic.
## Need help?
If you contact me I might have time to help you. Or maybe not. If not, many people on several forums (including /r/plex) might be able to assist you.
If you have any issues feel free to contact me. I am always trying to improve the project. If I can't, many people on several forums (including /r/plex) might be able to assist you.
<b>Goodybye.</b>

94
admin.html Normal file
View file

@ -0,0 +1,94 @@
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Plex Wrapped</title>
<!-- Bootstrap 4 CSS and custom CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/wrapped.css" />
<link rel="shortcut icon" href="assets/img/favicons/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="./admin.js"></script>
<script src="./get_config.js"></script>
<script src="./set_config.js"></script>
</head>
<body>
<div class="content" id="login_content" style="">
<div class="boks">
<div class="boks3" id="search_input" style="padding: 0 !important;">
<div class="boks2" style="float: none !important; display: block; padding: 0; margin-top: 0em;">
<img src="assets/img/gift.svg" onclick="window.location.href = './';" style="width: 15em; cursor: pointer;">
</div>
<div class="boks2" style="float: none !important; display: block; margin-top: 0em; padding-top: 0;">
<div class="status" style="max-width: 100%;">
<h1>Wrapped Setup</h1>
<div id="setup">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content" id="search_results">
</div>
<script type="text/javascript">
var first_time = false;
var tautulli_apikey = "";
var tautulli_ip = "";
var tautulli_port = "";
var tautulli_length = 50000;
var tautulli_root = "";
var ssl = false;
var password = "";
var library_id_movies = "";
var library_id_shows = "";
var wrapped_start = new Date(0);
wrapped_start.setUTCSeconds(1609455600);
var wrapped_end = new Date(0);
wrapped_end.setUTCSeconds(1640991540);
var get_user_movie_stats = true;
var get_user_show_stats = true;
var get_user_show_buddy = true;
var get_year_stats = true;
var use_cache = true;
var cache_age_limit = 7;
var current_password = "";
$(document).ready(function() {
get_config_initial();
});
</script>
</body>
</html>

311
admin.js Normal file
View file

@ -0,0 +1,311 @@
function time_days(seconds_input) {
var seconds = Number(seconds_input);
var days = seconds * 1.15741E-5;
var hours = String(days).split(".");
var hours_str = "0." + hours[1];
var hours_int = Number(hours_str) * 24.0;
var minutes = String(hours_int).split(".");
var minutes_str = "0." + minutes[1];
var minutes_int = Number(minutes_str) * 60.0;
var days_form = String(days).split(".");
var hours_form = String(hours_int).split(".");
var minutes_form = String(minutes_int).split(".");
var final = [Number(days_form[0]), Number(hours_form[0]), Number(minutes_form[0])];
return final;
}
function time_hours(seconds_input) {
var seconds = Number(seconds_input);
var hours_int = Number(seconds) * 0.0002777778;
var minutes = String(hours_int).split(".");
var minutes_str = "0." + minutes[1];
var minutes_int = Number(minutes_str) * 60.0;
var hours_form = String(hours_int).split(".");
var minutes_form = String(minutes_int).split(".");
var final = [Number(hours_form[0]), Number(minutes_form[0])];
return final;
}
function makeRequest (method, url, data) {
return new Promise(function (resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.onload = function () {
if (this.status >= 200 && this.status < 300) {
resolve(xhr.response);
} else {
reject({
status: this.status,
statusText: xhr.statusText
});
}
};
xhr.onerror = function () {
reject({
status: this.status,
statusText: xhr.statusText
});
};
if(method=="POST" && data){
xhr.send(data);
}else{
xhr.send();
}
});
}
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
function login_menu() {
topFunction();
var html = '<form id="password_login_form" onsubmit="get_config();return false">'
html += '<div class="form-group">';
html += '<label for="password" title="The password chosen during first-time setup.">Password</label>';
html += '<input type="password" class="form-control" id="password" value="" autocomplete="off" required />';
html += '</div>';
html += '<div class="form-group">';
html += '<input type="submit" class="form-control btn" id="password_button" value="Log in" required />';
html += '</div>';
html += '</form>';
document.getElementById("setup").innerHTML = html;
}
function set_password(back) {
topFunction();
var html = '<form id="password_form" onsubmit="set_tautulli(false);return false">'
html += '<div class="form-group">';
html += '<label for="password" title="The password needed to change the config-file remotely.">Set an admin password</label>';
html += '<input type="password" class="form-control" id="password" value="' + password + '" autocomplete="off" required />';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="password_2" title="The password needed to change the config-file remotely.">Repeat the password</label>';
html += '<input type="password" class="form-control" id="password_2" value="' + password + '" autocomplete="off" required />';
html += '</div>';
html += '<div class="form-group">';
html += '<input type="submit" class="form-control btn" id="password_button" value="Save" required />';
html += '</div>';
html += '</form>';
document.getElementById("setup").innerHTML = html;
}
function set_tautulli(back) {
topFunction();
if(!back) {
if(document.getElementById('password').value == document.getElementById('password_2').value) {
password = document.getElementById('password').value;
} else {
alert("The passwords must match.");
return false;
}
}
var html = '<div class="form-group">';
html += '<button class="form-control btn" onclick="set_password(true)">Set admin password</button>';
html += '</div>';
html += '<form id="tautulli_form" onsubmit="set_tautulli_details(false);return false">'
html += '<div class="form-group">';
html += '<label for="tautulli_apikey" title="The API key needed to interact with Tautulli. Commonly found at Tautulli->Settings->Web Interface->API Key.">Tautulli API key</label>';
html += '<input type="text" class="form-control" id="tautulli_apikey" value="' + tautulli_apikey + '" autocomplete="off" required /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="tautulli_ip" title="The IP address or domain that connects to Tautulli. No subfolders as this is another setting, but subdomains can be defined.">IP or domain for Tautulli connection</label>';
html += '<input type="text" class="form-control" id="tautulli_ip" value="' + tautulli_ip + '" required /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="tautulli_port" title="The port Tautulli uses for connections. Typically empty if a domain is used.">Port for Tautulli (optional)</label>';
html += '<input type="text" class="form-control" id="tautulli_port" value="' + tautulli_port + '" /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="tautulli_length" title="The max amount of items Tautulli responds with. Typically doesn\'t need to be changed, but with server-wide stats it could limit results if the amount of items needed are extreme.">Tautlli item length</label>';
html += '<input type="number" class="form-control" id="tautulli_length" value="' + tautulli_length + '" autocomplete="off" required /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="tautulli_root" title="Subfolder for Tautulli, no slashes needed at the beginning or end. It is the folder accessed after the main IP/domain. For example: tautulli.com/subfolder.">Root for Tautulli (optional)</label>';
html += '<input type="text" class="form-control" id="tautulli_root" value="' + tautulli_root + '" autocomplete="off" /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="ssl" title="Enable if your connection uses HTTPS.">Use SSL (optional)</label>';
html += '<input type="checkbox" class="form-control" id="ssl" ';
if(ssl) {
html += 'checked="' + ssl + '" ';
}
html += '/><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="library_id_movies" title="The ID for your chosen movie library in Tautulli. Can be found by going to Tautulli->Libraries->Your library. The ID is the url as section_id.">ID for movie-library in Tautulli</label>';
html += '<input type="number" class="form-control" id="library_id_movies" value="' + library_id_movies + '" autocomplete="off" required /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="library_id_shows" title="The ID for your chosen show library in Tautulli. Can be found by going to Tautulli->Libraries->Your library. The ID is the url as section_id.">ID for show-library in Tautulli</label>';
html += '<input type="number" class="form-control" id="library_id_shows" value="' + library_id_shows + '" autocomplete="off" required /><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<input type="submit" class="form-control btn" id="form_button" value="Save" required />';
html += '</div>';
html += '</form>';
document.getElementById("setup").innerHTML = html;
}
function set_tautulli_details(back) {
topFunction();
if(!back) {
tautulli_apikey = document.getElementById('tautulli_apikey').value;
tautulli_ip = document.getElementById('tautulli_ip').value;
tautulli_port = document.getElementById('tautulli_port').value;
tautulli_length = document.getElementById('tautulli_length').value;
tautulli_root = document.getElementById('tautulli_root').value;
ssl = document.getElementById('ssl').checked;
library_id_movies = document.getElementById('library_id_movies').value;
library_id_shows = document.getElementById('library_id_shows').value;
}
var html = '<div class="form-group">';
html += '<button class="form-control btn" onclick="set_tautulli(true, false)">Tautulli settings</button>';
html += '</div>';
html += '<form id="tautulli_details_form" onsubmit="set_tautulli_last(false);return false">'
var temp_date = wrapped_start.toLocaleDateString("en-GB", { // you can skip the first argument
year: "numeric",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
timezone: "Europe/London",
});
var temp_date = temp_date.split(',');
var temp_date_first = temp_date[0].split('/');
var temp_date_second = temp_date[1].split(':');
html += '<div class="form-group">';
html += '<label for="wrapped_start" title="The start of the period you want wrapped.">Start of wrapped period</label>';
html += '<input type="datetime-local" class="form-control" id="wrapped_start" value="' + temp_date_first[2].trim() + '-' + temp_date_first[1].trim() + '-' + temp_date_first[0].trim() + 'T' + temp_date_second[0].trim() + ':' + temp_date_second[1].trim() + '" required /><br>';
html += '</div>';
var temp_date = wrapped_end.toLocaleDateString("en-GB", { // you can skip the first argument
year: "numeric",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
timezone: "Europe/London",
});
var temp_date = temp_date.split(',');
var temp_date_first = temp_date[0].split('/');
var temp_date_second = temp_date[1].split(':');
html += '<div class="form-group">';
html += '<label for="wrapped_end" title="The end of your wrapped period. All data until this point is viable.">End of wrapped period<br>';
html += '<input type="datetime-local" class="form-control" id="wrapped_end" value="' + temp_date_first[2].trim() + '-' + temp_date_first[1].trim() + '-' + temp_date_first[0].trim() + 'T' + temp_date_second[0].trim() + ':' + temp_date_second[1].trim() + '" required /></label>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="get_user_movie_stats" title="Includes movie statistics in your wrapped period.">Get users movie statistics (optional)<br>';
html += '<input type="checkbox" class="form-control" id="get_user_movie_stats" ';
if(get_user_movie_stats) {
html += 'checked="' + get_user_movie_stats + '" ';
}
html += '/><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="get_user_show_stats" title="Includes show statistics in your wrapped period.">Get users show statistics (optional)<br>';
html += '<input type="checkbox" class="form-control" id="get_user_show_stats" ';
if(get_user_show_stats) {
html += 'checked="' + get_user_show_stats + '" ';
}
html += '/><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="get_user_show_buddy" title="Includes the users top show-buddy in your wrapped period. Requires show stats.">Get users show-buddy (optional)<br>';
html += '<input type="checkbox" class="form-control" id="get_user_show_buddy" ';
if(get_user_show_buddy) {
html += 'checked="' + get_user_show_buddy + '" ';
}
html += '/><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="get_year_stats" title="Includes server-wide statistics in your wrapped period.">Get server-wide statistics (optional)<br>';
html += '<input type="checkbox" class="form-control" id="get_year_stats" ';
if(get_year_stats) {
html += 'checked="' + get_year_stats + '" ';
}
html += '/><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="use_cache" title="Caches your results in cache.json for later use.">Cache results for later use (optional)<br>';
html += '<input type="checkbox" class="form-control" id="use_cache" ';
if(use_cache) {
html += 'checked="' + use_cache + '" ';
}
html += '/><br>';
html += '</div>';
html += '<div class="form-group">';
html += '<label for="cache_age_limit" title="How old the cache can be in days before it expires.">Amount of days cache is valid (optional)<br>';
html += '<input type="number" class="form-control" id="cache_age_limit" value="' + cache_age_limit + '" /></label>';
html += '</div>';
html += '<div class="form-group" title="Clear the cache to include the newest settings.">';
html += '<label for="clear_cache">Clear cache (optional)<br>';
html += '<input type="checkbox" class="form-control" id="clear_cache" checked /></label>';
html += '</div>';
html += '<div class="form-group">';
html += '<input type="submit" class="form-control btn" id="form_button" value="Finish" required />';
html += '</div>';
html += '</form>';
document.getElementById("setup").innerHTML = html;
}
function set_tautulli_last(back) {
if(!back) {
wrapped_start = new Date(document.getElementById('wrapped_start').value);
wrapped_end = new Date(document.getElementById('wrapped_end').value);
if(wrapped_end < wrapped_start) {
alert("The wrapped end period must be later than the wrapped start period.");
return;
}
get_user_movie_stats = document.getElementById('get_user_movie_stats').checked;
get_user_show_stats = document.getElementById('get_user_show_stats').checked;
get_user_show_buddy = document.getElementById('get_user_show_buddy').checked;
get_year_stats = document.getElementById('get_year_stats').checked;
use_cache = document.getElementById('use_cache').checked;
cache_age_limit = document.getElementById('cache_age_limit').value;
set_config();
}
}

24
api/get_config.php Normal file
View file

@ -0,0 +1,24 @@
<?php
$data = json_decode(file_get_contents("php://input"));
$config = json_decode(file_get_contents("../config/config.json"));
if(empty($data)) {
echo json_encode(array("error" => true, "message" => "No input provided."));
exit(0);
}
if(empty($config->password)) {
echo json_encode(array("error" => false, "message" => "No password set.", "password" => false, "data" => array()));
exit(0);
}
$password = htmlspecialchars($data->password);
if(password_verify($password, $config->password)) {
echo json_encode(array("error" => false, "message" => "Login successful.", "password" => true, "data" => $config));
exit(0);
} else {
echo json_encode(array("error" => true, "message" => "Password not accepted.", "password" => true, "data" => array()));
exit(0);
}
?>

17
api/get_functions.php Normal file
View file

@ -0,0 +1,17 @@
<?php
$data = json_decode(file_get_contents("php://input"));
$config = json_decode(file_get_contents("../config/config.json"));
if (empty($config)) {
echo json_encode(array("message" => "Config not configured.", "error" => true));
exit(0);
}
$functions = array("get_user_movie_stats" => $config->get_user_movie_stats,
"get_user_show_stats" => $config->get_user_show_stats,
"get_user_show_buddy" => $config->get_user_show_buddy,
"get_year_stats" => $config->get_year_stats
);
echo json_encode($functions);
exit(0);
?>

View file

@ -1,6 +1,18 @@
<?php
$data = json_decode(file_get_contents("php://input"));
$config = json_decode(file_get_contents("../config.json"));
$config = json_decode(file_get_contents("../config/config.json"));
$arrContextOptions= [
'ssl' => [
'verify_peer'=> false,
'verify_peer_name'=> false,
],
];
if (empty($config)) {
echo json_encode(array("message" => "Config not configured.", "error" => true));
exit(0);
}
// Libraries for movies and shows
$library_id_movies = $config->library_id_movies;
@ -10,19 +22,36 @@ $library_id_shows = $config->library_id_shows;
$connection = create_url();
//Declare given email
if($data){
$p_email = htmlspecialchars($data->p_email);
if(!empty($data)){
$p_identity = htmlspecialchars($data->p_identity);
} else if(isset($_GET["p_identity"])) {
$p_identity = htmlspecialchars($_GET["p_identity"]);
} else {
$p_email = htmlspecialchars($_GET["email"]);
echo json_encode(array("message" => "No input provided.", "error" => true));
exit(0);
}
// Get user ID
$id = tautulli_get_user($p_email);
$id = tautulli_get_user($p_identity);
if (!$id) {
echo json_encode(array("message" => "No user found with that email.", "error" => "true"));
echo json_encode(array("message" => "No user found with that email.", "error" => true));
exit(0);
}
// Use cache
if($config->use_cache) {
if($cache = check_cache()) {
$now = new DateTime('NOW');
$then = new DateTime($cache->date);
$diff = $now->diff($then);
if($diff->format('%D') < $config->cache_age_limit) {
echo json_encode($cache);
exit(0);
}
}
}
// Get user name
$name = tautulli_get_name($id);
if(!$name) {
@ -42,7 +71,7 @@ if($config->get_user_show_stats) {
$user_shows = array("error" => True, "message" => "Disabled in config.", "data" => array());
}
if($config->get_user_show_buddy && $config->get_user_show_stats) {
if($config->get_user_show_buddy && $config->get_user_show_stats && !empty($user_shows["data"])) {
$user_shows["data"] = $user_shows["data"] + array("show_buddy" => array("user" => tautulli_get_user_show_buddy($id, $user_shows["data"]["shows"]), "error" => False, "Message" => "Buddy is loaded."));
} else {
$user_shows["data"] = $user_shows["data"] + array("show_buddy" => array("message" => "Disabled in config.", "error" => True));
@ -54,8 +83,11 @@ if($config->get_year_stats) {
$year_stats = array("data" => array(), "message" => "Disabled in config.", "error" => True);
}
$now = new DateTime('NOW');
// Print results
echo json_encode(array( "error" => False,
$result = json_encode(array("error" => False,
"date" => $now->format('Y-m-d'),
"message" => "Data processed.",
"user" => array("name" => $name,
"id" => $id,
@ -65,6 +97,13 @@ echo json_encode(array( "error" => False,
"year_stats" => $year_stats,
));
if($config->use_cache) {
update_cache($result);
}
echo $result;
exit(0);
function create_url() {
global $config;
//creating url
@ -92,14 +131,20 @@ function create_url() {
return $base . $ip . $port . $root;
}
function tautulli_get_user($email) {
function tautulli_get_user($input) {
global $connection;
global $config;
global $arrContextOptions;
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_users";
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
for ($i = 0; $i < count($response->response->data); $i++) {
if ($response->response->data[$i]->email == $email) {
if ($response->response->data[$i]->email == $input || $response->response->data[$i]->username == $input) {
return $response->response->data[$i]->user_id;
}
}
@ -109,8 +154,15 @@ function tautulli_get_user($email) {
function tautulli_get_name($id) {
global $connection;
global $config;
global $arrContextOptions;
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_user_ips&user_id=" . $id;
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
$name = $response->response->data->data[0]->friendly_name;
if($name != "" && $name != Null) {
return $name;
@ -119,12 +171,63 @@ function tautulli_get_name($id) {
}
}
function check_cache() {
global $config;
global $id;
$cache = json_decode(file_get_contents("../config/cache.json"));
if(!empty($cache)) {
for($i = 0; $i < count($cache); $i++) {
if($cache[$i]->user->id == $id) {
return $cache[$i];
}
}
}
return False;
}
function update_cache($result) {
global $config;
$cache = json_decode(file_get_contents("../config/cache.json"));
$decode_result = json_decode($result);
$found = False;
if(!empty($cache)) {
for($i = 0; $i < count($cache); $i++) {
if($cache[$i]->user->id == $decode_result->user->id && !$found) {
$cache[$i] = $decode_result;
$found = True;
break;
}
}
} else {
$cache = array();
}
if(!$found) {
array_push($cache, $decode_result);
}
$save = json_encode($cache);
file_put_contents("../config/cache.json", $save);
return True;
}
function tautulli_get_user_movies($id) {
global $connection;
global $config;
global $library_id_movies;
global $arrContextOptions;
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_history&user_id=" . $id . "&section_id=" . $library_id_movies . "&order_column=date&order_dir=desc&include_activity=0&length=" . $config->tautulli_length . "";
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
$array = $response->response->data->data;
$movies = array();
$movies_percent_complete = array();
@ -205,8 +308,16 @@ function tautulli_get_user_shows($id) {
global $connection;
global $config;
global $library_id_shows;
global $arrContextOptions;
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_history&user_id=" . $id . "&section_id=" . $library_id_shows . "&order_column=date&order_dir=desc&include_activity=0&length=" . $config->tautulli_length . "";
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
$array = $response->response->data->data;
$shows = array();
@ -248,9 +359,20 @@ function tautulli_get_user_show_buddy($id, $shows) {
global $config;
global $library_id_shows;
global $name;
global $arrContextOptions;
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_history&section_id=" . $library_id_shows . "&order_column=date&include_activity=0&media_type=episode&order_dir=desc&length=" . $config->tautulli_length . "&search=" . urlencode($shows[0]["title"]);
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
$array = $response->response->data->data;
if(empty($array)) {
$array = array();
}
$top_show_users = array();
for ($i = 0; $i < count($array); $i++) {
@ -298,7 +420,7 @@ function tautulli_get_user_show_buddy($id, $shows) {
}
} else {
$buddy = array("user" => False, "duration" => 0, found => False, "watched_relative_to_you" => False);
$buddy = array("user" => False, "duration" => 0, "found" => False, "watched_relative_to_you" => False);
}
return $buddy;
@ -309,8 +431,16 @@ function tautulli_get_year_stats($id) {
global $config;
global $library_id_shows;
global $name;
global $arrContextOptions;
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_history&media_type=movie&include_activity=0&order_column=date&order_dir=desc&length=" . $config->tautulli_length;
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
$array = $response->response->data->data;
$users = array();
$movies = array();
@ -361,7 +491,13 @@ function tautulli_get_year_stats($id) {
}
$url = $connection . "/api/v2?apikey=" . $config->tautulli_apikey . "&cmd=get_history&media_type=episode&include_activity=0&order_column=date&order_dir=desc&length=" . $config->tautulli_length;
if($config->ssl) {
$response = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)));
} else {
$response = json_decode(file_get_contents($url));
}
$array = $response->response->data->data;
for ($i = 0; $i < count($array); $i++) {

56
api/set_config.php Normal file
View file

@ -0,0 +1,56 @@
<?php
$path = "../config/config.json";
$path2 = "../config/cache.json";
$data = json_decode(file_get_contents("php://input"));
$config = json_decode(file_get_contents($path));
if(!empty($data)) {
$config_data = $data->data;
} else {
echo json_encode(array("error" => true, "message" => "No input provided."));
exit(0);
}
$password = htmlspecialchars($data->password);
if(empty($config->password)) {
save_config();
exit(0);
}
if(password_verify($password, $config->password)) {
save_config();
exit(0);
} else {
echo json_encode(array("error" => true, "message" => "Password not accepted.", "password" => true));
exit(0);
}
function save_config() {
global $data;
global $config_data;
global $config;
global $path;
global $path2;
if(!empty($config_data->password)) {
$hash = password_hash($config_data->password, PASSWORD_DEFAULT);
$config_data->password = $hash;
} else {
$config_data->password = $config->password;
}
if(file_put_contents($path, json_encode($config_data))) {
if($data->clear_cache) {
file_put_contents($path2, "");
}
echo json_encode(array("error" => false, "message" => "Changes saved."));
exit(0);
} else {
echo json_encode(array("error" => true, "message" => "Changes were not saved."));
exit(0);
}
}
?>

View file

@ -4,29 +4,32 @@ body {
margin: auto;
font-family: 'Roboto', serif;
font-weight: normal;
background: #a2d1d0;
box-sizing: border-box;
}
h1{
font-size: 3em;
color: #f9a825;
color: white;
text-shadow: 1px 1px 2px #555;
line-height: 110%;
text-align: center;
padding: 0;
margin: 0;
text-overflow: clip;
overflow: hidden;
}
h2{
text-shadow: 1px 1px 2px #555;
font-size: 2em;
color: black;
color: white;
line-height: 110%;
text-align: center;
margin: 0;
font-weight: normal;
}
h3{
text-shadow: 1px 1px 2px #555;
color: white;
text-shadow: 1px 1px 2px #555;
line-height: 110%;
@ -37,17 +40,24 @@ h3{
}
h4{
font-size: 1.5em;
margin: auto;
text-align: center;
text-shadow: 0;
font-weight: normal;
color: white;
}
p{
font-size: 1em;
color: black;
text-shadow: 1px 1px 2px #555;
font-size: 1.25em;
color: #ffffff;
text-align: center;
}
img {
max-width: 100%;
}
.tittel {
padding-top: 10em;
width: 100%;
@ -60,14 +70,16 @@ p{
width: 100%;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.boks {
margin: auto;
height: 100%;
min-height: 50em;
width: 100%;
align-items: center;
text-align: center;
box-sizing: border-box;
}
.boks2 {
@ -75,18 +87,21 @@ p{
max-width: 100%;
float: left;
margin: auto;
margin-bottom: 2.5em;
margin-top: 2.5em;
position: relative;
vertical-align: top;
box-sizing: border-box;
padding: 2em;
display: inline-block;
}
.boks3 {
width: 60em;
width: 70em;
box-sizing: border-box;
max-width: 100%;
display: inline-block;
margin: auto;
position: relative;
display: inline-block;
vertical-align: top;
}
@ -143,16 +158,34 @@ p{
display: inline-block;
margin: auto;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.19);
background-color: #f2f2f2;
background-color: lightslategrey;
border-radius: 25px;
padding: 0.5em;
max-width: 25em;
width: 100%;
top: 0;
color: white;
font-size: 1.25em;
box-sizing: border-box;
max-width: 100%;
}
#search_get {
padding: 0.25em;
.stats-list {
max-height: 55em;
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: thin;
}
.status-title {
font-size: 1.25em;
padding: 0.5em;
}
.button {
padding: 0.5em;
margin: 0.5em;
font-family: 'Roboto', serif;
font-size: 1.25em;
background-color: #f9a825;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
align-self: center;
@ -184,15 +217,34 @@ p{
width: 90%;
margin: 0.5em;
text-align: center;
border-radius: 25px;
border: none;
height: 2em;
}
.item:hover {
background-color: white !important;
background-color: #54606d !important;
border-radius: 25px;
}
.item {
padding: 0.25em;
padding: 0.5em;
display: flex;
}
.gold {
background-color: #d4af37;
border-radius: 25px;
}
.silver {
background-color: #C0C0C0 ;
border-radius: 25px;
}
.bronze {
background-color: #cd7f32;
border-radius: 25px;
}
.list {
@ -214,8 +266,9 @@ p{
text-align: right;
margin: 0.1em;
display: inline-block;
width: 1em;
width: 10%;
vertical-align: top;
float: left;
}
.info {
@ -230,12 +283,16 @@ p{
text-align: right;
margin: 0.1em;
display: inline-block;
width: 8em;
width: 90%;
vertical: center;
text-overflow: ellipsis;
vertical-align: top;
}
.you {
text-decoration: underline;
}
.movie_name {
width: 90%;
text-align: right;
@ -263,3 +320,36 @@ p{
text-align: left;
padding: 0.5em;
}
form {
padding: 0;
}
.form-control {
font-size: 1em;
padding: 0.5em;
margin: auto;
width: 100%;
display: inline-block;
box-sizing: border-box;
text-align: center;
border-radius: 0.25em;
border: none;
}
.form-group {
display: inline-block;
margin: auto;
float: left;
padding: 1em;
width: 100%;
box-sizing: border-box;
}
.btn {
background-color: #ffbd55;
border: none;
}
input[type="checkbox" i] {
transform: scale(1.5);
}

BIN
assets/img/achievement.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

362
assets/img/awards.svg Normal file
View file

@ -0,0 +1,362 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 800 800" enable-background="new 0 0 800 800" xml:space="preserve">
<g id="BACKGROUND">
</g>
<g id="OBJECTS">
<g>
<g>
<defs>
<path id="SVGID_1_" d="M428.707,111.103c-84.626,10.007-76.422,116.148-103.71,175.902h-0.002 c-16,35.034-43.838,82.269-100.343,103.091c-54.846,20.21-88.465,34.566-110.005,51.091 c-96.817,74.291-9.267,316.289,156.143,218.43c106.378-62.938,109.623-88.418,196.411-44.01 c86.79,44.411,162.536,67.042,205.686-6c43.149-73.042,51.744-172.955-7.955-252.931c-59.697-79.974-95.56-30.979-117.59-95.565 c-12.222-35.828-16.741-70.058-31.261-97.5c-15.487-29.263-49.994-52.891-80.703-52.893 C433.128,110.716,430.905,110.843,428.707,111.103"/>
</defs>
<use xlink:href="#SVGID_1_" overflow="visible" fill="#CCE9FF"/>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<polygon clip-path="url(#SVGID_2_)" fill="#CCE9FF" points="-6.721,74.997 17.83,757.477 749.182,793.196 724.631,110.716 "/>
</g>
<path fill="#2B94F4" d="M300.483,295.148c-3.588,0-6.497-2.909-6.497-6.497V110.092c0-3.588,2.909-6.497,6.497-6.497h167.906 h55.114c3.588,0,6.497,2.909,6.497,6.497v178.559c0,3.588-2.909,6.497-6.497,6.497H300.483z"/>
<path fill="#CCE9FF" d="M503.634,278.782H320.352c0-5.523-4.477-10-10-10V129.961c5.523,0,10-4.477,10-10h183.283 c0,5.523,4.477,10,10,10v138.821C508.111,268.782,503.634,273.259,503.634,278.782z"/>
<path fill="#2B94F3" d="M451.074,207.562l-0.084,62.021l13.64-13.585l13.594,13.63l0.084-62.03L451.074,207.562z"/>
<polygon fill="#CCE9FF" points="476.709,224.94 476.654,265.825 464.631,253.769 452.575,265.786 452.631,224.907 454.258,224.91 454.208,261.854 464.634,251.463 475.026,261.889 475.075,224.938 "/>
<path fill="#C68F30" d="M439.497,200.01c-0.031,1.478-0.658,2.881-1.738,3.89c-0.395,0.369-0.783,0.747-1.163,1.133 c-0.218,0.222-0.434,0.446-0.646,0.674c-1.526,1.63-2.004,4.007-1.107,6.052c0.246,0.562,0.511,1.103,0.79,1.623 c0.785,1.459,0.786,3.197,0.127,4.717c-0.088,0.202-0.173,0.406-0.256,0.611c-0.993,2.447-0.128,5.258,2.081,6.706 c0.077,0.05,0.154,0.1,0.231,0.15c1.51,0.966,2.449,2.615,2.533,4.405c0.001,0.024,0.002,0.048,0.003,0.072 c0.129,2.612,2.097,4.766,4.683,5.16c0.104,0.016,0.208,0.031,0.312,0.046c1.765,0.249,3.298,1.355,4.099,2.948 c0.041,0.081,0.082,0.162,0.124,0.244c1.176,2.281,3.765,3.454,6.256,2.834c0.09-0.023,0.181-0.045,0.27-0.069 c1.725-0.448,3.567-0.025,4.918,1.138c0.08,0.069,0.161,0.138,0.242,0.206c2,1.682,4.914,1.744,6.963,0.121 c0.02-0.015,0.039-0.031,0.059-0.047c1.402-1.117,3.261-1.494,4.981-0.993c0.086,0.025,0.173,0.05,0.259,0.074 c2.545,0.712,5.235-0.489,6.421-2.851c0.088-0.175,0.174-0.35,0.257-0.526c0.726-1.524,2.061-2.684,3.707-3.06 c0.549-0.125,1.103-0.274,1.661-0.447c2.134-0.663,3.613-2.592,3.83-4.816c0.094-0.968,0.151-1.936,0.17-2.902 c0.03-1.511,0.673-2.95,1.779-3.98c0.707-0.658,1.391-1.347,2.049-2.063c1.513-1.646,1.963-4.034,1.033-6.066 c-0.243-0.531-0.502-1.043-0.775-1.536c-0.818-1.477-0.844-3.245-0.193-4.803c0.075-0.18,0.149-0.361,0.22-0.543 c0.968-2.459,0.068-5.264-2.161-6.685c-0.076-0.048-0.152-0.096-0.228-0.144c-1.521-0.947-2.48-2.584-2.583-4.373 c-0.002-0.025-0.003-0.05-0.004-0.075c-0.159-2.608-2.148-4.739-4.735-5.106c-0.105-0.015-0.21-0.029-0.315-0.043 c-1.767-0.231-3.311-1.32-4.128-2.905c-0.043-0.082-0.086-0.165-0.129-0.247c-1.2-2.269-3.801-3.415-6.285-2.769 c-0.088,0.023-0.176,0.046-0.264,0.07c-1.721,0.466-3.567,0.062-4.931-1.087c-0.08-0.068-0.161-0.135-0.242-0.202 c-2.018-1.663-4.936-1.693-6.968-0.046c-0.019,0.015-0.037,0.03-0.056,0.046c-1.389,1.133-3.244,1.532-4.971,1.052 c-0.088-0.025-0.177-0.049-0.265-0.072c-2.552-0.68-5.223,0.551-6.384,2.923c-0.097,0.199-0.192,0.398-0.284,0.598 c-0.692,1.505-1.988,2.663-3.599,3.052c-0.574,0.139-1.153,0.303-1.736,0.494c-2.122,0.696-3.573,2.638-3.769,4.862 c-0.027,0.31-0.051,0.621-0.071,0.931C439.531,198.928,439.509,199.469,439.497,200.01z"/>
<g>
<g>
<path fill="#FEBF55" d="M476.706,197.55c0.839-0.162,1.521-0.673,1.926-1.352c-0.629-0.48-1.453-0.7-2.291-0.539 c-0.838,0.162-1.52,0.673-1.926,1.352C475.044,197.491,475.867,197.712,476.706,197.55z"/>
<path fill="#FEBF55" d="M477.285,194.264c0.162,0.838,0.673,1.52,1.352,1.926c0.48-0.629,0.7-1.453,0.539-2.291 c-0.162-0.839-0.672-1.521-1.352-1.926C477.343,192.602,477.123,193.425,477.285,194.264z"/>
</g>
<g>
<path fill="#FEBF55" d="M450.973,233.207c-0.162-0.838,0.059-1.662,0.539-2.291c0.68,0.406,1.191,1.088,1.352,1.926 c0.162,0.838-0.059,1.662-0.539,2.291C451.646,234.728,451.135,234.046,450.973,233.207z"/>
<path fill="#FEBF55" d="M453.808,231.447c-0.838,0.162-1.662-0.058-2.291-0.539c0.406-0.68,1.088-1.191,1.926-1.352 c0.839-0.162,1.662,0.058,2.291,0.539C455.329,230.775,454.647,231.285,453.808,231.447z"/>
</g>
<g>
<path fill="#FEBF55" d="M479.3,199.801c0.854-0.014,1.614-0.398,2.132-0.997c-0.536-0.582-1.309-0.942-2.163-0.928 c-0.854,0.014-1.614,0.398-2.132,0.997C477.674,199.455,478.447,199.815,479.3,199.801z"/>
<path fill="#FEBF55" d="M480.441,196.665c0.014,0.854,0.398,1.614,0.997,2.132c0.582-0.536,0.942-1.309,0.928-2.163 c-0.014-0.854-0.398-1.614-0.997-2.132C480.787,195.039,480.427,195.812,480.441,196.665z"/>
</g>
<g>
<path fill="#FEBF55" d="M447.782,230.472c-0.014-0.854,0.346-1.626,0.928-2.163c0.599,0.517,0.984,1.278,0.997,2.132 c0.014,0.854-0.346,1.626-0.928,2.163C448.181,232.086,447.796,231.325,447.782,230.472z"/>
<path fill="#FEBF55" d="M450.88,229.23c-0.854,0.014-1.626-0.346-2.163-0.928c0.517-0.599,1.278-0.984,2.132-0.997 c0.854-0.014,1.626,0.346,2.163,0.928C452.494,228.832,451.733,229.217,450.88,229.23z"/>
</g>
<g>
<path fill="#FEBF55" d="M481.464,202.474c0.843,0.135,1.659-0.112,2.272-0.612c-0.427-0.666-1.125-1.155-1.969-1.29 c-0.843-0.135-1.659,0.112-2.272,0.612C479.923,201.85,480.621,202.339,481.464,202.474z"/>
<path fill="#FEBF55" d="M483.132,199.584c-0.135,0.843,0.112,1.659,0.612,2.272c0.667-0.427,1.155-1.126,1.29-1.969 c0.135-0.843-0.112-1.659-0.612-2.272C483.755,198.042,483.267,198.74,483.132,199.584z"/>
</g>
<g>
<path fill="#FEBF55" d="M445.115,227.219c0.135-0.843,0.623-1.541,1.29-1.969c0.5,0.614,0.747,1.429,0.612,2.272 c-0.135,0.843-0.623,1.541-1.29,1.969C445.227,228.878,444.981,228.062,445.115,227.219z"/>
<path fill="#FEBF55" d="M448.381,226.534c-0.843-0.135-1.541-0.623-1.968-1.29c0.614-0.5,1.429-0.747,2.272-0.612 c0.843,0.135,1.541,0.623,1.968,1.29C450.04,226.422,449.224,226.669,448.381,226.534z"/>
</g>
<g>
<path fill="#FEBF55" d="M483.131,205.485c0.807,0.279,1.653,0.178,2.344-0.208c-0.305-0.73-0.908-1.333-1.715-1.612 c-0.807-0.279-1.653-0.178-2.344,0.208C481.721,204.604,482.324,205.206,483.131,205.485z"/>
<path fill="#FEBF55" d="M485.275,202.929c-0.279,0.807-0.178,1.653,0.208,2.344c0.73-0.305,1.333-0.908,1.612-1.715 s0.178-1.653-0.208-2.344C486.157,201.519,485.554,202.122,485.275,202.929z"/>
</g>
<g>
<path fill="#FEBF55" d="M443.054,223.548c0.279-0.807,0.881-1.41,1.612-1.715c0.386,0.691,0.487,1.537,0.208,2.344 c-0.279,0.807-0.881,1.41-1.612,1.715C442.876,225.201,442.775,224.355,443.054,223.548z"/>
<path fill="#FEBF55" d="M446.389,223.441c-0.807-0.279-1.41-0.882-1.715-1.612c0.691-0.386,1.537-0.487,2.344-0.208 c0.807,0.279,1.41,0.881,1.715,1.612C448.042,223.619,447.196,223.72,446.389,223.441z"/>
</g>
<g>
<path fill="#FEBF55" d="M484.25,208.745c0.746,0.415,1.597,0.462,2.345,0.202c-0.173-0.772-0.663-1.47-1.409-1.885 c-0.746-0.415-1.597-0.462-2.345-0.202C483.015,207.633,483.504,208.33,484.25,208.745z"/>
<path fill="#FEBF55" d="M486.806,206.6c-0.415,0.746-0.462,1.597-0.202,2.345c0.772-0.173,1.47-0.663,1.885-1.409 c0.415-0.746,0.462-1.597,0.202-2.345C487.919,205.365,487.221,205.854,486.806,206.6z"/>
</g>
<g>
<path fill="#FEBF55" d="M441.66,219.57c0.415-0.746,1.113-1.235,1.885-1.409c0.26,0.748,0.213,1.598-0.202,2.345 c-0.415,0.746-1.113,1.235-1.885,1.409C441.198,221.167,441.245,220.316,441.66,219.57z"/>
<path fill="#FEBF55" d="M444.963,220.044c-0.746-0.415-1.235-1.113-1.409-1.885c0.748-0.26,1.598-0.213,2.345,0.202 c0.746,0.415,1.235,1.113,1.409,1.885C446.56,220.506,445.709,220.459,444.963,220.044z"/>
</g>
<g>
<path fill="#FEBF55" d="M484.788,212.155c0.663,0.538,1.493,0.733,2.274,0.606c-0.037-0.791-0.397-1.563-1.06-2.101 c-0.663-0.538-1.493-0.732-2.274-0.606C483.765,210.844,484.125,211.617,484.788,212.155z"/>
<path fill="#FEBF55" d="M487.677,210.486c-0.538,0.663-0.732,1.493-0.606,2.274c0.791-0.037,1.563-0.397,2.101-1.06 c0.538-0.663,0.732-1.493,0.606-2.274C488.988,209.463,488.216,209.823,487.677,210.486z"/>
</g>
<g>
<path fill="#FEBF55" d="M440.977,215.406c0.538-0.663,1.31-1.023,2.101-1.06c0.127,0.781-0.068,1.611-0.606,2.274 c-0.538,0.663-1.31,1.023-2.101,1.06C440.244,216.899,440.438,216.069,440.977,215.406z"/>
<path fill="#FEBF55" d="M444.147,216.447c-0.663-0.538-1.023-1.311-1.06-2.101c0.781-0.126,1.611,0.068,2.274,0.606 c0.663,0.538,1.023,1.31,1.06,2.101C445.64,217.179,444.81,216.985,444.147,216.447z"/>
</g>
<g>
<path fill="#FEBF55" d="M484.728,215.609c0.559,0.645,1.343,0.981,2.134,0.992c0.101-0.785-0.12-1.608-0.679-2.253 c-0.559-0.645-1.343-0.981-2.134-0.992C483.948,214.141,484.169,214.964,484.728,215.609z"/>
<path fill="#FEBF55" d="M487.863,214.468c-0.645,0.559-0.981,1.343-0.992,2.134c0.785,0.101,1.608-0.12,2.253-0.679 c0.645-0.559,0.981-1.343,0.992-2.134C489.332,213.688,488.509,213.908,487.863,214.468z"/>
</g>
<g>
<path fill="#FEBF55" d="M441.024,211.183c0.645-0.559,1.468-0.78,2.253-0.679c-0.011,0.791-0.347,1.575-0.992,2.134 c-0.645,0.559-1.468,0.78-2.253,0.679C440.044,212.526,440.379,211.743,441.024,211.183z"/>
<path fill="#FEBF55" d="M443.966,212.758c-0.559-0.645-0.78-1.468-0.679-2.253c0.792,0.011,1.575,0.347,2.134,0.992 c0.559,0.645,0.78,1.468,0.679,2.253C445.309,213.739,444.525,213.403,443.966,212.758z"/>
</g>
<g>
<path fill="#FEBF55" d="M484.072,219.005c0.439,0.732,1.152,1.199,1.93,1.347c0.236-0.756,0.161-1.605-0.278-2.337 c-0.439-0.732-1.152-1.199-1.93-1.347C483.559,217.423,483.633,218.272,484.072,219.005z"/>
<path fill="#FEBF55" d="M487.358,218.425c-0.732,0.439-1.199,1.152-1.347,1.93c0.756,0.236,1.605,0.161,2.337-0.277 c0.732-0.439,1.199-1.152,1.347-1.93C488.939,217.912,488.091,217.986,487.358,218.425z"/>
</g>
<g>
<path fill="#FEBF55" d="M441.801,207.029c0.732-0.439,1.581-0.513,2.337-0.277c-0.148,0.777-0.615,1.491-1.347,1.93 c-0.732,0.439-1.581,0.513-2.337,0.277C440.603,208.181,441.069,207.468,441.801,207.029z"/>
<path fill="#FEBF55" d="M444.425,209.091c-0.439-0.732-0.513-1.581-0.277-2.337c0.777,0.149,1.491,0.615,1.93,1.347 c0.439,0.732,0.513,1.581,0.277,2.337C445.577,210.29,444.864,209.824,444.425,209.091z"/>
</g>
<g>
<path fill="#FEBF55" d="M482.84,222.237c0.305,0.798,0.926,1.381,1.666,1.662c0.363-0.703,0.437-1.552,0.133-2.35 c-0.305-0.797-0.926-1.381-1.666-1.662C482.609,220.591,482.535,221.44,482.84,222.237z"/>
<path fill="#FEBF55" d="M486.177,222.237c-0.798,0.305-1.381,0.926-1.662,1.666c0.703,0.364,1.552,0.438,2.35,0.133 c0.797-0.305,1.381-0.926,1.662-1.666C487.823,222.006,486.974,221.932,486.177,222.237z"/>
</g>
<g>
<path fill="#FEBF55" d="M443.285,203.071c0.798-0.305,1.647-0.231,2.35,0.133c-0.281,0.74-0.864,1.361-1.662,1.666 c-0.797,0.305-1.646,0.231-2.349-0.133C441.904,203.997,442.487,203.375,443.285,203.071z"/>
<path fill="#FEBF55" d="M445.51,205.557c-0.305-0.798-0.231-1.647,0.133-2.35c0.74,0.281,1.361,0.864,1.666,1.662 c0.305,0.797,0.231,1.646-0.133,2.35C446.437,206.937,445.815,206.354,445.51,205.557z"/>
</g>
<g>
<path fill="#FEBF55" d="M481.078,225.184c0.162,0.838,0.672,1.521,1.352,1.926c0.48-0.629,0.7-1.453,0.539-2.291 c-0.162-0.838-0.672-1.52-1.352-1.926C481.136,223.523,480.916,224.346,481.078,225.184z"/>
<path fill="#FEBF55" d="M484.364,225.763c-0.839,0.162-1.521,0.673-1.926,1.352c0.629,0.48,1.453,0.7,2.291,0.539 c0.838-0.162,1.52-0.673,1.926-1.352C486.026,225.822,485.202,225.601,484.364,225.763z"/>
</g>
<g>
<path fill="#FEBF55" d="M445.42,199.452c0.838-0.162,1.662,0.059,2.291,0.539c-0.405,0.68-1.088,1.191-1.926,1.352 s-1.662-0.059-2.291-0.539C443.9,200.125,444.582,199.614,445.42,199.452z"/>
<path fill="#FEBF55" d="M447.18,202.287c-0.162-0.838,0.059-1.662,0.539-2.291c0.68,0.405,1.191,1.088,1.352,1.926 c0.162,0.838-0.059,1.662-0.539,2.291C447.853,203.807,447.342,203.125,447.18,202.287z"/>
</g>
<g>
<path fill="#FEBF55" d="M478.826,227.779c0.014,0.854,0.398,1.614,0.997,2.132c0.582-0.536,0.942-1.309,0.928-2.163 c-0.014-0.854-0.398-1.614-0.997-2.132C479.172,226.153,478.813,226.925,478.826,227.779z"/>
<path fill="#FEBF55" d="M481.962,228.92c-0.854,0.014-1.614,0.398-2.132,0.997c0.536,0.582,1.309,0.942,2.163,0.928 c0.854-0.014,1.614-0.398,2.132-0.997C483.588,229.266,482.816,228.906,481.962,228.92z"/>
</g>
<g>
<path fill="#FEBF55" d="M448.156,196.261c0.854-0.014,1.626,0.346,2.163,0.928c-0.517,0.599-1.278,0.984-2.132,0.997 c-0.854,0.014-1.626-0.346-2.163-0.928C446.542,196.659,447.302,196.274,448.156,196.261z"/>
<path fill="#FEBF55" d="M449.397,199.358c-0.014-0.854,0.346-1.626,0.928-2.163c0.599,0.517,0.983,1.278,0.997,2.132 c0.014,0.854-0.346,1.626-0.928,2.163C449.795,200.972,449.411,200.212,449.397,199.358z"/>
</g>
<g>
<path fill="#FEBF55" d="M476.154,229.943c-0.135,0.843,0.112,1.659,0.612,2.272c0.666-0.427,1.155-1.125,1.29-1.969 c0.135-0.843-0.112-1.659-0.612-2.272C476.777,228.401,476.289,229.1,476.154,229.943z"/>
<path fill="#FEBF55" d="M479.044,231.611c-0.843-0.135-1.659,0.112-2.272,0.612c0.427,0.667,1.125,1.155,1.969,1.29 c0.843,0.135,1.659-0.112,2.272-0.612C480.585,232.234,479.887,231.745,479.044,231.611z"/>
</g>
<g>
<path fill="#FEBF55" d="M451.409,193.594c0.843,0.135,1.541,0.623,1.969,1.29c-0.613,0.5-1.429,0.747-2.272,0.612 c-0.843-0.135-1.541-0.623-1.968-1.29C449.75,193.706,450.566,193.459,451.409,193.594z"/>
<path fill="#FEBF55" d="M452.093,196.86c0.135-0.843,0.623-1.541,1.29-1.968c0.5,0.613,0.747,1.429,0.612,2.272 c-0.135,0.843-0.623,1.541-1.29,1.969C452.205,198.518,451.959,197.703,452.093,196.86z"/>
</g>
<g>
<path fill="#FEBF55" d="M473.142,231.61c-0.279,0.807-0.178,1.653,0.208,2.344c0.73-0.305,1.333-0.908,1.612-1.715 c0.279-0.807,0.178-1.653-0.208-2.344C474.024,230.2,473.421,230.803,473.142,231.61z"/>
<path fill="#FEBF55" d="M475.699,233.754c-0.807-0.279-1.653-0.178-2.344,0.208c0.305,0.73,0.908,1.333,1.715,1.612 c0.807,0.279,1.653,0.178,2.344-0.208C477.108,234.635,476.505,234.033,475.699,233.754z"/>
</g>
<g>
<path fill="#FEBF55" d="M455.08,191.532c0.807,0.279,1.41,0.881,1.715,1.612c-0.691,0.386-1.537,0.487-2.344,0.208 s-1.41-0.881-1.715-1.612C453.427,191.354,454.273,191.253,455.08,191.532z"/>
<path fill="#FEBF55" d="M455.187,194.867c0.279-0.807,0.881-1.41,1.612-1.715c0.386,0.691,0.487,1.537,0.208,2.344 c-0.279,0.807-0.881,1.41-1.612,1.715C455.009,196.52,454.908,195.674,455.187,194.867z"/>
</g>
<g>
<path fill="#FEBF55" d="M469.882,232.729c-0.415,0.746-0.462,1.597-0.202,2.345c0.772-0.173,1.47-0.662,1.885-1.409 c0.415-0.746,0.462-1.597,0.202-2.345C470.995,231.494,470.297,231.982,469.882,232.729z"/>
<path fill="#FEBF55" d="M472.027,235.285c-0.746-0.415-1.597-0.462-2.345-0.202c0.173,0.772,0.663,1.47,1.409,1.885 c0.746,0.415,1.597,0.462,2.345,0.202C473.263,236.397,472.773,235.699,472.027,235.285z"/>
</g>
<g>
<path fill="#FEBF55" d="M459.058,190.138c0.746,0.415,1.235,1.113,1.409,1.885c-0.748,0.26-1.598,0.213-2.345-0.202 c-0.746-0.415-1.235-1.113-1.409-1.885C457.461,189.676,458.311,189.724,459.058,190.138z"/>
<path fill="#FEBF55" d="M458.584,193.441c0.415-0.746,1.113-1.235,1.885-1.409c0.26,0.748,0.213,1.598-0.202,2.345 c-0.415,0.746-1.113,1.235-1.885,1.409C458.122,195.039,458.169,194.188,458.584,193.441z"/>
</g>
<g>
<path fill="#FEBF55" d="M466.473,233.267c-0.538,0.663-0.732,1.493-0.606,2.274c0.791-0.037,1.563-0.397,2.101-1.06 c0.538-0.663,0.732-1.493,0.606-2.274C467.783,232.243,467.011,232.604,466.473,233.267z"/>
<path fill="#FEBF55" d="M468.142,236.156c-0.663-0.538-1.493-0.732-2.274-0.606c0.037,0.791,0.397,1.563,1.06,2.101 c0.663,0.538,1.493,0.733,2.274,0.606C469.165,237.466,468.804,236.694,468.142,236.156z"/>
</g>
<g>
<path fill="#FEBF55" d="M463.221,189.455c0.663,0.538,1.023,1.31,1.06,2.101c-0.781,0.126-1.611-0.068-2.274-0.606 c-0.663-0.538-1.023-1.31-1.06-2.101C461.729,188.723,462.559,188.917,463.221,189.455z"/>
<path fill="#FEBF55" d="M462.181,192.625c0.538-0.663,1.31-1.023,2.101-1.06c0.126,0.781-0.068,1.611-0.606,2.274 c-0.538,0.663-1.31,1.023-2.101,1.06C461.449,194.118,461.643,193.288,462.181,192.625z"/>
</g>
<g>
<path fill="#FEBF55" d="M463.018,233.207c-0.645,0.559-0.981,1.343-0.992,2.134c0.785,0.101,1.608-0.12,2.253-0.679 c0.645-0.559,0.981-1.343,0.992-2.134C464.486,232.427,463.663,232.647,463.018,233.207z"/>
<path fill="#FEBF55" d="M464.16,236.342c-0.559-0.645-1.343-0.981-2.134-0.992c-0.101,0.785,0.12,1.608,0.679,2.253 c0.559,0.645,1.343,0.981,2.134,0.992C464.94,237.81,464.719,236.987,464.16,236.342z"/>
</g>
<g>
<path fill="#FEBF55" d="M467.444,189.503c0.559,0.645,0.78,1.468,0.679,2.253c-0.792-0.011-1.575-0.347-2.134-0.992 c-0.559-0.645-0.78-1.468-0.679-2.253C466.102,188.522,466.885,188.858,467.444,189.503z"/>
<path fill="#FEBF55" d="M465.87,192.444c0.645-0.559,1.468-0.78,2.253-0.679c-0.011,0.791-0.347,1.575-0.992,2.134 c-0.645,0.559-1.468,0.78-2.253,0.679C464.889,193.787,465.224,193.004,465.87,192.444z"/>
</g>
<g>
<path fill="#FEBF55" d="M459.623,232.551c-0.733,0.439-1.199,1.152-1.347,1.93c0.756,0.236,1.605,0.161,2.337-0.277 c0.733-0.439,1.199-1.152,1.347-1.93C461.204,232.037,460.355,232.112,459.623,232.551z"/>
<path fill="#FEBF55" d="M460.203,235.837c-0.439-0.732-1.152-1.199-1.93-1.347c-0.236,0.756-0.161,1.605,0.278,2.337 c0.439,0.732,1.152,1.199,1.93,1.347C460.716,237.418,460.642,236.569,460.203,235.837z"/>
</g>
<g>
<path fill="#FEBF55" d="M471.598,190.28c0.439,0.732,0.513,1.581,0.278,2.337c-0.778-0.149-1.491-0.615-1.93-1.347 c-0.439-0.732-0.513-1.581-0.277-2.337C470.446,189.081,471.16,189.547,471.598,190.28z"/>
<path fill="#FEBF55" d="M469.537,192.903c0.732-0.439,1.581-0.513,2.337-0.277c-0.149,0.777-0.615,1.491-1.347,1.93 c-0.733,0.439-1.581,0.513-2.337,0.277C468.338,194.055,468.804,193.342,469.537,192.903z"/>
</g>
<g>
<path fill="#FEBF55" d="M456.39,231.318c-0.797,0.305-1.381,0.926-1.662,1.666c0.703,0.364,1.552,0.437,2.35,0.133 c0.798-0.305,1.381-0.926,1.662-1.666C458.037,231.088,457.188,231.014,456.39,231.318z"/>
<path fill="#FEBF55" d="M456.391,234.655c-0.305-0.797-0.926-1.381-1.666-1.662c-0.363,0.703-0.438,1.552-0.133,2.35 c0.305,0.798,0.926,1.381,1.666,1.662C456.622,236.302,456.696,235.453,456.391,234.655z"/>
</g>
<g>
<path fill="#FEBF55" d="M475.557,191.763c0.305,0.797,0.231,1.647-0.133,2.35c-0.74-0.281-1.361-0.865-1.666-1.662 c-0.305-0.798-0.231-1.646,0.133-2.35C474.631,190.383,475.252,190.966,475.557,191.763z"/>
<path fill="#FEBF55" d="M473.071,193.989c0.797-0.305,1.646-0.231,2.35,0.133c-0.281,0.74-0.864,1.361-1.662,1.666 c-0.798,0.305-1.647,0.231-2.35-0.133C471.69,194.915,472.273,194.294,473.071,193.989z"/>
</g>
</g>
<g>
<path fill="#FEBF55" d="M456.943,205.452c1.968-0.967,3.522-1.519,6.042-4.523h6.146v19.542h3.211v4.592h-13.81v-4.592h3.452 v-12.809l-3.452,1.623L456.943,205.452z"/>
</g>
<rect x="354.543" y="138.816" fill="#0F538C" width="114.901" height="13.88"/>
<rect x="379.659" y="159.456" fill="#0F538C" width="64.668" height="7.812"/>
<g>
<rect x="336.648" y="194.955" fill="#0F538C" width="79.588" height="7.812"/>
<rect x="336.648" y="234.857" fill="#0F538C" width="79.588" height="7.812"/>
<rect x="336.648" y="214.906" fill="#0F538C" width="79.588" height="7.812"/>
</g>
<g>
<path fill="#FEBF55" d="M359.161,481.441c-73.645-62.62-95.781-120.741-85.048-150.563c3.695-10.268,11.469-16.473,20.797-16.601 c11.003-0.16,20.841,3.853,28.669,11.574c11.034,10.883,17.621,28.943,17.621,48.308h-15.704c0-15.025-4.96-29.252-12.945-37.128 c-4.837-4.772-10.729-7.09-17.425-7.052c-3.323,0.046-5.225,3.406-6.236,6.217c-7.187,19.97,8.306,71.943,80.444,133.281 L359.161,481.441z"/>
<path fill="#FEBF55" d="M472.542,481.441l-10.172-11.964c72.138-61.338,87.631-113.313,80.445-133.281 c-1.012-2.811-2.915-6.171-6.237-6.217c-6.733-0.047-12.588,2.281-17.425,7.052c-7.985,7.876-12.945,22.103-12.945,37.128 h-15.704c0-19.365,6.587-37.425,17.621-48.308c7.828-7.723,17.774-11.768,28.669-11.574c9.329,0.128,17.103,6.334,20.798,16.6 C568.323,360.7,546.189,418.822,472.542,481.441z"/>
</g>
<path fill="#E1AD3D" d="M439.682,524.163c0,14.732,3.34,28.683,9.332,41.137h-66.325c5.993-12.454,9.332-26.405,9.332-41.137 c0-14.732-3.34-28.684-9.332-41.137h66.325C443.022,495.479,439.682,509.431,439.682,524.163z"/>
<path fill="#FEBF55" d="M325.617,336.837v73.64c0,49.835,40.399,90.235,90.235,90.235s90.235-40.4,90.235-90.235v-73.64H325.617z"/>
<path fill="#E1AD3D" d="M466.128,601.962c0-27.766-22.51-50.276-50.276-50.276c-27.767,0-50.276,22.51-50.276,50.276H466.128z"/>
<rect x="318.227" y="671.283" fill="#0F538C" width="195.25" height="25.122"/>
<rect x="339.084" y="596.824" fill="#FEBF55" width="153.535" height="74.459"/>
<path fill="#C68F30" d="M456.181,657.39h-80.658c0-5.494-4.454-9.947-9.947-9.947v-26.779c5.494,0,9.947-4.453,9.947-9.947h80.658 c0,5.494,4.454,9.947,9.947,9.947v13.39v13.389C460.634,647.443,456.181,651.896,456.181,657.39z"/>
<g>
<polygon fill="#FEBF55" points="202.322,379.007 202.35,379.016 202.322,378.976 "/>
<polygon fill="#FEBF55" points="202.322,321.477 185.414,355.735 202.322,378.976 "/>
<polygon fill="#FEBF55" points="202.322,379.025 202.35,379.016 202.322,379.007 "/>
<polygon fill="#C68F30" points="202.35,379.016 219.229,355.735 202.322,321.477 202.322,378.976 "/>
<polygon fill="#FEBF55" points="202.322,379.055 202.35,379.016 202.322,379.025 "/>
<polygon fill="#FEBF55" points="257.036,361.229 219.229,355.735 202.35,379.016 "/>
<polygon fill="#C68F30" points="229.679,387.895 257.036,361.229 202.35,379.016 "/>
<polygon fill="#FEBF55" points="202.322,379.055 202.322,407.771 236.137,425.549 202.35,379.016 "/>
<polygon fill="#C68F30" points="202.35,379.016 236.137,425.549 229.679,387.895 "/>
<polygon fill="#FEBF55" points="202.322,378.976 185.414,355.735 147.608,361.229 202.322,379.007 "/>
<polygon opacity="0.25" fill="#FEBF55" points="202.322,378.976 185.414,355.735 147.608,361.229 202.322,379.007 "/>
<polygon fill="#C68F30" points="168.507,425.549 202.322,407.771 202.322,379.055 "/>
<polygon fill="#FEBF55" points="202.322,379.025 174.965,387.895 168.507,425.549 202.322,379.055 "/>
<polygon fill="#C68F30" points="202.322,379.007 147.608,361.229 174.965,387.895 202.322,379.025 "/>
</g>
<path fill="#C68F30" d="M207.22,325.416h-9.796c-4.676,0-8.48-3.804-8.48-8.48v-6.595c0-4.676,3.804-8.48,8.48-8.48h9.796 c4.676,0,8.48,3.804,8.48,8.48v6.595C215.7,321.612,211.896,325.416,207.22,325.416z M197.424,309.775 c-0.301,0-0.565,0.264-0.565,0.565v6.595c0,0.301,0.264,0.565,0.565,0.565h9.796c0.301,0,0.565-0.264,0.565-0.565v-6.595 c0-0.301-0.264-0.565-0.565-0.565H197.424z"/>
<rect x="197.765" y="318.012" fill="#E1AD3D" width="9.113" height="6.93"/>
<polygon fill="#CCE9FF" points="167.09,231.924 167.09,285.233 180.856,298.999 180.856,231.924 "/>
<polygon fill="#CCE9FF" points="223.787,231.924 223.787,298.999 237.553,285.233 237.553,231.924 "/>
<polygon fill="#0F538C" points="159.157,231.924 159.157,277.3 164.29,282.433 164.29,231.924 "/>
<polygon fill="#0F538C" points="240.353,231.924 240.353,282.433 245.486,277.3 245.486,231.924 "/>
<polygon fill="#2B94F3" points="164.29,231.924 164.29,282.433 167.09,285.233 167.09,231.924 "/>
<polygon fill="#2B94F3" points="237.553,231.924 237.553,285.233 240.353,282.433 240.353,231.924 "/>
<polygon fill="#2B94F3" points="196.489,231.924 180.856,231.924 180.856,298.999 196.489,314.632 "/>
<polygon fill="#2B94F3" points="208.155,231.924 208.155,314.632 223.787,298.999 223.787,231.924 "/>
<rect x="196.487" y="231.927" fill="#0F538C" width="11.668" height="82.708"/>
<polygon fill="#0F538C" points="725.672,281.112 725.663,281.121 563.224,281.121 563.215,281.112 584.884,241.006 703.966,241.006 703.984,241.044 714.711,260.853 716.683,264.498 "/>
<polygon fill="#2B94F4" points="662.985,360.089 644.439,372.248 629.433,382.082 563.226,281.121 563.214,281.11 570.984,266.761 572.209,264.493 574.171,260.852 575.396,258.583 584.901,241.047 611.183,281.121 644.439,331.823 "/>
<polygon fill="#CCE9FF" points="647.218,367.779 640.311,372.339 570.984,266.761 572.209,264.493 574.171,260.852 575.396,258.583 "/>
<polygon fill="#2B94F4" points="625.902,360.089 644.447,372.248 659.453,382.082 725.661,281.121 725.672,281.11 717.902,266.761 716.677,264.493 714.715,260.852 713.49,258.583 703.985,241.047 677.704,281.121 644.447,331.823 "/>
<polygon fill="#CCE9FF" points="641.668,367.779 648.576,372.339 717.902,266.761 716.677,264.493 714.715,260.852 713.49,258.583 "/>
<ellipse transform="matrix(0.2256 -0.9742 0.9742 0.2256 117.7895 930.9308)" fill="#FEBF55" cx="644.443" cy="391.377" rx="49.816" ry="49.816"/>
<g>
<g>
<g>
<g>
<path fill="#C68F30" d="M631.27,361.433c-1.233-0.58-2.089-1.643-2.452-2.862c1.158-0.503,2.515-0.524,3.748,0.056 c1.233,0.58,2.089,1.643,2.452,2.862C633.859,361.992,632.502,362.013,631.27,361.433z"/>
<path fill="#C68F30" d="M631.648,356.083c-0.575,1.244-1.628,2.108-2.836,2.474c-0.498-1.169-0.519-2.539,0.055-3.783 c0.575-1.244,1.628-2.108,2.836-2.474C632.202,353.469,632.223,354.839,631.648,356.083z"/>
</g>
<g>
<path fill="#C68F30" d="M626.387,363.936c-1.313-0.355-2.34-1.252-2.907-2.389c1.054-0.698,2.387-0.957,3.701-0.602 c1.314,0.355,2.34,1.252,2.907,2.388C629.033,364.032,627.7,364.291,626.387,363.936z"/>
<path fill="#C68F30" d="M625.839,358.601c-0.352,1.326-1.241,2.361-2.367,2.934c-0.691-1.064-0.948-2.409-0.596-3.735 c0.352-1.326,1.241-2.361,2.367-2.934C625.934,355.93,626.191,357.275,625.839,358.601z"/>
</g>
<g>
<path fill="#C68F30" d="M622.005,367.264c-1.355-0.12-2.519-0.823-3.274-1.843c0.918-0.872,2.186-1.361,3.541-1.241 c1.355,0.12,2.52,0.823,3.274,1.843C624.628,366.894,623.36,367.383,622.005,367.264z"/>
<path fill="#C68F30" d="M620.548,362.105c-0.119,1.367-0.816,2.543-1.826,3.304c-0.864-0.927-1.348-2.206-1.23-3.574 c0.118-1.367,0.816-2.543,1.826-3.304C620.183,359.458,620.667,360.738,620.548,362.105z"/>
</g>
<g>
<path fill="#C68F30" d="M618.259,371.314c-1.355,0.12-2.623-0.369-3.541-1.241c0.754-1.02,1.919-1.723,3.274-1.843 c1.355-0.12,2.623,0.369,3.541,1.241C620.779,370.491,619.614,371.195,618.259,371.314z"/>
<path fill="#C68F30" d="M615.937,366.49c0.118,1.367-0.366,2.647-1.23,3.574c-1.01-0.761-1.707-1.937-1.826-3.304 c-0.119-1.367,0.366-2.647,1.23-3.574C615.121,363.947,615.818,365.122,615.937,366.49z"/>
</g>
<g>
<path fill="#C68F30" d="M615.262,375.965c-1.314,0.355-2.647,0.096-3.701-0.602c0.567-1.136,1.593-2.033,2.907-2.389 c1.314-0.355,2.646-0.096,3.701,0.602C617.601,374.713,616.575,375.61,615.262,375.965z"/>
<path fill="#C68F30" d="M612.144,371.621c0.352,1.326,0.095,2.671-0.596,3.735c-1.126-0.572-2.015-1.608-2.367-2.934 c-0.352-1.326-0.095-2.671,0.596-3.735C610.903,369.26,611.792,370.295,612.144,371.621z"/>
</g>
<g>
<path fill="#C68F30" d="M613.104,381.075c-1.233,0.58-2.59,0.559-3.748,0.056c0.363-1.219,1.219-2.282,2.452-2.862 c1.232-0.58,2.59-0.559,3.748-0.056C615.193,379.431,614.336,380.495,613.104,381.075z"/>
<path fill="#C68F30" d="M609.286,377.343c0.575,1.244,0.553,2.614,0.056,3.783c-1.207-0.367-2.261-1.23-2.836-2.474 c-0.575-1.244-0.554-2.614-0.056-3.783C607.658,375.235,608.712,376.099,609.286,377.343z"/>
</g>
<g>
<path fill="#C68F30" d="M611.852,386.488c-1.114,0.787-2.454,1.004-3.682,0.712c0.148-1.264,0.808-2.461,1.922-3.248 c1.114-0.787,2.454-1.004,3.682-0.712C613.626,384.504,612.966,385.701,611.852,386.488z"/>
<path fill="#C68F30" d="M607.45,383.482c0.78,1.124,0.995,2.477,0.706,3.715c-1.252-0.149-2.438-0.815-3.218-1.94 c-0.78-1.124-0.995-2.477-0.706-3.715C605.484,381.691,606.67,382.357,607.45,383.482z"/>
</g>
<g>
<path fill="#C68F30" d="M611.543,392.04c-0.962,0.971-2.244,1.419-3.503,1.346c-0.072-1.27,0.372-2.565,1.334-3.535 c0.962-0.971,2.244-1.419,3.503-1.346C612.949,389.775,612.505,391.07,611.543,392.04z"/>
<path fill="#C68F30" d="M606.691,389.851c0.962,0.971,1.406,2.265,1.334,3.535c-1.259,0.072-2.541-0.376-3.503-1.346 c-0.962-0.97-1.406-2.265-1.334-3.535C604.446,388.432,605.729,388.881,606.691,389.851z"/>
</g>
<g>
<path fill="#C68F30" d="M612.19,397.521c-0.78,1.124-1.966,1.791-3.218,1.94c-0.289-1.239-0.075-2.591,0.706-3.716 c0.78-1.124,1.966-1.79,3.218-1.94C613.185,395.044,612.971,396.397,612.19,397.521z"/>
<path fill="#C68F30" d="M607.035,396.216c1.114,0.787,1.774,1.984,1.922,3.248c-1.227,0.292-2.568,0.075-3.682-0.712 c-1.114-0.787-1.774-1.984-1.922-3.248C604.581,395.212,605.921,395.428,607.035,396.216z"/>
</g>
<g>
<path fill="#C68F30" d="M613.778,402.806c-0.575,1.244-1.628,2.108-2.836,2.474c-0.498-1.169-0.519-2.539,0.056-3.783 c0.575-1.244,1.628-2.108,2.835-2.474C614.332,400.192,614.353,401.562,613.778,402.806z"/>
<path fill="#C68F30" d="M608.477,402.423c1.233,0.58,2.089,1.643,2.452,2.862c-1.158,0.503-2.516,0.524-3.748-0.056 c-1.233-0.58-2.089-1.643-2.452-2.862C605.887,401.865,607.245,401.843,608.477,402.423z"/>
</g>
<g>
<path fill="#C68F30" d="M616.258,407.734c-0.352,1.326-1.241,2.361-2.367,2.934c-0.692-1.064-0.948-2.409-0.596-3.735 c0.352-1.326,1.241-2.361,2.367-2.934C616.354,405.063,616.611,406.408,616.258,407.734z"/>
<path fill="#C68F30" d="M610.972,408.286c1.314,0.355,2.34,1.252,2.907,2.389c-1.054,0.698-2.387,0.957-3.701,0.602 c-1.314-0.355-2.34-1.252-2.907-2.388C608.325,408.19,609.658,407.931,610.972,408.286z"/>
</g>
<g>
<path fill="#C68F30" d="M619.555,412.155c-0.118,1.367-0.816,2.543-1.826,3.304c-0.864-0.927-1.348-2.206-1.23-3.574 c0.119-1.367,0.816-2.543,1.826-3.304C619.19,409.508,619.674,410.788,619.555,412.155z"/>
<path fill="#C68F30" d="M614.444,413.626c1.355,0.12,2.519,0.823,3.274,1.843c-0.918,0.872-2.186,1.361-3.541,1.241 c-1.355-0.12-2.52-0.823-3.274-1.843C611.821,413.995,613.089,413.506,614.444,413.626z"/>
</g>
<g>
<path fill="#C68F30" d="M623.569,415.936c0.119,1.367-0.366,2.647-1.23,3.574c-1.01-0.761-1.707-1.936-1.826-3.304 c-0.118-1.367,0.366-2.647,1.23-3.574C622.753,413.393,623.451,414.569,623.569,415.936z"/>
<path fill="#C68F30" d="M618.789,418.28c1.355-0.12,2.623,0.369,3.541,1.241c-0.754,1.02-1.919,1.723-3.274,1.843 c-1.355,0.12-2.623-0.369-3.541-1.241C616.269,419.103,617.434,418.399,618.789,418.28z"/>
</g>
<g>
<path fill="#C68F30" d="M628.177,418.961c0.352,1.326,0.095,2.671-0.596,3.735c-1.126-0.573-2.015-1.608-2.367-2.934 c-0.352-1.326-0.095-2.671,0.596-3.735C626.937,416.6,627.826,417.635,628.177,418.961z"/>
<path fill="#C68F30" d="M623.873,422.107c1.314-0.355,2.646-0.096,3.701,0.602c-0.567,1.136-1.593,2.033-2.907,2.388 c-1.314,0.355-2.647,0.096-3.701-0.602C621.533,423.359,622.559,422.462,623.873,422.107z"/>
</g>
<g>
<path fill="#C68F30" d="M633.241,421.139c0.575,1.244,0.553,2.614,0.055,3.783c-1.208-0.366-2.261-1.23-2.836-2.474 c-0.575-1.244-0.553-2.614-0.055-3.783C631.612,419.031,632.666,419.895,633.241,421.139z"/>
<path fill="#C68F30" d="M629.543,424.991c1.233-0.58,2.59-0.558,3.748-0.056c-0.363,1.218-1.219,2.282-2.452,2.862 s-2.59,0.559-3.748,0.056C627.454,426.635,628.31,425.572,629.543,424.991z"/>
</g>
</g>
<path fill="#C68F30" d="M637.719,356.883c-1.278,0.47-2.628,0.329-3.739-0.274c0.467-1.182,1.411-2.166,2.69-2.635 c1.278-0.47,2.628-0.329,3.739,0.274C639.941,355.43,638.997,356.414,637.719,356.883z"/>
</g>
<path fill="#C68F30" d="M649.593,433.452l-0.401,0.404c-1.56-1.383-3.163-2.554-4.744-3.532c-0.19-0.106-0.359-0.213-0.527-0.319 c-4.091-2.468-7.991-3.788-10.732-4.724c-0.422-0.149-0.801-0.277-1.139-0.404c-0.274-0.106-0.548-0.191-0.822-0.319 c-1.307-0.468-2.551-1.043-3.753-1.66c-0.569-0.277-1.118-0.575-1.645-0.894c-0.59-0.34-1.16-0.681-1.708-1.064 c-0.654-0.404-1.286-0.851-1.898-1.319c-0.443-0.319-0.886-0.66-1.328-1.021c0,0,0,0-0.021,0 c-1.139-0.958-2.235-1.958-3.247-3.043c-0.379-0.383-0.759-0.787-1.117-1.192c-0.991-1.149-1.94-2.362-2.762-3.617 c-0.337-0.49-0.654-0.958-0.949-1.468c-0.78-1.256-1.476-2.575-2.087-3.915c-0.253-0.596-0.506-1.192-0.738-1.787 c-0.506-1.319-0.949-2.681-1.286-4.065c-0.169-0.681-0.316-1.362-0.464-2.043c-0.253-1.341-0.422-2.702-0.527-4.086 c-0.042-0.723-0.085-1.426-0.085-2.149v-0.319c0-1.277,0.063-2.532,0.211-3.788c0.063-0.723,0.169-1.426,0.295-2.128 c0.232-1.341,0.548-2.681,0.928-3.979c0.19-0.681,0.422-1.341,0.654-2c0.464-1.298,1.012-2.554,1.623-3.788 c0.295-0.596,0.59-1.17,0.928-1.745c0.696-1.234,1.455-2.405,2.298-3.532c0.358-0.489,0.717-0.957,1.096-1.426 c0.928-1.149,1.919-2.234,2.973-3.256c0.401-0.383,0.822-0.788,1.265-1.171c1.096-0.979,2.277-1.894,3.5-2.724 c0.506-0.341,1.012-0.681,1.539-1c0,0,0-0.021,0.021-0.021c1.223-0.745,2.488-1.426,3.795-2.022 c0.611-0.298,1.244-0.575,1.877-0.83c1.139-0.447,2.298-0.851,3.5-1.192c0.991-0.298,2.003-0.532,3.015-0.745l0.126,0.532 c-0.97,0.192-1.919,0.426-2.846,0.702c-1.371,0.383-2.699,0.851-3.985,1.383c-0.506,0.213-1.012,0.426-1.497,0.681 c-1.286,0.575-2.509,1.234-3.69,1.979c-0.527,0.319-1.054,0.66-1.56,1.043c-1.139,0.766-2.235,1.617-3.268,2.532 c-0.506,0.404-0.97,0.851-1.434,1.298c-1.012,0.979-1.961,2.022-2.846,3.107c-0.401,0.489-0.78,0.979-1.139,1.49 c-0.864,1.17-1.666,2.383-2.362,3.66c-0.295,0.511-0.548,1.021-0.801,1.532c-0.696,1.383-1.286,2.788-1.792,4.256 c-0.169,0.468-0.316,0.958-0.443,1.447c-0.443,1.49-0.78,3-1.012,4.554c-0.084,0.49-0.148,0.979-0.19,1.468 c-0.148,1.213-0.211,2.447-0.211,3.681c0,0.34,0,0.681,0.021,1.021c0,0.489,0.042,0.979,0.063,1.447 c0.105,1.511,0.316,3.001,0.633,4.448c0.105,0.532,0.211,1.064,0.358,1.596c0.337,1.383,0.78,2.745,1.307,4.064 c0.211,0.575,0.443,1.128,0.696,1.681c0.569,1.277,1.223,2.511,1.94,3.703c0.316,0.553,0.654,1.064,1.012,1.596 c0.78,1.128,1.603,2.234,2.509,3.277c0.422,0.489,0.865,0.979,1.307,1.447c0.949,1,1.961,1.936,3.015,2.809 c0.485,0.404,0.991,0.809,1.518,1.213c0.506,0.362,1.033,0.723,1.56,1.085c0.654,0.447,1.328,0.851,2.045,1.277 c0.506,0.277,1.033,0.575,1.56,0.851c1.349,0.681,2.762,1.298,4.238,1.83c0.084,0.021,0.169,0.064,0.253,0.085 c0.359,0.128,0.717,0.255,1.139,0.404h0.021c2.804,0.958,6.853,2.341,11.07,4.916c0.169,0.107,0.337,0.213,0.527,0.341 C646.514,430.963,648.075,432.112,649.593,433.452z"/>
</g>
<g>
<g>
<g>
<g>
<path fill="#C68F30" d="M657.617,361.433c1.233-0.58,2.089-1.643,2.452-2.862c-1.158-0.503-2.515-0.524-3.748,0.056 c-1.233,0.58-2.089,1.643-2.452,2.862C655.027,361.992,656.385,362.013,657.617,361.433z"/>
<path fill="#C68F30" d="M657.239,356.083c0.575,1.244,1.628,2.108,2.835,2.474c0.498-1.169,0.519-2.539-0.056-3.783 c-0.575-1.244-1.628-2.108-2.835-2.474C656.685,353.469,656.664,354.839,657.239,356.083z"/>
</g>
<g>
<path fill="#C68F30" d="M662.5,363.936c1.314-0.355,2.34-1.252,2.907-2.389c-1.054-0.698-2.387-0.957-3.701-0.602 c-1.314,0.355-2.34,1.252-2.907,2.388C659.853,364.032,661.186,364.291,662.5,363.936z"/>
<path fill="#C68F30" d="M663.048,358.601c0.352,1.326,1.241,2.361,2.367,2.934c0.692-1.064,0.948-2.409,0.596-3.735 c-0.352-1.326-1.241-2.361-2.367-2.934C662.952,355.93,662.696,357.275,663.048,358.601z"/>
</g>
<g>
<path fill="#C68F30" d="M666.881,367.264c1.355-0.12,2.519-0.823,3.274-1.843c-0.918-0.872-2.186-1.361-3.541-1.241 c-1.355,0.12-2.519,0.823-3.274,1.843C664.258,366.894,665.526,367.383,666.881,367.264z"/>
<path fill="#C68F30" d="M668.338,362.105c0.118,1.367,0.816,2.543,1.826,3.304c0.864-0.927,1.348-2.206,1.23-3.574 c-0.119-1.367-0.816-2.543-1.826-3.304C668.704,359.458,668.22,360.738,668.338,362.105z"/>
</g>
<g>
<path fill="#C68F30" d="M670.627,371.314c1.355,0.12,2.623-0.369,3.541-1.241c-0.754-1.02-1.919-1.723-3.274-1.843 c-1.355-0.12-2.623,0.369-3.541,1.241C668.108,370.491,669.273,371.195,670.627,371.314z"/>
<path fill="#C68F30" d="M672.95,366.49c-0.119,1.367,0.366,2.647,1.23,3.574c1.01-0.761,1.707-1.937,1.826-3.304 c0.118-1.367-0.366-2.647-1.23-3.574C673.766,363.947,673.069,365.122,672.95,366.49z"/>
</g>
<g>
<path fill="#C68F30" d="M673.625,375.965c1.314,0.355,2.646,0.096,3.701-0.602c-0.567-1.136-1.593-2.033-2.907-2.389 c-1.314-0.355-2.647-0.096-3.701,0.602C671.285,374.713,672.311,375.61,673.625,375.965z"/>
<path fill="#C68F30" d="M676.743,371.621c-0.352,1.326-0.095,2.671,0.596,3.735c1.126-0.572,2.015-1.608,2.367-2.934 c0.352-1.326,0.095-2.671-0.596-3.735C677.983,369.26,677.095,370.295,676.743,371.621z"/>
</g>
<g>
<path fill="#C68F30" d="M675.783,381.075c1.233,0.58,2.59,0.559,3.748,0.056c-0.363-1.219-1.219-2.282-2.452-2.862 c-1.233-0.58-2.59-0.559-3.748-0.056C673.694,379.431,674.55,380.495,675.783,381.075z"/>
<path fill="#C68F30" d="M679.6,377.343c-0.575,1.244-0.553,2.614-0.055,3.783c1.207-0.367,2.261-1.23,2.836-2.474 c0.575-1.244,0.553-2.614,0.055-3.783C681.228,375.235,680.175,376.099,679.6,377.343z"/>
</g>
<g>
<path fill="#C68F30" d="M677.035,386.488c1.114,0.787,2.454,1.004,3.682,0.712c-0.148-1.264-0.808-2.461-1.922-3.248 c-1.114-0.787-2.454-1.004-3.681-0.712C675.261,384.504,675.921,385.701,677.035,386.488z"/>
<path fill="#C68F30" d="M681.437,383.482c-0.78,1.124-0.995,2.477-0.706,3.715c1.252-0.149,2.438-0.815,3.218-1.94 c0.78-1.124,0.995-2.477,0.706-3.715C683.403,381.691,682.217,382.357,681.437,383.482z"/>
</g>
<g>
<path fill="#C68F30" d="M677.344,392.04c0.962,0.971,2.244,1.419,3.503,1.346c0.072-1.27-0.372-2.565-1.334-3.535 c-0.962-0.971-2.244-1.419-3.503-1.346C675.938,389.775,676.382,391.07,677.344,392.04z"/>
<path fill="#C68F30" d="M682.196,389.851c-0.962,0.971-1.406,2.265-1.334,3.535c1.259,0.072,2.542-0.376,3.503-1.346 c0.962-0.97,1.406-2.265,1.334-3.535C684.44,388.432,683.158,388.881,682.196,389.851z"/>
</g>
<g>
<path fill="#C68F30" d="M676.696,397.521c0.78,1.124,1.966,1.791,3.218,1.94c0.289-1.239,0.075-2.591-0.706-3.716 c-0.78-1.124-1.966-1.79-3.218-1.94C675.701,395.044,675.916,396.397,676.696,397.521z"/>
<path fill="#C68F30" d="M681.851,396.216c-1.114,0.787-1.774,1.984-1.922,3.248c1.227,0.292,2.568,0.075,3.682-0.712 c1.114-0.787,1.774-1.984,1.922-3.248C684.306,395.212,682.965,395.428,681.851,396.216z"/>
</g>
<g>
<path fill="#C68F30" d="M675.108,402.806c0.575,1.244,1.628,2.108,2.836,2.474c0.498-1.169,0.519-2.539-0.055-3.783 c-0.575-1.244-1.628-2.108-2.836-2.474C674.555,400.192,674.534,401.562,675.108,402.806z"/>
<path fill="#C68F30" d="M680.409,402.423c-1.232,0.58-2.089,1.643-2.452,2.862c1.158,0.503,2.516,0.524,3.748-0.056 c1.233-0.58,2.089-1.643,2.452-2.862C682.999,401.865,681.642,401.843,680.409,402.423z"/>
</g>
<g>
<path fill="#C68F30" d="M672.628,407.734c0.352,1.326,1.241,2.361,2.367,2.934c0.691-1.064,0.948-2.409,0.596-3.735 c-0.352-1.326-1.241-2.361-2.367-2.934C672.533,405.063,672.276,406.408,672.628,407.734z"/>
<path fill="#C68F30" d="M677.915,408.286c-1.314,0.355-2.34,1.252-2.907,2.389c1.054,0.698,2.387,0.957,3.701,0.602 c1.314-0.355,2.34-1.252,2.907-2.388C680.561,408.19,679.228,407.931,677.915,408.286z"/>
</g>
<g>
<path fill="#C68F30" d="M669.331,412.155c0.118,1.367,0.816,2.543,1.826,3.304c0.864-0.927,1.348-2.206,1.23-3.574 c-0.119-1.367-0.816-2.543-1.826-3.304C669.697,409.508,669.213,410.788,669.331,412.155z"/>
<path fill="#C68F30" d="M674.442,413.626c-1.355,0.12-2.52,0.823-3.274,1.843c0.918,0.872,2.186,1.361,3.541,1.241 c1.355-0.12,2.52-0.823,3.274-1.843C677.065,413.995,675.797,413.506,674.442,413.626z"/>
</g>
<g>
<path fill="#C68F30" d="M665.318,415.936c-0.119,1.367,0.366,2.647,1.23,3.574c1.01-0.761,1.707-1.936,1.826-3.304 c0.119-1.367-0.366-2.647-1.23-3.574C666.133,413.393,665.436,414.569,665.318,415.936z"/>
<path fill="#C68F30" d="M670.098,418.28c-1.355-0.12-2.623,0.369-3.541,1.241c0.754,1.02,1.919,1.723,3.274,1.843 c1.355,0.12,2.623-0.369,3.541-1.241C672.618,419.103,671.453,418.399,670.098,418.28z"/>
</g>
<g>
<path fill="#C68F30" d="M660.709,418.961c-0.352,1.326-0.095,2.671,0.596,3.735c1.126-0.573,2.015-1.608,2.367-2.934 c0.352-1.326,0.095-2.671-0.596-3.735C661.95,416.6,661.061,417.635,660.709,418.961z"/>
<path fill="#C68F30" d="M665.014,422.107c-1.314-0.355-2.646-0.096-3.701,0.602c0.567,1.136,1.593,2.033,2.907,2.388 c1.314,0.355,2.647,0.096,3.701-0.602C667.353,423.359,666.327,422.462,665.014,422.107z"/>
</g>
<g>
<path fill="#C68F30" d="M655.646,421.139c-0.575,1.244-0.553,2.614-0.055,3.783c1.207-0.366,2.261-1.23,2.835-2.474 c0.575-1.244,0.553-2.614,0.056-3.783C657.274,419.031,656.221,419.895,655.646,421.139z"/>
<path fill="#C68F30" d="M659.344,424.991c-1.233-0.58-2.59-0.558-3.748-0.056c0.363,1.218,1.219,2.282,2.452,2.862 c1.233,0.58,2.59,0.559,3.748,0.056C661.433,426.635,660.577,425.572,659.344,424.991z"/>
</g>
</g>
<path fill="#C68F30" d="M651.168,356.883c1.278,0.47,2.628,0.329,3.739-0.274c-0.467-1.182-1.412-2.166-2.69-2.635 c-1.278-0.47-2.628-0.329-3.739,0.274C648.945,355.43,649.89,356.414,651.168,356.883z"/>
</g>
<path fill="#C68F30" d="M681.263,390.915v0.362c0,0.702-0.042,1.404-0.084,2.107c-0.105,1.383-0.274,2.766-0.548,4.107v0.021 c-0.126,0.681-0.274,1.341-0.443,2c-0.337,1.383-0.78,2.745-1.286,4.065c-0.232,0.596-0.485,1.192-0.738,1.787 c-0.611,1.341-1.286,2.639-2.066,3.894c0,0,0,0.021-0.021,0.021c-0.274,0.511-0.59,1-0.928,1.489 c-0.844,1.234-1.75,2.426-2.741,3.554c-0.359,0.426-0.738,0.83-1.139,1.234c-1.012,1.064-2.087,2.085-3.226,3.022 c-0.443,0.362-0.907,0.723-1.371,1.043h-0.021c-0.633,0.489-1.244,0.936-1.919,1.362c-0.527,0.362-1.096,0.702-1.666,1.021 c-0.527,0.319-1.075,0.617-1.645,0.894c-1.202,0.617-2.425,1.192-3.732,1.681h-0.021c-0.274,0.106-0.548,0.191-0.823,0.298 c-0.358,0.128-0.717,0.255-1.139,0.404h-0.021c-2.72,0.936-6.621,2.256-10.711,4.724c-0.169,0.085-0.337,0.191-0.527,0.319 c-1.581,0.979-3.205,2.128-4.765,3.532l-0.401-0.404c1.518-1.341,3.078-2.49,4.639-3.447c0.169-0.128,0.337-0.234,0.527-0.341 c4.217-2.575,8.265-3.958,11.07-4.916c0.422-0.149,0.801-0.277,1.139-0.404c0.105-0.043,0.19-0.064,0.295-0.106 c1.455-0.532,2.846-1.128,4.196-1.809c0.548-0.298,1.075-0.575,1.603-0.894c0.021,0,0.021-0.021,0.021-0.021 c0.675-0.383,1.328-0.787,1.961-1.213c0.527-0.341,1.054-0.702,1.56-1.085c0.527-0.383,1.033-0.787,1.539-1.213 c1.054-0.872,2.066-1.809,3.015-2.809c0.464-0.489,0.885-0.958,1.328-1.468l0.021-0.021c0.886-1.043,1.708-2.128,2.467-3.234 c0.379-0.532,0.717-1.085,1.054-1.66c0.717-1.17,1.349-2.383,1.919-3.639c0.232-0.532,0.464-1.043,0.675-1.596v-0.021 c0.527-1.341,0.97-2.724,1.328-4.128c0.148-0.532,0.253-1.064,0.359-1.596c0-0.021,0-0.021,0-0.043 c0.316-1.426,0.527-2.915,0.632-4.405c0.021-0.447,0.042-0.894,0.063-1.362V392c0.021-0.362,0.021-0.702,0.021-1.085 c0-1.234-0.063-2.469-0.211-3.681c-0.042-0.468-0.105-0.936-0.169-1.404c-0.232-1.575-0.569-3.107-1.033-4.618 c-0.127-0.489-0.274-0.979-0.443-1.447c-0.506-1.468-1.097-2.873-1.792-4.256c-0.232-0.511-0.506-1-0.78-1.49 c-0.717-1.277-1.497-2.511-2.383-3.703c-0.358-0.511-0.738-1-1.139-1.49c-0.886-1.085-1.834-2.128-2.846-3.107 c-0.464-0.447-0.928-0.894-1.434-1.298l-0.021-0.021c-1.033-0.915-2.108-1.745-3.247-2.511c-0.506-0.383-1.033-0.723-1.56-1.043 c-1.181-0.745-2.404-1.405-3.69-1.979c-0.485-0.255-0.97-0.468-1.476-0.66l-0.021-0.021c-1.286-0.532-2.615-1-3.985-1.383 c-0.928-0.277-1.877-0.511-2.847-0.702l0.106-0.532c1.033,0.213,2.045,0.468,3.036,0.766c1.202,0.319,2.361,0.723,3.5,1.192 h0.021c0.633,0.255,1.244,0.532,1.856,0.809c1.328,0.617,2.615,1.319,3.858,2.085c0.506,0.298,0.991,0.638,1.476,0.958 c1.244,0.872,2.425,1.766,3.542,2.766l0.021,0.021c0.401,0.362,0.801,0.745,1.202,1.128c1.075,1.021,2.066,2.107,2.994,3.277 c0.38,0.447,0.738,0.915,1.075,1.383c0.843,1.128,1.602,2.298,2.298,3.532v0.021c0.337,0.553,0.654,1.128,0.928,1.724 c0.632,1.234,1.181,2.511,1.623,3.83v0.021c0.253,0.66,0.464,1.298,0.654,1.958c0.401,1.298,0.696,2.639,0.928,3.979 c0.126,0.702,0.232,1.404,0.295,2.107C681.2,388.382,681.263,389.638,681.263,390.915z"/>
</g>
<path fill="#C68F30" d="M631.205,378.402c3.272-1.607,5.856-2.526,10.046-7.521h10.219v32.493h5.339v7.635h-22.963v-7.635h5.741 v-21.298l-5.741,2.698L631.205,378.402z"/>
</g>
<path opacity="0.5" fill="#FFFFFF" d="M479.83,355.735c-18.984,5.731-6.351,39.969-21.091,67.867 C444,451.5,443.957,462.5,454.728,461s28.067-22.521,32.919-59.011S485.901,353.903,479.83,355.735z"/>
<circle opacity="0.5" fill="#FFFFFF" cx="436.989" cy="469.5" r="9.077"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

BIN
assets/img/banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

90
assets/img/bored.svg Normal file
View file

@ -0,0 +1,90 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 1170 780" style="enable-background:new 0 0 1170 780;" xml:space="preserve">
<style type="text/css">
.st0{fill:#2894F5;}
.st1{fill:#0A4A6F;}
.st2{fill:#FFB3A6;}
.st3{fill:#F49E92;}
.st4{fill:#FFD0C5;}
.st5{fill:#1E0F00;}
.st6{fill:#094A73;}
.st7{fill:#FFFFFF;}
.st8{fill:#CCE9FF;}
.st9{clip-path:url(#SVGID_2_);fill:#FFBE55;}
.st10{fill:#FFBE55;}
</style>
<g id="Layer_2">
</g>
<g id="Object">
<path class="st0" d="M578.3,455.9h-10.4c-91.7,0-166,74.3-166,166v32.9c0,5.3,4.3,9.6,9.6,9.6h341c9.5,0,17.1-7.7,17.1-17.1v0 C769.6,541.6,683.9,455.9,578.3,455.9z"/>
<path class="st1" d="M411.5,664.3h341c4.9,0,9.4-2.1,12.5-5.5l-31.9-22.2c0-78.9-63.9-142.8-142.8-142.8h-4.2 c-68.4,0-123.9,55.5-123.9,123.9l-57.8,43.4C406.1,663.1,408.7,664.3,411.5,664.3z"/>
<ellipse transform="matrix(0.7117 -0.7025 0.7025 0.7117 -205.2894 558.1597)" class="st0" cx="577.3" cy="529.2" rx="53.8" ry="67.8"/>
<ellipse transform="matrix(0.7117 -0.7025 0.7025 0.7117 -203.5248 557.4094)" class="st2" cx="577.3" cy="526.6" rx="45.1" ry="56.8"/>
<path class="st3" d="M565.7,475.3c-21.3,0-36.3,13.7-39.1,33.1c9,25,34.2,44.2,59.4,44.2c21.3,0,36.3-13.7,39.1-33.1 C616,494.5,590.9,475.3,565.7,475.3z"/>
<g>
<path class="st2" d="M686.2,424.7l-2.3-2.6l-3.9,29.5l-1.1,27.9l2.3-4.6c4.3-8.8,6.8-18.3,7.4-28.1l0.8-12.5 C689.6,430.8,688.5,427.3,686.2,424.7z"/>
<path class="st2" d="M660.1,410.6l-5.5,18.1l-21.4,31.9c-8.1,12.3-10.8,27.4-7.5,41.8l1.2,5.2c0.4,1.6,1,3.1,1.8,4.5l65.1,114 c11.9,20.9,32.9,35,56.7,38.1h0c20.5,2.7,37.9-15.1,34.9-35.6l-0.6-3.8c-2.9-19.4-13.1-37-28.4-49.1l-86.6-68.4l13.6-41l2.8-43.9 l-6.5-22.1l0,0c-3.3,5-4.6,11.1-3.6,17.1l1,6.1l-4.8,24.9l3.3-25.1l-5.1-23.9l-0.8,1.9c-2.2,4.8-2.9,10.1-2.1,15.3l-0.3,7.2 l-8,21.5l5-21.1l0.2-18.7l0,0C662.3,406.4,660.8,408.3,660.1,410.6z"/>
<path class="st4" d="M756.4,575.7l-86.6-68.4l0,0l0,0c0,0,99.6,91.6,113,139.3c2.5-5.4,3.6-11.5,2.6-18l-0.6-3.8 C781.9,605.4,771.8,587.8,756.4,575.7z"/>
</g>
<path class="st5" d="M650.8,404.5l-9.3,2.9L615.1,323c-5.8-18.7,4.6-38.6,23.3-44.5l19.9-6.2l23,73.7 C689,370.6,675.3,396.8,650.8,404.5z"/>
<path class="st4" d="M579.5,512.9L579.5,512.9c-41.2,0-74.5-33.4-74.5-74.5v-85.8c0-39.3,31.8-71.1,71.1-71.1H588 c45,0,81.5,36.5,81.5,81.5v60C669.5,472.6,629.2,512.9,579.5,512.9z"/>
<path class="st2" d="M588,281.4h-11.9c-23.5,0-44.4,11.4-57.3,29v33c0,41.2,33.4,74.5,74.5,74.5h0c32.1,0,60.2-16.8,76.2-42.1v-13 C669.5,317.9,633,281.4,588,281.4z"/>
<path class="st5" d="M514.6,416.4l-9.3,2.9l-26.4-84.3c-5.8-18.7,4.6-38.6,23.3-44.5l19.9-6.2l23,73.7 C552.8,382.5,539.2,408.7,514.6,416.4z"/>
<path class="st6" d="M493.1,343.1c-5.8-18.7,4.6-38.6,23.3-44.5l9.3-2.9l-3.6-11.5l-19.9,6.2c-18.7,5.8-29.1,25.8-23.3,44.5 l26.4,84.3l9.3-2.9c0.4-0.1,0.9-0.3,1.3-0.4L493.1,343.1z"/>
<path class="st5" d="M684,330.2H507.6v-22c0-32.7,26.5-59.2,59.2-59.2h36.1C647.7,249,684,285.4,684,330.2L684,330.2z"/>
<path class="st5" d="M536.9,278.2l173.3-32.8v0c4.4,23-10.8,45.2-33.8,49.6l-89.9,17C563.5,316.3,541.3,301.2,536.9,278.2 L536.9,278.2z"/>
<path class="st6" d="M612.5,263.7l69.3-13.1v0c1.7,9.2-4.3,18.1-13.5,19.8l-36,6.8C623.1,279,614.3,272.9,612.5,263.7L612.5,263.7z "/>
<path class="st5" d="M552.5,282.7l93.6-55.1v0c7.3,12.4,3.2,28.4-9.3,35.8L588.3,292C575.8,299.3,559.8,295.2,552.5,282.7 L552.5,282.7z"/>
<ellipse class="st4" cx="507.2" cy="407.6" rx="19" ry="23.1"/>
<path class="st2" d="M506.8,394c-5.6,0-10.3,5-11.1,11.6c1.7-1.2,3.6-1.8,5.6-1.8c6.2,0,11.2,6.1,11.2,13.7c0,0.7,0,1.4-0.1,2.1 c3.3-2.4,5.6-6.8,5.6-11.8C518,400.1,513,394,506.8,394z"/>
<g>
<path class="st2" d="M499.1,435.2l2.6-2.3v29.8l-2.6,27.8l-1.6-4.9c-3.1-9.3-4.4-19.1-3.7-28.8l0.9-12.5 C494.8,440.8,496.4,437.5,499.1,435.2z"/>
<path class="st4" d="M526.8,424.6l3.1,18.7l17.1,34.4c6.4,13.3,7.1,28.6,2,42.4l-1.9,5c-0.6,1.5-1.4,2.9-2.3,4.2l-79.6,104.6 c-14.6,19.1-37.2,30.4-61.3,30.4h0c-20.8,0-35.8-19.9-30.1-39.9l1.1-3.7c5.4-18.9,17.8-35,34.7-45l95-56.6l-8.2-42.4l3-43.9 l9.3-21.1l0,0c2.6,5.4,3.1,11.6,1.4,17.4l-1.8,5.9l1.5,25.3v-25.3L518,412l0.6,1.9c1.6,5,1.6,10.4,0.1,15.5l-0.7,7.1l5.2,22.3 l-2.2-21.6l2.2-18.6l0,0C525.1,420.2,526.4,422.3,526.8,424.6z"/>
<path class="st2" d="M547.2,525.1l1.9-5c5.1-13.8,4.4-29.1-2-42.4l-17.1-34.4l-3.1-18.7c-0.4-2.4-1.7-4.5-3.6-5.9l-0.3,2.7 c0.9,3,3.2,10.9,2.6,17.3c-0.7,8.2,23.1,55.8,11.2,80.4c-11.9,24.6-100.5,148.2-160.4,128.4c5.2,9.8,15.4,16.7,27.7,16.7h0 c24.1,0,46.7-11.2,61.3-30.4l79.6-104.6C545.8,528,546.6,526.6,547.2,525.1z"/>
</g>
<path class="st2" d="M515.8,418.3c0.5,4.2,0.8,11-1.5,17.5c0.7,6.7,3.5,17.5,8.8,22.5v0l-5.1-21.8l0.7-7.1c1.5-5,1.5-10.4-0.1-15.5 L518,412L515.8,418.3z"/>
<path class="st2" d="M505.4,432.9c0,0-0.7,20.7,4.4,26.7l-1.4-24.5l1.8-5.9c1.6-5.5,1.3-11.4-1-16.6 C509,415.3,508.7,427.6,505.4,432.9z"/>
<path class="st2" d="M619.4,464.9c-11.5,0-22.4,7.8-24.3,17.5c0,0.1,0,0.1,0,0.2c-0.3,1.5,1.7,2.4,2.7,1.2 c4.6-5.5,12.2-9.2,20.2-9.2c7.5,0,13.4,3.3,16.1,8.3c0.7,1.2,2.5,1,2.8-0.4c0,0,0,0,0,0C638.7,472.7,630.9,464.9,619.4,464.9z"/>
<g>
<g>
<path class="st1" d="M556.9,161.8c-2.2-10.8-2-19.3,0.7-25.5c2.6-6.2,8.3-13.9,16.8-23.1c4.5-4.4,7.7-9.2,9.7-14.7 c2-5.4,2.3-11.3,1-17.6c-1.4-6.5-4.2-11.3-8.5-14.5c-4.3-3.1-9.7-4-16.1-2.7c-5.2,1.1-9.2,3.6-12,7.5c-2.8,3.9-3.6,9-2.5,15.3 l-38.2,8.1l-0.4-0.6c-3.6-16.1-1.1-29.3,7.7-39.6c8.8-10.3,21.8-17.3,39-20.9c18.4-3.9,33.9-2.3,46.5,4.7 c12.5,7.1,20.5,18.5,23.8,34.3c2.1,9.7,1,19.2-3,28.6c-4.1,9.4-10,17.3-18,23.8c-4.3,4.3-6.9,8.5-7.8,12.6 c-0.9,4.1-0.7,9.4,0.6,15.8L556.9,161.8z M606.3,201.8l-39,8.3l-6.6-31.4l39-8.3L606.3,201.8z"/>
</g>
<g>
<path class="st1" d="M694.6,225.3l-12.5-17.6l14.1-10l12.5,17.6L694.6,225.3z M703.9,192.2c4.9-3.4,9.1-5.1,12.8-5.1 c3.7,0,8.7,1.1,15.1,3.4c3.1,1.3,6.2,1.9,9.4,1.7c3.1-0.2,6.1-1.3,8.9-3.3c2.9-2.1,4.7-4.5,5.3-7.3c0.6-2.8-0.1-5.7-2.1-8.6 c-1.7-2.3-3.8-3.8-6.3-4.3c-2.5-0.6-5.3,0.1-8.1,2.1l-12.2-17.2l0.2-0.3c7.2-5.2,14.3-6.8,21.3-4.6c7,2.1,13.2,7.1,18.7,14.8 c5.9,8.3,8.4,16.3,7.6,24c-0.8,7.7-4.8,14.1-11.9,19.2c-4.4,3.1-9.3,4.6-14.8,4.6c-5.5,0-10.7-1.3-15.7-3.8 c-3-1.2-5.7-1.6-7.9-1.2c-2.3,0.4-4.8,1.6-7.7,3.7L703.9,192.2z"/>
</g>
<g>
<path class="st1" d="M477,228.4c-4.3-4.1-6.8-7.9-7.6-11.5c-0.7-3.6-0.6-8.7,0.4-15.4c0.7-3.3,0.6-6.5-0.2-9.5 c-0.8-3-2.5-5.7-5-8.1c-2.6-2.5-5.4-3.7-8.2-3.8c-2.9-0.1-5.5,1.2-8,3.8c-2,2.1-3,4.4-3,7c0,2.6,1.2,5.1,3.6,7.6l-14.5,15.4 l-0.4-0.2c-6.6-6-9.5-12.6-8.8-19.9c0.7-7.3,4.3-14.4,10.8-21.3c7-7.4,14.3-11.5,22.1-12.2c7.7-0.7,14.8,1.9,21.1,7.9 c3.9,3.7,6.4,8.2,7.5,13.6c1.1,5.4,0.9,10.8-0.6,16.1c-0.6,3.2-0.4,5.9,0.4,8c0.8,2.1,2.6,4.4,5.1,6.8L477,228.4z M511.2,231 l-14.8,15.7l-12.6-11.9l14.8-15.7L511.2,231z"/>
</g>
</g>
<path class="st7" d="M673.3,509.9c0,0,5.8-5,13.3-1.5s14.8,9.8,15,15.8s-8.1,39-45.4,36l0,0c-4.2-1.4-7.7-4.5-9.7-8.5l-1.2-2.4 c-1-2,0.4-4.4,2.7-4.4c6.7-0.1,18.9-1.8,27.8-11.1C688.8,520.1,673.3,509.9,673.3,509.9z"/>
<path class="st8" d="M680.9,507.2c-4.5,0.1-7.6,2.7-7.6,2.7s15.5,10.3,2.5,23.8c-9,9.4-21.1,11-27.8,11.1c-2.2,0-3.7,2.4-2.7,4.4 l1.2,2.4c0.4,0.8,0.9,1.6,1.4,2.3c32.6-0.6,40.1-30.5,39.8-36.1C687.6,514.1,684.7,510.3,680.9,507.2z"/>
<circle class="st8" cx="683.4" cy="546.5" r="2.1"/>
<circle class="st8" cx="665" cy="556.1" r="2.1"/>
<circle class="st8" cx="675.4" cy="552.6" r="2.1"/>
<g id="Desk">
<g>
<defs>
<path id="SVGID_1_" d="M915,663.4H309.4l0,0c44.2,32.2,94.5,50.5,139.3,50.5h1.3l0,0c22,21.6,50.8,34.7,76.1,34.7h241.6 c25.3,0,43.4-13.1,47.8-34.7v0h1.3C861.6,713.8,897,695.6,915,663.4L915,663.4z"/>
</defs>
<use xlink:href="#SVGID_1_" style="overflow:visible;fill:#FFBE55;"/>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st9" d="M915,663.4H309.4l0,0c44.2,32.2,94.5,50.5,139.3,50.5h1.3l0,0c22,21.6,50.8,34.7,76.1,34.7h241.6 c25.3,0,43.4-13.1,47.8-34.7v0h1.3C861.6,713.8,897,695.6,915,663.4L915,663.4z"/>
<line class="st9" x1="324.6" y1="694.5" x2="905.5" y2="694.5"/>
<line class="st9" x1="370.8" y1="706" x2="477.2" y2="706"/>
<line class="st9" x1="497" y1="706" x2="573.2" y2="706"/>
<line class="st9" x1="315" y1="678.2" x2="497" y2="678.2"/>
<line class="st9" x1="506" y1="725.1" x2="754.1" y2="725.1"/>
<line class="st9" x1="664.6" y1="738.3" x2="769.9" y2="738.3"/>
<line class="st9" x1="789.6" y1="674.6" x2="924.1" y2="674.6"/>
<line class="st9" x1="754.1" y1="674.6" x2="774.8" y2="674.6"/>
<line class="st9" x1="821.4" y1="684.3" x2="919.3" y2="684.3"/>
<line class="st9" x1="515" y1="678.2" x2="538.1" y2="678.2"/>
<line class="st9" x1="477.2" y1="738.3" x2="584.7" y2="738.3"/>
</g>
<line class="st10" x1="281" y1="663.8" x2="974" y2="663.8"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

67
assets/img/champion.svg Normal file
View file

@ -0,0 +1,67 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.11;fill:#2A94F4;}
.st1{opacity:0.11;fill:#5ECAF2;}
.st2{fill:#FCD2B1;}
.st3{fill:#0B4870;}
.st4{fill:#FFE3CA;}
.st5{fill:#0E538C;}
.st6{fill:#2A94F4;}
.st7{fill:#FFBE55;}
.st8{opacity:0.5;fill:#FFBE55;}
.st9{fill:#FFB127;}
</style>
<g id="Background">
<path class="st0" d="M699.2,1008.1c-121.7-128.9-68.6-290.4,76.6-463.5s16.2-143.8,21.1-304.6c8.4-275.4,362-330.3,400.3-77.4 c38.3,252.9,12.5,317.2-78.3,450.2s197.8,8.8,197.7,255.8C1316.6,994.2,820.8,1136.9,699.2,1008.1z"/>
<path class="st1" d="M1183,1067.6c0,6.1-82.2,11.6-183.8,12.3c-101.5,0.7-183.9-3.7-183.9-9.8c0-6.1,82.2-11.6,183.8-12.3 C1100.6,1057.2,1182.9,1061.5,1183,1067.6z"/>
</g>
<g id="Character">
<g>
<g>
<g>
<path class="st2" d="M920,993.4c0,0-1.1,17.3,1.1,30.6c3.1,9,1.8,12,1.8,12l-35.5,2.3c0,0,14.3-10,7.8-45.9 C888.7,956.3,920,993.4,920,993.4z"/>
<path class="st3" d="M922,1026.7c0,0-14.4,8-30.1,6c-16.5,10.9-28.5,16-44.3,20.4c-15.8,4.5-10.9,17.3,16.3,11.3 c27.2-6,46.6-7.6,52.8-8c6.2-0.3,16.1-1,15.9-5.3C932.5,1046.8,926.8,1024.5,922,1026.7z"/>
<g>
<path class="st2" d="M1100.7,967.3c0,0,6.4,16.1,14.1,27.1c6.6,6.8,6.7,10,6.7,10l-31.1,17.3c0,0,8.7-15.1-12.7-44.9 C1056.5,947.2,1100.7,967.3,1100.7,967.3z"/>
<path class="st3" d="M1116.8,996.5c0,0-9.6,13.4-24.6,18.3c-10.2,16.9-18.9,26.6-31.2,37.4c-12.4,10.8-2.5,20.3,19.6,3.2 c22-17.1,38.9-26.9,44.3-29.8c5.5-2.9,14.1-7.8,12.1-11.6C1134.8,1010.2,1120.2,992.5,1116.8,996.5z"/>
</g>
<path class="st4" d="M865.4,302.7c0,0,10.3-18.5,15-26.1c4.8-7.7,25.6,11.2,25.6,11.2s1.9,8.2-8.1,13.6 c-10.1,5.4-16.2,5.3-18.2,12.1c-2.1,6.8-14.4-2.6-14.4-2.6L865.4,302.7z"/>
<path class="st4" d="M1007.3,307.1c0,0-9.4-20.1-13.8-28c-4.4-7.9-26,10-26,10s-2.3,8.1,7.5,14c9.8,5.8,15.9,6,17.7,12.9 c1.8,6.9,14.5-2,14.5-2L1007.3,307.1z"/>
<path class="st4" d="M891.2,294.7c0,0,6.8-1.6,8.1-4.5c1.3-2.9,3.1-7.5,6.3-6.9c4.1,0.8,0.6,10.2-1.4,12.6"/>
<path class="st4" d="M982,296.7c0,0-6.7-1.9-7.9-4.9c-1.2-3-2.8-7.6-6-7.2c-4.2,0.6-0.3,11.4,1.6,13.8"/>
<path class="st5" d="M935.3,692c0,0,31.2,113,49.9,143c18.7,30,101.1,160.5,101.1,160.5s14.8-8.2,23.2-12.2 c-41.1-105.3-53.1-134.9-78.8-175.8c-15-59.6-5.3-139.7-42.4-190.9c-11.3-15.6-62.8,13.9-62.8,13.9L935.3,692z"/>
<path class="st5" d="M883,626.5c0,0-4.6,161.7-4.6,192.4c0,30.6,15.4,194.9,15.4,194.9s11.1,5.3,29.5-4.5 c0.6-37.8,7.1-93.8,1.7-182.3c19.7-84.2,31.6-167.1,31.6-167.1l-1.9-43.9L883,626.5z"/>
<path class="st3" d="M898.9,402.7c0,0-17.6,15.5-10.7,48.8c2.3,9.8-10.8,24.3-19.6,31.7c-8.8,7.5-16.4,24.4-8,39.5 c8.3,15.1,10.4,16.2,6.5,30.9c-3.9,14.7-4.1,45.3,37.4,39.1c41.5-6.2,41.1-107.8,41.1-107.8l-5.5-44.1L898.9,402.7z"/>
<path class="st4" d="M961.1,460.3c0,0-1.8,1-4.7,2.3c0,1.5,0.1,2.9,0,4.3c0.1,8.6,0,14.2,0,14.2c-6.6,11-18.9,11.2-24.6,8.5 c-0.6-0.3-1.1-0.6-1.5-0.9c-2.2-1.6-3.2-4.4-2.7-7c0.8-4.3,0.9-8.3,0.8-12c-5.7,0.2-11.6-0.5-17.2-2.9 c-22-9.2-9.4-69.2-9.4-69.2s37.4-15.9,49.2-0.5C962.6,412.6,961.1,460.3,961.1,460.3z"/>
<path class="st3" d="M939.4,370.8c-10.2,1.7-21.8,9-26.8,18.1c-2.9,5.2,14.2,9.8,14.4,17.4c0.4,14.8,17.2,20.6,30.5,26.1 c3.5,1.4,8.2,7.8,0.1,15.5c0,0-11.8,10.9-10.4,24.3c1.2,11.3,22,9.3,22,9.3s-29.6,89.4-25.9,102c2,6.7,59.6,41.6,99.1,8.5 c16.2-13.6,18.3-39.1,4.5-55.2c-10.5-12.2-10.4-20.5-9.6-23.6c10.7-38.4-8.8-64.6-30.8-75.3c-8.9-4.3-15-12.8-15.5-22.7 c-0.6-10.5-3.3-23.4-12.4-31.9C965.6,371.2,951.5,368.7,939.4,370.8z"/>
<path class="st3" d="M888.5,379.8c-8.4,6.8-8.1,19.8,0.9,25.8c9,6,23.6,9.6,45.6-1.6c26.2-13.3,18.2-34,0.7-32.4 C902.5,382.9,898.5,371.7,888.5,379.8z"/>
<path class="st6" d="M927.4,482.4c0,0,1,10.6,15.4,8.3c7.5-2.2,8.9-7.4,10.3-11.2c5.9,0.4,20.4,0.6,32.5-16.2 c9.3-13,23.1-35.4,29.6-47.1c2.7-4.8,3.4-10.4,2-15.7c-6.5-24.7-30.6-85.9-30.6-85.9l23.9-8.7c0,0,24.4,60.3,36.7,90.9 c4,10,3.6,21.1-1.2,30.7c-13,26-38.1,70.4-49.9,93.2c-3.7,13.7,15.5,110.6,15.5,110.6s-52.8,32.5-128.8,8.6 c-0.1-29.1,3.3-82.5,2.5-112.5c-0.8-30.7-16.8-27.8-57.7-112.1c-3.9-8-5-17.1-3.1-25.9c4.2-19.5,18-52.3,40.8-86.8 c16.2,7.3,18.8,9.9,18.8,9.9s-21.4,53.7-28.9,75.9c-1.5,4.6-1.1,9.6,1.2,13.9C868.7,425.1,905.9,482.2,927.4,482.4z"/>
</g>
</g>
<g>
<path class="st7" d="M947.7,205.4l0.5-83.8l-18.7-0.1l-0.4,76.1l0,0c0,0,0,0.2,0,0.4l0,6.2c-0.4,10.8-3.1,31.3-17.6,31.2 l53.5,0.3C950.9,235.6,948.1,216.5,947.7,205.4z"/>
<g>
<g>
<path class="st7" d="M857.8,35.7c4.1,2.2,7.9,5.2,10.9,8.9c7.8,9.5,9.3,21.4,3.9,32c-2.1,4.2-5.6,7.3-9.8,8.8 c-1.9,0.8-4,1.2-6.2,1.2c-7.2,0.2-14.4-3.5-17.8-9.2c-2.8-4.8-2.8-10.4,0.1-15.5c1.9-3.3,6.2-4.5,9.5-2.5 c3.3,1.9,4.5,6.2,2.5,9.5c-0.5,0.8-0.4,1.1-0.2,1.4c0.7,1.2,3.1,2.4,5.4,2.4c2.5-0.1,3.5-1.5,4-2.5c0.1-0.2,0.2-0.3,0.2-0.5 c3.1-6.5,0.7-11.9-1.6-15.1c-0.3-0.4-0.6-0.8-0.9-1.1c-5.6-6.8-15.4-10.1-23.2-7.8c-9,2.7-14.9,12.5-16.5,27.6 c-3.3,29.1,17.2,49,29.7,58.2c13.6,10,27.1,15.1,36.3,17c5.2,1.1,9,1.2,10.6,0.5c3.5-1.5,7.6,0.1,9.1,3.6 c1,2.1,0.7,4.5-0.3,6.3c-0.7,1.2-1.8,2.3-3.2,2.9c-1.6,0.7-3.5,1.2-5.6,1.4c-13.7,1.5-36.6-6.7-55.1-20.4 c-25.8-19-38.3-44.1-35.3-70.9c3.2-28.4,17.9-36.9,26.4-39.4C839.6,29.8,849.4,31.2,857.8,35.7z"/>
</g>
<path class="st8" d="M904,152.6c1,2.1,0.7,4.5-0.3,6.3c-0.7,1.2-1.8,2.3-3.2,2.9c-1.6,0.7-3.5,1.2-5.6,1.4 c-3.9-4.4-7.4-9.3-10.6-14.6c5.2,1.1,9,1.2,10.6,0.5C898.4,147.5,902.5,149.1,904,152.6z"/>
</g>
<g>
<g>
<path class="st7" d="M1017.2,35.6c-4.2,2.1-8,5-11.2,8.5c-8.1,9.2-10,21.1-4.9,31.9c2,4.3,5.3,7.4,9.5,9.1 c1.9,0.8,4,1.3,6.1,1.4c7.2,0.4,14.5-3.1,18.1-8.6c3-4.7,3.1-10.3,0.3-15.5c-1.8-3.4-6-4.6-9.4-2.8c-3.3,1.8-4.6,6-2.8,9.4 c0.5,0.9,0.3,1.1,0.2,1.4c-0.8,1.1-3.2,2.3-5.5,2.2c-2.5-0.2-3.5-1.6-4-2.7c-0.1-0.2-0.2-0.3-0.2-0.5 c-2.9-6.6-0.3-11.9,2.1-15.1c0.3-0.4,0.6-0.7,0.9-1.1c5.8-6.6,15.7-9.6,23.4-7.1c8.9,3,14.5,12.9,15.7,28.1 c2.4,29.2-18.7,48.4-31.5,57.2c-13.9,9.6-27.6,14.3-36.8,15.9c-5.3,1-9.1,0.9-10.6,0.2c-3.5-1.7-7.6-0.2-9.2,3.3 c-1,2.1-0.9,4.4,0.1,6.3c0.7,1.3,1.7,2.3,3.1,2.9c1.6,0.8,3.5,1.3,5.6,1.5c13.6,1.9,36.8-5.6,55.7-18.7 c26.3-18.2,39.6-43,37.4-69.8c-2.4-28.5-16.8-37.4-25.2-40.2C1035.6,30.3,1025.7,31.3,1017.2,35.6z"/>
</g>
<path class="st8" d="M967.5,151c-1,2.1-0.9,4.4,0.1,6.3c0.7,1.3,1.7,2.3,3.1,2.9c1.6,0.8,3.5,1.3,5.6,1.5 c4.1-4.3,7.7-9.1,11-14.2c-5.3,1-9.1,0.9-10.6,0.2C973.3,146.1,969.1,147.6,967.5,151z"/>
</g>
<path class="st7" d="M1008.9,25.6c0,0,0,5-0.4,13.2c-1.7,32.5-10.6,115.7-58.3,139.4l-2.3,2c-2.9,2.5-6.7,3.8-10.6,3.6l-2.4-0.1 c-3.4-0.1-6.6-1.3-9.2-3.4l-2.7-2.2c-46.8-23.9-55.2-105.4-56.7-138.8c-0.4-9-0.3-14.5-0.3-14.5c0-8,9.4-10.1,9.4-10.1l124,0.7 C999.6,15.4,1009,17.6,1008.9,25.6z"/>
<path class="st7" d="M1001.6,36.2l-128.3-0.7c-7.9,0-14.2-6.5-14.2-14.4l0,0c0-7.9,6.5-14.2,14.4-14.2l128.3,0.7 c7.9,0,14.2,6.5,14.2,14.4l0,0C1016,29.9,1009.5,36.3,1001.6,36.2z"/>
<path class="st7" d="M1001.6,36.2l-128.3-0.7c-7.9,0-14.2-6.5-14.2-14.4l0,0c0-7.9,6.5-14.2,14.4-14.2l128.3,0.7 c7.9,0,14.2,6.5,14.2,14.4l0,0C1016,29.9,1009.5,36.3,1001.6,36.2z"/>
<path class="st7" d="M1001.6,36.2l-128.3-0.7c-7.9,0-14.2-6.5-14.2-14.4l0,0c0-7.9,6.5-14.2,14.4-14.2l128.3,0.7 c7.9,0,14.2,6.5,14.2,14.4l0,0C1016,29.9,1009.5,36.3,1001.6,36.2z"/>
<path class="st5" d="M997.6,306.9l-119.7-0.7l0.3-57.1c0-3.7,3-6.6,6.7-6.6l106.4,0.6c3.7,0,6.6,3,6.6,6.7L997.6,306.9z"/>
<path class="st9" d="M1004.6,307l-133.7-0.8c-0.6,0-1.1-0.5-1-1.1l0-8.1c0-0.6,0.5-1.1,1.1-1.1l133.7,0.8c0.6,0,1.1,0.5,1.1,1.1 l0,8.1C1005.7,306.5,1005.2,307,1004.6,307z"/>
<path class="st3" d="M1004.6,307l-133.7-0.8c-0.6,0-1.1-0.5-1-1.1l0-8.1c0-0.6,0.5-1.1,1.1-1.1l133.7,0.8c0.6,0,1.1,0.5,1.1,1.1 l0,8.1C1005.7,306.5,1005.2,307,1004.6,307z"/>
<path class="st7" d="M967.3,243l-58.4-0.3c-0.4,0-0.8-0.3-0.8-0.8l0-5.8c0-0.4,0.3-0.8,0.8-0.8l58.4,0.3c0.4,0,0.8,0.3,0.8,0.8 l0,5.8C968,242.7,967.7,243,967.3,243z"/>
<path class="st8" d="M967.3,243l-58.4-0.3c-0.4,0-0.8-0.3-0.8-0.8l0-5.8c0-0.4,0.3-0.8,0.8-0.8l58.4,0.3c0.4,0,0.8,0.3,0.8,0.8 l0,5.8C968,242.7,967.7,243,967.3,243z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
assets/img/chef.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

View file

@ -0,0 +1,109 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
<g id="Floor">
</g>
<g id="Shadows">
</g>
<g id="Clouds">
</g>
<g id="Plants">
</g>
<g id="Finish_Line">
</g>
<g id="Character">
</g>
<g id="Confetti_1_">
<g>
<path style="fill:#1E0F00;" d="M198.87,325.43l-6.49-3.69l-13.9,13.9C178.48,335.64,188.9,338.95,198.87,325.43z"/>
<path style="fill:#0E538A;" d="M233.39,303.47c0,0-4.45,30.94-7.5,38.95c0,0-14.89-10.86-26.96-16.89l-9.53,8.16 c0,0,29.64,28.29,42.3,27.31c17.38-1.35,33.5-55.28,33.5-55.28L233.39,303.47z"/>
<path style="fill:#1E0F00;" d="M281.11,395.29l4.69,7.25l24.51-6.85C310.3,395.69,301.04,386.73,281.11,395.29z"/>
<path style="fill:#2A94F4;" d="M271.77,345.38l-12.42-29.21l0,0c-0.48-2.08,0.99-3.95,0.99-3.95l-0.7-7.29l-16.64-5.92 l-10.53-3.67c0,0-21.44,15.09,48.39,100.08l14.23-3.9L271.77,345.38z"/>
</g>
<g>
<path id="Arch" style="fill:#0E538D;" d="M368.41,283.15l0-179.27c0-5.72-3.05-11-8-13.86l-40.62-23.45 c-4.95-2.86-11.05-2.86-16,0l-170.6,98.5c-2.43,1.4-4.45,3.42-5.86,5.86l-40.62,70.36c-1.4,2.43-2.14,5.19-2.14,8v179.27 c0,2.36,1.56,4.73,4.69,6.53c6.25,3.61,16.38,3.61,22.63,0c3.12-1.8,4.69-4.17,4.69-6.53l0,0V253.57l36.33-62.93L311.79,98.9 l24.62,14.21l0,170.04h0c0,2.37,1.56,4.74,4.69,6.54c6.25,3.61,16.38,3.61,22.63,0C366.86,287.88,368.42,285.52,368.41,283.15 L368.41,283.15z"/>
<path style="fill:#0A4971;" d="M116.57,253.57c0,0-5.1-7-20.36-8.45c0,0,10.86-3.04,22.8,4.22L116.57,253.57z"/>
<path style="fill:#0A4971;" d="M152.9,190.64c0,0,1.28-8.4-7.9-15.53c0,0,8.43,2.54,11.29,13.57L152.9,190.64z"/>
<path style="fill:#0A4971;" d="M311.79,98.9c3.01-3.06,5.47-10.91,4.84-17.94c0,0,3.55,7.4-1.65,19.78L311.79,98.9z"/>
<path style="fill:#0A4971;" d="M336.41,113.11c8.2,0.33,16.28-2.74,20.08-8.25c0,0-3.22,11.09-20.08,12.2V113.11z"/>
<path id="Shadow_8_" style="fill:#0A4971;" d="M275.79,119.68V92.84c0-1.38-0.97-1.94-2.17-1.25l-101.28,58.48 c-1.2,0.69-2.16,2.37-2.17,3.75l0,26.85L275.79,119.68z"/>
<path style="fill:#27DEBF;" d="M277.8,86.75c-0.39-0.23-0.94-0.2-1.54,0.14l-101.28,58.48c-1.2,0.69-2.17,2.37-2.17,3.75l0,37.21 c0,0.69,0.24,1.18,0.63,1.4c0.39,0.23,3.67,2.12,4.06,2.34c0.39,0.23,0.93,0.19,1.53-0.15l101.28-58.48 c1.2-0.69,2.16-2.37,2.16-3.75V90.49c0-0.7-0.25-1.19-0.65-1.41C281.45,88.86,278.19,86.98,277.8,86.75z"/>
<path style="fill:#FEBE55;" d="M179.04,147.72l101.28-58.48c1.2-0.69,2.17-0.13,2.17,1.25v37.21c0,1.38-0.97,3.06-2.17,3.75 l-101.28,58.48c-1.2,0.69-2.17,0.13-2.17-1.25l0-37.21C176.87,150.09,177.84,148.41,179.04,147.72z"/>
<path style="fill:#FCAF3F;" d="M176.87,188.68c0,0.61,0.19,1.06,0.51,1.32c-0.72-0.41-3.57-2.06-3.94-2.27 c-0.39-0.22-0.63-0.71-0.63-1.4v-37.21c0-0.69,0.24-1.45,0.64-2.13l4.06,2.34c-0.4,0.68-0.64,1.45-0.64,2.14V188.68z"/>
<path style="fill:#FFC97B;" d="M277.8,86.75c0.37,0.22,3.25,1.88,3.93,2.27c-0.38-0.15-0.87-0.09-1.41,0.22l-101.28,58.48 c-0.6,0.34-1.13,0.93-1.53,1.61l-4.06-2.34c0.39-0.68,0.93-1.27,1.53-1.62l101.28-58.48C276.86,86.55,277.41,86.52,277.8,86.75z"/>
<g>
<path style="fill:#FAFAFA;" d="M205.07,142.37c0.16-0.09,0.29-0.08,0.41,0.03c0.11,0.11,0.17,0.29,0.17,0.53v3.51 c0,0.24-0.06,0.49-0.17,0.73c-0.11,0.24-0.25,0.41-0.41,0.5l-6.42,3.71v4.53l5.99-3.46c0.16-0.09,0.29-0.08,0.41,0.03 c0.11,0.11,0.17,0.29,0.17,0.53v3.51c0,0.24-0.06,0.49-0.17,0.73c-0.12,0.24-0.25,0.41-0.41,0.5l-5.99,3.46v7.14 c0,0.24-0.06,0.49-0.17,0.73c-0.12,0.24-0.25,0.41-0.41,0.5l-2.81,1.63c-0.16,0.09-0.29,0.08-0.41-0.03 c-0.12-0.11-0.17-0.29-0.17-0.53v-21.37c0-0.24,0.06-0.48,0.17-0.73c0.11-0.24,0.25-0.41,0.41-0.5L205.07,142.37z"/>
<path style="fill:#FAFAFA;" d="M208.51,163.54c-0.16,0.09-0.29,0.08-0.41-0.03c-0.12-0.11-0.17-0.29-0.17-0.53v-21.37 c0-0.24,0.06-0.48,0.17-0.73c0.11-0.24,0.25-0.41,0.41-0.5l2.81-1.63c0.16-0.09,0.29-0.08,0.41,0.03 c0.11,0.11,0.17,0.29,0.17,0.53v21.37c0,0.24-0.06,0.49-0.17,0.73c-0.12,0.24-0.25,0.41-0.41,0.5L208.51,163.54z"/>
<path style="fill:#FAFAFA;" d="M224.69,154.2c-0.25,0.14-0.44,0.15-0.59,0.04c-0.15-0.11-0.25-0.21-0.29-0.3l-4.92-8.47v11.18 c0,0.24-0.06,0.49-0.17,0.73c-0.12,0.24-0.25,0.41-0.41,0.5l-2.81,1.63c-0.16,0.09-0.29,0.08-0.41-0.03 c-0.12-0.11-0.17-0.29-0.17-0.53v-21.37c0-0.24,0.06-0.48,0.17-0.73c0.11-0.24,0.25-0.41,0.41-0.5l2.23-1.29 c0.24-0.14,0.44-0.16,0.59-0.04c0.15,0.11,0.25,0.21,0.29,0.3l4.92,8.47V132.6c0-0.24,0.06-0.48,0.17-0.73 c0.11-0.24,0.25-0.41,0.41-0.5l2.81-1.63c0.16-0.09,0.29-0.08,0.41,0.03c0.12,0.11,0.17,0.29,0.17,0.53v21.37 c0,0.24-0.06,0.49-0.17,0.73c-0.11,0.24-0.25,0.41-0.41,0.5L224.69,154.2z"/>
<path style="fill:#FAFAFA;" d="M231.09,150.5c-0.16,0.09-0.29,0.08-0.41-0.03c-0.12-0.11-0.17-0.29-0.17-0.53v-21.37 c0-0.24,0.06-0.48,0.17-0.73c0.11-0.24,0.25-0.41,0.41-0.5l2.82-1.63c0.16-0.09,0.29-0.08,0.41,0.03 c0.11,0.11,0.17,0.29,0.17,0.53v21.37c0,0.24-0.06,0.49-0.17,0.73c-0.12,0.24-0.25,0.41-0.41,0.5L231.09,150.5z"/>
<path style="fill:#FAFAFA;" d="M243.08,120.09c0.92-0.53,1.76-0.81,2.52-0.85c0.77-0.03,1.43,0.11,1.99,0.42 c0.56,0.32,1,0.77,1.31,1.36c0.32,0.59,0.48,1.23,0.5,1.93c0,0.2-0.05,0.4-0.14,0.59c-0.09,0.2-0.2,0.33-0.31,0.4l-2.81,1.63 c-0.2,0.12-0.36,0.17-0.48,0.15c-0.12-0.02-0.25-0.08-0.38-0.18c-0.04-0.04-0.11-0.11-0.2-0.21c-0.09-0.1-0.23-0.18-0.4-0.25 c-0.17-0.07-0.39-0.08-0.64-0.06c-0.26,0.03-0.57,0.15-0.95,0.36c-0.27,0.16-0.53,0.34-0.78,0.54c-0.25,0.2-0.47,0.42-0.67,0.65 c-0.19,0.23-0.35,0.5-0.47,0.79c-0.12,0.29-0.18,0.6-0.18,0.93c0,0.33,0.07,0.57,0.2,0.71c0.14,0.14,0.37,0.21,0.69,0.22 c0.32,0,0.75-0.06,1.28-0.19c0.53-0.13,1.19-0.3,1.98-0.51c0.79-0.21,1.47-0.3,2.06-0.26c0.59,0.04,1.08,0.22,1.47,0.56 c0.39,0.33,0.69,0.83,0.88,1.48c0.19,0.65,0.29,1.49,0.29,2.53c0,1.13-0.16,2.22-0.5,3.3c-0.33,1.07-0.79,2.09-1.39,3.07 c-0.59,0.97-1.3,1.86-2.11,2.66c-0.81,0.8-1.69,1.47-2.65,2.03c-0.97,0.56-1.86,0.88-2.67,0.94c-0.8,0.07-1.49-0.06-2.07-0.37 c-0.58-0.32-1.04-0.79-1.36-1.41c-0.33-0.63-0.5-1.35-0.52-2.18c0-0.2,0.05-0.4,0.14-0.59c0.09-0.2,0.2-0.33,0.31-0.39l2.81-1.63 c0.2-0.12,0.36-0.17,0.47-0.16c0.12,0.01,0.23,0.06,0.34,0.15c0.06,0.06,0.14,0.15,0.26,0.28c0.11,0.13,0.27,0.25,0.46,0.35 c0.19,0.1,0.44,0.14,0.73,0.12c0.29-0.02,0.66-0.15,1.09-0.4c0.76-0.44,1.39-0.93,1.9-1.48c0.51-0.55,0.76-1.15,0.76-1.81 c0-0.33-0.09-0.55-0.28-0.67c-0.19-0.11-0.47-0.16-0.84-0.13c-0.37,0.03-0.85,0.12-1.43,0.28c-0.58,0.16-1.26,0.33-2.05,0.52 c-1.48,0.37-2.55,0.18-3.23-0.56c-0.68-0.74-1.02-2.06-1.02-3.96c0-0.95,0.14-1.93,0.42-2.95c0.28-1.02,0.68-2.02,1.21-2.98 c0.53-0.97,1.17-1.86,1.92-2.68C241.3,121.31,242.14,120.63,243.08,120.09z"/>
<path style="fill:#FAFAFA;" d="M264.11,108.28c0.16-0.09,0.29-0.08,0.41,0.03c0.11,0.11,0.17,0.29,0.17,0.53v21.37 c0,0.24-0.06,0.49-0.17,0.73c-0.11,0.24-0.25,0.41-0.41,0.5l-2.81,1.63c-0.16,0.09-0.29,0.08-0.41-0.03 c-0.11-0.11-0.17-0.29-0.17-0.53v-8.1l-4.77,2.75v8.1c0,0.24-0.06,0.49-0.17,0.73c-0.12,0.24-0.25,0.41-0.41,0.5l-2.81,1.63 c-0.16,0.09-0.29,0.09-0.41-0.01c-0.12-0.1-0.17-0.28-0.17-0.55v-21.37c0-0.24,0.06-0.48,0.17-0.73c0.11-0.24,0.25-0.41,0.41-0.5 l2.81-1.63c0.16-0.09,0.29-0.08,0.41,0.03c0.11,0.11,0.17,0.29,0.17,0.53v7.97l4.77-2.75v-7.97c0-0.24,0.06-0.48,0.17-0.73 c0.12-0.24,0.25-0.41,0.41-0.5L264.11,108.28z"/>
</g>
<g>
<path style="fill:#FFBD58;" d="M252.64,314.05l-5.11,0.56l3.62-3.89c-19.11,7.24-48.08,1.74-81.74,7.93 c-20.52,3.77-45.51,18.19-52.83,26.3v11.61c7.43-8.99,36.24-26.91,53.47-30.37c35.64-7.15,63.97-0.7,80.11-6.34l2.8-1.2 l-4.92-0.58L252.64,314.05z"/>
<path style="opacity:0.2;fill:#FFBD58;" d="M252.64,314.05l-5.11,0.56l3.62-3.89c-19.11,7.24-48.08,1.74-81.74,7.93 c-20.52,3.77-45.51,18.19-52.83,26.3v11.61c7.43-8.99,36.24-26.91,53.47-30.37c35.64-7.15,63.97-0.7,80.11-6.34l2.8-1.2 l-4.92-0.58L252.64,314.05z"/>
</g>
<g>
<path style="fill:#FFBD58;" d="M304.81,274.23c-8.99,16.44-20.56,29.17-43.72,33.57l5.66,1.08l-4.7,3.13l4.82,0.66l-3.3,3.25 c25.38-5.57,37.53-19.65,46.83-35.92c6.59-11.53,10.86-29.7,18.29-43.16c5.87-10.63,10.96-16.31,15.81-19.64l0-9.45 c-7.58,4.38-14.89,12.55-20.66,23.13C315.36,246.42,309.45,265.74,304.81,274.23z"/>
<path style="opacity:0.2;fill:#FFBD58;" d="M304.81,274.23c-8.99,16.44-20.56,29.17-43.72,33.57l5.66,1.08l-4.7,3.13l4.82,0.66 l-3.3,3.25c25.38-5.57,37.53-19.65,46.83-35.92c6.59-11.53,10.86-29.7,18.29-43.16c5.87-10.63,10.96-16.31,15.81-19.64l0-9.45 c-7.58,4.38-14.89,12.55-20.66,23.13C315.36,246.42,309.45,265.74,304.81,274.23z"/>
</g>
<g>
<path id="XMLID_831_" style="fill:#FEBE55;" d="M396.51,170.39c0,0-4.15-2.5-4.34-6.99l3.07-2.47c0,0-0.42,2.76,3.15,6.71 L396.51,170.39z"/>
<path id="XMLID_829_" style="fill:#FEBE55;" d="M434.15,135.19c0,0-3.91-2.86-3.71-7.34l3.27-2.19c0,0-0.66,2.71,2.55,6.96 L434.15,135.19z"/>
<path id="XMLID_743_" style="fill:#FEBE55;" d="M457.96,290.51c0,0-3.91-2.86-3.71-7.34l3.27-2.19c0,0-0.66,2.71,2.55,6.96 L457.96,290.51z"/>
<path id="XMLID_724_" style="fill:#FEBE55;" d="M433.09,82.42c0,0-1.58-4.58,1.14-8.15l3.93,0.07c0,0-2.09,1.85-1.88,7.17 L433.09,82.42z"/>
<path id="XMLID_715_" style="fill:#FEBE55;" d="M464.41,168.66c0,0,2.18,4.33-0.04,8.23l-3.91,0.46c0,0,1.82-2.11,0.9-7.36 L464.41,168.66z"/>
<path id="XMLID_732_" style="fill:#FEBE55;" d="M94.76,153.12c0,0,2.74-4.51,0.67-8.94l-4.2-0.84c0,0,1.8,2.45,0.34,8.06 L94.76,153.12z"/>
<path id="XMLID_726_" style="fill:#FEBE55;" d="M214.37,71.03c0,0-0.06,4.84,3.65,7.37l3.71-1.31c0,0-2.57-1.1-4.04-6.21 L214.37,71.03z"/>
<path id="XMLID_723_" style="fill:#FEBE55;" d="M37.44,208.98c0,0,4.24-2.35,4.6-6.82l-2.97-2.58c0,0,0.32,2.77-3.4,6.59 L37.44,208.98z"/>
<path id="XMLID_704_" style="fill:#FEBE55;" d="M57.23,248.85c0,0-4.24-2.35-4.6-6.82l2.97-2.58c0,0-0.32,2.77,3.4,6.59 L57.23,248.85z"/>
<path id="XMLID_710_" style="fill:#FEBE55;" d="M63.88,239.07c0,0-1.82-4.49,0.71-8.2l3.93-0.14c0,0-1.99,1.96-1.5,7.26 L63.88,239.07z"/>
</g>
<g>
<path id="XMLID_836_" style="fill:#27DEBF;" d="M374.78,70.16c0,0-0.27,4.84,3.32,7.53l3.77-1.14c0,0-2.52-1.21-3.77-6.38H374.78 z"/>
<path id="XMLID_833_" style="fill:#27DEBF;" d="M472.68,104.1c0,0,2.2,4.32,0,8.23l-3.91,0.48c0,0,1.81-2.12,0.87-7.36 L472.68,104.1z"/>
<path id="XMLID_740_" style="fill:#27DEBF;" d="M408.68,115.01c0,0-3.55-3.29-2.84-7.72l3.5-1.8c0,0-0.97,2.62,1.73,7.21 L408.68,115.01z"/>
<path id="XMLID_832_" style="fill:#27DEBF;" d="M428.42,192.37c0,0,2.12,4.36-0.16,8.23l-3.91,0.4c0,0,1.85-2.09,1.01-7.34 L428.42,192.37z"/>
<path id="XMLID_824_" style="fill:#27DEBF;" d="M455.08,234.79c0,0-1.41-4.63,1.45-8.1l3.93,0.22c0,0-2.72,1.91-2.71,7.23 L455.08,234.79z"/>
<path id="XMLID_823_" style="fill:#27DEBF;" d="M450.46,247.34c0,0-4.16-2.48-4.39-6.96l3.05-2.49c0,0,0.04,3.79,2.87,7.17 L450.46,247.34z"/>
<path id="XMLID_796_" style="fill:#27DEBF;" d="M198.13,94.8c0,0,2.1,4.37-0.19,8.23l-3.92,0.38c0,0,1.86-2.08,1.04-7.34 L198.13,94.8z"/>
<path id="XMLID_762_" style="fill:#27DEBF;" d="M45.08,158.37c0,0,3.71-3.11,3.23-7.57l-3.41-1.97c0,0,0.84,2.66-2.09,7.11 L45.08,158.37z"/>
<path id="XMLID_744_" style="fill:#27DEBF;" d="M48.5,290.98c0,0,1.06,5.97,6.22,8.22l4.26-2.48c0,0-3.41-0.75-6.43-6.7 L48.5,290.98z"/>
<path id="XMLID_720_" style="fill:#27DEBF;" d="M81.66,185.56c0,0-0.22,4.84,3.4,7.49l3.75-1.18c0,0-3.11-1.18-4.41-6.34 L81.66,185.56z"/>
</g>
<g style="opacity:0.25;">
<path id="XMLID_808_" style="fill:#CDE9FF;" d="M374.78,70.16c0,0-0.27,4.84,3.32,7.53l3.77-1.14c0,0-2.52-1.21-3.77-6.38H374.78 z"/>
<path id="XMLID_806_" style="fill:#CDE9FF;" d="M472.68,104.1c0,0,2.2,4.32,0,8.23l-3.91,0.48c0,0,1.81-2.12,0.87-7.36 L472.68,104.1z"/>
<path id="XMLID_804_" style="fill:#CDE9FF;" d="M408.68,115.01c0,0-3.55-3.29-2.84-7.72l3.5-1.8c0,0-0.97,2.62,1.73,7.21 L408.68,115.01z"/>
<path id="XMLID_803_" style="fill:#CDE9FF;" d="M428.42,192.37c0,0,2.12,4.36-0.16,8.23l-3.91,0.4c0,0,1.85-2.09,1.01-7.34 L428.42,192.37z"/>
<path id="XMLID_800_" style="fill:#CDE9FF;" d="M455.08,234.79c0,0-1.41-4.63,1.45-8.1l3.93,0.22c0,0-2.72,1.91-2.71,7.23 L455.08,234.79z"/>
<path id="XMLID_799_" style="fill:#CDE9FF;" d="M450.46,247.34c0,0-4.16-2.48-4.39-6.96l3.05-2.49c0,0,0.04,3.79,2.87,7.17 L450.46,247.34z"/>
<path id="XMLID_798_" style="fill:#CDE9FF;" d="M198.13,94.8c0,0,2.1,4.37-0.19,8.23l-3.92,0.38c0,0,1.86-2.08,1.04-7.34 L198.13,94.8z"/>
<path id="XMLID_797_" style="fill:#CDE9FF;" d="M45.08,158.37c0,0,3.71-3.11,3.23-7.57l-3.41-1.97c0,0,0.84,2.66-2.09,7.11 L45.08,158.37z"/>
<path id="XMLID_767_" style="fill:#CDE9FF;" d="M48.5,290.98c0,0,1.06,5.97,6.22,8.22l4.26-2.48c0,0-3.41-0.75-6.43-6.7 L48.5,290.98z"/>
<path id="XMLID_763_" style="fill:#CDE9FF;" d="M81.66,185.56c0,0-0.22,4.84,3.4,7.49l3.75-1.18c0,0-3.11-1.18-4.41-6.34 L81.66,185.56z"/>
</g>
</g>
<g>
<path style="fill:#D7AEB2;" d="M316.73,250.48L316.73,250.48L316.73,250.48c0.09,0.11,2.73,3.04,4.35,3.42 c1.76,0.42,3.89-1.91,3.97-2.05c0,0,4.46-3.35-0.12-11.18c-0.56-0.96-1.75-1.34-2.77-0.9c-0.72,0.31-1.39,0.6-1.46,0.64v0l0,0 c-0.49,0.27-0.92,0.68-1.2,1.21l-3.03,5.6C315.89,248.28,316.03,249.56,316.73,250.48z"/>
<polygon style="fill:#D0D4E9;" points="313.25,253.19 316.3,249.62 322.21,253.57 319.53,257.79 "/>
<path style="fill:#D7AEB2;" d="M216.42,282.23L216.42,282.23L216.42,282.23c-0.07-0.11-0.15-0.22-0.24-0.32 c-1.01-1.57-7.25-1.98-7.25-1.98c-0.1,0.11-3.58,5.44-3.58,5.44c-0.69,1.12,0.49,3.29,1.64,4.95c0.94,1.35,2.66,1.92,4.21,1.39 l0.19-0.07c0.17-0.04,0.34-0.1,0.5-0.17l0,0l0,0c0.49-0.22,0.92-0.57,1.23-1.05l3.29-5.07 C217.06,284.38,217.02,283.15,216.42,282.23z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-2631.957" y1="253.5781" x2="-2631.957" y2="234.006" gradientTransform="matrix(-1 0 0 1 -2366.4785 0)">
<stop offset="0.512" style="stop-color:#D7AEB2"/>
<stop offset="1" style="stop-color:#B7898F"/>
</linearGradient>
<path style="fill:url(#SVGID_1_);" d="M270.5,237.75c0,0,1.14,9.39,1.27,10.71c0,0-3.38,5.17-5.21,5.12 c-2.73-0.07-7.38-8.08-7.38-8.08s2.46-4.63,1.96-11.5L270.5,237.75z"/>
<path style="fill:#D7AEB2;" d="M275.69,239.51c0,0-16.16,0.74-16.47-9.33c-0.31-10.07-2.6-16.76,7.71-17.65 c10.3-0.9,12.43,2.88,13.35,6.22C281.2,222.08,279.89,239.06,275.69,239.51z"/>
<path style="fill:#0A4971;" d="M259.23,230.18c0,0,1.21-13.44,15.6-12.96c14.4,0.48,8.17-13.13-4.2-15.14c0,0,1.29,4.8-6.49,5.56 C247.81,209.22,257.78,228.04,259.23,230.18z"/>
<path style="fill:#DEE2F1;" d="M319.53,257.79c0,0-1.9,3-6.31,8.15c-1.4,1.64-2.99,3.2-4.72,4.44c-0.72,0.52-1.68,1.3-2.56,1.47 c-10.25,2.06-24.59-9.1-24.59-9.1s-0.01,0.02-0.04,0.06c-0.54,0.9-5.38,17.6-16.11,42.9c0,0-2.18,2.25-15.81-1.12 c-3.55-0.88-6.77-2.35-9.42-3.86c-4.61-2.63-7.5-5.39-7.5-5.39s10.05-17.44,10.45-37.1v-0.02c0,0-12.58,3.62-17.59,3.49 c0,0-2.83,11.68-8.02,15.83c-1.52,1.22-7.04-2.38-7.04-2.38l4.57-18.77c0.3-1.12,1.06-2.06,2.1-2.58 c5.63-2.8,24.33-11.84,33.08-13c0,0,2.21-1.04,10.12-0.07c1.27,0.15-0.29,4.77,5.32,5.68c6.66,1.08,4.52-4.03,5.94-3.73 c2.21,0.46,3.92,0.92,6.09,1.55c2.11,0.62,4.12,1.54,5.96,2.75c5.36,3.52,16.79,11.21,19.11,14.07c0,0,5.58-5.18,10.69-7.87 L319.53,257.79z"/>
<path style="fill:#0D4870;" d="M265.21,246.24h4.34c0,0,0.52,0.17,0.35,0.84c-0.18,0.66-1.78,2.34-2.33,2.38 C267.03,249.5,263.91,247.36,265.21,246.24z"/>
<path style="fill:#D0D4E9;" d="M270.93,241.31c0,0-0.94,3.48-3.3,4.83l2.52,4.69c0,0,4.42-3.76,4.86-7.06 C275,243.77,271.94,241.6,270.93,241.31z"/>
<path style="fill:#DEE2F1;" d="M270.93,241.31c0,0-0.72,3.31-3.08,4.66l2.45,4.29c0,0,4.03-3.35,4.92-6.66 C275.22,243.6,271.94,241.6,270.93,241.31z"/>
<path style="fill:#D0D4E9;" d="M260.57,239.62c0,0,4.14,5.44,7.28,6.34l-2.74,5.34c0,0-8.98-7.47-8.45-10.85 C256.66,240.45,259.52,239.48,260.57,239.62z"/>
<path style="fill:#DEE2F1;" d="M260.95,239.5c0,0,3.76,5.57,6.9,6.47l-2.61,4.73c0,0-8.73-6.99-8.19-10.37 C257.04,240.33,259.91,239.35,260.95,239.5z"/>
<polygon style="fill:#D0D4E9;" points="217.3,277.54 215.53,281.89 208.68,280.01 210.27,275.16 "/>
<path style="fill:#D0D4E9;" d="M247.2,293.81c-2.55,3.16-4.91,5.58-7.23,6.93c-4.61-2.63-7.5-5.39-7.5-5.39 s10.05-17.44,10.45-37.1c1.59-0.83,3.21-1.26,4.23-0.42C249.77,259.98,251.4,288.6,247.2,293.81z"/>
<path style="fill:#0B528C;" d="M266.76,249.26c0,0-1.22,5.47-6.15,12.35c-7.3,10.18-16.53,18.25-28.98,18.61 c0,0-3.31,0.12-7.14,2.92c0,0,3.06,4.42,5.57,4.72c20.15,2.45,38-18.64,38.34-38.8C268.42,248.38,267.17,248.52,266.76,249.26z"/>
<path style="fill:#D0D4E9;" d="M313.22,265.94c-1.4,1.64-2.99,3.2-4.72,4.44c-0.72,0.52-1.68,1.3-2.56,1.47 c-10.25,2.06-24.59-9.1-24.59-9.1s-0.01,0.02-0.04,0.06c-0.32-1.35,1.57-2.79,2.61-2.8c4.81-0.01,17.59,9.83,19.78,9.45 C305.43,269.17,311.19,266.3,313.22,265.94z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

42
assets/img/gift.svg Normal file
View file

@ -0,0 +1,42 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F2F2F2;}
.st1{fill:#FFBD55;}
.st2{fill:#DEDEDE;}
.st3{fill:#F2AB44;}
.st4{fill:#D3D3D3;}
.st5{fill:#FFC878;}
.st6{fill:#FFFFFF;}
.st7{fill:#D4D4D4;}
</style>
<path class="st0" d="M278.6,308.5c-96.3,0-226.9,2.4-222.3,40.4s74,42.7,56,66c-18,23.3,28,59.3,114,55.3s151.3-14.3,154-47.7 c1.7-20.9,27.9-31.6,45.3-42.9c24.7-16,30-48-12-60S278.6,308.5,278.6,308.5z"/>
<g id="BACKGROUND">
</g>
<g id="OBJECTS">
<polygon class="st1" points="401.9,359 222.8,422.5 222.8,258 401.9,194.5 "/>
<polygon class="st0" points="328.9,384.8 295.8,396.6 295.8,232.1 328.9,220.4 "/>
<polygon class="st2" points="401.9,194.5 401.9,217.7 222.7,281.3 222.7,258 "/>
<polygon class="st1" points="432,183.8 222.8,258 222.8,180.2 432,106 "/>
<polygon class="st0" points="346.7,214.1 308,227.8 308,149.9 346.7,136.2 "/>
<polygon class="st3" points="106.2,359 222.8,422.5 222.8,258 106.2,194.5 "/>
<polygon class="st4" points="153.7,384.8 175.2,396.6 175.2,232.1 153.7,220.4 "/>
<polygon class="st2" points="222.7,258 222.7,281.7 106.2,218.2 106.2,194.5 "/>
<polygon class="st3" points="86.5,183.8 222.8,258 222.8,180.2 86.5,106 "/>
<polygon class="st4" points="142.1,214.1 167.2,227.8 167.2,149.9 142.1,136.2 "/>
<polygon class="st5" points="432,106 346.7,136.2 308,149.9 222.8,180.2 167.3,149.9 142,136.2 86.5,106 175.9,78.6 175.9,78.6 210.5,68 261.3,52.5 314.7,69.2 350.5,80.4 "/>
<polygon class="st6" points="346.7,136.2 308,149.9 249.9,118.6 223.8,104.5 175.9,78.6 210.5,68 257.3,91.5 257.3,91.5 285,105.3 "/>
<polygon class="st6" points="350.5,80.4 285,105.3 249.9,118.6 167.3,149.9 142,136.2 223.8,104.5 257.3,91.5 314.7,69.2 "/>
<path class="st7" d="M246.3,110.2c0,0,8.7-79.8,47.4-69.8s0,49.7,0,49.7s6.8-31-6.8-32.4C273.2,56.4,253.1,84.6,246.3,110.2z"/>
<path class="st7" d="M323.4,117l-23.3,16.4c0,0-34.7-6.8-53.8-23.3l21.4-9.9C267.7,100.3,296.4,115.8,323.4,117z"/>
<path class="st0" d="M246.3,110.2c0,0,84.8-54.7,100.4-26.5s2.7,38.3-6.4,41.5c-9.1,3.2-40.2,8.2-40.2,8.2s14.5-31.4-1.7-39 c-3.6-1.7-7.9-1.5-11.7,0L246.3,110.2z"/>
<g>
<g>
<path class="st0" d="M169.2,117l23.3,16.4c0,0,34.7-6.8,53.8-23.3l-21.4-9.9C224.8,100.3,196.1,115.8,169.2,117z"/>
</g>
<path class="st0" d="M246.3,110.2c0,0-8.7-79.8-47.4-69.8s0,49.7,0,49.7s-6.8-31,6.8-32.4C219.4,56.4,239.4,84.6,246.3,110.2z"/>
</g>
<path class="st7" d="M246.3,110.2c0,0-84.8-54.7-100.4-26.5c-15.5,28.3-2.7,38.3,6.4,41.5c9.1,3.2,40.2,8.2,40.2,8.2 s-14.5-31.4,1.7-39c3.6-1.7,7.9-1.5,11.7,0L246.3,110.2z"/>
</g>
<g id="DESIGNED_BY_FREEPIK">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

223
assets/img/home.svg Normal file
View file

@ -0,0 +1,223 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 823 823" style="enable-background:new 0 0 823 823;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.24;clip-path:url(#SVGID_2_);fill:#FFBE55;}
.st1{clip-path:url(#SVGID_2_);}
.st2{fill:#FFBE55;}
.st3{fill:#F9F9F9;}
.st4{fill:#2A94F4;}
.st5{fill:#0E538C;}
.st6{fill:#0B4870;}
.st7{fill:#CCE9FF;}
.st8{fill:#FFFFFF;}
.st9{fill:#FCDCB5;}
.st10{fill:#FCD2B1;}
.st11{fill:#FFE3CA;}
.st12{fill:#FF957E;}
.st13{fill:#F2F2F2;}
.st14{fill:#D3D3D3;}
</style>
<g>
<g>
<defs>
<path id="SVGID_1_" d="M735,608.6c50.9-91.1,30.4-212.3-60.2-282.9c-49.6-38.6-114.7-51-163.4-91.3 c-54.8-45.3-108.8-100.3-180.2-117.5c-75.9-18.3-159.5,8.8-212.3,65.8C54.5,252,61,349.5,89.8,434.4 C162.9,649.6,450.4,819.6,661,686.1C693.5,665.5,718.2,638.7,735,608.6z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<circle class="st0" cx="387" cy="376" r="425"/>
<g class="st1">
<path class="st2" d="M241.6,495.8c-59.5-4.2-118.7-8.3-178-11.8c1.7,2.1,3.5,4.1,5.3,6.2c42.3,2.5,84.4,5,126.8,8.2 c63.7,4.9,127.6,8.7,190.6,15.1c57.2,5.8,113.8,11.8,171.6,16.2c45.5,3.5,91.1,5.5,136.8,7.6c3.1-1.7,6.1-3.5,9-5.3 c-38.1-1.8-76.3-3.5-114.4-5.9C472.3,518.5,358.6,504,241.6,495.8z"/>
<path class="st2" d="M590.9,550.6c-58.9-5-118.3-8.8-177.1-14.2c-54.1-4.9-107-11.3-161.4-15.7c-53.6-4.3-107.7-7.7-161.8-10.8 c2.8,2.2,5.8,4.4,9,6.6c35.2,2.1,70.3,4.3,105.4,6.6c63.8,4.3,125.3,10.8,188,17.2c59.1,6.1,119.6,9.9,179.4,14.6 c22.8,1.8,45.5,3.7,68.1,5.6c4.5-1.4,8.9-3,13.2-4.5C632.7,554.2,611.8,552.4,590.9,550.6z"/>
<path class="st2" d="M218.3,309.5c123.7,10.7,245.7,23.1,368.9,35c62.6,6,125.6,10.7,188.9,14.8c-0.4-2-0.7-4-1.2-6.1 c-66.7-4.4-133.1-9.3-199.3-15.7c-66-6.3-131.7-13.2-197.4-20.1c-60.9-6.4-123.1-10.3-184.5-15.9c-42-3.8-83.8-8.1-125.6-12.5 c-0.9,1.4-2.2,3.5-3.7,6.1C115.7,300.1,167.1,305.1,218.3,309.5z"/>
<path class="st2" d="M251.7,562.1c-18.9-0.7-37.5-2-56-3.5c11.5,3.1,23.7,6,36.8,8.6c52.4,2.7,104,4.5,156.4,8.5 c36.5,2.7,72.9,5.7,109.3,8.8c11.7-0.6,23.8-1.6,36.3-2.9C440.8,573.3,346.6,565.6,251.7,562.1z"/>
<path class="st2" d="M203.1,447.1c-55.1-5.8-110.2-11.2-165.5-16c0.5,2.1,1,4.2,1.6,6.3c53.1,4.6,106,9.6,159,15.2 c182.8,19.1,365.3,31.8,550,41c1.5-1.8,3-3.7,4.4-5.6C568.1,478.9,385.7,466.3,203.1,447.1z"/>
<path class="st2" d="M254.9,356.1c-68.9-8.5-138-17.1-207.5-25.1c-0.7,1.8-1.4,3.7-2,5.6c63.3,7.4,126.3,15.3,188.9,23 c113.8,14,227.4,28.8,344,38.4c61.4,5.1,123.7,6.5,185.5,10.5c5.3,0.3,10.6,0.7,15.9,1.1c0.1-1.9,0.3-3.8,0.3-5.7 c-51.7-3.2-103.4-5.5-155.3-8.4C499.5,388.3,375.6,371.1,254.9,356.1z"/>
<path class="st2" d="M589.3,456.3c58.7,3.4,117.2,7.5,175.7,11.4c1-1.9,1.9-3.8,2.7-5.8c-54.1-3.6-108.2-7.4-162.5-10.6 c-123.1-7.2-242.5-17.8-364.1-28.6c-68.9-6.1-137.9-11.9-206.9-17.6c0.1,2,0.2,3.9,0.3,5.9c72.6,6.1,145.3,12.1,217.7,18.6 C365,439.6,475.2,449.6,589.3,456.3z"/>
<path class="st2" d="M482.8,494.6c-29.9-2.8-61.4-2.1-90.9-5.7c-55.3-6.7-110.1-10.3-167.3-13.4c-58.6-3.2-116.9-7.7-175-12.6 c1.1,2,2.3,4.1,3.5,6.1c46.8,4.6,94.7,9.1,142,11c64.5,2.6,129.5,6.8,192,14.4c25.9,3.2,52.4,3.3,79,4.9 c31.9,1.8,63.6,4.5,95.7,6.2c55.5,2.9,110.7,6.1,165.9,9.2c2.2-1.9,4.3-3.7,6.4-5.7c-51.7-2.9-103.3-5.9-155.2-8.5 C546.9,498.8,514.3,497.6,482.8,494.6z"/>
<path class="st2" d="M410.5,344.9c-68.7-4.3-134.4-13-201.9-19.7c-50.7-5.1-101.7-9.6-152.7-14c-0.9,1.9-1.8,3.8-2.7,5.8 c50.3,4.3,100.6,8.7,150.6,13.6c53.1,5.2,106,13.1,159.6,17c61.1,4.5,122.3,8.5,183.5,12.9c78.4,5.5,154.9,14.1,232.3,21 c-0.2-1.9-0.4-3.9-0.6-5.9c-67.1-6-133.7-13.2-201.4-18.7C522.1,352.4,466,348.4,410.5,344.9z"/>
<path class="st2" d="M772.2,450.3c0.6-1.9,1.3-3.8,1.8-5.7c-196.2-10.4-391.9-26.8-582.8-48.3c-51.9-5.9-103.9-11.1-156-16.1 c-0.2,1.7-0.4,3.5-0.6,5.3c40.2,4,80.2,8.3,119.8,12.7C357.5,420.9,564,439.1,772.2,450.3z"/>
<path class="st2" d="M380.8,392.1c63.6,3.9,126.5,10.7,188.5,17.7c69.1,7.8,138.7,12.7,208.8,16.4c0.3-1.9,0.5-4,0.7-6 c-73.7-3.9-146.6-9.3-219.9-17.6c-47.9-5.4-96.3-10.1-145.2-14c-59.9-4.8-120.5-6.1-180.6-10.2c-65.3-4.5-130.1-11.2-194.5-18.3 c-0.4,1.9-0.8,3.8-1.2,5.7c54,6,108.2,11.6,162.8,15.9C260.4,386.5,320.5,388.4,380.8,392.1z"/>
<path class="st2" d="M230.4,108.4c123.3,14.7,244.9,31.1,367.6,46.9c62.4,8.1,125.2,14.8,188.3,20.9c-0.3-2-0.6-4.1-1-6.1 c-66.5-6.5-132.7-13.7-198.7-22.2c-65.8-8.5-131.2-17.5-196.7-26.5c-60.7-8.3-122.7-14.3-183.9-21.9 C164.2,94.4,122.5,88.8,80.9,83c-0.9,1.4-2.3,3.4-3.8,5.9C128.2,95.8,179.4,102.4,230.4,108.4z"/>
<path class="st2" d="M210.8,245.5c-54.9-7.6-109.8-14.7-164.9-21.3c0.4,2.1,0.9,4.2,1.4,6.3c52.9,6.3,105.6,13.1,158.4,20.3 c182.1,25,364.1,43.7,548.4,58.8c1.6-1.8,3.1-3.6,4.6-5.5C574.5,289.1,392.6,270.6,210.8,245.5z"/>
<path class="st2" d="M265.5,156.2c-68.6-10.8-137.4-21.6-206.6-31.8c-0.7,1.8-1.5,3.6-2.2,5.5c63,9.4,125.7,19.4,188,29.1 C358,176.7,471,195.2,587.4,208.6c61.2,7,123.5,10.5,185.1,16.5c5.3,0.5,10.6,1.1,15.9,1.6c0.2-1.9,0.4-3.8,0.5-5.7 c-51.6-4.9-103.2-8.8-155-13.5C508.9,196.3,385.6,175.1,265.5,156.2z"/>
<path class="st2" d="M596.4,267.1c58.6,5.3,116.9,11.3,175.2,17.1c1-1.9,2-3.8,2.9-5.7c-54-5.3-107.9-10.9-162-15.8 c-122.8-11.2-241.8-25.6-363-40.4C180.9,214,112.1,206,43.3,198c0,2,0.1,4,0.1,5.9c72.4,8.4,144.8,16.8,217,25.6 C372.8,243.2,482.6,256.8,596.4,267.1z"/>
<path class="st2" d="M488.7,302c-29.8-3.7-61.3-4.1-90.6-8.6c-55.1-8.5-109.7-13.9-166.7-18.8c-58.5-5.1-116.6-11.5-174.5-18.3 c1,2.1,2.1,4.1,3.3,6.2c46.6,6.1,94.3,12.2,141.6,15.6c64.4,4.7,129.2,11,191.4,20.6c25.8,4,52.2,5,78.8,7.4 c31.8,2.8,63.4,6.5,95.4,9.2c55.3,4.7,110.4,9.7,165.6,14.6c2.2-1.8,4.4-3.6,6.5-5.5c-51.5-4.6-103.1-9.2-154.9-13.6 C552.7,308.3,520.1,306,488.7,302z"/>
<path class="st2" d="M421.4,150c-68.5-6.5-133.9-17.3-201.2-26.3c-50.5-6.7-101.4-12.9-152.2-18.9c-1,1.8-1.9,3.7-2.9,5.7 c50.1,6,100.3,12,150.1,18.5c52.9,6.9,105.5,16.5,158.9,22.2c60.9,6.4,121.9,12.5,183,18.8c78.2,8.1,154.4,19.1,231.5,28.5 c-0.1-1.9-0.3-3.9-0.4-5.9c-66.9-8.2-133.2-17.5-200.7-25.3C532.6,161.2,476.7,155.3,421.4,150z"/>
<path class="st2" d="M779.4,267.1c0.7-1.9,1.4-3.7,2-5.7c-195.8-16.7-390.8-39.5-580.9-67.2C148.8,186.7,97,179.7,45.1,173 c-0.3,1.7-0.5,3.5-0.7,5.3c40.1,5.3,79.9,10.9,119.3,16.6C365.9,224.3,571.7,249.1,779.4,267.1z"/>
<path class="st2" d="M390.2,196.3c63.5,6,126.1,14.8,187.8,23.8c68.8,10,138.2,17.2,208.1,23.1c0.4-1.9,0.6-4,0.9-6 c-73.5-6.3-146.2-14.1-219.2-24.7c-47.7-7-95.9-13.2-144.6-18.7c-59.7-6.7-120.2-10-180.2-16.1c-65.1-6.6-129.6-15.4-193.8-24.6 c-0.5,1.9-1,3.8-1.4,5.7c53.8,7.7,107.7,15.1,162.2,21.2C270,186.7,330,190.6,390.2,196.3z"/>
</g>
</g>
<path class="st2" d="M730.8,529.5c-10.3-15.4,0.5-27.6,18.3-51c20.1-26.4,2.5-20.5-21.8-13.2c-46.4,13.9,31-51.7,21.6-75.7 c-9.5-24-40,15.6-21.6-42.2c18.4-57.8,5.9-72.9-10.6-76.2c-16.5-3.4-6.9,77.9-23,52.3c-16-25.7-51.8-13.7-19.4,37.2 c32.4,50.9,19.4,103.1,7.8,85.5c-1.3-1.9-21-72.1-46.1-46.2c-25.1,25.9,28.2,71.6,49.8,128.7c21.7,57.1,15,54.6,9.5,51.3 c-5.5-3.3-34-77.8-49.2-38.2c-10.1,26.3,11.7,20.9,46.5,107.8c0,0,1.1,110,24.1-4.9c1-4.8,1.9-9.4,2.8-13.9 c23.6-60.6,31.7-73.6,43.9-106.5C774.5,494.4,749.6,505.1,730.8,529.5z"/>
<path class="st3" d="M745.3,532.5c-0.5-0.2-1.1,0.1-1.3,0.6c-0.2,0.5-16.8,45.9-25.1,63.7c0.1-1.2,0.1-2.3,0.2-3.5 c0.9-22.8-1.8-46.1-8-69.3c7.4-4.3,20.8-38.7,22.4-42.8c0.2-0.5-0.1-1.1-0.6-1.3c-0.5-0.2-1.1,0.1-1.3,0.6 c-5.7,14.8-16,38.1-21,41.5c-1-3.6-2.1-7.1-3.2-10.7c0,0,0,0,0-0.1c-0.4-1.1-0.7-2.2-1.1-3.3c-11.3-33.4-5-43.7,1.2-53.6 c4.5-7.3,9.1-14.9,7.1-30.6c17.7-10.4,25.1-31.2,25.4-32.1c0.2-0.5-0.1-1.1-0.6-1.3c-0.5-0.2-1.1,0.1-1.3,0.6 c-0.1,0.2-7.2,20.4-23.7,30.6c-0.3-1.8-0.7-3.8-1.2-5.8c-7-29.5-3.2-48.7,1.9-75.3c2.8-14.7,6.1-31.4,8.2-53.2 c0.1-0.9-0.5-1.6-1.4-1.7c-0.8-0.1-1.6,0.5-1.7,1.4c-2.1,21.6-5.3,38.2-8.1,52.9c-2.7,13.9-5,25.9-5.6,38.3 c-20-21.5-30.8-53.5-30.9-53.8c-0.2-0.5-0.8-0.8-1.3-0.7c-0.5,0.2-0.8,0.8-0.7,1.3c0.1,0.3,11.5,34.2,32.7,56 c-0.3,10.8,0.7,22.1,3.9,35.4c4.7,20.1-0.1,27.9-5.2,36.2c-6.5,10.6-13.3,21.5-1.5,56.3c0,0.1,0,0.1,0.1,0.2 c-28.2-15.7-57.6-93.4-57.9-94.2c-0.2-0.5-0.8-0.8-1.3-0.6c-0.5,0.2-0.8,0.8-0.6,1.3c1.3,3.4,31.2,82.7,60.8,96.3 c16.6,50.9,12.8,92.2,6.7,118c-8.5-23.9-48.8-75.2-50.6-77.6c-0.4-0.5-1-0.5-1.5-0.2c-0.5,0.4-0.5,1-0.2,1.5 c0.5,0.6,46.2,58.8,51.3,80.2c-2.5,9.7-5.3,16.9-7.1,21c-0.3,0.8,0,1.7,0.8,2.1c0.2,0.1,0.4,0.1,0.6,0.1c0.6,0,1.2-0.4,1.4-0.9 c4.9-11.3,10.8-29.4,12.9-54c7-12.8,26.5-66.1,27.4-68.4C746.1,533.2,745.9,532.7,745.3,532.5z"/>
<g>
<path class="st4" d="M676,632.1c0,0-19.5,77.3,27.3,77.9c0,0,44.3,9.4,36-75.6L676,632.1z"/>
</g>
<g>
<path class="st2" d="M118.8,675.3c-13.2-39.3-14-58.5-11.2-70.2c2.8-11.7-10.3-24.7-12.8-5.6c-2.5,19.1-7.5,2,0-22.9 c7.5-24.8-3.1-60.6-9.2-42.1c-6.1,18.5,4.2,73.8-11.1,43c-15.4-30.7-39-79.6-51-62.6c-12,17,54.6,69.9,39.6,66.4 c-15.1-3.4-51.2-12.1-16.8,6.6c10.4,5.6,24.1,6.1,29.5,9.4c12.6,7.7,12.4,17,2.4,15.5c-14.4-2.2-51.7-13.8-19.8,9.7 c32,23.5,31.2-35.4,52.1,51.5L118.8,675.3z"/>
</g>
<g>
<g>
<path class="st2" d="M143.3,590.6c-5.7-9.2-11.2-21.4-17-34.4c-14.3-31.8-32-71.5-63.3-86.6l0.7-1.5 c31.9,15.4,49.8,55.4,64.1,87.5c5.8,12.9,11.2,25.1,16.9,34.2L143.3,590.6z"/>
</g>
<path class="st2" d="M65.9,470.6c-5.1-2.4-11.1-3.3-16.7-2.8C46,468,43,469,40,470.2c-2.2,0.9-4.5,1-6.6-0.3 c-4.9-2.9-4.1-10.5,1.3-12.4c2.5-0.9,5.8-0.3,8.4,0c3.5,0.4,7.1,1.5,10.3,2.9c2.6,1.2,5.1,2.6,7.4,4.3c1.5,1.1,2.8,2.2,4.1,3.5 c0.5,0.5,1,1,1.4,1.5C66.7,470.2,66.4,470.8,65.9,470.6z"/>
<path class="st2" d="M85.2,484.6c-5-1.1-10.5-0.5-15.3,1c-2.7,0.9-5.1,2.3-7.4,3.9c-1.8,1.3-3.8,2-6,1.3c-5.2-1.5-6-8.7-1.4-11.4 c2-1.2,4.8-1.3,7.1-1.6c3.1-0.3,6.3-0.2,9.4,0.3c2.7,0.5,5.3,1.3,7.8,2.3c1.5,0.6,3,1.4,4.4,2.2c0.5,0.3,1.1,0.7,1.6,1 C85.8,484.2,85.6,484.7,85.2,484.6z"/>
<path class="st2" d="M102.9,508.3c-1.7-5.2-1.9-11.1-1.2-16.5c0.5-3.4,1.4-6.8,2.8-9.9c1-2.2,2.1-4.9,3.9-6.7 c4-3.9,11-1.4,11.7,4.1c0.3,2.6-0.9,5-3,6.5c-2.5,1.8-4.6,3.7-6.6,6c-2,2.4-3.6,5.4-4.7,8.3c-0.7,1.8-1.3,3.6-1.7,5.5 c-0.1,0.7-0.3,1.4-0.4,2.1C103.7,508.3,103.1,509.1,102.9,508.3z"/>
<g>
<path class="st2" d="M107.5,515.8c-3.4-2.8-7.7-4.6-11.9-5.5c-2.7-0.6-5.5-0.9-8.2-0.7c-1.9,0.1-4.3,0.2-6.1,1 c-4.1,1.9-4.2,7.8-0.2,9.9c1.8,1,4,0.7,5.7-0.4c2-1.3,4.1-2.4,6.4-3.2c2.4-0.8,5-1.2,7.5-1.2c1.5,0,3.1,0.1,4.6,0.3 c0.6,0.1,1.1,0.2,1.7,0.3C107.2,516.4,108,516.2,107.5,515.8z"/>
</g>
</g>
<path class="st5" d="M211.9,611.2c-16.2,16-41.5,30.7-26.4,65.6l-19.8-1l-1.7-0.1l-11.8-0.6c-33.6-77.9-64-102.3-37.4-112 c26.6-9.7,49.1,38.5,26.6-9.7c-16.7-35.7-25.5-58.2-5.8-65.3c19.6-7,30.5,28.4,30.5-4.6c0-11.3,2.6-31.7,28.8-25.2 c26.2,6.5-14.4,60.1,14.8,52.8c29.3-7.3,35.1-1.5,25.3,10.6c-9.8,12.1-55.5,50.5-11.8,43.9C266.7,558.9,228.1,595.2,211.9,611.2z"/>
<path class="st3" d="M218.9,583.1c-0.6,0.3-55.6,34.7-56.2,63.6c0.5,9.6,1.5,19.3,3,29l-1.7-0.1c-0.2-1.3-0.4-2.6-0.6-3.9 c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0-0.2,0c-0.4,0-0.7-0.3-0.8-0.7c-4.1-19.3-34.4-58.2-34.7-58.6c-0.3-0.4-0.2-0.9,0.1-1.2 c0.4-0.3,0.9-0.2,1.2,0.1c1.2,1.5,27,34.8,33.8,55.2c-0.3-2.2-0.5-4.4-0.7-6.5c0,0,0,0,0-0.1c-12.4-55.2-48.4-87-48.8-87.3 c-0.4-0.3-0.4-0.8-0.1-1.2c0.3-0.4,0.8-0.4,1.2-0.1c0.3,0.3,32.7,28.9,46.9,78.8c-0.1-0.9-0.1-1.8-0.2-2.8c0-0.1,0-0.2,0-0.2 c0-0.2,0-0.4,0-0.6c-0.4-8.2-0.5-16.3-0.4-24.2c-0.1-0.1-0.1-0.2-0.1-0.3c-3.5-21.9-25.7-45.3-26-45.5c-0.3-0.3-0.3-0.9,0-1.2 c0.3-0.3,0.9-0.3,1.2,0c0.8,0.9,19.2,20.1,25.1,40.5c0-1.1,0.1-2.3,0.2-3.4c-0.2-0.2-0.3-0.5-0.3-0.9c0.1-0.4,0.2-0.7,0.3-1.1 c0.3-5.1,0.7-10.2,1.1-15.2c0-0.1,0-0.2,0-0.4c0-0.1,0.1-0.2,0.1-0.3c0.5-5,1-9.9,1.6-14.7c0,0,0,0,0-0.1 c-1-22.7-26.9-59.5-27.2-59.8c-0.3-0.4-0.2-0.9,0.2-1.2c0.4-0.3,0.9-0.2,1.2,0.2c1,1.4,22.3,31.6,26.7,54.5 c0.2-1.1,0.3-2.3,0.5-3.4c0,0,0-0.1,0-0.1c0.1-1,0.3-2,0.5-2.9c0.2-1.2,0.4-2.5,0.6-3.7c0,0,0,0,0-0.1c0.3-35.4-29.2-61-29.5-61.3 c-0.4-0.3-0.4-0.8-0.1-1.2c0.3-0.4,0.8-0.4,1.2-0.1c0.3,0.2,26.2,22.8,29.7,55c1.5-8.7,3.2-17,4.8-24.7 c-0.4-9.3-11.6-22.4-11.7-22.6c-0.3-0.4-0.3-0.9,0.1-1.2c0.4-0.3,0.9-0.3,1.2,0.1c0.4,0.5,8.7,10.3,11.3,19.3 c0.8-3.6,1.5-7.1,2.2-10.5c0.8-3.7,1.6-7.2,2.3-10.6c1.7-8.2-6-33.3-6.1-33.5c-0.1-0.4,0.1-0.9,0.6-1.1c0.4-0.1,0.9,0.1,1.1,0.6 c0.3,0.8,4.8,15.5,6.1,26.3c2.1-10.5,3.5-19.2,3.5-26c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.4,0.8,0.8c-0.1,9.6-2.7,22.6-6.2,38.9 c7.1-10.4,16.2-31.8,16.3-32c0.2-0.4,0.7-0.6,1.1-0.4c0.4,0.2,0.6,0.7,0.4,1.1c-0.5,1.1-11.2,26.4-18.7,35.3 c-0.1,0.6-0.3,1.2-0.4,1.9c-1.2,5.4-2.4,11.2-3.7,17.2c6.5-10.7,17.8-19.7,18.4-20.1c0.4-0.3,0.9-0.2,1.2,0.1 c0.3,0.4,0.2,0.9-0.1,1.2c-0.2,0.1-15.7,12.4-20.7,25c-1.1,5.3-2.1,10.9-3.1,16.6c9.2-20.3,30.3-35.8,31.4-36.6 c0.4-0.3,0.9-0.2,1.2,0.2c0.3,0.4,0.2,0.9-0.2,1.2c-0.3,0.2-29.2,21.5-34.2,46c-0.9,5.8-1.7,11.7-2.4,17.8 c12.3-35.5,46-64.8,46.4-65.2c0.4-0.3,0.9-0.3,1.2,0.1c0.3,0.4,0.3,0.9-0.1,1.2c-0.4,0.3-39.7,34.5-48.5,73.5 c-0.1,0.6-0.1,1.3-0.2,1.9c7.5-15.1,30.1-38.4,31.2-39.5c0.3-0.3,0.9-0.3,1.2,0c0.3,0.3,0.3,0.8,0,1.2 c-0.3,0.3-27.4,28.1-32.3,42.5c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,1.5-0.2,3-0.3,4.6c10.3-19.6,41.3-34.2,42.7-34.9 c0.4-0.2,0.9,0,1.1,0.4c0.2,0.4,0,0.9-0.4,1.1c-0.4,0.2-36.2,17.1-43.7,38.1c-0.5,9-0.6,18.2-0.4,27.5 c8.5-27.6,53.5-55.6,55.6-56.9c0.4-0.2,0.9-0.1,1.2,0.3C219.5,582.3,219.3,582.8,218.9,583.1z"/>
<g>
<path class="st6" d="M93.1,665.9c0,0-13.3,58.2,61,52.7c0,0,50.3,0.6,47.7-52.7H93.1z"/>
</g>
<rect x="249.8" y="610" class="st4" width="368.7" height="102.1"/>
<line class="st6" x1="256.7" y1="671.4" x2="608.6" y2="671.4"/>
<path class="st4" d="M655.1,584.9H204.6V409.5c0-11.4,9.2-20.7,20.7-20.7h409.2c11.4,0,20.7,9.2,20.7,20.7V584.9z"/>
<g>
<rect x="249.8" y="566.2" class="st7" width="368.7" height="67.1"/>
</g>
<g>
<path class="st7" d="M683.5,712.2h-74.8V542.8c0-20.7,16.8-37.4,37.4-37.4l0,0c20.7,0,37.4,16.8,37.4,37.4V712.2z"/>
</g>
<g>
<path class="st7" d="M256.7,712.2h-74.8V525.3c0-11,8.9-19.9,19.9-19.9h35c11,0,19.9,8.9,19.9,19.9V712.2z"/>
</g>
<g>
<path class="st4" d="M256.7,712.2h-74.8V572.4c0-9.6,7.8-17.4,17.4-17.4h40.1c9.6,0,17.4,7.8,17.4,17.4V712.2z"/>
<line class="st4" x1="256.7" y1="587.6" x2="256.7" y2="712.2"/>
</g>
<g>
<path class="st4" d="M683.5,712.2h-74.8V572.4c0-9.6,7.8-17.4,17.4-17.4h40.1c9.6,0,17.4,7.8,17.4,17.4V712.2z"/>
<line class="st4" x1="608.6" y1="587.6" x2="608.6" y2="712.2"/>
</g>
<circle class="st7" cx="216.6" cy="593" r="17"/>
<circle class="st7" cx="646.1" cy="593" r="17"/>
<g>
<path class="st2" d="M290.8,493.8c0,0-29-31.1,0-19.8c29,11.3,41.8-16.3,96.2,7.3c0,0,7.5-10.1,13.1-9.9 c5.6,0.2-8.3,21.6-4.5,25.6c3.2,3.3,12,34.7,6.5,48.3c-1.6,4-0.9,8.6,2.3,11.5c4.7,4.3,8.2,9.6-1,10c-15.9,0.7-74,20.8-99.9,2.9 c-16.6,11.8-23.8,10.2-14.3-3.5C298.7,552.5,276.6,526.3,290.8,493.8z"/>
</g>
<g>
<path class="st2" d="M469.6,492.9c0,0-29-31.1,0-19.8c29,11.3,41.8-16.3,96.2,7.3c0,0,7.5-10.1,13.1-9.9 c5.6,0.2-8.3,21.6-4.5,25.6c3.2,3.3,12,34.7,6.5,48.3c-1.6,4-0.9,8.6,2.3,11.5c4.7,4.3,8.2,9.6-1,10c-15.9,0.7-74,20.8-99.9,2.9 c-16.6,11.8-23.8,10.2-14.3-3.5C477.5,551.6,455.3,525.4,469.6,492.9z"/>
</g>
<g>
<path class="st8" d="M423.8,457.7c0,0,15.9,17.4,29.9,3.6c24.7,50.1,20,85.1,20,85.1s-37.3,18.7-59.1-6.1 C392.7,515.6,423.8,457.7,423.8,457.7z"/>
</g>
<path class="st9" d="M498.6,494.5l-30.8-55.4l-13.2,13.8c0,0,16.5,72.9,27.6,69.2C493.4,518.3,498.6,511.4,498.6,494.5z"/>
<path class="st10" d="M422.3,385.9c0,0,6.1,16.6-4.5,28.2c-10.5,11.6,2.2,69.7,36.8,49.3c5.7-42.3,2.5-57.6,2.5-57.6L422.3,385.9z"/>
<path class="st11" d="M471.4,377.5c0,23.2-12.6,43.2-28.3,43.2c-15.7,0-28.4-19.9-28.4-43.1s12.6-33.2,28.3-33.2 C458.7,344.4,471.4,354.3,471.4,377.5z"/>
<path class="st5" d="M479.1,373.2c-3.3-22-22.2-45.6-36.1-34.2c-15.3-7.3-38.8,5.5-41.8,35.1c-1.1,11.3-1.1,36.6,24.9,37.9 c-5.3-9.5-5.8-25.2-5.6-37.9c10.6-1.3,26.5-2.1,45.3,0.1c0.2,12.8-0.2,28.2-5.5,37.7C486.2,410.5,479.1,373.1,479.1,373.2z"/>
<path class="st6" d="M466.5,546.5c0,0,87.7-19.3,95.6,9.8c5.9,36.4-8.7,55.5-134.8,65.8C427,620.8,398.2,574.1,466.5,546.5z"/>
<g>
<path class="st7" d="M418.1,529.3c-3.3,0.2-9.4,36.7-9.4,36.7s-18.1-16.5-24.5-16c1.9-32,2.8-91.7,2.8-91.7L374,518 c0,0,0,0,7.7,6.7c1.7,1.5,2,4.1,1.5,7.2c-12.4,1-17.9,1.4-17.9,1.4l-1.7,14.3c0,0-3,6.1-10.7-9.7c-7.7-15.8,2.7-103.1,21.4-112.8 c18.7-9.6,43.6-11,43.6-11s6.1,28,13.3,31.9C428.3,460.3,414.8,494.2,418.1,529.3z"/>
</g>
<g>
<path class="st4" d="M387,458.3c-0.9,5-1.9,10-2.9,15c-1,5-2.1,10-3.2,14.9c-1.1,5-2.1,9.9-3.3,14.9c-1.2,5-2.3,9.9-3.5,14.9 l-0.1,0c0.7-5,1.7-10,2.7-15c1-5,2.3-9.9,3.5-14.9C382.5,478.1,384.8,468.2,387,458.3L387,458.3z"/>
</g>
<g>
<path class="st4" d="M352.8,537.9c-0.3-1.6-0.4-3.2-0.1-4.8c0.3-1.6,1-3.1,1.9-4.5c0.9-1.4,2-2.6,3.2-3.6c1.2-1.1,2.4-2.1,3.7-3.1 c2.6-1.9,5.7-3.4,9-3.6c1.6-0.1,3.4,0.2,4.9,0.9c1.5,0.8,2.6,2.1,3.3,3.6l-0.1,0c-0.9-1.3-2.1-2.4-3.5-3c-1.4-0.6-3-0.7-4.5-0.6 c-3.1,0.2-6.1,1.5-8.7,3.2c-1.3,0.9-2.6,1.9-3.8,2.9c-1.2,1-2.3,2.2-3.2,3.5c-0.9,1.3-1.6,2.7-2,4.3 C352.6,534.7,352.6,536.3,352.8,537.9L352.8,537.9z"/>
</g>
<g>
<path class="st4" d="M356,532c-1.5,2.3-2,5.1-1.4,7.6c0.3,1.3,0.9,2.4,1.5,3.6c0.7,1.1,1.5,2.1,2.5,3.1l-0.1,0.1 c-1.3-0.5-2.4-1.5-3.2-2.7c-0.8-1.2-1.3-2.5-1.5-3.9C353.4,537,354.2,534.1,356,532L356,532z"/>
</g>
<g>
<path class="st4" d="M423,455.4c0.5,0.1,1.1,0.1,1.6,0.2c0.3,0.1,0.6,0,0.8,0.2c0.2,0.1,0.4,0.3,0.6,0.7l0,0.1 c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3,0-0.5-0.2-0.7-0.4C423.9,456.1,423.5,455.8,423,455.4L423,455.4z"/>
</g>
<g>
<path class="st4" d="M417.9,477.1c0.5,0.1,1,0.1,1.4,0.2c0.2,0.1,0.5,0,0.7,0.2c0.2,0.1,0.4,0.3,0.5,0.6l0,0.1 c-0.3,0.1-0.6,0.1-0.8,0.1c-0.2,0-0.4-0.2-0.6-0.4C418.7,477.8,418.3,477.5,417.9,477.1L417.9,477.1z"/>
</g>
<g>
<path class="st4" d="M430.1,448.7c-4.4,12.8-7.6,25.9-9.6,39.3c-1,6.7-1.7,13.4-2.2,20.1c-0.6,6.7-0.8,13.5-0.9,20.2l-0.1,0 c-0.4-6.8-0.3-13.5,0.1-20.3c0.4-6.8,1.3-13.5,2.4-20.1C422,474.5,425.4,461.4,430.1,448.7L430.1,448.7z"/>
</g>
<g>
<path class="st4" d="M414.3,497.2c0.6,0.2,1.2,0.4,1.8,0.5c0.3,0,0.6,0,0.9,0.1c0.3,0.1,0.6,0.2,0.9,0.5l0,0.1 c-0.3,0.3-0.7,0.3-1,0.4c-0.4,0-0.7-0.2-1-0.3C415.3,498.2,414.7,497.8,414.3,497.2L414.3,497.2z"/>
</g>
<g>
<path class="st4" d="M414.1,517.2c0.5-0.1,1-0.2,1.5-0.3c0.3,0,0.5-0.2,0.8-0.1c0.3,0.1,0.5,0.2,0.8,0.4v0.1 c-0.3,0.3-0.5,0.4-0.8,0.4c-0.3,0.1-0.5-0.1-0.8-0.1C415.1,517.6,414.6,517.5,414.1,517.2L414.1,517.2z"/>
</g>
<g>
<path class="st4" d="M409.9,414.9c0.5,6.3,0.8,12.7,0.9,19c0.1,6.3,0.1,12.7-0.2,19.1l-0.5-0.5c1.7-0.2,3.4-0.7,5-1.1 c1.7-0.4,3.3-0.9,5-1.4c1.6-0.5,3.3-1.1,4.9-1.7c1.6-0.6,3.3-1.2,4.8-1.9l0,0.1c-3.1,1.7-6.3,3-9.6,4.2c-3.3,1.1-6.6,2.2-10.1,2.8 l-0.6,0.1l0-0.6c0.4-6.3,0.6-12.7,0.6-19C410.3,427.6,410.2,421.3,409.9,414.9L409.9,414.9z"/>
</g>
<g>
<path class="st7" d="M441.7,439.2c0,0,10.2-23,20.5-25.1c10.3-2.1,32.9,7.5,38.9,19.8c8,16.3,15,86.6-2.4,89.8 c6.6,16.6,6.6,16.6,6.6,16.6l-32.4,5C472.8,545.2,442.2,448.9,441.7,439.2z"/>
</g>
<g>
<path class="st4" d="M453.8,456.1c3.6,0.5,7.3-0.1,10.5-1.7c1.6-0.8,3-1.9,4.3-3.1c1.3-1.2,2.5-2.5,3.6-4l0.1,0 c-0.6,1.7-1.7,3.3-3,4.6c-1.3,1.3-2.9,2.3-4.6,3.1C461.2,456.6,457.4,457,453.8,456.1L453.8,456.1z"/>
</g>
<g>
<path class="st4" d="M480.8,447.8c1,5.8,2.2,11.5,3.3,17.3c0.6,2.9,1.2,5.7,1.7,8.6c0.4,2.9,0.9,5.8,1,8.7l-0.1,0 c-0.7-2.9-1.2-5.7-1.8-8.6c-0.6-2.9-1-5.8-1.5-8.7C482.4,459.5,481.4,453.7,480.8,447.8L480.8,447.8z"/>
</g>
<g>
<path class="st4" d="M459.6,470.2c1.7,5.6,3.7,11.1,6.1,16.4c2.4,5.3,5.1,10.5,8.2,15.4c1.5,2.5,3.2,4.9,4.9,7.3 c1.7,2.4,3.4,4.7,5.4,6.8c2,2.1,4.2,4,6.8,5.3c2.5,1.3,5.4,2.1,8.3,2l0,0.1c-2.9,0.3-5.9-0.3-8.6-1.6c-2.7-1.3-5.1-3.1-7.2-5.2 c-2.1-2.1-3.9-4.5-5.5-6.9c-1.7-2.4-3.2-4.9-4.8-7.4c-3-5-5.7-10.3-8-15.6C463,481.4,461,475.8,459.6,470.2L459.6,470.2z"/>
</g>
<g>
<path class="st4" d="M476.7,459.3c2.4,4.1,4.2,8.6,6,13c1.8,4.4,3.5,8.9,6.2,12.8c2.7,3.9,5.6,7.8,7.8,12.1 c2.2,4.3,3.8,9,3.9,13.8l-0.1,0c-0.7-4.7-2.4-9.2-4.7-13.4c-2.2-4.2-4.9-8.1-7.6-12.1c-2.6-4.1-4.3-8.6-6-13 C480.6,468,478.9,463.5,476.7,459.3L476.7,459.3z"/>
</g>
<g>
<path class="st4" d="M489.8,487.1c2-0.3,4-0.6,6-0.2c1,0.2,2.1,0.5,2.9,1.1c0.9,0.6,1.6,1.5,1.8,2.5l-0.1,0 c-0.7-0.8-1.4-1.3-2.2-1.8c-0.8-0.4-1.6-0.9-2.6-1.2C493.8,487.1,491.8,487.1,489.8,487.1L489.8,487.1z"/>
</g>
<g>
<path class="st4" d="M457.3,469.5c4,0.1,8-1.1,11.5-3.2c1.7-1,3.2-2.3,4.7-3.7c1.4-1.4,2.7-2.9,3.9-4.6l0.1,0 c-0.7,1.9-1.9,3.7-3.3,5.2c-1.4,1.5-3.1,2.7-5,3.7C465.5,468.9,461.3,469.9,457.3,469.5L457.3,469.5z"/>
</g>
<g>
<path class="st4" d="M472.4,447.8c1.4,1.4,2.7,2.8,3.7,4.6c0.5,0.9,1,1.8,1.2,2.8c0.2,1,0.3,2,0.1,3l-0.1,0 c-0.3-0.9-0.6-1.9-0.9-2.8c-0.3-0.9-0.5-1.8-0.9-2.7C474.6,451,473.5,449.4,472.4,447.8L472.4,447.8z"/>
</g>
<g>
<path class="st4" d="M453.9,455.8c0,2.4,0.3,4.7,0.9,7c0.3,1.1,0.8,2.2,1.2,3.3l1.3,3.3l-0.1,0c-0.8-0.9-1.5-1.9-2-3 c-0.5-1.1-0.8-2.3-1.1-3.5C453.6,460.6,453.5,458.2,453.9,455.8L453.9,455.8z"/>
</g>
<g>
<g>
<path class="st4" d="M455.1,465.4c0.3,0.5,0.4,1.1,0.3,1.6c-0.1,0.6-0.4,1.1-0.9,1.4c-1,0.7-2.6,0.4-3.3-0.8 c-0.3-0.5-0.5-1.2-0.3-1.9c0.1-0.6,0.6-1.2,1.2-1.5c0.6-0.3,1.3-0.3,1.9-0.1C454.5,464.5,454.9,464.9,455.1,465.4z M455.1,465.4 c-0.3-0.5-0.8-0.7-1.3-0.7c-0.5,0-0.9,0.1-1.3,0.4c-0.7,0.4-1.1,1.4-0.7,2.2c0.4,0.8,1.5,1.2,2.4,0.7c0.4-0.2,0.8-0.6,1-1.1 C455.4,466.5,455.4,465.9,455.1,465.4z"/>
</g>
<g>
<path class="st4" d="M460.7,485.4c0.3,0.5,0.4,1.1,0.3,1.6c-0.1,0.6-0.4,1.1-0.9,1.4c-1,0.7-2.6,0.4-3.3-0.8 c-0.3-0.5-0.5-1.2-0.3-1.9c0.1-0.6,0.6-1.2,1.2-1.5c0.6-0.3,1.3-0.3,1.9-0.1C460,484.5,460.4,484.9,460.7,485.4z M460.6,485.4 c-0.3-0.5-0.8-0.7-1.3-0.7c-0.5,0-0.9,0.1-1.3,0.4c-0.7,0.4-1.1,1.4-0.7,2.2c0.4,0.8,1.5,1.2,2.4,0.7c0.4-0.2,0.8-0.6,1-1.1 C461,486.5,460.9,485.9,460.6,485.4z"/>
</g>
<g>
<path class="st4" d="M466,503c0.3,0.5,0.4,1.1,0.3,1.6c-0.1,0.6-0.4,1.1-0.9,1.4c-1,0.7-2.6,0.4-3.3-0.8 c-0.3-0.5-0.5-1.2-0.3-1.9c0.1-0.6,0.6-1.2,1.2-1.5c0.6-0.3,1.3-0.3,1.9,0C465.3,502.1,465.8,502.5,466,503z M465.9,503 c-0.3-0.5-0.8-0.7-1.3-0.7c-0.5,0-0.9,0.1-1.3,0.4c-0.7,0.4-1.1,1.4-0.7,2.2c0.4,0.8,1.5,1.2,2.4,0.7c0.4-0.2,0.8-0.6,1-1.1 C466.3,504.1,466.2,503.5,465.9,503z"/>
</g>
<g>
<path class="st4" d="M471.4,519.1c0.3,0.5,0.4,1.1,0.3,1.6c-0.1,0.6-0.4,1.1-0.9,1.4c-1,0.7-2.6,0.4-3.3-0.8 c-0.3-0.5-0.5-1.2-0.3-1.9c0.1-0.6,0.6-1.2,1.2-1.5c0.6-0.3,1.3-0.3,1.9-0.1C470.7,518.1,471.1,518.6,471.4,519.1z M471.3,519.1 c-0.3-0.5-0.8-0.7-1.3-0.7c-0.5,0-0.9,0.1-1.3,0.4c-0.7,0.4-1.1,1.4-0.7,2.2c0.4,0.8,1.5,1.2,2.4,0.7c0.4-0.2,0.8-0.6,1-1.1 C471.6,520.1,471.6,519.6,471.3,519.1z"/>
</g>
<g>
<path class="st4" d="M442.1,442l15.5,51.6l3.9,12.9l3.8,12.9c2.4,8.6,4.9,17.3,7.2,25.9l-0.1,0c-2.8-8.5-5.4-17.1-8-25.7 l-3.8-12.9l-3.7-12.9L442.1,442L442.1,442z"/>
</g>
</g>
<g>
<path class="st4" d="M444.6,443.3c1.3,1.8,2.6,3.6,4.1,5.2c0.7,0.8,1.5,1.6,2.3,2.4c0.4,0.4,0.8,0.8,1.2,1.2 c0.4,0.4,0.8,0.7,1.2,1c0.4,0.3,1,0.4,1.4,0.2c0.4-0.2,0.7-0.6,1-1.1c0.5-1,0.9-2,1.3-3c0.9-2,1.7-4.1,2.6-6.1 c1.6-4.1,3-8.3,4-12.6c0.5-2.1,0.8-4.3,1.1-6.5c0.2-2.2,0.2-4.4,0.1-6.6l0.1,0c0.4,2.2,0.5,4.4,0.4,6.7c-0.1,2.2-0.4,4.5-0.8,6.7 c-0.9,4.4-2.5,8.6-4.2,12.7c-0.9,2-1.8,4.1-2.7,6.1c-0.5,1-0.9,2-1.4,3c-0.3,0.5-0.7,1-1.3,1.3c-0.6,0.2-1.3,0-1.8-0.3 c-0.5-0.3-0.9-0.7-1.3-1.1c-0.4-0.4-0.8-0.8-1.2-1.2c-0.8-0.8-1.5-1.6-2.2-2.5C447,447,445.7,445.2,444.6,443.3L444.6,443.3z"/>
</g>
<g>
<path class="st11" d="M374,522.4c0,0,11.5,1.4,23.5,1.4c5.6,16.6-1,17.5-1,17.5s-27.8,6.4-33.6,5.3 C357.1,545.5,351.3,528.9,374,522.4z"/>
</g>
<g>
<path class="st11" d="M397.5,523.8c0,0,17.2,0.4,22.7,4.2c5.6,3.8,6.9,6.4,6.9,6.4l0,4.4c0,0,10.8,12.5,8.7,13.9 c-2.1,1.3-16.7-10.5-16.7-10.5s17.6,14.8,16.4,18.1c-1.2,3.3-16.8-9.2-16.8-9.2s16.1,12.9,12.6,14.4s-8.3-3.9-8.3-3.9 s6.9,10.4-3.8,2.5c-10.7-7.9-12.3-13.9-18-17.3C395.5,543.2,390.9,531.1,397.5,523.8z"/>
</g>
<g>
<path class="st10" d="M411.9,549.9c4.6,5.3,9.2,10.6,13.8,15.9"/>
<path class="st12" d="M411.9,549.9l7,7.8c1.2,1.3,2.4,2.6,3.5,3.9c1.1,1.4,2.2,2.7,3.3,4.1l0,0c-1.3-1.2-2.4-2.5-3.6-3.8 c-1.2-1.3-2.3-2.7-3.4-4L411.9,549.9L411.9,549.9z"/>
</g>
<g>
<path class="st10" d="M413,544.9c2.9,3,5.7,6.1,8.6,9.1"/>
<path class="st12" d="M413,544.9l4.4,4.4c0.7,0.7,1.5,1.5,2.2,2.2c0.7,0.8,1.4,1.6,2,2.4l0,0c-0.8-0.7-1.5-1.4-2.3-2.1 c-0.7-0.7-1.4-1.5-2.1-2.3L413,544.9L413,544.9z"/>
</g>
<g>
<path class="st10" d="M416.7,539c2.9,2.7,5.8,5.4,8.6,8.2"/>
<path class="st12" d="M416.7,539l4.4,4c0.7,0.7,1.5,1.3,2.2,2c0.7,0.7,1.4,1.4,2,2.2l0,0c-0.8-0.6-1.6-1.2-2.3-1.9 c-0.7-0.7-1.4-1.4-2.1-2.1L416.7,539L416.7,539z"/>
</g>
<g>
<path class="st10" d="M420.6,531.6c2.3,2.5,4.7,5.1,7,7.6"/>
<path class="st12" d="M420.6,531.6c1.2,1.2,2.4,2.5,3.6,3.7c0.6,0.6,1.2,1.2,1.8,1.9c0.6,0.7,1.1,1.3,1.6,2.1l0,0 c-0.7-0.5-1.3-1.2-1.9-1.8c-0.6-0.6-1.2-1.3-1.7-1.9C422.9,534.3,421.7,533,420.6,531.6L420.6,531.6z"/>
</g>
<path class="st11" d="M471.4,448.6c-6.8,8.5-15.6,7.8-15.6,7.8s-1.2-3.5-6-10.7c-4.8-7.1-2.3-13.6-2.8-16c-0.5-2.4-11.4-6.2-12.4-7 c-1.1-0.8,0.1-2.2,13.6-0.4c-0.5-1.9-2.5-3.6-4.6-4.6c-1.5-0.8-3-1.3-3.9-1.3c-1.6,0-6.2-1.9-5.9-3.1c0-0.1,0.1-0.1,0.1-0.1 c0.1-0.2,0.4-0.4,0.9-0.5c1.6-0.1,3.1-0.2,4.5-0.1c8.8,0.3,12.5,4,12.7,4.3c-0.2-0.4-4.1-7.3-7.1-8c-3.2-0.8-8.5,1.5-8.7-0.4 c-0.3-1.8,6.7-2.5,6.7-2.5s-3.1-1.2-2.7-2.4c0.4-1.2,7.4-0.7,11.4,0.6c4,1.3,1.8-0.3,11.9,11.3 C462.3,431.2,471.4,448.6,471.4,448.6z"/>
<g>
<path class="st10" d="M452,416.9c-1.2-0.9-2.6-1.6-4.1-2.1c-1.4-0.5-2.9-1-4.4-1.3c-1.5-0.3-3-0.6-4.5-0.7 c-0.8-0.1-1.5-0.1-2.3-0.1c-0.7,0-1.5,0.1-2.1,0.3c-0.1,0.1-0.3,0.1-0.3,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2 c0.1,0.2,0.3,0.5,0.6,0.7c0.6,0.4,1.3,0.7,2,1c1.4,0.6,2.9,1,4.3,1.6c1.4,0.6,2.9,1.2,4.1,2.2c1.3,0.9,2.3,2.1,3,3.6l0,0 c-0.7-1.4-1.8-2.5-3.1-3.4c-1.3-0.9-2.7-1.5-4.1-2c-1.4-0.5-2.9-1-4.4-1.6c-0.7-0.3-1.5-0.5-2.1-1c-0.3-0.2-0.6-0.5-0.7-0.9 c-0.1-0.2-0.1-0.4,0-0.6c0.1-0.2,0.3-0.3,0.5-0.4c0.7-0.3,1.5-0.3,2.3-0.3c0.8,0,1.5,0,2.3,0.1c1.5,0.1,3.1,0.4,4.6,0.8 c1.5,0.4,3,0.8,4.4,1.4C449.5,415.2,450.9,415.9,452,416.9L452,416.9z"/>
</g>
<g>
<path class="st10" d="M441.1,403.1c0.8-0.1,1.7-0.2,2.5-0.2c0.8,0,1.7,0,2.5,0.1c1.7,0.2,3.3,0.6,4.9,1.1c1.6,0.6,3.1,1.3,4.5,2.3 c0.7,0.5,1.3,1,1.9,1.6c0.6,0.6,1.1,1.3,1.5,2l0,0c-0.9-1.4-2.2-2.5-3.6-3.4c-1.4-0.9-2.9-1.6-4.5-2.1 C447.7,403.5,444.4,403,441.1,403.1L441.1,403.1z"/>
</g>
<g>
<path class="st10" d="M456.6,413.6c-0.5,0.1-0.9-0.4-1.1-0.7c-0.3-0.4-0.6-0.7-0.8-1.1c-0.5-0.7-1.1-1.5-1.7-2.2 c-1.2-1.4-2.7-2.4-4.4-2.8c-3.5-0.7-7.2-0.3-10.6,0.8c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0.1-0.5,0.2-0.4,0.2 c-0.1,0.1-0.1,0.3-0.1,0.3c0,0.1,0.1,0.2,0.2,0.3c0.3,0.2,0.7,0.2,1.1,0.3c0.4,0,0.9,0,1.3,0c0.9,0,1.8-0.3,2.7-0.4 c0.9-0.1,2,0,2.9,0.3c1.8,0.6,3.3,1.9,4.4,3.4c1.1,1.5,2,3.1,2.7,4.8l0,0c-0.8-1.7-1.7-3.2-2.9-4.7c-1.1-1.4-2.6-2.7-4.3-3.2 c-0.9-0.3-1.8-0.4-2.7-0.2c-0.9,0.1-1.8,0.4-2.7,0.4c-0.5,0-0.9,0.1-1.4,0c-0.5,0-0.9-0.1-1.3-0.3c-0.2-0.1-0.4-0.3-0.4-0.6 c0-0.2,0.1-0.5,0.2-0.7c0.4-0.3,0.8-0.4,1.3-0.6c3.5-1.1,7.3-1.4,10.9-0.7c1.8,0.5,3.3,1.6,4.5,3c0.6,0.7,1.1,1.5,1.6,2.2 c0.3,0.4,0.5,0.8,0.8,1.1C455.8,413.2,456.1,413.6,456.6,413.6L456.6,413.6z"/>
</g>
<path class="st13" d="M415.8,581l80-1.6c4.6-0.1,8.6-3.2,9.7-7.7l14.5-56.3c1.3-5-2.5-9.8-7.7-9.7l-73.5,1.4 c-3.1,0.1-5.7,2.2-6.4,5.2L415.8,581z"/>
<path class="st14" d="M463.8,546.5c0.1,4.2,3.5,7.5,7.7,7.4c4.2-0.1,7.5-3.5,7.4-7.7c-0.1-4.2-3.5-7.5-7.7-7.4 C467,538.9,463.7,542.3,463.8,546.5z"/>
<path class="st5" d="M477.4,616.8c0,0-72.8-84.6-103.9-74.5c-31.2,10.1-41,67.2,53.8,79.7C467.3,618,477.4,616.8,477.4,616.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

BIN
assets/img/logo_black.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
assets/img/logo_white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

230
assets/img/new-years.svg Normal file
View file

@ -0,0 +1,230 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 2000 2000" style="enable-background:new 0 0 2000 2000;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.22;}
.st1{fill:#FFBE55;}
.st2{opacity:0.67;fill:#FFBE55;}
.st3{fill:#0B4870;}
.st4{fill:#EFB68F;}
.st5{fill:#D3D3D3;}
.st6{fill:#E0E0E0;}
.st7{fill:#FCD2B1;}
.st8{fill:#F7F7F7;}
.st9{fill:#2A94F4;}
.st10{fill:#FFFFFF;}
</style>
<g id="Floor" class="st0">
<path class="st1" d="M453.6,1357c-37.7-35.5-149.4-140.8-168-308c-20.1-180.9,73.1-395.2,221-447c110.2-38.6,155.8,46.3,357,36 c105.7-5.4,123.9-30.4,307-79c270.6-71.8,405.9-107.7,476-53c121.9,95.1,68.2,388.1-27,570c-14.4,27.5-64.4,118.9-167,212 c-28.8,26.2-346.9,306-723,214C681.7,1490.3,562.3,1459.5,453.6,1357z"/>
<ellipse class="st2" cx="926.6" cy="1442" rx="559" ry="23"/>
</g>
<g>
<g id="New_Year">
<g>
<path class="st3" d="M476,858.6l-16.1-3.7l-11.1-32.5c-1.4-4.2-2.7-9.1-3.8-14.9c0.1,4.4-0.2,8-0.9,10.9l-7.2,31.1l-16-3.7 l14.8-64.3l18.6,4.3l9.6,27c1.9,5.4,3.2,10,3.9,13.9c0.3-5.7,1.1-11.5,2.4-17.2l4.4-19l16.1,3.7L476,858.6z"/>
<g>
<path class="st3" d="M423.1,763l93.5,21.6l-21.6,93.5l-93.5-21.6L423.1,763 M418.6,755.8l-1.3,5.8l-21.6,93.5l-1.3,5.8l5.8,1.3 l93.5,21.6l5.8,1.3l1.3-5.8l21.6-93.5l1.3-5.8l-5.8-1.3l-93.5-21.6L418.6,755.8L418.6,755.8z"/>
</g>
</g>
<g>
<path class="st3" d="M616.3,869.2l1,15.7l-49.5,3.2l-4.2-65.8l49.5-3.2l1,15.2l-29.7,1.9l0.6,9.5l24-1.5l0.9,14.6l-24,1.5 l0.7,10.8L616.3,869.2z"/>
<g>
<path class="st3" d="M630.9,802.5l6.2,95.8l-95.8,6.2l-6.2-95.8L630.9,802.5 M636.5,796.1l-6,0.4l-95.8,6.2l-6,0.4l0.4,6 l6.2,95.8l0.4,6l6-0.4l95.8-6.2l6-0.4l-0.4-6l-6.2-95.8L636.5,796.1L636.5,796.1z"/>
</g>
</g>
<g>
<path class="st3" d="M763.7,813.6l-21.4,64.8l-17-1l-7-36.9l-10.9,35.8l-17.7-1.1l-13.6-66.9l19,1.1l6.9,38.5l11.2-37.4l15.9,0.9 l7.5,38.6l11.5-37.4L763.7,813.6z"/>
<g>
<path class="st3" d="M673,792.7l95.8,5.7l-5.7,95.8l-95.8-5.7L673,792.7 M667.4,786.4l-0.4,6l-5.7,95.8l-0.4,6l6,0.4l95.8,5.7 l6,0.4l0.4-6l5.7-95.8l0.4-6l-6-0.4l-95.8-5.7L667.4,786.4L667.4,786.4z"/>
</g>
</g>
<g>
<path class="st3" d="M1033.2,878.1l0,15.8l-49.6,0l0-66l49.6,0l0,15.2l-29.8,0l0,9.6l24.1,0l0,14.6l-24.1,0l0,10.8L1033.2,878.1z "/>
<g>
<path class="st3" d="M962.1,812.5l96,0l0,96l-96,0L962.1,812.5 M956.1,806.5l0,6l0,96l0,6l6,0l96,0l6,0l0-6l0-96l0-6l-6,0l-96,0 L956.1,806.5L956.1,806.5z"/>
</g>
</g>
<g>
<path class="st3" d="M1153.3,818.5l-5.2-12.5l-17.6,2l-2.5,13.4l-16.3,1.8l12.9-67.8l21.3-2.4l27.9,63.2L1153.3,818.5z M1132.4,793.3l10.6-1.2l-7.4-18.4L1132.4,793.3z"/>
<g>
<path class="st3" d="M1181.4,733.4l10.7,95.4l-95.4,10.7l-10.7-95.4L1181.4,733.4 M1186.7,726.8l-6,0.7l-95.4,10.7l-6,0.7l0.7,6 l10.7,95.4l0.7,6l6-0.7l95.4-10.7l6-0.7l-0.7-6l-10.7-95.4L1186.7,726.8L1186.7,726.8z"/>
</g>
</g>
<g>
<path class="st3" d="M1298.7,755.2l-20.7,8.6l-18.6-19.6l-5.9,2.5l9.7,23.3l-18.7,7.8l-25.3-60.9l31.8-13.2 c7-2.9,13.2-3.5,18.4-1.9c5.2,1.7,9,5.2,11.2,10.6c1.5,3.5,2,6.9,1.7,10.2c-0.3,3.3-2.2,6.9-5.7,10.7L1298.7,755.2z M1248,733.6 l8-3.3c2.3-1,4-2.3,5.1-3.8c1-1.6,1.1-3.3,0.3-5.2c-1.6-3.9-4.8-4.8-9.6-2.9l-8.6,3.6L1248,733.6z"/>
<g>
<path class="st3" d="M1284.9,672.7l36.9,88.6l-88.6,36.9l-36.9-88.6L1284.9,672.7 M1288.2,664.9l-5.5,2.3l-88.6,36.9l-5.5,2.3 l2.3,5.5l36.9,88.6l2.3,5.5l5.5-2.3l88.6-36.9l5.5-2.3l-2.3-5.5l-36.9-88.6L1288.2,664.9L1288.2,664.9z"/>
</g>
</g>
</g>
<g>
<path class="st3" d="M907.8,838.9l-20.6,38v27.9h-19.7v-27.9l-22.2-38h22.2l11.6,21.7l11.1-21.7H907.8z"/>
<g>
<path class="st3" d="M927.1,823.5v96h-96v-96H927.1 M933.1,817.5h-6h-96h-6v6v96v6h6h96h6v-6v-96V817.5L933.1,817.5z"/>
</g>
</g>
</g>
<g>
<path class="st1" d="M716.5,628.5c-6.5-3.7-14.5-5.5-22.3-7.6c6.4-6.4,13.7-14.7,12.6-21.8c-0.2-1.4-2.1-2.3-3.3-1.9 c-3.9,1.2-5,3.4-7.3,6.8c-2.9,4.4-6.1,8.5-9.5,12.5c-2.2-8.6-3.5-19.8-9.2-26.9c-0.5-0.7-1.5-0.2-1.7,0.5 c-2.4,7.4-0.7,16.7,0.7,24.7c-7.6-2.8-15.7-5-23.4-2.9c-1.5,0.4-1.7,2.4-0.4,3.2c7.6,4.5,16.8,7.2,25.3,10.2c0,0.3,0.1,0.6,0.1,0.9 c-6.5,6.8-13.5,13.1-19.1,20.6c-0.5,0.7,0.4,1.8,1.2,1.5c7.2-2.5,13.6-7.5,19.4-12.9c1.1,6,2.8,11.8,5.7,16.2c3.3,5,11.9,2,10-4.2 c-1.7-5.7-3.3-11.3-4.9-17c8.2,3.4,17.2,6.7,25.3,4.5C718.5,634.1,719.1,630,716.5,628.5z"/>
<path class="st1" d="M623,635.1c-6.6,0-13-1.7-19.4,0c-1.7,0.4-1.7,2.9,0,3.3c6.7,1.8,13.1,0,19.6-2.1 C623.9,636.1,623.8,635.1,623,635.1z"/>
<path class="st1" d="M574.5,642.5c-7.7-0.7-16.7-1.7-23.5,2.5c-2.1,1.2-1.7,4.4,0.7,5.1c7.6,2.2,17.1,0.2,23.7-4.4 C576.8,644.6,576.2,642.6,574.5,642.5z"/>
<path class="st1" d="M522.5,653.2c-5.3-1-10.7-0.3-16-0.1c-4.8,0.2-10.5-0.7-14.6,2.3c-1.8,1.3-1.8,3.6,0,4.9 c4.2,3,9.7,1.8,14.6,1.2c5.6-0.7,11.4-1.2,16.6-3.4C525.2,657.1,524.7,653.6,522.5,653.2z"/>
<path class="st1" d="M646.9,651.4c-3.1,0.7-5.9,2.1-8.7,3.7c-3.2,1.8-5.2,3.4-6.9,6.7c-1.1,2.1,0.7,4.2,2.9,3.8 c3.7-0.7,5.7-2.3,8.3-5c2.2-2.3,4.3-4.7,5.8-7.4C648.8,652.2,648,651.2,646.9,651.4z"/>
<path class="st1" d="M609.6,681.8c-4.7,3-9.3,6.3-12.5,10.9c-1,1.4,0.6,3.4,2.2,2.9c5.7-1.9,10.7-6.1,12.6-12 C612.3,682.3,610.7,681.1,609.6,681.8z"/>
<path class="st1" d="M566.4,722c-9.1,4.9-17.6,13.1-22.1,22.3c-1,2.1,1.5,4.1,3.3,2.5c7.6-6.7,14.8-14.7,20.8-22.9 C569.3,722.7,567.6,721.3,566.4,722z"/>
<path class="st1" d="M616.4,652c-25.5,13.2-54.3,23.3-76.7,41.5c-1.5,1.2,0.4,3.6,2,2.6c24.4-14.7,55.4-22.2,75.5-43.2 C617.7,652.5,617,651.7,616.4,652z"/>
<path class="st1" d="M666,671.1c-0.3-0.5-0.9-0.6-1.4-0.4c-6.3,2.9-11.5,12.6-16.1,17.8c-7.6,8.6-13.5,18.4-19.5,28.1 c-12.7,20.4-26.4,42.5-29.6,66.7c-0.3,2.6,3.5,3.2,4.7,1.3c13.7-22.4,23.6-46.9,37.2-69.4c5.5-9.1,11.2-17.6,17.6-26.1 C662.4,684.6,669.3,677,666,671.1z"/>
<path class="st1" d="M685.3,692.4c-0.8-5.1-2-10.5-4.8-14.8c-0.3-0.5-1-0.3-1.1,0.3c-0.5,5,0.2,10.2,0.3,15.3 c0.1,4.5-1.1,9.4,1.6,13.2c1,1.4,2.8,1.4,3.8,0C687.7,702.3,686,697,685.3,692.4z"/>
<path class="st1" d="M690,739.4c-0.9-4.8-2.4-9.2-2.7-14.1c-0.4-5.4-8.2-5.5-8.4,0c-0.2,4.6,0.4,9.2,1,13.7 c0.6,4.5,1.1,8.1,5.7,9.8c0.9,0.3,1.8-0.1,2.5-0.6C691.1,745.6,690.7,743,690,739.4z"/>
<path class="st1" d="M704,796.8c-1.1-5.3-2.7-10.7-4.7-15.8c-1.4-3.6-2.6-7.4-6.1-9.5c-0.8-0.5-1.7,0-2,0.8 c-1.2,3.5,0,7.2,0.6,10.8c1,5.4,1.8,10.9,3.1,16.2C696.4,805.3,705.2,802.7,704,796.8z"/>
<path class="st1" d="M658.3,722c-10.1,24.8-10.2,53.9-9.3,80.2c0.1,1.8,2.8,1.8,2.9,0c1.1-26.9,5.6-53.3,7.5-80.1 C659.4,721.5,658.5,721.5,658.3,722z"/>
<path class="st1" d="M721.7,668.1c-2.6-3-8.2-8.6-12.5-6.1c-1.2,0.7-1.6,2-1.4,3.3c0.3,2,2.4,3.5,3.7,4.9c1.7,1.8,3.1,4,4.6,6.1 c1.4,2,2.9,5.5,5.2,6.6c1.7,0.8,4.5,1.9,6,0C731.3,677.9,724.8,671.6,721.7,668.1z"/>
<path class="st1" d="M763.9,718.5c-1.5-3.8-4.5-6.6-7.2-9.6c-3.1-3.6-6-7.6-9.4-10.9c-1.1-1-2.9,0-2.5,1.4c1.1,4.3,3.8,8.5,6.5,12 c2.9,3.7,5.8,7.7,10.3,9.5C762.9,721.3,764.4,719.7,763.9,718.5z"/>
<path class="st1" d="M791.3,748.4c-2.6-3.5-5.6-6.8-8.3-10.3c-3.4-4.3-9.5,1.8-6,6c2.4,2.8,4.8,5.5,7.2,8.4c2.4,2.8,4.3,6,8,7.3 c1,0.3,2-0.4,2.3-1.3C795.6,754.7,793.5,751.3,791.3,748.4z"/>
<path class="st1" d="M741.8,741.1c-4.7-11.1-11.5-20.6-18-30.7c-6.4-9.9-11.9-21.4-20.2-29.9c-0.5-0.5-1.3,0-1.2,0.7 c2.8,11.5,10.2,22.1,16.1,32.3c6.1,10.6,11.9,21,20,30.1C740.2,745.6,742.7,743.1,741.8,741.1z"/>
<path class="st1" d="M863.4,708.4c-8.5-10.6-21.7-18.3-32.4-26.6c-10.5-8.1-21.2-16.2-33-22.5c-20.2-10.8-45.3-12.5-64-26.2 c-0.5-0.4-1.1,0.4-0.7,0.9c15.5,16.4,38,21.7,57.8,31.2c13.2,6.4,25,16.3,36.4,25.4c10,8,20.5,18.8,32.9,22.9 C863.6,714.6,865.1,710.6,863.4,708.4z"/>
<path class="st1" d="M881.4,538.9c-31.4,4.6-61.6,13.3-91.2,24.7c-26.8,10.3-56.6,23.5-76,45.4c-1.6,1.8,0.4,4.3,2.5,3.3 c13-6.5,25.2-14.5,38-21.3c13.4-7,27.5-12.9,41.7-18.2c28.4-10.6,58.1-17.5,86.6-27.8C887,543.6,885.4,538.3,881.4,538.9z"/>
<path class="st1" d="M767.1,610.4c-3.4-5.3-11.1-1.9-15.8-0.3c-3.6,1.2-7.1,2.5-10.7,3.8c-2.5,0.9-5.7,1.2-7.5,3.4 c-0.2,0.2-0.3,0.5-0.1,0.8c2.5,4.4,10.9,2,14.7,1.1c3.8-0.9,7.5-2,11.3-2.8c3.2-0.6,6.3-0.7,8-3.9 C767.5,611.9,767.6,611.1,767.1,610.4z"/>
<path class="st1" d="M810.1,597.8c-4.9-1-8.6-0.4-13.4,1c-5.2,1.5-11.1,2.6-15.4,6c-1.1,0.8-1.2,2.8,0.4,3.2 c4.4,1,8.9,0.1,13.2-0.7c5.8-1.1,10.9-1.8,15.7-5.4C812,600.7,812.2,598.2,810.1,597.8z"/>
<path class="st1" d="M857,590.6c-4.1-2.1-7.5-2.4-12.1-1.9c-3.6,0.4-9.5,0.5-12.6,2.6c-1.4,1-1.9,3-0.6,4.3 c2.8,2.8,8.3,2.1,11.9,2.1c5.1-0.1,8.9-1,13.3-3.4C858.4,593.6,858.5,591.4,857,590.6z"/>
<path class="st1" d="M850.7,626.6c-14.6-1.4-29-1.1-43.6-0.3c-7.1,0.4-14.2,0.8-21.4,1c-5.5,0.2-11.8-0.6-16.6,2.4 c-0.5,0.3-0.5,1,0,1.4c8.1,5.9,24.7,3.2,34.3,3.3c15.8,0.1,31.5-0.7,47.3-2.2C854.2,631.8,854.2,627,850.7,626.6z"/>
<path class="st1" d="M768.4,472.3c-15.2,16.6-27.9,34.9-38.7,54.6c-8.8,16-20.3,39.7-15.6,58.3c0.1,0.5,0.9,0.6,1.2,0.2 c4.3-8.1,6.2-17.5,9.3-26.2c3.9-10.7,9.4-20.8,15-30.6c10.3-18.1,23.1-34.6,33.6-52.6C774.9,473.1,770.8,469.8,768.4,472.3z"/>
<path class="st1" d="M672,533.8c-1-13.4-1.2-26.8-1.3-40.2c-0.1-13.4-0.4-26.8-0.8-40.3c-0.3-11.1,0.2-23.6-5-33.7 c-0.9-1.7-3.5-1.2-4,0.5c-3.1,10.5-0.9,22.3-0.4,33.1c0.6,13.4,0.8,26.8,1.3,40.3c0.9,24.9,0.8,53.8,10.3,77.2 c0.6,1.5,2.9,1.4,2.9-0.4C675,558.2,672.9,545.9,672,533.8z"/>
<path class="st1" d="M697.2,554.2c-1.4-1.9-3.7-1.9-5,0c-2.1,2.9-2.1,5.9-1.7,9.3c0.3,3.2-0.1,6.3,0.8,9.4c0.2,0.8,1.3,1.3,2,0.8 c3-1.9,3.8-4.7,4.8-8C699.2,561.7,699.8,557.6,697.2,554.2z"/>
<path class="st1" d="M706.1,521.4c-0.5-1.4-2.8-2.2-3.6-0.5c-0.4,0.9-1.1,1.7-1.5,2.6c-0.4,1.1-0.7,2.3-0.9,3.5 c-0.6,2.7-1.3,5.4-2.3,8c-0.9,2.5,2.8,3.8,4.2,1.8c1.5-2.3,2.9-4.7,4-7.3C707.2,526.5,707.2,524.3,706.1,521.4z"/>
<path class="st1" d="M715.7,484c-0.2-1.9-2-2.7-3.5-1.5c-4.7,3.8-5.4,11.6-6,17.3c-0.3,2.6,3.5,2.8,4.3,0.6 C712.2,495.2,716.5,489.5,715.7,484z"/>
<path class="st1" d="M748.9,556.7c-4.5,0.7-7.8,3.6-10.8,6.8c-2.3,2.5-5.3,5.3-5.9,8.9c0,0.2,0.1,0.5,0.3,0.5 c3.3,0.9,6.6-1.2,9.1-3.1c3.8-2.9,7.4-5.7,9.8-9.9C752.4,558.1,750.7,556.4,748.9,556.7z"/>
<path class="st1" d="M785.3,535.5c-4.5,0.3-7.9,2.2-11.3,5c-1.5,1.2-3.2,2.3-4.6,3.7c-0.7,0.6-1.9,2.2-2.3,2.5 c-0.5,0.3-0.3,1.1,0.3,1.1c1,0.1,1.6,0.5,2.8,0.4c2.2-0.2,4.1-0.8,6.2-1.5c4.5-1.6,8.2-3.8,10.8-7.9 C788,537.5,787,535.4,785.3,535.5z"/>
<path class="st1" d="M819.5,516.9c-3.8-0.7-7.1,1.3-10.4,2.9c-2.8,1.4-5.3,2.5-7.5,4.7c-0.3,0.3-0.2,0.8,0.1,1.1 c2.5,1.9,6,0.5,8.7-0.2c3.6-1,8.2-2.1,10.1-5.7C821.2,518.7,820.8,517.1,819.5,516.9z"/>
<path class="st1" d="M641.1,595.5c-20-19.6-38.6-40.2-55.4-62.5c-7.9-10.4-15.5-21-23-31.7c-7.4-10.6-14.4-22.3-24.3-30.8 c-2.8-2.4-8.4-0.2-6.9,4c4.7,12.2,12.8,22.6,20.4,33.1c7.9,11,16.1,21.9,24.5,32.5c17.8,22.3,37.2,44,60.7,60.5 C640.3,602.8,643.7,598,641.1,595.5z"/>
<path class="st1" d="M650.6,568.7c-3.6-6.6-7.8-12.2-12.3-18.2c-1.2-1.6-3.9-0.7-3.3,1.4c1.7,7,4.7,12.2,8.8,18.2 c3.7,5.4,6.8,12,11.5,16.5c0.4,0.4,1,0.1,1-0.4C657,580,653.5,573.9,650.6,568.7z"/>
<path class="st1" d="M622.5,502c-1.1-1.8-4-0.6-3.4,1.4c2.2,8.5,4,17.1,8.7,24.7c1.2,1.9,3.6,0.6,3.3-1.4 C629.8,517.9,627.1,509.6,622.5,502z"/>
<path class="st1" d="M620.4,455.6c-0.8-1.6-3.6-0.9-3.5,0.9c0.5,7.1,2.1,13.9,1.3,21.1c-0.4,3.4,4.9,3.3,5.3,0 C624.6,470,623.9,462.5,620.4,455.6z"/>
<path class="st1" d="M619,616c-24.8-10.1-55.4-10.5-81.7-10.1c-26,0.4-55.6,1.7-79.6,12.6c-3.7,1.7-1.8,7.6,2,7.5 c26-1.1,51.5-7.6,77.6-8.9c27.1-1.4,54.6,2.4,81.5,0.4C619.7,617.4,619.8,616.4,619,616z"/>
<path class="st1" d="M618,601.7c-6.5-6.1-15.4-9.7-23.4-13.2c-2.2-0.9-4.3,1.4-2.6,3.3c6.2,6.8,14.9,13.2,24.7,13 C618.3,604.9,619.3,602.9,618,601.7z"/>
<path class="st1" d="M561.4,579.3c-2.5-3.2-5.9-5.3-9.3-7.5c-3.7-2.3-6.6-5-10.8-6.3c-1.3-0.4-2.8,1-2.3,2.3 c1.7,4.5,4.8,6.3,8.9,8.5c4.1,2.2,8.3,3.9,12.9,4.5C561.7,580.8,561.8,579.8,561.4,579.3z"/>
<path class="st1" d="M500.4,545.4c-5.5-4.4-11.8-10.3-19-11.3c-2.5-0.4-4.7,2.4-2.6,4.5c5.2,5.2,13.7,6.8,20.6,8.6 C500.4,547.4,501.3,546.1,500.4,545.4z"/>
<path class="st1" d="M819.4,732c-6.2-16.1-21.9-23.1-33.4-34.8c-3.6-3.7-9,1.8-5.6,5.6c10.4,11.7,23.7,20.6,34.7,31.7 C816.8,736.2,820.4,734.5,819.4,732z"/>
</g>
<path class="st3" d="M991,1402c-1-1-2-3-3-4c-2.7-1.2-5.6-2-8.4-2.9c-0.3,2.1-0.4,3.1-0.4,3.1s-54.4,16-73,32.6h106.3 c0,0,1.7-8.7,4.5-22.5c-2.9-0.1-5.9-0.5-9-1.4C1003,1406,997,1402,991,1402z"/>
<polygon class="st4" points="789.1,864.5 815.1,843.5 800.1,827.5 787.2,835.5 778.1,855.5 "/>
<path class="st4" d="M630,936.5c0,0,32.4,58-7.5,84.4l3.1,20.9l-29.8,5l-31.9-90C563.8,956.8,583.5,908,630,936.5z"/>
<path class="st3" d="M946.2,721.8c-14.3,6.9-29,16.2-36.9,28l26.9,36.5c0,0,6.6-2.8,15.7-8.4C940.9,763.3,941.7,741.2,946.2,721.8z"/>
<path class="st3" d="M816.4,1371.2c9.2-45.5,29.6-161.3,3.7-179.7c-32.4-23-146,8-146,8l-32,61c0,0,125.8-28,138.1-21 c7.9,4.5,3.7,80.5-0.2,133.7C791.9,1374.3,804.3,1374,816.4,1371.2z"/>
<path class="st3" d="M870.6,1429.5L819,1394c-12.8,3.9-26.9,3.3-40.9,3.1c-1.4,16.5-2.4,27.5-2.4,27.5L870.6,1429.5z"/>
<path class="st4" d="M819,1394l-6.5-4.5c0,0,1.6-7,3.9-18.3c-12.1,2.8-24.5,3.1-36.5,2c-0.6,8.7-1.3,16.8-1.9,23.9 C792,1397.2,806.2,1397.9,819,1394z"/>
<path class="st3" d="M590.1,1198.5c0,0-31,82-7,100s128,10.5,219-113.7c0,0-1-27.3-29-29.3s-99,60.4-99,60.4L590.1,1198.5z"/>
<path class="st3" d="M877.6,1317.2c-7.2,11.2-16.3,20.9-28.9,26.6l9.4,16.6l82-55L877.6,1317.2z"/>
<path class="st3" d="M851,1318c5.7-6.3,9.5-14.2,14-21.5l-32.4-61.8l-5.1,71.6l12.6,22.4C844.1,1325.6,847.8,1322.2,851,1318z"/>
<path class="st4" d="M865,1296.5c-4.6,7.3-8.3,15.2-14,21.5c-3.2,4.2-6.9,7.6-10.9,10.6l8.6,15.2c12.6-5.7,21.8-15.4,28.9-26.6 l-1.5,0.3L865,1296.5z"/>
<path class="st1" d="M627.2,1041.3c0,0,37.5,20.8,45,43c7.5,22.2-3.6,69.9,10.8,96.3c14.4,26.3-27.5,47.4-65.2,53.5 c-38.7,6.3-27.5-24.6-23.6-62.5c3.9-37.9-29.1-82.7,3.8-125.9C598.1,1045.7,605.4,1033.8,627.2,1041.3z"/>
<path class="st3" d="M597.1,969.5l-9,4c0,0-7-10-11-8s-5,11,10,22c0,0,23,52,10,66s-25,21-28,39s-8,75-48,67s-71,7-72-17 s30-15,42-45s-2-52,26-73c28-21,25-13,22-43s6-43,19-44c0,0,45-45,74-17c21.2,20.4-20,27-42,28C590.1,948.5,598.1,959.5,597.1,969.5 z"/>
<polygon class="st5" points="638.1,1314.5 537.1,1430.5 569.1,1430.5 670.1,1314.5 "/>
<polygon class="st5" points="618.1,1314.5 719.1,1430.5 687.1,1430.5 586.1,1314.5 "/>
<path class="st4" d="M642.4,1028.3c0,0,67.7-39.8,92.7-89.8s43-92,43-92l19,11c0,0-32,95-42,112s-63,75-96,86L642.4,1028.3z"/>
<rect x="530.1" y="1306.5" class="st3" width="199" height="35.5"/>
<path class="st4" d="M566.5,1113.9c0,0-17.4,109.6-0.4,132.6s109-55,109-55l-14-15c0,0-71,30.9-69.5,22.5s14-94,14-94L566.5,1113.9z "/>
<rect x="530.1" y="1070.5" class="st3" width="28" height="252"/>
<path class="st1" d="M650.5,1017l31.9,27c0,0-18.4,38-41.7,31.9S618.6,1039.1,650.5,1017z"/>
<path class="st1" d="M560.1,1122.5l48-10c0,0,4-48.6-16.5-54.8C571.1,1051.5,560.1,1122.5,560.1,1122.5z"/>
<path class="st6" d="M739.6,817l31.5-33.4c0,0,31.7,32.6,18.6,47.2C778.4,843.3,764.5,837.9,739.6,817z"/>
<polygon class="st6" points="782.1,831.8 809.2,856.7 814.6,851.7 785.8,824.9 "/>
<polygon class="st6" points="811,871.4 807.2,849.1 831.6,843.4 "/>
<path class="st4" d="M794.2,825.3c-0.6,0.9-4.5,8.4,0.2,11.3s4.1,7.4,7.5,8.2c3.4,0.7,7.1,5.8,8.2,5.2c1.1-0.6,7.5-2.4,6.7-9.1 C816,834.1,803.6,811.8,794.2,825.3z"/>
<path class="st4" d="M778.1,846.5c0,0,7-19,12-16s-8,23-8,23L778.1,846.5z"/>
<path class="st4" d="M656.1,1183.5c0,0,5-10,12-21s9.4-9.7,9.2-5.9c-0.2,3.9-5.2,8.9-5.2,11.9s21-8,25-17s5,7,4,10 s-18.3,29.4-28.6,32.2C662.1,1196.5,656.1,1183.5,656.1,1183.5z"/>
<g id="Male">
<path class="st3" d="M1072,1009.7c0,0-35.8,87.7-61.4,211.2c-12.9,62.5-20.8,107.1-25.4,135.9c10.4,9.5,25.2,11.4,39.8,12.9 c10.4-49,25.1-113.1,34.9-135.4c16.6-37.8,84.5-215.7,84.5-215.7L1072,1009.7z"/>
<path class="st7" d="M979.6,1395.1c2.9,0.8,5.7,1.7,8.4,2.9c1,1,2,3,3,4c6,0,12,4,17,5c3.1,0.9,6,1.3,9,1.4 c2.1-10.5,4.9-23.9,8-38.6c-14.6-1.5-29.4-3.3-39.8-12.9C981.9,1377.2,980.3,1389.8,979.6,1395.1z"/>
<path class="st3" d="M1156,1363c5.8-1.6,11.6-1.8,17.4-1.6c8.7-32.9,19.3-78.2,21.5-109.1c3.8-53.8-23.7-193.9-23.7-193.9 l-69.8-31.4c0,0,34.6,199.1,38.4,236.8c2,19.3-1.9,62.9-6.2,101C1141,1364.3,1147.6,1365.8,1156,1363z"/>
<path class="st7" d="M1164,1395.5c2.2-7.4,5.6-19.5,9.4-34.1c-5.8-0.2-11.6,0-17.4,1.6c-8.4,2.8-15,1.3-22.3,1.8 c-1.5,13.2-3,25.8-4.4,36.4c2.8-0.3,5.7-1.2,8.7-1.2C1146.9,1398.5,1155.5,1396.9,1164,1395.5z"/>
<path class="st3" d="M1228.2,1442.4c-12.8-28.8-66.6-39-66.6-39s0.9-2.9,2.3-7.9c-8.5,1.4-17.1,3-26,4.5c-2.9,0-5.8,0.9-8.7,1.2 c-2.4,18.8-4.2,31.6-4.2,31.6L1228.2,1442.4z"/>
<path class="st7" d="M1175.3,800c0,0-49.4,44.4-20.2,82.3l-9.7,18.8l26.6,14.4l59.4-74.8C1231.4,840.6,1228.6,788,1175.3,800z"/>
<path class="st3" d="M1200.9,839.7c0,0,13.9-1.9,10.6,6.3s-11.2,8-11.2,8l-11.6,40.4c0,0,69.7-54.3,52.6-66.2 c0,0-37.5-67.8-65.5-47.7c-11.2,8-12.7,20.5-1.4,26.7s31.6,13.7,27.8,18.7c-3.8,5.1-10.3,14.4-10.3,14.4l4.5,4.5L1200.9,839.7z"/>
<path class="st1" d="M1159.7,902.2c0,0-31.2-23.6-56.2,21.8c-25,45.4-34.1,96-34.1,96s92.2,53.1,101.8,34.6 c9.6-18.6,23-50.6,23.7-80.6c0.6-30.1-0.4-48.9-0.4-48.9L1159.7,902.2z"/>
<path class="st7" d="M1119.9,875.3c0,0-64-51.8-87-79.4c-23-27.5-36.5-58.2-36.5-58.2l-17.9,7.7c0,0,25.6,62.1,44.2,82.6 c18.6,20.5,76.8,76.2,76.8,76.2L1119.9,875.3z"/>
<path class="st1" d="M1081.4,896l39.5-33.2c0,0,35,52.1,14.4,60.1S1081.4,896,1081.4,896z"/>
<path class="st7" d="M1219.3,951.5c0,0,45.4,56.3,50.6,47.4c11.3-19.7,26.2-91.5,26.2-91.5l21.1,5.8c0,0-16,124.8-46.1,122.3 s-81.9-71-81.9-71L1219.3,951.5z"/>
<path class="st1" d="M1187,976.6c0,0-6.1-49.2,4.6-55.6c15.9-9.6,47,39,47,39l-47.8,27L1187,976.6z"/>
<path class="st8" d="M980.6,708.4c-1.6,0.6-3.1,1.2-4.7,1.7c-7.2,2.3-18.3,6.2-29.7,11.7c-4.5,19.4-5.3,41.5,5.7,56.1 c6.8-4.1,15.1-9.7,23.1-16.8C971.3,744.4,974.6,725.5,980.6,708.4z"/>
<path class="st3" d="M1020.7,682.6c0,0-19.8,17.6-40.1,25.8c-6,17.1-9.3,36-5.6,52.8c8.2-7.2,16.2-15.9,22-26.1 c12.7-22.1,33.3-37.8,33.3-37.8L1020.7,682.6z"/>
<path class="st7" d="M962.6,710c0,0-7.5,2.3-3,10c4.5,7.7,8.7,8.3,17,0c8.3-8.3,14.7-8,14-13.1C990,701.8,993.9,688.2,962.6,710z"/>
<path class="st7" d="M1001.7,748.6c0,0,0.9-22.6-4.1-22.6c-4,0-6.9,25.5-6.9,25.5L1001.7,748.6z"/>
<path class="st7" d="M1318,919.3c0,0,6.5-22.9-7.3-38.9c-13.6-15.8-14.4,6-11.1,18.1c3.4,12.2,8.3,26.1,12.2,26.4 C1315.8,925.3,1318,919.3,1318,919.3z"/>
<path class="st6" d="M1291.7,872.5l-6.3-32.6c-0.4-2,0.9-4,2.9-4.4l0,0c2-0.4,4,0.9,4.5,2.9l6.8,32.6c0.4,2.1-0.9,4.1-3,4.5 l-0.5,0.1C1294,875.9,1292.1,874.5,1291.7,872.5z"/>
<polygon class="st3" points="1294.1,873.4 1307.6,936.1 1310.8,934.8 1296.7,872.1 "/>
<path class="st7" d="M1292.9,921.8c0,0-1.9-26,4.5-31.1c6.4-5.1,5.8,31.4,5.8,31.4L1292.9,921.8z"/>
<circle class="st9" cx="1430.6" cy="761" r="82"/>
<circle class="st10" cx="1430.6" cy="761" r="69"/>
<g>
<polygon class="st9" points="1429.6,767.8 1418.6,704.8 1421.5,704.2 1429.6,750.2 1429.6,720 1432.6,720 1432.6,767.5 "/>
</g>
<polygon class="st9" points="1273,843.3 1274.1,845.7 1276.7,846.1 1274.9,847.9 1275.3,850.4 1273,849.2 1270.7,850.4 1271.1,847.9 1269.3,846.1 1271.8,845.7 "/>
<polygon class="st8" points="1269,807.3 1270.1,809.7 1272.7,810.1 1270.9,811.9 1271.3,814.4 1269,813.2 1266.7,814.4 1267.1,811.9 1265.3,810.1 1267.8,809.7 "/>
<polygon class="st9" points="1298.6,816.7 1300.1,819.8 1303.6,820.3 1301.1,822.8 1301.6,826.2 1298.6,824.6 1295.5,826.2 1296.1,822.8 1293.6,820.3 1297,819.8 "/>
<circle class="st8" cx="1282.1" cy="827.5" r="2.5"/>
<circle class="st8" cx="1311.1" cy="848.5" r="2.5"/>
<circle class="st9" cx="1279.1" cy="800.5" r="2.5"/>
<circle class="st8" cx="1293.1" cy="805.5" r="2.5"/>
<circle class="st8" cx="1262.1" cy="830.5" r="2.5"/>
<circle class="st1" cx="1040.1" cy="681.5" r="9.5"/>
<circle class="st1" cx="1040.1" cy="654.5" r="4.5"/>
<circle class="st1" cx="1060.1" cy="689.5" r="4.5"/>
<circle class="st1" cx="1041.1" cy="671.5" r="4.5"/>
<circle class="st1" cx="1053.6" cy="665" r="2"/>
<circle class="st1" cx="1049.6" cy="697" r="2"/>
<circle class="st1" cx="1057.6" cy="644" r="2"/>
<circle class="st1" cx="1030.1" cy="681.5" r="9.5"/>
<rect x="1063.6" y="1149" class="st3" width="35" height="293"/>
</g>
<g id="Table">
<rect x="906.6" y="1122" class="st3" width="685" height="30"/>
<rect x="943.6" y="1149" class="st3" width="35" height="293"/>
<path class="st9" d="M1536.6,1083c0,24.3-26.4,44-59,44c-32.6,0-59-19.7-59-44H1536.6z"/>
<circle class="st9" cx="1338.6" cy="1103" r="19"/>
<rect x="1272.6" y="1047" class="st9" width="52" height="75"/>
<polygon class="st1" points="973.4,1122 1550.3,1122 1319.6,1342 "/>
<polygon class="st8" points="1052.4,1122 1506.1,1122 1324.6,1295 "/>
<polygon class="st1" points="1109.4,1122 1447.7,1122 1312.4,1251 "/>
</g>
<g>
<path class="st1" d="M1211.3,575.3c0.5-0.4,0.3-1.3-0.4-1.4c-3.6-0.5-7.2,1.1-10.5,2.9c0.1-3.8,0.3-8.1-1.3-11.4 c-0.1-0.3-0.6-0.4-0.8-0.1c-2.1,3.6-2,8.9-2.4,12.9c-1.8-1.6-3.6-3.3-5.2-5.1c-1.2-1.4-1.9-2.3-3.8-2.7c-0.6-0.1-1.4,0.4-1.4,1.1 c0,3.3,3.8,6.6,7.2,9.1c-3.4,1.5-7,2.8-9.7,4.9c-1.1,0.9-0.6,2.7,0.8,2.8c3.8,0.5,7.8-1.6,11.3-3.7c-0.3,2.7-0.7,5.4-1.1,8.1 c-0.5,3,3.7,3.8,4.9,1.3c1-2.2,1.4-5,1.5-7.8c3,2.1,6.3,4,9.7,4.7c0.4,0.1,0.7-0.5,0.4-0.8c-3.1-3-6.7-5.5-10.1-8.2 c0-0.1,0-0.3,0-0.4C1204.1,579.6,1208.1,577.9,1211.3,575.3z"/>
<path class="st1" d="M1226.2,582.5c3-0.4,5.8-1.6,8.9-1.3c0.8,0.1,0.9,1.2,0.2,1.5c-3,1.3-6,0.8-9.1,0.3 C1225.9,583,1225.9,582.5,1226.2,582.5z"/>
<path class="st1" d="M1248.9,582.7c3.5-0.8,7.5-1.9,10.9-0.4c1,0.4,1,1.9,0,2.4c-3.4,1.5-7.8,1.2-11.1-0.5 C1248,583.8,1248.1,582.9,1248.9,582.7z"/>
<path class="st1" d="M1273.4,584.2c2.4-0.8,4.9-0.8,7.3-1.1c2.2-0.2,4.8-1,6.8,0.1c0.9,0.5,1.1,1.5,0.3,2.2 c-1.7,1.7-4.3,1.4-6.6,1.5c-2.6,0.1-5.3,0.2-7.8-0.5C1272.4,586.2,1272.5,584.6,1273.4,584.2z"/>
<path class="st1" d="M1216.3,591.5c1.5,0.1,2.9,0.6,4.2,1.1c1.6,0.6,2.6,1.2,3.6,2.6c0.6,0.9,0,2-1.1,1.9c-1.7-0.1-2.8-0.7-4.1-1.7 c-1.1-0.9-2.3-1.9-3.1-3C1215.5,592,1215.8,591.5,1216.3,591.5z"/>
<path class="st1" d="M1235.4,603c2.4,1,4.7,2.3,6.4,4.2c0.5,0.6-0.1,1.6-0.8,1.5c-2.7-0.5-5.3-2.1-6.6-4.7 C1234.2,603.4,1234.8,602.7,1235.4,603z"/>
<path class="st1" d="M1257.8,618.6c4.5,1.6,8.9,4.8,11.6,8.8c0.6,0.9-0.4,2-1.3,1.4c-3.9-2.6-7.7-5.8-11-9.1 C1256.5,619.1,1257.2,618.4,1257.8,618.6z"/>
<path class="st1" d="M1230.4,589.8c12.5,4.4,26.4,7.1,37.9,14c0.8,0.5,0,1.7-0.8,1.3c-12.1-5.2-26.8-6.6-37.4-14.8 C1229.8,590.1,1230,589.7,1230.4,589.8z"/>
<path class="st1" d="M1208.9,601.8c0.1-0.2,0.4-0.3,0.6-0.2c3.1,0.9,6.1,5,8.5,7.1c4.1,3.4,7.4,7.5,10.8,11.6 c7.1,8.5,14.9,17.8,17.9,28.6c0.3,1.2-1.4,1.7-2.1,0.9c-7.7-9.3-13.9-19.9-21.6-29.4c-3.1-3.8-6.3-7.3-9.8-10.8 C1211.4,607.7,1207.7,604.7,1208.9,601.8z"/>
<path class="st1" d="M1201.4,612.8c0.1-2.4,0.2-4.9,1.2-7.1c0.1-0.3,0.5-0.2,0.5,0.1c0.6,2.3,0.6,4.7,0.8,7c0.2,2,1.1,4.2,0.2,6.2 c-0.4,0.7-1.2,0.8-1.7,0.2C1201,617.5,1201.4,615,1201.4,612.8z"/>
<path class="st1" d="M1202.3,634.6c0.1-2.2,0.5-4.4,0.3-6.6c-0.2-2.5,3.4-3,3.8-0.5c0.4,2.1,0.4,4.2,0.4,6.4c0,2.1,0,3.8-2,4.8 c-0.4,0.2-0.8,0.1-1.2-0.1C1202.3,637.5,1202.3,636.3,1202.3,634.6z"/>
<path class="st1" d="M1199.7,661.9c0.2-2.5,0.6-5.1,1.1-7.5c0.4-1.7,0.7-3.6,2.2-4.8c0.3-0.3,0.8-0.1,1,0.2c0.8,1.5,0.5,3.3,0.4,5 c-0.1,2.5-0.1,5.1-0.3,7.6C1203.7,665.2,1199.5,664.6,1199.7,661.9z"/>
<path class="st1" d="M1215.7,624.6c6.2,10.7,8.2,24,9.5,36.1c0.1,0.9-1.2,1-1.3,0.2c-2.3-12.3-6.1-24-8.7-36.2 C1215.2,624.4,1215.6,624.4,1215.7,624.6z"/>
<path class="st1" d="M1183.2,604c1-1.5,3.2-4.5,5.3-3.6c0.6,0.2,0.9,0.8,0.8,1.4c0,0.9-0.9,1.7-1.4,2.5c-0.7,0.9-1.2,2-1.7,3.1 c-0.5,1-1,2.7-2,3.4c-0.7,0.5-1.9,1.2-2.7,0.4C1179.4,609.2,1182,605.9,1183.2,604z"/>
<path class="st1" d="M1167.1,629.9c0.4-1.9,1.6-3.3,2.7-4.9c1.2-1.8,2.2-3.9,3.6-5.6c0.4-0.5,1.3-0.2,1.2,0.5 c-0.2,2-1.2,4.1-2.2,5.9c-1.1,1.9-2.2,3.9-4.1,5C1167.8,631.1,1167,630.5,1167.1,629.9z"/>
<path class="st1" d="M1156.5,645.4c1-1.8,2.1-3.5,3.1-5.3c1.3-2.2,4.5,0.2,3.1,2.4c-0.9,1.4-1.9,2.9-2.7,4.3 c-0.9,1.5-1.6,3-3.2,3.9c-0.4,0.2-1,0-1.1-0.4C1155,648.5,1155.7,646.9,1156.5,645.4z"/>
<path class="st1" d="M1178.7,638.8c1.4-5.4,3.9-10.2,6.2-15.2c2.3-5,4.1-10.6,7.3-15c0.2-0.3,0.6-0.1,0.6,0.2 c-0.5,5.5-3.2,10.8-5.2,15.9c-2.1,5.2-4.1,10.4-7.2,15.1C1179.7,640.8,1178.5,639.8,1178.7,638.8z"/>
<path class="st1" d="M1120.9,631.7c3.2-5.4,8.8-9.8,13.1-14.3c4.3-4.4,8.7-8.8,13.6-12.4c8.6-6.3,19.9-8.7,27.6-16.2 c0.2-0.2,0.5,0.1,0.4,0.3c-6,8.5-16,12.4-24.4,18.1c-5.6,3.8-10.4,9.1-15,14c-4.1,4.3-8.2,9.9-13.6,12.6 C1121.2,634.6,1120.3,632.9,1120.9,631.7z"/>
<path class="st1" d="M1101.6,555.3c14.7,0.1,29.1,2.1,43.4,5.3c12.9,3,27.5,7.1,37.7,15.8c0.8,0.7,0.1,2-0.9,1.7 c-6.4-2.1-12.5-5-18.8-7.3c-6.6-2.3-13.4-4.1-20.3-5.6c-13.7-3-27.7-4.2-41.5-7.1C1099.3,557.8,1099.7,555.3,1101.6,555.3z"/>
<path class="st1" d="M1158.6,580.6c1.2-2.7,4.9-1.6,7.2-1.2c1.7,0.3,3.4,0.7,5.1,1.1c1.2,0.2,2.7,0.2,3.6,1.1 c0.1,0.1,0.2,0.2,0.1,0.4c-0.9,2.2-4.9,1.6-6.7,1.4c-1.8-0.2-3.6-0.4-5.3-0.5c-1.5-0.1-2.9,0.1-3.9-1.2 C1158.5,581.3,1158.5,580.9,1158.6,580.6z"/>
<path class="st1" d="M1138.1,577.6c2.2-0.8,3.9-0.8,6.2-0.4c2.5,0.3,5.2,0.5,7.5,1.7c0.5,0.3,0.7,1.2,0,1.5c-2,0.7-4.1,0.6-6.1,0.5 c-2.7-0.1-5.1-0.1-7.5-1.4C1137.4,579.1,1137.2,578,1138.1,577.6z"/>
<path class="st1" d="M1116.1,577.4c1.7-1.2,3.3-1.6,5.4-1.6c1.7,0,4.4-0.4,5.9,0.4c0.7,0.4,1.1,1.3,0.5,1.9 c-1.1,1.4-3.7,1.5-5.3,1.7c-2.3,0.3-4.1,0.1-6.3-0.7C1115.7,578.9,1115.5,577.8,1116.1,577.4z"/>
<path class="st1" d="M1121.4,593.5c6.6-1.6,13.2-2.4,19.9-3c3.3-0.3,6.6-0.6,9.9-0.9c2.5-0.3,5.4-1,7.7,0c0.3,0.1,0.3,0.4,0.1,0.6 c-3.3,3.2-11.1,3.1-15.5,3.7c-7.2,1.1-14.5,1.7-21.8,2.1C1120.1,596.1,1119.8,593.9,1121.4,593.5z"/>
<path class="st1" d="M1149,517.5c8,6.6,15.1,14.2,21.3,22.5c5.1,6.8,11.9,16.8,11,25.7c0,0.2-0.4,0.4-0.5,0.1 c-2.5-3.4-4-7.6-6-11.4c-2.5-4.6-5.7-8.9-8.9-13.1c-5.9-7.6-12.8-14.3-18.8-21.9C1146.1,518.2,1147.8,516.4,1149,517.5z"/>
<path class="st1" d="M1197.2,539.3c-0.4-6.2-1.2-12.4-2-18.5c-0.8-6.2-1.6-12.3-2.3-18.5c-0.6-5.1-1.6-10.8,0.1-15.7 c0.3-0.8,1.5-0.8,1.9,0c2.1,4.6,1.9,10.2,2.3,15.2c0.6,6.2,1.4,12.3,2,18.5c1.2,11.4,3.1,24.7,0.3,36c-0.2,0.7-1.3,0.8-1.4,0 C1197.4,550.7,1197.6,544.9,1197.2,539.3z"/>
<path class="st1" d="M1187,550.3c0.5-0.9,1.6-1.1,2.3-0.3c1.2,1.2,1.3,2.6,1.4,4.2c0.1,1.5,0.5,2.9,0.2,4.3 c-0.1,0.4-0.5,0.7-0.9,0.5c-1.5-0.7-2.1-1.9-2.7-3.4C1186.5,553.9,1186,552,1187,550.3z"/>
<path class="st1" d="M1180.8,535.8c0.1-0.7,1.2-1.2,1.6-0.5c0.3,0.4,0.6,0.7,0.9,1.1c0.3,0.5,0.4,1,0.6,1.5c0.5,1.2,1,2.4,1.6,3.5 c0.6,1.1-1,1.9-1.8,1.1c-0.8-1-1.6-2-2.3-3.1C1180.6,538.3,1180.4,537.3,1180.8,535.8z"/>
<path class="st1" d="M1173.9,519.3c0-0.9,0.8-1.4,1.5-0.9c2.4,1.4,3.2,5,3.9,7.5c0.3,1.2-1.4,1.5-1.9,0.5 C1176.2,524.3,1173.9,521.9,1173.9,519.3z"/>
<path class="st1" d="M1163.4,554.8c2.1,0,3.8,1.1,5.4,2.4c1.2,1,2.8,2.1,3.3,3.7c0,0.1,0,0.2-0.1,0.3c-1.4,0.6-3.1-0.1-4.4-0.8 c-1.9-1.1-3.7-2.1-5.1-3.9C1161.9,555.7,1162.6,554.8,1163.4,554.8z"/>
<path class="st1" d="M1145.4,547.5c2.1-0.1,3.7,0.5,5.5,1.5c0.8,0.5,1.6,0.9,2.3,1.4c0.3,0.2,1,0.9,1.2,1c0.2,0.1,0.2,0.5-0.1,0.5 c-0.4,0.1-0.7,0.3-1.3,0.4c-1,0.1-1.9-0.1-2.9-0.3c-2.2-0.4-4-1.2-5.5-2.9C1144.3,548.6,1144.6,547.5,1145.4,547.5z"/>
<path class="st1" d="M1128.5,541.2c1.7-0.6,3.3,0.1,5,0.7c1.4,0.5,2.6,0.8,3.7,1.7c0.2,0.1,0.1,0.4,0,0.5c-1,1-2.7,0.6-4,0.5 c-1.7-0.2-3.9-0.4-5-2C1127.9,542.1,1127.9,541.4,1128.5,541.2z"/>
<path class="st1" d="M1215.3,565.5c7.9-10.3,15-20.9,21.3-32.2c2.9-5.3,5.7-10.6,8.5-16c2.7-5.3,5.1-11.1,9.1-15.7 c1.1-1.3,3.9-0.6,3.4,1.4c-1.3,5.9-4.4,11.2-7.2,16.5c-2.9,5.6-5.9,11.1-9.1,16.5c-6.7,11.4-14.2,22.6-23.9,31.7 C1216.2,568.8,1214.3,566.9,1215.3,565.5z"/>
<path class="st1" d="M1209.2,553.9c1.2-3.2,2.8-6.1,4.4-9.1c0.4-0.8,1.7-0.6,1.6,0.4c-0.3,3.3-1.4,5.9-2.8,8.9 c-1.3,2.7-2.3,5.9-4.2,8.3c-0.2,0.2-0.4,0.1-0.5-0.1C1207.1,559.5,1208.3,556.5,1209.2,553.9z"/>
<path class="st1" d="M1217.7,521.5c0.4-0.9,1.8-0.5,1.7,0.4c-0.4,4-0.7,8.1-2.4,11.9c-0.4,0.9-1.6,0.5-1.6-0.4 C1215.5,529.3,1216.2,525.3,1217.7,521.5z"/>
<path class="st1" d="M1215.7,500.1c0.3-0.8,1.6-0.7,1.7,0.2c0.2,3.3-0.1,6.5,0.8,9.7c0.4,1.5-2,1.8-2.4,0.3 C1214.7,507,1214.5,503.5,1215.7,500.1z"/>
<path class="st1" d="M1226.8,573.5c10.7-6.3,24.7-8.4,36.8-9.9c11.9-1.5,25.6-2.9,37.3,0.6c1.8,0.5,1.3,3.4-0.4,3.5 c-12,1.2-24.1-0.1-36.1,1c-12.5,1.1-24.8,4.7-37.3,5.5C1226.6,574.2,1226.5,573.7,1226.8,573.5z"/>
<path class="st1" d="M1226.3,566.9c2.6-3.2,6.4-5.5,9.9-7.6c0.9-0.6,2.1,0.4,1.4,1.4c-2.4,3.5-6,7-10.5,7.6 C1226.4,568.4,1225.8,567.5,1226.3,566.9z"/>
<path class="st1" d="M1250.8,552.9c1-1.6,2.3-2.8,3.8-4.1c1.5-1.3,2.7-2.7,4.5-3.6c0.6-0.3,1.4,0.3,1.2,0.9 c-0.5,2.2-1.8,3.2-3.5,4.5c-1.7,1.3-3.6,2.3-5.6,2.9C1250.8,553.6,1250.6,553.2,1250.8,552.9z"/>
<path class="st1" d="M1276.5,533.4c2.2-2.4,4.7-5.5,8-6.4c1.1-0.3,2.3,0.8,1.5,1.9c-2,2.7-5.8,4-8.9,5.3 C1276.7,534.3,1276.1,533.8,1276.5,533.4z"/>
<path class="st1" d="M1142.6,639.7c1.8-7.8,8.5-12,13-18.1c1.4-1.9,4.2,0.2,2.9,2.2c-4,6-9.5,11-13.8,16.8 C1144.1,641.5,1142.3,640.9,1142.6,639.7z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

102
assets/img/old-man.svg Normal file
View file

@ -0,0 +1,102 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_2" x="0px" y="0px" viewBox="0 0 1080 1080" style="enable-background:new 0 0 1080 1080;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F7F7F7;}
.st1{fill:#CCEEFF;}
.st2{fill:#B0E1FF;}
.st3{fill:#F2F2F2;}
.st4{fill:#FFB345;}
.st5{opacity:0.2;fill:#AAAAAA;}
.st6{fill:#2A94F4;}
.st7{fill:#FFE3CA;}
.st8{fill:#0B4870;}
.st9{fill:#FC971F;}
.st10{fill:#2390E2;}
.st11{fill:#BCBCBC;}
.st12{fill:#7F7F7F;}
.st13{fill:#FFFFFF;stroke:#7F7F7F;stroke-miterlimit:10;}
</style>
<g>
<path class="st0" d="M313.4,193c-26,11.4-51.8,25.2-69.9,46.9s-27.3,53-16.4,79.2c14.6,34.9,60.7,55.3,60.9,93.1 c0.2,27.1-24.9,47.8-50.1,57.7c-25.3,9.9-53.2,13.4-76.2,27.8c-34.7,21.7-50.9,63.8-57.6,104.2c-6.9,41.9-4.1,89.6,25.6,120 c36.9,37.8,97.8,33.5,150,25.5c69.6-10.8,139-23.4,208.3-36c151.9-27.7,303.9-55.4,455.8-83.1c16.3-3,33.2-6.2,46.5-16.2 c26.3-19.8,28.5-60.6,13.2-89.7c-15.3-29.1-43.5-48.9-71.6-66s-57.7-33.3-78.8-58.6c-21-25.3-31.5-62.7-15.6-91.5 c13.5-24.4,42.4-37.4,55.1-62.3c16.6-32.7-2.5-74.5-32.7-95.4C829.7,127.8,450.6,133.1,313.4,193z"/>
</g>
<g>
<g>
<path class="st1" d="M977.4,636c29.6,16.1,49.8,47.5,49.8,83.6c0,52.5-42.5,95-95,95c-40.5,0-75-25.3-88.7-61L977.4,636z"/>
</g>
<g>
<circle class="st2" cx="830.5" cy="603.8" r="150.4"/>
</g>
<g>
<g>
<path class="st1" d="M830.5,901c-1.9,0-3.4-1.5-3.4-3.4V603.8c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4v293.8 C834,899.5,832.4,901,830.5,901z"/>
</g>
<g>
<path class="st1" d="M830.5,685.1c-0.9,0-1.8-0.3-2.4-1L786,642c-1.3-1.3-1.3-3.5,0-4.9c1.3-1.3,3.5-1.3,4.9,0l42.1,42.1 c1.3,1.3,1.3,3.5,0,4.9C832.3,684.8,831.4,685.1,830.5,685.1z"/>
</g>
<g>
<path class="st1" d="M830.5,724.2c-0.9,0-1.8-0.3-2.4-1L786,681.1c-1.3-1.3-1.3-3.5,0-4.9c1.3-1.3,3.5-1.3,4.9,0l42.1,42.1 c1.3,1.3,1.3,3.5,0,4.9C832.3,723.9,831.4,724.2,830.5,724.2z"/>
</g>
<g>
<path class="st1" d="M931.6,900.9c-1.7-0.3-2.8-1.9-2.8-3.6V743.4c0-1.9,1.4-3.5,3.3-3.6c2-0.1,3.6,1.5,3.6,3.4v154.3 C935.6,899.7,933.8,901.3,931.6,900.9z"/>
</g>
<g>
<path class="st1" d="M932.2,765.8c-0.9,0-1.8-0.3-2.4-1c-1.3-1.3-1.3-3.5,0-4.9l30.4-30.4c1.3-1.3,3.5-1.3,4.9,0 c1.3,1.3,1.3,3.5,0,4.9l-30.4,30.4C934,765.4,933.1,765.8,932.2,765.8z"/>
</g>
<g>
<path class="st1" d="M932.2,794c-0.9,0-1.8-0.3-2.4-1c-1.3-1.3-1.3-3.5,0-4.9l30.4-30.4c1.3-1.3,3.5-1.3,4.9,0 c1.3,1.3,1.3,3.5,0,4.9L934.6,793C934,793.6,933.1,794,932.2,794z"/>
</g>
</g>
</g>
<g>
<g>
<circle class="st2" cx="179.5" cy="603.8" r="150.4"/>
</g>
<g>
<g>
<path class="st1" d="M179.5,901c-1.9,0-3.4-1.5-3.4-3.4V603.8c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4v293.8 C183,899.5,181.4,901,179.5,901z"/>
</g>
<g>
<path class="st1" d="M179.5,685.1c-0.9,0-1.8-0.3-2.4-1L135,642c-1.3-1.3-1.3-3.5,0-4.9c1.3-1.3,3.5-1.3,4.9,0l42.1,42.1 c1.3,1.3,1.3,3.5,0,4.9C181.3,684.8,180.4,685.1,179.5,685.1z"/>
</g>
<g>
<path class="st1" d="M179.5,724.2c-0.9,0-1.8-0.3-2.4-1L135,681.1c-1.3-1.3-1.3-3.5,0-4.9c1.3-1.3,3.5-1.3,4.9,0l42.1,42.1 c1.3,1.3,1.3,3.5,0,4.9C181.3,723.9,180.4,724.2,179.5,724.2z"/>
</g>
</g>
</g>
<path class="st3" d="M1024.1,945.4H55.9c-6.3,0-11.4-5.1-11.4-11.4v-56.8c0-6.3,5.1-11.4,11.4-11.4h968.2c6.3,0,11.4,5.1,11.4,11.4 V934C1035.5,940.3,1030.4,945.4,1024.1,945.4z"/>
<circle class="st4" cx="878.5" cy="156.5" r="83.5"/>
<ellipse class="st5" cx="427.5" cy="902" rx="244.5" ry="21"/>
<path class="st6" d="M388.7,185c-2-2.4-4.1-4.7-6.4-6.7c-2.3-2.1-4.8-3.8-7.4-5.3l-2-1.1l-2.1-0.9c-0.7-0.3-1.4-0.5-2.1-0.8 l-1.1-0.4c-0.4-0.1-0.7-0.2-1.1-0.3c-0.7-0.2-1.4-0.4-2.2-0.5l-2.2-0.4l-2.2-0.2c-0.7-0.1-1.5-0.1-2.2-0.1c-0.7-0.1-1.5,0-2.2,0 l-1.1,0c-0.4,0-0.7,0.1-1.1,0.1c-1.5,0.1-3,0.3-4.5,0.5c-3,0.4-5.9,1.1-8.8,2c-2.9,0.9-5.7,1.9-8.5,3.2c-1.4,0.6-2.7,1.3-4.1,2 c-1.3,0.7-2.7,1.5-3.9,2.2l-2.2,1.4l-1.1-2.4c-0.2-0.5-0.6-1.2-0.9-1.8c-0.3-0.6-0.7-1.2-1.1-1.8c-0.8-1.2-1.6-2.3-2.5-3.4 c-1.8-2.2-3.9-4.1-6.2-5.8c-2.3-1.6-4.8-2.9-7.4-3.8c-2.7-0.9-5.5-1.3-8.3-1.4c-1.4-0.1-2.9,0.1-4.3,0.2c-1.4,0.2-2.9,0.4-4.3,0.7 c-2.9,0.6-5.6,1.6-8.4,2.6c-5.5,2.2-10.7,5.2-15.8,8.4c4.5-4,9.5-7.6,14.9-10.5c2.8-1.3,5.6-2.6,8.6-3.5c1.5-0.5,3-0.8,4.6-1.1 c1.6-0.2,3.1-0.4,4.7-0.5c3.2-0.1,6.4,0.2,9.5,1.1c3.1,0.9,6.1,2.3,8.7,4.1c2.7,1.8,5.1,4,7.1,6.4c1.1,1.2,2,2.5,2.9,3.8 c0.4,0.7,0.9,1.3,1.3,2c0.4,0.7,0.8,1.4,1.2,2.2l-3.3-1c1.5-0.9,2.8-1.6,4.3-2.4c1.4-0.7,2.9-1.4,4.4-2c2.9-1.3,6-2.4,9.1-3.2 c3.1-0.8,6.3-1.5,9.5-1.9c1.6-0.2,3.2-0.3,4.8-0.3c0.4,0,0.8,0,1.2,0l1.2,0c0.8,0,1.6,0.1,2.4,0.2c6.5,0.5,12.8,2.7,18.1,6.3 c2.6,1.8,5.1,3.9,7.1,6.3c1.1,1.1,2,2.4,3,3.7c0.5,0.6,0.9,1.3,1.3,2L388.7,185z"/>
<path class="st6" d="M915.3,359.8c-2.2-1.3-4.4-2.6-6.8-3.6c-2.3-1-4.7-1.7-7.2-2.2l-1.8-0.3l-1.9-0.2c-0.6-0.1-1.2,0-1.9,0l-0.9,0 c-0.3,0-0.6,0-0.9,0.1c-0.6,0.1-1.2,0.1-1.8,0.2l-1.8,0.3l-1.8,0.4c-0.6,0.1-1.2,0.3-1.8,0.5c-0.6,0.2-1.2,0.4-1.8,0.6l-0.9,0.3 c-0.3,0.1-0.6,0.2-0.9,0.4c-1.2,0.4-2.3,1-3.4,1.5c-2.2,1.1-4.3,2.4-6.3,3.9c-2,1.4-4,3-5.8,4.7c-0.9,0.8-1.8,1.7-2.7,2.6 c-0.9,0.9-1.7,1.8-2.4,2.7l-1.4,1.7l-1.5-1.6c-0.3-0.3-0.8-0.8-1.2-1.2c-0.4-0.4-0.9-0.8-1.3-1.1c-0.9-0.7-1.9-1.4-2.9-2 c-2-1.3-4.1-2.2-6.3-2.9c-2.2-0.7-4.5-1-6.8-1c-2.3,0-4.6,0.4-6.9,1.1c-1.1,0.3-2.2,0.8-3.3,1.3c-1.1,0.6-2.1,1-3.2,1.7 c-2.1,1.2-4,2.7-5.9,4.2c-3.7,3.2-7,6.9-10.2,10.7c2.5-4.3,5.4-8.4,8.9-12.1c1.8-1.8,3.7-3.5,5.8-5c1-0.8,2.2-1.4,3.3-2.1 c1.2-0.6,2.3-1.2,3.6-1.6c2.5-0.9,5.1-1.5,7.7-1.6c2.7-0.1,5.3,0.2,7.9,0.9c2.6,0.7,5,1.8,7.3,3.1c1.1,0.7,2.2,1.4,3.3,2.2 c0.5,0.4,1,0.8,1.5,1.3c0.5,0.4,1,0.9,1.5,1.4l-2.9,0.1c0.9-1.1,1.8-2,2.7-3c0.9-0.9,1.9-1.9,2.9-2.7c2-1.8,4-3.4,6.2-4.9 c2.2-1.5,4.5-2.8,6.9-3.9c1.2-0.5,2.4-1.1,3.7-1.5c0.3-0.1,0.6-0.2,0.9-0.3l1-0.3c0.6-0.2,1.3-0.4,1.9-0.5 c5.2-1.3,10.7-1.2,15.8,0.2c2.5,0.8,5,1.7,7.2,3.1c1.2,0.6,2.2,1.4,3.3,2.1c0.5,0.4,1,0.8,1.5,1.2L915.3,359.8z"/>
<g>
<path class="st7" d="M624.7,518.1c-3.7,1.2-8.3-0.1-12.7-2.5c-1.3,2.8-3.8,6.4-8.5,6.4c-3.9-3.9-5.8-9.7-11.6-21.2h1.9l15.4-9.7 C622.8,496.9,632.5,508.4,624.7,518.1z"/>
<path class="st8" d="M621.6,509.4l22.4,16.4l-11.6,374.5h-9.7l5.8-364.8l-17.1-11.9c-4.3-3-5-8.9-1.7-12.9v0 C612.8,507.3,617.9,506.7,621.6,509.4z"/>
<path class="st9" d="M581,552c5.8,26,13,94.2,16.2,127c1.1,11.2-3.5,22.2-12.4,29.2L429.8,830.8l-15.4-15.4 c0,0,123.4-134.3,144.7-132.4c-25.1-36.7-41-131-41-131H581z"/>
<g>
<path class="st8" d="M552.5,871.3c6.6,1.9,27.8,7.7,39.4,7.7s21.2,9.7,11.6,17.4c-9.7,7.7-40.5,1.9-50.2,3.9s-30.9,0-29-7.7 s5.8-30.9,5.8-30.9L552.5,871.3z"/>
<path class="st4" d="M556,548l-0.8,323.3h-27c0,0-19.1-162.6-15.2-168.3c-14-24-33-161.7-33-161.7L556,548z"/>
</g>
<path class="st7" d="M441.4,550.9l-5.3,21.6c-0.3,4.4,2.2,8.5,6.3,10.3l12.4,5.3c3.1,1.3,6.3-1.5,5.4-4.7 c-2.1-7.5-4.6-17.7-3.4-18.9c2.3,2.3,3.9,3.3,6.5,5.3c2,1.6,4.5,2.4,7,2.4l0,0c0,0-9.7-19.3-9.7-23.2s-11.6-7.7-11.6-7.7 L441.4,550.9z"/>
<path class="st10" d="M567.7,337.9c23.2,28.6,19.4,103.9,19.4,103.9l30.9,46.3l-38.6,29c0,0-48.3-81.1-30.9-119.7 C565.9,358.8,567.7,337.9,567.7,337.9z"/>
<path class="st6" d="M588.1,562.5c-7.7,1.9-108.1,0-108.1,0l-3.9-9.7c0,0,0,0-5.8,3.9c-5.8,3.9-36.7-1.9-36.7-1.9 s-7.7-92.7,0-142.8c7.7-50.2,29-77.2,76.8-92.7c0,0,41.7,8.8,59.4,24c10.9,9.5,11.2,41.6,9.3,68.3c-1.4,18.8-3.9,35-4.7,39 c-0.2,1.2-0.1,3.8,0.3,7.3C577.9,483.4,594.8,560.8,588.1,562.5z"/>
<path class="st8" d="M430.4,824.8c2.8,4.6,12.2,19.4,19,25.6c6.8,6.2,7.3,17-2.5,16.4c-9.8-0.6-24.8-20.5-31.5-24.5 c-6.7-4-18.1-16.5-12.9-20s19.9-15,19.9-15L430.4,824.8z"/>
<g>
<g>
<path class="st11" d="M574.3,291.7c-7.2-14.2-42-39.1-64.7,3c-9.7,18.1,10.8,49.4,10.8,49.4S507.5,259.4,574.3,291.7z"/>
<ellipse transform="matrix(0.12 -0.9928 0.9928 0.12 160.7197 823.0944)" class="st7" cx="544.6" cy="320.9" rx="36.7" ry="26.1"/>
<path class="st11" d="M537.5,298.2c12.2,3.3,32.9-0.3,36.9-6.6c-8.2-10-17.5-15.8-32.5-12.3c-12.7,4.9-27.5,18.2-25.4,27.6 c2.2,9.4,0.6,19.7,0.6,19.7s1.8,25.3,13.8,34.5c12,9.1,46.1-0.5,45.3-18.3c-1-23.6-26.3-19.7-40.1-10.6 c-13,8.6-16.7-11.4-4.5-31.6C532.8,298.5,535.2,297.6,537.5,298.2z"/>
<path class="st7" d="M521.2,320.2c0.6,4.4,1,9.7-2.5,10.1c-3.5,0.5-8.4-4.2-9-8.6c-0.6-4.4,1.7-8.3,5.2-8.8 C518.4,312.5,520.6,315.8,521.2,320.2z"/>
<ellipse transform="matrix(0.9747 -0.2236 0.2236 0.9747 -58.1684 133.435)" class="st7" cx="560.2" cy="323.6" rx="3.5" ry="5"/>
</g>
<g>
<g>
<path class="st12" d="M552.2,316.7l-0.6-0.8c3.7-3,6.1-2.4,9.8-0.1l-0.5,0.8C557.4,314.5,555.4,314,552.2,316.7z"/>
</g>
<circle class="st13" cx="543.6" cy="316.1" r="10"/>
<circle class="st13" cx="569.1" cy="315.4" r="10"/>
</g>
</g>
<path class="st2" d="M574.9,457.9C534.1,465,477,450,477,450s-1-13,3-47c12.6,1.8,46.1,9.2,99.2,8.6c-1.4,18.8-3.9,35-4.7,39 C574.3,451.7,574.5,454.3,574.9,457.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

BIN
assets/img/plex_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

118
assets/img/quest.svg Normal file
View file

@ -0,0 +1,118 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="_x31_" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFCF8F;}
.st1{fill:#FFCF8A;}
.st2{fill:#FEBE54;}
.st3{fill:#C19E61;}
.st4{opacity:0.4;fill:#FEBE54;}
.st5{opacity:0.5;fill:#EFD6A8;}
.st6{opacity:0.7;}
.st7{fill:#2B94F4;}
.st8{opacity:0.7;fill:#2B94F4;}
.st9{opacity:0.5;fill:#2995F4;}
.st10{opacity:0.5;fill:#2A94F4;}
.st11{opacity:0.4;fill:#CCE9FF;}
.st12{opacity:0.6;fill:#CCE9FF;}
.st13{fill:#2995F4;}
.st14{fill:#FFFFFF;}
.st15{fill:#0E538D;}
.st16{fill:#1E0F00;}
.st17{fill:#FDCB93;}
.st18{fill:#0F538C;}
.st19{fill:#FAB46D;}
.st20{fill:#727696;}
.st21{fill:#E2A750;}
</style>
<g>
<path class="st0" d="M100.6,527.7l73.1,48.2l33.1,4.7l65.8,33.1l13.6,12.9l27.9,13.9l57.8,61.2l56.3,32.2l55.9,55.8l22.3-42.9 l17.9-22.8l12.7-41.8l54.2-76.5l-0.5-14.9l23.5-27.5l41.9-51.1l90.7-70.7l-23.4-30.7l-42.6-16l-50.3-42.9l-70.3-39.1l-53.8-47.2 c-20.1-6.7-60.9-43.5-60.9-43.5l-11.6-2.3l-55.8-45.4l-38.8-15.7l-40.4,113.5l-2.2,21.5l-25.1,39L243.5,349l-69,86.8l-45.1,68.4 L100.6,527.7z"/>
<path class="st1" d="M126.1,523.9l67.4,44.4l30.5,4.3l60.6,30.5l12.5,11.9l25.8,12.8l53.3,56.4l51.9,29.7l51.5,51.5l20.6-39.6 l16.5-21l11.7-38.5l50-70.5l-0.5-13.7l21.7-25.4l38.6-47.1l83.6-65.1l-21.6-28.3L661,401.3l-46.4-39.5l-64.8-36l-49.6-43.5 c-18.5-6.2-56.1-40.1-56.1-40.1l-10.7-2.1l-51.5-41.8l-35.8-14.4l-37.2,104.7l-2,19.8l-23.1,36l-25.9,15l-63.6,80l-41.6,63 L126.1,523.9z"/>
<path class="st2" d="M498.5,569.8c0.3-16.4-10.1-33.4-11.9-50.1c-1.8-16.8,1.5-31,2.3-47.5c0.3-6.9,2.1-22.3-2.8-27.2 c-10.8,14.6-17.4,31-24.8,47.5c-4.3,9.6-18.4,30.6-10.9,41.3c-2,7.9-2,17.7-1.8,24.5c0.2,5.8,0.3,15.2,4.5,20.1 c2.6,3.1,7.4,2.6,9.8,4.9c5.1,4.8-0.7,6.8,1.2,14.7c2.6,10.5,9.9,6.8,16.3,1.1C488.5,592,498.3,580.8,498.5,569.8z"/>
<path class="st2" d="M381.7,651.5c-15.9-21.5-18.3-37.8-11.2-63.8c2.7-10,15-31.9,9.5-42.6c-10.7-20.7-24.9,16.4-30.2,21.6 c-11.3,10.9-28.8,4.3-43,11.7c-4.4,2.3-5.1,4.3-11.1,5.8c-6.3,1.6-12.3,4.4-18.7,5.8c-5,1.1-11.6,0.1-17.6,0.4l25.3,12.7l12.5,11.9 l25.8,12.8l53.3,56.4l23.5,13.4C397.8,681.2,390.2,663,381.7,651.5z"/>
<path class="st2" d="M251.8,409.5c3.9,4.1,12.4,5.9,15,11.2c4.3,8.6-4.3,38,14.3,32.3c8-2.5,20.5-14.2,24.2-22 c9.9-20.6-13.7-38.8-13.9-59.1c-0.1-12.9,7.3-22.3,5.4-35.8c-0.4-3-1-6.2-1.8-9.4l-11.2,17.5l-25.9,15l-17,21.3 c2.3,2.2,3.9,5.1,4.6,8.9C246.8,397.7,245.5,403,251.8,409.5z"/>
<path class="st2" d="M327.7,253.4c21.2-3.1,37.8-0.2,54.7-15.5c7.5-6.7,14.7-14.2,21.1-22.2l-21.5-17.5l-35.8-14.4L320.8,255 C323.3,254.3,325.7,253.7,327.7,253.4z"/>
<path class="st2" d="M503.4,333.3c4.4,5,18.7,11.1,19.5,17.5c0.9,6.8-9.9,14.5-8.8,22.6c0.7,5.5,12.5,23.3,17.2,26.4 c11.7,7.8,31.6-17.6,33.2,1.7c13.6-9.5,40.4,2.8,52.5,10.5c17.8,11.3,31,28.8,48.3,41.1c5.1,3.6,16.1,6.4,20.1,10.2 c2.2,2.2,2.7,4.8,2.6,7.7l34.1-26.5l-21.6-28.3L661,401.3l-46.4-39.5l-64.8-36l-49.6-43.5c-0.3-0.1-0.5-0.2-0.8-0.3 C495.7,300.4,489.3,317.2,503.4,333.3z"/>
<g>
<path class="st3" d="M499.6,727.1l0.6-1.2l0,0l-31-29.5l5.1-18.5l11.2-10.7l12.2-27.6l9.8-13.3l32.9,23.1l0.8-1.1l-32.9-23.1 l37.6-51.1l0.1-0.1l1.8-5.1l30.7,24.8l-0.1-1.7l-29.9-24.2l-0.3-0.2l10-28.4l17.3-24.8l1.3,0.8l38.6,22.1l0.8-1l-38.7-22.2 l-1.2-0.8l29.8-42.7l17-12.5l0.6,0.4l33.1,36.5l1-0.8l-33.2-36.6l-0.1-0.1l-0.4-0.2l54.6-40.2l7.5-6.4l-1.4-0.5l-6.9,5.9 L623,456.7l-54.1-35.7l-2.7-2.3l32.5-34.9l15.4-22.2l-1.2-0.6l-15.2,22l-32.5,34.9L503,365.5l38.3-47.2l-1-0.9L502,364.7l-0.2-0.2 l-78.7-49.1l33.7-62.2c-0.4-0.3-0.7-0.6-1-0.9L422,314.6l-51.3-40.1l-0.7-0.5l19.6-39.5l5.9-25.1l-1.1-0.9l-6,25.5L369,273.2 l-43-33.1l-0.5,1.3l42.8,33l-15.5,31.2l-9.8,25.1l-2.7,4.4l-33.6-27.3l0,0.4l-0.5,0.8l33.4,27.2l-18.9,31l-23.1,20.6l-38.5-29.5 l-1.2,0.7l38.7,29.7l-1.8,1.6l-46.7,55.4l-1.8-1.2l-34.1-28.3l-0.8,1l34.1,28.3l1.7,1.1L235,461.5l-31,48.2l-9.6,7.3l-38.6-19.7 l-0.7,1.1l38.2,19.5l-35.4,27l1.2,0.8l35.6-27.1l26.1,13.3l30.7,0.8l23.9,14l-2,6.7L242.5,582l1.3,0.6l30.5-28.4l0.1-0.1l2-6.8 l28.9,17l18.1,22.5l0.1,0.2l28.7,6.7l-2.4,4.1l-27.6,29.7l0.5,0.3l0.5,0.5l27.6-29.8l2.6-4.6l4.2,1l34.6,60.7l12.2,4.9l-11,33.6 l1.2,0.7l11-33.8l42.3,17.1l19.5,18.5l-12.2,44.5l1.1,1.1l12.2-44.6L499.6,727.1z M544.7,573.5l-37.5,51L453,585.5l-1.1-0.8 l39.3-49.9l0.3-0.7l55.1,34.2L544.7,573.5z M385.1,536.5l-76.3-49.9l45.1-54l0.5,0.4l69.4,53.7l-38.2,48.6L385.1,536.5z M490.8,532.1l-1.2-0.8l-62.1-43.5l-1.7-1.3l12.3-15.6l4.6-35.1l9.8-11.4l64.2,52.7l0.5,0.3l-12.5,16.3l-0.1,0.1L490.8,532.1z M441.3,435.3l-4.6,35.1l-12,15.3L355.2,432l-0.5-0.4l3.2-3.9l25.5-18.8l12.6-25.7l55.2,40.4L441.3,435.3z M424.9,487.6l1.7,1.3 l62.2,43.6l1.5,0.9l-0.3,0.8L450.9,584l-64.7-46.7l0.6-1.1L424.9,487.6z M547,567l-55.1-34.2l13.8-38.4l12.5-16.3l56.2,35.7 l-17.3,24.8l-0.1,0.1L547,567z M565.3,419.6l2.8,2.4l53.8,35.5l-16.7,12.3l-30,43L519,477.1l33.3-43.4L565.3,419.6z M501.4,367.5 l0.8-1l62.1,52.3l-13.1,14.1l-33.4,43.6l-0.5-0.3l-64.1-52.7L501.4,367.5z M501,365.6l0.1,0.1l-0.8,1l-48.2,56L396.7,382l1.9-3.8 l9.7-35.5l14.2-26.2L501,365.6z M344.3,331.3l9.8-25.2l15.4-31l0.5,0.4l51.4,40.2l-14.3,26.5l-9.7,35.5l-1.7,3.5l-0.4-0.3 l-53.8-45L344.3,331.3z M321.8,368.2L321.8,368.2l19-31.1l53.7,44.9l0.6,0.4l-12.6,25.6l-25.3,18.7l-3.4,4l-55-42.1L321.8,368.2z M295.8,391.3l1.9-1.7l55.1,42.3l-45.2,54l-58.4-39.4L295.8,391.3z M251.9,531.5l-0.1-0.1l-30.6-0.7l-25.4-13l9.1-7l0.1-0.1 l31-48.4l12.4-14.8l58.4,39.4l-3.4,4.1l-23.9,41.4l-3.9,13L251.9,531.5z M324.3,585.8l-18.1-22.5l-29.4-17.2l3.9-13.1l23.8-41.1 l3.5-4.1l76.5,50L353,592.6L324.3,585.8z M393.4,654.7l-34.5-60.6l-0.1-0.2l-4.4-1l31.2-54.5l64.5,46.6l-15.9,20.3L416.7,624 l-11.6,35.5L393.4,654.7z M449.1,677.2L449.1,677.2L406.3,660l11.5-35.3l17.2-18.5l16-20.4l1.1,0.8l54.2,38.9l-9.9,13.4 l-12.2,27.4l-11.3,10.8l-5,18.2L449.1,677.2z"/>
</g>
<g>
<polygon class="st4" points="524.9,461.3 464.7,484.4 570.7,569.6 590.8,592.3 590.8,590.8 614.3,563.2 656.2,512.1 658.8,510 614.3,490.8 "/>
<polygon class="st4" points="418.1,364.8 320.9,321.5 297,289.8 296.6,293.7 271.5,332.8 269.7,333.9 338.7,373.8 "/>
<polygon class="st4" points="502.1,383.3 568.2,348.3 579.4,323.4 560.2,312.7 529.4,285.7 535.9,334.9 "/>
<path class="st4" d="M220.7,531.9l30.5-4.8l31.7,0.2l-33-26.5l-25.3-22.4l-47.8-45.6l-2.4,3l-39.5,59.9 c21,6.2,62.9,20.9,62.9,20.9L220.7,531.9z"/>
<polygon class="st4" points="402.3,613.1 394.5,657.7 369.3,699 371.9,701.7 422.9,730.8 429.1,663.1 "/>
<polygon class="st4" points="455.2,621.2 518.2,655.3 540,677.9 568.2,638.3 525,618.4 "/>
</g>
<polygon class="st5" points="425.2,283.4 444.1,242.2 445.5,222.1 433.9,219.8 432.6,238.2 "/>
<polygon class="st4" points="354.3,432.1 378.9,487.7 366.8,521 414.1,478 399.1,447.2 384.6,453.4 "/>
<g>
<g class="st6">
<g>
<path class="st7" d="M232.6,462.2c-0.4-3.8-0.6-7.5-0.5-11.2l12.1,0.3c-0.1,3.1,0.1,6.3,0.4,9.6L232.6,462.2z"/>
</g>
<g>
<path class="st7" d="M271.3,529.3c-3.5-2.3-6.8-5-9.9-8l8.4-8.8c4.8,4.5,10.1,8.2,15.5,10.9l-5.3,10.9 C277.1,532.9,274.2,531.2,271.3,529.3z M247.3,504c-3.9-6.2-7.2-13-9.7-20l11.4-4c2.2,6.2,5.1,12.1,8.5,17.6L247.3,504z M302.3,540.4l0.9-12.1c6.1,0.5,12.3-0.2,18.6-2l3.3,11.7C317.5,540.1,309.8,541,302.3,540.4z M438.2,621.7 c-3.4-2.3-6.5-4.9-9.3-7.8l8.7-8.5c4.2,4.3,9.3,7.9,15.3,10.5l-5,11.1C444.4,625.5,441.2,623.7,438.2,621.7z M469.5,633.3 l1.9-12c7.1,1.1,13.2,1,18.1-0.4l3.3,11.7C486.1,634.5,478.5,634.8,469.5,633.3z M416.3,594.7c-2.7-6.5-4.6-13.9-5.6-21.8 l12-1.5c0.8,6.8,2.4,13.1,4.7,18.6L416.3,594.7z M345.7,528.9l-6.3-10.4l0.7-0.4c4.4-2.7,7.9-6,10.7-10.2 c0.4-0.6,0.8-1.3,1.2-1.9l10.5,6.1c-0.5,0.9-1,1.7-1.6,2.5c-3.7,5.5-8.6,10.1-14.4,13.7L345.7,528.9z M410.2,550.9 c0.4-6.8,1.4-14.1,2.8-21.5l11.9,2.3c-1.3,6.9-2.2,13.7-2.6,20L410.2,550.9z M502.4,611.2c2.8-4.3,5-10,6.6-17.4l11.9,2.6 c-1.9,8.9-4.6,15.9-8.3,21.5L502.4,611.2z M357.7,488.5c0.8-5.7,1-12.2,0.6-19.7l12.1-0.6c0.4,8.3,0.2,15.6-0.7,22.1 L357.7,488.5z M511.9,573.8c0.6-6.4,1-12.9,1.4-20.7l12.1,0.7c-0.5,7.9-0.8,14.5-1.4,21.1L511.9,573.8z M418.2,508.4 c2-6.6,4.3-13.5,6.9-20.3l11.3,4.3c-2.5,6.5-4.7,13.1-6.6,19.4L418.2,508.4z M356.2,448.5c-1-7-2.2-14.3-3.3-20.5l12-2.1 c1.1,6.3,2.3,13.7,3.4,20.9L356.2,448.5z M514.6,532.1c0.6-8.1,1.4-15,2.3-21.3l12,1.8c-0.9,6-1.6,12.6-2.2,20.4L514.6,532.1z M433.3,468.5c3-6.4,6.2-12.8,9.6-19.1l10.6,5.8c-3.3,6-6.4,12.2-9.2,18.3L433.3,468.5z M349.4,407.2c-1.3-8.3-2.2-15-2.7-21.2 l12.1-1.1c0.5,5.9,1.4,12.4,2.6,20.4L349.4,407.2z M521.5,489.5c2.3-7.8,5.1-14.5,8.5-20.6l10.5,6c-3,5.3-5.4,11.2-7.4,18 L521.5,489.5z M346.1,364.3c0.5-8.5,1.8-15.7,4.2-22.2l11.4,4.2c-2,5.3-3.1,11.5-3.5,18.7L346.1,364.3z M451.2,431.4 c2-6,3.4-12.5,4.2-19.2l12.1,1.4c-0.9,7.5-2.4,14.8-4.7,21.6L451.2,431.4z M552.3,460.2l-8-9.1c6-5.4,12.8-9.3,20.1-11.7 l3.8,11.5C562.5,452.9,557.1,456,552.3,460.2z M455.9,392.4c-0.4-6.6-1.5-13.2-3-19.6l11.8-2.9c1.7,7.1,2.9,14.4,3.3,21.7 L455.9,392.4z M371.5,331.2l-8.2-8.9c3.1-2.8,6.6-5.3,10.6-7.5c3.1-1.7,6.3-3.1,9.4-4.3l4.2,11.4c-2.6,0.9-5.2,2.1-7.8,3.5 C376.5,327.2,373.8,329.1,371.5,331.2z M586.5,449l0.9-12.1c7,0.5,14.4,2.2,22,4.9l-4.1,11.4C598.8,450.9,592.4,449.4,586.5,449 z M446.4,354.1c-2.9-6.2-6.3-11.8-10.1-16.6l9.5-7.6c4.4,5.6,8.4,12,11.6,19.1L446.4,354.1z M405.4,319.3l1-12.1 c7.8,0.6,15.4,3.1,22.4,7.4l-6.3,10.4C417,321.7,411.3,319.8,405.4,319.3z"/>
</g>
</g>
<polygon class="st8" points="658.9,462.1 653.8,449.4 638.4,457.8 639.4,438.6 626.7,443.7 633.5,458.9 617.7,458.7 622.6,473.2 635,463.4 633.8,481.7 648.3,476.8 638.2,462.1 "/>
<path class="st8" d="M225.9,423c-4.3,6.4-2.7,15.2,3.8,19.5c6.4,4.3,15.2,2.6,19.5-3.8c4.3-6.5,2.6-15.2-3.8-19.5 C239,414.9,230.3,416.6,225.9,423z"/>
</g>
<path class="st9" d="M287.8,593.7l1.6-6.8c2.3-0.1,4.5-1.9,5.4-4.6l2.4-7c0.2,0,0.5,0.1,0.7,0.1c0.6,0.1,1.2,0.2,1.7,0.3 c0.8,0.1,1.7,0.3,2.5,0.4c0.6,0.1,1.2,0.1,1.9,0.2c0.8,0.1,1.6,0.2,2.4,0.2c0.6,0,1.3,0.1,1.9,0.1c0.8,0,1.5,0.1,2.3,0.1 c0.7,0,1.3,0,2,0c0.8,0,1.5,0,2.2,0c0.7,0,1.3,0,2-0.1c0.7,0,1.5-0.1,2.2-0.1c0.7,0,1.4-0.1,2-0.2c0.7-0.1,1.4-0.2,2.1-0.2 c0.7-0.1,1.4-0.2,2.1-0.3c0.7-0.1,1.3-0.2,2-0.3c0.7-0.1,1.4-0.2,2.1-0.4c0.6-0.1,1.3-0.3,1.9-0.4c0.7-0.2,1.4-0.3,2.2-0.5 c0.6-0.1,1.2-0.3,1.8-0.5c0.8-0.2,1.5-0.4,2.2-0.6c0.5-0.2,1-0.3,1.5-0.5c0.8-0.3,1.6-0.5,2.4-0.8c0.3-0.1,0.6-0.2,0.9-0.3 c3.5-1.2,6.8-2.7,10.1-4.4c0,0,0.1,0,0.1,0c1-0.5,2-1,2.9-1.6c0.2-0.1,0.5-0.2,0.7-0.4c0.9-0.5,1.8-1.1,2.7-1.6 c0.3-0.2,0.6-0.3,0.8-0.5c0.9-0.5,1.7-1.1,2.6-1.7c0.3-0.2,0.6-0.4,0.9-0.6c0.8-0.6,1.7-1.2,2.5-1.8c0.3-0.2,0.6-0.4,0.8-0.6 c0.8-0.6,1.6-1.3,2.4-1.9c0.3-0.2,0.5-0.4,0.8-0.6c0.8-0.7,1.6-1.4,2.4-2.1c0.2-0.2,0.5-0.4,0.7-0.6c0.8-0.7,1.6-1.5,2.3-2.2 c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.6-1.6,2.3-2.4c0.1-0.2,0.3-0.3,0.4-0.5c0.7-0.8,1.4-1.5,2.1-2.3c0.2-0.3,0.4-0.5,0.7-0.8 c0.9-1,1.7-2.1,2.6-3.2c0.3-0.4,0.6-0.7,0.8-1.1c0.8-1.1,1.5-2.1,2.3-3.2c0.2-0.4,0.5-0.7,0.7-1.1c1.9-2.9,3.6-5.9,5.2-9.1 c0.2-0.4,0.4-0.8,0.6-1.3c0.6-1.2,1.1-2.3,1.6-3.5c0.2-0.5,0.5-1.1,0.7-1.6c0.1-0.1,0.1-0.3,0.2-0.4c0,0,0,0,0,0 c0.4-1,0.8-2,1.2-3.1c0.2-0.5,0.4-1,0.5-1.5c0.6-1.7,1.1-3.4,1.6-5.1c13.5-48.3-13.6-98.1-60.7-111.3c-1.3-0.4-2.6-0.7-4-1 c-0.4-0.1-0.7-0.2-1.1-0.2c-1-0.2-2.1-0.4-3.1-0.6c-0.3-0.1-0.6-0.1-1-0.2c-1.3-0.2-2.6-0.4-3.9-0.6c-0.3,0-0.5-0.1-0.8-0.1 c-1.1-0.1-2.1-0.2-3.2-0.3c-0.4,0-0.8-0.1-1.2-0.1c-1.1-0.1-2.2-0.1-3.2-0.1c-0.2,0-0.5,0-0.7,0c-1.3,0-2.6,0-3.8,0 c-0.4,0-0.8,0-1.2,0c-0.9,0-1.9,0.1-2.8,0.2c-0.4,0-0.8,0.1-1.2,0.1c-1.2,0.1-2.5,0.2-3.7,0.4c-0.3,0-0.5,0.1-0.8,0.1 c-1,0.1-2,0.3-3,0.5c-0.5,0.1-0.9,0.2-1.4,0.3c-0.8,0.2-1.6,0.3-2.5,0.5c-0.4,0.1-0.9,0.2-1.3,0.3c-1.1,0.3-2.3,0.6-3.4,0.9 c-0.5,0.1-1,0.3-1.5,0.4c-0.7,0.2-1.4,0.4-2.1,0.7c-0.5,0.2-1.1,0.4-1.6,0.6c-0.7,0.2-1.4,0.5-2.1,0.8c-0.8,0.3-1.6,0.6-2.3,0.9 c-0.7,0.3-1.4,0.6-2.2,0.9c-0.6,0.3-1.2,0.5-1.8,0.8c-0.5,0.2-1,0.5-1.6,0.8c-0.6,0.3-1.2,0.6-1.8,0.9c-0.5,0.3-1,0.5-1.5,0.8 c-1.1,0.6-2.2,1.2-3.2,1.9c-0.4,0.2-0.8,0.5-1.2,0.7c-0.6,0.4-1.3,0.8-1.9,1.2c-0.4,0.2-0.7,0.5-1.1,0.7c-2.2,1.5-4.3,3-6.3,4.7 c-0.3,0.2-0.6,0.5-0.9,0.7c-0.6,0.5-1.3,1.1-1.9,1.6c-0.2,0.2-0.4,0.4-0.6,0.6c-1.3,1.1-2.5,2.3-3.7,3.5c-0.1,0.1-0.3,0.3-0.4,0.4 c-0.6,0.6-1.2,1.3-1.8,1.9c-0.2,0.3-0.5,0.5-0.7,0.8c-0.1,0.1-0.2,0.2-0.3,0.3c0,0,0,0,0,0c-3.4,3.8-6.4,7.9-9.2,12.2 c-0.1,0.1-0.1,0.2-0.1,0.2c-0.8,1.3-1.6,2.6-2.3,3.9c-0.2,0.3-0.4,0.7-0.5,1c-0.6,1.1-1.2,2.2-1.7,3.3c-0.2,0.5-0.4,0.9-0.7,1.4 c-0.5,1.1-1,2.1-1.4,3.2c-0.2,0.5-0.4,1-0.6,1.5c-0.4,1.1-0.9,2.2-1.3,3.4c-0.2,0.5-0.4,0.9-0.5,1.4c-0.5,1.6-1.1,3.2-1.5,4.9 c-0.8,3-1.5,6-2.1,9l0,0l0,0c-0.1,0.5-0.1,0.9-0.2,1.4c-0.2,1-0.3,2-0.5,3c-0.1,0.6-0.1,1.3-0.2,1.9c-0.1,0.8-0.2,1.7-0.3,2.5 c-0.1,0.7-0.1,1.3-0.1,2c0,0.8-0.1,1.6-0.1,2.4c0,0.7,0,1.4,0,2c0,0.8,0,1.5,0,2.3c0,0.7,0,1.4,0.1,2.1c0,0.8,0.1,1.5,0.1,2.3 c0,0.7,0.1,1.4,0.2,2.1c0.1,0.7,0.1,1.5,0.2,2.2c0.1,0.7,0.2,1.4,0.2,2c0.1,0.7,0.2,1.5,0.3,2.2c0.1,0.7,0.2,1.3,0.3,2 c0.1,0.7,0.3,1.4,0.4,2.2c0.1,0.7,0.3,1.3,0.4,2c0.2,0.7,0.3,1.4,0.5,2.1c0.2,0.7,0.3,1.3,0.5,2c0.2,0.7,0.4,1.4,0.6,2.1 c0.2,0.6,0.4,1.3,0.6,1.9c0.2,0.7,0.5,1.4,0.7,2.1c0.2,0.6,0.4,1.2,0.7,1.8c0.3,0.7,0.6,1.4,0.8,2.1c0.2,0.6,0.5,1.2,0.7,1.8 c0.3,0.7,0.7,1.4,1,2.2c0.3,0.5,0.5,1.1,0.8,1.6c0.4,0.8,0.8,1.5,1.2,2.3c0.2,0.5,0.5,0.9,0.7,1.4c0.6,1.2,1.3,2.3,2,3.5 c0.2,0.3,0.3,0.5,0.5,0.8c0.6,0.9,1.2,1.9,1.8,2.8c0.3,0.4,0.6,0.9,0.9,1.3c0.5,0.7,1,1.4,1.5,2.1c0.4,0.5,0.7,0.9,1.1,1.4 c0.5,0.6,1,1.3,1.5,1.9c0.4,0.5,0.8,0.9,1.2,1.4c0.5,0.6,1,1.2,1.5,1.8c0.4,0.5,0.9,0.9,1.3,1.4c0.5,0.6,1,1.1,1.6,1.7 c0.4,0.5,0.9,0.9,1.4,1.3c0.5,0.5,1.1,1.1,1.7,1.6c0.5,0.4,1,0.9,1.4,1.3c0.6,0.5,1.1,1,1.7,1.5c0.5,0.4,1,0.8,1.5,1.2 c0.6,0.5,1.2,0.9,1.8,1.4c0.5,0.4,1,0.8,1.6,1.1c0.6,0.4,1.3,0.9,1.9,1.3c0.5,0.4,1.1,0.7,1.6,1.1c0.7,0.4,1.3,0.8,2,1.2 c0.5,0.3,1.1,0.7,1.6,1c0.7,0.4,1.4,0.8,2.1,1.2c0.6,0.3,1.1,0.6,1.7,0.9c0.7,0.4,1.5,0.7,2.2,1.1c0.6,0.3,1.1,0.5,1.7,0.8 c0.8,0.4,1.6,0.7,2.4,1c0.5,0.2,1.1,0.5,1.6,0.7c0.3,0.1,0.5,0.2,0.8,0.3l-2,8.8c-0.6,2.5,0.5,4.8,2.5,5.4l-6.6,20.1l0,0l-3.1,9.6 l8.4,8L287.8,593.7C287.8,593.7,287.8,593.7,287.8,593.7z"/>
<g>
<path class="st10" d="M281.7,537.8c-39.4-11.1-62.1-52.7-50.8-93.1c11.3-40.4,52.4-64.2,91.8-53.1c39.4,11.1,62.1,52.7,50.8,93.1 C362.1,525.1,321.1,548.9,281.7,537.8z"/>
<path class="st11" d="M374.8,479c-11.5,38.2-50.7,60.6-88.4,50c-38.1-10.7-60-51-49.1-90.1c4.1-14.6,12.2-26.9,22.7-36.1 c-13.6,9.8-24.2,24.2-29.2,41.8c-11.3,40.4,11.4,82.1,50.8,93.1c39.4,11,80.5-12.7,91.8-53.1C374,482.8,374.4,480.9,374.8,479z"/>
<path class="st12" d="M317.3,399.5c39.4,11,62.1,52.7,50.8,93.1c-2,7-4.8,13.4-8.4,19.3c6.2-7.8,10.9-16.9,13.8-27.2 c11.3-40.4-11.4-82.1-50.8-93.1c-32.6-9.1-66.3,5.6-83.4,33.8C257.5,402.4,287.9,391.2,317.3,399.5z"/>
<polygon class="st13" points="280.6,553.1 274.6,551.4 257.2,604.6 267.8,607.6 "/>
<polygon class="st13" points="271.1,611.3 251.6,605.9 202.3,759.6 233.2,768.2 "/>
<path class="st13" d="M235.4,764.8c0.4-1.4-0.4-2.9-1.8-3.3l-28-7.9c-1.6-0.4-3.2,0.5-3.7,2.1l-2.2,7.9c-1.4,5,32.1,14.4,33.5,9.4 L235.4,764.8z"/>
<path class="st13" d="M273.1,608.9c0.7-3.1-1.2-6.1-4.1-7l-10.8-3c-2.9-0.8-5.9,0.8-6.9,3.7l-3.7,10.6c-0.3,0.8-0.2,1.7,0.2,2.5 c0.4,0.8,1.1,1.3,1.9,1.6l18.1,5.1c0.6,0.2,1.3,0.1,1.9-0.3c0.6-0.3,1-0.9,1.1-1.6L273.1,608.9z"/>
<path class="st13" d="M326.7,377.4c-47-13.2-96.2,15.2-109.7,63.5c-13.5,48.3,13.6,98.1,60.6,111.3c47,13.2,96.2-15.2,109.7-63.5 C400.9,440.4,373.8,390.6,326.7,377.4z M282,536.8c-38.8-10.9-61.2-52-50-91.8c11.2-39.8,51.7-63.2,90.5-52.3 c38.8,10.9,61.2,52,50,91.8C361.3,524.2,320.8,547.7,282,536.8z"/>
<path class="st14" d="M364.9,477.1c1.3-11.8-2.9-21.9-9.4-22.6c-6.5-0.7-12.8,8.3-14.1,20.1c-1.3,11.8,2.9,21.9,9.4,22.6 C357.3,497.9,363.6,488.9,364.9,477.1z"/>
<path class="st14" d="M349.1,434.7c-2-5.2-5.9-8.6-8.8-7.4c-2.9,1.1-3.6,6.3-1.7,11.5c2,5.2,5.9,8.6,8.8,7.4 C350.3,445.1,351,440,349.1,434.7z"/>
<path class="st13" d="M280.9,562c0.5-1.8-1.4-3.8-4.3-4.6c-2.8-0.8-5.6,0-6,1.7c-0.5,1.8,1.4,3.8,4.3,4.6 C277.7,564.5,280.4,563.8,280.9,562z"/>
<path class="st15" d="M323.1,390.1c-40.2-11.3-82.1,13-93.7,54.2c-11.6,41.2,11.6,83.8,51.8,95c40.2,11.3,82.1-13,93.7-54.2 C386.5,443.9,363.3,401.4,323.1,390.1z M282.3,535.6c-38.2-10.7-60.2-51.1-49.2-90.3c11-39.1,50.8-62.2,89-51.5 c38.2,10.7,60.2,51.1,49.2,90.3C360.3,523.3,320.5,546.3,282.3,535.6z"/>
</g>
<g>
<path class="st16" d="M625.2,129.8c0,0-29.6-15.3-52.1,27.2c-22.5,42.5,3.4,106.4,3.4,106.4s15.7,16.4,59.7,9.9 c39.6-5.8,61.1-28.6,61.1-28.6s-16.8-34.8-17.1-65.5C679.9,140.3,648.2,121,625.2,129.8z"/>
<path class="st16" d="M612.6,322.2c0,0-26.4-11-38.7-62.6s63.7-58.6,63.7-58.6l44.5,32.5c0,0,12.6-4.7,21.2,26.1 c8.5,30.8-11.5,50.6-11.5,50.6l-48.7,9.4L612.6,322.2z"/>
<path class="st13" d="M606.1,847.5c-9.2,0.5-34.5,11.2-33.5,20.4c1,9.2,41.8,3.4,48.6,0.5s4.9-19.4-1.5-21.4 C613.4,845.1,606.1,847.5,606.1,847.5z"/>
<path class="st17" d="M591.1,777.6c0,0,10.7,68,12.1,72.8c1.5,4.9,13.6,6.3,17,1.5c3.4-4.9,2.9-73.3,1.9-76.2 C621.2,772.8,593.5,770.8,591.1,777.6z"/>
<path class="st13" d="M713.5,844.5c9.2-1,35.8,5.4,36.4,14.7s-40.7,10.1-47.8,8.3c-7.2-1.8-7.9-18.4-2-21.3 C705.9,843.2,713.5,844.5,713.5,844.5z"/>
<path class="st17" d="M717,773c0,0,0.5,68.8-0.2,73.8c-0.7,5-12.4,8.4-16.5,4.2c-4.1-4.2-14.7-71.9-14.3-74.9 C686.5,773.1,713.5,766.7,717,773z"/>
<path class="st18" d="M567.3,482.4c0,0,0.5,140.8,2.4,180.6c1.9,39.8,16.5,114.1,18.4,118.5c1.9,4.4,37.4,1.9,37.4,1.9 s9.7-97.1,12.6-116s-1-107.3,3.4-107.8c4.4-0.5,10.7,78.7,14.1,102c3.4,23.3,22.8,109.2,25.7,114.6s33,1.9,36.9,0.5 c3.9-1.5,5.8-136.4,2.9-185.5c-2.9-49-13.6-113.1-16.5-117.5S567.3,482.4,567.3,482.4z"/>
<path class="st19" d="M609.7,238.7c0,0,2.3,15.1-5.9,25.7c-8.3,10.7,5.9,22.8,5.9,22.8h40.7l8.5-10.8l-3.6-16.9 c0,0-12.3-12.4-12.7-31.7C642.1,208.6,609.7,238.7,609.7,238.7z"/>
<path class="st13" d="M535.7,401.3c21.9-3.9,46.2-44.2,46.2-44.2L562,312l-24.8,44.7l-3.9,25.7L535.7,401.3z"/>
<path class="st13" d="M603.7,264.4c0,0,7.3,10.2,22.3,12.6c15.1,2.4,29.1-17.5,29.1-17.5s33,7.8,51,23.8 c18,16,39.9,103.9,40.8,109.2c1,5.3-45.2-12.1-45.2-12.1s0,78.7,10.2,100c0,0-34,20.4-80.1,20.9s-69.7-17.8-69.7-17.8 s12.3-102.6,8-122.5c-4.4-19.9-24.7-24.8-24.7-24.8s18.5-40.8,30.1-54.9S603.7,264.4,603.7,264.4z"/>
<path class="st17" d="M616.3,159.4c-51.8,3.7-41.2,91.8,6.3,88.5C670,244.5,671,155.5,616.3,159.4z"/>
<path class="st17" d="M662.5,355.2c0,0-16.5-11.7-27.2-16c-10.7-4.4-18.4-1.9-18.4-9.7c0,0-9.2-3.9-5.8-9.2c0,0-3.9-7.3,2.9-10.7 c0,0,3.4-6.3,11.2-7.3c7.8-1,11.3,2.8,21.8,7.3c16,6.8,19.4,23.3,28.2,30.1L662.5,355.2z"/>
<path class="st17" d="M545.8,367.3c0,0,6.7-14.8,12.2-22c5.6-7.2,11.8-8.3,8.8-14.1c0,0,4.8-6.3,0.4-9c0,0-0.2-6.8-6.2-6.8 c0,0-4.8-3.4-10.5-1.2s-6.6,6.3-12,13.5c-8.2,11-4.1,24.5-7.4,32.8L545.8,367.3z"/>
<path class="st13" d="M676.1,330.4c0,0-14.4,12.5-18.4,24.8c-3.4,10.2,4.9,7.3,8.7,9.2c3.9,1.9,26.7,37.9,47.6,46.1 c20.9,8.3,36.9-4.9,32-22.8C741.1,369.8,696,338.2,676.1,330.4z"/>
<path class="st13" d="M529.7,343.2c0,0,21.1,8.3,23.7,11.6c2.6,3.3-1.3,4.9-2.6,7.9c-1.3,3.1,10.2,34.6-15.2,38.6 C510.2,405.4,514.9,369.3,529.7,343.2z"/>
<path class="st16" d="M619.1,172.2c0,0-29.7,26.9-48.7,28.9c0,0-13.8-43.5,31.7-56.8c45.5-13.3,63.4,27.6,62.9,42.5 C665.1,186.8,630.9,184.4,619.1,172.2z"/>
<path class="st20" d="M699.6,396.7c-7.1-7.4-14.4-14.9-21.7-22.1c-3.1-3-6.5-5.6-10-8.2c-4.1-3.1-8.4-2.2-9.3-8.8 c-0.1-0.6-0.9-0.8-1-0.1c-2.6,9.4,5.8,10,11.8,15c9.7,8,16.8,21.1,28.1,26.9C699.2,400.2,700.9,398.1,699.6,396.7z"/>
<path class="st20" d="M721.4,365.3c-8.7-5-16.2-12.1-24.2-18.2c0-0.2,0-0.5-0.1-0.8c-4.1-8.8-7.4-17.9-11.3-26.8 c-0.2-0.5-1.1-0.1-0.9,0.4c2.8,7.6,4,16.7,7.9,24.1c-5.5-3.7-11.5-6.6-18.4-8c-1-0.2-1.3,1.1-0.4,1.5c10,4,20.4,9.6,28.4,16.8 c5.7,5.1,10.8,10.6,18,13.3C721.7,368.1,722.6,366,721.4,365.3z"/>
<path class="st20" d="M552.6,360.9c-2.5,8.6-5.9,17.9-6.8,26.8c-0.1,1.3,2,1.9,2.5,0.7c3.5-8.3,4.3-18.2,6.4-26.9 C555.1,360.1,553,359.5,552.6,360.9z"/>
<polygon class="st21" points="386.6,275 480.4,271.9 618.8,290.6 773.3,272.6 840.2,243 880.2,246.9 808.7,328.9 773.3,417.9 744.1,416.3 621.9,454.6 534.7,430.9 488.8,431.1 441.9,347.6 "/>
<polygon class="st2" points="771.3,359.1 725.4,362.2 681.3,396.5 622.9,445.5 564.4,415.3 517.3,372.6 420.5,319.6 456.6,373.7 488.8,431.1 534.7,430.9 621.9,454.6 744.1,416.3 773.3,417.9 807.2,329.3 "/>
<g>
<polygon class="st2" points="483.4,276 621.9,294.8 785.6,285.9 843.3,247.1 899.4,271.9 880.2,246.9 842.5,241 772.9,269.9 618.8,290.6 478.4,269.5 386.6,275 389.7,279.1 "/>
</g>
<polygon class="st2" points="386.6,275 374.6,314.4 481.9,273.8 "/>
<g>
<g>
<path class="st19" d="M810,330.4c0.1,1.1,3-6.4,4.5-8.2c1.5-1.7,7.9-8.7,11.2-4.5c3.3,4.3-6.5,9.6-7.8,15.5 c-1.4,5.9-7,4.7-7,4.3S810,330.4,810,330.4z"/>
<g>
<path class="st17" d="M808.4,357.1c-3.6,1.3-16.2,2.6-21.6-1.9c-5.4-4.5,2.9-9.4,2.9-9.4s-0.6-5.4,1-8.4 c1.6-3.1,4.5-3.9,4.5-3.9s-0.2-5.8,2.9-8.2c3.1-2.5,9.1,0,9.1,0s10.8,2.5,12.8,6S814.3,354.9,808.4,357.1z"/>
</g>
</g>
</g>
<g>
<g>
<path class="st19" d="M447.1,361.3c-0.1,1.1-3-6.4-4.5-8.2c-1.5-1.7-7.9-8.7-11.2-4.5c-3.3,4.3,6.5,9.6,7.8,15.5 c1.4,5.9,7,4.7,7,4.3S447.1,361.3,447.1,361.3z"/>
<g>
<path class="st17" d="M448.7,387.9c3.6,1.3,16.2,2.6,21.6-1.9c5.4-4.5-2.9-9.4-2.9-9.4s0.6-5.4-1-8.4s-4.5-3.9-4.5-3.9 s0.2-5.8-2.9-8.2c-3.1-2.5-9.1,0-9.1,0s-10.8,2.5-12.8,6S442.7,385.7,448.7,387.9z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

179
assets/img/social-event.svg Normal file
View file

@ -0,0 +1,179 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 750 500" style="enable-background:new 0 0 750 500;" xml:space="preserve">
<style type="text/css">
.st0{fill:#2895F4;}
.st1{opacity:0.5;fill:none;stroke:#0E538C;stroke-miterlimit:10;}
.st2{opacity:0.5;fill:#0E538C;}
.st3{fill:#D2D2D2;}
.st4{fill:none;stroke:#B7B7B7;stroke-miterlimit:10;}
.st5{fill:#E9BEAE;}
.st6{fill:#F9CBBA;}
.st7{fill:#0F528C;}
.st8{fill:none;stroke:#0A4971;stroke-miterlimit:10;}
.st9{fill:#FFBE58;}
.st10{fill:none;stroke:#EAA542;stroke-miterlimit:10;}
.st11{fill:#0E538E;}
.st12{fill:#EAA542;}
.st13{fill:#D38D2F;}
.st14{fill:none;stroke:#D38D2F;stroke-miterlimit:10;}
.st15{fill:#B76B2F;}
.st16{fill:#1E0F00;}
.st17{opacity:0.2;}
.st18{opacity:0.2;fill:none;stroke:#1E0F00;stroke-miterlimit:10;}
.st19{fill:#CC6947;}
.st20{fill:none;stroke:#B26F1F;stroke-miterlimit:10;}
.st21{fill:none;stroke:#D6903C;stroke-miterlimit:10;}
</style>
<g id="BACKGROUND">
</g>
<g id="OBJECTS">
<path class="st0" d="M380.8,469.7c-16.5,2.5-24.6,3.1-41.8,1.3c-1.2-6.4-7.1-39.9-7.1-39.9s-6.8,32.6-7.6,40.4 c-14.7,5.1-40.9-0.4-40.9-0.4s-1.7-31.1-2.4-42.5c-2.5-42.4,16.6-59.3,16.6-59.3s15.2-2.4,35.6-2.2c20.4,0.2,33.8,1.8,33.8,1.8 s16.9,23.6,16,45.8C382.2,436.9,383,453.9,380.8,469.7z"/>
<path class="st1" d="M306.1,431.1c0,0,13.8,7.1,26.2-1.3c0,0,13.8,9.3,28,0"/>
<path class="st1" d="M334.1,390.2c0,0,2.2,22.2-1.3,36.9"/>
<path class="st2" d="M346.1,389.8l1.8,21.8c0,0,12,7.6,18.2,5.8c6.2-1.8,13.8-12.9,13.8-12.9l-6.7-20c0,0-5.8,2.7-13.3,4 C353.7,389.5,346.1,389.8,346.1,389.8z"/>
<path class="st2" d="M320.8,390.7l-1.8,21.8c0,0-12,7.6-18.2,5.8c-6.2-1.8-13.8-12.9-13.8-12.9l6.7-20c0,0,5.8,2.7,13.3,4 C313.2,390.4,320.8,390.7,320.8,390.7z"/>
<path class="st3" d="M289.9,370.5c7.7,2.1,15.5,4,23.5,4.8c10.2,1.1,20.3,0.7,30.5-0.1c7.9-0.7,16.1-1.1,23.7-3.4 c0.9-0.3,1.7-0.6,2.6-0.9c-0.9-4.9-1.7-9.7-2.1-13.6c-0.4-3.6,1.6-20.7,2.9-31.6c1.3-10.9,1.3-44-3.9-47.5 c-5.2-3.5-17-4.7-20.1-5.2c-12.4-2.1-30.5-2-37.4-0.9c-6.5,1-16.1,5.3-18.7,11.3c-3.4,7.8-3,22.6-0.9,33.3 c2.2,10.7,2.8,31.5,2.7,36.4C292.5,356.2,291.3,363,289.9,370.5z"/>
<path class="st4" d="M317.5,331c0,0,22.2,31.3,34.6,32.7"/>
<path class="st5" d="M396.2,336.7c23.7,5.9,49.1-0.3,67.5-4.9c-1,17.3,6.3,29.9,5.5,32.2c-0.7,2.2-22.6,13-37.5,13.9 c-14.9,0.9-36.1-6.4-37.3-8.7C393.9,367.8,396.9,351.5,396.2,336.7z"/>
<polygon class="st6" points="410.6,242.6 412,261.3 439,256.8 430.8,231.4 "/>
<path class="st7" d="M455.4,214.3c-4-12.8,3.4-39.4-26.7-44.9c-24.1-4.4-36.7,16.4-36.7,16.4s-12,4.5-14.3,13.1 c-5.8,22.3,5.4,24.4,2.6,34.1c-2.8,9.7,2.3,19.5,10.9,21c8.6,1.5,15.4-3.4,15.4-3.4s6,2,13.2,0.9c3.7-0.5,7.7-1.9,11.4-4.7 c6.8,2.1,16.9,1.3,23.8-5.1C464.6,232.8,459.3,227,455.4,214.3z"/>
<g>
<path class="st8" d="M378.9,200.8c0,0-4.9,12-3.4,20.6c1.1,6.4,6.8,7.5,3.4,16.1c-2.8,7.1,1.1,12,4.1,13.1"/>
<path class="st8" d="M437.2,179.2c0,0,5.6,4.9,6.9,11.4c1.3,6.6-1.5,15.2,1.1,19.7c2.6,4.5,5.1,11.3,4.9,18 c-0.2,6.8-5.8,14.1-5.8,14.1"/>
<path class="st8" d="M449.8,210.3c0,0,3.8,7.1,4.5,14.1c0.8,6.9-3.4,15.2-4.9,15.9"/>
<path class="st8" d="M385.6,194.2c0,0-7.9,8.6-5.1,15.2c2.8,6.6,6.9,14.1,5.6,17.8c-1.3,3.8-4.3,10.9-0.7,13.7"/>
<path class="st8" d="M387.9,214.8c0,0,3.8,6.8,3,10.3c-0.8,3.6-3.6,9.4-0.6,13.1c3,3.8,4.7,7.7,4.7,7.7"/>
<path class="st8" d="M393.3,204.8c0,0-1.7,7.8,1.5,12.5c3.3,4.8,4,9.8,3,14.3c-1,4.5,2.5,9.5,2.5,9.5"/>
</g>
<g>
<g>
<path class="st7" d="M390.7,188.6c0,0-18.2-0.8-18.3-14.1c-0.1-13.3,14.1-14.4,19.6-7.9c5,5.9,3.9,16.8,3.9,16.8L390.7,188.6z"/>
</g>
<g>
<path class="st7" d="M389,188c-0.2,0.1-0.4,0-0.5,0c-6.4-3.1-13.1,2.9-13.1,2.9c-0.3,0.3-0.8,0.3-1.1,0c-0.3-0.3-0.3-0.8,0-1.1 c0.3-0.3,7.5-6.7,14.8-3.2c0.4,0.2,0.5,0.6,0.3,1C389.3,187.8,389.2,187.9,389,188z"/>
</g>
<g>
<path class="st7" d="M377,196.8c-0.2,0-0.4,0-0.5,0c-0.4-0.2-0.5-0.6-0.4-1c0.2-0.4,4.3-9.2,12.4-8.7c0.4,0,0.7,0.4,0.7,0.8 c0,0.4-0.4,0.7-0.8,0.7c-7.1-0.4-10.9,7.8-10.9,7.9C377.4,196.6,377.2,196.8,377,196.8z"/>
</g>
</g>
<path class="st8" d="M445.6,182c0,0,9.4,12.8,9.8,21.4c0.4,8.6,1.5,10.5,5.6,16.1c4.1,5.6,5.3,10.9,1.1,17.3"/>
<g>
<path class="st8" d="M375.5,172.6c0,0-0.6,6.6,4.3,10.1c4.9,3.6,8.4,2.4,8.4,2.4"/>
<path class="st8" d="M380.3,174.4c0,0-0.1,2.8,3.4,5.9c3.5,3.1,6.6,2.6,6.6,2.6"/>
</g>
<g>
<path class="st6" d="M500.3,195c-3.7,0.5-7,1.5-7,1.5s-0.3,14.3-1,23.8c-0.8,9.5,1.8,24.5,1.8,24.5s-16.3,6.8-24.5,9.5 c-6.3,2.1-13.8,2-18.5,8.9c-4.7,6.9,0.5,32.4,12,30.6c11.5-1.7,18.5-6.8,31-15c13.9-9.1,18.8-15.1,22.7-21.6 c3.9-6.5,2.1-26.4-0.4-37.2c-1.6-6.7-7.8-25.8-7.8-25.8S504,194.5,500.3,195z"/>
<path class="st6" d="M494.9,199.9c4,1.4,12-2.1,13.9-3.6c2-1.6,2.6-4.8,3.3-7.1c0.7-2.3,0-9.6-0.1-12.9c-0.1-3.4-2-12.1-3.5-17.2 c-1.5-5.5-6-4.8-5.3-0.9c0.6,3.5,1,10.2,1,10.2s-2.6-3.6-4.9-3.6c-2.3,0-3.6,1.7-3.6,1.7s-0.8-2.3-3.4-1.8 c-2.6,0.5-2.5,3.6-2.5,3.6s-5-13.8-7.8-16.3c-2.8-2.5-5.4-0.5-3.8,3.3c1.6,3.8,2.6,6.9,3.9,11c1.9,6.1,2.6,12.2,2.6,12.2 s-4.9-4.7-6.9-5.1c-2-0.4-6-0.4-6.2,2c-0.3,2.4,6.7,6.8,7.6,7.9c1.7,1.9,3.2,4.1,6.5,9.8C487.2,195.4,490.9,198.5,494.9,199.9z"/>
</g>
<g>
<path class="st0" d="M462.3,313c0-5.9,2.5-19.1,3.1-25.4c0.5-6.5,1-13.4-0.3-19.8c-1.3-6.6-4.9-9.6-9.1-11.1 c-4.2-1.5-25.5-1.8-31.9-0.6c-9.3,1.7-28.6,3.1-32.3,10.6c-3.7,7.4,0,35,1.2,50c0.8,10.3-2.4,33.6-2.4,33.6s19.3,7.9,45.3,3.4 c26-4.5,33.5-12,33.5-12S462.3,318.9,462.3,313z"/>
<path class="st1" d="M452,290.4c0,0-10.1,9-14.6,19.5c-4.5,10.5-9.8,24.8-9.8,24.8"/>
</g>
<path class="st9" d="M434.6,476c-28,0.8-48.1-8.1-48.1-8.1s-0.1-37.3,0.6-55.6c0.5-12.6,6-38.6,6-38.6s0-3.3,0.2-4.5 c0.3-1.7,0.6-3.4,0.6-3.4s12.8,1.9,39.1-0.8c26.3-2.6,34.6-9.5,34.6-9.5s1.1,0.9,2.4,2.6c1.3,1.7,2.1,3.9,2.1,3.9s6.8,4.8,11.3,16 c4.6,11.1,5.4,29.3,5.4,40.8c0,11.5-0.8,47.3-0.8,47.3S464.8,475.2,434.6,476z"/>
<g>
<path class="st10" d="M393,373.6c0,0,25.3,3.7,44.2,0.7c19-3,34.4-12.7,34.4-12.7"/>
<path class="st10" d="M433.4,468.1c0,0,8.7-23.9,17.2-31.9c8.6-8,11.8-30.4,11.8-30.4"/>
</g>
<g>
<path class="st6" d="M288.2,248.7c-5.2-7.8-18.6-21.4-18.6-21.4s0.3-15.1-0.4-27.3c-0.7-12.3-2-25.6-4.4-32.5 c3.3-1.5,6.3-5.3,7.7-7.2c1.9-2.5,3.2-7.1,3.8-11.1c0.6-4-2.8-5.2-2.5-6.9c0.2-1.7,5.7-14.7,7.1-18.5c1.4-3.8-2.6-6.1-5.1-4.1 c-2.4,2-8.6,17.2-8.6,17.2s1.2-14.6,0.6-18c-0.6-3.4-3.1-4.5-5.4-2.6c-2.3,1.9-2.6,20.9-2.6,20.9s-2.2-2.1-5.1-0.5 c-3,1.6-2.9,3.5-2.9,3.5s-1.4-1.3-4,2.4c-2.6,3.7-0.6,19.2,2.6,22.4c0.6,0.6,1.2,1,1.8,1.4c-1,1.3-2,3-2.7,5.1 c-2.2,6.1-5.2,16.8-7.3,28.2c-2.3,12.2-1.7,28.7-0.4,36.5c1.3,7.8,17.4,33.3,27,43.3c9.2,9.6,22.9,13.8,29.4,6.5 C307.4,275.3,293.4,256.5,288.2,248.7z"/>
<path class="st11" d="M289.5,315.3c0,0,4-14.3,7.2-22.2c3.9-9.8,14.4-20.9,14.4-20.9s-2.3-4-7.2-10.4 c-3.2-4.2-12.6-15.1-14.8-17.2c-5-4.8-10.9,3-16.1,14.8c-4.5,10.2-5,29.8-5,29.8s3.8,8.4,10.3,15.7 C281.9,309.2,289.5,315.3,289.5,315.3z"/>
</g>
<path class="st12" d="M236.7,481c-15.2,0.4-32.7-1.1-32.7-1.1s-16.3,0.7-29.4,0c-13.1-0.7-24.8-5.2-24.8-5.2s0-18.3-0.7-26.1 c-0.7-7.8-3.9-17.6-3.9-32c0-14.4,3.3-28.3,5.7-35c2.4-6.7,105.2-8.4,108.6,2.9c0.6,2,3,14.6,3.9,26.2c0.7,9.7,0,18.9,0,18.9 l5.2,41.8C268.6,471.4,252.9,480.5,236.7,481z"/>
<path class="st13" d="M215.5,410.6l2.3,29c0,0,15.5,10.1,23.5,7.7c8-2.4,16.8-14.6,16.8-14.6l-3.3-27.9c0,0-11.8,2.3-21.5,4 C225.3,410.3,215.5,410.6,215.5,410.6z"/>
<path class="st13" d="M152.1,411.3l2.8,29.1c0,0,11.9,12.5,20.1,11.5c8.2-1,17.8-11.7,17.8-11.7l-1.1-28.2c0,0-11.9,0.3-21.8,0.5 C161.9,412.6,152.1,411.3,152.1,411.3z"/>
<path class="st14" d="M198.7,410.6c0,0-0.7,22.2,5.2,39.2c4.1,12,2.6,23.5,3.3,29.4"/>
<path class="st14" d="M181.1,464.8c14.4,0,20.4-10.4,25.5-9.1c5.2,1.3,16.3,9.8,32,6.5"/>
<path class="st15" d="M183.9,226.2l3.2-23.7l31.9,1.8l5.1,25.6c0,0-5.4,17.9-24.7,13.7C180.2,239.6,182.9,226.3,183.9,226.2z"/>
<path class="st15" d="M237,177.5c-1-3.1-8.3-3.9-8.3-3.9l-4.5,20.2c0,0,5.7-0.7,8.4-3.6C235.2,187.4,238.2,181.4,237,177.5z"/>
<path class="st15" d="M174.5,174.7c0,0-7.7-3.6-9.6,1.2c-1.7,4.3-0.2,9.1,2.9,12.4c2.4,2.5,9.7,4.6,9.7,4.6L174.5,174.7z"/>
<path class="st16" d="M236.9,152.8c-1.2-0.4-4.2-1.4-4.2-1.4s6.1-5.4,6.8-7.7c0.8-2.3-1-5.8-10-6.4c-6.7-0.4-14.3,0.3-14.3,0.3 s5.9-5,5.1-8.4c-0.8-3.3-4.6-2-11.7,0.4c-9.4,3.2-18,4.4-18,4.4s-14.3,2.5-17.4,8.4c-3.1,5.9-1.1,11.2-1.1,11.2s-5,5.5-4.2,12.1 c0.8,6.6,1.2,12.5,4.1,20c2.9,7.4,5.9,12.2,8.6,14.8c2.6,2.6,5.7,11.8,5.7,11.8s7.4,0.7,17,0.7c9.6,0,16.1-4.4,16.1-4.4 s3-8.5,4.3-10.8c1.3-2.3,5.5-12,6.7-16c1.2-4.1,2.1-12.1,3.3-13.9c1.2-1.7,3-3.2,4.4-4.4c1.4-1.2,3.8-3.3,3.7-5.8 C241.8,154.6,239.2,153.6,236.9,152.8z"/>
<g>
<path class="st16" d="M179.7,152.7c0,0-4.5-10.8,7.4-11.8c15.7-1.3,25.7-3.9,25.7-3.9"/>
<path class="st16" d="M183.2,154c0,0,1.3-7,13.1-4.8c11.8,2.2,31.3,2.2,31.3,2.2"/>
<path class="st16" d="M188,155.3c0,0,6.1,2.2,17.8,4.8c11.8,2.6,19.2-0.4,19.2-0.4"/>
<path class="st16" d="M179.3,158.3c0,0-7.4,5.2-4.8,16.3c2.6,11.1,7.8,18.1,7.8,18.1"/>
<path class="st16" d="M182.8,161c0,0-5.2,9.1,0.4,18.3"/>
</g>
<path class="st9" d="M222.8,223.2c0,0,37.9,4.1,43.1,17.9c5.2,13.7,0.7,40.7-2,49.4c-2.7,8.7-4.3,40.1-4,55.2 c0.3,11.7,5.1,48.9,4.5,57.2c-0.5,8.3-1.8,17.5-16.9,18.8c-15,1.3-35.3-4.6-41.1-7.8c-5.9-3.3-18.3-5.7-26.8-7.2 c-5.5-0.9-10.1,0.3-20.6-0.3c-10.4-0.7-14.7-2.7-15.7-3.9c-1.5-1.9-1-62.9-1.3-74c-0.3-11.1-8.8-56.2-7-72.9 c1-9.2,3.3-20.5,9.2-25.2c8.2-6.4,39.6-7.4,39.6-7.4s6.3,3.1,17,3.1C211.9,226.1,222.8,223.2,222.8,223.2z"/>
<g>
<path class="st15" d="M349.6,306.8c-3.9,15.7-32.1,24.2-40.2,25.6c-8.1,1.4-19.2-8.2-27.4-15.4c-8.2-7.2-21.3-20.4-21.3-20.4 l20.5-38.6c0,0,8.6,8,16.5,16.5c8,8.5,19.3,20.8,19.3,20.8S353.5,291.1,349.6,306.8z"/>
<path class="st9" d="M270.1,310.3c-3.7,1.9-11.9-9.4-19-10.5c-7.1-1.1-19.4-6.2-19.4-6.2s5.8-66.3,17.9-63.7 c16.1,3.5,40.6,30.6,43.4,36.5c2,4.2-3.8,11-8,20.2C280.7,295.8,273.8,308.4,270.1,310.3z"/>
</g>
<g>
<path class="st15" d="M174.5,230.4c-5.6-7.6-18.5-10.3-25.4-18.9c-9.4-11.9-19.3-25.7-19.3-25.7s1-16.2-0.3-28.9 c-1.3-12.7-3.3-39.2-3.3-39.2l-18.6-8.2c0,0-11.8,30-14,45.7c-2.3,15.7-7.2,25.8-1,44.4c6.2,18.6,31.8,68.6,44.5,70.2 C149.9,271.4,180.1,238.1,174.5,230.4z"/>
<path class="st15" d="M152.7,91.5c0.2-1.6-1.8-4.8-6.2-3.7c-3.4,0.9-8.4,8.3-9.1,6.9c-0.9-1.8,7.1-19.5,8.9-27.3 c0.9-3.9-3.1-6.5-6.2-1.9c-2.7,3.9-8,17.6-8.7,17.9c-0.7,0.3,5.1-20.3,4.9-24.5c-0.2-4.2-4.6-5.4-6.3-2.5 c-1.7,2.9-5.6,24.8-7,24.3c-1.4-0.5,1.3-19.2,0.4-23c-0.9-3.9-4.8-4.6-6.5-0.3c-1.6,4.3-2.5,24.7-3.8,24.6 c-1.3-0.1-1-11.4-2.4-16.7c-1.6-6.1-5.7-3-6.3,0.3c-0.5,3.3,0.4,14.6,0.1,22.4c-0.3,7.8-0.4,12,0.3,17.2c0.5,4,2.9,8.1,5.1,9.7 c2.3,1.6,13.5,5.8,17.3,3.9c3.8-1.9,9.5-5.2,11.2-8.9c1.7-3.7,7.1-9,9.2-11.5C150.2,95.4,152.6,92.4,152.7,91.5z"/>
</g>
<path class="st9" d="M168.6,221.9c-4.1-2.4-7.9-7.5-11.4-9.9c-4.2-2.9-7.3-4.5-7.3-4.5s-3.3-4.9-4.6-6.2c-1.3-1.3-4.6-3.6-6.5-2.6 c-2,1-12.1,18-17.3,33c-4.2,12.2-7.8,39.2-5.9,43.8c1,2.3,10.4,4.6,14.4,7.8c3.9,3.3,5.2,8.5,11.1,10.4c5.9,2,41.8-43.1,41.8-43.1 S173.2,224.5,168.6,221.9z"/>
<g>
<path class="st10" d="M149.7,208.2c0,0-20.2,26.1-21.5,55.5"/>
<path class="st10" d="M163.4,220c0,0-21.8,8.9-26,27.7"/>
<path class="st10" d="M171.7,302.4c0,0,15.8,60,47.9,72.3"/>
<path class="st10" d="M138.6,291.8c0,0,25.5-16.3,35.9-54.9"/>
<path class="st10" d="M245.1,252c0,0,3.9,35.9,14.4,45.4"/>
<path class="st10" d="M168.6,391.7c0,0,4.2,1.5,10.5,4.5c6.3,3,14.3,9.2,26,15.1"/>
</g>
<g>
<path class="st6" d="M424.6,379.9c0.4-7.1,4.8-9.4,8.5-10.8c3.7-1.3,11.4-3.1,13.1-3.5c2.8-0.8,12.7-6.8,14-1.9 c1.4,4.9-9.6,8-8.6,9.1c1.1,1.1,14.6-1.2,21-0.6c3.2,0.3,4.2,1.8,4.3,3.4c0.1,4.7-21.2,3.6-20.7,4.9c0.2,0.6,4.6,1.8,9.2,1.8 c4.5,0,9.4-1.2,10.9-0.7c3,1.2,3.3,5-0.2,5.9c-1.5,0.4-5.8,1.6-10.1,1.6c-5.9,0-11.6-0.9-11.6-0.9s4.8,1.8,9.2,2.9 c3.8,0.9,7.8,0.2,8.7,0.8c3,1.8,1.1,5.2-1.4,5.9c-1.1,0.3-5,1.1-8.8,0.1c-5-1.3-10.6-3.6-10.9-3.1c-0.4,1,8.1,4,10,5.6 c1.9,1.6,0.4,4.3-2.2,4.4c-3.1,0.1-7-0.8-12.4-3.1c-5.4-2.2-9.8-3.9-13.4-6.1C426.5,391.6,424.2,386.9,424.6,379.9z"/>
<path class="st6" d="M418.9,357.8c-5.1-4.4-19.7-14.1-22-15.6c-0.3-1.1-1.6-6-1.6-6s-5.3,3.6-11.2,5.2c-5.9,1.6-14.7,3.6-14.7,3.6 s4.7,15.5,9.3,19.5c5,4.3,16.9,12.6,24.2,15.7c11.4,4.8,23.5,6.1,23.5,6.1l6-16.3C432.4,370,426.5,364.4,418.9,357.8z"/>
<path class="st11" d="M391.3,303.8c-3.3-8.8-8.7-17.9-13.5-21.7c-4.8-3.8-12.2-4.6-12.2-4.6s3.5,26.7,3.5,35.1s-1.7,33.3-1.7,33.3 s8.3-1.6,17.4-3.5c9.1-1.9,12.6-7.4,12.6-7.4S396.3,316.9,391.3,303.8z"/>
</g>
<g>
<path class="st6" d="M394.5,263.5c-5.1-0.4-16.4,11-21.4,25.6c-4.5,13-11.2,22.4-11.2,22.4s-16.6,11.2-22,16 c-7.6,6.7-13.3,12.4-13.3,12.4l6.2,16.2c0,0,11.5-4,22.9-8.9c7.3-3.2,20.1-10.9,24.1-14.2c4-3.3,11.8-15.4,14.2-20.2 c2.4-4.8,8.4-9.7,10.4-23.3C406.5,276.1,399.7,263.9,394.5,263.5z"/>
<path class="st6" d="M334,348.1c-0.5-7.2-5-9.6-8.7-10.9c-3.7-1.3-11.6-3-13.2-3.4c-2.8-0.7-12.9-6.8-14.2-1.8 c-1.3,5.1,9.8,8,8.8,9.2c-1,1.1-10,0.2-13.2-1.5c-3.3-1.6-4.2,1.3-3.9,3.6c0.3,2.3,2.6,4.2,4.9,5.2c2.3,1,8.1-0.2,7.8,0.5 c-0.2,0.7-1.6,1.1-5.2,1.4c-3.6,0.3-4.9-2-6.7-0.9c-1.8,1.2-2.1,6.2,1.5,7.1c1.5,0.4,3.3,0.7,5.6,0.7c2.3,0,6.9-0.4,6.9-0.4 s-3.7,1.5-6.8,2.3c-3.1,0.8-7.2-1.9-7.9,0.7c-0.7,2.6,0.7,5.6,2.9,6.2c2.3,0.7,5.6,0.3,7.5,0c2-0.3,7.2-3.1,7.5-2.5 c0.5,1-8.1,4.1-10,5.8c-1.9,1.7-0.4,4.3,2.2,4.4c3.1,0.1,7-0.9,12.5-3.3c5.4-2.3,10.8-6.3,14.4-8.6 C333.2,357.9,334.4,355.3,334,348.1z"/>
</g>
<path class="st11" d="M607.3,408.7c0-14.6-6.3-31.9-6.3-31.9s-100.8-7.4-103.7,3.5c-1,3.8-2.6,20.3-3.4,37 c-0.8,16.7,3.2,53.1,3.2,53.1s13.2,2.1,28.5,3.3c15.3,1.2,26.6-4.4,31.1-4c2.8,0.3,11.9,1.7,23.5,1.4c6.9-0.2,26-4,26-4 s-0.4-11.5-0.6-25.2C605.1,427.1,607.3,423.3,607.3,408.7z"/>
<g class="st17">
<path class="st16" d="M536.5,410.8c-8.9-0.8-19.7-1.9-19.7-1.9l-3.5,25.4c0,0,10,12.6,17.3,14.1c7.3,1.5,19.5-11.1,19.5-11.1 l2.6-26.3C552.8,411,543.8,411.4,536.5,410.8z"/>
<path class="st16" d="M604.2,404.3l-2.2,26.3c0,0-8.9,13.4-14.6,13.8c-4.5,0.3-15.7-9.2-15.7-9.2l2.4-23.1c0,0,9-2.2,15-3.5 C595.1,407.4,604.2,404.3,604.2,404.3z"/>
</g>
<path class="st18" d="M565.9,423.9c0,0-1.3,15.7-4.8,21.3c-3.5,5.7-4.6,23.2-4.6,23.2"/>
<path class="st18" d="M535.4,458.7c0,0,9.1,0.4,13.1-0.9c3.9-1.3,8.7-4.8,10.9-4.8c2.2,0,10.4,6.5,23.5,4.8"/>
<g>
<path class="st19" d="M660.2,171.3c-1-16-8.8-33.7-8.8-33.7s0.7-6.3,0.6-10.1c-0.1-6.4-5.3-17.7-6.9-20.1c-1.5-2.4-6.2-6.3-8-6 c-1.8,0.3-2,1.5-2,1.5s-3.8-2.7-6.2-1.5c-2.2,1-3.1,3.8-3.1,3.8s-2.5-1.7-4.4-0.7c-2.5,1.4-2.8,5.1-2.8,5.1s-2.1-0.3-3.6,0.6 c-1.5,0.9-3,3.8-2.7,5.3c0.3,1.5,1.1,3.3,1.1,3.3s-0.9,3.8-0.2,6c0.7,2.2,0,4.5,0.7,6.2c2.2,6,7.3,7.3,9.7,10.4 c2.4,3.1,9.7,4.2,9.7,4.2s-0.5,15.1-1.3,22.1c-1.3,10.6-2.9,26.6-2.9,26.6s-6.5,7.2-10.1,12.2c-3.6,5-7.4,11.3-12.5,15.4 c-9.8,8-24.5,8.7-20.1,28.8c2.3,10.4,12.7,21.2,23.2,21c10.5-0.2,26.5-21.2,31.4-28.3c4.9-7.1,13.3-26.1,15.5-32.7 C658.8,204.1,661,185.3,660.2,171.3z"/>
<g>
<path class="st20" d="M619.2,109.6c0,0,5.5,1.1,6.9,6.2"/>
<path class="st20" d="M625.9,104.7c0,0,6.6,3.1,6.9,7.1"/>
<path class="st20" d="M635.6,102.7c0,0,5.5,3.5,6.2,7.7"/>
<path class="st20" d="M624.5,126.6c0,0-1.5-1.5-4.2-3.3"/>
<path class="st20" d="M621.4,126.6c-0.2-1.8-0.7-2.9-1.3-4.2c-0.7-1.3-1.4-3.1-2.2-4c-0.9-0.9-2-0.9-2.9-0.4 c-0.9,0.4-1.5,1.8-1.5,1.8"/>
</g>
</g>
<path class="st12" d="M564.2,238.8c2-5.3,13.2-7,18.9-8.1c5.7-1.2,8.6-3.7,12.3-5.2c2.6-1.1,7.3-7.9,13.3-7.2 c6,0.7,14.6,10,15.9,22.6c1.3,12.6,2,22.6,0,29.9c-2,7.3-6,13.3-15.3,13.3c-9.8,0-27.7,7.7-27.7,7.7S562.2,244.1,564.2,238.8z"/>
<path class="st19" d="M566.3,213.5c0,0,6.1-0.9,7.6-2.8c2.9-3.7,4.1-11.3,1.9-15.5c-2.4-4.7-9.8-0.4-9.8-0.4s-39.2-25.8-44.7-23.4 c-5.6,2.5-6,10.1-5.9,13.5c0.1,3.3,1.6,8.3,1.6,8.3s-3.1-0.8-4.3,1.2c-1.2,2-0.3,6.1,0.2,8c0.8,2.9,1.8,8.1,3.7,9.2 c1.9,1.1,3.2,0.4,3.2,0.4s2.3,10.9,3.8,14.5c1.4,3.6,5.7,2.8,5.7,2.8l0.5,17.6l36.8-1.1c0.1-1.8-5.3-23.4-5.3-23.4L566.3,213.5z"/>
<path class="st16" d="M570.9,167.2c0,0,1.5-5.5-2.1-11.2c-3.7-5.6-18.4-6.9-18.4-6.9l-15.9-2.2c0,0-3.6-2.8-8.3-1.9 c-4.7,1-3,6.2-3,6.2s-4.7-0.3-6.1,2.2c-0.9,1.6-0.7,4.9,0.2,7.7c-2,0.9-3.6,3.2-3.7,5.8c-0.1,2.8,0.8,6.4,2.7,8.4 c0,0-1.6,7.5-1.3,11c0.7,7.4,6.4,16.8,9,22.6c2.5,5.8,3.8,5.9,6.9,8.8c3.1,2.9,4.2,4.8,5.3,9.8c1.1,5,11,3,17.3,2.1 c6.3-0.9,8.6-1.6,9.2-2.9c0.6-1.3,1.5-8.4,3.9-11.3c2.4-2.9,5-8,7.3-15.8c2.3-7.8,2.1-13.8,2.3-20.6 C576.5,172.3,570.9,167.2,570.9,167.2z"/>
<g>
<path class="st16" d="M561.1,177.9c0,0,1.7,7-0.4,16.1c-2.2,9.1-3.5,19.6-3.5,19.6"/>
<path class="st16" d="M565.9,172.7c0,0,7,6.1,3.9,17.4c-3,11.3-7,20.5-7,20.5"/>
<path class="st16" d="M527.2,172.3c0,0,7.4,2.2,15.2,0c7.8-2.2,14.4-0.9,14.4-0.9"/>
<path class="st16" d="M525,156.2c0,0,14.4,5.2,22.2,4.4c7.8-0.9,13.5,8.7,13.5,8.7"/>
<path class="st16" d="M531.1,148.3c0,0,5.7,3,14.4,3.9c8.7,0.9,17.9,2.2,20,7.8c2.2,5.7,0.4,8.3,0.4,8.3"/>
</g>
<g>
<path class="st19" d="M376.3,278.6c1.3,1.3,4.5-1.4,8.3-1c3.1,0.3,6.7,6.6,10.7,8.3c4,1.7,9.2,3.3,9.2,3.3s11.3,21.3,16.5,27.9 c7.3,9.1,17.9,17.2,24.5,17.6c6.6,0.3,23-6.7,34-14.3c11.1-7.5,23.4-20.4,23.4-20.4l-12.4-31.9c0,0-10.6,7.1-19,13.7 c-8.1,6.4-19.9,19.5-19.9,19.5s-9.9-8-15.5-12.6c-5.6-4.7-16.4-9.5-16.4-9.5s-1.5-8.4-1.8-10.8c-0.2-2.4-1.8-6.4-3.8-9.3 c-2-2.9-6.2-3.8-8.6-2c-1.4,1,1.2,2.3,2.1,4.2c0.6,1.3,0.7,2.7,0.7,2.7s-4.1-5.5-7.8-6.5c-2.4-0.7-5.2-1.5-7.2,0.2 c-1.1,0.9-1.2,2.5-1.2,2.5s-4,0.6-4.9,2.1c-0.8,1.5-0.8,2.7-0.8,2.7s-2.8,0.1-3.9,1.6c-1.1,1.5-1.8,4.7-1.8,4.7s-2.7,0.6-4,2.1 C374.8,275.6,375,277.4,376.3,278.6z"/>
<g>
<path class="st20" d="M381.6,271.1c0,0,6.2-2.7,11.6,3.3"/>
<path class="st20" d="M386.9,264.8c0,0,5.4-0.6,7.9,2.5"/>
<path class="st20" d="M392.6,260c0,0,4-0.4,6.6,2.7"/>
</g>
</g>
<path class="st12" d="M524.7,240.1c0,0-27.2,2.7-35.1,14.6c-7.9,11.9-0.2,39.6,2.5,48.1c2.7,8.5,2.5,39.9,2.3,54.7 c-0.1,11.3-6.7,40.5-4,45.2c2.7,4.8,41.4,14.1,53.2,14.6c27.5,1,60.7-9.1,65-14.7c4.3-5.6-7.8-50.8-7.6-61.5 c0.2-10.8,0.2-63.9-1.8-80.1c-1.9-16.2-7.2-28.1-33.2-23.5C551.7,240,524.7,240.1,524.7,240.1z"/>
<path class="st12" d="M499.7,249.2c0,0-6.3,1.4-9.8,4.2c-5.6,4.4-11.3,11.4-14.6,16.3c-6.1,9-14.5,14.3-14.5,14.3 s1.6,11.1,7.6,22.4c5.9,11.4,14.4,17,14.4,17s16.1-5.8,22.3-16.1c6.7-11.2,9.1-25.1,9.1-25.1L499.7,249.2z"/>
<g>
<path class="st21" d="M577.7,240.2c0,0,12.6,7.4,16.5,19.2c3.9,11.8,4.4,23.9,4.4,23.9"/>
<path class="st21" d="M591.6,230.2c0,0,13.9-3.5,20.5,7.8"/>
<path class="st21" d="M588.5,231.1c0,0,13.1-0.4,19.6,14.8"/>
<path class="st21" d="M519.3,269.4c0,0,1.3,14.4-3,23.5c-4.4,9.1-20.5,23.5-20.5,23.5"/>
<path class="st21" d="M571.6,296.8c0,0-12.2,20.5-15.7,38.7c-3.5,18.3-12.6,50.9-12.6,50.9"/>
</g>
<path class="st7" d="M380.9,273.8c-2.6-5.2-9.1-10.4-10.1-13.7c-1-3.3,1.3-9.5,0-17.6c-1.3-8.2-5.2-13.7-5.9-16.3 c-0.7-2.6-2-14-3.9-18.6c-2-4.6-4.6-9.8-7.2-13.4c-2.6-3.6-6.9-6.9-16.3-9.5c-9.5-2.6-18.6,3.9-18.6,3.9s-8.8-2-14.7,3.9 c-5.9,5.9-8.4,11.5-9.1,16.4c-0.7,4.8-1,8.8-2.3,12.4c-1.3,3.6-2.5,8.4-5.5,13.6c-5.4,9.4-0.9,21.1-0.1,26.9 c0.9,5.7-6.2,10.8-9.5,16c-3.3,5.2-1.7,15.3,3.1,19.4c4.8,4.1,10.6,1.5,12.6,4.7c2,3.3,6.2,15.3,17.6,17.3c11.4,2,16-6.2,20.6-5.6 c4.6,0.7,8.5,7.8,19.6,3.6c11.1-4.2,9.4-14.6,12.7-17.3c3.3-2.7,8.6-1.6,14.1-5.1C383.5,291.5,383.5,279.1,380.9,273.8z"/>
<g>
<path class="st8" d="M351.7,202.1c0,0,7.4,13.1,6.5,22.6c-0.9,9.6,1.7,16.1,3.9,22.6c2.2,6.5-1.3,16.5,3,21.3 c4.4,4.8,7.8,16.5,5.7,21.3"/>
<path class="st8" d="M366.5,246.5c0,0,1.7,7.4,0.9,13.1c-0.9,5.7,3.5,7.4,6.5,12.6c3,5.2,3.9,13.1,2.6,15.2"/>
<path class="st8" d="M295.1,235.6c0,0-4.8,7.8-2.2,14.4c2.6,6.5,4.4,19.2,0.4,23.1c-3.9,3.9-13.5,10.4-9.6,17.4"/>
<path class="st8" d="M299.5,272.2c0,0-6.1,10-2.6,16.1c3.5,6.1,4.8,7.8,4.8,13.9s4.4,10,4.4,10"/>
<path class="st8" d="M318.6,193c0,0-12.6,16.5-6.5,29.2c6.1,12.6,3.9,19.2,2.2,27c-1.7,7.8-3.5,15.7-0.4,23.5 c3,7.8,3.5,12.6,1.7,21.3c-1.7,8.7,1.3,14.4,4.8,17.8"/>
<path class="st8" d="M316.5,207.3c0,0-2.6,9.1,3,21.3c5.7,12.2,4.8,23.1,3,28.3c-1.7,5.2-0.9,10,3,16.1c3.9,6.1,4.4,12.6,1.7,20 c-2.6,7.4-0.9,11.3,2.6,14.4"/>
</g>
<path class="st8" d="M350.4,192.5c0,0,13.9,11.3,16.5,21.8c2.6,10.4-4.4,14.4-0.4,22.2c3.9,7.8,8.3,12.2,7.4,20.9 c-0.9,8.7,1.3,9.6,5.2,16.5c3.9,7,7.4,9.1,5.2,17.8"/>
<path class="st8" d="M306,196.9c0,0-15.2,7.8-15.2,19.2c0,11.3,3.5,12.6,1.3,22.6c-2.2,10-8.3,13.1-10,20.5 c-1.7,7.4,2.2,18.7-0.4,22.6c-2.6,3.9-8.7,14.4-0.4,20.9"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

BIN
assets/img/streaming.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View file

@ -0,0 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.1;fill:#2A94F4;}
.st1{fill:#CCE9FF;}
.st2{fill:#0B4870;}
.st3{fill:#FFBE55;}
.st4{fill:#FCD2B1;}
.st5{fill:#FFE3CA;}
.st6{fill:#0E538C;}
.st7{fill:#3E3F3F;}
.st8{fill:#494949;}
.st9{fill:#2A2B2B;}
.st10{opacity:0.09;}
</style>
<g id="Background">
<ellipse class="st0" cx="958.72" cy="912.27" rx="957.72" ry="97.2"/>
<path class="st0" d="M1683.55,865.25H660.94L785.82,187.3c12.47-67.71,71.51-116.87,140.37-116.87h0 c80.21,0,149.66,55.72,167.05,134.02l7.18,32.32c5.7,25.67,28.47,43.94,54.77,43.94h0c27.29,0,50.63-19.64,55.28-46.54v0 c16.37-94.63,98.48-163.75,194.51-163.75h0c153.85,0,278.58,124.72,278.58,278.58V865.25z"/>
</g>
<g id="Objects">
<path class="st1" d="M1789.61,914.03H554.87c-38.72,0-60.13-59.15-35.76-98.78l51.29-83.41c8.74-14.21,21.88-22.46,35.76-22.46 h1117.73c11.91,0,23.35,6.08,31.93,16.96l65.72,83.41C1851.36,847.6,1831.02,914.03,1789.61,914.03z"/>
<path class="st2" d="M878.9,292.07c0,0-49.65,9.41-68.7,54.89s2.94,64.34-13.04,78.47s-43.64,58.39-12.91,101.41 c30.73,43.02-3.09,51.25-13.87,89.73c-3.96,14.14-22.56,66.38,51.89,77.44s278.01,40.02,252.06-130.29 c-8.88-58.26-55.62-55.01-50.7-88.19s3.07-98.95-11.06-129.06C998.44,316.34,936.67,277.32,878.9,292.07z"/>
<path class="st3" d="M1031.93,587.99c0,0,30.56-16.11,40.7-34.24c0,0,19.22,39.78,45.95,54.53 c26.73,14.75,75.76,31.78,104.48,14.44c0,0,69.76-20.08,83.58,44.97s-25.81,119.74-25.81,119.74h-271.03 C1009.81,787.42,1046.68,626.71,1031.93,587.99z"/>
<path class="st3" d="M779.66,612.47c3.36-29.43,29.06-50.98,58.67-49.94c6.86,0.24,14.31-0.07,22.14-1.28 c35.95-5.53,82.99,212.95,82.99,212.95s-62.28-17.12-62.75-16.33c-16.62,27.66-97.23-11.33-97.23-11.33 S772.72,673.29,779.66,612.47z"/>
<path class="st3" d="M936.06,587.99c3.5,2.19,50.69,18.6,95.88,0c15.67-6.45,40.56,225.31-64.53,224.2l-59-270.3 C908.4,541.9,921.31,578.77,936.06,587.99z"/>
<path class="st4" d="M853.09,384.25c-14.75,4.3-27.66,12.91-27.04,36.26c0.61,23.35-3.77,53.53-3.77,53.53l21.6,53.4l17.82,11.68 l-7.99,74.36c0,0,26.43,38.72,67.6,14.75c0,0-13.52-86.04-9.22-90.34c4.3-4.3,35.96-26.7,45.48-37.49 c9.52-10.79,19.67-23.97,13.52-61.46c-6.15-37.49-44.53-47.07-51.63-70.68C912.7,345.77,904.63,369.22,853.09,384.25z"/>
<path class="st5" d="M1570.67,409.01l18.08-28.44c0,0,0.61-30.11,5.53-36.88s21.51-7.99,33.19,6.76 c11.68,14.75,31.96,7.03,69.45,23.49l1.77,0.97c6.27,3.41,5.61,12.61-1.08,15.1l0,0c-15.25,5.66-31.83,6.31-47.58,2.27 c-9.27-2.37-19.14-3.69-24.41-0.65l-22.74,35.03L1570.67,409.01z"/>
<path class="st5" d="M1501.85,424.39l-6.13-36.03c0,0-21.4-24.69-22.35-33.7s11.51-22.07,31.63-18.68 c20.12,3.38,30.83-17.58,72.97-31.58l2.13-0.51c7.52-1.81,13.68,6.07,10.1,12.94l0,0c-8.16,15.64-21.03,28.21-36.65,36.42 c-9.18,4.83-18.09,10.94-20.12,17.22l7.16,44.73L1501.85,424.39z"/>
<path class="st2" d="M1479.96,637.81c0,0-7.38-61.81,94.65-240.04l32.54,22.32l-54.49,289.29l-209.98-115.44L1479.96,637.81z"/>
<path class="st6" d="M1280.84,787.42h281.48H1594c51.01,0,85.61-51.89,66-98.98l-121.04-290.67h-44.25 c0,0,44.05,214.37,72.52,285.17c0,0-119.23-35.65-152.42-57.77c-33.19-22.13-79.9-40.56-122.92-32.57 c-43.02,7.99-68.83,30.11-68.83,30.11s33.7,13.31,46.71,45.48C1293.13,725.96,1280.84,787.42,1280.84,787.42z"/>
<path class="st5" d="M891.81,538.21c0,0-2.77,144.14,0,171.17c2.77,27.03,32.27,98.94,65.45,102.63s50.7-47.94,30.42-83.89 c-20.28-35.95-68.22-146.58-67.3-178.84c0,0,43.33-28.58,46.09-54.39s6.15-27.04-2.15-27.04s-18.03,23.8-23.58,27.49 c-5.55,3.69-14.83,18.91-30.5,19.83C894.57,516.08,891.81,538.21,891.81,538.21z"/>
<path class="st5" d="M886.32,538.21c0,0,2.77,144.14,0,171.17c-2.77,27.03-32.27,98.94-65.45,102.63 c-33.19,3.69-50.7-47.94-30.42-83.89c20.28-35.95,68.22-146.58,67.3-178.84c0,0-43.33-28.58-46.09-54.39s-6.15-27.04,2.15-27.04 s18.03,23.8,23.58,27.49c5.55,3.69,14.83,18.91,30.5,19.83C883.55,516.08,886.32,538.21,886.32,538.21z"/>
<path class="st1" d="M1789.61,914.03H554.87c-38.72,0-60.13-56.13-35.76-93.74l1302.42-5.22 C1851.36,850.99,1831.02,914.03,1789.61,914.03z"/>
<g>
<g>
<rect x="121.03" y="154.11" class="st7" width="548.63" height="343.42"/>
<rect x="215.94" y="242.06" class="st8" width="358.79" height="167.52"/>
<rect x="339.54" y="495.93" class="st9" width="111.6" height="65.09"/>
<rect x="184.31" y="540.57" class="st9" width="422.07" height="20.45"/>
</g>
<g>
<g>
<polygon class="st3" points="91.6,914.03 57.43,914.03 103.62,612.34 137.8,612.34 "/>
<polygon class="st3" points="699.08,914.03 733.25,914.03 687.05,612.34 652.88,612.34 "/>
<rect x="57.43" y="561.15" class="st3" width="675.82" height="55.35"/>
<rect x="97.61" y="728.51" class="st3" width="595.45" height="36.05"/>
<rect x="57.43" y="561.15" class="st10" width="675.82" height="55.35"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

71
caching.html Normal file
View file

@ -0,0 +1,71 @@
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Plex Wrapped</title>
<!-- Bootstrap 4 CSS and custom CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/wrapped.css" />
<link rel="shortcut icon" href="assets/img/favicons/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="./caching.js"></script>
</head>
<body>
<div class="content" id="login_content" style="">
<div class="boks">
<div class="boks3" id="search_input" style="padding: 0 !important;">
<div class="boks2" style="float: none !important; display: block; padding: 0; margin-top: 0em;">
<img src="assets/img/gift.svg" onclick="window.location.href = './';" style="width: 15em; cursor: pointer;">
</div>
<div class="boks2" style="float: none !important; display: block; margin-top: 0em; padding-top: 0;">
<div class="stats_tekst" style="height: auto;">
<p>
If you want to decrease loadtime for your users you can pre-cache their results.
<br><br>Remember to configure the system first.
</p>
</div>
<br>
<div class="status" id="stats" style="">
<h1>Wrapped Caching</h1>
<div class="search" id="cache">
</div>
</div>
</div>
</div>
</div>
<div class="content" id="search_results">
</div>
<script type="text/javascript">
$(document).ready(function() {
get_config_cache();
});
</script>
</body>
</html>

191
caching.js Normal file
View file

@ -0,0 +1,191 @@
var cached = 0;
var input_array;
function search_box() {
var html = `
<form id='stats_form' class='form' onsubmit='return false' action="" method="post">
<div class='form-group'>
<label for="p_identity_multiple" title="">Plex email or usernames</label>
<textarea type="text" class='form-control' rows=6 name="p_identity_multiple" id="p_identity_multiple" autocomplete="off" required></textarea>
</div>
<div class='form-group'>
<label for="timeout" title="">Timeout between each call</label>
<input type="number" class='form-control' name="timeout" id="timeout" value='10' autocomplete="off" required />
</div>
<div class='form-group'>
<input type="submit" class='form-control btn' value="Cache" name="cache_button" id="cache_button" required/>
</div>
</form>
`;
document.getElementById('cache').innerHTML = html;
}
$(document).on('submit', '#stats_form', function(){
cache();
});
function cache() {
var timeout_input = document.getElementById('timeout').value * 1000;
var input = document.getElementById('p_identity_multiple').value;
input_array = input.split(',');
var html = `
<form id='stats_form' class='form' onsubmit='return false' action="" method="post">
<div class='form-group'>
<img id="loading_icon" src="assets/loading.gif" style="padding: 1em;width: 2em; height: 2em; display:inline-block;">
</div>
<h3>Caching results</h3>
<div id="cache_results">
</div>
</form>
`;
document.getElementById('cache').innerHTML = html;
call_stats(0, timeout_input);
}
function call_stats(i, timeout_input) {
get_stats(input_array[i].trim());
if(i < input_array.length-1) {
setTimeout(function(){
i += 1;
call_stats(i, timeout_input);
}, timeout_input);
}
}
function cache_log(p_identity, result) {
if(result) {
document.getElementById('cache_results').innerHTML += '<p style="color:darkseagreen;">' + p_identity + '</p>';
} else {
document.getElementById('cache_results').innerHTML += '<p style="color:indianred;"> ' + p_identity + '</p>';
}
cached += 1;
if(cached == input_array.length) {
document.getElementById('loading_icon').style.display = "none";
}
}
function get_stats(p_identity) {
stats_form = {
"p_identity" : p_identity
};
var stats_data = JSON.stringify(stats_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.error) {
cache_log(p_identity, false);
} else {
cache_log(p_identity, true);
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_stats.php", );
xhttp.send(stats_data);
return;
}
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
function get_config_cache() {
config_form = {
"password" : ""
};
var config_data = JSON.stringify(config_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.password) {
login_menu();
} else {
alert(result.message);
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_config.php");
xhttp.send(config_data);
}
function get_config() {
current_password = document.getElementById('password').value;
config_form = {
"password" : current_password
};
var config_data = JSON.stringify(config_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.error) {
alert(result.message);
} else {
if(!result.data.use_cache) {
alert("You have disabled cache in the configuration!");
}
search_box();
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_config.php");
xhttp.send(config_data);
}
function login_menu() {
topFunction();
var html = '<form id="password_login_form" onsubmit="get_config();return false">'
html += '<div class="form-group">';
html += '<label for="password" title="The password chosen during first-time setup.">Password</label>';
html += '<input type="password" class="form-control" id="password" value="" autocomplete="off" required />';
html += '</div>';
html += '<div class="form-group">';
html += '<input type="submit" class="form-control btn" id="password_button" value="Log in" required />';
html += '</div>';
html += '</form>';
document.getElementById("cache").innerHTML = html;
}

2
config/.htaccess Normal file
View file

@ -0,0 +1,2 @@
order deny,allow
deny from all

78
get_config.js Normal file
View file

@ -0,0 +1,78 @@
function get_config_initial() {
config_form = {
"password" : ""
};
var config_data = JSON.stringify(config_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.password) {
login_menu();
} else {
first_time = true;
set_password();
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_config.php");
xhttp.send(config_data);
}
function get_config() {
current_password = document.getElementById('password').value;
config_form = {
"password" : current_password
};
var config_data = JSON.stringify(config_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.error) {
alert(result.message);
} else {
tautulli_apikey = result.data.tautulli_apikey;
tautulli_ip = result.data.tautulli_ip;
tautulli_port = result.data.tautulli_port;
tautulli_length = result.data.tautulli_length;
tautulli_root = result.data.tautulli_root;
ssl = result.data.ssl;
password = "";
library_id_movies = result.data.library_id_movies;
library_id_shows = result.data.library_id_shows;
wrapped_start = new Date(0);
wrapped_start.setUTCSeconds(result.data.wrapped_start);
wrapped_end = new Date(0);
wrapped_end.setUTCSeconds(result.data.wrapped_end);
get_user_movie_stats = result.data.get_user_movie_stats;
get_user_show_stats = result.data.get_user_show_stats;
get_user_show_buddy = result.data.get_user_show_buddy;
get_year_stats = result.data.get_year_stats;
use_cache = result.data.use_cache;
cache_age_limit = result.data.cache_age_limit;
set_tautulli(true);
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_config.php");
xhttp.send(config_data);
}

22
get_functions.js Normal file
View file

@ -0,0 +1,22 @@
function get_functions() {
config_form = {};
var config_data = JSON.stringify(config_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.error) {
document.getElementById('results_error').innerHTML = '<p style="color:inherit; text-shadow: none;">' + result.message + '</p>';
} else {
functions = result;
get_stats();
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_functions.php");
xhttp.send(config_data);
}

View file

@ -1,12 +1,14 @@
function get_stats() {
var results;
var functions;
var loading_icon = document.getElementById("loading_icon");
var p_email = document.getElementById("p_email").value;
var p_identity = document.getElementById("p_identity").value;
var p_email = p_email.replace(/[&\/\\#,+()$~%:*?<>{}]/g, '');
//var p_identity = p_identity.replace(/[&\/\\#,+()$~%:*?<>{}]/g, '');
stats_form = {
"p_email" : p_email
"p_identity" : p_identity
};
var stats_data = JSON.stringify(stats_form);
@ -14,19 +16,28 @@ var stats_data = JSON.stringify(stats_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.error) {
loading_icon.style.display = "none";
search_button("SEARCH");
document.getElementById('results_error').innerHTML = '<p style="color:inherit; text-shadow: none;">' + result.message + '</p>';
} else {
load_page(this.responseText);
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/get_stats.php");
xhttp.send(stats_data);
loading_icon.style.display = "inline";
}
function load_page(data){
results = JSON.parse(data);
if(results.error == "true") {
if(results.error) {
$('#results_error').html(results.message);
loading_icon.style.display = "none";
search_button("SEARCH");
@ -34,27 +45,73 @@ function load_page(data){
}
var search_box = document.getElementById("search_input");
var login_content = document.getElementById("login_content");
search_box.style.display = "none";
login_content.style.display = "none";
var text = "";
load_introduction();
if(!results.user.user_movies.error && functions.get_user_movie_stats) {
load_movies();
}
if(!results.user.user_shows.error && functions.get_user_show_stats) {
load_shows();
}
if(!results.year_stats.error && functions.get_year_stats) {
load_users();
}
load_outro();
}
//INTRODUCTION
text += "<div class='boks' style='width: 100%; padding-bottom: 25em; padding-top: 25em; height:auto; background-color:#add8e6;'>";
text += "<h2 style='font-size:3em;'>Hey there, " + results.user.name + "!</h2><h2>";
text += "<br><br>2020 kinda sucked, but hopefully you watched some cool stuff...</p>"
function load_introduction() {
var text = "";
text += "<div class='boks' style='width: 100%; padding-bottom: 15em; padding-top: 15em; height:auto; background-color:#D2A3A4;'>";
text += "<div class='boks3'>";
text += "<div class='boks2'>";
text += '<img src="assets/img/finished-illustration.svg" style="width:100%; ">';
text += "</div>";
text += "<div class='boks2'>";
text += "<br>";
text += "<h1 style='font-size:3em; display: block;'>Hey there, " + results.user.name + "!</h1>";
text += "<br><br><br><br>";
text += "<h2>New year, new page of statistics...</h2>";
text += "</div>";
text += "</div>";
text += "</div>";
document.getElementById("search_results").innerHTML += text;
}
//MOVIES
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#f7efd2;'>";
text += "<h2>Let's look at some movies.";
text += "<br><br><br>You watched " + results.user.user_movies.data.movies.length + " movies. That's a lot of movies!</h2><br>(or not, I am pre-programmed to say that)"
function load_movies() {
var text = "";
if(results.user.user_movies.data.movies.length > 1) {
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#B9A3D2;'>";
text += "<div class='boks3'>";
text += "<h1>Let's look at some movies.</h1>";
text += "<br><br><br>";
text += "<h2>You watched " + results.user.user_movies.data.movies.length + " movies. That's a lot of movies!</h2><p>(or not, I am pre-programmed to say that)</p>"
text += "<br><br>";
text += "</div>";
text += "<div class='boks3'>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3'>";
text += "<div class='stats'>";
text += "<h4>Your top 10 movies in 2020</h4>";
text += "<div class='status-title'>Your top movies</div>";
text += "<div class='stats-list'>";
for(i = 0; (i < results.user.user_movies.data.movies.length && i < 10); i++) {
text += "<div class='item'>";
text += "<div class='number'>";
@ -71,34 +128,59 @@ function load_page(data){
text += "</div>";
text += "</div>";
text += "</div>";
text += "</div>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
var str = JSON.stringify(results.user.user_movies.data.user_movie_finishing_percent);
var percent = str.split('.');
text += "<h4>Your average movie finishing percentage in 2020 was " + percent[0] + "%</h4>";
text += "<br>You're not watching the credits like a nerd, are you?";
text += "<b>Your average movie finishing percentage was " + percent[0] + "%</b>";
if(percent[0] > 89) {
text += '<br><br><img src="assets/img/champion.svg" style="margin: auto; display: block; width: 15em;">';
}
text += "<br><br>You're not watching the credits like a nerd, are you?";
text += "</div>";
text += "</div>";
text += "</div>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
text += "Your longest movie pause was watching <br><br><h4>" + results.user.user_movies.data.user_movie_most_paused.title + " (" + results.user.user_movies.data.user_movie_most_paused.year + ")</h4>";
var str = JSON.stringify(results.user.user_movies.data.user_movie_most_paused.paused_counter / 60);
var minutes = str.split('.');
text += "<br>It was paused for " + minutes[0] + " minutes...";
if(minutes[0] > 0) {
text += "<div class='stats'>";
text += "Your longest movie pause was watching <br><b>" + results.user.user_movies.data.user_movie_most_paused.title + " (" + results.user.user_movies.data.user_movie_most_paused.year + ")</b>";
text += "<br><br>It was paused for " + minutes[0] + " minutes...";
text += "</div>";
} else {
text += "<div class='stats'>";
text += "<b>Bladder of steel</b>";
text += '<br><br><img src="assets/img/awards.svg" style="margin: auto; display: block; width: 15em;">';
text += "<br>You never paused a single movie.";
text += "</div>";
}
text += "</div>";
text += "</div>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
text += "The oldest movie you watched was <br><br><h4>" + results.user.user_movies.data.user_movie_oldest.title + " (" + results.user.user_movies.data.user_movie_oldest.year + ")</h4>";
text += "The oldest movie you watched was <br><b>" + results.user.user_movies.data.user_movie_oldest.title + " (" + results.user.user_movies.data.user_movie_oldest.year + ")</b><br>";
if(results.user.user_movies.data.user_movie_oldest.year < 1950) {
text += "<br>I didn't even know they made movies back then.";
text += '<br><br><img src="assets/img/old-man.svg" style="margin: auto; display: block; width: 15em;">';
} else if(results.user.user_movies.data.user_movie_oldest.year < 1975) {
text += "<br>Did it even have color?";
text += '<br><br><img src="assets/img/old-man.svg" style="margin: auto; display: block; width: 15em;">';
} else if(results.user.user_movies.data.user_movie_oldest.year < 2000) {
text += "<br>Was it a 4K, UHD, 3D, Dolby Atmos remaster?";
} else {
text += "<br>Enjoying the classics, huh?";
}
text += "</div>";
text += "</div>";
text += "</div>";
@ -111,8 +193,9 @@ function load_page(data){
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
text += "You spent <br><h4>" + sum_split[0] + " hours and " + sum_split[1] + " minutes</h4>";
text += "You spent <b>" + sum_split[0] + " hours and " + sum_split[1] + " minutes</b>";
text += " watching movies";
text += '<br><img src="assets/img/watching-tv.svg" style="margin: auto; display: block; width: 15em;">';
text += "</div>";
text += "</div>";
text += "</div>";
@ -120,17 +203,114 @@ function load_page(data){
text += "</div>";
text += "</div>";
} else if(results.user.user_movies.data.movies.length == 1) {
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#B9A3D2;'>";
text += "<div class='boks3'>";
text += "<h1>Let's look at some movies.</h1>";
text += "<br><br><br>";
text += "<h2>You watched " + results.user.user_movies.data.movies.length + " movie. You know what you like!</h2><p>(at least you tried it out)</p>";
text += "<br><br>";
text += "</div>";
text += "<div class='boks3'>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3'>";
text += "<div class='stats'>";
text += "<div class='status-title'>Your movie</div>";
text += "<div class='stats-list'>";
for(i = 0; (i < results.user.user_movies.data.movies.length && i < 10); i++) {
text += "<div class='item'>";
text += "<div class='number'>";
text += i+1 + ". ";
text += "</div>";
text += "<div class='movie_name'><b>";
text += results.user.user_movies.data.movies[i].title;
var movie_hour = time_hours(results.user.user_movies.data.movies[i].duration)
text += "</b> (" + results.user.user_movies.data.movies[i].year + ")<br>" + movie_hour[0] + " hours, " + movie_hour[1] + " minutes<br>" + results.user.user_movies.data.movies[i].plays + " plays";
text += "</div>";
text += "</div>";
}
text += "</div>";
text += "</div>";
text += "</div>";
text += "</div>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
var str = JSON.stringify(results.user.user_movies.data.user_movie_finishing_percent);
var percent = str.split('.');
text += "<b>Your saw " + percent[0] + "%</b>";
if(percent[0] > 89) {
text += '<br><br><img src="assets/img/champion.svg" style="margin: auto; display: block; width: 15em;">';
}
text += "<br><br>You're not watching the credits like a nerd, are you?";
text += "</div>";
text += "</div>";
text += "</div>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
var str = JSON.stringify(results.user.user_movies.data.user_movie_most_paused.paused_counter / 60);
var minutes = str.split('.');
if(minutes[0] > 0) {
text += "<div class='stats'>";
text += "Your longest movie pause was watching <br><b>" + results.user.user_movies.data.user_movie_most_paused.title + " (" + results.user.user_movies.data.user_movie_most_paused.year + ")</b>";
text += "<br><br>It was paused for " + minutes[0] + " minutes...";
text += "</div>";
} else {
text += "<div class='stats'>";
text += "<b>Bladder of steel</b>";
text += '<br><br><img src="assets/img/awards.svg" style="margin: auto; display: block; width: 15em;">';
text += "<br>You never paused the movie.";
text += "</div>";
}
text += "</div>";
text += "</div>";
text += "</div>";
text += "</div>";
} else {
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#B9A3D2;'>";
text += "<div class='boks3'>";
text += "<div class='status'>";
text += "<h1>Let's look at some movies.</h1>";
text += "<br><br><br>";
text += "<h2>You watched " + results.user.user_movies.data.movies.length + " movies. That's impressive in itself!</h2><p>(might wanna try it out)</p>"
text += '<img src="assets/img/bored.svg" style="margin: auto; display: block; width: 15em;">';
text += "</div>";
text += "</div>";
text += "</div>";
}
document.getElementById("search_results").innerHTML += text;
}
//SHOWS
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#eed7a1;'>";
text += "<h2>Now, let's have a look at some shows!";
text += "<br><br><br>You watched " + results.user.user_shows.data.shows.length + " different shows.</h2><br>(No, watching The Office twice in a year doesn't count as two shows)"
function load_shows() {
var text = "";
if(results.user.user_shows.data.shows.length > 1) {
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#BBD2A3;'>";
text += "<h1>Now, let's have a look at some shows!</h1>";
text += "<br><br><br><h2>You watched " + results.user.user_shows.data.shows.length + " different shows.</h2><p>(No, watching The Office twice in a year doesn't count as two shows)</p>"
text += "<br><br>";
text += "<div class='boks3'>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style=''>";
text += "<div class='stats'>";
text += "<h4>Your top 10 shows in 2020</h4>";
text += "<div class='status-title'>Your top shows</div>";
text += "<div class='stats-list'>";
for(i = 0; (i < results.user.user_shows.data.shows.length && i < 10); i++) {
text += "<div class='item'>";
text += "<div class='number'>";
@ -147,24 +327,11 @@ function load_page(data){
text += "</div>";
text += "</div>";
text += "</div>";
text += "</div>";
if(results.user.user_shows.data.shows.length > 0) {
if(results.user.user_shows.data.shows.length > 0 && !results.year_stats.error && functions.get_user_show_buddy) {
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
text += "<h4>Your top show was " + results.user.user_shows.data.shows[0].title + "</h4><br>";
var buddy_error = JSON.stringify(results.user.user_shows.data.show_buddy.error);
if(buddy_error == "true") {
text += "<br>That means you're a hipster, because you're the only viewer of that show in 2020 😎";
} else {
text += "And you're not alone! Your " + results.user.user_shows.data.shows[0].title + "-buddy is ";
text += "<b>" + results.user.user_shows.data.show_buddy.user.user + "!</b><br><br>";
var combined = results.user.user_shows.data.show_buddy.user.duration + parseInt(results.user.user_shows.data.shows[0].duration);
var combined_2 = time_hours(combined);
text += "Your combined efforts resulted in <b>" + combined_2[0] + " hours and " + combined_2[1] + " minutes</b> of " + results.user.user_shows.data.shows[0].title + "!</b><br><br>😎";
}
text += "</div>";
text += "</div>";
text += load_showbuddy();
text += "</div>";
}
@ -176,8 +343,9 @@ function load_page(data){
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
text += "You spent <br><h4>" + sum_split[0] + " hours and " + sum_split[1] + " minutes</h4>";
text += "You spent <b>" + sum_split[0] + " hours and " + sum_split[1] + " minutes</b>";
text += " watching shows";
text += '<br><img src="assets/img/watching-tv.svg" style="margin: auto; display: block; width: 15em;">';
text += "</div>";
text += "</div>";
text += "</div>";
@ -185,11 +353,97 @@ function load_page(data){
text += "</div>";
text += "</div>";
} else if(results.user.user_shows.data.shows.length == 1) {
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#BBD2A3;'>";
text += "<h1>Now, let's have a look at some shows!</h1>";
text += "<br><br><br><h2>You watched " + results.user.user_shows.data.shows.length + " show.</h2><p>(Better not be that same one again...)</p>"
text += "<br><br>";
text += "<div class='boks3'>";
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style=''>";
text += "<div class='stats'>";
text += "<div class='status-title'>Your show</div>";
text += "<div class='stats-list'>";
for(i = 0; (i < results.user.user_shows.data.shows.length && i < 10); i++) {
text += "<div class='item'>";
text += "<div class='number'>";
text += i+1 + ". ";
text += "</div>";
text += "<div class='movie_name'><b>";
text += results.user.user_shows.data.shows[i].title;
var show_hour = time_hours(results.user.user_shows.data.shows[i].duration)
text += "</b><br>" + show_hour[0] + " hours, " + show_hour[1] + " minutes<br>" + results.user.user_shows.data.shows[i].plays + " plays";
text += "</div>";
text += "</div>";
}
text += "</div>";
text += "</div>";
text += "</div>";
text += "</div>";
if(results.user.user_shows.data.shows.length > 0) {
text += "<div class='boks2'>";
text += load_showbuddy();
text += "</div>";
}
text += "</div>";
text += "</div>";
} else {
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#B9A3D2;'>";
text += "<div class='boks3'>";
text += "<div class='status'>";
text += "<h1>Now, let's have a look at some shows!</h1>";
text += "<br><br><br>";
text += "<h2>You watched " + results.user.user_shows.data.shows.length + " shows. I get it, it's not for everyone!</h2><p>(might wanna try it out)</p>"
text += '<img src="assets/img/bored.svg" style="margin: auto; display: block; width: 15em;">';
text += "</div>";
text += "</div>";
text += "</div>";
}
document.getElementById("search_results").innerHTML += text;
}
function load_showbuddy() {
var html = "";
html += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
html += "<div class='stats'>";
html += "<b>Your show was " + results.user.user_shows.data.shows[0].title + "</b><br>";
if(!results.user.user_shows.data.show_buddy.error) {
if(!results.user.user_shows.data.show_buddy.user.found) {
html += '<br><img src="assets/img/quest.svg" style="margin: auto; display: block; width: 15em;">';
html += "<br>That means you dared to explore where no one else would, because you're the only viewer of that show";
} else {
html += "And you're not alone! Your " + results.user.user_shows.data.shows[0].title + "-buddy is ";
html += "<b>" + results.user.user_shows.data.show_buddy.user.user + "!</b><br><br>";
var combined = results.user.user_shows.data.show_buddy.user.duration + parseInt(results.user.user_shows.data.shows[0].duration);
var combined_2 = time_hours(combined);
html += '<img src="assets/img/social-event.svg" style="margin: auto; display: block; width: 15em;">';
html += "<br>Your combined efforts resulted in <b>" + combined_2[0] + " hours and " + combined_2[1] + " minutes</b> of " + results.user.user_shows.data.shows[0].title + "!</b>";
}
}
html += "</div>";
html += "</div>";
return html;
}
//TOP USERS
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color: #f7efd2;'>";
text += "<h2>Finally, let's look at the top users, movies and shows in 2020!";
text += "<br><br><br><br>It's okay to feel shame if you are on the list.</h2>(or missing from it...)"
function load_users() {
var text = "";
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color: #a2d1d0;'>";
text += "<h1>Finally, let's look at the top users, movies and shows!</h1>";
text += "<br><br><br><br><h2>It's okay to feel shame if you are on the list.</h2><p>(or missing from it...)</p>"
text += "<br><br>";
text += "<div class='boks3'>";
@ -197,21 +451,37 @@ function load_page(data){
text += "<div class='boks2'>";
text += "<div class='status' id='list3'>";
text += "<div class='stats'>";
text += "<h4>Top users from the past year</h4>";
text += "<div class='status-title'>Top users</div>";
text += "<div class='stats-list'>";
for(i = 0; i < 10 && i < results.year_stats.data.users.length; i++) {
if(i == 0) {
text += "<div class='item gold'>";
} else if(i == 1) {
text += "<div class='item silver'>";
} else if(i == 2) {
text += "<div class='item bronze'>";
} else {
text += "<div class='item'>";
}
text += "<div class='number'>";
text += i+1 + ". ";
text += "</div>";
if(results.year_stats.data.users[i].user == results.user.name) {
text += "<div class='name you'>";
text += results.year_stats.data.users[i].user;
text += "</div>";
}else {
text += "<div class='name'>";
text += results.year_stats.data.users[i].user;
text += "</div>";
}
text += "</div>";
}
text += "</div>";
text += "</div>";
text += "</div>";
text += "</div>";
var sum_movies = 0;
for(i = 0; (i < results.year_stats.data.top_movies.length); i++) {
@ -227,11 +497,12 @@ function load_page(data){
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style='padding:1em;min-width:15em;'>";
text += "<div class='stats'>";
text += "The users spent <br><h4>" + sum_movies_split[0] + " days and " + sum_movies_split[1] + " hours</h4>";
text += " watching movies";
text += "<br><br>And, the users spent <br><h4>" + sum_shows_split[0] + " days and " + sum_shows_split[1] + " hours</h4>";
text += " watching shows";
text += "<br><br>That is <h4>" + Number(sum_shows_split[0] + sum_movies_split[0]) + " days and " + Number(sum_shows_split[1] + sum_movies_split[1]) + " hours </h4> of content!";
text += "All the different users combined spent <b>" + sum_movies_split[0] + " days and " + sum_movies_split[1] + " hours</b>";
text += " watching movies.";
text += "<br><br>And, the users spent <b>" + sum_shows_split[0] + " days and " + sum_shows_split[1] + " hours</b>";
text += " watching shows.";
text += "<br><br>That is <b>" + Number(sum_shows_split[0] + sum_movies_split[0]) + " days and " + Number(sum_shows_split[1] + sum_movies_split[1]) + " hours </b><br>of content!";
text += '<img src="assets/img/home.svg" style="margin: auto; display: block; width: 15em;">';
text += "</div>";
text += "</div>";
text += "</div>";
@ -242,7 +513,8 @@ function load_page(data){
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style=''>";
text += "<div class='stats'>";
text += "<h4>Top movies from the past year</h4>";
text += "<div class='status-title'>Top movies</div>";
text += "<div class='stats-list'>";
for(i = 0; i < 10 && i < results.year_stats.data.top_movies.length; i++) {
text += "<div class='item'>";
text += "<div class='number'>";
@ -256,6 +528,7 @@ function load_page(data){
text += "</div>";
text += "</div>";
}
text += '</div>';
text += "</div>";
text += "</div>";
text += "</div>";
@ -263,7 +536,8 @@ function load_page(data){
text += "<div class='boks2'>";
text += "<div class='status' id='list3' style=''>";
text += "<div class='stats'>";
text += "<h4>Top shows from the past year</h4>";
text += "<div class='status-title'>Top shows</div>";
text += "<div class='stats-list'>";
for(i = 0; i < 10 && i < results.year_stats.data.top_shows.length; i++) {
text += "<div class='item'>";
text += "<div class='number'>";
@ -277,6 +551,7 @@ function load_page(data){
text += "</div>";
text += "</div>";
}
text += '</div>';
text += "</div>";
text += "</div>";
text += "</div>";
@ -284,12 +559,23 @@ function load_page(data){
text += "</div>";
text += "</div>";
//Goobye
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#cd8b62;'>";
text += "<h2>Hope you are staying safe!<br><br><br><br>Goodybye.</h2>";
text += "</div>";
$('#search_results').html(text);
document.getElementById("search_results").innerHTML += text;
}
//Outro
function load_outro() {
var text = "";
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 15em; padding-top: 15em; height:10em; background-color:#39393A;'>";
text += "<div class='boks3'>";
text += "<div class='boks2'>";
text += '<img src="assets/img/new-years.svg" style="width:100%; ">';
text += "</div>";
text += "<div class='boks2' style='margin-top:5em;'>";
text += "<h1>Hope you are staying safe!</h1><br><br><h4>Goodybye.</h4>";
text += "</div>";
text += "</div>";
text += "</div>";
document.getElementById("search_results").innerHTML += text;
}

View file

@ -12,27 +12,37 @@
<link rel="shortcut icon" href="assets/img/favicons/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="./index.js"></script>
<script src="./get_stats.js"></script>
<script src="./get_functions.js"></script>
</head>
<body>
<div class="content">
<div class="content" id="login_content" style="">
<div class="boks">
<div class="boks3" id="search_input" style="padding: 0 !important;">
<div class="boks2" style="float: none !important; display: inline-block;">
<div class="boks2" style="float: none !important; display: block; padding: 0; margin-top: 0em;">
<img src="assets/img/gift.svg" onclick="window.location.href = './';" style="width: 15em; cursor: pointer;">
</div>
<div class="boks2" style="float: none !important; display: block; margin-top: 0em; padding-top: 0;">
<div class="stats_tekst" style="height: auto;">
<h2>Your year on Plex</h2>
<p>
Did you get that thing from Spotify and wondered what your Plex statistics were?
Did you get that thing from Spotify and wondered what your Plex statistics looked like?
<br><br>Well, have a look...
</p>
</div>
<br>
<div class="status" id="stats" style="width:auto;">
<div class="status" id="stats" style="">
<h1>Plex Wrapped</h1>
<div class="search">
@ -40,13 +50,14 @@
<div class='form-group'>
<label for="p_email" title="The email for the Plex account you want to check"><h4>Plex Email</h4></label>
<input type="email" class='form_input' name="p_email" id="p_email" required/>
<label for="p_identity" title="The email or username for the Plex account you want to check">Plex email or username</label>
<input type="text" class='form-control' name="p_identity" id="p_identity" autocomplete="off" required/>
</div>
<button type='submit' style='border: none; background: none; cursor: pointer; padding: 0;'>
<div id='search_get'>SEARCH</div>
</button>
<div class='form-group'>
<input type="submit" class='form-control btn' value="Search" name="p_email" id="p_email" required/>
</div>
@ -60,7 +71,7 @@
</div>
<div id="results_error" style="padding:0.5em; bottom:0; color: #eb4034;"></div>
<div id="results_error" style="padding:0.5em; bottom:0; color: #ffbd55 !important;"></div>
</div>
@ -77,8 +88,7 @@
$(document).ready(function() {
$.getScript("index.js", function(){
});
});

View file

@ -69,7 +69,6 @@ $(document).on('submit', '#stats_form', function(){
search_button("SEARCHING...");
$.getScript("get_stats.js", function(){
});
get_functions();
});

46
set_config.js Normal file
View file

@ -0,0 +1,46 @@
function set_config() {
var clear_cache = document.getElementById('clear_cache').checked;
config_form = {
"password" : current_password,
"clear_cache" : clear_cache,
"data" : {
"tautulli_apikey" : tautulli_apikey,
"tautulli_ip" : tautulli_ip,
"tautulli_port" : tautulli_port,
"tautulli_length" : tautulli_length,
"tautulli_root" : tautulli_root,
"ssl" : ssl,
"password" : password,
"library_id_movies" : library_id_movies,
"library_id_shows" : library_id_shows,
"wrapped_start" : Math.round(wrapped_start.getTime() / 1000),
"wrapped_end" : Math.round(wrapped_end.getTime() / 1000),
"get_user_movie_stats" : get_user_movie_stats,
"get_user_show_stats" : get_user_show_stats,
"get_user_show_buddy" : get_user_show_buddy,
"get_year_stats" : get_year_stats,
"use_cache" : use_cache,
"cache_age_limit" : cache_age_limit
}
};
var config_data = JSON.stringify(config_form);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var result = JSON.parse(this.responseText);
if(result.error) {
alert(result.message);
} else {
alert(result.message);
window.location.href = "./";
}
}
};
xhttp.withCredentials = true;
xhttp.open("post", "api/set_config.php");
xhttp.send(config_data);
}