Update
This commit is contained in:
parent
d7ea028d82
commit
9b31a50115
@ -469,7 +469,16 @@ namespace PSTW_CentralSystem.Controllers.API.Inventory
|
|||||||
[HttpPost("GetItem/{id}")] // Endpoint to retrieve an item by its ID
|
[HttpPost("GetItem/{id}")] // Endpoint to retrieve an item by its ID
|
||||||
public async Task<IActionResult> GetItem(string id)
|
public async Task<IActionResult> GetItem(string id)
|
||||||
{
|
{
|
||||||
var item = await _centralDbContext.Items.Include("CreatedBy").Include("Department").Include("Product").FirstOrDefaultAsync(i => i.UniqueID == id);
|
var item = await _centralDbContext.Items
|
||||||
|
.Include("CreatedBy")
|
||||||
|
.Include("Department")
|
||||||
|
.Include("Product")
|
||||||
|
.Include(i => i.Movement)
|
||||||
|
.ThenInclude(m => m!.FromStore)
|
||||||
|
.Include(i => i.Movement)
|
||||||
|
.ThenInclude(m => m!.FromStation)
|
||||||
|
.Include(i => i.Movement)
|
||||||
|
.ThenInclude(m => m!.FromUser).FirstOrDefaultAsync(i => i.UniqueID == id);
|
||||||
if (item == null){
|
if (item == null){
|
||||||
return NotFound(new { success = false, message = "Item not found" });
|
return NotFound(new { success = false, message = "Item not found" });
|
||||||
}
|
}
|
||||||
@ -491,6 +500,7 @@ namespace PSTW_CentralSystem.Controllers.API.Inventory
|
|||||||
item.ConvertPrice,
|
item.ConvertPrice,
|
||||||
item.DODate,
|
item.DODate,
|
||||||
item.Warranty,
|
item.Warranty,
|
||||||
|
item.PartNumber,
|
||||||
EndWDate = item.EndWDate.ToString("dd/MM/yyyy"),
|
EndWDate = item.EndWDate.ToString("dd/MM/yyyy"),
|
||||||
InvoiceDate = item.InvoiceDate?.ToString("dd/MM/yyyy"),
|
InvoiceDate = item.InvoiceDate?.ToString("dd/MM/yyyy"),
|
||||||
item.Department?.DepartmentName,
|
item.Department?.DepartmentName,
|
||||||
@ -498,6 +508,9 @@ namespace PSTW_CentralSystem.Controllers.API.Inventory
|
|||||||
item.Product!.ProductName,
|
item.Product!.ProductName,
|
||||||
item.Product!.ProductShortName,
|
item.Product!.ProductShortName,
|
||||||
item.Product!.ImageProduct,
|
item.Product!.ImageProduct,
|
||||||
|
CurrentUser = item.Movement?.FromUser?.UserName,
|
||||||
|
CurrentStore = item.Movement?.FromStore?.StoreName,
|
||||||
|
CurrentStation = item.Movement?.FromStation?.StationName,
|
||||||
QRString = $"{HttpContext.Request.Scheme}://{HttpContext.Request.Host.Value}/I/{item.UniqueID}" // Generate QR String
|
QRString = $"{HttpContext.Request.Scheme}://{HttpContext.Request.Host.Value}/I/{item.UniqueID}" // Generate QR String
|
||||||
};
|
};
|
||||||
return Json(singleItem);
|
return Json(singleItem);
|
||||||
|
|||||||
@ -48,44 +48,102 @@
|
|||||||
<![endif]-->
|
<![endif]-->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container-fluid my-2" id="app">
|
<div class="container-fluid my-4" id="app">
|
||||||
<div class="row-fluid" v-if="thisItem">
|
<div class="row-fluid" v-if="thisItem">
|
||||||
|
<!-- Logo -->
|
||||||
<div class="row m-3 d-flex align-items-center justify-content-center">
|
<div class="row m-3 d-flex align-items-center justify-content-center">
|
||||||
<div class="col-lg-7 col-10 border">
|
<div class="col-lg-7 col-11 p-3 ">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<img :src="thisItem.imageProduct" alt="Product Image" class="img-fluid" data-toggle="modal" data-target="#imageModal"/>
|
<img src="@Url.Content("~/Media/System/Logo-PSTW-A4.svg")" alt="Product Image" class="img-fluid rounded" style="max-height: 300px; object-fit: contain; margin-top: -100px; margin-bottom: -100px" />
|
||||||
</div>
|
|
||||||
<div class="col-12 text-center">
|
|
||||||
<p class="h4">{{thisItem.uniqueID}}</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Product Image Section -->
|
||||||
<div class="row m-3 d-flex align-items-center justify-content-center">
|
<div class="row m-3 d-flex align-items-center justify-content-center">
|
||||||
<div class="col-lg-7 col-10 border">
|
<div class="col-lg-7 col-11 border rounded p-3 shadow-sm">
|
||||||
<div class="col-12 ">
|
<div class="col-12 text-center">
|
||||||
<p class="h4">
|
<img :src="thisItem.imageProduct" alt="Product Image" class="img-fluid rounded" data-toggle="modal" data-target="#imageModal" style="max-height: 300px;"/>
|
||||||
Item Name: {{thisItem.productName}}
|
</div>
|
||||||
|
<div class="col-12 text-center mt-3">
|
||||||
|
<p class="h4 fw-bold text-primary">{{ thisItem.uniqueID }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Product Details Section -->
|
||||||
|
<div class="row m-3 d-flex align-items-center justify-content-center">
|
||||||
|
<div class="col-lg-7 col-11 border rounded p-3 shadow-sm">
|
||||||
|
<!-- Item Name -->
|
||||||
|
<div class="col-12 mb-3">
|
||||||
|
<p class="h5 fw-bold">
|
||||||
|
<i class="fas fa-tag me-2 text-secondary"></i>Item Name:
|
||||||
|
<span class="text-muted">{{ thisItem.productName }}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 ">
|
|
||||||
<p class="h4">
|
<!-- Part Number -->
|
||||||
Part Number: Part Number
|
<div class="col-12 mb-3">
|
||||||
|
<p class="h5 fw-bold">
|
||||||
|
<i class="fas fa-barcode me-2 text-secondary"></i>Part Number:
|
||||||
|
<span class="text-muted">{{ thisItem.partNumber }}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 ">
|
|
||||||
<p class="h4">
|
<!-- Serial Number -->
|
||||||
Serial Number: {{thisItem.serialNumber}}
|
<div class="col-12 mb-3">
|
||||||
|
<p class="h5 fw-bold">
|
||||||
|
<i class="fas fa-hashtag me-2 text-secondary"></i>Serial Number:
|
||||||
|
<span class="text-muted">{{ thisItem.serialNumber }}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12">
|
|
||||||
<p class="h4">
|
<!-- PIC -->
|
||||||
PIC: Station PIC
|
<div class="col-12 mb-3">
|
||||||
|
<p class="h5 fw-bold">
|
||||||
|
<i class="fas fa-user-tie me-2 text-secondary"></i>PIC:
|
||||||
|
<span class="text-muted">Station PIC</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Current Information Card -->
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<p class="h4">
|
<div class="card shadow-sm border-0">
|
||||||
Location: Item Location
|
<div class="card-body">
|
||||||
</p>
|
<h5 class="card-title mb-4 text-primary">
|
||||||
|
<i class="fas fa-info-circle me-2"></i>Current Information
|
||||||
|
</h5>
|
||||||
|
<ul class="list-group list-group-flush">
|
||||||
|
<!-- User -->
|
||||||
|
<li class="list-group-item">
|
||||||
|
<div class="d-flex justify-content-between align-items-start">
|
||||||
|
<span class="fw-bold">
|
||||||
|
<i class="fas fa-user me-2 text-secondary"></i>User:
|
||||||
|
</span>
|
||||||
|
<span class="text-muted text-end" style="max-width: 70%; word-wrap: break-word;">
|
||||||
|
{{ thisItem.currentUser }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<!-- Store -->
|
||||||
|
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||||
|
<span class="fw-bold">
|
||||||
|
<i class="fas fa-store me-2 text-secondary"></i>Store:
|
||||||
|
</span>
|
||||||
|
<span class="text-muted">{{ thisItem.currentStore }}</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<!-- Station -->
|
||||||
|
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||||
|
<span class="fw-bold">
|
||||||
|
<i class="fas fa-map-marker-alt me-2 text-secondary"></i>Station:
|
||||||
|
</span>
|
||||||
|
<span class="text-muted">{{ thisItem.currentStation || 'N/A' }}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -143,7 +201,7 @@
|
|||||||
);
|
);
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
this.thisItem = await response.json();
|
this.thisItem = await response.json();
|
||||||
console.log(this.thisItem);
|
// console.log(this.thisItem);
|
||||||
} else {
|
} else {
|
||||||
console.error('Failed to fetch item information');
|
console.error('Failed to fetch item information');
|
||||||
this.responseMessage = await response.text();
|
this.responseMessage = await response.text();
|
||||||
|
|||||||
443
wwwroot/Media/System/Logo-PSTW-A4.svg
Normal file
443
wwwroot/Media/System/Logo-PSTW-A4.svg
Normal file
@ -0,0 +1,443 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 1122.52 793.70801"
|
||||||
|
height="793.70801"
|
||||||
|
width="1122.52"
|
||||||
|
xml:space="preserve"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"><metadata
|
||||||
|
id="metadata8"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs6"><clipPath
|
||||||
|
id="clipPath22"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path20"
|
||||||
|
d="M 0,595.281 H 841.89 V 0 H 0 Z" /></clipPath><clipPath
|
||||||
|
id="clipPath154"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path152"
|
||||||
|
d="M 67.282,330.504 C 50.865,306.456 57.077,273.653 81.125,257.245 v 0 c 24.048,-16.426 56.848,-10.235 73.257,13.841 v 0 c 16.425,24.042 10.223,56.848 -13.821,73.267 v 0 c -9.094,6.203 -19.443,9.177 -29.677,9.177 v 0 c -16.843,0 -33.389,-8.052 -43.602,-23.026" /></clipPath><radialGradient
|
||||||
|
id="radialGradient172"
|
||||||
|
spreadMethod="pad"
|
||||||
|
gradientTransform="matrix(79.69735,0,0,79.69735,121.65866,332.04648)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
r="1"
|
||||||
|
cy="0"
|
||||||
|
cx="0"
|
||||||
|
fy="0"
|
||||||
|
fx="0"><stop
|
||||||
|
id="stop160"
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff" /><stop
|
||||||
|
id="stop162"
|
||||||
|
offset="0.38381733"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop164"
|
||||||
|
offset="0.466292"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop166"
|
||||||
|
offset="0.5763676"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop168"
|
||||||
|
offset="0.895705"
|
||||||
|
style="stop-opacity:1;stop-color:#3d5588" /><stop
|
||||||
|
id="stop170"
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:1;stop-color:#3d5588" /></radialGradient><clipPath
|
||||||
|
id="clipPath182"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path180"
|
||||||
|
d="M 68.608,329.318 C 52.702,306.003 58.709,274.189 82.031,258.286 v 0 c 12.666,-8.662 27.845,-10.824 41.615,-7.271 v 0 c -12.125,-1.666 -24.895,0.991 -35.814,8.432 v 0 C 64.524,275.359 58.513,307.163 74.43,330.475 v 0 c 7.26,10.653 17.834,17.677 29.407,20.664 v 0 C 90.044,349.224 77.081,341.731 68.608,329.318" /></clipPath><radialGradient
|
||||||
|
id="radialGradient198"
|
||||||
|
spreadMethod="pad"
|
||||||
|
gradientTransform="matrix(78.874725,0,0,78.874725,124.80079,331.72873)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
r="1"
|
||||||
|
cy="0"
|
||||||
|
cx="0"
|
||||||
|
fy="0"
|
||||||
|
fx="0"><stop
|
||||||
|
id="stop188"
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff" /><stop
|
||||||
|
id="stop190"
|
||||||
|
offset="0.2487472"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop192"
|
||||||
|
offset="0.302198"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop194"
|
||||||
|
offset="0.868132"
|
||||||
|
style="stop-opacity:1;stop-color:#3d5588" /><stop
|
||||||
|
id="stop196"
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:1;stop-color:#3d5588" /></radialGradient><clipPath
|
||||||
|
id="clipPath208"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path206"
|
||||||
|
d="M 66.962,330.736 C 50.421,306.49 56.657,273.451 80.896,256.905 v 0 c 24.248,-16.543 57.283,-10.301 73.813,13.952 v 0 c 16.556,24.234 10.295,57.292 -13.932,73.816 v 0 c -9.16,6.255 -19.583,9.25 -29.895,9.25 v 0 c -16.964,0 -33.639,-8.114 -43.92,-23.187" /></clipPath><clipPath
|
||||||
|
id="clipPath216"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path214"
|
||||||
|
d="M 49.9358,360.533 H 161.982 V 232.974 H 49.9358 Z" /></clipPath><clipPath
|
||||||
|
id="clipPath220"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path218"
|
||||||
|
d="m 103.499,341.752 c -23.073,-0.154 -41.548,-8.828 -41.548,-8.828 v 0 C 58.324,330.535 49.936,298.129 49.936,298.129 v 0 c 23.932,19.28 46.449,23.69 64.89,22.035 v 0 c 9.298,-1.401 30.312,-8.376 16.046,-42.95 v 0 c 0,0 -11.608,-31.023 -37.712,-30.723 v 0 c 0,0 3.155,-1.236 8.121,-1.3 v 0 h 0.807 c 11.619,0.151 32.074,6.903 45.979,47.817 v 0 c 0,0 3.968,11.067 8.714,11.655 v 0 c 2.861,-1.994 4.387,-3.34 4.387,-3.34 v 0 c 0.814,8.391 -1.598,16.786 -1.598,16.786 v 0 c -16.664,18.219 -37.021,23.522 -54.823,23.643 v 0 z" /></clipPath><radialGradient
|
||||||
|
id="radialGradient234"
|
||||||
|
spreadMethod="pad"
|
||||||
|
gradientTransform="matrix(52.115601,0,0,52.115601,105.65356,293.44489)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
r="1"
|
||||||
|
cy="0"
|
||||||
|
cx="0"
|
||||||
|
fy="0"
|
||||||
|
fx="0"><stop
|
||||||
|
id="stop222"
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff" /><stop
|
||||||
|
id="stop224"
|
||||||
|
offset="0.2487472"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop226"
|
||||||
|
offset="0.302198"
|
||||||
|
style="stop-opacity:1;stop-color:#d8dae5" /><stop
|
||||||
|
id="stop228"
|
||||||
|
offset="0.834356"
|
||||||
|
style="stop-opacity:1;stop-color:#516494" /><stop
|
||||||
|
id="stop230"
|
||||||
|
offset="0.868132"
|
||||||
|
style="stop-opacity:1;stop-color:#3d5588" /><stop
|
||||||
|
id="stop232"
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:1;stop-color:#3d5588" /></radialGradient><clipPath
|
||||||
|
id="clipPath256"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path254"
|
||||||
|
d="M 60.1499,342.958 H 171.54 V 246.382 H 60.1499 Z" /></clipPath><clipPath
|
||||||
|
id="clipPath260"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path258"
|
||||||
|
d="m 60.15,246.382 h 111.39 v 96.576 H 60.15 Z" /></clipPath><clipPath
|
||||||
|
id="clipPath280"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path278"
|
||||||
|
d="M 51.7398,344.762 H 163.137 V 248.186 H 51.7398 Z" /></clipPath><clipPath
|
||||||
|
id="clipPath284"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path282"
|
||||||
|
d="m 51.74,248.186 h 111.397 v 96.575 H 51.74 Z" /></clipPath><clipPath
|
||||||
|
id="clipPath312"
|
||||||
|
clipPathUnits="userSpaceOnUse"><path
|
||||||
|
id="path310"
|
||||||
|
d="M 0,595.281 H 841.89 V 0 H 0 Z" /></clipPath></defs><g
|
||||||
|
transform="matrix(1.3333333,0,0,-1.3333333,0,793.708)"
|
||||||
|
id="g10"><g
|
||||||
|
transform="translate(191.2749,247.4385)"
|
||||||
|
id="g12"><path
|
||||||
|
id="path14"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 5.09,23.711 H 8.525 L 3.435,0 Z" /></g><g
|
||||||
|
id="g16"><g
|
||||||
|
clip-path="url(#clipPath22)"
|
||||||
|
id="g18"><g
|
||||||
|
transform="translate(201.292,247.4385)"
|
||||||
|
id="g24"><path
|
||||||
|
id="path26"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.017,14.677 c 0.111,0.54 0.269,1.42 0.48,2.635 H 6.481 L 5.935,14.576 h 0.066 c 1.314,2.098 3.291,3.149 5.921,3.149 1.743,0 3.129,-0.448 4.144,-1.343 1.083,-0.953 1.626,-2.317 1.626,-4.096 0,-0.794 -0.137,-1.847 -0.414,-3.151 L 15.373,0 h -3.185 l 2.138,10.363 c 0.111,0.54 0.166,1.08 0.166,1.625 0,0.92 -0.288,1.672 -0.855,2.262 -0.569,0.594 -1.334,0.891 -2.296,0.891 -1.747,0 -3.239,-0.803 -4.476,-2.407 C 5.946,11.54 5.333,10.202 5.021,8.721 L 3.183,0 Z" /></g><g
|
||||||
|
transform="translate(223.5586,262.1816)"
|
||||||
|
id="g28"><path
|
||||||
|
id="path30"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 0.481,2.569 H 4.347 L 5.189,6.583 8.625,7.775 7.545,2.569 h 4.744 L 11.792,0 H 6.999 L 5.405,-7.448 c -0.339,-1.579 -0.512,-2.663 -0.512,-3.246 0,-1.253 0.769,-1.876 2.306,-1.876 0.829,0 1.574,0.149 2.238,0.447 l -0.466,-2.654 c -0.663,-0.254 -1.705,-0.382 -3.132,-0.382 -1.393,0 -2.462,0.416 -3.201,1.246 -0.628,0.684 -0.945,1.553 -0.945,2.601 0,0.741 0.205,2.099 0.613,4.08 L 3.8,0 Z" /></g><g
|
||||||
|
transform="translate(240.8193,257.7686)"
|
||||||
|
id="g32"><path
|
||||||
|
id="path34"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 H 8.854 C 8.921,0.508 8.958,0.945 8.958,1.31 8.958,2.37 8.646,3.211 8.026,3.831 7.377,4.483 6.464,4.811 5.291,4.811 4.042,4.811 2.923,4.33 1.926,3.366 0.997,2.46 0.356,1.34 0,0 m 9.786,-7.098 -0.514,-2.935 c -1.946,-0.476 -3.654,-0.713 -5.124,-0.713 -5.328,0 -7.994,2.605 -7.994,7.809 0,2.632 0.819,4.957 2.455,6.966 1.814,2.245 4.158,3.366 7.031,3.366 2.066,0 3.67,-0.585 4.811,-1.756 1.137,-1.173 1.704,-2.794 1.704,-4.861 0,-0.884 -0.104,-1.94 -0.313,-3.165 h -12.19 c -0.065,-0.377 -0.097,-0.735 -0.097,-1.081 0,-3.125 1.779,-4.689 5.338,-4.689 1.561,0 3.19,0.35 4.893,1.059" /></g><g
|
||||||
|
transform="translate(260.1377,254.5352)"
|
||||||
|
id="g36"><path
|
||||||
|
id="path38"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,-1.236 0.315,-2.279 0.944,-3.118 0.707,-0.928 1.686,-1.394 2.935,-1.394 1.593,0 2.931,0.6 4.014,1.793 1.281,1.414 1.924,3.432 1.924,6.051 0,1.35 -0.37,2.457 -1.112,3.316 C 7.92,7.58 6.854,8.044 5.504,8.044 3.805,8.044 2.428,7.12 1.377,5.274 0.459,3.683 0,1.925 0,0 m 11.689,10.216 h 2.952 L 10.663,-8.355 c -0.387,-1.816 -1.362,-3.293 -2.919,-4.429 -1.705,-1.238 -3.827,-1.86 -6.384,-1.86 -2.188,0 -4.124,0.421 -5.806,1.262 l 0.716,2.855 c 1.912,-1.021 3.756,-1.53 5.538,-1.53 3.227,0 5.238,1.688 6.035,5.06 l 0.446,1.873 H 8.225 C 7.12,-6.44 5.398,-7.097 3.07,-7.097 c -1.67,0 -3.13,0.592 -4.381,1.774 -1.38,1.317 -2.073,3.037 -2.073,5.156 0,3.172 0.826,5.771 2.479,7.795 1.654,2.023 3.734,3.022 6.245,3 2.863,-0.023 4.753,-1.176 5.671,-3.463 h 0.067 z" /></g><g
|
||||||
|
transform="translate(277.5303,247.4385)"
|
||||||
|
id="g40"><path
|
||||||
|
id="path42"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.019,14.677 c 0.109,0.54 0.271,1.42 0.478,2.635 H 6.484 L 5.937,14.576 h 0.066 c 1.317,2.098 3.289,3.149 5.923,3.149 0.44,0 0.925,-0.101 1.456,-0.296 L 12.669,14.61 c -0.586,0.219 -1.038,0.328 -1.358,0.328 -1.746,0 -3.238,-0.799 -4.477,-2.403 C 5.917,11.342 5.301,10.003 4.992,8.524 L 3.185,0 Z" /></g><g
|
||||||
|
transform="translate(302.9697,255.7598)"
|
||||||
|
id="g44"><path
|
||||||
|
id="path46"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 h -2.441 c -1.58,0 -2.892,-0.24 -3.929,-0.726 -1.417,-0.643 -2.122,-1.67 -2.122,-3.085 0,-0.729 0.287,-1.308 0.862,-1.742 0.52,-0.397 1.182,-0.595 1.99,-0.595 1.515,0 2.813,0.657 3.898,1.972 C -0.793,-3.003 -0.212,-1.61 0,0 m -8.427,5.359 0.582,3.168 c 1.768,0.585 3.377,0.876 4.825,0.876 1.968,0 3.548,-0.394 4.744,-1.191 1.403,-0.951 2.105,-2.39 2.105,-4.315 0,-0.796 -0.101,-1.703 -0.3,-2.718 -0.45,-2.145 -1.055,-5.312 -1.805,-9.5 H -1.23 l 0.583,2.885 h -0.067 c -0.533,-1.015 -1.312,-1.825 -2.339,-2.415 -1.028,-0.589 -2.128,-0.886 -3.3,-0.886 -1.569,0 -2.859,0.393 -3.865,1.176 -1.113,0.862 -1.675,2.07 -1.675,3.618 0,4.211 3.423,6.318 10.268,6.318 -0.025,0 0.745,-0.036 2.302,-0.101 0.111,0.566 0.168,0.941 0.168,1.127 0,2.277 -1.323,3.418 -3.965,3.418 -1.901,0 -3.668,-0.489 -5.307,-1.46" /></g><g
|
||||||
|
transform="translate(311.7725,262.1816)"
|
||||||
|
id="g48"><path
|
||||||
|
id="path50"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 0.479,2.569 H 4.343 L 5.189,6.583 8.619,7.775 7.545,2.569 h 4.742 L 11.789,0 H 6.997 L 5.405,-7.448 C 5.061,-9.027 4.89,-10.111 4.89,-10.694 c 0,-1.253 0.771,-1.876 2.307,-1.876 0.828,0 1.573,0.149 2.236,0.447 L 8.97,-14.777 c -0.664,-0.254 -1.709,-0.382 -3.135,-0.382 -1.391,0 -2.46,0.416 -3.2,1.246 -0.631,0.684 -0.942,1.553 -0.942,2.601 0,0.741 0.203,2.099 0.608,4.08 L 3.796,0 Z" /></g><g
|
||||||
|
transform="translate(329.0312,257.7686)"
|
||||||
|
id="g52"><path
|
||||||
|
id="path54"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 h 8.856 c 0.067,0.508 0.099,0.945 0.099,1.31 0,1.06 -0.31,1.901 -0.929,2.521 C 7.374,4.483 6.462,4.811 5.292,4.811 4.043,4.811 2.919,4.33 1.924,3.366 0.996,2.46 0.355,1.34 0,0 m 9.786,-7.098 -0.517,-2.935 c -1.945,-0.476 -3.653,-0.713 -5.123,-0.713 -5.328,0 -7.992,2.605 -7.992,7.809 0,2.632 0.817,4.957 2.455,6.966 1.813,2.245 4.155,3.366 7.029,3.366 2.068,0 3.672,-0.585 4.811,-1.756 1.136,-1.173 1.708,-2.794 1.708,-4.861 0,-0.884 -0.108,-1.94 -0.317,-3.165 H -0.348 c -0.067,-0.377 -0.099,-0.735 -0.099,-1.081 0,-3.125 1.78,-4.689 5.339,-4.689 1.56,0 3.19,0.35 4.894,1.059" /></g><g
|
||||||
|
transform="translate(348.1152,254.5352)"
|
||||||
|
id="g56"><path
|
||||||
|
id="path58"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,-1.461 0.337,-2.625 1.012,-3.497 0.742,-0.953 1.809,-1.427 3.2,-1.427 1.827,0 3.3,0.967 4.428,2.901 0.94,1.637 1.41,3.422 1.41,5.355 0,1.35 -0.369,2.457 -1.112,3.316 C 8.155,7.58 7.087,8.044 5.741,8.044 4.003,8.044 2.578,7.107 1.459,5.241 0.488,3.628 0,1.88 0,0 M 16.683,18.372 12.403,-1.36 C 11.985,-3.296 11.651,-5.207 11.41,-7.097 H 8.425 c 0.1,0.586 0.293,1.471 0.579,2.652 H 8.938 c -1.05,-2.044 -3.021,-3.068 -5.919,-3.068 -2,0 -3.593,0.718 -4.775,2.157 -1.097,1.35 -1.645,3.055 -1.645,5.122 0,2.931 0.757,5.417 2.275,7.463 1.667,2.268 3.903,3.399 6.699,3.399 2.751,0 4.609,-1.088 5.57,-3.268 h 0.066 l 2.272,11.012 z" /></g><g
|
||||||
|
transform="translate(376.0903,247.4385)"
|
||||||
|
id="g60"><path
|
||||||
|
id="path62"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 5.189,23.711 H 18.073 L 17.394,20.709 H 8.009 L 6.486,13.78 h 8.803 l -0.58,-2.986 H 5.804 L 4.081,2.984 h 9.948 L 13.382,0 Z" /></g><g
|
||||||
|
transform="translate(395.3911,247.4385)"
|
||||||
|
id="g64"><path
|
||||||
|
id="path66"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.016,14.677 c 0.111,0.54 0.272,1.42 0.481,2.635 H 6.481 L 5.933,14.576 H 6 c 1.319,2.098 3.291,3.149 5.922,3.149 1.746,0 3.129,-0.448 4.145,-1.343 1.082,-0.953 1.626,-2.317 1.626,-4.096 0,-0.794 -0.139,-1.847 -0.415,-3.151 L 15.371,0 h -3.184 l 2.137,10.363 c 0.112,0.54 0.168,1.08 0.168,1.625 0,0.92 -0.285,1.672 -0.853,2.262 -0.57,0.594 -1.336,0.891 -2.299,0.891 -1.746,0 -3.238,-0.803 -4.477,-2.407 C 5.947,11.54 5.332,10.202 5.023,8.721 L 3.182,0 Z" /></g><g
|
||||||
|
transform="translate(420.6787,247.4385)"
|
||||||
|
id="g68"><path
|
||||||
|
id="path70"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 -2.723,17.312 H 0.678 L 2.453,3.333 H 2.52 l 7.708,13.979 h 3.381 L 3.728,0 Z" /></g><g
|
||||||
|
transform="translate(443.2891,272.2285)"
|
||||||
|
id="g72"><path
|
||||||
|
id="path74"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 -0.741,-3.598 H -4.343 L -3.596,0 Z m -8.653,-24.79 3.665,17.312 h 3.2 l -3.68,-17.312 z" /></g><g
|
||||||
|
transform="translate(444.5527,247.4385)"
|
||||||
|
id="g76"><path
|
||||||
|
id="path78"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.019,14.677 c 0.109,0.54 0.268,1.42 0.479,2.635 H 6.482 L 5.936,14.576 h 0.068 c 1.312,2.098 3.285,3.149 5.918,3.149 0.44,0 0.93,-0.101 1.463,-0.296 L 12.672,14.61 c -0.589,0.219 -1.041,0.328 -1.361,0.328 -1.747,0 -3.239,-0.799 -4.479,-2.403 C 5.914,11.342 5.302,10.003 4.99,8.524 L 3.187,0 Z" /></g><g
|
||||||
|
transform="translate(462.2119,254.502)"
|
||||||
|
id="g80"><path
|
||||||
|
id="path82"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,-1.449 0.363,-2.609 1.095,-3.482 0.783,-0.941 1.9,-1.409 3.347,-1.409 1.748,0 3.25,0.837 4.51,2.519 1.206,1.614 1.809,3.434 1.809,5.456 0,1.381 -0.373,2.537 -1.129,3.464 C 8.816,7.565 7.72,8.077 6.35,8.077 4.381,8.077 2.794,7.183 1.592,5.392 0.531,3.819 0,2.022 0,0 m -3.4,0.231 c 0,3.009 0.858,5.467 2.573,7.382 1.799,2.031 4.236,3.048 7.31,3.048 2.344,0 4.209,-0.67 5.595,-2.013 1.388,-1.343 2.085,-3.195 2.085,-5.564 0,-3.04 -0.836,-5.531 -2.506,-7.479 -1.77,-2.054 -4.165,-3.084 -7.18,-3.084 -2.431,0 -4.341,0.645 -5.722,1.941 -1.438,1.349 -2.155,3.27 -2.155,5.769" /></g><g
|
||||||
|
transform="translate(479.8379,247.4385)"
|
||||||
|
id="g84"><path
|
||||||
|
id="path86"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.017,14.677 c 0.11,0.54 0.272,1.42 0.481,2.635 H 6.486 L 5.937,14.576 h 0.066 c 1.314,2.098 3.289,3.149 5.919,3.149 1.748,0 3.129,-0.448 4.146,-1.343 1.086,-0.953 1.622,-2.317 1.622,-4.096 0,-0.794 -0.133,-1.847 -0.411,-3.151 L 15.374,0 h -3.183 l 2.136,10.363 c 0.111,0.54 0.167,1.08 0.167,1.625 0,0.92 -0.285,1.672 -0.855,2.262 -0.571,0.594 -1.335,0.891 -2.294,0.891 -1.747,0 -3.24,-0.803 -4.481,-2.407 C 5.948,11.54 5.333,10.202 5.022,8.721 L 3.185,0 Z" /></g><g
|
||||||
|
transform="translate(501.2598,247.4385)"
|
||||||
|
id="g88"><path
|
||||||
|
id="path90"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.185,15.353 c 0.065,0.41 0.183,1.063 0.344,1.959 H 6.518 L 6.103,14.938 h 0.065 c 1.24,1.861 3.073,2.787 5.506,2.787 1.085,0 2.028,-0.242 2.836,-0.729 0.895,-0.541 1.481,-1.305 1.757,-2.286 1.737,2.008 3.783,3.015 6.137,3.015 1.413,0 2.572,-0.423 3.471,-1.27 0.901,-0.847 1.355,-1.927 1.355,-3.237 0,-0.81 -0.171,-2.019 -0.516,-3.636 L 24.726,0 h -3.201 l 2.304,10.975 c 0.144,0.645 0.216,1.185 0.216,1.627 0,0.742 -0.228,1.347 -0.679,1.822 -0.455,0.477 -1.079,0.717 -1.874,0.717 -1.461,0 -2.721,-0.743 -3.779,-2.222 -0.854,-1.163 -1.461,-2.572 -1.826,-4.232 L 13.945,0 h -3.182 l 2.303,10.975 c 0.134,0.645 0.2,1.185 0.2,1.627 0,0.742 -0.216,1.343 -0.647,1.807 -0.475,0.486 -1.106,0.732 -1.89,0.732 -1.458,0 -2.725,-0.743 -3.793,-2.222 C 6.091,11.756 5.487,10.347 5.126,8.687 L 3.185,0 Z" /></g><g
|
||||||
|
transform="translate(536.3486,257.7686)"
|
||||||
|
id="g92"><path
|
||||||
|
id="path94"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 H 8.855 C 8.92,0.508 8.953,0.945 8.953,1.31 8.953,2.37 8.645,3.211 8.024,3.831 7.372,4.483 6.462,4.811 5.29,4.811 4.041,4.811 2.917,4.33 1.922,3.366 0.993,2.46 0.351,1.34 0,0 M 9.782,-7.098 9.27,-10.033 c -1.948,-0.476 -3.655,-0.713 -5.127,-0.713 -5.329,0 -7.992,2.605 -7.992,7.809 0,2.632 0.818,4.957 2.455,6.966 1.81,2.245 4.156,3.366 7.032,3.366 2.062,0 3.67,-0.585 4.807,-1.756 1.14,-1.173 1.708,-2.794 1.708,-4.861 0,-0.884 -0.104,-1.94 -0.315,-3.165 H -0.35 c -0.063,-0.377 -0.097,-0.735 -0.097,-1.081 0,-3.125 1.778,-4.689 5.338,-4.689 1.559,0 3.188,0.35 4.891,1.059" /></g><g
|
||||||
|
transform="translate(551.6338,247.4385)"
|
||||||
|
id="g96"><path
|
||||||
|
id="path98"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.021,14.677 c 0.107,0.54 0.268,1.42 0.479,2.635 H 6.484 L 5.937,14.576 h 0.07 c 1.311,2.098 3.284,3.149 5.917,3.149 1.746,0 3.127,-0.448 4.144,-1.343 1.084,-0.953 1.626,-2.317 1.626,-4.096 0,-0.794 -0.138,-1.847 -0.411,-3.151 L 15.372,0 h -3.181 l 2.135,10.363 c 0.114,0.54 0.168,1.08 0.168,1.625 0,0.92 -0.281,1.672 -0.853,2.262 -0.573,0.594 -1.336,0.891 -2.296,0.891 -1.746,0 -3.24,-0.803 -4.481,-2.407 C 5.95,11.54 5.333,10.202 5.026,8.721 L 3.188,0 Z" /></g><g
|
||||||
|
transform="translate(573.9053,262.1816)"
|
||||||
|
id="g100"><path
|
||||||
|
id="path102"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 0.481,2.569 H 4.345 L 5.191,6.583 8.623,7.775 7.545,2.569 h 4.744 L 11.792,0 H 6.997 l -1.59,-7.448 c -0.343,-1.579 -0.515,-2.663 -0.515,-3.246 0,-1.253 0.769,-1.876 2.305,-1.876 0.831,0 1.576,0.149 2.24,0.447 l -0.462,-2.654 c -0.665,-0.254 -1.712,-0.382 -3.136,-0.382 -1.397,0 -2.462,0.416 -3.202,1.246 -0.63,0.684 -0.944,1.553 -0.944,2.601 0,0.741 0.203,2.099 0.615,4.08 L 3.797,0 Z" /></g><g
|
||||||
|
transform="translate(598.4971,255.7598)"
|
||||||
|
id="g104"><path
|
||||||
|
id="path106"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 H -2.438 C -4.02,0 -5.33,-0.24 -6.37,-0.726 c -1.415,-0.643 -2.12,-1.67 -2.12,-3.085 0,-0.729 0.287,-1.308 0.861,-1.742 0.52,-0.397 1.184,-0.595 1.987,-0.595 1.517,0 2.815,0.657 3.9,1.972 C -0.793,-3.003 -0.211,-1.61 0,0 m -8.426,5.359 0.579,3.168 c 1.769,0.585 3.377,0.876 4.828,0.876 1.967,0 3.546,-0.394 4.743,-1.191 C 3.127,7.261 3.827,5.822 3.827,3.897 3.827,3.101 3.731,2.194 3.532,1.179 3.079,-0.966 2.474,-4.133 1.724,-8.321 h -2.953 l 0.58,2.885 h -0.064 c -0.532,-1.015 -1.312,-1.825 -2.342,-2.415 -1.027,-0.589 -2.128,-0.886 -3.298,-0.886 -1.569,0 -2.857,0.393 -3.863,1.176 -1.119,0.862 -1.676,2.07 -1.676,3.618 0,4.211 3.42,6.318 10.263,6.318 -0.022,0 0.75,-0.036 2.309,-0.101 0.108,0.566 0.167,0.941 0.167,1.127 0,2.277 -1.324,3.418 -3.965,3.418 -1.902,0 -3.673,-0.489 -5.308,-1.46" /></g><g
|
||||||
|
transform="translate(606.6543,247.4385)"
|
||||||
|
id="g108"><path
|
||||||
|
id="path110"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 5.406,25.469 H 8.588 L 3.185,0 Z" /></g><g
|
||||||
|
transform="translate(642.7363,270.4229)"
|
||||||
|
id="g112"><path
|
||||||
|
id="path114"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 -0.946,-3.019 c -1.271,0.771 -2.71,1.159 -4.314,1.159 -1.303,0 -2.364,-0.264 -3.179,-0.795 -1.01,-0.642 -1.512,-1.607 -1.512,-2.901 0,-1.062 0.703,-2.076 2.107,-3.035 1.292,-0.895 2.584,-1.786 3.879,-2.671 1.403,-1.249 2.11,-2.757 2.11,-4.526 0,-2.004 -0.655,-3.715 -1.959,-5.141 -1.504,-1.647 -3.581,-2.471 -6.235,-2.471 -2.112,0 -4.316,0.452 -6.616,1.362 l 1.078,3.133 c 1.57,-0.995 3.231,-1.494 4.988,-1.494 1.671,0 2.975,0.451 3.917,1.36 0.814,0.783 1.225,1.735 1.225,2.853 0,1.305 -0.702,2.444 -2.105,3.415 -1.295,0.852 -2.589,1.698 -3.882,2.537 -1.404,1.206 -2.105,2.743 -2.105,4.612 0,2.042 0.816,3.708 2.453,4.99 1.507,1.174 3.3,1.758 5.391,1.758 C -3.694,1.126 -1.792,0.748 0,0" /></g><g
|
||||||
|
transform="translate(648.1416,254.502)"
|
||||||
|
id="g116"><path
|
||||||
|
id="path118"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,-1.449 0.361,-2.609 1.093,-3.482 0.782,-0.941 1.898,-1.409 3.347,-1.409 1.751,0 3.25,0.837 4.513,2.519 1.202,1.614 1.806,3.434 1.806,5.456 0,1.381 -0.375,2.537 -1.129,3.464 C 8.811,7.565 7.718,8.077 6.349,8.077 4.379,8.077 2.792,7.183 1.588,5.392 0.529,3.819 0,2.022 0,0 m -3.401,0.231 c 0,3.009 0.856,5.467 2.568,7.382 1.802,2.031 4.242,3.048 7.315,3.048 2.34,0 4.208,-0.67 5.594,-2.013 1.388,-1.343 2.083,-3.195 2.083,-5.564 0,-3.04 -0.836,-5.531 -2.506,-7.479 -1.768,-2.054 -4.164,-3.084 -7.176,-3.084 -2.434,0 -4.342,0.645 -5.723,1.941 -1.44,1.349 -2.155,3.27 -2.155,5.769" /></g><g
|
||||||
|
transform="translate(665.9639,247.4385)"
|
||||||
|
id="g120"><path
|
||||||
|
id="path122"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 5.407,25.469 H 8.59 L 3.185,0 Z" /></g><g
|
||||||
|
transform="translate(694.5195,264.751)"
|
||||||
|
id="g124"><path
|
||||||
|
id="path126"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 -3.019,-14.661 c -0.107,-0.54 -0.27,-1.427 -0.479,-2.651 h -2.986 l 0.549,2.753 h -0.068 c -1.324,-2.112 -3.3,-3.17 -5.919,-3.17 -1.744,0 -3.129,0.45 -4.146,1.344 -1.083,0.962 -1.624,2.327 -1.624,4.096 0,0.808 0.135,1.861 0.415,3.167 L -15.39,0 h 3.204 l -2.141,-10.35 c -0.111,-0.552 -0.166,-1.092 -0.166,-1.626 0,-0.925 0.275,-1.676 0.83,-2.253 0.588,-0.608 1.358,-0.911 2.32,-0.911 1.747,0 3.235,0.8 4.465,2.404 0.925,1.205 1.547,2.541 1.855,4.012 L -3.185,0 Z" /></g><g
|
||||||
|
transform="translate(698.1484,262.1816)"
|
||||||
|
id="g128"><path
|
||||||
|
id="path130"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 0.479,2.569 H 4.348 L 5.191,6.583 8.624,7.775 7.545,2.569 h 4.744 L 11.792,0 H 7 L 5.407,-7.448 c -0.343,-1.579 -0.514,-2.663 -0.514,-3.246 0,-1.253 0.769,-1.876 2.306,-1.876 0.829,0 1.572,0.149 2.238,0.447 l -0.465,-2.654 c -0.663,-0.254 -1.706,-0.382 -3.131,-0.382 -1.397,0 -2.466,0.416 -3.204,1.246 -0.631,0.684 -0.945,1.553 -0.945,2.601 0,0.741 0.206,2.099 0.614,4.08 L 3.796,0 Z" /></g><g
|
||||||
|
transform="translate(720.0195,272.2285)"
|
||||||
|
id="g132"><path
|
||||||
|
id="path134"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 -0.747,-3.598 H -4.343 L -3.602,0 Z m -8.655,-24.79 3.666,17.312 h 3.197 L -5.473,-24.79 Z" /></g><g
|
||||||
|
transform="translate(725.0801,254.502)"
|
||||||
|
id="g136"><path
|
||||||
|
id="path138"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,-1.449 0.361,-2.609 1.093,-3.482 0.783,-0.941 1.9,-1.409 3.351,-1.409 1.746,0 3.246,0.837 4.508,2.519 1.204,1.614 1.807,3.434 1.807,5.456 0,1.381 -0.373,2.537 -1.129,3.464 C 8.814,7.565 7.718,8.077 6.348,8.077 4.379,8.077 2.793,7.183 1.59,5.392 0.529,3.819 0,2.022 0,0 m -3.402,0.231 c 0,3.009 0.858,5.467 2.573,7.382 1.799,2.031 4.236,3.048 7.31,3.048 2.344,0 4.209,-0.67 5.597,-2.013 1.386,-1.343 2.083,-3.195 2.083,-5.564 0,-3.04 -0.836,-5.531 -2.506,-7.479 -1.769,-2.054 -4.165,-3.084 -7.18,-3.084 -2.431,0 -4.339,0.645 -5.722,1.941 -1.44,1.349 -2.155,3.27 -2.155,5.769" /></g><g
|
||||||
|
transform="translate(742.7021,247.4385)"
|
||||||
|
id="g140"><path
|
||||||
|
id="path142"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 3.019,14.677 c 0.108,0.54 0.269,1.42 0.48,2.635 H 6.484 L 5.937,14.576 h 0.066 c 1.316,2.098 3.288,3.149 5.92,3.149 1.747,0 3.128,-0.448 4.145,-1.343 1.083,-0.953 1.624,-2.317 1.624,-4.096 0,-0.794 -0.134,-1.847 -0.412,-3.151 L 15.371,0 h -3.182 l 2.139,10.363 c 0.111,0.54 0.166,1.08 0.166,1.625 0,0.92 -0.284,1.672 -0.854,2.262 -0.572,0.594 -1.335,0.891 -2.296,0.891 -1.748,0 -3.24,-0.803 -4.481,-2.407 C 5.947,11.54 5.335,10.202 5.023,8.721 L 3.186,0 Z" /></g><g
|
||||||
|
transform="translate(776.1494,264.2197)"
|
||||||
|
id="g144"><path
|
||||||
|
id="path146"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 -0.963,-2.52 c -1.172,0.584 -2.326,0.879 -3.462,0.879 -2.148,0 -3.222,-0.705 -3.222,-2.108 0,-0.787 0.51,-1.548 1.529,-2.286 1.855,-1.348 2.808,-2.042 2.851,-2.075 1.019,-0.982 1.527,-2.166 1.527,-3.547 0,-1.892 -0.754,-3.335 -2.255,-4.33 -1.208,-0.806 -2.639,-1.21 -4.298,-1.21 -1.789,0 -3.475,0.277 -5.057,0.829 l 0.614,2.734 c 1.614,-0.65 2.933,-0.974 3.963,-0.974 0.997,0 1.816,0.198 2.472,0.595 0.775,0.487 1.163,1.185 1.163,2.09 0,0.794 -0.512,1.579 -1.53,2.354 -0.949,0.709 -1.899,1.41 -2.849,2.104 -1.021,0.965 -1.528,2.068 -1.528,3.318 0,1.681 0.73,2.986 2.193,3.915 1.225,0.786 2.667,1.175 4.323,1.175 C -3.078,0.943 -1.567,0.63 0,0" /></g></g></g><g
|
||||||
|
id="g148"><g
|
||||||
|
clip-path="url(#clipPath154)"
|
||||||
|
id="g150"><g
|
||||||
|
id="g156"><g
|
||||||
|
id="g158"><path
|
||||||
|
id="path174"
|
||||||
|
style="fill:url(#radialGradient172);stroke:none"
|
||||||
|
d="M 67.282,330.504 C 50.865,306.456 57.077,273.653 81.125,257.245 v 0 c 24.048,-16.426 56.848,-10.235 73.257,13.841 v 0 c 16.425,24.042 10.223,56.848 -13.821,73.267 v 0 c -9.094,6.203 -19.443,9.177 -29.677,9.177 v 0 c -16.843,0 -33.389,-8.052 -43.602,-23.026" /></g></g></g></g><g
|
||||||
|
id="g176"><g
|
||||||
|
clip-path="url(#clipPath182)"
|
||||||
|
id="g178"><g
|
||||||
|
id="g184"><g
|
||||||
|
id="g186"><path
|
||||||
|
id="path200"
|
||||||
|
style="fill:url(#radialGradient198);stroke:none"
|
||||||
|
d="M 68.608,329.318 C 52.702,306.003 58.709,274.189 82.031,258.286 v 0 c 12.666,-8.662 27.845,-10.824 41.615,-7.271 v 0 c -12.125,-1.666 -24.895,0.991 -35.814,8.432 v 0 C 64.524,275.359 58.513,307.163 74.43,330.475 v 0 c 7.26,10.653 17.834,17.677 29.407,20.664 v 0 C 90.044,349.224 77.081,341.731 68.608,329.318" /></g></g></g></g><g
|
||||||
|
id="g202"><g
|
||||||
|
clip-path="url(#clipPath208)"
|
||||||
|
id="g204"><g
|
||||||
|
id="g210"><g
|
||||||
|
id="g212" /><g
|
||||||
|
id="g248"><g
|
||||||
|
style="opacity:0.30000299"
|
||||||
|
id="g246"
|
||||||
|
clip-path="url(#clipPath216)"><g
|
||||||
|
id="g244"><g
|
||||||
|
id="g242"
|
||||||
|
clip-path="url(#clipPath220)"><g
|
||||||
|
id="g240"><g
|
||||||
|
id="g238"><path
|
||||||
|
id="path236"
|
||||||
|
style="fill:url(#radialGradient234);stroke:none"
|
||||||
|
d="m 103.499,341.752 c -23.073,-0.154 -41.548,-8.828 -41.548,-8.828 v 0 C 58.324,330.535 49.936,298.129 49.936,298.129 v 0 c 23.932,19.28 46.449,23.69 64.89,22.035 v 0 c 9.298,-1.401 30.312,-8.376 16.046,-42.95 v 0 c 0,0 -11.608,-31.023 -37.712,-30.723 v 0 c 0,0 3.155,-1.236 8.121,-1.3 v 0 h 0.807 c 11.619,0.151 32.074,6.903 45.979,47.817 v 0 c 0,0 3.968,11.067 8.714,11.655 v 0 c 2.861,-1.994 4.387,-3.34 4.387,-3.34 v 0 c 0.814,8.391 -1.598,16.786 -1.598,16.786 v 0 c -16.664,18.219 -37.021,23.522 -54.823,23.643 v 0 z" /></g></g></g></g></g></g></g><g
|
||||||
|
id="g250"><g
|
||||||
|
id="g252" /><g
|
||||||
|
id="g272"><g
|
||||||
|
style="opacity:0.30000299"
|
||||||
|
id="g270"
|
||||||
|
clip-path="url(#clipPath256)"><g
|
||||||
|
id="g268"><g
|
||||||
|
id="g266"
|
||||||
|
clip-path="url(#clipPath260)"><g
|
||||||
|
id="g264"
|
||||||
|
transform="translate(169.7842,319.3228)"><path
|
||||||
|
id="path262"
|
||||||
|
style="fill:#9ca5c2;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c -38.827,42.41 -97.638,14.801 -97.638,14.801 -3.608,-2.401 -11.996,-34.814 -11.996,-34.814 23.915,19.301 46.435,23.721 64.865,22.044 9.329,-1.399 30.33,-8.354 16.043,-42.941 0,0 -11.589,-31.034 -37.711,-30.733 0,0 34.515,-13.493 54.916,46.53 0,0 3.974,11.076 8.72,11.663 2.845,-2.008 4.391,-3.357 4.391,-3.357 C 2.398,-8.407 0,0 0,0" /></g></g></g></g></g></g><g
|
||||||
|
id="g274"><g
|
||||||
|
id="g276" /><g
|
||||||
|
id="g296"><g
|
||||||
|
style="opacity:0.30000299"
|
||||||
|
id="g294"
|
||||||
|
clip-path="url(#clipPath280)"><g
|
||||||
|
id="g292"><g
|
||||||
|
id="g290"
|
||||||
|
clip-path="url(#clipPath284)"><g
|
||||||
|
id="g288"
|
||||||
|
transform="translate(161.3789,321.1221)"><path
|
||||||
|
id="path286"
|
||||||
|
style="fill:#9ca5c2;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c -38.823,42.419 -97.64,14.809 -97.64,14.809 -3.589,-2.411 -11.999,-34.823 -11.999,-34.823 23.932,19.312 46.442,23.706 64.881,22.052 9.308,-1.396 30.31,-8.371 16.046,-42.952 0,0 -11.61,-31.026 -37.708,-30.72 0,0 34.51,-13.508 54.907,46.532 0,0 3.97,11.052 8.726,11.642 2.839,-1.99 4.38,-3.345 4.38,-3.345 C 2.397,-8.408 0,0 0,0" /></g></g></g></g></g></g><g
|
||||||
|
transform="translate(66.5439,335.792)"
|
||||||
|
id="g298"><path
|
||||||
|
id="path300"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,0 58.818,27.614 97.629,-14.789 0,0 2.404,-8.41 1.595,-16.823 0,0 -51.204,45.222 -111.23,-3.192 0,0 8.406,32.412 12.006,34.804" /></g><g
|
||||||
|
transform="translate(115.3516,323.3901)"
|
||||||
|
id="g302"><path
|
||||||
|
id="path304"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0,0 38.116,0.303 20.106,-43.299 0,0 -11.595,-31.024 -37.704,-30.723 0,0 34.516,-13.51 54.909,46.528 0,0 5.7,15.903 11.619,10.595 0,0 -17.722,20.517 -48.93,16.899" /></g></g></g><g
|
||||||
|
id="g306"><g
|
||||||
|
clip-path="url(#clipPath312)"
|
||||||
|
id="g308"><g
|
||||||
|
transform="translate(186.9248,285.6289)"
|
||||||
|
id="g314"><path
|
||||||
|
id="path316"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 0.613,7.881 0.795,15.393 0.336,10.901 c 0.017,1.169 0.031,2.338 0.031,3.507 0,0.883 -0.014,2.331 -0.031,4.342 2.707,-0.063 4.886,-0.093 6.527,-0.093 1.582,0 3.748,0.047 6.499,0.138 2.75,0.093 5.081,0.139 6.991,0.139 2.75,0 4.789,-0.175 6.113,-0.523 1.326,-0.349 2.519,-0.897 3.587,-1.647 1.068,-0.749 1.954,-1.627 2.649,-2.633 0.698,-1.005 1.223,-2.149 1.571,-3.432 0.35,-1.283 0.525,-2.593 0.525,-3.926 0,-2.75 -0.669,-5.263 -2.005,-7.541 -1.331,-2.28 -3.211,-3.983 -5.631,-5.111 -2.421,-1.13 -5.143,-1.693 -8.157,-1.693 -1.112,0 -2.393,0.124 -3.851,0.369 -0.163,0.945 -0.47,2.351 -0.924,4.217 -0.452,1.868 -0.819,3.254 -1.105,4.156 0.902,-0.184 1.849,-0.276 2.831,-0.276 2.071,0 3.618,0.497 4.632,1.492 1.018,0.996 1.525,2.212 1.525,3.649 0,0.697 -0.113,1.317 -0.339,1.861 -0.228,0.544 -0.586,0.992 -1.076,1.342 -0.494,0.347 -1.037,0.574 -1.631,0.676 -0.597,0.104 -1.275,0.154 -2.034,0.154 -0.738,0 -1.507,-0.021 -2.309,-0.062 L 13.545,33.095 C 13.283,29.134 13.081,24.731 12.937,19.887 12.673,11.063 12.541,5.771 12.541,4 V 0 L 6.407,0.062 C 5.547,0.062 3.41,0.041 0,0" /></g><g
|
||||||
|
transform="translate(244.1035,306.5337)"
|
||||||
|
id="g318"><path
|
||||||
|
id="path320"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 H 9.562 C 7.189,7.232 5.885,11.218 5.659,11.954 4.306,8.942 3.158,6.474 2.215,4.547 Z m -23.836,-20.905 2.556,4.433 15.926,29.987 1.696,3.354 c 0.492,0.987 1.181,2.402 2.061,4.25 3.614,-0.04 6.25,-0.062 7.912,-0.062 2.895,0 5.573,0.022 8.035,0.062 l 4.492,-12.838 9.138,-24.692 1.784,-4.494 c -3.555,0.041 -5.714,0.062 -6.471,0.062 -1.727,0 -4.264,-0.021 -7.613,-0.062 -0.902,3.388 -2.204,7.369 -3.903,11.944 H -3.721 c -1.785,-3.612 -3.629,-7.594 -5.537,-11.944 -3.821,0.041 -6.164,0.062 -7.026,0.062 -1.561,0 -4.078,-0.021 -7.552,-0.062" /></g><g
|
||||||
|
transform="translate(291.2944,307.8101)"
|
||||||
|
id="g322"><path
|
||||||
|
id="path324"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 6.896,9.383 5.571,7.814 1.725,2.646 c 3.819,-0.041 6.404,-0.063 7.759,-0.063 0.37,0 2.822,0.022 7.359,0.063 L 16.316,3.445 13.885,0.154 l 2.278,-3.635 12.867,-18.7 -7.572,0.061 c -1.641,0 -4.425,-0.02 -8.345,-0.061 C 10.468,-17.19 6.096,-9.796 0,0 m -15.424,-22.181 c 0.39,3.837 0.673,7.019 0.836,9.545 0.308,4.473 0.641,10.6 0.992,18.379 0.248,5.418 0.371,9.235 0.371,11.452 v 2.648 c 3.424,-0.041 5.783,-0.063 7.074,-0.063 0.86,0 3.076,0.022 6.644,0.063 l -1.454,-22.998 -0.744,-19.026 -6.674,0.061 c -0.943,0 -3.293,-0.02 -7.045,-0.061" /></g><g
|
||||||
|
transform="translate(341.2104,306.5337)"
|
||||||
|
id="g326"><path
|
||||||
|
id="path328"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 H 9.56 C 7.184,7.232 5.883,11.218 5.656,11.954 4.304,8.942 3.156,6.474 2.212,4.547 Z m -23.837,-20.905 2.556,4.433 15.926,29.987 1.692,3.354 c 0.496,0.987 1.181,2.402 2.063,4.25 3.612,-0.04 6.25,-0.062 7.913,-0.062 2.893,0 5.57,0.022 8.034,0.062 l 4.494,-12.838 9.135,-24.692 1.786,-4.494 c -3.553,0.041 -5.713,0.062 -6.47,0.062 -1.731,0 -4.265,-0.021 -7.614,-0.062 -0.905,3.388 -2.205,7.369 -3.903,11.944 H -3.724 c -1.784,-3.612 -3.63,-7.594 -5.537,-11.944 -3.822,0.041 -6.165,0.062 -7.025,0.062 -1.564,0 -4.081,-0.021 -7.551,-0.062" /></g><g
|
||||||
|
transform="translate(372.9463,285.6289)"
|
||||||
|
id="g330"><path
|
||||||
|
id="path332"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0.387,3.611 0.697,6.866 0.925,9.759 0.225,2.894 0.424,6.25 0.584,10.068 0.165,3.818 0.29,7.844 0.374,12.084 0.08,4.237 0.121,7.608 0.121,10.113 2.565,-0.063 4.637,-0.093 6.218,-0.093 1.645,0 3.644,0.047 6.003,0.138 2.361,0.093 4.657,0.139 6.896,0.139 2.628,0 4.966,-0.102 7.019,-0.307 1.538,-0.144 2.938,-0.443 4.2,-0.892 1.264,-0.452 2.324,-1.003 3.187,-1.649 0.86,-0.645 1.58,-1.369 2.154,-2.171 0.573,-0.798 1.023,-1.737 1.338,-2.815 0.32,-1.078 0.478,-2.233 0.478,-3.464 0,-1.375 -0.175,-2.663 -0.524,-3.864 -0.347,-1.201 -0.898,-2.329 -1.647,-3.387 -0.748,-1.056 -1.693,-1.97 -2.832,-2.74 -1.139,-0.768 -2.736,-1.553 -4.786,-2.355 l 1.601,-3.909 c 0.449,-1.089 0.932,-2.197 1.448,-3.326 L 36.88,2.309 C 37.064,1.919 37.393,1.15 37.866,0 34.48,0.041 32.204,0.062 31.035,0.062 29.559,0.062 27.138,0.041 23.774,0 23.447,1.069 22.85,3.048 21.986,5.943 21.64,7.153 21.34,8.087 21.093,8.745 c -0.491,1.457 -1.223,3.496 -2.189,6.124 l -3.173,8.714 c 1.106,-0.206 2.194,-0.309 3.262,-0.309 1.499,0 2.859,0.226 4.079,0.678 1.221,0.45 2.147,1.15 2.772,2.093 0.624,0.944 0.939,1.941 0.939,2.987 0,0.882 -0.237,1.657 -0.708,2.325 -0.471,0.665 -1.216,1.163 -2.234,1.493 -1.016,0.327 -2.58,0.492 -4.695,0.492 -0.718,0 -1.462,-0.015 -2.229,-0.046 C 16.147,33.264 15.248,33.239 14.223,33.22 13.958,29.012 13.727,23.88 13.522,17.825 13.32,11.771 13.188,5.83 13.127,0 9.697,0.041 7.464,0.062 6.44,0.062 5.248,0.062 3.1,0.041 0,0" /></g><g
|
||||||
|
transform="translate(430.1816,286.2764)"
|
||||||
|
id="g334"><path
|
||||||
|
id="path336"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,0 C -0.271,4.371 -0.574,7.872 -0.925,10.498 1.381,9.472 3.427,8.758 5.229,8.358 7.024,7.957 8.607,7.761 9.963,7.761 c 1.79,0 3.215,0.259 4.274,0.781 1.059,0.524 1.588,1.296 1.588,2.325 0,0.348 -0.054,0.682 -0.158,1.001 -0.099,0.318 -0.294,0.675 -0.584,1.077 -0.289,0.401 -0.698,0.837 -1.235,1.309 l -5.797,5.048 c -1.36,1.148 -2.303,1.98 -2.839,2.492 -1.092,1.049 -1.938,2.023 -2.546,2.927 -0.608,0.902 -1.052,1.821 -1.328,2.756 -0.279,0.932 -0.416,1.923 -0.416,2.97 0,1.252 0.221,2.479 0.665,3.68 0.436,1.199 1.101,2.324 1.983,3.371 0.884,1.046 2.051,1.948 3.509,2.709 1.458,0.758 3.019,1.277 4.681,1.554 1.663,0.277 3.378,0.415 5.141,0.415 3.466,0 7.244,-0.399 11.328,-1.199 0.063,-1.417 0.135,-2.714 0.217,-3.896 0.084,-1.181 0.28,-3.249 0.584,-6.203 -1.887,0.759 -3.613,1.287 -5.17,1.586 -1.56,0.296 -2.909,0.447 -4.033,0.447 -1.601,0 -2.932,-0.297 -3.99,-0.894 -1.056,-0.595 -1.583,-1.333 -1.583,-2.216 0,-0.412 0.079,-0.811 0.245,-1.201 0.163,-0.39 0.475,-0.848 0.92,-1.37 0.456,-0.525 1.051,-1.099 1.787,-1.724 0.741,-0.627 1.899,-1.556 3.484,-2.788 l 2.216,-1.754 c 0.655,-0.533 1.365,-1.18 2.122,-1.939 0.759,-0.759 1.414,-1.508 1.971,-2.246 0.553,-0.74 0.98,-1.418 1.279,-2.034 0.293,-0.613 0.52,-1.236 0.66,-1.862 0.142,-0.626 0.219,-1.297 0.219,-2.016 0,-1.846 -0.443,-3.608 -1.327,-5.282 C 26.945,3.915 25.696,2.539 24.072,1.461 22.452,0.383 20.674,-0.369 18.735,-0.802 16.793,-1.234 14.744,-1.445 12.594,-1.445 9.262,-1.445 5.071,-0.967 0,0" /></g><g
|
||||||
|
transform="translate(500.5898,295.8799)"
|
||||||
|
id="g338"><path
|
||||||
|
id="path340"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c -0.245,-1.207 -0.545,-2.888 -0.893,-5.049 -0.347,-2.158 -0.584,-3.83 -0.706,-5.017 -4.392,-0.656 -8.312,-0.983 -11.76,-0.983 -3.328,0 -6.42,0.414 -9.281,1.245 -2.866,0.828 -5.495,2.195 -7.884,4.093 -2.39,1.9 -4.102,4.13 -5.122,6.696 -1.031,2.566 -1.542,5.439 -1.542,8.622 0,3.713 0.691,7.054 2.078,10.021 1.385,2.965 3.377,5.439 5.973,7.418 2.594,1.98 5.444,3.398 8.542,4.249 3.1,0.851 6.302,1.278 9.607,1.278 3.037,0 6.794,-0.39 11.267,-1.17 l 0.06,-2.587 C 0.381,27.687 0.444,26.448 0.524,25.093 L 0.74,21.582 c -2.4,0.575 -4.346,0.965 -5.834,1.171 -1.488,0.205 -2.867,0.307 -4.138,0.307 -2.772,0 -5.267,-0.554 -7.482,-1.664 -2.219,-1.106 -3.961,-2.717 -5.234,-4.832 -1.275,-2.113 -1.91,-4.454 -1.91,-7.02 0,-2.339 0.535,-4.347 1.603,-6.018 1.068,-1.672 2.507,-2.967 4.321,-3.88 1.82,-0.914 4.059,-1.372 6.73,-1.372 1.46,0 3.042,0.121 4.756,0.357 C -4.733,-1.134 -2.583,-0.678 0,0" /></g><g
|
||||||
|
transform="translate(505.334,285.6289)"
|
||||||
|
id="g342"><path
|
||||||
|
id="path344"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 1.182,16.481 1.774,29.165 1.774,38.053 l -0.027,3.971 c 3.593,-0.041 5.993,-0.063 7.206,-0.063 0.556,0 2.764,0.022 6.625,0.063 C 15.206,37.405 14.91,33.034 14.684,28.907 14.395,23.161 14.188,17.789 14.063,12.792 13.942,7.796 13.877,3.532 13.877,0 L 7.57,0.062 C 6.337,0.062 3.818,0.041 0,0" /></g><g
|
||||||
|
transform="translate(525.5342,285.6289)"
|
||||||
|
id="g346"><path
|
||||||
|
id="path348"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 0.513,5.293 0.888,9.728 1.124,13.299 0.24,3.574 0.475,8.319 0.709,14.241 0.238,5.92 0.356,9.844 0.356,11.776 L 2.157,42.024 C 7,41.983 12.861,41.961 19.734,41.961 c 6.341,0 11.934,0.022 16.777,0.063 l -0.06,-1.013 c -0.022,-0.245 -0.074,-1.136 -0.156,-2.669 l -0.182,-3.343 c -0.045,-0.716 -0.063,-1.444 -0.063,-2.18 -3.961,0.164 -7.286,0.246 -9.975,0.246 -2.955,0 -4.951,-0.004 -5.989,-0.015 -1.038,-0.011 -2.652,-0.057 -4.847,-0.139 l -0.373,-7.08 c 2.421,-0.062 5.242,-0.093 8.465,-0.093 1.149,0 4.209,0.072 9.178,0.215 -0.204,-2.626 -0.4,-5.757 -0.583,-9.39 -3.551,0.041 -6.279,0.063 -8.188,0.063 -2.83,0 -5.999,-0.073 -9.506,-0.216 L 13.865,8.932 h 3.536 c 1.047,0 3.212,0.025 6.497,0.089 l 6.37,0.156 c 0.939,0.018 2.518,0.101 4.735,0.244 C 34.757,6.383 34.551,3.242 34.388,0 29.379,0.041 23.888,0.062 17.917,0.062 L 4.371,0.03 Z" /></g><g
|
||||||
|
transform="translate(565.8965,285.6289)"
|
||||||
|
id="g350"><path
|
||||||
|
id="path352"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 0.616,6.465 1.201,21.921 0.338,8.835 v 4.803 c 3.187,-0.041 6.003,-0.063 8.451,-0.063 1.746,0 4.202,0.022 7.369,0.063 l 13.14,-23.899 1.813,-3.512 c 0.231,3.449 0.468,8.285 0.71,14.506 0.241,6.221 0.361,10.523 0.361,12.905 2.523,-0.041 4.543,-0.063 6.06,-0.063 0.699,0 2.71,0.022 6.028,0.063 L 45.349,32.85 43.965,7.357 43.781,0 C 41.108,0.041 38.614,0.062 36.293,0.062 34.36,0.062 31.689,0.041 28.281,0 27.218,2.013 26.426,3.471 25.914,4.373 l -5.165,8.779 c -1.701,2.874 -3.27,5.625 -4.705,8.254 -0.942,1.663 -1.915,3.489 -2.919,5.481 L 12.464,12.289 12.146,0 C 9.605,0.041 7.668,0.062 6.337,0.062 5.208,0.062 3.096,0.041 0,0" /></g><g
|
||||||
|
transform="translate(641.293,319.1875)"
|
||||||
|
id="g354"><path
|
||||||
|
id="path356"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c -2.36,0 -4.497,-0.581 -6.401,-1.74 -1.912,-1.16 -3.377,-2.772 -4.404,-4.833 -1.026,-2.065 -1.542,-4.275 -1.542,-6.634 0,-2.177 0.468,-4.168 1.404,-5.975 0.935,-1.804 2.353,-3.216 4.263,-4.231 1.91,-1.019 3.929,-1.526 6.067,-1.526 2.275,0 4.365,0.57 6.263,1.707 1.899,1.142 3.343,2.742 4.342,4.806 0.995,2.062 1.492,4.222 1.492,6.479 0,2.196 -0.463,4.222 -1.382,6.08 C 9.175,-4.009 7.819,-2.566 6.036,-1.54 4.249,-0.514 2.239,0 0,0 m 0.556,9.265 c 3.282,0 6.443,-0.441 9.48,-1.323 3.04,-0.881 5.698,-2.294 7.976,-4.234 2.278,-1.937 3.983,-4.172 5.108,-6.696 1.129,-2.524 1.696,-5.427 1.696,-8.712 0,-3.448 -0.622,-6.615 -1.864,-9.497 -1.243,-2.885 -3.034,-5.331 -5.372,-7.343 -2.339,-2.012 -5.133,-3.486 -8.375,-4.421 -3.242,-0.932 -6.616,-1.395 -10.126,-1.395 -3.472,0 -6.795,0.453 -9.978,1.368 -3.18,0.913 -5.943,2.388 -8.295,4.433 -2.351,2.042 -4.018,4.314 -5.003,6.818 -0.987,2.506 -1.477,5.285 -1.477,8.344 0,4.496 1.042,8.439 3.123,11.838 2.082,3.396 5.171,6.049 9.267,7.958 4.093,1.907 8.709,2.862 13.84,2.862" /></g><g
|
||||||
|
transform="translate(693.6992,285.6289)"
|
||||||
|
id="g358"><path
|
||||||
|
id="path360"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 c 1.02,9.975 1.629,20.957 1.833,32.943 l -13.101,-0.34 0.155,3.417 c 0.082,1.828 0.143,3.829 0.184,6.004 5.825,-0.041 12.616,-0.063 20.374,-0.063 l 7.6,0.03 h 7.389 l 4.002,0.033 -0.189,-3.017 c -0.078,-1.617 -0.135,-2.952 -0.167,-4.01 -0.031,-1.056 -0.045,-1.855 -0.045,-2.394 -4.388,0.225 -8.008,0.34 -10.86,0.34 H 15.023 C 14.713,29.316 14.477,25.966 14.311,22.894 14.083,18.488 13.908,14.212 13.783,10.067 13.659,5.917 13.596,2.558 13.596,0 10.233,0.041 8.063,0.062 7.074,0.062 6.193,0.062 3.834,0.041 0,0" /></g><g
|
||||||
|
transform="translate(731.4521,285.6289)"
|
||||||
|
id="g362"><path
|
||||||
|
id="path364"
|
||||||
|
style="fill:#3d5588;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 0,0 -1.049,5.665 c -0.247,1.332 -0.625,3.203 -1.139,5.603 l -5.024,22.997 -1.815,7.759 c 2.589,-0.041 4.681,-0.063 6.284,-0.063 1.807,0 3.904,0.022 6.287,0.063 0.554,-3.346 0.996,-5.799 1.323,-7.358 L 7.455,22.259 c 0.535,-2.668 1.129,-5.923 1.787,-9.76 l 1.015,4.31 3.657,14.224 2.517,10.991 c 2.811,-0.041 5.193,-0.063 7.142,-0.063 2.116,0 4.484,0.022 7.112,0.063 l 1.948,-12.961 2.684,-16.501 1.204,4.523 c 0.222,0.782 0.461,1.572 0.707,2.372 0.245,0.801 0.757,2.39 1.537,4.773 l 3.754,11.822 1.752,5.972 c 2.482,-0.022 4.533,-0.033 6.154,-0.033 1.826,0 3.863,0.011 6.123,0.033 L 44.61,6.249 42.705,0 C 39.623,0.041 36.937,0.062 34.638,0.062 32.215,0.062 29.533,0.041 26.603,0 l -0.709,4.218 -2.705,14.684 c -0.145,0.883 -0.273,1.791 -0.384,2.727 -0.116,0.933 -0.273,2.385 -0.475,4.355 L 21.25,21.212 C 20.983,20.145 20.704,19.067 20.418,17.979 L 15.46,0 C 12.355,0.041 9.78,0.062 7.728,0.062 5.552,0.062 2.977,0.041 0,0" /></g></g></g></g></svg>
|
||||||
|
After Width: | Height: | Size: 44 KiB |
Loading…
Reference in New Issue
Block a user